@charset "UTF-8";
/**
* reset 
**/
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

.all_container {
  overflow-x: hidden;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
video,
iframe,
picture {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

/**
* setting 
**/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000000;
  line-height: 1.5;
  letter-spacing: 0;
}

.accent_font {
  font-family: "Oswald", sans-serif;
}

/**
* base 
**/
html {
  font-size: 16px;
}
@media (max-width: 390px) {
  html {
    font-size: 4.1025641026vw;
  }
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .u_pc {
    display: none !important;
  }
}

.u_sp,
.u_sp_b {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp,
  .u_sp_b {
    display: block !important;
  }
}

.u_sp_i {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_i {
    display: inline !important;
  }
}

.u_sp_ib {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_ib {
    display: inline-block !important;
  }
}

.u_sp_f {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_f {
    display: flex !important;
  }
}

.u_sp_t {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .u_sp_t {
    display: table-row !important;
  }
}

/* インナーボックス */
.innerbox_1180 {
  max-width: calc(1180px + 2rem);
  margin: 0 auto;
  padding: 0 1rem;
}

/* その他頻出パーツ */
.flexbox {
  display: flex;
}

.flex_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

a,
button,
.btn {
  cursor: pointer;
  transition: all 0.3s ease;
}
a:hover,
button:hover,
.btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  a:hover,
  button:hover,
  .btn:hover {
    opacity: 1;
  }
}

ol {
  list-style: decimal;
  padding-left: 1em;
}
ol > li > ul {
  list-style: lower-alpha;
  padding-left: 1em;
}
ol > li > ul > li > ul {
  list-style: lower-roman;
  padding-left: 1em;
}

ul.dot_list > li {
  display: block;
  position: relative;
  padding-left: 1em;
}
ul.dot_list > li::before {
  content: "・";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

/**
* myjs_accordion
**/
.accordion_area .acc_item {
  transition: all 0.5s ease;
}
.accordion_area .acc_item:nth-child(n + 2) {
  margin-top: 1rem;
}
.accordion_area .acc_item .icon {
  width: 2.6875rem;
  font-size: 1.8125rem;
  line-height: 1;
  flex-shrink: 0;
  border-radius: 0.25rem 0 0 0.25rem;
}
.accordion_area .acc_item .accordion_title {
  position: relative;
  display: flex;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: all 0.5s ease;
  cursor: pointer;
}
.accordion_area .acc_item .accordion_title .icon {
  color: #fff;
  background-color: #199723;
  min-height: 2.6875rem;
}
.accordion_area .acc_item .accordion_title .title {
  width: 100%;
  font-weight: 700;
  padding: 0.5rem 2.75rem 0.5rem 0.75rem;
}
.accordion_area .acc_item .accordion_title::before,
.accordion_area .acc_item .accordion_title::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  width: 0.875rem;
  height: 2px;
  background-color: #199723;
  opacity: 1;
  transition: all 0.5s ease;
  border-radius: 2px;
}
.accordion_area .acc_item .accordion_title::before {
  transform: translateY(-50%) rotate(0deg);
}
.accordion_area .acc_item .accordion_title::after {
  transform: translateY(-50%) rotate(90deg);
}
.accordion_area .acc_item .accordion_title.open::after {
  transform: translateY(-50%) rotate(360deg);
  opacity: 0;
}
.accordion_area .acc_item .accordion_box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.accordion_area .acc_item .accordion_box .accordion_box_inner {
  display: flex;
  background-color: #fff;
  border-radius: 0.25rem;
  margin-top: 0.75rem;
}
.accordion_area .acc_item .accordion_box .icon {
  color: #575757;
  background-color: #eceeeb;
}
.accordion_area .acc_item .accordion_box .text {
  font-size: 0.875rem;
  line-height: 1.8;
  padding: 0.5rem 0.75rem;
}

/**
* parts 
**/
/* body */
body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  display: block;
  background-image: url(../../img/golf/lp-01/pc_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.all_container {
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
@media screen and (max-width: 1320px) {
  .all_container {
    margin-right: 25rem;
  }
}
@media screen and (max-width: 919px) {
  .all_container {
    margin-right: auto;
  }
}

/* フッター */
footer#footer {
  color: #fff;
  background-color: #383a37;
  padding: 2.5rem 1.5rem 6.9375rem;
}
footer#footer .footer_company .footer_company_title {
  font-size: 0.875rem;
  font-weight: 700;
}
footer#footer .footer_company .footer_company_item {
  margin-top: 1.25rem;
}
footer#footer .footer_company .footer_company_item > span {
  display: block;
  font-size: 0.75rem;
}
footer#footer .footer_company .footer_company_item .footer_company_item__label {
  font-weight: 700;
}
footer#footer
  .footer_company
  .footer_company_item
  .footer_company_item__content {
  font-weight: 400;
  margin-top: 0.25rem;
}
footer#footer .footer_info {
  margin-top: 3rem;
}
footer#footer .footer_info .footer_info__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
footer#footer .footer_info .footer_info__links .link {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: #fff;
}
footer#footer .footer_info .footer_info__copyright {
  font-size: 0.625rem;
  text-align: center;
  color: #8f8f8f;
  margin-top: 1rem;
}

/* CTA */
section.cta {
  background-color: #eef1f3;
  padding: 2.8125rem 1rem 2.25rem;
}
section.cta .text_red {
  color: #e40000;
}
section.cta .cta_title {
  gap: 0.625rem;
}
section.cta .cta_title .cta_title_inner {
  gap: 0.125rem;
  font-size: 1.125rem;
  font-weight: 900;
}
section.cta .cta_title .text_red {
  font-size: 1.75rem;
  font-weight: 700;
}
section.cta .cta_title::before,
section.cta .cta_title::after {
  content: "";
  display: block;
  width: 0.9375rem;
  height: 1.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section.cta .cta_title::before {
  background-image: url(../../img/golf/lp-01/icon_accent_left.webp);
}
section.cta .cta_title::after {
  background-image: url(../../img/golf/lp-01/icon_accent_right.webp);
}
section.cta .cta_form_wrapper {
  background-color: #fff;
  padding: 1.5rem 1rem;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
}
section.cta .cta_form__title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}
section.cta .cta_form__title .text_green {
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section.cta
  form.cta_form
  input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
section.cta form.cta_form textarea {
  width: 100%;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f1f1f1;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
section.cta
  form.cta_form
  input:not([type="radio"]):not([type="checkbox"]):not(
    [type="submit"]
  ).input_error,
section.cta form.cta_form textarea.input_error {
  border: 2px solid #e40000;
  background-color: rgba(228, 0, 0, 0.1);
}
section.cta form.cta_form input[type="radio"],
section.cta form.cta_form input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: #328031;
}
section.cta form.cta_form .form_label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  font-size: 0.9375rem;
  margin-top: 1rem;
}
section.cta form.cta_form .form_label .required {
  display: inline-block;
  font-size: 0.8125rem;
  line-height: 1;
  color: #fff;
  background-color: #000000;
  padding: 0.21875rem;
  border-radius: 0.125rem;
}
section.cta form.cta_form .form_input {
  width: 100%;
  margin-top: 0.25rem;
}
section.cta form.cta_form .form_acceptance {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 1.75rem;
}
section.cta form.cta_form .form_acceptance span {
  font-size: 0.8125rem;
}
section.cta form.cta_form .form_acceptance .underline {
  color: #199723;
}
section.cta form.cta_form .form_submit {
  width: 100%;
  margin-top: 1.75rem;
}
section.cta form.cta_form .form_submit input[type="submit"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

#fixed_cta__bottom {
  position: fixed;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 0.375rem 1rem 0.625rem;
  box-shadow: 0 -0.125rem 0.375rem rgba(0, 0, 0, 0.1);
}
#fixed_cta__bottom .text_red {
  color: #e40000;
}
#fixed_cta__bottom .cta_title {
  gap: 0.625rem;
}
#fixed_cta__bottom .cta_title .cta_title_inner {
  gap: 0.125rem;
  font-size: 0.875rem;
  font-weight: 900;
}
@media screen and (max-width: 919px) {
  #fixed_cta__bottom .cta_title .cta_title_inner {
    font-size: 0.8125rem;
  }
}
#fixed_cta__bottom .cta_title .text_red {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 919px) {
  #fixed_cta__bottom .cta_title .text_red {
    font-size: 1.375rem;
  }
}
#fixed_cta__bottom .cta_title::before,
#fixed_cta__bottom .cta_title::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 1.1875rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
#fixed_cta__bottom .cta_title::before {
  background-image: url(../../img/golf/lp-01/icon_accent_left.webp);
}
#fixed_cta__bottom .cta_title::after {
  background-image: url(../../img/golf/lp-01/icon_accent_right.webp);
}
#fixed_cta__bottom .fixed_cta__bottom_btn {
  width: 19.4375rem;
  height: 3.25rem;
  font-size: 1rem;
  font-weight: 900;
  gap: 0.125rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 919px) {
  #fixed_cta__bottom .fixed_cta__bottom_btn {
    width: 15.75rem;
    height: 2.625rem;
    font-size: 0.8125rem;
  }
}
#fixed_cta__bottom .fixed_cta__bottom_btn .text_green {
  font-size: 1.625rem;
  font-weight: 900;
  color: #e1fe00;
}
@media screen and (max-width: 919px) {
  #fixed_cta__bottom .fixed_cta__bottom_btn .text_green {
    font-size: 1.3125rem;
  }
}
#fixed_cta__bottom::before,
#fixed_cta__bottom::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  display: block;
  width: 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
#fixed_cta__bottom::before {
  left: 0;
  background-image: url(../../img/golf/lp-01/fixed_cta_deco__left.webp);
  background-position: left;
}
#fixed_cta__bottom::after {
  right: 0;
  background-image: url(../../img/golf/lp-01/fixed_cta_deco__right.webp);
  background-position: right;
}

#fixed_cta__pc {
  position: fixed;
  bottom: 7.375rem;
  right: 1.125rem;
  display: block;
  width: 22.375rem;
}
@media screen and (max-width: 919px) {
  #fixed_cta__pc {
    display: none;
  }
}
#fixed_cta__pc .cta {
  background: none;
  padding: 0;
  max-height: calc(100vh - 6.125rem - 1.25rem);
  overflow-y: auto;
}
#fixed_cta__pc .cta .cta_form_wrapper {
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.15);
}

/* その他パーツ */
.section_title {
  font-size: 4.25rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}
.btn:hover {
  opacity: 1;
}
.btn.maincolor_btn {
  width: 100%;
  height: 3.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
  box-shadow: 0 0.25rem 0 #006a1a;
  border-radius: 2.5rem;
  cursor: pointer;
}
.btn.maincolor_btn:hover {
  box-shadow: 0.125rem 0.375rem 0 #006a1a;
}

.underline {
  text-decoration: underline;
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  -webkit-text-decoration-color: #fff200;
  text-decoration-color: #fff200;
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

/**
* メインコンテンツ 
**/
section#fv {
  position: relative;
  z-index: 400;
  padding-top: 0.75rem;
  overflow: hidden;
}
section#fv::before {
  content: "";
  position: absolute;
  z-index: -2;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%) rotate(-6.3deg);
  display: block;
  width: 200%;
  height: 60%;
  background: linear-gradient(
    12.68deg,
    #0f9242 60.17%,
    rgba(120, 201, 33, 0.8) 99.05%
  );
  opacity: 0.77;
}
@media screen and (max-width: 430px) {
  section#fv::before {
    height: 55.5%;
  }
}
section#fv::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1.25rem;
  background-color: #eef1f3;
}
section#fv .accent_dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  background-image: radial-gradient(
    0.1em 0.1em at center center,
    #fff,
    #fff 100%,
    transparent,
    transparent
  );
  padding-top: 0.2em;
}
section#fv .fv_logo {
  width: 12.5rem;
  height: 2.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  margin-bottom: 17.9375rem;
}
section#fv .fv_bg {
  position: absolute;
  z-index: -3;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% - 4.375rem);
  -o-object-fit: cover;
  object-fit: cover;
}
section#fv .fv_title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.625rem;
}
section#fv .fv_title .font_rem30 {
  font-size: 1.875rem;
}
section#fv .fv_title .font_rem26 {
  font-size: 1.625rem;
}
section#fv .fv_title .font_rem24 {
  font-size: 1.5rem;
}
section#fv .fv_title .text_green {
  color: #e1fe00 !important;
}
section#fv .fv_title .bg_black {
  position: relative;
  z-index: 400;
}
section#fv .fv_title .bg_black::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 110vw;
  display: block;
  background-color: #353535;
}
section#fv .fv_title .fv_title__upper,
section#fv .fv_title .fv_title__middle,
section#fv .fv_title .fv_title__lower {
  display: block;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  text-shadow: 0 0 0.8125rem rgba(0, 0, 0, 0.45);
}
section#fv .fv_title .fv_title__upper {
  padding: 0.125rem 1.125rem;
}
section#fv .fv_title .fv_title__middle {
  font-size: 2rem;
  padding: 0.25rem 0.9375rem 0.125rem;
}
section#fv .fv_title .fv_title__lower {
  font-size: 2.3125rem;
  padding: 0.125rem 0.4375rem;
}
section#fv .fv_points {
  display: flex;
  gap: 0.5rem;
  padding: 0 0.75rem;
  margin-top: 1.5rem;
}
section#fv .fv_points .fv_point_img {
  flex: 1;
  width: auto;
}

section#probrem .probrem_worries {
  background-image: url(../../img/golf/lp-01/probrem_worries__bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0.5rem;
  padding-bottom: 3.3125rem;
}
section#probrem .probrem_worries .worries_title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.9375rem;
  margin-top: -2.5rem;
}
section#probrem .probrem_worries .worries_title .worries_title__upper,
section#probrem .probrem_worries .worries_title .worries_title__middle,
section#probrem .probrem_worries .worries_title .worries_title__lower {
  display: block;
  font-weight: 900;
  color: #fff;
  text-align: center;
}
section#probrem .probrem_worries .worries_title .worries_title__upper {
  font-size: 1.5rem;
}
section#probrem .probrem_worries .worries_title .worries_title__middle {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.5rem;
  background-color: #000000;
  padding: 0 1.5rem 0 1.25rem;
}
section#probrem
  .probrem_worries
  .worries_title
  .worries_title__middle
  .text_green {
  font-size: 2.1875rem;
  color: #c9ecd0;
  padding-bottom: 0.125rem;
}
section#probrem .probrem_worries .worries_title .worries_title__lower {
  font-size: 1.75rem;
}
section#probrem .probrem_worries .worries_items_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 1.71875rem;
  padding-right: 3.75rem;
  margin-top: 1.4375rem;
}
section#probrem .probrem_worries .worries_items_wrapper .worries_item {
  position: relative;
  z-index: 400;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #fff;
  padding: 0.4375rem 1.5rem;
}
section#probrem .probrem_worries .worries_items_wrapper .worries_item::before {
  content: "";
  position: absolute;
  z-index: 100;
  left: -0.5rem;
  top: -0.5rem;
  width: 2rem;
  height: 2.0625rem;
  background-image: url(../../img/golf/lp-01/icon_check__probrem_worries.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#probrem
  .probrem_worries
  .worries_items_wrapper
  .worries_item:nth-child(2n) {
  margin-left: auto;
}
section#probrem .probrem_solution_01 {
  position: relative;
  z-index: 400;
  padding-bottom: 1.65625rem;
}
section#probrem .probrem_solution_01::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 1rem;
  bottom: 0;
  background-image: url(../../img/golf/lp-01/probrem_solution_01__bg.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 919px) {
  section#probrem .probrem_solution_01::before {
    bottom: 2rem;
  }
}
section#probrem .probrem_solution_01 .solution_01_title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  background-image: url(../../img/golf/lp-01/probrem_solution_01__title.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1.75rem 0.5rem 2.53125rem;
}
section#probrem .probrem_solution_01 .solution_01_title .small {
  font-size: 1.125rem;
}
section#probrem .probrem_solution_01 .solution_01_items_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 919px) {
  section#probrem .probrem_solution_01 .solution_01_items_wrapper {
    gap: 0.5rem;
    margin-top: 2.78125rem;
  }
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item {
  position: relative;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  font-size: 2.0625rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #d1ff01;
  padding: 0.3125rem 1.465rem 0.3125rem 1.5rem;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item::before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.3125rem;
  background-image: url(../../img/golf/lp-01/icon_check__probrem_solution_01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #0c0c0c;
  -webkit-clip-path: polygon(
    1.25rem 0%,
    100% 0%,
    calc(100% - 1.25rem) 100%,
    0% 100%
  );
  clip-path: polygon(1.25rem 0%, 100% 0%, calc(100% - 1.25rem) 100%, 0% 100%);
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item:nth-child(3n + 1) {
  margin-right: auto;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item:nth-child(3n + 1)::after {
  left: -1.25rem;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item:nth-child(3n + 2) {
  margin-right: auto;
  margin-left: auto;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item:nth-child(3n + 3) {
  margin-left: auto;
}
section#probrem
  .probrem_solution_01
  .solution_01_items_wrapper
  .solution_01_item:nth-child(3n + 3)::after {
  right: -1.25rem;
}
section#probrem .probrem_solution_01 .solution_01_bottomtext {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (max-width: 919px) {
  section#probrem .probrem_solution_01 .solution_01_bottomtext {
    margin-top: 0.9375rem;
  }
}
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__upper,
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__middle,
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__lower {
  text-align: center;
}
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__upper {
  font-size: 2.15625rem;
  font-weight: 900;
  color: #0c0c0c;
  text-shadow: 0 0.25rem 0 white;
}
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__upper
  .small {
  font-size: 1.71875rem;
}
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__middle {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 919px) {
  section#probrem
    .probrem_solution_01
    .solution_01_bottomtext
    .solution_01_bottomtext__middle {
    margin-top: 0.125rem;
  }
}
section#probrem
  .probrem_solution_01
  .solution_01_bottomtext
  .solution_01_bottomtext__lower {
  width: 5.25rem;
  height: 2.625rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 2.5rem;
}
@media screen and (max-width: 919px) {
  section#probrem
    .probrem_solution_01
    .solution_01_bottomtext
    .solution_01_bottomtext__lower {
    margin-top: 1.96875rem;
  }
}
section#probrem .probrem_solution_02 {
  background-color: #eef1f3;
  background-image: url(../../img/golf/lp-01/probrem_solution_02__bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 7.5rem 1.5rem 1.5rem;
}
section#probrem .probrem_solution_02 .solution_02_title {
  font-size: 1.75rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
}
section#probrem .probrem_solution_02 .solution_02_title .small {
  font-size: 1.4375rem;
}
section#probrem .probrem_solution_02 .solution_02_contentbox {
  position: relative;
  z-index: 400;
  background-color: #fff;
  padding: 1rem 1rem 2.375rem;
  margin-top: 2.375rem;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__logos {
  display: flex;
  gap: 0.75rem;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__logos
  .logo_item {
  flex: 1;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__logos
  .logo_item
  > span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.25rem;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__text_upper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 700;
  text-align: center;
  margin-top: 1.25rem;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__text_upper
  .big {
  position: relative;
  z-index: 400;
  display: block;
  font-size: 2.15625rem;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  background-color: #e8e8e8;
  padding: 0.25rem;
  text-shadow: 0 0 0.5rem #fff9dc, 1px 1px 1px #fff, -1px -1px 1px #fff,
    -1px 1px 1px #fff, 1px -1px 1px #fff;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__text_upper
  .big::after {
  content: "";
  position: absolute;
  z-index: 100;
  top: -1rem;
  right: -0.875rem;
  display: block;
  width: 1.875rem;
  height: 1.6875rem;
  background-image: url(../../img/golf/lp-01/icon_crown_gold.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__text_lower {
  position: relative;
  z-index: 400;
  font-size: 1.4375rem;
  font-weight: 700;
  text-align: center;
  background-image: url(../../img/golf/lp-01/probrem_solution_02__underline.webp);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 0.25rem;
  margin-top: 0.25rem;
}
section#probrem
  .probrem_solution_02
  .solution_02_contentbox
  .solution_02_contentbox__text_lower
  .big {
  font-size: 2rem;
  margin-left: 0.1875rem;
}
section#probrem .probrem_solution_02 .solution_02_contentbox::before,
section#probrem .probrem_solution_02 .solution_02_contentbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section#probrem .probrem_solution_02 .solution_02_contentbox::before {
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
}
section#probrem .probrem_solution_02 .solution_02_contentbox::after {
  z-index: -2;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(
    315deg,
    #803a17 13.59%,
    #8f5904 18.65%,
    #965f0c 25.74%,
    #d3a81f 42.95%,
    #fff0a3 52.06%,
    #deb759 67.25%,
    #975a19 78.39%,
    #743508 90.54%,
    #9a6502 101.68%,
    #a57000 108.77%,
    #ae7909 114.84%
  );
}

section#feature {
  background-color: #328031;
  padding-bottom: 3rem;
}
section#feature::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: min(50vw, 16.25rem) solid transparent;
  border-left: min(50vw, 16.25rem) solid transparent;
  border-top: 2.0625rem solid #eef1f3;
  border-bottom: 0;
  margin-bottom: 1.375rem;
}
section#feature .feature_items_wrapper {
  padding: 0 1.5rem;
  margin-top: -0.625rem;
}
section#feature .feature_item:nth-child(n + 2) {
  margin-top: 3.625rem;
}
section#feature .feature_item .feature_item__number {
  display: flex;
  align-items: center;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}
section#feature .feature_item .feature_item__number span.number {
  font-size: 2.25rem;
  font-weight: 600;
  margin-left: 0.375rem;
}
section#feature .feature_item .feature_item__number::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-left: 0.875rem;
}
section#feature .feature_item .feature_item__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  margin-top: 1rem;
}
section#feature .feature_item .feature_item__title .bg_white {
  display: block;
  font-size: 1.75rem;
  line-height: 1.7;
  font-weight: 900;
  white-space: nowrap;
  background-color: #fff;
  padding: 0 0.375rem;
}
section#feature .feature_item .feature_item__title .text_green {
  color: #22a713;
}
section#feature .feature_item .feature_item__image {
  height: auto;
  aspect-ratio: 342/217;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 1rem;
}
section#feature .feature_item .feature_item__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #fff;
  margin-top: 1rem;
}

section#recomend {
  background-color: #383a37;
}
section#recomend .recomend_inner {
  padding: 1.9375rem 1.5rem 4.75rem;
}
section#recomend .recomend_title {
  font-size: 1.5rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin-top: -2.375rem;
}
section#recomend .recomend_title .text_green {
  font-size: 1.875rem;
  color: #e1fe00;
}
section#recomend .recomend_items_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 0.9375rem;
  margin-top: 2.125rem;
}
section#recomend .recomend_item {
  flex-direction: column;
  gap: 0.75rem;
  width: 9.625rem;
  height: 9.5625rem;
  background-color: #fff;
  box-shadow: 0.3125rem 0.3125rem 0 #e1fe00;
}
section#recomend .recomend_item .recomend_item__icon {
  width: 6rem;
  height: 5.1875rem;
  -o-object-fit: contain;
  object-fit: contain;
}
section#recomend .recomend_item .recomend_item__label {
  height: 2.6em;
  font-size: 0.9375rem;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
}

section#support {
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
}
section#support .support_title_wrapper {
  position: relative;
  z-index: 400;
  max-width: 24.375rem;
  padding-top: 0.625rem;
  padding-left: 9.375rem;
  margin-left: auto;
  margin-right: auto;
}
section#support .support_title_wrapper .support_title__image {
  position: absolute;
  z-index: -1;
  left: -1.625rem;
  top: -2rem;
  width: 11.8125rem;
}
section#support .support_title_wrapper .support_title__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section#support .support_title_wrapper .support_title__text .textblock {
  display: block;
  font-size: 1.625rem;
  line-height: 1.6;
  font-weight: 700;
  color: #f5f5f5;
  border-bottom: 1px solid #fff;
}
section#support .support_title_wrapper .support_title__text .textblock .small {
  font-size: 1.34375rem;
}
section#support .support_inner {
  position: relative;
  z-index: 500;
  padding: 1.625rem 1.5rem 1.5rem;
}
section#support .support_whitearea {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f6f8fc;
  padding: 1rem;
}
section#support .support_whitearea .support_whitearea__text {
  font-size: 0.9375rem;
  line-height: 1.8;
}
section#support .support_whitearea .support_whitearea__subtitle {
  position: relative;
  z-index: 400;
  font-size: 1.0625rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 0.25rem 0.75rem 0.25rem 1rem;
  margin-top: 1.5rem;
}
section#support .support_whitearea .support_whitearea__subtitle::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  background-color: #1d1d1d;
  -webkit-clip-path: polygon(
    0.5rem 0%,
    100% 0%,
    calc(100% - 0.5rem) 100%,
    0% 100%
  );
  clip-path: polygon(0.5rem 0%, 100% 0%, calc(100% - 0.5rem) 100%, 0% 100%);
}
section#support .support_whitearea .support_whitearea__subtitle .text_green {
  color: #e1fe00;
}
section#support .support_whitearea .support_whitearea__list {
  margin-top: 0.9375rem;
}
section#support .support_whitearea .support_whitearea__list li {
  position: relative;
  z-index: 400;
  font-size: 0.9375rem;
  font-weight: 700;
  padding-left: 1.5625rem;
}
section#support
  .support_whitearea
  .support_whitearea__list
  li:nth-child(n + 2) {
  margin-top: 0.75rem;
}
section#support .support_whitearea .support_whitearea__list li .text_green {
  color: #2c9729;
}
section#support .support_whitearea .support_whitearea__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1.3125rem;
  height: 1.5rem;
  background-image: url(../../img/golf/lp-01/icon_check__support.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

section#price {
  background-color: #383a37;
  padding: 0.125rem 1.5rem 2.3125rem;
}
section#price .price_title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-top: -2.375rem;
}
section#price .price_main_image {
  margin-top: 0.9375rem;
}
section#price .price_subtitle {
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  color: #f8f8f8;
  margin-top: 1.5rem;
}
section#price .price_subtitle::before,
section#price .price_subtitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
section#price .price_list {
  position: relative;
  z-index: 400;
  background: #fff;
  padding: 1.25rem;
  margin-top: 0.875rem;
}
section#price .price_list li {
  position: relative;
  padding-left: 1.6875rem;
}
section#price .price_list li:nth-child(n + 2) {
  margin-top: 0.625rem;
}
section#price .price_list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  display: block;
  width: 1.1875rem;
  height: 1.1875rem;
  background-image: url(../../img/golf/lp-01/icon_check__price.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#price .price_list::before,
section#price .price_list::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section#price .price_list::before {
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #fff;
}
section#price .price_list::after {
  z-index: -2;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(
    315deg,
    #803a17 13.59%,
    #8f5904 18.65%,
    #965f0c 25.74%,
    #d3a81f 42.95%,
    #fff0a3 52.06%,
    #deb759 67.25%,
    #975a19 78.39%,
    #743508 90.54%,
    #9a6502 101.68%,
    #a57000 108.77%,
    #ae7909 114.84%
  );
}

section#comparison {
  background-color: #f6f8fc;
}
section#comparison .comparison_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url(../../img/golf/lp-01/comparison_title_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 1rem 1rem 2.0625rem;
}
section#comparison .comparison_title .comparison_title__upper,
section#comparison .comparison_title .comparison_title__lower {
  text-align: center;
  color: #fff;
}
section#comparison .comparison_title .comparison_title__upper {
  font-size: 1.25rem;
}
section#comparison .comparison_title .comparison_title__lower {
  font-size: 1.75rem;
}
section#comparison .comparison_inner {
  padding: 1.1875rem 1.5rem 2.5rem;
}
section#comparison table.comparison_table th,
section#comparison table.comparison_table td {
  text-align: center;
}
section#comparison table.comparison_table .row_label {
  width: 1.875rem;
  font-size: 0.875rem;
  line-height: 1.1;
  font-weight: 700;
  writing-mode: vertical-rl;
  padding: 0.375rem 0.5rem;
}
section#comparison table.comparison_table .lessonnote {
  font-size: 0.8125rem;
  font-weight: 700;
  border-right: 3px solid #78c921;
  border-left: 3px solid #0f9242;
}
section#comparison table.comparison_table .lessonnote .icon {
  width: 1.625rem;
  height: 1.625rem;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.25rem;
}
section#comparison table.comparison_table .others {
  font-size: 0.8125rem;
  font-weight: 400;
  width: 8.25rem;
}
section#comparison table.comparison_table thead {
  vertical-align: bottom;
}
section#comparison table.comparison_table thead .th_inner {
  display: block;
  color: #fff;
  padding: 0.5rem;
}
section#comparison table.comparison_table thead .lessonnote {
  font-size: 1.125rem;
  line-height: 1.3;
  font-weight: 900;
}
section#comparison table.comparison_table thead .lessonnote .th_inner {
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
}
section#comparison table.comparison_table thead .others {
  font-size: 0.8125rem;
  font-weight: 700;
}
section#comparison table.comparison_table thead .others .th_inner {
  background: #999999;
}
section#comparison table.comparison_table tbody td {
  background-color: #fff;
  border: 2px solid #d8dade;
}
section#comparison table.comparison_table tbody .row_label {
  color: #fff;
  background: #383a37;
  border-top: 1px solid #f6f8fc;
  border-bottom: 1px solid #f6f8fc;
}
section#comparison table.comparison_table tbody .lessonnote {
  padding: 0.375rem;
}
section#comparison table.comparison_table tbody .others {
  padding: 0.375rem;
}
section#comparison table.comparison_table tbody tr.com_tr__pace .lessonnote {
  padding: 0;
}
section#comparison
  table.comparison_table
  tbody
  tr:nth-last-child(1)
  .lessonnote {
  position: relative;
  z-index: 400;
}
section#comparison
  table.comparison_table
  tbody
  tr:nth-last-child(1)
  .lessonnote::after {
  content: "";
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
}

section#voice .voice_overview {
  background-color: #383a37;
  background-image: url(../../img/golf/lp-01/voice_overview_bg.webp);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 2rem 1rem 2.4375rem;
}
section#voice .voice_overview .overview_title {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#voice .voice_overview .overview_title > span {
  display: block;
  font-size: 1.5rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-top: 0.4em;
}
section#voice .voice_overview .overview_whitearea {
  position: relative;
  z-index: 400;
  background-color: #fff;
  margin-top: 2.875rem;
}
section#voice .voice_overview .overview_subtitle {
  position: absolute;
  z-index: 100;
  top: -1.0625rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.96875rem;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  padding: 0.375rem 1.25rem 1.375rem;
  background-image: url(../../img/golf/lp-01/voice_overview_title_bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
section#voice .voice_overview .overview_numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 0.8125rem 0.875rem;
}
section#voice .voice_overview .overview_numbers .overview_numbers__text {
  font-family: "Noto Serif JP", serif;
}
section#voice
  .voice_overview
  .overview_numbers
  .overview_numbers__text
  .overview_numbers__text__upper {
  display: flex;
  align-items: flex-end;
  gap: 0.25rem;
  font-size: 1.1875rem;
  line-height: 1.3;
  font-weight: 900;
}
section#voice
  .voice_overview
  .overview_numbers
  .overview_numbers__text
  .overview_numbers__text__upper
  img {
  width: 8.875rem;
}
section#voice
  .voice_overview
  .overview_numbers
  .overview_numbers__text
  .overview_numbers__text__lower {
  font-size: 1.625rem;
  line-height: 1.9;
  font-weight: 700;
  margin-top: 0.25rem;
}
section#voice
  .voice_overview
  .overview_numbers
  .overview_numbers__text
  .overview_numbers__text__lower
  .small {
  font-size: 1.25rem;
}
section#voice .voice_overview .overview_numbers .overview_numbers__image {
  flex: 1;
  max-width: 9rem;
}
section#voice .voice_overview .overview_list {
  background-color: #f2f6f9;
  padding: 1.53125rem 1.125rem;
}
section#voice .voice_overview .overview_list li {
  position: relative;
  z-index: 400;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  padding-left: 2rem;
}
section#voice .voice_overview .overview_list li:nth-child(n + 2) {
  margin-top: 1.25rem;
}
section#voice .voice_overview .overview_list li::before {
  content: "";
  position: absolute;
  z-index: 100;
  left: 0.375rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.0625rem;
  height: 0.875rem;
  background-image: url(../../img/golf/lp-01/icon_check__voice_overview.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#voice .voice_details {
  background-color: #9acb2a;
  padding-bottom: 3rem;
}
section#voice .voice_details .voice_details_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -2.5rem;
}
section#voice .voice_details .voice_details_title .voice_details_title__upper,
section#voice .voice_details .voice_details_title .voice_details_title__lower {
  display: block;
  line-height: 1.4;
  font-weight: 900;
  color: #fff;
}
section#voice .voice_details .voice_details_title .voice_details_title__upper {
  font-size: 1.5rem;
}
section#voice .voice_details .voice_details_title .voice_details_title__lower {
  font-size: 1.9375rem;
}
section#voice .voice_details .voice_details_title::after {
  content: "";
  display: block;
  width: 13.3125rem;
  height: 2px;
  background-color: #fff;
  margin-top: 0.4375rem;
}
section#voice .voice_details .voice_details_items_wrapper {
  padding: 0 1.5rem;
  margin-top: 0.9375rem;
}
section#voice .voice_details .voice_details_item:nth-child(n + 2) {
  margin-top: 2.4375rem;
}
section#voice .voice_details .voice_details_item .voice_details_item__number {
  font-size: 3.375rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-align: right;
  color: rgba(255, 255, 255, 0.2);
}
section#voice
  .voice_details
  .voice_details_item
  .voice_details_item__whitearea {
  position: relative;
  z-index: 400;
  background-color: #fff;
  box-shadow: 0.375rem 0.375rem 0 #7cad0c;
  margin-top: -1rem;
}
section#voice .voice_details .voice_details_item .voice_details_item__image {
  position: absolute;
  z-index: 100;
  left: 0;
  top: -3.75rem;
  width: 8.3125rem;
  height: 8.3125rem;
  border: 2px solid #2c9729;
  border-radius: 50%;
}
section#voice .voice_details .voice_details_item .voice_details_item__personal {
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 700;
  padding: 0.75rem 0.75rem 1.0625rem 9.125rem;
}
section#voice .voice_details .voice_details_item .voice_details_item__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 1.75rem;
  line-height: 1.7;
  font-weight: 700;
  color: #fff;
}
section#voice
  .voice_details
  .voice_details_item
  .voice_details_item__title
  .bg_black {
  background-color: #000000;
  padding: 0 0.375rem;
}
section#voice
  .voice_details
  .voice_details_item
  .voice_details_item__title
  .text_green {
  color: #d1ff01;
}
section#voice .voice_details .voice_details_item .voice_details_item__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  font-weight: 500;
  padding: 1rem 1rem 1.5rem;
}

section#flow {
  background-color: #f6f8fc;
  padding: 1.125rem 2rem 2.5rem;
}
section#flow .section_title {
  color: rgba(186, 188, 192, 0.2);
}
section#flow .flow_title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
  margin-top: -2.6875rem;
}
section#flow .flow_title .text_green {
  color: #159b29;
}
section#flow .flow_items_wrapper {
  margin-top: 2rem;
}
section#flow .flow_item:nth-child(n + 2)::before {
  content: "";
  display: block;
  width: 100%;
  height: 2.625rem;
  background-image: url(../../img/golf/lp-01/icon_arrow_double_gray__flow.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
section#flow .flow_item .flow_item__title {
  display: flex;
}
section#flow .flow_item .flow_item__title > span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  min-height: 3.0625rem;
  border-bottom: 2px solid;
}
section#flow .flow_item .flow_item__title .number {
  justify-content: center;
  width: 4.6875rem;
  font-size: 1.25rem;
  font-family: "Oswald", sans-serif;
  text-align: center;
  color: #159b29;
  border-color: #159b29;
  flex-shrink: 0;
}
section#flow .flow_item .flow_item__title .title {
  width: 100%;
  font-size: 1.375rem;
  font-weight: 700;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-color: #d6d8dc;
}
section#flow .flow_item .flow_item__image {
  height: auto;
  aspect-ratio: 328/186;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 1rem;
}
section#flow .flow_item .flow_item__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 1rem;
}

section#faq {
  background-color: #383a37;
  padding: 1.625rem 1.5rem 2.5rem;
}
section#faq .flow_title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 900;
  text-align: center;
  color: #fff;
  margin-top: -2.6875rem;
}
section#faq .faq_list {
  margin-top: 1.875rem;
}

/** 
* 固定ページ"LP"用追記 
**/
section#plan_contents {
  background-color: #f5f5f5;
  padding-top: 0.4375rem;
  padding-bottom: 3.4375rem;
}
section#plan_contents .section_title {
  color: rgba(229, 229, 229, 0.7);
}
section#plan_contents .plan_contents_title {
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
  margin-top: -3.375rem;
}
section#plan_contents .plan_contents_title .text_green {
  font-size: 2rem;
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section#plan_contents .plan_contents_list {
  margin-top: 0.8125rem;
}
section#plan_contents .plan_contents_list > .list_item {
  position: relative;
  z-index: 400;
  padding: 0 2rem 0.75rem;
}
section#plan_contents .plan_contents_list > .list_item:nth-child(n + 2) {
  margin-top: 1.3125rem;
}
section#plan_contents .plan_contents_list > .list_item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% + 0.125rem);
  height: 26.25rem;
  background-image: url(../../img/golf/lp-01/plan_contents_bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 480px) {
  section#plan_contents .plan_contents_list > .list_item::before {
    height: 22.5rem;
  }
}
section#plan_contents .plan_contents_list > .list_item .list_item__number {
  font-size: 2.803125rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  background: linear-gradient(88.83deg, #0f9242 0.25%, #78c921 97.24%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
section#plan_contents .plan_contents_list > .list_item .list_item__title {
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
  color: #282828;
}
section#plan_contents .plan_contents_list > .list_item .list_item__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-top: 0.5rem;
}
section#plan_contents .plan_contents_list > .list_item .list_item__image {
  padding: 0 0.25rem;
  margin-top: -1rem;
}

section#price_2 {
  background-color: #383a37;
  padding: 1rem 1.375rem 4.5rem;
}
section#price_2 .price_title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-top: -2.375rem;
}
section#price_2 .price_table {
  width: 100%;
  margin-top: 1.875rem;
}
section#price_2 .price_table th,
section#price_2 .price_table td {
  line-height: 1.5;
  border: 1px solid #383a37;
  padding: 0.5rem;
}
section#price_2 .price_table th {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: #6fcb0d;
}
section#price_2 .price_table td {
  background-color: #fff;
}
section#price_2 .price_table td .text_green {
  display: block;
  font-size: 1.375rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
  color: #199723;
  margin-top: 0.375rem;
}
section#price_2 .price_table td .small {
  font-size: 0.8125rem;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}
section#price_2 .price_table td.table_item__plan {
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
}
section#price_2 .price_table td.table_item__contents {
  line-height: 1.9;
}
section#price_2 .price_main_contents {
  color: #fff;
  font-family: "Oswald", sans-serif;
  margin-top: 2.5rem;
}
section#price_2 .price_main_contents .text_gold {
  background: linear-gradient(
    303.74deg,
    #803a17 -95.76%,
    #8f5904 -77.98%,
    #965f0c -53.09%,
    #d3a81f 7.37%,
    #fff0a3 39.38%,
    #deb759 92.73%,
    #975a19 131.85%,
    #743508 174.53%,
    #9a6502 213.65%,
    #a57000 238.54%,
    #ae7909 259.88%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
section#price_2 .price_main_contents .fos_63 {
  font-size: 3.9375rem;
}
section#price_2 .price_main_contents .fos_50 {
  font-size: 3.125rem;
}
section#price_2 .price_main_contents .fos_34 {
  font-size: 2.125rem;
}
section#price_2 .price_main_contents .fos_32 {
  font-size: 2rem;
}
section#price_2 .price_main_contents .fos_24 {
  font-size: 1.5rem;
}
section#price_2 .price_main_contents .fos_20 {
  font-size: 1.25rem;
}
section#price_2 .price_main_contents > .balloon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
}
section#price_2 .price_main_contents > .balloon::before,
section#price_2 .price_main_contents > .balloon::after {
  content: "";
  display: block;
  width: 1px;
  height: 1.59375rem;
  background-color: #fff;
}
section#price_2 .price_main_contents > .balloon::before {
  transform: rotate(-25.56deg);
}
section#price_2 .price_main_contents > .balloon::after {
  transform: rotate(25.56deg);
}
section#price_2 .price_main_contents > .offer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4375rem;
  font-size: 1.5rem;
  font-weight: 700;
}
section#price_2 .price_main_contents > .offer .text_gold {
  display: inline-block;
  line-height: 1.2;
  font-weight: 900;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #e1c04c;
}
section#price_2 .price_main_contents > .offer .text_gold::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e1c04c;
  margin-top: 0.25rem;
}
section#price_2 .price_main_contents > .main_price {
  display: flex;
  margin-top: 1rem;
  overflow: hidden;
}
section#price_2 .price_main_contents > .main_price .main_price__normal {
  position: relative;
  z-index: 400;
  min-width: 8.875rem;
  width: 41%;
  text-align: center;
  background-color: #969696;
  padding: 0.4375rem 0 0.4375rem 0.6875rem;
  flex-shrink: 0;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__normal
  .main_price__normal__label {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 4.375rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: #363636;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__normal
  .main_price__normal__number {
  position: relative;
  z-index: 400;
  font-weight: 900;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__normal
  .main_price__normal__number
  .fos_24 {
  margin-right: 0.25rem;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__normal
  .main_price__normal__number
  .fos_20 {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__normal
  .main_price__normal__number::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(10deg);
  display: block;
  width: 7.9375rem;
  height: 1.5px;
  background-color: #bd2222;
}
section#price_2 .price_main_contents > .main_price .main_price__normal::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -1.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 3.125rem solid transparent;
  border-bottom: 3.125rem solid transparent;
  border-left: 1.375rem solid #969696;
  border-right: 0;
}
section#price_2 .price_main_contents > .main_price .main_price__discount {
  position: relative;
  z-index: 300;
  width: 100%;
  text-align: center;
  padding-top: 0.25rem;
  background: linear-gradient(
    310.59deg,
    #803a17 -39.11%,
    #8f5904 -28.65%,
    #965f0c -7.74%,
    #d3a81f 22.03%,
    #deb759 59.19%,
    #fff0a3 98.53%,
    #deb759 114.06%,
    #743508 129.98%,
    #9a6502 143.02%,
    #a57000 157.67%,
    #ae7909 170.23%
  );
  padding-left: 1.3125rem;
}
section#price_2 .price_main_contents > .main_price .main_price__discount span {
  font-weight: 900;
  text-shadow: 0 0 0.375rem rgba(130, 68, 15, 0.9);
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__discount
  .fos_34 {
  margin-right: 0.25rem;
}
section#price_2
  .price_main_contents
  > .main_price
  .main_price__discount
  .fos_20 {
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
section#price_2 .price_main_contents > .icon_plus {
  position: relative;
  display: block;
  width: 0.125rem;
  height: 1.78125rem;
  background-color: #fff;
  margin: 0.75rem auto 0;
}
section#price_2 .price_main_contents > .icon_plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 1.78125rem;
  height: 0.125rem;
  background-color: #fff;
}
section#price_2 .price_main_contents > .enrollment_fee {
  position: relative;
  z-index: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.875rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  border-bottom: 1px solid #e1c04c;
  margin-inline: auto;
  padding-inline: 0.5rem;
}
section#price_2 .price_main_contents > .enrollment_fee::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0.3125rem;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #e1c04c;
}
section#price_2 .price_main_contents > .enrollment_fee .text_gold {
  display: flex;
  justify-content: center;
  align-items: center;
}
section#price_2 .price_main_contents > .enrollment_fee .fos_63 {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  margin-left: 0.75rem;
  margin-right: 0.25rem;
  padding-bottom: 1rem;
}
