@charset "UTF-8";
/* Vendors - include bootrap
========================================================================== */
/* Helpers - helpers Variable file along with starting point Mixins and Placeholders.
========================================================================== */
/*
 * Variables
 */
:root {
  /* family: */
  --font-family-text: "kozuka-gothic-pr6n", sans-serif;
  --font-family-title: "kozuka-gothic-pr6n", sans-serif;
  --font-family-en: "Noto Sans JP", serif;
  /* Colors: */
  --text-color: #333333;
  --text-dark-color: #cecece;
  --loud-color: #edb100;
  --title-color: #333333;
  --menu-color: #333333;
  --primary-btn-color: #ffffff;
  /* background: */
  --background-primary-btn: #1d1f23;
  --background-loud: #e8e7e3;
  --background-footer: #483923;
  /* size */
  --base-font-size: 1.6rem;
  --h1-font-size: 2rem;
  --h2-font-size: 3.5rem;
  --h3-font-size: 2.5rem;
}

/*
 * Function
 */
/*
* mixins
*/
@media (min-width: 768px) and (max-width: 991px) {
  .class {
    width: 60%;
  }
}

/*
 * Placeholders
 */
/* Base - reset and typography.
========================================================================== */
/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/*
 * reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

button {
  background-color: transparent;
  outline: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-family-text);
}

input {
  padding: 0;
  font-family: var(--font-family-text);
}

/*
 * Typography
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-title);
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.4;
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

/* Components - Re-usable site elements.
========================================================================== */
a {
  color: var(--text-color);
  text-decoration: none;
}
a:visited {
  color: var(--text-color);
  text-decoration: none;
}
a:hover,
a:visited:hover {
  color: var(--loud-color);
  text-decoration: none;
}
a:focus {
  outline: none;
  text-decoration: none;
}

.more {
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
}

/* Layout - Structure and layout files.
========================================================================== */
/* -------------------->>> COMMON <<<-------------------- */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  background: #fff;
  font-family: var(--font-family-text);
  color: var(--text-color);
  font-size: var(--base-font-size);
  line-height: 1.5;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0;
  width: 100%;
}

hr {
  -moz-border-bottom-colors: none;
  -moz-border-left-colors: none;
  -moz-border-right-colors: none;
  -moz-border-top-colors: none;
  border-color: #000 -moz-use-text-color -moz-use-text-color;
  -o-border-image: none;
  border-image: none;
  border-style: solid none none;
  border-width: 0.2em 0 0 0;
  margin: 0;
}

.container {
  width: 100%;
  max-width: 103rem;
  padding: 0 1.5rem;
  margin: 0 auto;
}

p {
  margin-bottom: 1.5rem;
}

input:focus {
  outline: none;
}

a img {
  transition: all 400ms ease-in-out;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
}
a img:hover {
  opacity: 0.7;
}

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

strong {
  font-weight: 700;
}

iframe {
  width: 100%;
  vertical-align: middle;
}

.header {
  background: #ffffff;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
}
.header__main {
  padding: 2rem 3rem;
}
.header__main .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
}
.header__main .logo a {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 13.2rem;
}
.header__main .logo h1 {
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .header__main {
    padding: 2rem;
  }
  .header__main .logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2rem;
  }
  .header__main .logo h1 {
    font-size: 1.6rem;
  }
}

.banner {
  background-image: url("../images/fv-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 8.9rem;
}

.feature-box {
  padding: 12rem 0;
  background: #f2f2f2;
}
.feature-box .container {
  max-width: 92.7rem;
}
.feature-box__main {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.feature-box__main--items {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem 1rem;
}
.feature-box__main--items figure {
  margin-bottom: 1.7rem;
}
.feature-box__main--items h3 {
  line-height: 3.3rem;
  text-align: center;
}

.concerns-box {
  padding: 12rem 0;
}
.concerns-box .container {
  max-width: 83rem;
}
.concerns-box__main--head {
  margin-bottom: 7rem;
  text-align: center;
}
.concerns-box__main--head p {
  margin-bottom: 3rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 3.6rem;
}
.concerns-box__main--head p:last-child {
  margin-bottom: 0;
}
.concerns-box__main--content {
  margin-bottom: 16rem;
}
.concerns-box__main--content h2 {
  text-align: center;
  margin-bottom: 3.5rem;
}
.concerns-box__main--content h2:last-child {
  margin-top: 3rem;
  margin-bottom: 0;
}
.concerns-box__main--content ul {
  background: #fefcd9;
  padding: 3.4rem 2rem 3.4rem 8rem;
}
.concerns-box__main--content ul li {
  font-size: 2.2rem;
  line-height: 4.2rem;
  font-weight: 700;
  padding-left: 1.5rem;
  position: relative;
}
.concerns-box__main--content ul li::before {
  content: "•";
  color: var(--loud-color);
  position: absolute;
  top: 0;
  left: 0;
}
.concerns-box__main--content figure {
  margin: 0 auto;
  width: 50.2rem;
  margin-top: -2rem;
}
.concerns-box__main--rebody {
  padding-right: 14rem;
  position: relative;
}
.concerns-box__main--rebody::after {
  content: "";
  width: 21.26128rem;
  height: 58.55779rem;
  background-image: url("../images/concerns-2.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -5rem;
  right: 0;
}
.concerns-box__main--rebody .des {
  border: 3px solid var(--loud-color);
  padding: 1.5rem 3rem;
  font-size: 2.6rem;
  line-height: 5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
.concerns-box__main--rebody p {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  line-height: 5rem;
}
.concerns-box__main--rebody p span {
  position: relative;
  font-weight: 700;
}
.concerns-box__main--rebody p span::after {
  content: "";
  width: 100%;
  height: 1rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}
.concerns-box__main--rebody p strong {
  font-weight: 700;
}
.concerns-box__main--rebody p:last-child {
  margin-bottom: 0;
}

.reason-box {
  padding: 12rem 0;
  background: #f2f2f2;
}
.reason-box .container {
  max-width: 93rem;
}
.reason-box .head-box {
  text-align: center;
  margin-bottom: 7.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.reason-box .head-box::after {
  content: "";
  width: 34.8rem;
  height: 0.4rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.reason-box .head-box h2 {
  font-weight: 600;
}
.reason-box__main--items {
  margin-bottom: 2rem;
  background: #ffffff;
  padding: 5rem 3rem;
}
.reason-box__main--items .head {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1rem solid var(--loud-color);
  padding-bottom: 0.5rem;
}
.reason-box__main--items .head h3 {
  font-size: 3.3rem;
  line-height: 3.8rem;
}
.reason-box__main--items .head__num {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--loud-color);
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2rem;
  grid-template-columns: repeat(2, auto);
}
.reason-box__main--items .head__num span {
  font-size: 5.8rem;
  font-weight: 700;
}
.reason-box__main--items .group {
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 1fr 27.5rem;
}
.reason-box__main--items .group__txt p {
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 3.6rem;
}
.reason-box__main--items:last-child {
  margin-bottom: 0;
}

.What-box {
  padding: 12rem 0;
}
.What-box__main {
  text-align: center;
}
.What-box__main--head {
  margin-bottom: 5rem;
}
.What-box__main--head h2 {
  margin-bottom: 3rem;
  font-size: 2.6rem;
  line-height: 5rem;
}
.What-box__main--head h2:last-child {
  margin-bottom: 0;
}
.What-box__main p {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 5rem;
}
.What-box__main p span {
  font-weight: 700;
  position: relative;
}
.What-box__main p span::after {
  content: "";
  width: 100%;
  height: 1rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}

.cta-box {
  padding: 12rem 0;
}
.cta-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 15rem;
}
.cta-box__main .instagram {
  margin-top: 12rem;
}

.photos-box {
  padding: 12rem 0;
  background: #f2f2f2;
}
.photos-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 15rem;
}
.photos-box__main {
  padding: 0 5rem;
}
.photos-box__main--beaf {
  background: #ffffff;
  margin-bottom: 12rem;
  padding: 11rem 17.5rem;
}
.photos-box__main--beaf h3 {
  margin-bottom: 8.5rem;
  font-size: 3.5rem;
  text-align: center;
  font-weight: 600;
}
.photos-box__main--beaf h3 span {
  position: relative;
  z-index: 1;
}
.photos-box__main--beaf h3 span::after {
  content: "";
  width: 100%;
  height: 2rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  z-index: -1;
}
.photos-box__main--beaf h3 b {
  font-size: 5rem;
}
.photos-box__main--beaf figure {
  margin-bottom: 7rem;
}
.photos-box__main--beaf .txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  line-height: 3.6rem;
  background-image: url("../images/photos-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.addition-box {
  padding: 12rem 0;
  background: #fefcd9;
  position: relative;
}
.addition-box::after {
  content: "";
  width: 30.74846rem;
  height: 10.49949rem;
  background-image: url("../images/arows-dow.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.addition-box .container {
  max-width: 83rem;
}
.addition-box__main--items {
  margin-bottom: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #ffffff;
}
.addition-box__main--items .txt {
  font-size: 1.8rem;
  line-height: 3.3rem;
  padding: 1.5rem;
}
.addition-box__main--items:last-child {
  margin-bottom: 0;
}
.addition-box__main--items:last-child figure {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}
.addition-box__main--items:last-child .txt {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.trainer-box {
  padding: 12rem 0;
}
.trainer-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 15rem;
}
.trainer-box__main {
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
}
.trainer-box__main--card {
  margin-bottom: 7rem;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 3rem;
  grid-template-columns: 1fr 29.6rem;
}
.trainer-box__main--card .txt__head {
  margin-bottom: 3rem;
}
.trainer-box__main--card .txt__head h3 {
  font-size: 1.8rem;
  line-height: 3.6rem;
}
.trainer-box__main--card .txt__head h4 {
  font-size: 3.5rem;
  line-height: 1;
  display: grid;
  -webkit-box-align: end;
  -webkit-align-items: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 2rem;
  grid-template-columns: repeat(2, auto);
}
.trainer-box__main--card .txt__head h4 span {
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 2.5rem;
}
.trainer-box__main--card .txt__head h4 span b {
  color: var(--loud-color);
}
.trainer-box__main--card .txt p {
  margin-bottom: 0;
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.trainer-box__main--card .txt p span {
  color: var(--loud-color);
}
.trainer-box__main--des .labels {
  border-bottom: 0.3rem solid var(--loud-color);
  margin-bottom: 1rem;
}
.trainer-box__main--des .labels span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: var(--loud-color);
  padding: 1.4rem 2rem 0.6rem;
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: -0.3rem;
  -webkit-clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 0, 90% 0%, 100% 100%, 0% 100%);
}
.trainer-box__main--des p {
  font-size: 2rem;
  line-height: 4rem;
  margin-bottom: 0;
}

.good-box {
  background: var(--loud-color);
  padding: 6rem 0;
}
.good-box__main {
  text-align: center;
}
.good-box__main h3 {
  line-height: 1;
  font-size: 3.5rem;
  margin-bottom: 3rem;
}
.good-box__main h2 {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 4rem;
  font-size: 6.2rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
.good-box__main h2::after {
  content: "";
  width: 100%;
  height: 2.9rem;
  background: #fefcd9;
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}
.good-box__main p {
  margin-bottom: 0;
  font-size: 3.5rem;
  line-height: 5.7rem;
  font-weight: 700;
}

.price-box {
  padding: 12rem 0;
}
.price-box .container {
  max-width: 88rem;
}
.price-box__main--thumbnail {
  width: 100%;
  max-width: 61.2rem;
  margin: 0 auto 4rem;
}
.price-box__main p {
  margin-bottom: 8rem;
  text-align: center;
  font-size: 3.5rem;
  line-height: 5.7rem;
  font-weight: 700;
}
.price-box__main p span {
  position: relative;
  font-size: 4.5rem;
  z-index: 1;
}
.price-box__main p span::after {
  content: "";
  width: 100%;
  height: 2.5rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}

.flow-box {
  padding: 12rem 0;
  background: #f2f2f2;
}
.flow-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 12rem;
}
.flow-box__main {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  background-image: url("../images/flow-bg.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 8.5rem;
  counter-reset: section;
  position: relative;
}
.flow-box__main--items {
  padding-left: 9.5rem;
  display: grid;
  -webkit-box-align: start;
  -webkit-align-items: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 3.5rem;
  grid-template-columns: 1fr 16.7rem;
  padding-bottom: 3rem;
  position: relative;
}
.flow-box__main--items::before {
  counter-increment: section;
  content: counter(section);
  width: 5.5rem;
  height: 5.5rem;
  background: var(--loud-color);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}
.flow-box__main--items::after {
  content: "";
  width: 3px;
  height: 100%;
  border-left: 3px dashed var(--loud-color);
  position: absolute;
  top: 0;
  left: 2.75rem;
}
.flow-box__main--items .text h3 {
  font-size: 3.5rem;
  line-height: 5rem;
}
.flow-box__main--items .text p {
  margin-bottom: 0;
  font-size: 2.5rem;
  line-height: 3.8rem;
}

.faq-box {
  background: #f2f2f2;
  padding: 12rem 0;
}
.faq-box .container {
  max-width: 93rem;
}
.faq-box__main {
  background: #ffffff;
  padding: 12rem 10rem;
}
.faq-box__main h2 {
  text-align: center;
  position: relative;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 8.5rem;
}
.faq-box__main h2::after {
  content: "";
  width: 100%;
  max-width: 34.8rem;
  height: 0.4rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.faq-box__main--items {
  margin-bottom: 3.5rem;
}
.faq-box__main--items .q {
  border-bottom: 2px solid #b3b3b3;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  line-height: 3.6rem;
  font-weight: 700;
  padding-left: 4rem;
  position: relative;
}
.faq-box__main--items .q::before {
  content: "";
  width: 2.5rem;
  height: 3.3448rem;
  background-image: url("../images/icon-q.webp");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.faq-box__main--items .txt {
  font-size: 2rem;
  line-height: 3rem;
}
.faq-box__main--items:last-child {
  margin-bottom: 0;
}

.store-box {
  padding: 12rem 0 7.5rem;
}
.store-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 12rem;
}
.store-box__main {
  text-align: center;
}
.store-box__main p {
  margin-bottom: 5rem;
  font-size: 3.5rem;
  line-height: 5.4rem;
}
.store-box__main figure {
  width: 100%;
  max-width: 57.4rem;
  margin: 0 auto;
}

.info-box {
  padding: 8rem 0;
}
.info-box__main {
  text-align: center;
}
.info-box__main p {
  font-size: 2rem;
  line-height: 3rem;
  margin-bottom: 4.5rem;
}
.info-box__main figure {
  width: 100%;
  max-width: 50rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.line-box {
  padding: 12rem 0;
}
.line-box .head-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5.5rem;
  gap: 3rem;
}
.line-box .head-box::before,
.line-box .head-box::after {
  content: "";
  width: 4px;
  height: 6rem;
  background: var(--text-color);
  -webkit-transform: rotate(-35deg);
  -ms-transform: rotate(-35deg);
  transform: rotate(-35deg);
}
.line-box .head-box::after {
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
}
.line-box .head-box h2 {
  position: relative;
  font-size: 4.5rem;
}
.line-box .head-box h2::after {
  content: "";
  width: 100%;
  height: 1.6rem;
  background: var(--loud-color);
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  z-index: -1;
}

.blog-box {
  padding: 12rem 0;
  background: #fefcd9;
}
.blog-box h2 {
  line-height: 8.3rem;
  text-align: center;
  background: var(--loud-color);
  font-size: 3.8rem;
  margin-bottom: 12rem;
}
.blog-box__main {
  text-align: center;
}
.blog-box__main figure {
  width: 100%;
  max-width: 87.5rem;
  margin: 0 auto 9rem;
}
.blog-box__main p {
  margin-bottom: 4rem;
  font-size: 2.9rem;
  font-weight: 700;
}
.blog-box__main .more-box a {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 33rem;
  height: 7.4rem;
  background: #333333;
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--loud-color);
}
.blog-box__main .more-box a:hover {
  background: var(--loud-color);
  color: #ffffff;
}

.cta-boot {
  position: fixed;
  z-index: 9999;
  width: 100%;
  left: 0;
  bottom: 0;
  background: #ffffff;
  display: none;
}
.cta-boot img {
  width: 100%;
}
.cta-boot__main--hide {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: #fff;
  -webkit-transition: bottom 0.5s ease;
  -o-transition: bottom 0.5s ease;
  transition: bottom 0.5s ease;
  z-index: 9998;
}
.cta-boot__main--hide.active {
  bottom: 0;
}
.cta-boot__main--hide .more-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

#responsive-iframe {
  width: 87.3rem;
  height: 82.2rem;
}

/* layout - Responsive .
========================================================================== */
.sp {
  display: none;
}

@media screen and (max-width: 1200px) and (min-width: 769px) {
  html {
    font-size: 9px;
  }
}

@media screen and (max-width: 1050px) and (min-width: 769px) {
  html {
    font-size: 8px;
  }
}

@media screen and (max-width: 991px) and (min-width: 769px) {
  html {
    font-size: 7px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 1.8vw;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .container {
    padding: 0 2rem;
  }
  .banner {
    background: none;
    margin-top: 8rem;
  }
  .banner .container {
    padding: 0;
  }
  .feature-box {
    padding: 8rem 0;
  }
  .feature-box__main {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .concerns-box {
    padding: 8rem 0;
  }
  .concerns-box__main--content {
    margin-bottom: 6rem;
  }
  .concerns-box__main--content ul {
    padding: 2rem;
  }
  .concerns-box__main--rebody {
    padding-right: 0;
    position: relative;
  }
  .concerns-box__main--rebody::after {
    display: none;
  }
  .concerns-box__main--rebody .des {
    font-size: 2.4rem;
  }
  .concerns-box__main--rebody p {
    margin-bottom: 2rem;
    font-size: 2.2rem;
    line-height: 5rem;
  }
  .reason-box {
    padding: 8rem 0;
  }
  .reason-box .head-box {
    margin-bottom: 4rem;
  }
  .reason-box__main--items {
    padding: 2rem;
  }
  .reason-box__main--items .head {
    margin-bottom: 2rem;
  }
  .reason-box__main--items .head h3 {
    line-height: 1.5;
    font-size: 2.5rem;
  }
  .reason-box__main--items .head__num {
    width: 100%;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .reason-box__main--items .group {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .What-box {
    padding: 8rem 0;
  }
  .What-box__main--head {
    margin-bottom: 4rem;
  }
  .cta-box {
    padding: 8rem 0;
  }
  .cta-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .cta-box__main .instagram {
    margin-top: 4rem;
  }
  .cta-box__main .youtube iframe {
    height: 29rem;
  }
  .photos-box {
    padding: 8rem 0;
  }
  .photos-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .photos-box__main {
    padding: 0;
  }
  .photos-box__main--beaf {
    margin-bottom: 6rem;
    padding: 2rem;
  }
  .photos-box__main--beaf h3 {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
  .photos-box__main--beaf h3 b {
    font-size: 4rem;
  }
  .photos-box__main--beaf figure {
    margin-bottom: 4rem;
  }
  .photos-box__main--beaf .txt {
    padding: 2rem;
  }
  .addition-box {
    padding: 8rem 0;
  }
  .addition-box__main--items {
    grid-template-columns: repeat(1, 1fr);
  }
  .addition-box__main--items:last-child figure {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .addition-box__main--items:last-child .txt {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .trainer-box {
    padding: 8rem 0;
  }
  .trainer-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .trainer-box__main--card {
    margin-bottom: 4rem;
    grid-template-columns: 1fr;
  }
  .trainer-box__main--card .txt {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .trainer-box__main--card figure {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .good-box__main h3 {
    font-size: 3rem;
  }
  .good-box__main h2 {
    padding: 0 2rem;
    font-size: 4rem;
  }
  .good-box__main p {
    margin-bottom: 0;
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .price-box {
    padding: 6rem 0;
  }
  .price-box__main p {
    margin-bottom: 4rem;
    font-size: 3rem;
  }
  .price-box__main p span {
    font-size: 3.5rem;
  }
  .flow-box {
    padding: 8rem 0;
  }
  .flow-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .flow-box__main {
    padding: 2rem;
  }
  .flow-box__main--items {
    padding-left: 7.5rem;
    grid-template-columns: 1fr;
  }
  .faq-box {
    padding: 8rem 0;
  }
  .faq-box__main {
    padding: 4rem 2rem;
  }
  .store-box {
    padding: 8rem 0;
  }
  .store-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .store-box__main p {
    margin-bottom: 3rem;
    font-size: 3rem;
    line-height: 1.4;
  }
  .store-box__main figure {
    width: 100%;
    max-width: 57.4rem;
    margin: 0 auto;
  }
  .info-box {
    padding: 8rem 0;
  }
  .line-box {
    padding: 8rem 0;
  }
  .line-box .head-box {
    margin-bottom: 4rem;
    gap: 2rem;
  }
  .line-box .head-box h2 {
    text-align: center;
    font-size: 3.5rem;
  }
  .blog-box {
    padding: 8rem 0;
  }
  .blog-box h2 {
    line-height: 1.4;
    padding: 2rem;
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
  .cta-boot {
    display: block;
  }
  #responsive-iframe {
    width: 100%;
  }
}

/* ipad Portrait */
/* ipad Landscape */

/* add_20250718 */
.voice-box__section {
  padding-top: 4rem;
  padding-bottom: 12rem;
  @media only screen and (max-width: 768px) {
    padding-bottom: 8rem;
  }
}

.voice-box {
  border: 3px solid #f5ac01;
  padding: 16px;
  margin-bottom: 5rem;
  background: #fff;

  @media only screen and (max-width: 768px) {
    padding: 8px;
    margin-bottom: 2.5rem;
  }
}

.voice-box__title {
  width: 100%;
  background-color: #f6a800;
  color: #fff;
  display: inline-block;
  font-size: 36px;
  text-align: left;
  padding: 20px 0;
  padding-left: 1em;
  margin-bottom: 50px;
  @media only screen and (max-width: 768px) {
    font-size: 22px;
    padding: 14px 0;
    padding-left: 1em;
    margin-bottom: 25px;
  }
}

.voice-box__meta {
  background-color: #f5ac01;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  padding: 14px 12px;
  gap: 20px;
  flex-wrap: wrap;
  @media only screen and (max-width: 768px) {
    font-size: 18px;
    padding: 8px 12px;
    gap: 16px;
  }
}

.voice-box__content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 24px 0;

  @media only screen and (max-width: 768px) {
    flex-direction: column;
  }
}

.voice-box__image img,
.voice-box__placeholder {
  width: 100%;
  object-fit: cover;
}

.voice-box__text {
  flex: 1;
  font-size: 20px;
  @media only screen and (max-width: 768px) {
    font-size: 14px;
  }
}

.voice-box__disclaimer {
  font-size: 16px;
  text-align: left;
  margin-top: 1rem;
  color: #333;
  @media only screen and (max-width: 768px) {
    font-size: 11px;
  }
}

.voice-box__image {
  position: relative;
  width: 30%;

  @media only screen and (max-width: 768px) {
    width: 100%;
  }
}

.voice-box__zoom-link {
  display: inline-block;
  position: relative;
}

img.voice-box__zoom-icon {
  position: absolute;
  bottom: -20px;
  right: 10px;
  width: 50px;
  height: 50px;
  pointer-events: none;
}
