@charset "UTF-8";
.highlight {
  background: linear-gradient(transparent 65%, #ffe168 65%);
  font-weight: 700;
}

.u-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-show {
    display: block;
  }
}

.u-hidden {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-hidden {
    display: none;
  }
}

.u-pb, .plan, .required-items, .solution {
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .u-pb, .plan, .required-items, .solution {
    padding-bottom: 120px;
  }
}

.u-pt, .plan, .service-flow, .sesame-feature, .required-items, .solution, .problem, .sesame-message {
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .u-pt, .plan, .service-flow, .sesame-feature, .required-items, .solution, .problem, .sesame-message {
    padding-top: 120px;
  }
}

.u-mb {
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .u-mb {
    margin-bottom: 120px;
  }
}

.u-mt {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .u-mt {
    margin-top: 120px;
  }
}

.u-content-width, .faq, .plan, .service-flow, .required-items__inner, .solution, .problem, .sesame-message, .anchor-nav {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.anchor-nav {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 2em 0;
}
.anchor-nav__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.anchor-nav__list li a {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  padding: 1em 0.3em;
  border-radius: 20px;
  background-color: #f0f0f0;
  transition: background-color 0.2s;
  display: block;
  text-align: center;
  position: relative;
}
.anchor-nav__list li a:hover {
  background-color: #ddd;
}
.anchor-nav__list li a::after {
  content: "≫";
  position: absolute;
  left: 0.5em;
  top: 1em;
  width: 1em;
  height: 1em;
  transform: rotate(90deg);
}

.sesame-message__desc {
  max-width: 800px;
  margin: 0 auto 30px;
}
.sesame-message__desc p {
  font-size: clamp(18px, 4vw, 30px);
  line-height: 1.8;
}
.sesame-message h2 {
  font-size: clamp(25px, 5vw, 40px);
  line-height: 1.8;
  text-align: center;
  font-weight: 700;
}

.problem h3 {
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2em;
}
.problem h3 span {
  color: #d32a53;
}
.problem__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.problem__list li {
  padding: 20px 20px;
  border-radius: 5px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.problem__list li:nth-child(1) {
  background-color: #fff6cb;
}
.problem__list li:nth-child(2) {
  background-color: #ddf8f8;
}
.problem__list li:nth-child(3) {
  background-color: #ffe6e5;
}

@media screen and (min-width: 768px) {
  .problem {
    margin-bottom: 100px;
  }
  .problem__list {
    flex-direction: row;
  }
  .problem__list li {
    flex-basis: 26%;
  }
}
.icon-double-arrow {
  text-align: center;
}
.icon-double-arrow img {
  width: 3em;
}

.solution__title > span {
  text-align: center;
  color: #999999;
  display: block;
  margin-bottom: 10px;
}
.solution__title h3 {
  font-size: clamp(18px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 2em;
}
.solution__title h3 > span {
  color: #d32a53;
}
.solution__image {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
.solution__image img {
  width: 100%;
}
.solution__list {
  margin: 0 auto 40px;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2em 10px;
}
.solution__box {
  flex-basis: 100%;
  line-height: 1.6;
  box-shadow: 1px 1px 3px #d3d3d3;
  border: 1px solid #d3d3d3;
  border-radius: 10px;
  padding: 20px;
}
.solution__box h4 {
  font-size: clamp(16px, 3vw, 18px);
  margin-bottom: 10px;
  font-weight: 600;
}
.solution__box h4 span {
  color: #d32a53;
}
.solution__box p {
  color: #535353;
}

@media screen and (min-width: 768px) {
  .solution__box {
    flex-basis: 43%;
  }
}
@media screen and (min-width: 1000px) {
  .solution__box {
    flex-basis: 27.5%;
  }
}
.required-items {
  background-color: #f1f1f3;
}
.required-items__title {
  text-align: center;
  margin-bottom: 2em;
}
.required-items__title h2 {
  font-size: clamp(25px, 4vw, 38px);
  margin-bottom: 2em;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.3em;
}
.required-items__image__wrapper {
  position: relative;
}
.required-items__image img {
  width: 100%;
}

.hot-spot__dot {
  width: 40px;
  height: 40px;
  border-radius: 99%;
  background: #fff;
  color: #333;
  place-items: center;
  transition: transform 0.2s ease-in-out;
  border: none;
  position: absolute;
  border: 1px solid #eee;
  z-index: 10;
}
.hot-spot__dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 99%;
  background-color: rgba(255, 255, 255, 0.3);
  animation: ping 2s ease-in-out infinite alternate;
  z-index: -1;
}
.hot-spot__dot-01 {
  left: calc(15% - 10px);
  top: calc(75% - 10px);
}
.hot-spot__dot-02 {
  left: calc(50% - 10px);
  top: calc(-5% - 10px);
}
.hot-spot__dot-03 {
  left: calc(84% - 10px);
  top: calc(80% - 10px);
}
.hot-spot__dot img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 99%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
}
.hot-spot__dot.is-active {
  background-color: #d32a53;
  color: #fff;
}

@keyframes ping {
  0% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.1);
  }
}
.prose {
  display: none;
  transition: all 0.3s ease;
  background-color: rgb(255, 255, 255);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
  line-height: 1.6;
  position: absolute;
  z-index: 200;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 500px;
}
.prose h3 {
  font-weight: 600;
  margin-bottom: 10px;
}
.prose p {
  text-align: justify;
}

.prose.is-open {
  display: block;
}

.hot-spot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 5;
  display: none;
}

.hot-spot-overlay.is-active {
  display: block;
}

@media screen and (min-width: 768px) {
  .hot-spot__dot-01 {
    left: calc(26% - 10px);
    top: calc(75% - 10px);
  }
  .hot-spot__dot-02 {
    left: calc(50% - 10px);
    top: calc(12% - 10px);
  }
  .hot-spot__dot-03 {
    left: calc(75% - 10px);
    top: calc(80% - 10px);
  }
  .prose {
    padding: 30px;
  }
}
.sesame-feature__title {
  text-align: center;
  margin-bottom: 2em;
}
.sesame-feature__title h2 {
  font-size: clamp(25px, 4vw, 38px);
  margin-bottom: 2em;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.3em;
}
.sesame-feature__title > span {
  font-size: clamp(17px, 2vw, 20px);
  position: relative;
}
.sesame-feature__title > span::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: #333;
  bottom: -0.5em;
  left: 50%;
  transform: translate(-50%);
}
.sesame-feature__block {
  margin-bottom: 30px;
}
.sesame-feature__img {
  width: 100%;
}
.sesame-feature__img img {
  width: 100%;
}
.sesame-feature__desc {
  padding: 2em 1em;
}
.sesame-feature__desc h3 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5em;
}
.sesame-feature__desc p {
  line-height: 1.8;
  font-weight: clamp(16px, 2vw, 18px);
  text-align: justify;
  margin-bottom: 20px;
}
.sesame-feature__desc ul {
  line-height: 1.8;
  font-weight: clamp(16px, 2vw, 18px);
  padding-left: 1em;
  list-style: circle;
}

@media screen and (min-width: 960px) {
  .sesame-feature__block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 60px;
    flex-direction: row-reverse;
  }
  .sesame-feature__block:nth-child(even) {
    flex-direction: row;
    display: flex;
  }
  .sesame-feature__block:nth-child(even) .sesame-feature__desc {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sesame-feature__img {
    flex-basis: 40%;
  }
  .sesame-feature__desc {
    width: 50%;
  }
  .sesame-feature__desc__inner {
    padding: 2em;
  }
}
.service-flow__table {
  max-width: 800px;
  margin: 0 auto;
}
.service-flow__table-block {
  margin-bottom: 40px;
  border-bottom: 1px solid #535353;
  padding-bottom: 20px;
}
.service-flow__title {
  text-align: center;
  margin-bottom: 2em;
}
.service-flow__title h2 {
  font-size: clamp(25px, 5vw, 55px);
  margin-bottom: 2em;
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.3em;
}
.service-flow__title > span {
  font-size: clamp(17px, 2vw, 20px);
  position: relative;
}
.service-flow__title > span::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: #333;
  bottom: -0.5em;
  left: 50%;
  transform: translate(-50%);
}
.service-flow__number {
  font-size: 50px;
  font-weight: 600;
  color: #28aeb1;
}
.service-flow__desc {
  line-height: 1.6;
  color: #535353;
  text-align: justify;
}

@media screen and (min-width: 768px) {
  .service-flow__table-block {
    display: flex;
    gap: 30px;
  }
  .service-flow__number {
    flex-basis: 80px;
    width: 80px;
    font-size: 60px;
  }
}
.plan__title {
  text-align: center;
  margin-bottom: 2em;
}
.plan__title h2 {
  font-size: clamp(25px, 5vw, 45px);
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.3em;
}
.plan__title > span {
  font-size: clamp(17px, 2vw, 20px);
  position: relative;
}
.plan__title > span::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: #333;
  bottom: -0.5em;
  left: 50%;
  transform: translate(-50%);
}
.plan__desc {
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 1000px;
}
.plan__image-wrapper {
  overflow-x: auto;
}
.plan__image {
  min-width: 800px;
  max-width: 1000px;
  margin: 0 auto;
}
.plan__image img {
  width: 100%;
}

.payment-info {
  background-color: #f8f8f8;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
}
.payment-info__inner {
  width: 90%;
  margin: 0 auto;
}
.payment-info__section {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 2em 10px;
  border-radius: 8px;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.payment-info__heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 1rem;
}
.payment-info__heading--red {
  color: #d9372d;
}
.payment-info__subheading {
  font-size: 18px;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #555;
}
.payment-info__label {
  font-weight: bold;
  margin-top: 1.5rem;
  color: #222;
}
.payment-info__text {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .payment-info {
    padding: 100px 0;
  }
  .payment-info__section {
    padding: 2em;
  }
}
.info-accordion {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background-color: #fff;
  transition: background-color 0.3s ease;
}
.info-accordion[open] {
  background-color: #f9f9f9;
}
.info-accordion__summary {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  line-height: 1.6;
}
.info-accordion__summary::marker {
  display: none;
}
.info-accordion__summary::after {
  content: "＋";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  transition: transform 0.3s ease;
}
details[open] .info-accordion__summary::after {
  content: "－";
}
.info-accordion__content {
  margin-top: 0.8rem;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.info-accordion a {
  text-decoration: underline;
  color: #28aeb1;
}

.faq {
  margin-bottom: 60px;
  padding: 60px 0;
}
.faq__title {
  text-align: center;
  margin-bottom: 2em;
}
.faq__title h2 {
  font-size: clamp(25px, 5vw, 45px);
  line-height: 1.6;
  font-weight: bold;
  margin-top: 0.3em;
}
.faq__title span {
  font-size: clamp(17px, 2vw, 20px);
  position: relative;
}
.faq__title span::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 2px;
  background-color: #333;
  bottom: -0.5em;
  left: 50%;
  transform: translate(-50%);
}
.faq__content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-order-section {
  background-color: #333;
}
.contact-order-section .contact-order__inner {
  width: 1120px;
  margin: 0 auto;
  padding: 150px 0;
}
@media (max-width: 1120px) {
  .contact-order-section .contact-order__inner {
    width: auto;
    margin: 0 10px;
  }
}
.contact-order-section h3 {
  font-size: clamp(20px, 3vw, 28px);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2em;
  font-weight: 600;
}
.contact-order-section .contact-order__content {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  gap: 2em;
}
@media (min-width: 768px) {
  .contact-order-section .contact-order__content {
    flex-direction: row;
  }
}
.contact-order-section .contact-order__content .contact-order__button {
  transition: 0.3s;
  margin-bottom: 10px;
  flex-basis: 30%;
}
.contact-order-section .contact-order__content .contact-order__button a {
  font-size: 20px;
  color: #fff;
  text-align: center;
  display: block;
  padding: 20px 0;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.5s;
}
.contact-order-section .contact-order__content .contact-order__button a:hover {
  color: #fff;
  opacity: 0.5;
}
.contact-order-section .contact-order__content .contact-order__button--order a {
  background-color: #1fa575;
}
.contact-order-section .contact-order__content .contact-order__button--inquiry a {
  background-color: #d32a53;
}
.contact-order-section .contact-order__content .contact-order__button--mitsumori a {
  background-color: #2A63D3;
}
.contact-order-section .contact-order__note p {
  color: #fff;
  font-size: clamp(15px, 2vw, 17px);
  text-align: center;
  line-height: 2;
}/*# sourceMappingURL=sesamebiz.css.map */