@charset "UTF-8";

/*
 style-dealer
*/

/*============================================================
  dealer 卸売のご案内
============================================================*/

#dealerWrap {
  padding: 40px 20px;
  max-width: 960px;
  margin: 0 auto;
}


/* ===== 取扱店舗 ===== */
#dealer_shop{
	margin-bottom: 80px;
}

.shop-list {
  list-style: none;
  padding: 0;
  margin: 0;
	border-top: 1px dotted #999;
}

.shop-list li {
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  border-bottom: 1px dotted #999;
}

.shop-list .shop-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.shop-list .shop-info {
  font-size: 14px;
  color: #555;
}
/* PC表示では横並び */
@media (min-width: 768px) {
  .shop-list li {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
	  padding-top: 20px;
  }
  .shop-list .shop-name {
    width: 35%;
  }
  .shop-list .shop-info {
    width: 60%;
  }
}




/* ===== 卸売のご案内 ===== */
/* topCom */
.topCom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.topCom-img img {
  max-width: 100%;
  height: auto;
  display: block;
}
.topCom-text {
  flex: 1;
}

.topCom-text span{
	display: block;
	font-size: 0.9em;
	margin-top: 10px;
}
.mail-info {
  background: #f5f5f5;
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}
.mail-info h3 {
  font-size: 18px;
	margin: 5px 0 10px;
}
.mail-info ul {
  margin: 0;
  padding-left: 20px;
}

/* PC時：画像右、テキスト左 */
@media (min-width: 768px) {
  .topCom {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
  .topCom-text {
    width: 55%;
  }
  .topCom-img {
    width: 40%;
  }
}

/* ===== お問い合わせ方法 ===== */
#dealer_guide_contact {
  margin-top: 40px;
}
#dealer_guide_contact .contact-options {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-box {
  background-color: #fff6df;
  border: 1px solid #aaaaaa;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
	
	background: #fff;
  border-radius: 8px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.contact-box .material-icons {
  font-size: 48px; /* 大きめに */
  color: #bd922f;
  margin-bottom: 5px;
}

.contact-box h3 {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 1.5em;
  margin-bottom: 0;
  color: #bd922f;
}
.contact-box .phone-number,
.contact-box .fax-number {
  font-size: 1.9em;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  display: block;
  margin: 5px 0;
}
.sub-text {
  font-size: 14px;
  color: #000;
	text-align: left;
}
.contact-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  background-color: #222;
  color: #fff;
  transition: background-color 0.3s ease;
  width: 90%; /* ←修正：横幅90% */
  text-align: center;
}
.contact-btn:hover {
  background-color: #535353;
}

/* 電話専用ブロック */
.phone-box{}
.phone-box .phone-number{
	padding-top: 15px;
}

/* メール専用ブロック */
.mail-box{}
.mail-box p{
	font-size: 0.9em;
	text-align: left;
}

/* FAX専用ブロック */
.fax-box {
  display: flex;
  flex-direction: column; /* デフォルトは縦並び */
  gap: 20px;
  margin: 20px 0;
}

/* FAX用 header */
.fax-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fax-header .material-icons {
  font-size: 36px;
  margin-bottom: 5px;
}

.fax-header div {
  text-align: center;
}

.fax-header h3 {
  margin: 0;
}

.fax-header .fax-number {
  font-weight: bold;
  margin: 5px 0;
}

.fax-header .fax-text {
  color: #333;
	text-align: left;
	font-size: 0.9em;
}

.fax-number {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 5px;
}

.fax-info {
  background: #f5f5f5;
  padding: 15px;
  margin-top: 10px;
  border-radius: 6px;
  text-align: left;
}
.fax-info ul {
  margin: 0;
  padding-left: 20px;
	margin-top: 10px;
}

#dealer_guide_contact .fax-box{
	margin-top: 30px;
}

.fax-info .sub-text {
  margin-bottom: 10px;
  font-size: 0.9em;
  color: #666;
}


/* PC表示 */
@media (min-width: 768px) {
  .fax-box {
    flex-direction: row; /* PCでは左右並び */
    justify-content: space-between;
    align-items: flex-start;
  }

  .fax-header {
    flex: 1;
  }
	.fax-box .sub-text {
		text-align: left;
	}

  .fax-info {
    flex: 1;
  }
  #dealer_guide_contact .contact-options {
    flex-direction: row;
    justify-content:space-between;
  }
  #dealer_guide_contact .contact-box {
    flex: 1;
    max-width: 46%;
  }
  #dealer_guide_contact .fax-box {
    margin-top: 30px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
    text-align: left;
  }
}
