@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-orange: #ff8352;
  --color-font-base: #333;
  --color-white: #fff;
  --color-background-lightOrange: #ffeee9;
  --color-background-lightestOrange: #fff9f7;
  --color-background-lightGray: #f8f8f8;
  --color-background-green: #3ac621;
  --color-background-green-hover: #2aa615;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-sm: 1080px;
  --width-content: 1280px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-jp: "Noto Sans JP", sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-modal: 100;
  --z-index-modal-bg: 50;
  --z-index-header: 30;
  --z-index-menu: 10;
  --z-index-default: 1;
}

/*!
foundation > reset
------------------------------
*/
html {
  color: #000;
  background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: "";
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input,
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

tbody {
  -webkit-text-size-adjust: 100%;
}

main {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

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

svg {
  display: block;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 2.1;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-jp);
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.u-section-padding {
  padding-top: 56px;
  padding-bottom: 136px;
}
@media screen and (min-width: 768px) {
  .u-section-padding {
    padding-top: 88px;
    padding-bottom: 208px;
  }
}

.u-section-body {
  margin-top: 32px !important;
}
@media screen and (min-width: 768px) {
  .u-section-body {
    margin-top: 56px !important;
  }
}

.u-prepare-text {
  margin-top: 40px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #888;
}
@media screen and (min-width: 768px) {
  .u-prepare-text {
    font-size: 18px;
  }
}

/*!
component > title
------------------------------
*/
.c-title {
  line-height: 1.55;
}
.c-title.--center {
  text-align: center;
}
.c-title.--center .c-title-en {
  justify-content: center;
}
.c-title.--center .c-title-jp {
  padding-left: 0.05em;
}

.c-title-en {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 20px;
  }
}
.c-title-en.--orange {
  color: var(--color-font-orange);
}
.c-title-en.--orange::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-font-orange);
  border-radius: 100vh;
}
@media screen and (min-width: 768px) {
  .c-title-en.--orange::before {
    width: 8px;
    height: 8px;
  }
}

.c-title-jp {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-title-jp {
    margin-top: 8px;
    font-size: 36px;
  }
}

/*!
component > cta
------------------------------
*/
.c-cta {
  background-image: url(../img/top/top-common-background.png);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 56px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-cta {
    padding: 72px 0;
  }
}

.c-cta-head {
  max-width: 640px;
}
@media screen and (min-width: 620px) {
  .c-cta-head {
    display: grid;
    align-items: center;
    grid-template-columns: 1.3fr 1fr;
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-head {
    display: block;
  }
}

@media screen and (min-width: 620px) {
  .top-kv-textImg-container {
    grid-row: 1/3;
  }
}

.c-cta-textImg {
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .c-cta-textImg {
    padding-right: 0;
  }
}
@media screen and (min-width: 620px) {
  .c-cta-textImg {
    grid-row: 1/3;
  }
}

.c-cta-text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (min-width: 500px) {
  .c-cta-text span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-text {
    font-size: 18px;
    line-height: 2.1;
  }
  .c-cta-text span {
    display: inline;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-text span {
    display: block;
  }
}

.c-cta-button {
  background-color: var(--color-background-green);
  color: var(--color-white);
  padding: 20px 0;
  display: block;
  width: 100%;
  max-width: 435px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  position: relative;
  border-radius: 4px;
  margin-top: 38px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-cta-button {
    margin-top: 64px;
    font-size: 20px;
    padding: 24px 0;
    margin-left: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-cta-button:hover {
    background-color: var(--color-background-green-hover);
  }
  .c-cta-button:hover .c-cta-button-popup {
    translate: -50% -4px;
  }
}
@media screen and (min-width: 620px) {
  .c-cta-button {
    grid-column: 2/3;
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  .c-cta-button {
    font-size: 20px;
  }
}

.c-cta-button-popup {
  transition: 0.3s;
  position: absolute;
  background-color: var(--color-white);
  top: -19px;
  left: 50%;
  translate: -50% 0;
  color: #555;
  white-space: nowrap;
  padding: 2px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.1;
}
.c-cta-button-popup::before {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -6.5px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .c-cta-button-popup {
    font-size: 16px;
    top: -23.5px;
  }
}

.c-cta-button-popup-accent {
  font-weight: 900;
  position: relative;
}
.c-cta-button-popup-accent::before {
  content: "";
  background-color: #f7f05a;
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.c-cta-button-popup-accent:nth-of-type(2)::before {
  width: calc(100% - 3px);
}

.c-cta-inner {
  width: 90%;
  margin: 0 auto;
  max-width: 2074px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-cta-inner {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 52px;
    grid-template-columns: clamp(20%, 50%, 640px) 1fr;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-inner {
    gap: 96px;
  }
}

@media screen and (min-width: 768px) {
  .c-cta-splide {
    overflow: hidden;
    margin-left: 0;
    width: calc(100% + 5vw);
  }
}
@media screen and (min-width: 2250px) {
  .c-cta-splide {
    width: calc(100% + (100vw - 2074px) / 2);
  }
}

.c-cta-splide-track {
  margin-top: 38px;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .c-cta-splide-track {
    margin-top: 0;
    padding-left: 0 !important;
  }
}

.splide__pagination {
  display: none;
}

.splide__arrows {
  position: absolute;
  z-index: 2;
  display: none;
  right: 0;
  display: block;
  top: 176px;
}
@media screen and (min-width: 620px) {
  .splide__arrows {
    right: 5vw;
  }
}

.splide__arrow--prev {
  display: none;
}

.splide__arrow--next {
  -webkit-tap-highlight-color: transparent;
  width: 64px;
  height: 64px;
  border-radius: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url(../img/top/top-cta-button-arrow.svg);
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s;
  border: 1px solid transparent;
  will-change: scale;
}
.splide__arrow--next svg {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .splide__arrow--next:hover {
    border: 1px solid var(--color-font-orange);
    scale: 1.06;
  }
}

.c-cta-item {
  margin-right: 16px;
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  max-width: 295px;
  flex-shrink: 0;
  transition: 0.2s;
  opacity: 0.7;
  align-self: flex-start;
}
@media screen and (min-width: 768px) {
  .c-cta-item {
    margin-right: 40px;
  }
}
.c-cta-item.is-active.is-visible {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .c-cta-item {
    min-width: 295px;
  }
}
@media screen and (min-width: 1080px) {
  .c-cta-item {
    max-width: 414px;
  }
}

.c-cta-contents {
  padding: 8px 16px 12px;
}
@media screen and (min-width: 1080px) {
  .c-cta-contents {
    padding: 16px 32px 20px;
  }
}

.c-cta-contents-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 1080px) {
  .c-cta-contents-title {
    font-size: 20px;
  }
}

.c-cta-contents-price span:nth-of-type(1) {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1.55;
}
.c-cta-contents-price span:nth-of-type(2) {
  color: var(--color-font-orange);
  font-weight: bold;
  font-size: 20px;
  line-height: 1.55;
  margin-left: 8px;
}
.c-cta-contents-price span:nth-of-type(3) {
  margin-left: 4px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: bold;
}

.c-cta-contents-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 8px;
}
.c-cta-contents-desc span {
  display: block;
}
@media screen and (min-width: 1080px) {
  .c-cta-contents-desc {
    font-size: 15px;
    line-height: 1.8;
  }
}

/*!
layout > container
------------------------------
*/
.l-container, .l-container-sm {
  width: 90%;
  margin: 0 auto;
}

.l-container-sm {
  max-width: var(--width-content-sm);
}

.l-container {
  max-width: var(--width-content);
}

/*!
layout > header
------------------------------
*/
.header {
  background-color: transparent;
  padding-top: 20px;
  position: relative;
  position: absolute;
  width: 100%;
  z-index: var(--z-index-header);
}
@media screen and (min-width: 620px) {
  .header {
    padding-top: 48px;
  }
}
.header.isActive {
  padding-top: 12px;
  padding-bottom: 12px;
  position: fixed;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .header.isActive {
    padding-top: 20px;
  }
}
.header.isActive .header-nav-link-02 {
  color: #888;
}
.header.isActive .header-nav-link-02::after {
  background: #888;
}

.header-logo {
  font-size: 100%;
  line-height: 1;
  width: 251px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 280px;
  }
}

.header-logo-default {
  display: none;
}

.header.isActive .header-logo-default {
  display: block;
}
@media screen and (min-width: 768px) {
  .header.isActive .header-logo-default {
    transform: translateY(-5px);
  }
}
.header.isActive .header-logo-white {
  display: none;
}

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

.header-openButton {
  background-color: #fdf1ec;
  width: 44px;
  height: 44px;
  border-radius: 100vh;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 620px) {
  .header-openButton {
    display: none;
  }
}

.header-openButton-line {
  display: block;
  width: 20px;
  height: 1px;
  position: relative;
  background-color: var(--color-font-orange);
}
.header-openButton-line::before, .header-openButton-line::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--color-font-orange);
  position: absolute;
}
.header-openButton-line::before {
  top: 6px;
}
.header-openButton-line::after {
  bottom: 6px;
}

.header-dialog {
  width: 100%;
  max-width: none;
  max-height: none;
  top: 0;
  left: 0;
  border: none;
  display: none;
  margin-top: 0;
  flex-direction: column;
  padding: 0;
}
.header-dialog[open] {
  display: flex;
}
.header-dialog::before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #e8e8e8;
  order: 2;
  z-index: var(--z-index-modal);
}
.header-dialog::backdrop {
  display: none;
}
.header-dialog::after {
  display: block;
  position: fixed;
  content: "";
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.2705882353);
  z-index: var(--z-index-modal-bg);
}

.header-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  order: 1;
  padding: 12px 5%;
  background-color: var(--color-white);
  z-index: var(--z-index-modal);
}

.header-dialog-closeButton {
  background-color: #fdf1ec;
  width: 44px;
  height: 44px;
  border-radius: 100vh;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.header-dialog-closeButton-line {
  display: block;
}
.header-dialog-closeButton-line::before, .header-dialog-closeButton-line::after {
  content: "";
  display: block;
  width: 22.5px;
  height: 1px;
  background-color: var(--color-font-orange);
}
.header-dialog-closeButton-line::before {
  rotate: -32deg;
}
.header-dialog-closeButton-line::after {
  rotate: 32deg;
}

.header-dialog-head-title {
  font-size: 100%;
  line-height: 1;
  width: 251px;
}

.header-dialog-nav {
  order: 3;
  padding: 16px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  background-color: var(--color-background-lightestOrange);
  z-index: var(--z-index-modal);
}

.header-dialog-link {
  background-color: var(--color-background-green);
  padding: 8px 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
  border-radius: 4px;
}
.header-dialog-link:nth-child(1) {
  border: 1px solid var(--color-background-green);
  background-color: var(--color-white);
  color: var(--color-background-green);
}
.header-dialog-link:nth-child(2) {
  background-color: var(--color-background-green);
}

.header-dialog-link02 {
  color: #888888;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.header-nav-pc {
  display: none;
}
@media screen and (min-width: 620px) {
  .header-nav-pc {
    display: flex;
    align-items: center;
    gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-pc {
    gap: 12px;
  }
}

.header-nav-link {
  padding: 12px 12px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.7;
  border-radius: 4px;
  transition: 0.3s;
}
@media screen and (min-width: 820px) {
  .header-nav-link {
    padding: 12px 40px;
    font-size: 16px;
  }
}
.header-nav-link:nth-child(1) {
  border: 1px solid var(--color-background-green);
  background-color: var(--color-white);
  color: var(--color-background-green);
}
@media (any-hover: hover) {
  .header-nav-link:nth-child(1):hover {
    background-color: #e4ece2;
  }
}
.header-nav-link:nth-child(2) {
  background-color: var(--color-background-green);
}
@media (any-hover: hover) {
  .header-nav-link:nth-child(2):hover {
    background-color: var(--color-background-green-hover);
  }
}

.header-nav-link-02 {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-white);
  position: relative;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .header-nav-link-02:hover {
    text-decoration: none;
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  background-color: #f8f8f8;
  padding: 24px 0;
  text-align: center;
}

.footer-copyRight {
  font-size: 12px;
  font-weight: bold;
  color: rgba(51, 51, 51, 0.7);
  line-height: 1.55;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .footer-copyRight {
    font-size: 14px;
  }
}

.top-main {
  overflow: hidden;
}

/*!
page > top-about
------------------------------
*/
.top-about {
  background-color: var(--color-background-lightGray);
}

@media screen and (min-width: 1080px) {
  .top-about-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.top-about-img {
  margin-top: 24px;
  width: 100vw;
  margin-left: -5vw;
}
@media screen and (min-width: 500px) {
  .top-about-img {
    margin-top: 32px;
  }
}
@media screen and (min-width: 768px) {
  .top-about-img {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1080px) {
  .top-about-img {
    width: auto;
    margin-left: 0;
    margin-right: -12%;
    margin-top: 22px;
    align-self: center;
  }
}

.top-about-texts {
  margin-top: 8px;
  line-height: 2.1;
}

.top-about-text02 {
  margin-top: 16px;
}

.top-about-text-accent {
  font-weight: bold;
  color: var(--color-font-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (min-width: 1080px) {
  .top-about-contents {
    margin-right: 48px;
  }
}

/*!
page > top-reason
------------------------------
*/
.top-reason {
  background-color: var(--color-background-lightOrange);
  border-radius: 36px 36px 0 0;
  margin-top: -56px;
}
@media screen and (min-width: 768px) {
  .top-reason {
    border-radius: 72px 72px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .top-reason {
    margin-top: -88px;
  }
}

.top-reason-inner {
  display: grid;
  gap: 56px;
}
@media screen and (min-width: 768px) {
  .top-reason-inner {
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .top-reason-item {
    display: flex;
    gap: 55px;
  }
  .top-reason-item:nth-of-type(even) .top-reason-item-img {
    order: 2;
  }
}

.top-reason-item-img {
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-reason-item-img {
    max-width: 450px;
    flex-shrink: 0;
    width: 40%;
  }
  .top-reason-item-img img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 1080px) {
  .top-reason-item-img {
    width: 42%;
  }
}

.top-reason-item-contents {
  margin-top: 12px;
}
@media screen and (min-width: 1080px) {
  .top-reason-item-contents {
    margin-top: 32px;
  }
}

.top-reason-item-title-en {
  color: var(--color-font-orange);
  font-weight: bold;
  font-size: 16px;
  line-height: 1.55;
}
@media screen and (min-width: 768px) {
  .top-reason-item-title-en {
    font-size: 18px;
  }
}

.top-reason-item-title-jp {
  font-weight: bold;
  font-size: 26px;
  line-height: 1.55;
  margin-top: 4px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 500px) {
  .top-reason-item-title-jp {
    font-size: 28px;
  }
}
@media screen and (min-width: 1080px) {
  .top-reason-item-title-jp {
    font-size: 32px;
  }
}

.top-reason-item-desc {
  margin-top: 8px;
  line-height: 2.1;
}
@media screen and (min-width: 1080px) {
  .top-reason-item-desc {
    margin-top: 12px;
  }
}

.top-business {
  background-color: var(--color-background-lightestOrange);
  border-radius: 36px 36px 0 0;
  margin-top: -56px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .top-business {
    margin-top: -88px;
  }
}
@media screen and (min-width: 768px) {
  .top-business {
    padding-bottom: 120px;
  }
}

.top-business-inner {
  display: grid;
  gap: 32px 32px;
}
@media screen and (min-width: 768px) {
  .top-business-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1080px) {
  .top-business-inner {
    gap: 32px 40px;
  }
}

.top-business-item {
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 20px 22px;
}
.top-business-item:nth-of-type(1) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon.svg);
}
.top-business-item:nth-of-type(2) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon-02.svg);
}
.top-business-item:nth-of-type(3) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon-03.svg);
}
.top-business-item:nth-of-type(4) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon-04.svg);
}
.top-business-item:nth-of-type(5) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon-05.svg);
}
.top-business-item:nth-of-type(6) .top-business-item-icon {
  background-image: url(../img/top/top-business-icon-06.svg);
}
@media screen and (min-width: 1080px) {
  .top-business-item {
    padding: 29px 32px;
  }
}

.top-business-item-head {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 12px;
}
@media screen and (min-width: 1080px) {
  .top-business-item-head {
    grid-template-columns: 80px 1fr;
  }
}
@media screen and (min-width: 1080px) {
  .top-business-item-head {
    gap: 16px;
  }
}

.top-business-item-icon {
  width: 70px;
  height: 70px;
  background-color: var(--color-background-lightOrange);
  border-radius: 100vh;
  background-size: 82.5%;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1080px) {
  .top-business-item-icon {
    width: 80px;
    height: 80px;
  }
}

.top-business-item-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 1080px) {
  .top-business-item-title {
    font-size: 22px;
  }
}
.top-business-item-title span {
  display: block;
  white-space: nowrap;
}

.top-business-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  line-height: 1.8;
  font-size: 14px;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .top-business-item-list {
    font-size: 15px;
  }
}

.top-business-item-listItem::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background-color: var(--color-font-orange);
  border-radius: 100vh;
  flex-shrink: 0;
  translate: 0 -2px;
}

.top-business-item-sublist {
  display: flex;
  flex-wrap: wrap;
  margin-left: 16px;
  gap: 4px 12px;
  margin-top: 4px;
}

.top-business-item-sublist-item {
  font-size: 14px;
}
.top-business-item-sublist-item::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border: 1px solid #c9c9c9;
  border-radius: 100vh;
  flex-shrink: 0;
  translate: 0 -2px;
}

/*!
page > top-review
------------------------------
*/
.top-review {
  background-color: var(--color-background-lightestOrange);
}

.top-review-itemContainer {
  display: grid;
  gap: 40px 0px;
}
@media screen and (min-width: 650px) {
  .top-review-itemContainer {
    gap: 40px 30px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .top-review-itemContainer {
    display: flex;
    flex-wrap: wrap;
    justify-items: center; /* 全アイテムを中央揃え */
    max-width: none;
  }
}

.top-review-item {
  background-color: var(--color-white);
  border-radius: 24px;
  padding: 24px;
  margin: 0 auto;
  max-width: 514px;
}
@media screen and (min-width: 1200px) {
  .top-review-item {
    max-width: 340px;
  }
}
@media screen and (min-width: 1200px) {
  .top-review-item:nth-of-type(4) {
    margin-right: 0;
  }
}
@media screen and (min-width: 650px) {
  .top-review-item:nth-of-type(5) {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1200px) {
  .top-review-item:nth-of-type(5) {
    grid-column: auto;
    margin-left: 0;
  }
}

.top-review-item-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-review-item-img {
  width: 72px;
  height: 72px;
  border-radius: 100vh;
  overflow: hidden;
  align-self: flex-start;
  flex-shrink: 0;
}
.top-review-item-img img {
  aspect-ratio: 1;
  object-fit: cover;
}

.top-review-item-company {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-review-item-company {
    font-size: 18px;
  }
}

.top-review-item-name {
  display: block;
  color: #aaa;
  line-height: 2;
  font-size: 14px;
  font-weight: bold;
  margin-top: -6px;
}

.top-review-item-desc {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.8;
}
.top-review-item-desc span {
  display: block;
}

/*!
page > top-flow
------------------------------
*/
.top-flow {
  background-color: var(--color-background-lightOrange);
  border-radius: 36px 36px 0 0;
  margin-top: -56px;
}
@media screen and (min-width: 768px) {
  .top-flow {
    border-radius: 72px 72px 0 0;
    margin-top: -88px;
  }
}

.top-flow-inner {
  display: grid;
  gap: 54px;
}

.top-flow-item {
  position: relative;
}
.top-flow-item:not(:last-of-type)::after {
  content: "";
  display: block;
  height: 28px;
  width: 32px;
  position: absolute;
  rotate: 90deg;
  background-image: url(../img/top/top-flow-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  bottom: -42px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .top-flow-item {
    display: flex;
  }
}

.top-flow-item-img {
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-flow-item-img {
    border-radius: 24px 0 0 24px;
    width: 300px;
    flex-shrink: 0;
  }
  .top-flow-item-img img {
    height: 100%;
    object-fit: cover;
  }
}

.top-flow-item-contents {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 0 0 24px 24px;
}
@media screen and (min-width: 768px) {
  .top-flow-item-contents {
    padding: 32px;
  }
}
@media screen and (min-width: 768px) {
  .top-flow-item-contents {
    border-radius: 0 24px 24px 0;
  }
}

.top-flow-item-step {
  font-size: 14px;
  color: var(--color-font-orange);
  display: block;
  line-height: 1.55;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .top-flow-item-step {
    font-size: 15px;
  }
}

.top-flow-item-title {
  font-size: 20px;
  line-height: 1.55;
  display: block;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-flow-item-title {
    font-size: 24px;
  }
}

.top-flow-item-desc {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .top-flow-item-desc {
    margin-top: 11px;
  }
}
@media screen and (min-width: 768px) {
  .top-flow-item-desc {
    font-size: 15px;
  }
}

/*!
page > top-faq
------------------------------
*/
.top-faq {
  background-color: var(--color-background-lightestOrange);
  border-radius: 36px 36px 0 0;
  margin-top: -56px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .top-faq {
    border-radius: 72px 72px 0 0;
    margin-top: -88px;
    padding-bottom: 120px;
  }
}

.top-faq-inner {
  max-width: 960px;
}

.top-faq-itemContainer {
  display: grid;
  gap: 16px;
}

.top-faq-accordion {
  border-radius: 16px;
  overflow: hidden;
}

.top-faq-accordion-summary {
  position: relative;
  background-color: var(--color-white);
  padding: 20px;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  display: flex;
  gap: 8px;
  cursor: pointer;
  color: #2c2c2c;
  align-items: baseline;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-summary {
    padding: 16px 24px;
  }
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-summary {
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-summary {
    font-size: 18px;
  }
}
.top-faq-accordion-summary::-webkit-details-marker {
  display: none;
}
.top-faq-accordion-summary::before {
  content: "Q.";
  color: #2c2c2c;
  color: var(--color-font-orange);
  font-size: 18px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-summary::before {
    font-size: 24px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-faq-accordion-summary:hover .top-faq-accordion-button {
    scale: 1.2;
  }
}

.top-faq-accordion-button {
  display: block;
  width: 15px;
  background-color: var(--color-font-orange);
  height: 1.5px;
  align-self: center;
  margin-left: auto;
  translate: 0 2px;
  border-radius: 100vh;
  transition: 0.2s;
  will-change: scale;
  flex-shrink: 0;
}
.top-faq-accordion-button:nth-of-type(2) {
  content: "";
  display: block;
  width: 15px;
  background-color: var(--color-font-orange);
  height: 1.5px;
  right: 20px;
  border-radius: 100vh;
  position: absolute;
  rotate: -90deg;
  transition: 0.2s;
  will-change: scale;
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-button:nth-of-type(2) {
    right: 24px;
  }
}

.top-faq-accordion.isActive .top-faq-accordion-button:nth-of-type(2) {
  rotate: 0deg;
}

.top-faq-accordion-contents-inner {
  padding: 20px;
  height: fit-content;
  background-color: #ffeee9;
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #2c2c2c;
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-contents-inner {
    padding: 16px 24px 24px;
  }
}
.top-faq-accordion-contents-inner::before {
  content: "A.";
  font-size: 18px;
  color: #2c2c2c;
  display: contents;
  align-self: flex-start;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-contents-inner::before {
    font-size: 24px;
  }
}
@media screen and (min-width: 768px) {
  .top-faq-accordion-contents-inner {
    gap: 16px;
  }
}

.top-faq-accordion-contents-desc {
  line-height: 1.8;
  font-size: 15px;
}
.top-faq-accordion-contents-desc span {
  display: block;
}

/*!
page > top-kv
------------------------------
*/
.top-kv {
  background-image: url(../img/top/top-common-background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.top-kv-head {
  height: 356px;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (min-width: 620px) {
  .top-kv-head {
    height: auto;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 620px) {
  .top-kv-head {
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-head {
    padding-bottom: 64px;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-head {
    padding-bottom: 112px;
  }
}

.top-kv-textImg {
  max-width: 106px;
  flex-shrink: 0;
  position: absolute;
  right: 63%;
  top: 57px;
  z-index: 2;
}
@media screen and (min-width: 620px) {
  .top-kv-textImg {
    left: auto;
    max-width: 100px;
    bottom: auto;
    top: 115px;
    right: 7px;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-textImg {
    max-width: 125px;
    right: 36px;
  }
}
@media screen and (min-width: 1300px) {
  .top-kv-textImg {
    max-width: 137px;
    right: 10px;
    top: 147px;
  }
}
@media screen and (min-width: 1300px) {
  .top-kv-textImg {
    right: 90px;
  }
}
@media screen and (min-width: 1422px) {
  .top-kv-textImg {
    right: calc((100vw - 1280px) / 2 + 13px);
  }
}

.top-kv-personImg {
  max-width: 280px;
  flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 53px;
  z-index: 1;
}
@media screen and (min-width: 500px) {
  .top-kv-personImg {
    right: 57px;
  }
}
@media screen and (min-width: 620px) {
  .top-kv-personImg {
    width: 59%;
    top: auto;
    bottom: -66px;
    max-width: 380px;
    right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-personImg {
    width: 50%;
    max-width: 456px;
    bottom: auto;
    top: 107px;
    min-width: 410px;
    right: 54px;
  }
}
@media screen and (min-width: 1300px) {
  .top-kv-personImg {
    right: 160px;
    max-width: 519px;
  }
}
@media screen and (min-width: 1422px) {
  .top-kv-personImg {
    right: calc((100vw - 1280px) / 2 + 80px);
  }
}

.top-kv-contents-sp {
  background-color: #f26128;
  padding: 32px 0 40px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 620px) {
  .top-kv-contents-sp {
    display: none;
  }
}

.top-kv-contents-sp-text {
  color: var(--color-white);
  font-size: 15px;
  font-weight: bold;
  margin-top: 16px;
  line-height: 1.8;
}

.top-kv-button {
  background-color: var(--color-background-green);
  color: var(--color-white);
  padding: 20px 0;
  display: block;
  width: 100%;
  max-width: 435px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  position: relative;
  border-radius: 4px;
  margin-top: 38px;
  margin-left: auto;
  margin-right: auto;
  min-width: 280px;
  transition: 0.3s;
}
@media screen and (min-width: 620px) {
  .top-kv-button {
    margin-left: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-button {
    margin-top: 64px;
    font-size: 20px;
    padding: 24px 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .top-kv-button:hover {
    background-color: var(--color-background-green-hover);
  }
  .top-kv-button:hover .top-kv-button-popup {
    translate: -50% -8px;
  }
}

.top-kv-button-popup {
  transition: 0.2s;
  position: absolute;
  background-color: var(--color-white);
  top: -19px;
  left: 50%;
  translate: -50% 0;
  color: #555;
  white-space: nowrap;
  padding: 2px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 2.1;
}
.top-kv-button-popup::before {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -6.5px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .top-kv-button-popup {
    font-size: 16px;
    top: -23.5px;
  }
}

.top-kv-button-popup-accent {
  font-weight: 900;
  position: relative;
}
.top-kv-button-popup-accent::before {
  content: "";
  background-color: #f7f05a;
  position: absolute;
  width: 100%;
  height: 5px;
  left: 0;
  bottom: 1px;
  z-index: -1;
}
.top-kv-button-popup-accent:nth-of-type(2)::before {
  width: calc(100% - 3px);
}

.top-kv-contents-pc {
  display: none;
}
@media screen and (min-width: 620px) {
  .top-kv-contents-pc {
    display: block;
    max-width: 50%;
    margin-top: 152px;
    z-index: 3;
  }
}
@media screen and (min-width: 768px) {
  .top-kv-contents-pc {
    max-width: 333px;
  }
}
@media screen and (min-width: 800px) {
  .top-kv-contents-pc {
    max-width: 438px;
    width: 54%;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-contents-pc {
    margin-top: 192px;
    max-width: 740px;
    width: 58%;
  }
}
.top-kv-contents-pc .l-container {
  width: 100%;
}

.top-kv-contents-pc-text {
  font-size: 16px;
  color: var(--color-white);
  font-weight: bold;
  margin-top: 16px;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .top-kv-contents-pc-text span {
    display: block;
  }
}
@media screen and (min-width: 1080px) {
  .top-kv-contents-pc-text {
    font-size: 18px;
    line-height: 2.1;
  }
}/*# sourceMappingURL=style.css.map */