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

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  font-weight: 500;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

input, textarea, select, button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  box-shadow: none;
  background: none;
  font: inherit;
  color: inherit;
}

table {
  border-collapse: collapse;
}

.wrapper {
  overflow: hidden;
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

section {
  padding: 100px 0;
}
section .inner h2 {
  text-align: center;
  font-size: 34px;
  line-height: 1.5;
  margin-bottom: 60px;
  color: #386a4b;
  font-weight: 900;
}
section:nth-child(2n) {
  background: #386a4b;
  color: #fff;
}
section:nth-child(2n) .inner h2 {
  color: #fff;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 250px;
  height: 60px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  background: #c49b1e;
  border-radius: 8px;
  gap: 20px;
}
.btn a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/arrow_right.svg) no-repeat center/contain;
}

#cta {
  background: url(../img/cta_bg.png) no-repeat center/cover;
  padding: 150px 0;
}
#cta .inner .desc {
  text-align: center;
  font-weight: bold;
  font-size: 22px;
}
#cta .inner .btn {
  margin-top: 40px;
}
#cta .inner .btn a {
  margin: 0 auto;
}

.marker {
  background: linear-gradient(to top, #c49b1e 12px, transparent 12px);
}

@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
#top #mv {
  padding: 0;
  background: url(../img/top/mv.png) no-repeat center/cover;
  height: 600px;
}
#top #mv .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#top #mv .inner .name {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 10px;
}
#top #mv .inner .name small {
  font-size: 30px;
}
#top #mv .inner h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
#top #mv .inner .desc {
  font-size: 18px;
}
#top #mv .inner .btn {
  margin-top: 20px;
}
#top #mv .inner .outro {
  margin-top: 20px;
  font-size: 20px;
  font-weight: bold;
}
#top #feature .inner {
  max-width: 1000px;
}
#top #feature .inner h2 {
  margin-bottom: 30px;
}
#top #feature .inner .intro {
  text-align: center;
  font-size: 20px;
}
#top #feature .inner .list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 4%;
}
#top #feature .inner .list .block {
  width: 48%;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  color: #333;
}
#top #feature .inner .list .block h3 {
  text-align: center;
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 24px;
}
#top #feature .inner .outro {
  margin-top: 60px;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}
#top #recommend .inner ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#top #recommend .inner ul li {
  display: flex;
  gap: 10px;
  font-size: 20px;
  font-weight: bold;
}
#top #recommend .inner ul li::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 15px;
  background: #333;
}
#top #recommend .inner ul li:not(:last-child) {
  margin-bottom: 10px;
}
#top #recommend .inner .outro {
  margin-top: 60px;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}
#top #service .inner {
  max-width: 900px;
}
#top #service .inner .list .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(56, 106, 75, 0.1);
  padding: 40px;
  border-radius: 20px;
}
#top #service .inner .list .block .txt {
  width: 70%;
}
#top #service .inner .list .block .txt h3 {
  color: #386a4b;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
}
#top #service .inner .list .block .txt .desc {
  font-size: 18px;
}
#top #service .inner .list .block .icon {
  width: 25%;
}
#top #service .inner .list .block .icon img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#top #service .inner .list .block:not(:last-child) {
  margin-bottom: 30px;
}
#top #service .inner .list .block:nth-child(2n) .txt {
  order: 2;
}
#top #service .inner .list .block:nth-child(2n) .icon {
  order: 1;
}
#top #fee .inner h2 {
  margin-bottom: 30px;
}
#top #fee .inner .intro {
  font-size: 20px;
  text-align: center;
  margin-bottom: 60px;
}
#top #fee .inner table {
  background: rgba(255, 255, 255, 0.7);
  width: 600px;
  max-width: 100%;
  color: #333;
  margin: 0 auto;
}
#top #fee .inner table tr th {
  padding: 10px 20px;
  text-align: center;
  background: #fff;
  color: #386a4b;
  font-size: 20px;
  font-weight: 900;
}
#top #fee .inner table tr th:nth-child(2) {
  border-left: 2px dashed #386a4b;
}
#top #fee .inner table tr td {
  padding: 20px;
}
#top #fee .inner table tr td h3 {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  color: #386a4b;
}
#top #fee .inner table tr td h3 small {
  display: block;
  background: #386a4b;
  color: #fff;
  padding: 7px 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
  border-radius: 4px;
  margin-left: 20px;
  letter-spacing: 0.05em;
}
#top #fee .inner table tr td .desc {
  font-size: 18px;
  margin-top: 10px;
}
#top #fee .inner table tr td:nth-child(2) {
  text-align: right;
  border-left: 2px dashed #386a4b;
}
#top #fee .inner table tr td:nth-child(2) span {
  font-size: 26px;
  font-weight: bold;
}
#top #fee .inner table tr:not(:first-child) {
  border-top: 2px solid #386a4b;
}
#top #fee .inner .notice {
  margin: 40px auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
#top #fee .inner .notice p:not(:last-child) {
  margin-bottom: 5px;
}
#top #fee .inner .btn {
  margin-top: 60px;
}
#top #fee .inner .btn a {
  margin: 0 auto;
}
#top #experience .inner ul {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#top #experience .inner ul li {
  background: rgba(56, 106, 75, 0.1);
  padding: 20px 35px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: -60px;
  position: relative;
}
#top #experience .inner ul li::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: rgba(56, 106, 75, 0.1);
  position: absolute;
  top: calc(100% - 10px);
  left: -30px;
  border-radius: 50%;
}
#top #experience .inner ul li::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 1/1;
  background: rgba(56, 106, 75, 0.1);
  position: absolute;
  top: 100%;
  left: -50px;
  border-radius: 50%;
}
#top #experience .inner ul li:not(:last-child) {
  margin-bottom: 30px;
}
#top #experience .inner ul li:nth-child(2n) {
  margin: 0 -60px 30px auto;
}
#top #experience .inner ul li:nth-child(2n)::before {
  left: unset;
  right: -30px;
}
#top #experience .inner ul li:nth-child(2n)::after {
  left: unset;
  right: -50px;
}
#top #experience .inner .desc {
  margin-top: 60px;
  text-align: center;
  font-size: 18px;
}
#top #experience .inner .outro {
  margin-top: 60px;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}
#top #trust .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
#top #trust .inner ul li {
  width: 280px;
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}
#top #trust .inner ul li .txt {
  font-size: 20px;
  color: #386a4b;
  font-weight: 900;
}
#top #trust .inner ul li .img {
  margin-top: 20px;
}
#top #trust .inner ul li .img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
#top #staff {
  padding-bottom: 0;
}
#top #staff .inner {
  max-width: none;
  width: 100%;
}
#top #staff .inner .list {
  display: flex;
}
#top #staff .inner .list .img {
  width: 20%;
}
#top #staff .inner .list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #faq .inner .list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#top #faq .inner .list .item {
  padding: 30px;
}
#top #faq .inner .list .item .question {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
#top #faq .inner .list .item .question span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  border-radius: 50%;
  line-height: 1;
  aspect-ratio: 1/1;
  background: #c49b1e;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}
#top #faq .inner .list .item .answer {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}
#top #faq .inner .list .item .answer span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  border-radius: 50%;
  line-height: 1;
  aspect-ratio: 1/1;
  background: #c02a2a;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  flex-shrink: 0;
}
#top #faq .inner .list .item:not(:last-child) {
  border-bottom: 2px dashed #ddd;
}
#top #safety .inner .intro {
  text-align: center;
  font-size: 20px;
}
#top #safety .inner .list .item h3 {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}
#top #safety .inner .list .item:not(:last-child) {
  margin-bottom: 40px;
}
#top #safety .inner .outro {
  margin-top: 60px;
  font-size: 26px;
  text-align: center;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */