@charset "utf-8";

/* ==================================================
Base
================================================== */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

:root {
  --white: #fff;
  --green: #0b6453;
  --txt-black: #191919;
  --txt-blue: #0053B8;
  --txt-blue2: #0049A3;
  --bg-yellow: #fffdef;
  --bg-green: #e7efec;
  --bg-skyblue: #5fc0c9;
  --bg-gray: #e2e2e2;
  --border-gray: #b9b9b9;
  --border-sky-blue: #b0dcda;
  --bracket-gray: #aaa;
  --tab-green: #056555;
  --hamburger-line: #989898;
  --bg-menu-overlay: #17171750;

  --hiragino: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  --hiragino-pron: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  --hiragino-maru: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;

  --padding-lr: 40px;
  --padding-sp-lr: 30px;
  --content-width: 1280px;
  --sp-content-width: 600px;
  --content-inner-width: 1152px;
}

:focus {
  /* outline: 2px solid rgba(0, 0, 255, 0.8); */
  outline: none;
  /* border-radius: 2px; */
}

body {
  font-family: var(--hiragino);
  color: var(--txt-black);
}

a {
  text-decoration: none;
  color: var(--txt-blue);
}

.show-on-focus {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  color: var(--txt-black);
  font-weight: 500;
  font-size: 20px;
  padding: 15px;
  display: block;
  margin: 14px;
}

.show-on-focus:focus {
  position: inherit;
  left: auto;
  top: auto;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.txt-blue strong {
  border-bottom: 1px solid;
}

.sp-br {
  display: none;
}

.page-top-btn {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 70px;
  height: 70px;
  font-size: 35px;
  background-color: var(--green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.page-top-btn::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  top: 31px;
  left: 27px;
  transform: rotate(-135deg);
}

.page-top-btn.show {
  display: block;
  opacity: 1;
}

.page-top-btn:hover {
  background-color: var(--green);
  filter: brightness(1.5);
}
@media only screen and (max-width: 768px) {
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .product-slash {
    display: none;
  }
  .sp-hide {
    display: none;
  }
  .page-top-btn {
    bottom: 40px;
    right: 25px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .page-top-btn::before {
    width: 10px;
    height: 10px;
    border-width: 0 2px 2px 0;
    top: 17px;
    left: 14px;
  }
}

/* ==================================================
Base-Layout
================================================== */
#tmp_wrapper {
  overflow: hidden;
}

/* ==================================================
Common
================================================== */
.tmp_sec_title {
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--hiragino-pron);
  padding-left: 49px;
  position: relative;
}
.tmp_sec_title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background-image: url("../img/leaf.jpg");
  width: 35px;
  height: 22px;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  .tmp_sec_title {
    font-size: 16px;
    text-align: left;
    width: 100%;
    padding-left: 35px;
  }
  .tmp_sec_title::after {
    width: 23px;
    height: 14px;
  }
}

/* header
================================================== */
#tmp_header {
  padding: 0 var(--padding-lr);
}
.tmp_header__inner {
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  max-width: var(--content-width);
}
.tmp_header__inner nav {
  display: flex;
  width: 100%;
}
.tmp_header__inner img {
  margin-right: 144px;
}
.sp-header-logo {
  display: none;
}
.header-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* column-gap: 80px; */
  column-gap: 30px;
  list-style: none;
}
.header-list li {
  font-size: 14px;
  font-weight: 500;
  padding-left: 27px;
  position: relative;
}
.header-list li::before {
  position: absolute;
  content: '';
  width: 20px;
  height: 12px;
  background-image: url('../img/leaf.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header-list a {
  text-decoration: none;
  color: var(--txt-black);
}

@media only screen and (max-width: 768px) {
  #tmp_header {
    padding: 0 var(--padding-sp-lr);
    display: flex;
    position: sticky;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 500;
  }
  .tmp_header__inner {
    width: 100%;
    justify-content: space-between;
  }
  .tmp_header__inner img {
    width: 94px;
    height: 40px;
  }
  .header-logo {
    display: none;
  }
  .header-list {
    display: none;
  }
}
/* hamburger-menu
================================================== */
#menuOverlay {
  display: none;
}
@media (min-width: 769px) and (max-width: 1200px) {
  .header-list {
    justify-content: space-evenly;
  }
}
@media only screen and (max-width: 768px) {
  .sp-header-logo {
    display: block;
    width: 100%;
    height: auto;
  }
  #menuOverlay {
    display: flex;
  }
  .hamburger-menu {
    width: 16px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
  }
  .hamburger-menu span {
    display: block;
    height: 2px;
    background-color: var(--hamburger-line);
    margin: 4px 0;
  }
  .menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--bg-menu-overlay);
    transition: right 0.3s ease;
    z-index: 999;
  }
  .menu-bg {
    width: 50px;
    background-color: var(--bg-menu-overlay);
  }
  .menu-container {
    position: relative;
    height: 100%;
    width: calc(100% - 50px);
    background-color: var(--white);
  }
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px 20px 0;
  }

  .menu-header .logo {
    font-size: 20px;
    font-weight: bold;
    width: 94px;
    height: 40px;
  }
  .menu-header .close-btn {
    cursor: pointer;
    padding-top: 20px;
  }

  .menu-list {
    list-style: none;
    padding: 0 20px;
    margin: 0;
  }
  .menu-list li {
    /* padding: 20px 24px 20px 14px; */
    padding: 20px 24px 20px 27px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-sky-blue);
    font-weight: 500;
    color: var(--txt-black);
    position: relative;
  }
  .menu-list a {
    color: var(--txt-black);
    display: block;
  }
  .menu-list li:first-child {
    border-top: 1px solid var(--border-sky-blue);
  }
  .menu-list li::before {
    position: absolute;
    content: '';
    background-image: url('../img/leaf.jpg');
    width: 20px;
    height: 12px;
    background-size: cover;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-list li::after {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translatey(-50%);
    content: ">";
  }
}

/* KV
================================================== */
.tmp_kv {
  width: 100%;
  height: auto;
  display: flex;
}
.tmp_kv h1 {
  display: none;
}
.tmp_kv img {
  width: 100%;
  height: auto;
}
.kv-sp {
  display: none;
}

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

/* Q&Aバナー
================================================== */
#qa {
  padding: 120px var(--padding-lr) 80px;
}
.qa__inner {
  max-width: 1276px;
  margin: 0 auto;
}
.qa__inner img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  #qa {
    padding: 60px var(--padding-sp-lr) 20px;
  }
}

/* CO2CO2ポイント
================================================== */
#about {
  background: var(--white);
  padding: 80px var(--padding-lr) 193px;
}
.about__inner {
  max-width: 1280px;
  margin: 0 auto;

  position: relative;
  padding: 10px;
  text-align: center;
}
.about__inner::before,
.about__inner::after {
  position: absolute;
  content: "";
}

.about__inner::before {
  border-right: solid 2px var(--bracket-gray);
  border-top: solid 2px var(--bracket-gray);
  top: 63px;
  right: 0;
  width: 70%;
  height: 64px;
}

.about__inner::after {
  border-left: solid 2px var(--bracket-gray);
  border-bottom: solid 2px var(--bracket-gray);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
}

.about__inner h2 {
  font-family: var(--hiragino-pron);
  font-size: 28px;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: flex-end;
  column-gap: 32px;
}

.about__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 129px;
  margin: 40px 46px 20px 64px;
}
.about__content li {
  font-size: 20px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.5px;
  line-height: 1.6;
}
.about__content p {
  margin: 0;
  display: contents;
}
.about__img {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}
.about__img img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 768px) {
  #about {
    padding: 60px var(--padding-sp-lr) 209px;
  }
  .about__inner h2 {
    font-size: 18px;
    column-gap: 8px;
  }
  .about__inner h2 img {
    width: 65px;
    height: 58px;
  }
  .about__inner::before,
  .about__inner::after {
    height: 32px;
  }
  .about__inner::before {
    top: 40px;
    width: calc(100% - 220px);
  }
  .about__content {
    display: flex;
    flex-direction: column;
    margin: 42px 0 0;
    padding: 0 16px;
    row-gap: 44px;
  }
  .about__content ul {
    /* list-style-position: inside; */
    padding-left: 0;
  }
  .about__content li {
    font-size: 14px;
    line-height: 2;
    letter-spacing: -0.8px;
  }
  .about__content li::marker {
    margin-right: 5px;
  }
  .about__img {
    margin: 0 auto 35px;
  }
  .about__img img {
    width: 82%;
  }
}
@media (min-width: 769px) and (max-width: 1200px) {
  .about__content {
    column-gap: 50px;
    margin: 40px 30px 40px 50px;
  }
}

/* デカボスコア
================================================== */
#decarbo-score {
  background: var(--bg-yellow);
  padding: 120px var(--padding-lr) 193px;
  position: relative;
}
#decarbo-score h2 {
  display: none;
}
.decabo-score_img {
  position: absolute;
  top: -97px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-yellow);
  border-radius: 50%;
  width: 194px;
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.decabo-score_content {
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: var(--content-inner-width);
  margin: 0 auto;
  column-gap: 112px;
}
.decabo-score_left .sub-title {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--hiragino-maru);
  display: inline-flex;
  column-gap: 26px;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
}
.decabo-score_left img {
  max-width: 373px;
}
.decabo-score_right p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.662;
}
#decarbo-score sub {
  bottom: -0.07em;
  font-size: 60%;
  margin-right: 2px;
}
.decabo-score_right span {
  font-size: 80%;
}
.decabo-score_bottom {
  background-image: url(../img/people.png);
  background-repeat: repeat-x;
  width: 100%;
  height: 135px;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: bottom;
  background-size: cover;
}
@media only screen and (max-width: 768px) {
  #decarbo-score {
    padding: 90px var(--padding-sp-lr) 110px;
  }
  .decabo-score_img {
    width: 160px;
    height: 160px;
    top: -65px;
  }
  .decabo-score_img img {
    width: 87px;
    height: 87px;
  }
  .decabo-score_content {
    flex-direction: column;
    justify-content: center;
    row-gap: 40px;
  }
  .decabo-score_left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .decabo-score_left .sub-title {
    font-size: 14px;
    column-gap: 10px;
  }
  .decabo-score_left .sub-title img {
    width: 10px;
    height: 18px;
  }
  .decabo-score_left img {
    width: 71.5%;
    height: auto;
  }
  .decabo-score_right p {
    font-size: 16px;
  }
  #decarbo-score sub {
    bottom: -0.04em;
  }
  .decabo-score_bottom {
    height: 72px;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  .decabo-score_content {
    column-gap: 50px;
  }
}

/* 実施店舗
================================================== */
#company {
  padding: 174px var(--padding-lr) 160px;
}
.company__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  /* border-bottom: 2px solid var(--green); */
}
.tmp_sec_title_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.product-detail-btn {
  background: var(--green);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  width: 350px;
  height: 40px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product-detail-btn::before {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  content: "";
  width: 15px;
  height: 15px;
  background: var(--white);
  border-radius: 50px;
}
.product-detail-btn::after {
  position: absolute;
  top: 50%;
  right: 29px;
  transform: translateY(calc(-50% - 1px));
  content: ">";
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
}
.product-detail-btn:hover {
  filter: brightness(120%);
}
.company_table {
  width: 100%;
  border-collapse: collapse;
  margin: 23px auto 0;
}
.company_table caption {
  display: none;
}
.company_table th,
.company_table td {
  text-align: left;
}
.thead th {
  background-color: var(--bg-skyblue);
  border-bottom: 2px solid var(--green);
  padding: 22px 20px;
  font-size: clamp(14px, calc(100vw / 80), 18px);
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}
.company_table .thead th:nth-of-type(1) {
  width: 25%;
}
.company_table .thead th:nth-of-type(2) {
  width: 30%;
}
.company_table .thead th:nth-of-type(3) {
  width: 27%;
}
.company_table .thead th:nth-of-type(4) {
  width: 18%;
}
.thead-slash {
  display: none;
}
.tbody tr {
  position: relative;
}
.company_table .tbody td {
  padding: 40px 24px;
  font-size: clamp(14px, calc(100vw / 80), 18px);
  vertical-align: top;
  line-height: 2;
  font-weight: 500;
}
/* === 対象店舗検索 === */
.store_table {
  width: 100%;
  border-collapse: collapse;
  margin: 23px auto 0;
}
.store_table caption {
  display: none;
}
.store_table tbody tr {
  border-bottom: 1px solid var(--green);
}
.store_table thead tr {
  border-bottom: 2px solid var(--green);
}
.store_table th,
.store_table td {
  text-align: left;
}
.store_table .tbody td {
  padding: 30px 24px;
  font-size: clamp(14px, calc(100vw / 80), 18px);
  vertical-align: top;
  line-height: 1.4;
  font-weight: 500;
}
.store_table .thead th:nth-of-type(1) {
  width: 25%;
}
.store_table .thead th:nth-of-type(2) {
  width: 35%;
}
.store_table .thead th:nth-of-type(3) {
  width: 40%;
}
/* ================== */
.hide-content {
  display: none;
}
.read-more-btn {
  background: #FFF;
  border: none;
  border-bottom: 1px solid #166453;
  color: #166453;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--hiragino);
  padding: 0px 27px 4px 0px;
  text-align: left;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  cursor: pointer;
}
.read-more-btn::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 2px));
  width: 17px;
  height: 17px;
  content: '';
  background-image: url('../img/arrow_bottom_green.svg');
  background-size: cover;
}
.read-more-btn.expanded::after {
  transform: rotate(180deg) translateY(10px);
}
.company_store span {
  /* font-size: 70%; */
  /* line-height: 1.8; */
  /* display: inline-block; */
  display: none;
}
#company .tbody tr:nth-child(even) {
  background-color: var(--bg-green);
}
#company .store {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  #company {
    padding: 100px 0 40px;
  }
  .company__inner {
    border-bottom: none;
  }
  .company_store span {
    font-size: 70%;
    line-height: 1.8;
    display: inline-block;
  }
  .tmp_sec_title_wrapper {
    flex-direction: column;
    row-gap: 30px;
    /* align-items: flex-start; */
    padding: 0 30px;
  }
  #company .tmp_sec_title {
    padding-left: 35px;
    margin: 0 0 0 30px;
  }
  .product-detail-btn {
    max-width: 400px;
    height: 35px;
    width: 100%;
    font-size: 12px;
  }
  .product-detail-btn::after,
  .accordion::after {
    font-size: 8px;
    right: 30px;
    transform: translateY(calc(-50% - 0px));
  }
  .company_table {
    margin: 40px 0 0;
    width: 100%;
  }
  .thead tr {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    background: #28b9b4;
    border-bottom: 2px solid #0b6e09;
    padding: 15px 30px 11px;
    line-height: 1;
    justify-content: flex-start;
  }
  .thead th {
    border-bottom: 0;
    display: contents;
    font-size: 14px;
  }
  .thead-slash {
    display: inline-block;
    margin: 0 5px;
  }
  #company .tbody tr,
  #company .tbody th,
  #company .tbody td {
    display: block; /* セルを縦に */
    border: none; /* 線をリセット */
  }
  .company_table .tbody td {
    padding: 10px 0;
  }
  /* もっと見る */
  #urban-research,
  #styling-life,
  #keikyu-store,
  #pal-system-kanagawa,
  #coop-kanagawa,
  #seven-eleven,
  #family-mart,
  #tokyu-store-chain,
  #fancl,
  #fujicitio,
  #ufs {
    padding-bottom: 80px;
  }
  .read-more-btn {
    bottom: 25px;
    font-size: 14px;
    padding: 0 26px 4px 0;
  }
  .read-more-btn::after {
    width: 14px;
    height: 14px;
  }
  .read-more-btn.expanded::after {
    transform: rotate(180deg) translateY(9px);
  }
  /* 以下で線を再設定 */
  .tbody {
    border-top: none;
  }
  .tbody tr {
    padding: 24px 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    row-gap: 20px;
  }
  .tbody td {
    padding: 22px 0 0;
  }
  .row_title {
    position: relative;
    display: block!important;
    margin-bottom: 22px;
  }
  .company_name .row_title::before,
  .company_store .row_title::before,
  .company_product .row_title::before,
  .company_point .row_title::before,
  .store_area .row_title::before,
  .store_name .row_title::before,
  .company_name .row_title::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--bg-skyblue);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
  }
  .company_name .row_title::before {
    content: "事業者";
  }
  .company_store .row_title::before {
    content: "実施店舗等";
  }
  .company_product .row_title::before {
    content: "対象商品等";
  }
  .company_point .row_title::before {
    content: "ポイント上乗せ数（率）";
  }
  .sp-hide.hide-content {
    display: none;
  }
  /* 対象店舗検索 */
  .store_table tr {
    width: calc(100% - 60px);
    margin: 0 auto;
    border-bottom: none;
  }
  .store_table tbody tr {
    border-bottom: none;
  }
  .store_table .tbody td {
    padding: 0;
  }
  .store_area .row_title::before {
    content: "市区町村";
  }
  .store_name .row_title::before {
    content: "店舗名";
  }
  .store_table .company_name .row_title::before {
    content: "事業者";
  }
  .store_table .company_name {
    position: relative;
  }
  .store_table .company_name::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--green);
    bottom: -24px;
    left: 0;
  }
  .store-search__title_wrapper {
    padding: 0 30px;
  }
}

/* セブンイレブンPDF
================================================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background: #fff;
  padding: 0;
  width: 80%;
  height: 80%;
  position: relative;
}
.modal-content object {
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
}

/* 対象店舗検索
================================================== */
#store-search {
  padding: 0 var(--padding-lr);
}
.store-search__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 120px;
  /* border-bottom: 2px solid var(--green); */
}
.store-search__desc {
  font-family: var(--hiragino);
  font-size: 16px;
  font-weight: 400;
  margin: 26px 0 0;
  line-height: 1.4;
  padding-left: 32px;
}
.store-search__select_wrapper {
  padding: 26px 30px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
#city {
  border-color: var(--green);
  padding: 23px 50px 23px 30px;
  -webkit-appearance: none;
  appearance: none;
  background: url("../img/option-arrow.svg") no-repeat right 10px center / 26px auto;
}
#city::-ms-expand {
  display: none;
}
.store-search__select_wrapper label,
#city {
  font-size: 18px!important;
  color: #0b6453!important;
  font-weight: 600!important;
}

/* 商品詳細
================================================== */
#product-detail {
  padding: 0 var(--padding-lr);
}
.product-detail__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 140px;
  /* バナー差し替え後に下線を表示 */
  /* border-bottom: 2px solid var(--green); */
}
#product-detail .tmp_sec_title {
  margin: 0 0 40px 0;
}
.accordion {
  cursor: pointer;
  padding: 23px 100px 23px 23px;
  width: 100%;
  border: none;
  outline: none;
  transition: background-color 0.4s;
  position: relative;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.accordion:focus {
  /* outline: 2px solid var(--txt-blue); */
  outline: none;
}
.accordion::before,
.accordion::after {
  position: absolute;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;;
}
.accordion::before {
  content: "";
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50px;
}
.accordion::after {
  position: absolute;
  content: ">";
  font-size: 18px;
  font-weight: 500;
  top: 50%;
  right: 61px;
  transform: rotate(90deg) translate(calc(-50% - 4px), calc(50% - 1px));
  transition: all 0.3s;
}
.accordion.active {
  background-color: #156a21;
}
.accordion.active::after {
  right: 82px;
  transform: rotate(270deg) translate(calc(-50% + 15px), calc(50% - 2px));
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.accordion-content.open {
  /* 必要に応じて調整 */
  max-height: 100000px;
  padding: 0 64px;
}
.company_product {
  /* display: flex;
  flex-direction: column;
  row-gap: 5px; */
}
.product-link {
  cursor: pointer;
  color: var(--txt-blue);
  display: inline;
  margin: 0;
}
.tbody tr:nth-child(even) .product-link {
  color: var(--txt-blue2);
}
.product-title-annotation {
  font-size: 70%;
}
.product-accordion:nth-of-type(odd) .accordion {
  background-color: var(--tab-green);
  color: white;
}
.product-accordion:nth-of-type(odd) .accordion::before {
  border: 2px solid var(--white);
}
.product-accordion:nth-of-type(even) .accordion {
  background-color: white;
  color: var(--tab-green);
  border-top: 2px solid var(--tab-green);
  border-bottom: 2px solid var(--tab-green);
}
.product-accordion:nth-of-type(even) .accordion::before {
  border: 2px solid var(--tab-green);
}
/* product */
.product {
  display: flex;
  align-items: center;
  max-width: var(--content-inner-width);
  margin: 0 auto;
  column-gap: 10%;
  padding: 80px 0;
}
.product:not(.product:first-child) {
  border-top: 1px solid var(--border-gray);
}
.product-img {
  width: 40%;
}
.product-img .product-title {
  display: none;
}
.product-info {
  width: 60%;
}
.product-title {
  font-size: 18px;
  font-weight: bold;
  padding-left: 35px;
  position: relative;
  line-height: 1.4;
  margin: 0 0 60px;
}
.product-title::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  background: var(--bg-skyblue);
  border-radius: 50px;
}
.product-title span {
  font-size: 70%;
  display: block;
  margin-top: 5px;
}
.product-img_wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.product-decarbo-score {
  border: 2px solid var(--bg-skyblue);
  border-radius: 14px;
}
.co2-emission-reductions {
  background: var(--bg-skyblue);
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 10%;
}
.co2-emission-reductions p {
  margin: 0;
  color: var(--white);
}
.emission-txt {
  font-size: 14px;
  font-weight: 400;
}
.emission-score {
  font-size: 31px;
  font-family: var(--hiragino-pron);
  font-weight: bold;
}
.score-unit {
  font-size: 14px;
  font-weight: 400;
}
.emission-score .score-unit {
  margin-left: 5px;
}
.product-score-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 17px 5.5% 17px 11%;
  column-gap: 5%;
}
.quantity-comparison {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  text-align: center;
  width: 70%;
}
.target-diff {
  background: var(--bg-gray);
  border-radius: 14px;
  padding: 19px 38px;
}
.target-diff p {
  margin: 0;
}
.diff-1 {
  position: relative;
}
.diff-1::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 25px);
  content: "";
  width: 34px;
  height: 33px;
  background-image: url("../img/yajirushi.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.target-diff .diff-product-txt {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1.45;
}
.diff-product-score {
  font-size: 20px;
  font-family: var(--hiragino-pron);
  font-weight: bold;
}
.diff-product-score .score-unit {
  margin-left: 4px;
  font-weight: 400;
}

.product-decarbo-img {
  width: 30%;
  max-width: 152px;
  height: auto;
}
.product-decarbo-img img {
  width: 100%;
  height: auto;
}

.calc-info {
  margin: 26px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.product-detail__banner {
  max-width: 1020px;
  margin: 140px auto 0;
  height: auto;
  /* display: flex; */
  /* 差し替え後に表示 */
  display: none;
}
.product-detail__banner img {
  width: 100%;
  height: auto;
  transition: all .2s;
}
.product-detail__banner img:hover {
  opacity: 0.7;
}
.product-detail__banner img:last-child {
  display: none;
}

@media only screen and (max-width: 768px) {
  /* 対象店舗検索
  ================================================== */
  #store-search {
    padding: 60px 0 0;
  }
  .store-search__inner {
    padding-bottom: 100px;
  }
  #store-search .tmp_sec_title {
    width: calc(100% - 30px);
  }
  .store-search__desc {
    font-size: 12px;
    margin: 23px 0 0;
    padding: 0;
  }
  .store-search__select_wrapper {
    padding: 42px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .store-search__select_wrapper label,
  #city {
    font-size: 14px!important;
  }
  #city {
    padding: 18px 40px 18px 30px;
    width: 100%;
    background: url("../img/option-arrow.svg") no-repeat right 13px center / 14px auto;
  }
  /* 商品詳細
  ================================================== */
  #product-detail {
    /* padding: 30px var(--padding-sp-lr) 0; */
    padding: 0 var(--padding-sp-lr) 0;
  }
  .product-detail__inner {
    padding-bottom: 145px;
    /* padding: 30px var(--padding-sp-lr) 0; */
  }
  #product-detail .tmp_sec_title {
    width: calc(100% - 30px);
  }
  .accordion {
    padding: 13px 50px 13px 20px;
    font-size: 14px;
  }
  .accordion-content.open {
    padding: 0;
  }
  .accordion::before {
    right: 15px;
    width: 12px;
    height: 12px;
  }
  .accordion::after {
    right: 15px;
    font-size: 9px;
    line-height: 1;
    transform: translate(calc(-50% - 1px), -50%) rotate(90deg);
  }
  .product-accordion:nth-of-type(even) .accordion {
    border-top: 1px solid var(--tab-green);
    border-bottom: 1px solid var(--tab-green);
  }
  .product-accordion:nth-of-type(odd) .accordion::before {
    border: 1px solid var(--white);
  }
  .product-accordion:nth-of-type(even) .accordion::before {
    border: 1px solid var(--tab-green);
  }
  .accordion.active::after {
    right: 23px;
    transform: rotate(270deg) translate(calc(-50% + 8px), calc(50% - 2px));
  }
  .product {
    padding: 40px 0;
  }
  .product-img {
    width: 100%;
  }
  .product-img .product-title {
    padding-left: 25px;
    font-size: 14px;
    line-height: 1.286;
  }
  .product-title::before {
    /* top: 9px; */
    top: 1px;
  }
  .co2-emission-reductions {
    padding: 26px 24px 26px;
    justify-content: center;
    column-gap: 10%;
  }
  .emission-score {
    line-height: 1;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    column-gap: 5px;
  }
  .emission-score .score-unit {
    margin: 7px 0 0;
  }
  .emission-txt {
    line-height: 1.286;
  }
  .product-score-content {
    flex-direction: column-reverse;
    padding: 28px 20px 12px;
    row-gap: 20px;
  }

  .quantity-comparison {
    row-gap: 10px;
    width: 100%;
  }
  .target-diff {
    padding: 19px 28px;
  }
  .diff-1::after {
    transform: translate(-50%, 24px);
  }

  .product-decarbo-img {
    width: 126px;
    height: 137px;
  }

  .calc-info {
    margin-top: 20px;
  }

  .product-detail__banner {
    margin-top: 75px;
  }
  .product-detail__banner img:first-child {
    display: none;
  }
  .product-detail__banner img:last-child {
    display: block;
  }
}

@media (min-width: 769px) and (max-width: 1200px) {
  /* header */
  .tmp_header__inner img {
    margin-right: 7%;
  }
  .header-list {
    /* padding-left: 0; */
    padding-left: 10px;
    column-gap: 3%;
    width: 100%;
  }
  .header-list li {
    font-size: 12px;
  }

  /* product */
  .product-detail__inner {
    /* padding-bottom: 174px; */
  }
  .accordion-content.open {
    padding: 0 40px;
  }
  .product {
    padding: 60px 0;
  }
  .product-img .product-title {
    line-height: 1.4;
  }
}
@media only screen and (max-width: 1200px) {
  .product {
    flex-direction: column;
    align-items: center;
    row-gap: 40px;
  }
  .product-img {
    width: auto;
  }
  .product-img img {
    width: 100%;
    height: auto;
  }
  .product-img .product-title {
    display: block;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .product-info {
    width: 100%;
    max-width: 600px;
  }
  .product-info .product-title {
    display: none;
  }
}

/* footer
================================================== */
#tmp_footer {
  padding: 83px var(--padding-lr) 164px;
}
.tmp_footer__inner {
  max-width: var(--content-inner-width);
  margin: 0 auto;
}
.tmp_footer_info {
  display: flex;
  flex-direction: row;
  column-gap: 75px;
  margin-bottom: 117px;
}
.tmp_footer_contact {
  width: calc((100% - 75px) / 2);
}
.tmp_footer_contact h2 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  margin: 0;
}
.tmp_footer_contact h2 img {
  width: 16px;
  height: 13px;
  margin-right: 10px;
}
.tmp_footer_contact ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin: 40px 0 0;
  padding-left: 0;
}
.tmp_footer_contact li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42;
}
.tmp_footer_contact p {
  margin: 0;
}
.tmp_footer_contact p a {
  color: var(--txt-black);
}
.tmp_footer_contact .txt-blue {
  color: var(--txt-blue);
}
.tmp_footer_logo {
  display: flex;
  flex-direction: row;
  column-gap: 150px;
  justify-content: center;
  align-items: center;
}
.tmp_footer_logo img {
  width: 100%;
  height: auto;
}
.kanagawa-pref-link {
  width: 180px;
  height: 90px;
}
@media only screen and (max-width: 768px) {
  #tmp_footer {
    padding: 30px var(--padding-sp-lr) 40px;
  }
  .tmp_footer_info {
    flex-direction: column;
    row-gap: 30px;
    margin-bottom: 40px;
  }
  .tmp_footer_contact {
    width: 100%;
  }
  .tmp_footer_contact h2 {
    font-size: 12px;
    margin: 0;
  }
  .tmp_footer_contact h2 img {
    width: 9px;
    height: 7px;
  }
  .tmp_footer_contact ul {
    margin: 20px 0 0;
    row-gap: 10px;
  }
  .tmp_footer_contact li {
    font-size: 12px;
    line-height: 1.65;
  }
  .tmp_footer_logo {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 11px;
  }
  .kanagawa-pref-link {
    width: 67px;
    height: 33px;
  }
  .earth-hacks-link {
    width: 111px;
    height: 27px;
  }
}
