@charset "utf-8";

/*アイテム陳列レイアウト*/


/*個別アイテムページの写真と仕様横並び*/
.kobetsu_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 100px auto 20px auto;
}

@media(max-width:768px) {
  .kobetsu_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.kobetsu_item {
  font-size: 1.0em;
  line-height: 1.5em;
}

/*個別ページ＿吹き出し*/

.balloon-004 {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 300px;
  margin-left: 15px;
  padding: .8em 1.2em;
  border-radius: 5px;
  background-color: #00c7fc;
  color: #ffffff;
}

.balloon-004::before {
  position: absolute;
  left: -15px;
  width: 15px;
  height: 30px;
  background-color: #00c7fc;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  content: '';
}

/*個別ページサイズ表*/

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table th,
table td {
  padding: 10px 0;
  text-align: center;
}

table tr:nth-child(odd) {
  background-color: #eee
}

.table1 {
  width: 66%;
}

@media(max-width:768px) {
  .table1 {
    width: 100%;
  }
}

/*個別ページ単品写真コメント*/
.item_photo {
  text-align: center;
}

.kobetsu1_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 30px auto;
}
@media(max-width:768px) {
  .kobetsu1_container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width:576px) {
  .kobetsu1_container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.kobetsu1_item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kobetsu1_item_image_wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.kobetsu1_item_image_wrapper::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.kobetsu1_item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #f5f5f5;
  transition: transform 0.3s ease; /* ← スムーズな動きを追加！ */
}

/* ホバーしたら拡大 */
.kobetsu1_item_image_wrapper:hover img {
  transform: scale(1.1); /* 1.1倍に拡大 */
}

.kobetsu1_color {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
  text-align: center;
}

/*加工費・送料など注意書き*/

.attention1 {
  margin: 60px auto;
  text-align: center;
  display: block;

}

.attention {
  text-align: left;
  display: inline-block;
  font-size: 0.8em;
  margin-bottom: 50px;
  line-height: 1.5em;
  width: 65%;
}

@media(max-width:768px) {
  .attention {
    width: 90%;
  }
}

.attention2 {
  text-align: center;
  font-size: 0.8em;
  margin: 70px auto 80px auto;
}

/*printing_icon*/

.printing_icon {
  margin-top: 15px;
}

/*printing_area_midashi*/
.heading-31 {
  position: relative;
  padding: .3em 0 .2em 1em;
  border-bottom: 3px solid #2589d0;
  color: #333333;
  font-size: 1.4em;
  font-weight: bold;
}

.heading-31::before {
  position: absolute;
  top: 0;
  left: .3em;
  transform: rotate(55deg);
  height: 11px;
  width: 12px;
  background: #2589d0;
  content: '';
}

.heading-31::after {
  position: absolute;
  transform: rotate(15deg);
  top: .6em;
  left: 0;
  height: 8px;
  width: 8px;
  background: #2589d0;
  content: '';
}

.printingarea_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 30px auto;
  width: 85%;
}

@media(max-width:768px) {
  .printingarea_container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*ブランドロゴ*/
.brand_ {
  width: 180px;
  margin: 0 auto 8px 20px;
}

@media(max-width:576px) {
  .brand_ {
    width: 120px;
    margin-bottom: 20px;
  }
}

/*アイテム区分けの罫線*/

.hr1 {
  width: 500px;
  height: 2px;
  background-color: black;
  margin-top: 10px;
}
@media(max-width:576px){
  .hr1{
    width:85%;
  }
}


.kobetsu_midashi {
  margin-top: 40px;
}

/*サイズ表とアイテムとの距離調整*/
.kobetsu_midashi_top{
  margin-top: 50px;
}

.konbetsu_midashi2 {
  margin-top: 50px;
  color: rgb(43, 11, 116);
  font-weight: bold;
}

/*関連商品名*/
.kobetsu1_color2 {
  font-size: 0.7em;
  text-align: left;
  margin-top: 10px;
}


/*お問合せ・見積依頼ボタン*/
.otoiawase_btn {
  display: inline-block;
  margin: 60px auto 40px auto;
  padding: 1.2em 2.8em;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff9248 0%, #fca311 100%);
  border: none;
  border-radius: 36px;
  box-shadow: 0 4px 16px rgba(255,140,60,0.13), 0 1.5px 2px rgba(0,0,0,0.05);
  transition: 
    background 0.18s cubic-bezier(.4,0,.2,1),
    box-shadow 0.18s cubic-bezier(.4,0,.2,1),
    transform 0.12s cubic-bezier(.4,0,.2,1);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
}
.otoiawase_btn:hover, .otoiawase_btn:focus {
  background: linear-gradient(90deg, #ffb347 0%, #fd5901 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(250, 150, 40, 0.15), 0 2.5px 6px rgba(0,0,0,0.09);
  transform: translateY(-2px) scale(1.025);
  outline: none;
}
.otoiawase_btn:active {
  transform: scale(0.98);
  filter: brightness(0.97);
}

/* アイコン追加用（FontAwesome併用可） */
.otoiawase_btn::before {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 0.7em;
  font-size: 1.17em;
  vertical-align: -0.07em;
  opacity: 0.92;
}

.otoiawase_btn-wrapper {
  width: 100%;
  text-align: center;
}




/*070429修正_個別ページの品名から下+価格表から上*/

.product_container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(40,60,120,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  align-items: flex-start;
  margin: 40px auto 60px auto;
  max-width: 950px;
}

@media (max-width: 768px) {
  .product_container {
    flex-direction: column;
    padding: 18px 8px;
    gap: 22px;
    border-radius: 14px;
  }
}

/* 画像側 */
.product_container .product-image {
  flex: 1.2 1 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product_container .product-image img {
  max-width: 340px;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.08);
  background: #fafbfc;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .product_container .product-image {
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100%;
  }
  .product_container .product-image img {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .colorsize {
    display: flex;
    justify-content: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}



@media (max-width: 600px) {
  .product_container .product-image img {
    max-width: 90vw;
    aspect-ratio: unset;
  }
}

/* 情報側 */
.product_container .product_item:not(.product-image) {
  flex: 2 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* 色・サイズ情報横並び→間隔調整 */
.colorsize {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .colorsize {
    justify-content: center !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.color-info {
  width: 60px;
  height: 60px;
  font-size: 1em;
  background: linear-gradient(120deg, #6ba4ff 70%, #d9e6ff 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(80,110,200,0.10);
  border: 2px solid #e7f0fe;
}

/* 素材・説明部分の余白微調整 */
.material-info {
  font-size: 1.05em;
  color: #333;
  background: #f7fafc;
  border-radius: 8px;
  padding: 10px 15px;
  margin: 0 0 10px 0;
  box-shadow: 0 1px 3px rgba(80,100,120,0.03);
}

/* 特徴アイコン行 */
.marks1 {
  background: #f0f5fa;
  border-radius: 9px;
  padding: 8px 10px;
  gap: 10px;
  box-shadow: none;
  margin-bottom: 8px;
}
.marks_item img {
  width: 54px;
  height: auto;
}

/* 問合せボタン強調 */
.contact-button {
  background: linear-gradient(90deg, #ffb349 20%, #ff6e44 100%);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  font-size: 1.1em;
  padding: 13px 0;
  width: 230px;
  box-shadow: 0 2px 12px rgba(255,120,60,0.13);
  margin-top: 10px;
  transition: background 0.2s, color 0.2s;
  text-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.contact-button:hover {
  background: linear-gradient(90deg, #ff9653 10%, #ff9e2a 90%);
  color: #222;
}

/* スマホ：全体の余白を下げてギュッと */
@media (max-width: 500px) {
  .product_container {
    padding: 6vw 1vw;
    gap: 8vw;
  }
  .contact-button {
    width: 90vw;
    max-width: 330px;
    padding: 12px 0;
  }
}

.product-image img{
  width:90%;
  height:auto;
  min-width:300px;
}
@media(max-width:680px){
  .product-image{
    text-align: center;

  }
}


.marks_item {
  margin-right: 10px;
}

.attention_brandlabel {
  font-size: 0.8em;
  line-height: 1.3em;
  width:65%;
  text-align: left;
  margin:15px auto 15px 5px;
}
@media(max-width:680px){
  .attention_brandlabel {
    margin:20px auto 30px ;
}
}

/* 色数・サイズ・オンスアイコン */
.color-info {
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background: #3A7DFF; /* 落ち着いたブルーに変更 */
  color: #FFF;
  text-align: center;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9em;
  transition: all 0.3s ease;
}

.color-info:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* 素材情報 */
.material-info {
  font-size: 0.9em;
  line-height: 1.6em;
  color: #333;
  margin: 25px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 特徴アイコン囲み（marks1を改善） */
.marks1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* PCでは左寄せ */
  gap: 10px;
  background-color: #f6f6f6;
  padding: 10px 14px;
  border-radius: 10px;
  width: fit-content;
  box-shadow: 0 0 4px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.marks_item img {
  width: 90px;  /* アイコンサイズを小さめに */
  height: auto;
  display: block;
}

/* スマホでは中央寄せにする */
@media (max-width: 680px) {
  .marks1 {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ボタン改修 */
.contact-button {
  background: #fff;
  border: 2px solid #222;
  color: #222;
  width: 260px;
  height: 50px;
  border-radius: 8px;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 50px;
}

.contact-button:hover {
  background: #222;
  color: #fff;
}

/* レスポンシブ */
@media(max-width:680px){
  .marks1 {
    justify-content: center;
    margin: 0 auto 20px;
  }
  .contact-button {
    margin: 20px auto;
    display: block;
  }
}


.colorsize {
  display: flex;
}
@media(max-width:680px){
  .colorsize{
    justify-content: center;
  }
}

.colorsize_item {
  margin-right: 10px;
}
@media(max-width:680px){
  .colorsize_item{
    justify-content: center;
  }
}

.colorsize-wrapper {
  text-align: center;
  margin-bottom: 20px;
}

.colorsize-wrapper .maker_logo2 {
  width: 60%;
  margin-bottom: 12px; /* ロゴとアイコンの間隔を少しあける */
}

@media (max-width: 680px) {
  .colorsize-wrapper .maker_logo2 {
    width: 40%;
  }
}

.material-info {
  line-height: 1.5em;
  font-size: 0.9em;
  margin: 20px 0;
}

@media(max-width:680px) {
  .wrapper {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
  }

  .material-info {
    display: inline-block;
    text-align: left;
  }
}
.contact-button {
  background: rgb(249, 193, 73);
  width: 300px;
  height: 50px;
  color: rgb(13, 13, 13);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
}

@media(max-width:680px){
  .contact-button{
    margin:0 auto;
}
}
@media(max-width:400px){
  .contact-button{
    width:200px;
  }
}

.contact-button:hover{
  background-color: lightsalmon;
}

/*終わり*/

/* 個別ページ＿価格表*/
.design09 {
  width: 60%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: solid 2px #778ca3;
  margin:0 auto 0 30px;
  font-size: 0.8em;
 }
 .design09 th {
  padding: 10px;
  background: #e9faf9;
  border: solid 1px #778ca3;
  border-bottom: solid 2px #778ca3;
 }
 .design09 td {
  padding: 10px;
  border-left: solid 1px #778ca3;
 }
 .design09 tr {
  border-top: dashed 1px #778ca3;
 }
 @media(max-width:768px){
  .design09{
    width:80%;
  }
 }
 @media(max-width:576px){
  .design09{
    width:100%;
    margin:0 auto;
  }
 }

 /* 個別ページ＿サイズ表スクロール*/
 .table_wrap{
  overflow:scroll ;
 }
 .design10{
  width:100%;
  border-collapse: collapse;
  white-space: nowrap;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border: solid 2px #778ca3;
  margin:0 auto 0 30px;
  font-size: 0.8em;
 }

 .design10 th {
  padding: 10px;
  background: #e9faf9;
  border: solid 1px #778ca3;
  border-bottom: solid 2px #778ca3;
 }
 .design10 td {
  padding: 10px;
  border-left: solid 1px #778ca3;
 }
 .design10 tr {
  border-top: dashed 1px #778ca3;
 }

 .table_price{
  font-size:0.9em;
  line-height: 1.5em;
  margin:10px auto 30px 50px;
 }

 
 /*加工範囲について＿単位*/
.unit{
  font-size: 0.9em;
  margin-top:15px;
  text-align: right;
}

 /*加工範囲について＿見出し*/
.printing_area{
  margin:5px 0 15px 10px;
}

.about_printing{
  font-size:1.0em;
}
@media(max-width:576px){
  .about_printing{
    font-size: 0.8em;
  }
}


/*ORGABITSについて*/

.orgabits1{
  line-height: 1.7em;
}

.orgabits2{
  font-weight: 600;
  color: #446486;
}

.orgabits3{
  margin-bottom: 30px;
  font-size: 1.1em;
}

.orgabits4 {
  margin: 0 auto;
  width:85%;
  background-color: antiquewhite;
  padding: 25px 25px;
  border-radius: 10px;
}
@media(max-width:768px){
  .orgabits4{
    width:95%;
    font-size: 0.9em;
  }
}

@media(max-width:576px){
  .orgabits4{
    width:100%;
    font-size: 0.8em;
  }
}

/*ここがポイント！吹き出し*/

.box-019 {
  position: relative;
  margin: 50px auto;
  padding: 1.8em 1.5em 1em 1.5em;
  border: 2px solid #2589d0;
  width:80%;
}
@media(max-width:576px){
  .box-019{
    width:100%;
  }
}

.box-019 > div {
  position: absolute;
  top: -1.15em;
  left: -.5em;
  padding: .4em 1.4em;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-size: .9em;
}

.box-019 > div::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 8px;
  background-color: #2589d0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
}

.box-019 p {
  margin: 0;
  line-height: 1.7em;
}

/*お問合せボタン新しく作った*/
.superbtn {
  display: inline-block;
  padding: 1.2em 2.8em;
  font-size: 1.15rem;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(90deg, #ff9248 0%, #fca311 100%);
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 16px rgba(255,140,60,0.16);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.18s cubic-bezier(.4,0,.2,1);
  position: relative;
  margin: 0 auto;
}
.superbtn:hover {
  background: linear-gradient(90deg, #ffb347 0%, #fd5901 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(250, 150, 40, 0.19);
  transform: translateY(-2px) scale(1.03);
}
