@charset "UTF-8";
/* utility */
.serif {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
button{cursor: pointer;}


/*トップイメージ*/
.style_sydonios .top_image img{
    margin: auto;
    width: 100%;
}


/*トップ説明部分*/

.sydonios_video{
    max-width: 1200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.module_commitment{
    max-width:1000px;
    width:100%;
    margin:0 auto;
    padding-bottom:40px;
}

h2.commitment {
    text-align:center;
    font-size:32px;
    padding-top:50px;
    padding-bottom:50px;
    font-weight:normal;
    width:100%;
}
h2.commitment span{
    display:block;
    margin-top:10px;
}

.module_commitment h3{
    border-left:5px solid #203865;
    padding-left:8px;
    margin-bottom:20px;
    font-weight:normal;
    font-size:18px;
}

.strong{
    font-weight:bold;
    background:  linear-gradient(transparent 30%, #EFE8C9 30%);
}

/* 共通スタイル */
.box {
  margin-top: 50px;
  padding-bottom: 30px;
}

/* 偶数番目のbox (PC時) */
.box:nth-child(even) {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

/* 奇数番目のbox (PC時) */
.box:nth-child(odd) {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
}

@media (max-width: 750px) {
  .box:first-child {
    
  }

  .box:nth-child(even),
  .box:nth-child(odd) {
    display: grid;
    grid-template-columns: 1fr; /* 縦並び */
    grid-template-rows: auto auto; /* 各要素を順番に表示 */
  }

  /* 奇数番目のbox (SP時: テキスト→画像) */
  .box:nth-child(odd) {
    grid-template-areas:
      "text"
      "img"; /* テキストが先、画像が後 */
  }

  .box:nth-child(odd) .img {
    grid-area: img;
  }

  .box:nth-child(odd) .text {
    grid-area: text;
  }
}
.module_commitment .box .text{
    box-sizing: border-box;
    padding:0 20px
}
.module_commitment .box .img{
    box-sizing: border-box;
    padding:0 10px
}
.module_commitment .box .img img{
    width:100%;
}
.module_commitment .box .text p{
    line-height:170%;
    text-align: justify;
}

@media only screen and (max-width: 850px) {
    .module_commitment{
        width:90%;
        margin:0 auto;
    }
    .module_commitment .box .text{
        width:100%;
        padding: 10px;
    }
    .module_commitment .box .img{width:100%;}
    h2.commitment{
    padding-top:25px;
    padding-bottom:0px;
    font-size: 18px;
    }
    h2.commitment img{
        width:50%;
    }
    h2.commitment span{
        font-size:14px;
    }
    .module_commitment h3{
        font-size:18px;
        margin-bottom:10px;
    }
}

/*ラインナップ*/

.series{
    padding-bottom: 50px;
}

.series .notes{
    margin-left:70px;
    font-size: 13px;
    padding-top: 20px;
}

h2.lineup img{
    display: block;
    width: 230px;
    margin:auto;
}

h2.lineup {
    text-align: center;
    font-weight: normal;
    padding-bottom: 50px;
}

.glass_list{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin:0 40px;
}

.glass_list .glass_info{
    text-align: center;
    padding:0 30px;
}
.glass_list .glass_info img{
    width:100%;
}
.glass_list .glass_info .name{
    font-size: 26px;
}
.glass_list .glass_info .name p{
    font-size: 12px;
}

.glass_list .glass_info .glass_txt{
    padding-bottom: 20px;
    border-bottom: 1px solid #C6C6C6;
    letter-spacing: normal;
}

.glass_list .glass_info .spec{
    font-size: 13px;
    padding-bottom: 20px;
}

.glass_list .glass_info .price{
    font-size: 16px;
    letter-spacing: 0.06rem;
}
.glass_list .glass_info .price .zeikomi{
    font-size: 10px;
    padding-left: 2px;
}

.glass_list .glass_info .detail a{
    background: #edb500;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    margin-top: 20px;
    max-width: 200px;
    padding: 10px 25px;
    font-size: 14px;
    color: #111;
    line-height: 1.8;
    text-decoration: none;
    font-weight: 500;
}
.glass_list .glass_info .detail a:hover{
    opacity:0.8;
}

@media screen and (max-width: 850px) {
    h2.lineup img{
      width: 30%;
  }
    h2.lineup {
        padding-bottom: 20px;
    }
    .series .notes{
        margin:0px 40px;
    }
    .glass_list {
        display: flex;
        overflow-x: auto; /* 横スクロールを有効にする */
        scroll-snap-type: x mandatory; /* スクロール位置をスムーズに調整 */
        gap: 20px;
        padding: 10px;
        margin: 0 30px;
    }

    .glass_list .glass_info {
        flex: 0 0 auto;
        width: 80%;
        scroll-snap-align: start; 
        text-align: center;
        padding: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 8px; 
        background: #fff;
    }

    .glass_list .glass_info img {
        width: 80%;
        height: auto;
    }
}


/* layout */
.main{
    display: block;
    width: 100%;
    color:#707070;
    letter-spacing: 0.02rem;
}
.style_sydonios {
  max-width: 1200px;
  min-width: 850px;
  margin: 112px auto 0 auto;
  padding: 0;
  background: #fff;
}

.style_sydonios section {
  margin-bottom: 64px;
  padding: 0 ;
}

.style_sydonios section.mb0 {
  margin-bottom: 0;
}
/*.style_sydonios > section:first-child {
  margin-bottom: 16px;
}*/
.style_sydonios hgroup {
  position: relative;
  display: block;
  width: 100%;
}
.style_sydonios section > hgroup {
  text-align: center;
  border-bottom: 1px solid #363535;
}

.style_sydonios hgroup p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #ABA9A9;
}

  .style_sydonios p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .for_sp {
    display: none;
  }

  .for_pc {
    display: block;
  }

@media only screen and (max-width: 850px) {
    .main{
        color:#333333;
    }
  .style_sydonios {
    max-width: 100%;
    min-width: 100%;
    margin: 142px auto 0 auto;
    padding: 0;
  }
  .style_sydonios section {
    margin:0 10px 40px;
  }

  .style_sydonios p {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .style_sydonios hgroup p {
    font-size: 12px;
    margin-bottom: 24px;
    color: #ABA9A9;
  }

  .for_sp {
    display: block;
  }
  .for_pc {
    display: none;
  }

}