@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

/* PC/SP画像切り替え */
.pc { display: block !important; }
.sp { display: none !important; }

@media only screen and (max-width: 750px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}

.pc1 { display: block !important; }
.tab1 { display: none !important; }

@media only screen and (max-width: 1300px) {
  .pc1 { display: none !important; }
  .tab1 { display: block !important; }
}

.pc2 { display: block !important; }
.tab2 { display: none !important; }

@media only screen and (max-width: 1000px) {
  .pc2 { display: none !important; }
  .tab2 { display: block !important; }
}

/* main */
main {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

/* ヘッダー */
/* 共通 */
.header {
  width: 100%;
  background: white;
  z-index: 1000;
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-family: "Noto Sans JP", sans-serif;
}

.header_all {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.logo img {
  max-height: 70px;
  width: auto;
}

/* ヘッダー右側（電話・メール） */
.header_right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* 電話リンク */
.header_tel a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}

/* メールボタン */
.header_contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 15px;
  background: #4CAF50;
  color: white;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.header_contact a svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.header_contact a:hover {
  background: #388E3C;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.header_contact a:hover svg {
  transform: translateY(-2px) scale(1.1);
}

/* PC/SP切替 */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマホ調整 */
@media only screen and (max-width: 750px) {
  .pc { display: none !important; }
  .sp { display: block !important; }

  .header_all {
    text-align: center;
    padding: 15px 10px;
  }

  .header_top {
    flex-direction: column; /* 縦並び */
    align-items: center;
    gap: 10px;
  }

  .logo.sp img {
    max-height: 70px;
    width: auto;
  }

  .header_right {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .header_tel.sp a,
  .header_contact.sp a {
    font-size: 22px;
    padding: 10px;
    border-radius: 50%; /* 丸ボタン化 */
    width: 50px;
    height: 50px;
  }

  .header_contact.sp a svg {
    width: 24px;
    height: 24px;
  }
}
/* メニュー */
.menu_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #71ff2f;
}

.menu_box1, .menu_box2, .menu_box3 {
  width: 523px;
  text-align: center;
  font-size: 20px;
  list-style: none;
  border: 1px solid #000;
}

.menu_box1 a, .menu_box2 a, .menu_box3 a {
  display: block;
  width: 100%;
  padding: 11px 0;
  text-decoration: none !important;
  color: black;
}

/* 相談電話 s01 */
.s01 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  width: 60%;
}

@media only screen and (max-width: 840px) {
  .s01 {
    display: block;
  }
}

/* 相談窓口 s02 */
.s02 {
  margin: 100px 0;
}

.sekou_img {
  margin: 30px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 740px) {
  .s02 {
    margin: 50px 0;
  }
}

/* 商品・提案内容 s03 */
.title_name_s00_all {
  text-align: center;
  font-size: 36px;
}

@media only screen and (max-width: 740px) {
  .title_name_s00_all {
    font-size: 24px;
  }
  .sp_small {
    width: 50%;
    margin: auto;
  }
}

.s03_box {
  display: flex;
  align-items: center;
  margin: 50px 0;
  justify-content: space-evenly;
}

@media only screen and (max-width: 740px) {
  .s03_box {
    display: block;
    margin: 0;
  }
  .s03_box_img {
    margin: 10px 0;
  }
}



/* フッター */
footer {
  background-color: #ECF7D2;
  padding: 30px 20px;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.footer_all {
  text-align: center;
  padding: 25px 15px;
}

.logo_footer img {
  max-width: 350px;
  height: auto;
  margin-bottom: 20px;
}

.contact_box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.contact_item {
  font-size: 1.6rem;
  font-weight: 600;
}

.contact_link {
  text-decoration: none;
  color: #222;
  padding: 10px 15px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.contact_link:hover {
  background: #0073e6;
  color: #fff;
  transform: translateY(-2px);
}

.contact_link.tel .icon { color: #0073e6; font-size: 1.8rem; }
.contact_link.fax .icon { color: #e67e22; font-size: 1.8rem; }

.copyright {
  font-size: 1.2rem;
  color: #666;
  margin-top: 10px;
}
