@charset "utf-8";

:root {
  --main-black: #333;
  --main-green: #00a040;
  --main-lightgreen: #e0f4e8;
}
body {
  min-width: 1290px;
  color: var(--main-black); /*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
}
a {
  color: var(--main-black);
  cursor: pointer;
  transition: 0.3s;
}
a[href^="tel:"] {
  pointer-events: none;
}
_:lang(x)::-internal-media-controls-overlay-cast-button,
img {
  image-rendering: -webkit-optimize-contrast;
}

header {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  min-width: 1200px;
  height: 110px;
  padding: 24px 146px 10px 28px;
  background: #fff;
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
}
header .logo {
  margin-top: 10px;
}
header .logo img {
  width: 400px;
}
header nav label,
header #menu-cb {
  display: none;
}
header #ham-menu ul {
  display: flex;
  justify-content: flex-end;
}

header #ham-menu .sub-menu > li {
  display: flex;
  align-items: center;
  height: 30px;
}
header #ham-menu .sub-menu > li:not(:last-child) {
  margin-right: 20px;
}
header #ham-menu .sub-menu > li:not(:last-child) > a {
  display: flex;
  align-items: center;
  height: 30px;
  padding: 0 20px 0 17px;
  border-radius: 15px;
}
header #ham-menu .sub-menu > li:not(:last-child) > a:hover,
header #ham-menu .sub-menu > li:not(:last-child).active > a {
  background: var(--main-green);
  color: #fff;
}
header #ham-menu .sub-menu .lang {
  position: relative;
  width: 200px;
  padding: 0 40px 0 20px;
  border-radius: 15px;
}
header #ham-menu .sub-menu .lang:after {
  content: "\f107";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: 2px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform: translateY(-50%);
}
header #ham-menu .sub-menu .lang:hover {
  background: var(--main-green);
  color: #fff;
  cursor: pointer;
}
header #ham-menu .sub-menu .acd-content {
  flex-direction: column;
  top: 39px;
  width: 224px;
  padding: 18px 13px;
}
header #ham-menu .sub-menu .acd-content li {
  width: auto;
  margin: 5px 0 0;
}
header #ham-menu .sub-menu .acd-content li:nth-child(-n + 3) {
  margin-top: 5px;
}
header #ham-menu .sub-menu .acd-content li:first-child {
  margin-top: 0;
}
header #ham-menu .sub-menu .acd-content li a {
  justify-content: center;
  height: 30px;
  border-radius: 15px;
}
header #ham-menu .sub-menu .acd-content li a:after {
  content: none;
}
header #ham-menu .sub-menu .acd-content li a:hover {
  background: var(--main-green);
  color: #fff;
}

header #ham-menu .main-menu {
  margin-top: 10px;
}
header #ham-menu .main-menu > li {
  font-size: 1.8rem;
  font-weight: 500;
}
@media (max-width: 1470px) {
  header #ham-menu .main-menu > li {
    font-size: 1.52rem !important;
  }
  header #ham-menu .main-menu > li:not(:last-child) {
    margin-right: 0 !important;
  }
}
@media (max-width: 1305px) {
  header #ham-menu .main-menu > li {
    font-size: 1.24rem !important;
  }
  header #ham-menu .sub-menu > li {
    font-size: 1.24rem;
  }
  header #ham-menu .sub-menu > li:not(:last-child) {
    margin-right: 0;
  }
  header #ham-menu .sub-menu .lang {
    width: 165px;
  }
}
header #ham-menu .main-menu > li > a {
  display: flex;
  align-items: center;
  height: 40px;
  padding: 0 20px 0 17px;
  border-radius: 20px;
}
header #ham-menu .main-menu > li > a:after {
  content: "\f107";
  margin: 5px 0 0 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
}
header #ham-menu .main-menu > li:not(:last-child) {
  margin-right: 18px;
}
header #ham-menu .main-menu > li > a:hover,
header #ham-menu .main-menu > li.active > a {
  background: var(--main-green);
  color: #fff;
}

header #ham-menu .acd-check,
header #ham-menu .acd-label {
  display: none;
}
header #ham-menu .acd-menu {
  position: relative;
}
header #ham-menu .acd-content {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: absolute;
  top: 45px;
  left: 50%;
  z-index: 1;
  width: 808px;
  padding: 20px 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
  font-size: 1.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  transition: 0.1s;
}
header #ham-menu .acd-content:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #fff;
  box-shadow: -3px -3px 3px -1px rgba(0, 0, 0, 0.2);
  transform: translateX(-50%) rotate(45deg);
}
header #ham-menu .main-menu #acd-menu4 .acd-content,
header #ham-menu .main-menu #acd-menu5 .acd-content {
  margin-left: -210px;
}
header #ham-menu .main-menu #acd-menu4 .acd-content:before,
header #ham-menu .main-menu #acd-menu5 .acd-content:before {
  margin-left: 210px;
}
header #ham-menu .sub-menu > li:hover .acd-content,
header #ham-menu .main-menu > li:hover .acd-content {
  visibility: visible;
  opacity: 1;
}
header #ham-menu .acd-content li {
  width: calc((100% - 20px) / 2);
  margin: 20px 20px 0 0;
}
header #ham-menu .acd-content li:nth-child(-n + 3) {
  margin-top: 0;
}
header #ham-menu .acd-content li:nth-child(2n + 1) {
  margin-right: 0;
}
header #ham-menu .acd-content li a {
  display: flex;
  align-items: center;
  position: relative;
  height: 60px;
  border-radius: 30px;
}
header #ham-menu .acd-content li a:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform: translateY(-50%);
  transition: 0.3s;
}
header #ham-menu .acd-content li a:hover {
  background: var(--main-lightgreen);
}
header #ham-menu .acd-content li a:hover:after {
  right: 14px;
  color: var(--main-green);
}
header #ham-menu .acd-content li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--main-lightgreen);
  color: var(--main-green);
  font-size: 2.8rem;
  transition: 0.6s;
}
header #ham-menu .acd-content li a:hover i {
  background: #fff;
}

header p.contact {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.4rem;
  font-weight: 700;
}
header p.contact a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 110px;
  height: 110px;
  background: #fff;
  color: var(--main-green);
  text-align: center;
  font-size: 1.2rem;
}
header p.contact a:before {
  content: "\f0e0";
  font-family: "Font Awesome 6 Pro";
  font-size: 2rem;
  font-weight: 300;
}
header p.contact a:hover {
  background: var(--main-black);
  color: #fff;
}

header p.menu_tel {
  display: none;
}

#apri {
  padding: 80px 0 50px;
  background: #f6f6f6;
}
#apri .inner {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  padding: 0 60px;
}
#apri figure {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
#apri figcaption {
  margin-top: 15px;
}
#apri figure:last-child {
  padding-right: 30px;
}

#apri .exp {
  width: 618px;
  margin: 0 60px 0 60px;
}
#apri .exp dl {
  font-size: 1.4rem;
}
#apri .exp dt {
  margin-bottom: 15px;
  color: var(--main-green);
  font-size: 2rem;
  font-weight: 700;
}
#apri .exp .bnr {
  display: flex;
  margin-top: 15px;
}
#apri .exp .bnr li + li {
  margin-left: 14px;
}
#apri .exp .bnr li img {
  width: auto;
  height: 47px;
}
#apri .exp .note {
  margin-top: 15px;
  color: #999;
  font-size: 1.2rem;
}

footer {
  padding: 50px 0;
  background: var(--main-black);
  color: #fff;
  font-weight: 500;
  text-align: center;
}
footer .inner {
  width: 657px;
}
footer nav {
  margin-top: 55px;
}
footer ul {
  display: flex;
  justify-content: space-between;
}
footer a {
  color: #fff;
}

footer .official {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding: 10px;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 1.4rem;
  text-align: left;
}
footer .official figure {
  width: 90px;
  margin-right: 24px;
}
footer .official figure img {
  width: 100%;
}
footer .official dl {
  display: flex;
  align-items: center;
}
footer .official dt,
footer .official dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90px;
}
footer .official dt {
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
footer .official dt strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

footer small {
  display: block;
  margin-top: 25px;
  color: #ccc;
  font-size: 1.2rem;
}
footer #pagetop {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 10;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  cursor: pointer;
}
footer #pagetop i {
  font-size: 2rem;
  transition: 0.3s;
}
footer #pagetop:hover i {
  margin-top: -10px;
}

main {
  position: relative;
  padding-top: 110px;
}

.topic-path {
  display: flex;
  flex-wrap: wrap;
  width: 1280px;
  margin: 25px auto 30px;
  font-size: 1.2rem;
  font-weight: 600;
}
.topic-path li a {
  position: relative;
  display: block;
  margin-right: 28px;
  color: var(--main-black);
}
.topic-path li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 6px;
  height: 6px;
  margin-top: 1px;
  border-top: 1px solid var(--main-black);
  border-right: 1px solid var(--main-black);
  transform: translateY(-50%) rotate(45deg);
}

.inner {
  width: 1280px;
  margin: 0 auto;
}

h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 130px;
  background: #00a040;
  color: #fff;
  font-size: 5rem;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}
h1:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  z-index: -1;
  width: 60px;
  height: 60px;
  background: #00a040;
  transform: translateX(-50%) rotate(135deg) skew(60deg, 60deg);
}
h2 {
  margin: 50px 0 30px;
  color: var(--main-green);
  font-size: 3.6rem;
  font-weight: 600;
  text-align: center;
}

table {
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  border-radius: 10px;
  border-spacing: 0;
  border-collapse: separate;
}
table th {
  padding: 10px 15px;
  background: #d1efdd;
  font-weight: 700;
  text-align: right;
  vertical-align: top;
}
table td {
  padding: 10px 20px;
  background: #f3fbf6;
  vertical-align: top;
}
table tr:nth-child(2n) th {
  background: #e1f4e9;
}
table tr:nth-child(2n) td {
  background: #fff;
}
table tr > *:last-child {
  border-right: 2px solid #ccc;
}
table tr:first-child > *:first-child {
  border-radius: 10px 0 0 0;
}
table tr:first-child > *:last-child {
  border-radius: 0 10px 0 0;
}
table tr:last-child > *:first-child {
  border-radius: 0 0 0 10px;
  border-bottom: 2px solid #ccc;
}
table tr:last-child > *:last-child {
  border-radius: 0 0 10px 0;
  border-bottom: 2px solid #ccc;
}

.link-btn {
  display: flex;
  justify-content: center;
}
.link-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 340px;
  height: 70px;
  border: 2px solid var(--main-green);
  border-radius: 10px;
  background: var(--main-green);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  transition: 0.3s;
}
.link-btn a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: none;
  transform: translateY(-50%);
}
.link-btn a:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  right: 30px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  transform: translateY(-50%);
}
.link-btn a:hover {
  border-radius: 60px;
  background: #fff;
  color: var(--main-green);
}
.link-btn a:hover:before {
  background: var(--main-green);
}
.link-btn a:hover:after {
  color: #fff;
}
.link-btn a[target="_blank"]:after {
  content: "\f08e";
}
.link-btn a[target="_blank"]:hover:before {
  background: none;
}
.link-btn a[target="_blank"]:hover:after {
  color: var(--main-green);
  font-weight: 400;
}
/*.link-btn.back a:after { content: '\f060'; right: auto; left: 24px; }*/
.link-btn.gray a {
  border-color: #666;
  background: #666;
}
.link-btn.gray a:hover {
  background: #fff;
  color: #666;
}
.link-btn.gray a:hover:before {
  background: #666;
}
.link-btn.gray a[target="_blank"]:hover:before {
  background: none;
}
.link-btn.gray a[target="_blank"]:hover:after {
  color: #666;
}

.ti {
  margin-left: 1em !important;
  text-indent: -1em !important;
}
.ti1-1 {
  margin-left: 1.1em !important;
  text-indent: -1.1em !important;
}
.ti1-2 {
  margin-left: 1.2em !important;
  text-indent: -1.2em !important;
}
.ti1-3 {
  margin-left: 1.3em !important;
  text-indent: -1.3em !important;
}
.ti1-4 {
  margin-left: 1.4em !important;
  text-indent: -1.4em !important;
}
.ti1-5 {
  margin-left: 1.5em !important;
  text-indent: -1.5em !important;
}
.ti1-6 {
  margin-left: 1.6em !important;
  text-indent: -1.6em !important;
}
.ti1-7 {
  margin-left: 1.7em !important;
  text-indent: -1.7em !important;
}
.ti1-8 {
  margin-left: 1.8em !important;
  text-indent: -1.8em !important;
}
.ti1-9 {
  margin-left: 1.9em !important;
  text-indent: -1.9em !important;
}
.ti2 {
  margin-left: 2em !important;
  text-indent: -2em !important;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.tabs > input {
  display: none;
}
.tabs .tab_item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 10px 10px 0 0;
  background: #eee;
  margin-right: 20px;
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.tabs.tab-2 .tab_item {
  width: calc((100% - 80px) / 2);
}
.tabs.tab-4 .tab_item {
  width: calc((100% - 140px) / 4);
}
.tabs .tab_item:first-of-type {
  margin-left: 30px;
}
.tabs .tab_item:last-of-type {
  margin-right: 30px;
}
.tabs .tab_item:hover,
.tabs input:checked + .tab_item {
  background: var(--main-green);
  color: #fff;
}

.tab_content {
  display: none;
  width: 100%;
  padding: 40px 30px 50px;
  border-top: 2px solid var(--main-green);
  text-align: left;
}
.tabs #tab01:checked ~ #tab01_content,
.tabs #tab02:checked ~ #tab02_content,
.tabs #tabA:checked ~ #tabA_content,
.tabs #tabB:checked ~ #tabB_content,
.tabs #tabC:checked ~ #tabC_content,
.tabs #tabD:checked ~ #tabD_content {
  display: block;
}

.select-box {
  position: relative;
  width: 400px;
  height: 60px;
  margin: 0 auto;
  border: 1px solid #707070;
  border-radius: 10px;
}
.select-box select {
  width: 100%;
  height: 100%;
  text-indent: 20px;
  color: #ccc;
}
.select-box:after {
  content: "\f107";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 100%;
  border-radius: 0 8px 8px 0;
  background: var(--main-green);
  color: #fff;
  font-family: "Font Awesome 6 Pro";
  font-size: 2.6rem;
  font-weight: 300;
  pointer-events: none;
}
.select-box select optgroup,
.select-box select option {
  color: var(--main-black);
}

.store-list > li {
  margin-top: 50px;
}
.store-list .name {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}
.store-list .name span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 4px solid var(--main-green);
}
.store-list .box {
  padding: 30px 40px 40px;
  border: 2px solid var(--main-green);
  border-radius: 10px;
}
.store-list .spec {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.store-list table {
  width: 760px;
}
.store-list .btns {
  width: 340px;
}
.store-list .btns li + li {
  margin-top: 20px;
}

.qa-menu li {
  border: 1px solid #ccc;
  border-radius: 10px;
}
.qa-menu li + li {
  margin-top: 50px;
}
.qa-check {
  display: none;
}
.qa-label {
  display: block;
  position: relative;
  min-height: 80px;
  padding: 30px 70px 25px 100px;
  border-radius: 10px;
  background: #f3fbf6;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
}
.qa-label:before,
.qa-label:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 2px;
  background: var(--main-green);
  transition: 0.3s;
}
.qa-label:after {
  transform: translateY(-50%) rotate(-90deg);
}
.qa-label span {
  display: block;
}
.qa-label span:before {
  content: "Q";
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  border-radius: 10px 0 0 10px;
  background: #d1efdd;
  color: var(--main-green);
  font-size: 2.8rem;
  font-weight: 600;
}
.qa-content {
  position: relative;
  height: 0;
  opacity: 0;
  padding: 0 20px 0 140px;
  font-size: 1.8rem;
  transition: 0.3s;
  visibility: hidden;
  overflow: hidden;
}
.qa-content:before {
  content: "A";
  position: absolute;
  top: 12px;
  left: 100px;
  color: #ea081c;
  font-size: 2.8rem;
  font-weight: 600;
}
.qa-check:checked + .qa-label:after {
  transform: translateY(-50%);
}
.qa-check:checked + .qa-label span:before {
  border-radius: 10px 0 0 0;
}
.qa-check:checked + .qa-label + .qa-content {
  height: auto;
  opacity: 1;
  padding: 20px 20px 20px 140px;
  visibility: visible;
}

/*スマホ時メニューを開いたときに背景コンテンツ固定*/
.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  body {
    min-width: initial;
    font-size: 1.4rem;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }

  header {
    display: block;
    min-width: initial;
    height: 50px;
    padding: 14px 16px;
  }
  header .logo {
    margin-top: 0;
  }
  header .logo img {
    width: 253px;
  }

  header #menu-icon {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 20;
    width: 50px;
    height: 50px;
    background: var(--main-green);
    transition: all 0.3s;
  }
  header #menu-cb:checked ~ #ham-menu {
    transform: translate(-100%);
  }
  header #menu-icon span {
    display: inline-block;
    position: absolute;
    left: 15px;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: all 0.4s;
  }
  header #menu-icon span:nth-of-type(1) {
    top: 16px;
  }
  header #menu-icon span:nth-of-type(2) {
    top: 24px;
  }
  header #menu-icon span:nth-of-type(3) {
    top: 32px;
  }
  header #menu-cb:checked ~ #menu-icon {
    background: #000;
  }
  header #menu-cb:checked ~ #menu-icon span:nth-of-type(1),
  header #menu-cb:checked ~ #menu-icon span:nth-of-type(3) {
    top: 24px;
    opacity: 0;
  }

  header #ham-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 100%;
    height: 100%;
    padding: 50px 0 40px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    overflow-y: auto;
    transition: transform 0.3s ease-out 0s;
  }
  header #ham-menu .sub-menu a,
  header #ham-menu .main-menu a {
    color: #fff;
  }
  header #ham-menu ul {
    flex-direction: column;
    justify-content: flex-start;
  }
  header #ham-menu .sub-menu {
    order: -1;
    padding: 24px 15px 0;
    font-size: 1.6rem;
    text-align: center;
  }
  header #ham-menu .main-menu {
    order: -2;
    margin-top: 0;
  }

  header #ham-menu .sub-menu > li:not(:last-child) {
    margin: 0 0 15px;
  }
  header #ham-menu .sub-menu > li:not(:last-child) > a {
    height: auto;
    padding: 0;
  }
  header #ham-menu .sub-menu > li:not(:last-child) > a:hover,
  header #ham-menu .sub-menu > li:not(:last-child).active > a {
    background: none;
  }
  header #ham-menu .sub-menu .lang {
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 20px;
    border-radius: 10px;
  }
  header #ham-menu .sub-menu .lang:after {
    display: none;
  }
  header #ham-menu .sub-menu .lang:hover {
    background: var(--main-green);
    color: #fff;
  }
  header #ham-menu .sub-menu .lang span {
    display: none;
  }
  header #ham-menu .sub-menu .acd-label:after {
    position: static;
    margin-left: 10px;
    transform: translateY(0);
  }

  header #ham-menu .sub-menu .acd-content {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    padding: 0;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    overflow: visible;
  }
  header #ham-menu .sub-menu .acd-content:before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 20px;
    height: 20px;
    background: #fff;
    box-shadow: -3px -3px 3px -1px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) rotate(45deg);
  }
  header #ham-menu .sub-menu .acd-content:after {
    content: "";
    position: absolute;
    bottom: -20px;
    width: 1px;
    height: 20px; /*コンテンツ下の空きを確保*/
  }
  header #ham-menu .sub-menu > li:hover .acd-content {
    visibility: hidden;
    opacity: 0;
  }
  header #ham-menu .sub-menu .acd-content li {
    width: auto;
    margin: 5px 0 0;
  }
  header #ham-menu .sub-menu .acd-content li:nth-child(-n + 3) {
    margin-top: 5px;
  }
  header #ham-menu .sub-menu .acd-content li:first-child {
    margin-top: 0;
  }
  header #ham-menu .sub-menu .acd-content li a {
    justify-content: center;
    height: 30px;
    border-radius: 15px;
    color: var(--main-black);
  }
  header #ham-menu .sub-menu .acd-content li a:after {
    content: none;
  }
  header #ham-menu .sub-menu .acd-content li a:hover {
    background: var(--main-green);
    color: #fff;
  }

  header #ham-menu .main-menu > li {
    padding: 18px 18px 18px 24px;
    border-top: 1px solid #707070;
  }
  header #ham-menu .main-menu > li:last-child {
    border-bottom: 1px solid #707070;
  }
  header #ham-menu .main-menu > li > a {
    display: none;
  }
  header #ham-menu .main-menu > li:not(:last-child) {
    margin-right: 0;
  }

  header #ham-menu .acd-label {
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
  }
  header #ham-menu .acd-label:after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    transform: translateY(-50%);
  }

  header #ham-menu .acd-content {
    display: block;
    position: static;
    width: auto;
    height: 0;
    padding: 0 0 0 20px;
    border-radius: 0;
    background: none;
    box-shadow: none;
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(0);
    overflow: hidden;
  }
  header #ham-menu .acd-content:before {
    content: none;
  }

  header #ham-menu .main-menu #acd-menu4 .acd-content,
  header #ham-menu .main-menu #acd-menu5 .acd-content {
    margin-left: 0;
  }
  header #ham-menu .main-menu #acd-menu4 .acd-content:before,
  header #ham-menu .main-menu #acd-menu5 .acd-content:before {
    margin-left: 0;
  }

  header #ham-menu .acd-check:checked + .acd-label:after {
    content: "\f106";
  }
  header #ham-menu .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    padding: 20px 0 20px 20px;
    opacity: 1 !important;
    visibility: visible !important;
  }

  header #ham-menu .sub-menu .acd-check:checked + .acd-label + .acd-content {
    height: auto;
    padding: 20px;
    opacity: 1;
    visibility: visible;
  }

  header #ham-menu .acd-content li {
    width: auto;
    margin: 15px 0 0;
    font-weight: 700;
  }
  header #ham-menu .acd-content li:nth-child(-n + 3) {
    margin-top: 15px;
  }
  header #ham-menu .acd-content li:first-child {
    margin-top: 0;
  }
  header #ham-menu .acd-content li a {
    height: auto;
  }
  header #ham-menu .acd-content li a:after {
    right: 10px;
    font-size: 1.6rem;
  }
  header #ham-menu .acd-content li a:hover {
    background: none;
  }
  header #ham-menu .acd-content li a:hover:after {
    right: 10px;
    color: #fff;
  }
  header #ham-menu .acd-content li i {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 1.4rem;
    font-weight: 500;
  }
  header #ham-menu .acd-content li a:hover i {
    background: var(--main-lightgreen);
  }

  header p.contact {
    position: static;
    margin: 25px 15px 0;
    font-size: 1.6rem;
    color: #000;
  }
  header p.contact a {
    flex-direction: row;
    position: relative;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    color: #000;
  }
  header p.contact a:before {
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 2rem;
    transform: translateY(-50%);
  }
  header p.contact a:after {
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: "Font Awesome 6 Pro";
    font-size: 1.8rem;
    font-weight: 300;
    transform: translateY(-50%);
  }

  header p.menu_tel {
    position: relative;
    display: block;
    margin: 15px 15px 0;
    font-size: 1.2rem;
    color: #000;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    height: 50px;
    padding: 7px 0;
  }
  header p.menu_tel a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    flex-direction: row;
    width: 100%;
    border-radius: 10px;
    color: #000;
    font-weight: 700;
  }
  header p.menu_tel:before {
    content: "\f095";
    font-family: "Font Awesome 6 Pro";
    font-size: 2rem;
    font-weight: 300;
    position: absolute;
    top: 50%;
    left: 15px;
    font-size: 2rem;
    transform: translateY(-50%);
  }

  #apri {
    padding: 30px 0 35px;
  }
  #apri .inner {
    display: block;
    padding: 0 20px;
  }
  #apri figure {
    font-size: 1.6rem;
  }
  #apri figcaption {
    margin-top: 13px;
  }
  #apri figure:last-child {
    padding-right: 0;
  }

  #apri .exp {
    width: auto;
    margin: 35px 0 0;
  }
  #apri .exp dt {
    font-size: 1.6rem;
  }
  #apri .exp dd {
    display: flex;
    justify-content: space-between;
  }
  #apri .exp dd p {
    width: calc(100% - 113px);
  }
  #apri .exp dd figure {
    width: 89px;
  }
  #apri .exp dd figure img {
    width: 100%;
  }
  #apri .exp .bnr,
  #apri .exp .note {
    margin-top: 20px;
  }

  footer {
    padding: 45px 0 30px;
  }
  footer .inner {
    width: auto;
  }
  footer .logo img {
    width: 264px;
  }
  footer nav {
    margin-top: 30px;
  }
  footer ul {
    display: block;
  }
  footer li + li {
    margin-top: 15px;
  }
  footer a {
    color: #fff;
  }

  footer .official {
    justify-content: space-between;
    align-items: flex-start;
    padding: 17px 15px;
    text-align: center;
  }
  footer .official figure {
    margin-right: 0;
  }
  footer .official dl {
    display: block;
    width: calc(100% - 107px);
  }
  footer .official dt,
  footer .official dd {
    display: block;
    height: auto;
  }
  footer .official dt {
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }

  footer small {
    display: block;
    margin-top: 25px;
    color: #ccc;
    font-size: 1.2rem;
  }
  footer #pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 10;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  footer #pagetop i {
    font-size: 2rem;
    transition: 0.3s;
  }
  footer #pagetop:hover i {
    margin-top: -10px;
  }

  .topic-path {
    width: auto;
    padding: 0 20px;
  }

  .inner {
    width: 100%;
    padding: 0 20px;
  }

  .link-btn a {
    width: 100%;
    height: 50px;
    font-size: 1.6rem;
  }
  .link-btn a:after {
    right: 25px;
    font-size: 1.8rem;
  }
  .link-btn a:hover {
    border-radius: 10px;
    background: var(--main-green);
    color: #fff;
  }
  .link-btn a:hover:before {
    background: none;
  }
}

/* 追加 */
header #ham-menu .main-menu .acd-content.acd-content.acd-car-sharing {
  width: 404px;
}
header #ham-menu .main-menu .acd-content.acd-content.acd-car-sharing li {
  width: 100%;
}
@media (max-width: 767px) {
  header #ham-menu .main-menu .acd-content.acd-content.acd-car-sharing {
    width: 100%;
  }

  footer nav li {
    text-align: left;
  }
  footer .official {
    align-items: center;
  }
}
