@charset "UTF-8";
/*----------------------------------------
	clearfix
----------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, hgroup, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  color: #262626;
  vertical-align: baseline;
}

header, footer, article, section, aside, hgroup, nav, menu, figure, figcaption, time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	html
----------------------------------------*/
html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

/*----------------------------------------
	body
----------------------------------------*/
body {
  color: #262626;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  background-color: #FFFFFF;
}

a {
  text-decoration: none;
  color: #262626;
  -webkit-transition: compact(all 0.1s ease, false, false, false, false, false, false, false, false, false);
  -moz-transition: compact(all 0.1s ease, false, false, false, false, false, false, false, false, false);
  -o-transition: compact(all 0.1s ease, false, false, false, false, false, false, false, false, false);
  -ms-transition: compact(all 0.1s ease, false, false, false, false, false, false, false, false, false);
  transition: compact(all 0.1s ease, false, false, false, false, false, false, false, false, false);
}

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

img {
  vertical-align: bottom;
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 998px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }
}
/* fontのギザギザ対応 */
span, h1, h2, h3, h4, h5, h6, p, a,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, button,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  transform: rotate(0.03deg);
  font-weight: 500;
}

/*----------------------------------------
	main
----------------------------------------*/
.main:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/*----------------------------------------
	header
----------------------------------------*/
.l-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  /* position: sticky; */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  transition: background-color 0.3s ease;
  /* background: rgba(0,0,0,.6); */
}
.l-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.7);
}
.l-header.is-top_page {
  padding: 50px;
}
@media only screen and (max-width: 998px) {
  .l-header {
    padding: 18px 20px;
  }
  .l-header.is-top_page {
    padding: 18px 20px;
  }
}
.l-header h1 img {
  width: 100%;
  max-width: 262px;
}
@media only screen and (max-width: 998px) {
  .l-header h1 img {
    max-width: 210px;
  }
}
.l-header__menu {
  background: #FFF;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 998px) {
  .l-header__menu {
    display: none;
  }
}
.l-header__menu ul {
  display: flex;
  align-items: center;
}
.l-header__menu ul li {
  border-right: 1px solid #7EB44A;
}
.l-header__menu ul li:last-of-type {
  border-right: 0px;
}
.l-header__menu ul li a {
  font-size: 16px;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 210%;
  line-height: 30px;
  color: #7EB44A;
  padding: 0 12px;
  display: inline-block;
}
.l-header__menu div {
  background: #7EB44A;
  border-radius: 6px;
  padding: 10px 20px;
}
.l-header__menu div a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header__menu div a span {
  color: #FFF;
  font-size: 16px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 34px;
}
.l-header__menu div a img {
  width: 20px;
  transition: all 0.3s ease;
}
.l-header__menu div a:hover img {
  transform: translateX(5px);
}

/*----------------------------------------
	footer
----------------------------------------*/
.l-footer__faq {
  background: #EDE7DD;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 95px 20px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq {
    display: block;
    padding: 65px 20px 70px;
  }
}
.l-footer__faq .faq {
  width: 50%;
  max-width: 692px;
  background: #7EB44A;
  position: relative;
  text-align: center;
  border-radius: 10px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .faq {
    width: 100%;
    max-width: initial;
    margin: 0 0 40px;
  }
}
.l-footer__faq .faq a {
  display: inline-block;
  width: 100%;
  padding: 65px 20px;
}
.l-footer__faq .faq a h4 {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  line-height: 145%;
  color: #FFF;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .faq a h4 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer__faq .faq a p {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  line-height: 145%;
  color: #FFF;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .faq a p {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.l-footer__faq .faq a img {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 20px;
  transition: all 0.3s ease;
}
.l-footer__faq .faq a:hover img {
  transform: translateY(-50%) translateX(5px);
}
.l-footer__faq .mail h4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #262626;
  margin: 0 0 30px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail h4 {
    text-align: center;
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 15px;
  }
}
.l-footer__faq .mail div {
  margin: 0 0 15px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail div {
    margin: 0 0 10px;
  }
}
.l-footer__faq .mail div a {
  background: #FFFFFF;
  padding: 10px 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail div a {
    padding: 15px;
    justify-content: center;
  }
}
.l-footer__faq .mail div a img {
  width: 32px;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail div a img {
    width: 24px;
  }
}
.l-footer__faq .mail div a h5 {
  font-weight: 700;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 145%;
  text-decoration-line: underline;
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail div a h5 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-footer__faq .mail p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #262626;
}
@media only screen and (max-width: 998px) {
  .l-footer__faq .mail p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-footer__nimoca {
  background: #7EB44A;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6%;
  padding: 40px 20px 0;
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca {
    display: block;
    padding: 25px 20px 0;
  }
}
.l-footer__nimoca div {
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca div {
    margin: 0 0 25px;
  }
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca div.contact {
    margin: 0;
  }
  .l-footer__nimoca div.contact img {
    width: 80%;
  }
}
.l-footer__nimoca div p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca div p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-footer__nimoca div a {
  display: inline-block;
  padding: 20px 70px;
  background: #FFF;
  position: relative;
  text-align: center;
  border-radius: 10px;
  color: #7EB44A;
  font-size: 22px;
  font-size: 1.375rem;
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca div a {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-footer__nimoca div a img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  transition: all 0.3s ease;
}
.l-footer__nimoca div a:hover img {
  transform: translateY(-50%) translateX(5px);
}
.l-footer__nimoca .nimoca img {
  width: 240px;
}
@media only screen and (max-width: 998px) {
  .l-footer__nimoca .nimoca img {
    width: 100%;
    max-width: 260px;
  }
}
.l-footer__menu {
  display: flex;
  justify-content: center;
  padding: 60px 20px 95px;
  align-items: start;
}
@media only screen and (max-width: 998px) {
  .l-footer__menu {
    display: none;
  }
}
.l-footer__menu .logo {
  margin: 0 6% 0 0;
}
.l-footer__menu .logo ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
.l-footer__menu .logo ul li:nth-of-type(1) img {
  width: 262px;
}
.l-footer__menu .logo ul li:nth-of-type(2) img {
  width: 109px;
}
.l-footer__menu .link {
  display: flex;
}
.l-footer__menu .link ul {
  width: 170px;
}
.l-footer__menu .link ul li a {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}
.l-footer__menu .login {
  background: #7EB44A;
  border-radius: 6px;
  padding: 10px 20px;
}
.l-footer__menu .login a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-footer__menu .login a span {
  font-size: 16px;
  font-size: 1rem;
  line-height: 210%;
  color: #FFFFFF;
  font-weight: 700;
}
.l-footer__menu .login a img {
  width: 20px;
}
.l-footer__menu_sp {
  display: none;
  padding: 65px 40px 55px;
}
@media only screen and (max-width: 998px) {
  .l-footer__menu_sp {
    display: block;
  }
}
.l-footer__menu_sp .logo {
  text-align: center;
  margin: 0 0 55px;
}
.l-footer__menu_sp .logo img {
  width: 100%;
  max-width: 210px;
}
.l-footer__menu_sp .login {
  background: #7EB44A;
  border-radius: 6px;
  padding: 10px;
  margin: 0 0 25px;
}
.l-footer__menu_sp .login a {
  display: block;
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 210%;
  color: #FFFFFF;
  position: relative;
  text-align: center;
}
.l-footer__menu_sp .login a img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  transition: all 0.3s ease;
}
.l-footer__menu_sp .login a:hover img {
  transform: translateY(-50%) translateX(5px);
}
.l-footer__menu_sp .link {
  display: flex;
  align-items: start;
  padding: 0 0 35px;
  border-bottom: 1px solid #7EB44A;
  margin: 0 0 15px;
}
.l-footer__menu_sp .link ul {
  flex: 1;
}
.l-footer__menu_sp .link ul li a {
  font-size: 17px;
  font-size: 1.0625rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}
.l-footer__menu_sp .other {
  margin: 0 0 25px;
}
.l-footer__menu_sp .other ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}
.l-footer__menu_sp .logo_sub img {
  width: 100%;
  max-width: 90px;
}
.l-footer__copy {
  padding: 0 20px;
}
.l-footer__copy div {
  border-top: 1px solid #7EB44A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
@media only screen and (max-width: 998px) {
  .l-footer__copy div {
    padding: 10px 0;
  }
}
.l-footer__copy div p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}
.l-footer__copy div ul {
  display: flex;
  align-items: end;
}
@media only screen and (max-width: 998px) {
  .l-footer__copy div ul {
    display: none;
  }
}
.l-footer__copy div ul li a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 210%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}

.c-toggle {
  display: none;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  z-index: 12;
}
@media only screen and (max-width: 998px) {
  .c-toggle {
    display: block;
  }
}
.c-toggle__wrap {
  background: #7EB44A;
  border-radius: 10px;
  padding: 12px 12px 6px;
  height: 50px;
}
.c-toggle__wrap div {
  position: relative;
  width: 37px;
  height: 18px;
}
.c-toggle__wrap div span {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #FFF;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  display: inline-block;
}
.c-toggle__wrap div span:nth-of-type(1) {
  top: 0;
}
.c-toggle__wrap div span:nth-of-type(2) {
  bottom: 0;
}
.c-toggle__wrap p {
  font-weight: 700;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 150%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-toggle__wrap p.is-open {
  opacity: 1;
  transform: translateY(0);
}
.c-toggle__wrap.is-active div span {
  top: 50%;
  bottom: auto;
}
.c-toggle__wrap.is-active div span:nth-of-type(1) {
  transform: translateY(-50%) rotate(21deg);
}
.c-toggle__wrap.is-active div span:nth-of-type(2) {
  transform: translateY(-50%) rotate(-21deg);
}
.c-toggle__wrap.is-active p.is-open {
  opacity: 0;
  transform: translateY(-5px);
}
.c-toggle__wrap.is-active p.is-close {
  opacity: 1;
  transform: translateY(0);
}

.c-button {
  text-align: center;
}
.c-button a {
  display: inline-block;
  position: relative;
  width: 100%;
  background: #7EB44A;
  border-radius: 10px;
  padding: 20px;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .c-button a {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.c-button a img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-button a:hover img {
  transform: translateY(-50%) translateX(5px);
}

.c-sp_menu {
  background: #7EB44A;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 11;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.c-sp_menu.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.c-sp_menu h2 {
  padding: 18px 20px;
}
.c-sp_menu h2 img {
  width: 210px;
}
.c-sp_menu__main {
  margin: 35px 40px 15px;
}
.c-sp_menu__main li {
  margin: 0 0 10px;
  border: 1px solid #FFF;
  border-radius: 10px;
  text-align: center;
}
.c-sp_menu__main li a {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 15px;
  color: #FFF;
  font-size: 18px;
  font-size: 1.125rem;
}
.c-sp_menu__main li.is-login {
  background: #FFF;
}
.c-sp_menu__main li.is-login a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-sp_menu__main li.is-login a span {
  color: #7EB44A;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 210%;
}
.c-sp_menu__main li.is-login a img {
  width: 20px;
  transition: all 0.3s ease;
}
.c-sp_menu__main li.is-login a:hover img {
  transform: translateX(5px);
}
.c-sp_menu__sub {
  margin: 0 40px 25px;
}
.c-sp_menu__sub li a {
  box-sizing: border-box;
  color: #FFF;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 210%;
}
.c-sp_menu div {
  padding: 0 40px;
}
.c-sp_menu div a {
  display: inline-block;
  box-sizing: border-box;
  background: #FFF;
  border-radius: 10px;
  padding: 15px 25px;
}
.c-sp_menu div a img {
  width: 94px;
}

/*----------------------------------------
	banner(その他特典について)
----------------------------------------*/
.c-banner {
  padding: 95px 20px 120px;
  text-align: center;
  background: #fffdf9;
}
@media only screen and (max-width: 998px) {
  .c-banner {
    padding: 55px 20px 75px;
  }
}
.c-banner h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 15px;
}
@media only screen and (max-width: 998px) {
  .c-banner h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 7px;
  }
}
.c-banner p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 0 0 45px;
}
@media only screen and (max-width: 998px) {
  .c-banner p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 20px;
  }
}
.c-banner ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 998px) {
  .c-banner ul {
    display: block;
  }
}
.c-banner ul li {
  background: #FFFFFF;
  border: 1px solid #7EB44A;
  border-radius: 10px;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li {
    margin: 0 0 20px;
  }
  .c-banner ul li:last-of-type {
    margin: 0 0 0;
  }
}
.c-banner ul li a {
  display: inline-block;
  padding: 20px 20px 40px;
  width: 100%;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li a {
    padding: 20px 20px 30px;
  }
}
.c-banner ul li a figure {
  width: 100%;
  max-width: 360px;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li a figure {
    margin: 0 0 15px;
    max-width: 100%;
  }
}
.c-banner ul li a figure img {
  width: 100%;
}
.c-banner ul li a p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.04em;
  margin: 0 0 5px;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li a p {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0;
  }
}
.c-banner ul li a h4 {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 160%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li a h4 {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.c-banner ul li a h5 {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 998px) {
  .c-banner ul li a h5 {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/*----------------------------------------
	breadcrumb
----------------------------------------*/
.c-breadcrumb {
  margin: 0 auto 70px;
}
@media only screen and (max-width: 998px) {
  .c-breadcrumb {
    display: none;
  }
}
.c-breadcrumb ul {
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: flex;
  padding: 5px 15px;
}
.c-breadcrumb ul li {
  white-space: nowrap;
}
.c-breadcrumb ul li a {
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 210%;
  letter-spacing: 0.05em;
}

/*----------------------------------------
	title
----------------------------------------*/
.c-title {
  display: flex;
  justify-content: space-between;
  margin: 0 0 35px;
}
@media only screen and (max-width: 998px) {
  .c-title {
    display: block;
    margin: 0 0 45px;
  }
}
.c-title.is-flow div {
  flex: 1;
}
.c-title h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 998px) {
  .c-title h3 {
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: center;
    margin: 0;
  }
}
.c-title h2 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .c-title h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 35px;
    text-align: center;
  }
}
.c-title h1 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 130%;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 998px) {
  .c-title h1 {
    font-size: 26px;
    font-size: 1.625rem;
    text-align: center;
  }
}
.c-title p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 25px 0 0;
}
@media only screen and (max-width: 998px) {
  .c-title p {
    font-size: 15px;
    font-size: 0.9375rem;
  }
}
.c-title .c-button {
  margin: 30px 0 10px;
  text-align: left;
}
@media only screen and (max-width: 998px) {
  .c-title .c-button {
    margin: 15px auto;
  }
}
.c-title .c-button a {
  max-width: 425px;
}
@media only screen and (max-width: 998px) {
  .c-title .c-button a {
    max-width: 100%;
    padding: 30px 10px;
  }
}
.c-title h5 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .c-title h5 {
    font-size: 18px;
    font-size: 1.125rem;
    text-align: center;
  }
}

/*----------------------------------------
	tag
----------------------------------------*/
.c-tag ul {
  font-size: 0;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .c-tag ul {
    text-align: left;
    display: flex;
    flex-direction: column;
  }
}
.c-tag ul li {
  display: inline-block;
  margin: 0 10px 10px 0;
}
.c-tag ul li:last-of-type {
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 998px) {
  .c-tag ul li {
    width: fit-content;
    margin: 0 0 5px;
  }
}
.c-tag ul li a {
  background: #FFFFFF;
  border-radius: 50px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #262626;
  transition: all 0.3s ease;
}
.c-tag ul li a:hover {
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .c-tag ul li a {
    font-size: 15px;
    font-size: 0.9375rem;
    color: #7EB44A;
  }
}

/* @import 'module/edit';
@import 'module/table';
@import 'module/pagination';
@import 'module/option';
@import 'module/component';
@import 'module/manual';
@import 'module/primary';
@import 'module/tab';
@import 'module/grid';
@import 'module/thanks';
@import "module/modal"; */
/* @import "page/login";
@import "page/index";
@import "page/errors";
@import "page/media";
@import "page/chat";
@import "page/page"; */
.p-index__kv {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 998px) {
  .p-index__kv {
    padding: 0;
  }
}
.p-index__kv .inner {
  background: #F8F2E7;
  border-radius: 20px;
  padding: 205px 80px 75px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 50px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner {
    border-radius: 0;
    flex-direction: column-reverse;
    padding: 190px 20px 45px;
    align-items: center;
  }
}
.p-index__kv .inner .text h1 {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #262626;
  margin: 0 0 15px;
}
.p-index__kv .inner .text h1 span {
  color: #7EB44A;
  border-bottom: 1px solid #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .text h1 {
    font-size: 28px;
    font-size: 1.75rem;
    margin: 0 0 20px;
  }
}
.p-index__kv .inner .text p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 210%;
  letter-spacing: 0.07em;
  color: #262626;
  max-width: 625px;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .text p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-index__kv .inner .image {
  position: relative;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .image {
    text-align: center;
    width: 100%;
  }
}
.p-index__kv .inner .image img:nth-of-type(1) {
  position: absolute;
  z-index: 1;
  transform: translateY(-185px);
  width: 630px;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .image img:nth-of-type(1) {
    width: 110%;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-150px);
  }
}
.p-index__kv .inner .image img:nth-of-type(2) {
  width: 384px;
  z-index: 2;
  position: relative;
  left: 112px;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .image img:nth-of-type(2) {
    width: 80%;
    left: auto;
  }
}
.p-index__kv .inner .image img:nth-of-type(3) {
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 188px;
}
.p-index__kv .inner .image img:nth-of-type(4) {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 117px;
}
.p-index__kv .inner .link {
  position: absolute;
  right: 30px;
  top: 120px;
  z-index: 3;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .link {
    right: 10px;
    top: 80px;
  }
}
.p-index__kv .inner .link img {
  width: 109px;
}
@media only screen and (max-width: 998px) {
  .p-index__kv .inner .link img {
    width: 90px;
  }
}
.p-index__merit {
  position: relative;
  margin: -60px 0 0;
  z-index: 1;
}
@media only screen and (max-width: 998px) {
  .p-index__merit {
    margin: 0;
  }
}
.p-index__merit figure img {
  width: 100%;
}
.p-index__merit ul {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul {
    top: 40px;
    left: 20px;
    transform: none;
    width: calc(100% - 40px);
  }
}
.p-index__merit ul li {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #7EB44A;
  border-radius: 10px;
  margin: 0 0 10px;
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul li {
    padding: 10px;
    margin: 0 0 5px;
  }
}
.p-index__merit ul li figure img {
  width: 32px;
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul li figure img {
    width: 25px;
  }
}
.p-index__merit ul li div p {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 145%;
  letter-spacing: 0.03em;
  color: #FFFFFF;
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul li div p {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-index__merit ul li div p.small {
  font-size: 10px;
  font-size: 0.625rem;
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul li div p.small {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-index__merit ul li div p span {
  color: #FFFFFF;
  font-size: 12px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 998px) {
  .p-index__merit ul li div p span {
    font-size: 10px;
    font-size: 0.625rem;
  }
}
.p-index__question {
  background: #fffdf9;
  padding: 80px 100px 100px;
}
@media only screen and (max-width: 998px) {
  .p-index__question {
    padding: 70px 20px 50px;
  }
}
.p-index__question h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 5px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__question h3 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-index__question h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #262626;
  margin: 0 0 110px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__question h2 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 80px;
  }
}
.p-index__question ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 998px) {
  .p-index__question ul {
    display: block;
  }
}
.p-index__question ul li {
  max-width: 400px;
  background: #EDE7DD;
  border-radius: 10px;
  padding: 0 35px 50px;
  flex: 1;
}
@media only screen and (max-width: 998px) {
  .p-index__question ul li {
    max-width: 100%;
    padding: 0 30px 30px;
    margin: 0 0 70px;
  }
  .p-index__question ul li:last-of-type {
    margin: 0;
  }
}
.p-index__question ul li figure {
  margin: -55px 0 40px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__question ul li figure {
    margin: 0 0 -30px;
    transform: translateY(-60px);
  }
}
.p-index__question ul li figure img {
  width: 110px;
}
.p-index__question ul li p {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 160%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 998px) {
  .p-index__question ul li p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-index__how {
  position: relative;
  background: #7EB44A;
  padding: 165px 20px 200px;
}
@media only screen and (max-width: 998px) {
  .p-index__how {
    padding: 185px 20px 55px;
  }
}
.p-index__how .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.p-index__how .bg img {
  width: 100%;
}
.p-index__how .box {
  position: relative;
  background: #fffdf9;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 55px;
  padding: 40px 20px 70px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box {
    margin: 0 auto 50px;
    padding: 35px 25px 25px;
  }
}
.p-index__how .box h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 5px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box h3 {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 0 10px;
  }
}
.p-index__how .box h2 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 50px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box h2 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 30px;
  }
}
.p-index__how .box .detail {
  display: flex;
  justify-content: center;
  gap: 70px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail {
    display: block;
  }
}
.p-index__how .box .detail .about {
  max-width: 350px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .about {
    max-width: 100%;
  }
}
.p-index__how .box .detail .about h4 {
  font-weight: 700;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 145%;
  letter-spacing: 0.05em;
  text-align: left;
}
.p-index__how .box .detail .about h4 span {
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .about h4 {
    text-align: center;
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-index__how .box .detail .about h3 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin: 0 0 15px;
  text-align: left;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .about h3 {
    text-align: center;
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.p-index__how .box .detail .about p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 170%;
  letter-spacing: 0.03em;
  margin: 0 0 15px;
}
.p-index__how .box .detail .point {
  display: flex;
  gap: 20px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .point {
    display: block;
  }
}
.p-index__how .box .detail .point div {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 30px;
  position: relative;
  flex: 1;
  max-width: 280px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .point div {
    max-width: 100%;
    margin: 0 0 20px;
  }
}
.p-index__how .box .detail .point div .title {
  font-weight: 700;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 145%;
  color: #7EB44A;
  margin: 0 0 50px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .point div .title {
    margin: 0 0 20px;
  }
}
.p-index__how .box .detail .point div .num {
  font-weight: 300;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 145%;
  color: #7EB44A;
  position: absolute;
  top: 10px;
  right: 15px;
}
.p-index__how .box .detail .point div figure {
  text-align: center;
  margin: 0 0 50px;
}
.p-index__how .box .detail .point div figure img {
  width: 130px;
}
.p-index__how .box .detail .point div .text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 150%;
  letter-spacing: 0.04em;
}
@media only screen and (max-width: 998px) {
  .p-index__how .box .detail .point div .text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-index__how .box .detail .point div .text.small {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 160%;
}
.p-index__how .record div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin: 0 0 30px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .record div {
    display: block;
    margin: 0;
  }
}
.p-index__how .record div h4 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 145%;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-align: right;
}
@media only screen and (max-width: 998px) {
  .p-index__how .record div h4 {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-index__how .record div h3 {
  font-size: 108px;
  font-size: 6.75rem;
  line-height: 145%;
  letter-spacing: -0.03em;
  color: #FFFFFF;
}
@media only screen and (max-width: 998px) {
  .p-index__how .record div h3 {
    text-align: center;
    font-size: 70px;
    font-size: 4.375rem;
  }
}
.p-index__how .record div h3 span {
  font-weight: 400;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  display: inline-block;
  margin: 0 0 0 10px;
}
@media only screen and (max-width: 998px) {
  .p-index__how .record div h3 span {
    font-size: 30px;
    font-size: 1.875rem;
    margin: 0 0 0 5px;
  }
}
.p-index__how .record p {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 150%;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
@media only screen and (max-width: 998px) {
  .p-index__how .record p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-index__flow {
  padding: 0 20px 80px;
  background: #fffdf9;
}
@media only screen and (max-width: 998px) {
  .p-index__flow {
    padding: 50px 20px 120px;
  }
}
.p-index__flow p {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .p-index__flow p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-index__flow .box {
  display: flex;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100px);
  margin: 0;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box {
    display: block;
    transform: translateY(0);
    margin: 0;
  }
}
.p-index__flow .box .item {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 65px 50px 50px;
  max-width: 605px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item {
    display: block;
    padding: 25px 25px 0;
    margin: 0 0 55px;
  }
  .p-index__flow .box .item:last-of-type {
    margin: 0 0 65px;
  }
}
.p-index__flow .box .item h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 145%;
  text-align: center;
  letter-spacing: 0.07em;
  margin: 0 0 5px;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0;
  }
}
.p-index__flow .box .item h4 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  text-align: center;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #7EB44A;
  margin: 0 0 20px;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item h4 {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 25px;
  }
}
.p-index__flow .box .item p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 0 0 65px;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 45px;
  }
}
.p-index__flow .box .item .c-button {
  margin-top: auto;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item .c-button {
    transform: translateY(25px);
  }
}
.p-index__flow .box .item .c-button a {
  max-width: 350px;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item .c-button a {
    max-width: 98%;
  }
}
.p-index__flow .box .item .c-button p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 15px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-index__flow .box .item .c-button p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 10px;
  }
}

.p-page__title {
  background: #f7f2e7;
  padding: 130px 20px 280px;
}
@media only screen and (max-width: 998px) {
  .p-page__title {
    padding: 100px 20px 180px;
  }
}
.p-page__title .inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.p-page__box {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  transform: translateY(-210px);
  padding: 0 70px;
}
@media only screen and (max-width: 998px) {
  .p-page__box {
    transform: translateY(-140px);
    padding: 0 20px;
  }
}
.p-page__box .item {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 0 20px;
  padding: 65px 50px 100px;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item {
    padding: 30px 25px;
  }
}
.p-page__box .item h4 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 35px;
}
.p-page__box .item h4 span {
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item h4 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 20px;
  }
}
.p-page__box .item .border {
  text-align: center;
  margin: 0 0 25px;
}
.p-page__box .item .border span {
  height: 1px;
  width: 100%;
  max-width: 100px;
  display: inline-block;
  background: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item .border {
    display: none;
  }
}
.p-page__box .item p {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.07em;
}
.p-page__box .item p.small {
  font-size: 14px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item p {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .p-page__box .item p.small {
    margin: 20px 0 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-page__box .item figure {
  max-width: 100%;
  text-align: center;
  margin: 45px 0 0;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item figure {
    margin: 25px 0 0;
  }
  .p-page__box .item figure img {
    width: 100%;
  }
}
.p-page__box .item h5 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 90px 0 0;
}
.p-page__box .item h5 span {
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__box .item h5 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 20px 0 0;
  }
}
.p-page__box .bottom {
  margin: 130px 0 0;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-page__box .bottom {
    margin: 90px 0 0;
  }
}
.p-page__box .bottom h4 {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin: 0 0 40px;
}
.p-page__box .bottom h4 span {
  color: #7EB44A;
  padding: 0 0 0px;
  border-bottom: 1px solid #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__box .bottom h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 20px;
  }
}
.p-page__box .bottom h3 {
  font-weight: 700;
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin: 0 0 60px;
}
.p-page__box .bottom h3 span {
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__box .bottom h3 {
    font-size: 26px;
    font-size: 1.625rem;
    margin: 0 0 20px;
  }
}
.p-page__box .bottom figure img {
  max-width: 125px;
}
@media only screen and (max-width: 998px) {
  .p-page__box .bottom figure img {
    max-width: 75px;
  }
}
.p-page__card {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 95px;
  transform: translateY(-180px);
  display: flex;
  gap: 16px;
}
@media only screen and (max-width: 998px) {
  .p-page__card {
    display: block;
    transform: translateY(0);
    background: #f7f2e7;
    padding: 0 20px 25px;
    margin: 0 auto 0;
  }
}
.p-page__card .item {
  flex: 1;
  position: relative;
  aspect-ratio: 235/337;
  background: url(../images/flow/flow_card.svg) no-repeat center/contain;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item {
    aspect-ratio: auto;
    background: none;
    background: #7EB44A;
    margin: 0 0 5px;
    border-radius: 10px;
  }
}
.p-page__card .item a {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 15px 24px;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    flex-direction: row;
  }
}
.p-page__card .item a .title {
  order: 1;
}
.p-page__card .item a .icon {
  order: 2;
}
.p-page__card .item a .text {
  order: 3;
}
.p-page__card .item a .arrow {
  order: 4;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .icon {
    order: 1;
  }
  .p-page__card .item a div {
    order: 2;
    padding: 10px 50px 10px 20px;
  }
}
.p-page__card .item a .icon {
  margin: 0 0 12px;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .icon {
    width: 90px;
    margin: 0;
  }
}
.p-page__card .item a .icon img {
  width: 100%;
  max-width: 202px;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .icon img {
    width: 90px;
  }
}
.p-page__card .item a .title {
  font-weight: 700;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 145%;
  text-align: center;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .title {
    text-align: left;
    margin: 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-page__card .item a .text {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .text {
    text-align: left;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-page__card .item a .arrow {
  margin-top: auto;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .arrow {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    display: flex;
  }
}
.p-page__card .item a .arrow img {
  width: 20px;
}
@media only screen and (max-width: 998px) {
  .p-page__card .item a .arrow img {
    width: 10px;
  }
}
.p-page__flow {
  padding: 0 20px;
  background: #fffdf9;
}
@media only screen and (max-width: 998px) {
  .p-page__flow {
    padding: 30px 20px;
  }
}
.p-page__flow .item {
  max-width: 1240px;
  margin: 0 auto 50px;
  display: flex;
  align-items: start;
  gap: 40px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item {
    display: block;
  }
}
.p-page__flow .item:last-of-type {
  margin: 0 auto;
}
.p-page__flow .item .label {
  background: #7EB44A;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 42px 50px;
  gap: 45px;
  flex: 42;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .label {
    display: block;
    border-radius: 10px 10px 0px 0px;
    padding: 20px 25px;
  }
}
.p-page__flow .item .label figure {
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .label figure {
    display: none;
  }
}
.p-page__flow .item .label figure img {
  width: 57px;
}
.p-page__flow .item .label p {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #FFFFFF;
  margin: 0 0 7px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .label p {
    margin: 0;
    text-align: center;
  }
}
.p-page__flow .item .label h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 130%;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .label h3 {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
  }
}
.p-page__flow .item .box {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  flex: 78;
  padding: 40px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box {
    padding: 25px;
  }
}
.p-page__flow .item .box h3 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box h3 {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.p-page__flow .item .box .border {
  height: 1px;
  background: #D2E8BD;
  margin: 0 0 40px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .border {
    margin: 0 0 15;
  }
}
.p-page__flow .item .box p {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-page__flow .item .box p span, .p-page__flow .item .box p a {
  color: #7EB44A;
}
.p-page__flow .item .box .mt {
  margin: 25px 0 0;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .mt {
    margin: 20px 0 0;
  }
}
.p-page__flow .item .box .c-button a {
  font-size: 20px;
  font-size: 1.25rem;
  max-width: 475px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .c-button a {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-page__flow .item .box .row {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .row {
    display: block;
  }
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .row figure {
    text-align: center;
    margin: 30px 0 0;
  }
}
.p-page__flow .item .box .row figure img {
  max-width: 202px;
}
.p-page__flow .item .box .notion {
  background: #F8F8F8;
  border-radius: 10px;
  padding: 40px;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .notion {
    padding: 20px;
  }
}
.p-page__flow .item .box .notion h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #7EB44A;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .notion h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 20px;
  }
}
.p-page__flow .item .box .notion p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
}
@media only screen and (max-width: 998px) {
  .p-page__flow .item .box .notion p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-page__attention {
  padding: 115px 20px 150px;
  background: #fffdf9;
}
@media only screen and (max-width: 998px) {
  .p-page__attention {
    padding: 120px 0 0;
  }
}
.p-page__attention div {
  max-width: 900px;
  margin: 0 auto;
  background: #F4F0EA;
  padding: 70px 100px;
  border-radius: 10px;
}
@media only screen and (max-width: 998px) {
  .p-page__attention div {
    padding: 30px 20px 30px 40px;
    border-radius: 0;
  }
}
.p-page__attention div h3 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 60px;
}
@media only screen and (max-width: 998px) {
  .p-page__attention div h3 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 25px;
  }
}
.p-page__attention div ol {
  list-style: decimal;
  list-style-position: outside;
}
.p-page__attention div ol li {
  margin: 0 0 50px;
  padding: 0 0 0 20px;
}
@media only screen and (max-width: 998px) {
  .p-page__attention div ol li {
    margin: 0 0 25px;
  }
}
.p-page__attention div ol li p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 170%;
  letter-spacing: 0.03em;
}
@media only screen and (max-width: 998px) {
  .p-page__attention div ol li p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-page__attention div ol li p.small {
  font-weight: 400;
  font-size: 15px;
  font-size: 0.9375rem;
  letter-spacing: 0.07em;
  margin: 20px 0 0;
}
@media only screen and (max-width: 998px) {
  .p-page__attention div ol li p.small {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-page__attention div ol li p.small a {
  text-decoration: underline;
  font-weight: 400;
}
.p-page__attention div ol li p .red {
  color: #FF0000;
}
.p-page__attention.is-faq {
  background: #f7f7f7;
}
@media only screen and (max-width: 998px) {
  .p-page__attention.is-faq {
    padding: 0;
  }
}
.p-page__price {
  background: #F4F4F4;
  padding: 30px 20px 190px;
}
@media only screen and (max-width: 998px) {
  .p-page__price {
    padding: 50px 20px 115px;
  }
}
.p-page__price h3 {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
@media only screen and (max-width: 998px) {
  .p-page__price h3 {
    font-size: 22px;
    font-size: 1.375rem;
    margin: 0 0 35px;
  }
}
.p-page__price p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: right;
  letter-spacing: 0.07em;
  max-width: 1240px;
  margin: 0 auto 15px;
}
@media only screen and (max-width: 998px) {
  .p-page__price p {
    margin: 0 auto 10px;
  }
}
.p-page__price .price-tabs {
  display: none;
  gap: 2px;
  position: sticky;
  top: 80px;
  z-index: 50;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-tabs {
    display: flex;
  }
}
.p-page__price .price-tabs button {
  box-sizing: border-box;
  min-width: 0;
  flex: 1;
  gap: 2px;
  background: #FFFFFF;
  border-radius: 10px 10px 0px 0px;
  padding: 10px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  border-width: 0px;
  box-shadow: none;
}
.p-page__price .price-tabs button:hover {
  cursor: pointer;
}
.p-page__price .price-tabs button.is-active {
  background: #7EB44A;
  color: #FFFFFF;
}
.p-page__price .price-table {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 15px;
}
.p-page__price .price-table table {
  border-collapse: collapse;
  width: 100%;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table {
    table-layout: fixed;
  }
}
.p-page__price .price-table table tr th.fare_title, .p-page__price .price-table table tr th.month_title {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.07em;
  background: #FFFFFF;
  vertical-align: middle;
  padding: 25px;
  border-right: 4px solid #F4F4F4;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table tr th.fare_title, .p-page__price .price-table table tr th.month_title {
    font-size: 12px;
    font-size: 0.75rem;
    padding: 10px;
    border-right: 2px solid #F4F4F4;
  }
}
.p-page__price .price-table table tr th.normal_label, .p-page__price .price-table table tr th.eco_label, .p-page__price .price-table table tr th.diff_label {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  background: #FFFFFF;
  text-align: center;
  letter-spacing: 0.07em;
  width: 115px;
  padding: 20px 10px;
  border-right: 2px solid #F4F4F4;
  border-bottom: 4px solid #F4F4F4;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table tr th.normal_label, .p-page__price .price-table table tr th.eco_label, .p-page__price .price-table table tr th.diff_label {
    padding: 10px;
    font-size: 12px;
    font-size: 0.75rem;
    border-bottom: 2px solid #F4F4F4;
  }
}
.p-page__price .price-table table tr th.eco_label {
  color: #7EB44A;
}
.p-page__price .price-table table tr th.diff_label {
  color: #FF0000;
}
.p-page__price .price-table table tr th.fare_title {
  border-bottom: 4px solid #F4F4F4;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table tr th.fare_title {
    color: #B0B0B0;
  }
}
.p-page__price .price-table table tr th:last-of-type {
  border-right-width: 0px;
}
.p-page__price .price-table table tbody tr th.fare {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  vertical-align: middle;
  letter-spacing: 0.07em;
  padding: 10px;
  border-right: 4px solid #F4F4F4;
  border-bottom: 4px solid #F4F4F4;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table tbody tr th.fare {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #B0B0B0;
    border-right: 2px solid #F4F4F4;
    border-bottom: 2px solid #F4F4F4;
  }
}
.p-page__price .price-table table tbody tr td {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
  text-align: right;
  vertical-align: middle;
  letter-spacing: 0.03em;
  padding: 10px;
  border-right: 4px solid #F4F4F4;
  border-bottom: 4px solid #F4F4F4;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table tbody tr td {
    font-size: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    border-right: 2px solid #F4F4F4;
    border-bottom: 2px solid #F4F4F4;
  }
}
.p-page__price .price-table table tbody tr td.normal {
  border-right-width: 2px;
}
.p-page__price .price-table table tbody tr td.eco {
  border-right-width: 2px;
}
.p-page__price .price-table table tbody tr td.diff {
  color: #FF0000;
}
.p-page__price .price-table table tbody tr td:last-of-type {
  border-right-width: 0px;
}
.p-page__price .price-table table tbody tr:nth-child(odd) th,
.p-page__price .price-table table tbody tr:nth-child(odd) td {
  background: #FAFAFA;
}
.p-page__price .price-table table tbody tr:nth-child(even) th,
.p-page__price .price-table table tbody tr:nth-child(even) td {
  background: #FFFFFF;
}
.p-page__price .price-table table .top_left_cell {
  border-radius: 10px 0px 0px 0px;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table .top_left_cell {
    border-radius: 0;
  }
}
.p-page__price .price-table table .top_right_cell {
  border-radius: 0px 10px 0px 0px;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table .top_right_cell {
    border-radius: 0;
  }
}
.p-page__price .price-table table .bottom_left_cell {
  border-radius: 0px 0px 0px 10px;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table .bottom_left_cell {
    border-radius: 0;
  }
}
.p-page__price .price-table table .bottom_right_cell {
  border-radius: 0px 0px 10px 0px;
}
@media only screen and (max-width: 998px) {
  .p-page__price .price-table table .bottom_right_cell {
    border-radius: 0;
  }
}
@media only screen and (max-width: 998px) {
  .p-page__price {
    /* 1ヶ月定期 */
    /* 3ヶ月定期 */
    /* 6ヶ月定期 */
  }
  .p-page__price th, .p-page__price td {
    display: none;
  }
  .p-page__price th.fare_title,
.p-page__price th.fare {
    display: table-cell;
  }
  .p-page__price .price-table[data-period="1"] th.normal_label:nth-child(1),
.p-page__price .price-table[data-period="1"] th.eco_label:nth-child(2),
.p-page__price .price-table[data-period="1"] th.diff_label:nth-child(3),
.p-page__price .price-table[data-period="1"] td:nth-child(1),
.p-page__price .price-table[data-period="1"] td:nth-child(2),
.p-page__price .price-table[data-period="1"] td:nth-child(3),
.p-page__price .price-table[data-period="1"] td:nth-child(4) {
    display: table-cell;
  }
  .p-page__price .price-table[data-period="1"] th.diff_label:nth-child(3),
.p-page__price .price-table[data-period="1"] td:nth-child(4) {
    border-right-width: 0;
  }
  .p-page__price .price-table[data-period="3"] th.normal_label:nth-child(4),
.p-page__price .price-table[data-period="3"] th.eco_label:nth-child(5),
.p-page__price .price-table[data-period="3"] th.diff_label:nth-child(6),
.p-page__price .price-table[data-period="3"] td:nth-child(5),
.p-page__price .price-table[data-period="3"] td:nth-child(6),
.p-page__price .price-table[data-period="3"] td:nth-child(7) {
    display: table-cell;
  }
  .p-page__price .price-table[data-period="3"] th.diff_label:nth-child(6),
.p-page__price .price-table[data-period="3"] td:nth-child(7) {
    border-right-width: 0;
  }
  .p-page__price .price-table[data-period="6"] th.normal_label:nth-child(7),
.p-page__price .price-table[data-period="6"] th.eco_label:nth-child(8),
.p-page__price .price-table[data-period="6"] th.diff_label:nth-child(9),
.p-page__price .price-table[data-period="6"] td:nth-child(8),
.p-page__price .price-table[data-period="6"] td:nth-child(9),
.p-page__price .price-table[data-period="6"] td:nth-child(10) {
    display: table-cell;
  }
  .p-page__price .price-table[data-period="6"] th.diff_label:nth-child(9),
.p-page__price .price-table[data-period="6"] td:nth-child(10) {
    border-right-width: 0;
  }
}
.p-page__faq {
  background: #f7f7f7;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq {
    position: static;
    display: block;
    padding: 0;
  }
}
.p-page__faq .faq_side {
  position: sticky;
  top: 150px;
  align-self: flex-start;
  z-index: 1;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side {
    position: static;
    padding: 0 20px;
  }
}
.p-page__faq .faq_side h3 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 5px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side h3 {
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: center;
    margin: 0;
  }
}
.p-page__faq .faq_side h2 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 50px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side h2 {
    font-size: 20px;
    font-size: 1.25rem;
    text-align: center;
    margin: 0 0 35px;
  }
}
.p-page__faq .faq_side ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side ul {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px;
    justify-content: center;
    margin: 0 0 40px;
  }
}
.p-page__faq .faq_side ul li {
  min-width: 0;
}
.p-page__faq .faq_side ul li a {
  display: block;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #7EB44A;
  border-radius: 10px;
  font-size: 16px;
  font-size: 1rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #7EB44A;
  padding: 15px 20px;
  position: relative;
  white-space: nowrap;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side ul li a {
    display: inline-block;
    width: auto;
    padding: 5px 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-page__faq .faq_side ul li a img {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 20px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_side ul li a img {
    display: none;
  }
}
.p-page__faq .faq_side ul li a:hover img {
  transform: translateY(-50%) translateX(5px);
}
.p-page__faq .faq_main {
  width: 100%;
  max-width: 810px;
  flex: 1;
}
.p-page__faq .faq_main .box {
  margin: 0 0 50px;
  max-width: 810px;
  scroll-margin-top: 150px;
}
.p-page__faq .faq_main .box:last-of-type {
  margin: 0 0 130px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .box {
    padding: 0 20px;
    max-width: 100%;
  }
}
.p-page__faq .faq_main h3 {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #7EB44A;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main h3 {
    text-align: center;
    margin: 0 0 20px;
  }
}
.p-page__faq .faq_main .accordion {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 0 10px;
}
.p-page__faq .faq_main .accordion:last-of-type {
  margin: 0;
}
.p-page__faq .faq_main .accordion_header {
  padding: 30px 20px 0;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_header {
    padding: 20px 0 0;
  }
}
.p-page__faq .faq_main .accordion_header .question {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 0 30px;
  border-bottom: 1px solid #EDEDED;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_header .question {
    padding: 0 20px 20px;
    gap: 15px;
  }
}
.p-page__faq .faq_main .accordion_header .question span {
  display: inline-block;
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #7EB44A;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_header .question span {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
.p-page__faq .faq_main .accordion_header .question h4 {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  padding-right: 30px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_header .question h4 {
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-page__faq .faq_main .accordion_header .accordion_header_toggle {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.p-page__faq .faq_main .accordion_header .accordion_header_toggle span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  /* 横線（常に表示） */
  /* 縦線（＋の縦棒） */
}
.p-page__faq .faq_main .accordion_header .accordion_header_toggle span::before, .p-page__faq .faq_main .accordion_header .accordion_header_toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background: #7EB44A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.p-page__faq .faq_main .accordion_header .accordion_header_toggle span::before {
  transform: translateY(-50%);
}
.p-page__faq .faq_main .accordion_header .accordion_header_toggle span::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}
.p-page__faq .faq_main .accordion_header.is-open .question {
  border-bottom: 1px solid #FFFFFF;
}
.p-page__faq .faq_main .accordion_header.is-open .accordion_header_toggle span::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 1;
}
.p-page__faq .faq_main .accordion_content {
  padding: 20px 20px 30px;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_content {
    padding: 15px 20px 30px;
  }
}
.p-page__faq .faq_main .accordion_content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_content p {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-page__faq .faq_main .accordion_content p a {
  text-decoration: underline;
  word-break: break-all;
}
.p-page__faq .faq_main .accordion_content p a.button {
  text-decoration: none;
  display: block;
  background: #7EB44A;
  border-radius: 10px;
  padding: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  max-width: 475px;
  margin: 35px auto 10px;
  position: relative;
  cursor: pointer;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_content p a.button {
    padding: 10px 20px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.p-page__faq .faq_main .accordion_content p a.button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../images/common/button_arrow_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: all 0.3s ease;
}
.p-page__faq .faq_main .accordion_content p a.button:hover::after {
  transform: translateY(-50%) translateX(5px);
}
.p-page__faq .faq_main .accordion_content p span {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  letter-spacing: 0.07em;
}
@media only screen and (max-width: 998px) {
  .p-page__faq .faq_main .accordion_content p span {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}
.p-page__list {
  background: #7EB44A;
  padding: 40px 20px;
  margin: 0 0 60px;
}
.p-page__list ul {
  max-width: 1240px;
  margin: 0 auto;
}
.p-page__list ul li {
  margin: 0 0 20px;
}
.p-page__list ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.05em;
}
.p-page__list ul li a p {
  color: #FFFFFF;
}
.p-page__list ul li a p.title {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  border-bottom: 1px solid #FFFFFF;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-page__list .more {
  text-align: right;
  max-width: 1240px;
  margin: 0 auto;
}
.p-page__list .more a {
  font-size: 16px;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 998px) {
  .p-page__list .more a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.p-page__customer_card {
  max-width: 1240px;
  margin: 0 auto 65px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 40px 30px;
}
@media only screen and (max-width: 998px) {
  .p-page__customer_card {
    margin: 0 20px 65px;
  }
}
.p-page__customer_card figure img {
  width: 72px;
  border-radius: 50%;
}
.p-page__customer_card p {
  font-size: 16px;
  font-size: 1rem;
}
.p-page__customer_card h3 {
  font-size: 22px;
  font-size: 1.375rem;
}
.p-page__customer_card dl {
  display: flex;
}
.p-page__customer_card dl dt {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-page__customer_card dl dd {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-page__customer_card .c-button {
  width: 200px;
  margin-left: auto;
}
@media only screen and (max-width: 998px) {
  .p-page__customer_card {
    flex-wrap: wrap;
    padding: 20px;
    gap: 12px 16px;
  }
  .p-page__customer_card .p-page__customer_card figure {
    order: 1;
  }
  .p-page__customer_card > div:nth-of-type(1) {
    order: 2;
    flex: 1;
  }
  .p-page__customer_card > div:nth-of-type(2) {
    order: 3;
    width: 100%;
  }
  .p-page__customer_card .c-button {
    order: 4;
    width: 100%;
    margin-left: 0;
  }
}
.p-page__request {
  max-width: 1240px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 998px) {
  .p-page__request {
    padding: 0 20px;
  }
}
.p-page__request h4 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0 0 50px;
}
@media only screen and (max-width: 998px) {
  .p-page__request h4 {
    margin: 0 0 30px;
  }
}
.p-page__request .box {
  display: flex;
  gap: 50px;
}
@media only screen and (max-width: 998px) {
  .p-page__request .box {
    display: block;
  }
}
.p-page__request .box .request_button {
  flex: 1;
  background: #7EB44A;
  border-radius: 10px;
  text-align: center;
}
.p-page__request .box .request_button a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #FFFFFF;
  font-size: 20px;
  font-size: 1.25rem;
}
@media only screen and (max-width: 998px) {
  .p-page__request .box .request_button a {
    padding: 50px 20px;
    margin: 0 0 20px;
  }
}
.p-page__request .box .request_button a span {
  font-size: 14px;
  font-size: 0.875rem;
  color: #FFFFFF;
  margin: 15px 0 0;
}
.p-page__request .box .request_button a img {
  width: 35px;
  display: block;
  margin: 0 auto 20px;
}
.p-page__request .box .request_info {
  flex: 1;
}
.p-page__request .box .request_info .notion {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 40px;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .p-page__request .box .request_info .notion {
    padding: 20px;
  }
}
.p-page__request .box .request_info .notion h4 {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 130%;
  text-align: center;
  letter-spacing: 0.05em;
  color: #7EB44A;
  margin: 0 0 25px;
}
@media only screen and (max-width: 998px) {
  .p-page__request .box .request_info .notion h4 {
    font-size: 18px;
    font-size: 1.125rem;
    margin: 0 0 20px;
  }
}
.p-page__request .box .request_info .notion p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
}
@media only screen and (max-width: 998px) {
  .p-page__request .box .request_info .notion p {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.p-page__refund {
  max-width: 1240px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 998px) {
  .p-page__refund {
    padding: 0 20px;
  }
}
.p-page__refund h3 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 15px;
}
.p-page__refund p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 20px;
}
.p-page__refund .link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #7EB44A;
  margin: 0 0 20px;
  display: inline-block;
}
.p-page__refund .c-button {
  text-align: left;
}
.p-page__refund .c-button a {
  color: #FFFFFF;
  max-width: 595px;
}
.p-page__eco {
  max-width: 1240px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 998px) {
  .p-page__eco {
    padding: 0 20px;
  }
}
.p-page__eco .box {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 0 0 80px;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box {
    display: block;
    margin: 0;
  }
}
.p-page__eco .box .item {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 65px 50px 50px;
  max-width: 605px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item {
    display: block;
    padding: 25px 25px 0;
    margin: 0 0 55px;
  }
  .p-page__eco .box .item:last-of-type {
    margin: 0 0 65px;
  }
}
.p-page__eco .box .item h3 {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 145%;
  text-align: center;
  letter-spacing: 0.07em;
  margin: 0 0 5px;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item h3 {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.p-page__eco .box .item p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 0 0 65px;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 45px;
  }
}
.p-page__eco .box .item .c-button {
  margin-top: auto;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item .c-button {
    transform: translateY(25px);
  }
}
.p-page__eco .box .item .c-button a {
  max-width: 350px;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item .c-button a {
    max-width: 98%;
  }
}
.p-page__eco .box .item .c-button p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  color: #7EB44A;
  margin: 0 0 15px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-page__eco .box .item .c-button p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 10px;
  }
}
.p-page__content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 0 60px;
}
.p-page__content .date {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 0 0 20px;
}
.p-page__content .detail p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 0 0 40px;
}
.p-page__content .c-button {
  max-width: 500px;
}
@media only screen and (max-width: 998px) {
  .p-page.is-flow .p-page__title {
    padding: 100px 20px 40px;
  }
}
.p-page.is-price .p-page__title {
  padding: 130px 20px 60px;
}
@media only screen and (max-width: 998px) {
  .p-page.is-price .p-page__title {
    padding: 100px 20px 50px;
  }
}
.p-page.is-faq {
  background: #f7f7f7;
}
.p-page.is-faq .p-page__title {
  padding: 130px 20px 70px;
  background: #f7f7f7;
}
@media only screen and (max-width: 998px) {
  .p-page.is-faq .p-page__title {
    padding: 100px 0 0;
  }
}
.p-page.is-customer {
  background: #f7f7f7;
}
.p-page.is-customer .p-page__title {
  background: #f7f7f7;
  padding: 130px 20px 0;
}

.p-customer {
  background: #f7f7f7;
  padding: 200px 0 70px;
}
.p-customer input {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px;
  background: #FFFFFF;
  /* box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15); */
  box-shadow: none;
  border-radius: 4px;
  border-width: 0;
  width: 100%;
}
.p-customer button {
  background: #7EB44A;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-width: 0;
  box-shadow: none;
  padding: 20px 25px;
  margin: 0 auto;
  cursor: pointer;
}
.p-customer .errors ul {
  margin: 0 0 20px;
}
.p-customer .errors ul li {
  font-size: 14px;
  font-size: 0.875rem;
  color: red;
  margin: 0 0 5px;
}
.p-customer__title {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 50px;
  text-align: center;
}
.p-customer__title h2 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 998px) {
  .p-customer__title h2 {
    font-size: 11px;
    font-size: 0.6875rem;
    text-align: center;
    margin: 0;
  }
}
.p-customer__title h3 {
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 30px;
}
@media only screen and (max-width: 998px) {
  .p-customer__title h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 35px;
    text-align: center;
  }
}
.p-customer__formbox {
  max-width: 400px;
  margin: 100px auto 100px;
}
.p-customer__formbox h2 {
  text-align: center;
  color: #7EB44A;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 10px;
}
@media only screen and (max-width: 998px) {
  .p-customer__formbox h2 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 35px;
  }
}
.p-customer__formbox h3 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 40px;
  text-align: center;
}
@media only screen and (max-width: 998px) {
  .p-customer__formbox h3 {
    font-size: 11px;
    font-size: 0.6875rem;
    margin: 0;
  }
}
.p-customer__formbox input {
  margin: 0 0 20px;
}
.p-customer__formbox input:last-of-type {
  margin: 0 0 30px;
}
.p-customer__formbox .form_submit {
  text-align: center;
  margin: 0 0 30px;
}
.p-customer__formbox .form_submit button {
  width: 100%;
}
.p-customer__formbox p {
  margin: 0 0 15px;
  font-size: 14px;
  font-size: 0.875rem;
  text-align: center;
}
.p-customer__formbox p a {
  color: #7EB44A;
}
.p-customer__form {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.p-customer__form dl {
  display: flex;
  align-items: start;
  gap: 20px;
  margin: 0 0 40px;
}
.p-customer__form dl dt {
  flex: 3;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
.p-customer__form dl dd {
  flex: 7;
}
.p-customer__form dl dd .form_zip {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.p-customer__form dl dd .form_zip span {
  font-size: 16px;
  font-size: 1rem;
}
.p-customer__form dl dd.form_tel {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.p-customer__form dl dd.form_tel span {
  font-size: 16px;
  font-size: 1rem;
}
.p-customer__form dl dd.form_row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.p-customer__form dl dd p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 10px 0 0;
}
.p-customer .c-breadcrumb {
  max-width: 1240px;
}

/* form共通 */
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=url],
form input[type=number] {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 20px;
  background: #FFFFFF;
  box-shadow: none;
  border-radius: 4px;
  border-width: 0;
  width: 100%;
}
form select {
  padding: 18px 20px;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 4px;
  border: solid 1px #C3C3C3;
}
form select:disabled {
  background: #EBEBEB;
}
form button {
  background: #7EB44A;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 130%;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  border-width: 0;
  box-shadow: none;
  padding: 20px 25px;
  margin: 0 auto;
  cursor: pointer;
}
form .radio_item {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1;
  cursor: pointer;
  margin-bottom: 20px;
}
form .radio_item:not(:last-of-type) {
  margin-right: 20px;
}
form .radio_button {
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #7eb44a;
  border-radius: 9999px;
  cursor: pointer;
}
form .radio_button:checked::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  margin: auto;
  border-radius: 9999px;
  background-color: #7eb44a;
}

.errors ul {
  margin: 0 0 20px;
}
.errors ul li {
  font-size: 14px;
  font-size: 0.875rem;
  color: red;
  margin: 0 0 5px;
}

/* //form共通 */
.p-edit {
  background: #f7f7f7;
  padding: 200px 0 70px;
}
.p-edit__title {
  margin: 0 auto 50px;
  text-align: center;
}
.p-edit__title h2 {
  font-weight: 700;
  font-size: 16px;
  font-size: 1rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 5px;
}
@media only screen and (max-width: 998px) {
  .p-edit__title h2 {
    font-size: 11px;
    font-size: 0.6875rem;
    margin: 0;
  }
}
.p-edit__title h3 {
  color: #7EB44A;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 145%;
  letter-spacing: 0.07em;
  margin: 0 0 30px;
}
@media only screen and (max-width: 998px) {
  .p-edit__title h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 0 0 35px;
  }
}
.p-edit__form {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.p-edit__form dl {
  display: flex;
  align-items: start;
  gap: 20px;
  margin: 0 0 20px;
}
.p-edit__form dl dt {
  width: 160px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  padding: 20px 0;
  color: #666;
  font-weight: 700;
}
.p-edit__form dl dd {
  flex: 7;
}
.p-edit__form dl dd .form_zip {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.p-edit__form dl dd .form_zip span {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-edit__form dl dd.form_tel {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.p-edit__form dl dd.form_tel span {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-edit__form dl dd.form_row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-edit__form dl dd p {
  font-size: 12px;
  font-size: 0.75rem;
  color: #999;
  line-height: 160%;
  letter-spacing: 0.07em;
  margin: 10px 0 0;
}
.p-edit__form dl dd p.bold {
  font-weight: 700;
  color: #262626;
}
.p-edit__form dl dd p.red {
  color: #FF0000;
}
.p-edit__form .questionnaire {
  margin: 75px auto 0;
}
.p-edit__form .questionnaire h3 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 0 10px;
  font-weight: 700;
}
.p-edit__form .questionnaire h4 {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 0 40px;
}
.p-edit__form .questionnaire .box {
  background: #FFFFFF;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 65px 50px 50px;
}
.p-edit__form .questionnaire .box .introduction {
  margin: 0 0 20px;
  display: flex;
  gap: 40px;
  min-width: 0;
}
.p-edit__form .questionnaire .box .introduction dl {
  flex: 1;
  min-width: 0;
  display: flex;
  gap: 20px;
  justify-content: start;
  align-items: center;
}
.p-edit__form .questionnaire .box .introduction dl dt {
  width: 50px;
}
.p-edit__form .questionnaire .box .introduction dl dd {
  flex: 1;
  min-width: 0;
}
.p-edit__form .questionnaire .box .introduction dl dd input,
.p-edit__form .questionnaire .box .introduction dl dd select {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.p-edit__form .questionnaire .box .introduction > * {
  min-width: 0;
}
.p-edit__form .questionnaire .box input[type=text] {
  border: solid 1px #C3C3C3;
}
.p-edit__form .questionnaire .box input[type=text]:disabled {
  background: #EBEBEB;
}
.p-edit__form .form_button {
  margin: 50px auto 0;
  text-align: center;
}
.p-edit__form .form_button p {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
  text-align: center;
  margin: 0 0 30px;
}
.p-edit__form .form_button p a {
  color: #7EB44A;
}
.p-edit__form .form_button button {
  width: 380px;
  max-width: 100%;
}
.p-edit__confirm {
  padding: 0 20px;
}
.p-edit__confirm dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 20px;
}
.p-edit__confirm dl dt {
  text-align: right;
}
.p-edit__confirm dl dt,
.p-edit__confirm dl dd {
  flex: 1;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 160%;
  letter-spacing: 0.07em;
}
.p-edit__confirm .form_button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 50px auto 0;
}
.p-edit__confirm .form_button button {
  font-size: 14px;
  font-size: 0.875rem;
}
.p-edit__confirm .form_button button:first-of-type {
  margin-left: auto;
  margin-right: 0;
  background: #FFFFFF;
  border: 1px solid #7EB44A;
  color: #7EB44A;
}
.p-edit__confirm .form_button button:last-of-type {
  margin-left: 0;
  margin-right: auto;
}
