@charset "UTF-8";
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, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

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

input, select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
  color: #132840;
  background: #f4f4f4;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.wrapper {
  display: block;
  margin: 0 auto;
  padding: 0;
}

section {
  margin: 0;
  padding: 100px 0;
}
@media (max-width: 768px) {
  section {
    margin: 0;
    padding: 9vw 0;
  }
}

.container {
  max-width: calc(900px + 40px);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.container.wide {
  max-width: calc(900px + 300px);
}
@media (max-width: 768px) {
  .container.wide {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

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

a {
  color: #666666;
  text-decoration: none;
}

a:link {
  color: #666666;
  text-decoration: none;
}

a:visited {
  color: #666666;
  text-decoration: none;
}

a:hover {
  color: #666666;
  text-decoration: none;
}

a:focus, *:focus {
  outline: none;
}

a img:hover {
  opacity: 0.5;
  transition: all 0.5s ease 0s;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*===== footer ====================================*/
footer {
  background: #00b6e8;
  color: #ffffff;
  text-align: center;
  padding: 100px 0 0 0;
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: bold;
  line-height: 1.5;
}
@media (max-width: 980px) {
  footer {
    padding: 10vw 0 0 0;
  }
}
footer .logo {
  width: 260px;
  min-width: 160px;
  margin: 50px auto 100px auto;
}
@media (max-width: 980px) {
  footer .logo {
    width: 26vw;
    margin: 30px auto 10vw auto;
  }
}
footer .copy {
  background: #ffffff;
  padding: 20px;
  color: #585858;
  font-size: 14px;
  font-weight: normal;
}

/*===== SP用　下固定ボタン ====================================*/
#floating {
  background: rgba(229, 229, 229, 0.3);
  padding: 20px 0;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s;
  opacity: 0;
  z-index: 100;
  transition: all 0.3s ease 0s;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  #floating {
    padding: 10px 0;
  }
}
#floating.is-hidden {
  visibility: hidden;
  opacity: 0;
}
#floating .btn {
  display: flex;
  justify-content: space-between;
}
#floating .btn a {
  border: solid 4px #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  padding: 20px 20px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  #floating .btn a {
    width: calc(50% - 2vw);
    font-size: 2.4vw;
    padding: 1.5vw;
  }
}
@media (max-width: 768px) {
  #floating .btn a {
    width: calc(50% - 5px);
    font-size: 3vw;
    padding: 10px 10px 10px 20px;
    margin: 0;
    border: solid 3px #ffffff;
    border-radius: 5px;
  }
}
#floating .btn .btn_line {
  background: url(../images/icn_line.svg) no-repeat center left 30px #06C755;
  background-size: 40px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding-left: 50px;
}
@media (max-width: 980px) {
  #floating .btn .btn_line {
    background-size: 4vw;
    padding-left: 5vw;
  }
}
@media (max-width: 768px) {
  #floating .btn .btn_line {
    background: url(../images/icn_line.svg) no-repeat center left 10px #06C755;
    background-size: 20px;
  }
}
#floating .btn .btn_line:hover {
  background: url(../images/icn_line.svg) no-repeat center left 30px #0ada60;
  background-size: 40px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 980px) {
  #floating .btn .btn_line:hover {
    background-size: 4vw;
  }
}
@media (max-width: 768px) {
  #floating .btn .btn_line:hover {
    background: url(../images/icn_line.svg) no-repeat center left 10px #06C755;
    background-size: 20px;
  }
}
#floating .btn .btn_mail {
  background: url(../images/icn_mail.svg), url(../images/arrow01.svg);
  background-size: 40px, 15px;
  background-repeat: no-repeat, no-repeat;
  background-position: center left 30px, right 40px center;
  background-color: #FCFC3E;
  color: #000000;
  text-align: left;
}
@media (max-width: 980px) {
  #floating .btn .btn_mail {
    background-size: 3.5vw, 1.5vw;
  }
}
@media (max-width: 768px) {
  #floating .btn .btn_mail {
    background-position: center left 20px, right 20px center;
    background-size: 20px, 10px;
    line-height: 1.2;
  }
}
#floating .btn .btn_mail:hover {
  background-color: #ffff89;
  transition: all 0.5s ease 0s;
}

/*===== Grid ====================================*/
.grid_container {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  width: 100%;
  display: grid;
}
.grid_container.gap {
  grid-gap: 20px;
}
.grid_container .item {
  height: auto;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*===== common ====================================*/
.line_green {
  background: linear-gradient(transparent 60%, #42b86a 60%);
  display: inline;
}

.title1 {
  text-align: center;
  font-size: 42px;
  margin: 0 0 90px 0;
}
@media (max-width: 980px) {
  .title1 {
    font-size: 4.2vw;
    margin: 0 0 9vw 0;
  }
}
@media (max-width: 768px) {
  .title1 {
    font-size: 6vw;
  }
}
.title1 .sub {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #FCFC3E;
  display: block;
  font-size: 80%;
}
.title1 .main {
  color: #ffffff;
  letter-spacing: 0.08em;
  border-bottom: solid 1px #ffffff;
  padding: 0 0 10px 0;
}
.title1 .main.noborder {
  border-bottom: none;
}
.title1 .yellow {
  color: #FCFC3E;
}
.title1.navy .sub {
  color: #ffe302;
}
.title1.navy .main {
  color: #00b6e8;
  border-bottom: solid 1px #00b6e8;
}

.title0 {
  text-align: center;
  color: #132840;
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  letter-spacing: 0.1em;
}
.title0 span {
  font-size: clamp(18px, 3vw, 24px);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  color: #0000ff;
  letter-spacing: 0;
}
.title0 + p {
  margin: 0 0 clamp(20px, 5.333vw, 40px) 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .title0 + p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.inner_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .inner_flex {
    display: block;
  }
  .inner_flex.sp-flex {
    display: flex;
  }
}
.inner_flex.ai_fe {
  align-items: flex-end;
}
.inner_flex.ai_c {
  align-items: center;
}
.inner_flex.fd_rr {
  flex-direction: row-reverse;
}
.inner_flex.jc_c {
  justify-content: center;
}
.inner_flex.jc_sa {
  justify-content: space-around;
}
.inner_flex.jc_fs {
  justify-content: flex-start;
}
.inner_flex.fw_w {
  flex-wrap: wrap;
}

a.button, input.button, button.button {
  display: block;
  margin: 0 auto;
  color: #00b6e8;
  background-color: #FCFC3E;
  text-align: center;
  position: relative;
  background-color: #FCFC3E;
  text-decoration: none;
}
a.button:hover, input.button:hover, button.button:hover {
  background-color: rgb(253.5612244898, 253.5612244898, 162.4387755102);
  transition: all 0.5s ease 0s;
}
a.button, input.button, button.button {
  border: none;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
a.button.ss, input.button.ss, button.button.ss {
  font-size: 14px;
  font-size: 1.4rem;
  padding: 10px 10px;
}
@media (max-width: 768px) {
  a.button.ss, input.button.ss, button.button.ss {
    font-size: 3vw;
    padding: 1.3vw 1.3vw;
  }
}
a.button.s, input.button.s, button.button.s {
  font-size: 18px;
  font-size: 1.8rem;
  padding: 15px 10px;
}
@media (max-width: 768px) {
  a.button.s, input.button.s, button.button.s {
    font-size: 3.5vw;
    padding: 1.9vw 1.3vw;
  }
}
a.button.m, input.button.m, button.button.m {
  font-size: 20px;
  font-size: 2rem;
  padding: 25px 30px;
}
@media (max-width: 768px) {
  a.button.m, input.button.m, button.button.m {
    font-size: 4.2vw;
    padding: 3.2vw 3.9vw;
  }
}
a.button.l, input.button.l, button.button.l {
  font-size: clamp(13px, 3.467vw, 26px);
  padding: 20px 30px;
}
@media (max-width: 768px) {
  a.button.l, input.button.l, button.button.l {
    padding: 3vw 3.9vw;
  }
}
a.button.arrow_r::after, input.button.arrow_r::after, button.button.arrow_r::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #00b6e8;
  border-right: 3px solid #00b6e8;
  transform: rotate(45deg);
  position: absolute;
  right: 30px;
  top: calc(50% - 6px);
}
@media (max-width: 768px) {
  a.button.arrow_r::after, input.button.arrow_r::after, button.button.arrow_r::after {
    width: 1.5vw;
    height: 1.5vw;
    right: 4vw;
    top: calc(50% - 0.7vw);
  }
}

/*===== TOP ====================================*/
#mv {
  background: #00b6e8;
}
#mv .inner {
  max-width: 1200px;
  display: flex;
  align-items: flex-end;
  background: url(../images/mv_bg.jpg) no-repeat center center;
  background-size: cover;
  margin: 0 auto;
  padding: 50px;
}
@media (max-width: 768px) {
  #mv .inner {
    padding: 3vw 5vw;
    display: block;
    background: url(../images/mv_bg@sp.jpg) no-repeat top center #00b6e8;
    background-size: contain;
  }
}
#mv .inner .mv_main {
  width: 50%;
}
@media (max-width: 768px) {
  #mv .inner .mv_main {
    width: 100%;
  }
}
#mv .inner .mv_main .logo {
  max-width: 335px;
  width: 50%;
}
@media (max-width: 768px) {
  #mv .inner .mv_main .logo {
    width: 40%;
  }
}
#mv .inner .mv_main .concept {
  margin: 10px 0 clamp(10px, 1.2vw, 15px) 0;
}
@media (max-width: 768px) {
  #mv .inner .mv_main .concept {
    width: 55%;
  }
}
#mv .inner .mv_main .price {
  margin: 0 0 clamp(15px, 2.5vw, 30px) 0;
}
#mv .inner .mv_main .emblem {
  margin: 0 0 clamp(15px, 2.5vw, 30px) 0;
}
#mv .inner .mv_main p {
  color: #FFFFFF;
  font-size: 14px;
}
@media (max-width: 980px) {
  #mv .inner .mv_main p {
    font-size: 12px;
  }
}
#mv .inner .campaign {
  width: 50%;
}
@media (max-width: 768px) {
  #mv .inner .campaign {
    width: 100%;
  }
}

/*===== CTA ====================================*/
.cta {
  background: #ffffff;
  background-size: cover;
  text-align: center;
  padding: 50px 0;
  line-height: 1.6;
}
@media (max-width: 980px) {
  .cta {
    padding: 5vw 0;
  }
}
.cta p {
  font-weight: 800;
  font-size: 32px;
}
@media (max-width: 980px) {
  .cta p {
    font-size: 3.2vw;
  }
}
@media (max-width: 768px) {
  .cta p {
    font-size: 4.5vw;
  }
}
.cta .title {
  font-size: 40px;
  font-weight: 900;
  border-bottom: solid 2px #00b6e8;
  display: inline-block;
  margin: 0 0 30px 0;
  color: #00b6e8;
}
@media (max-width: 980px) {
  .cta .title {
    font-size: 5.2vw;
  }
}
@media (max-width: 768px) {
  .cta .title {
    font-size: 6vw;
  }
}
.cta .btn {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .cta .btn {
    display: block;
  }
}
.cta .btn a {
  border: solid 4px #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: calc(50% - 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  padding: 20px;
  line-height: 1.5;
}
@media (max-width: 980px) {
  .cta .btn a {
    width: calc(50% - 2vw);
    font-size: 2.4vw;
    padding: 1.5vw;
  }
}
@media (max-width: 768px) {
  .cta .btn a {
    width: 100%;
    font-size: 4vw;
    padding: 3.5vw;
    margin: 0 0 10px 0;
    border: solid 0.8vw #ffffff;
  }
}
.cta .btn .btn_line {
  background: url(../images/icn_line.svg) no-repeat center left 30px #06C755;
  background-size: 50px;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  padding-left: 50px;
}
@media (max-width: 980px) {
  .cta .btn .btn_line {
    background-size: 5vw;
    padding-left: 5vw;
  }
}
@media (max-width: 768px) {
  .cta .btn .btn_line {
    background-size: 7vw;
  }
}
.cta .btn .btn_line:hover {
  background: url(../images/icn_line.svg) no-repeat center left 30px #0ada60;
  background-size: 50px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 980px) {
  .cta .btn .btn_line:hover {
    background-size: 5vw;
  }
}
@media (max-width: 768px) {
  .cta .btn .btn_line:hover {
    background-size: 7vw;
  }
}
.cta .btn .btn_mail {
  background: url(../images/icn_mail.svg), url(../images/arrow01.svg);
  background-size: 50px, 15px;
  background-repeat: no-repeat, no-repeat;
  background-position: center left 30px, right 40px center;
  background-color: #FCFC3E;
  color: #000000;
  text-align: left;
}
@media (max-width: 980px) {
  .cta .btn .btn_mail {
    background-size: 4vw, 1.5vw;
  }
}
@media (max-width: 768px) {
  .cta .btn .btn_mail {
    background-size: 7vw, 3vw;
  }
}
.cta .btn .btn_mail:hover {
  background-color: #ffff89;
  transition: all 0.5s ease 0s;
}

/*===== キャンペーン ====================================*/
#campaign {
  background: #00b6e8;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #campaign {
    padding: 20px 0;
  }
}
#campaign .inner {
  border: solid 1px rgba(255, 255, 255, 0.9);
  padding: 10px;
}
@media (max-width: 768px) {
  #campaign .inner {
    padding: 20px 10px;
  }
}
#campaign .title1 {
  margin-bottom: 0;
}
#campaign .limit {
  color: #ffffff;
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 768px) {
  #campaign .limit {
    font-size: 5vw;
    line-height: 1.5;
    margin: 20px 0 0 0;
  }
}
#campaign .limit span {
  background: #FCFC3E;
  margin: 0 5px 0 0;
  padding: 0 5px 2px 5px;
  color: #132840;
}
#campaign .tokuten {
  display: flex;
  justify-content: space-around;
  margin: 30px 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #campaign .tokuten {
    display: block;
  }
}
#campaign .tokuten dl {
  width: 50%;
  margin: 20px 0;
}
@media (max-width: 768px) {
  #campaign .tokuten dl {
    width: 100%;
    border-top: solid 1px #DCDCDC;
    padding: 20px 0 0 0;
  }
}
#campaign .tokuten dl dt {
  background: #0095dc;
  background-size: cover;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  width: 65%;
  margin: 0 auto 20px auto;
}
@media (max-width: 768px) {
  #campaign .tokuten dl dt {
    font-size: 4.5vw;
    margin-bottom: 0;
  }
}
#campaign .tokuten dl dd {
  border-right: solid 1px #DCDCDC;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  padding: 20px 10px;
}
@media (max-width: 980px) {
  #campaign .tokuten dl dd {
    font-size: 2.2vw;
  }
}
@media (max-width: 768px) {
  #campaign .tokuten dl dd {
    border-right: none;
    font-size: 5.5vw;
  }
}
#campaign .tokuten dl:nth-child(2n) dd {
  border-right: none;
}
#campaign .tokuten .strikethrough {
  text-decoration: line-through;
  text-decoration-color: #FF6B00;
  text-decoration-style: solid;
}
#campaign .tokuten .gradation {
  background: linear-gradient(#FCFC3E 60%, #fcdf00 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  vertical-align: sub;
}
#campaign .tokuten .text_large {
  font-size: 520%;
  line-height: 0.7;
}
#campaign .tokuten .text_middle {
  font-size: 130%;
}
#campaign .tokuten .italic {
  font-style: italic;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  vertical-align: middle;
}
#campaign .tokuten .yen {
  font-size: 30%;
}
#campaign .tokuten p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.8;
}
@media (max-width: 980px) {
  #campaign .tokuten p {
    font-size: 1.6vw;
  }
}
@media (max-width: 768px) {
  #campaign .tokuten p {
    font-size: 14px;
  }
}

/*===== 困った経験 ====================================*/
#problem {
  background: url(../images/problem_bg.jpg) no-repeat center top #132840;
  background-size: cover;
}
#problem dl {
  margin: 0 0 10px 0;
  background: rgba(255, 255, 255, 0.4);
  padding: 20px 0;
  display: flex;
  align-items: center;
}
@media (max-width: 980px) {
  #problem dl {
    padding: 2vw 0;
  }
}
@media (max-width: 768px) {
  #problem dl {
    display: block;
    padding: 10px;
  }
}
#problem dl dt {
  font-size: 38px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  color: #FCFC3E;
  border-right: solid 1px #ffffff;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
}
@media (max-width: 980px) {
  #problem dl dt {
    font-size: 3.8vw;
    padding: 0 1vw;
    width: 18vw;
  }
}
@media (max-width: 768px) {
  #problem dl dt {
    font-size: 20px;
    padding: 0;
    width: 100%;
    line-height: 1;
    border-right: none;
    border-bottom: solid 1px #ffffff;
  }
}
#problem dl dt span {
  font-size: 160%;
  font-style: italic;
  margin: 0 0 10px 0;
}
#problem dl dd {
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 180px);
  align-items: center;
}
@media (max-width: 980px) {
  #problem dl dd {
    padding: 0 4vw;
    width: calc(100% - 18vw);
  }
}
@media (max-width: 768px) {
  #problem dl dd {
    padding: 10px;
    width: 100%;
  }
}
#problem dl dd .icon {
  width: 80px;
}
@media (max-width: 980px) {
  #problem dl dd .icon {
    width: 8vw;
  }
}
@media (max-width: 768px) {
  #problem dl dd .icon {
    width: 60px;
    margin: 0 20px 0 0;
  }
}
#problem dl dd p {
  display: block;
  width: calc(100% - 120px);
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 980px) {
  #problem dl dd p {
    width: calc(100% - 12vw);
    font-size: 2.4vw;
  }
}
@media (max-width: 768px) {
  #problem dl dd p {
    width: calc(100% - 80px);
    font-size: 16px;
  }
}
#problem dl dd p span {
  color: #FCFC3E;
}

/*===== 困った経験2 ====================================*/
#problem2 {
  background: #ffffff;
  background-size: cover;
  text-align: center;
  font-size: clamp(24px, 4.8vw, 48px);
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-top: 50px;
  padding-bottom: 50px;
  color: #00b6e8;
}

/*===== 5つのポイント ====================================*/
#point {
  background: #00b6e8;
  background-size: cover;
  color: #ffffff;
}
#point .point_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #ffffff;
  margin: 0 0 60px 0;
  padding: 0 0 60px 0;
}
@media (max-width: 768px) {
  #point .point_box {
    display: block;
    margin: 0 0 10vw 0;
    padding: 0;
    border-bottom: none;
  }
}
#point .point_box:last-of-type {
  border-bottom: none;
}
#point .point_box:nth-child(odd) {
  flex-direction: row-reverse;
}
#point .point_box dl {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  #point .point_box dl {
    width: 100%;
  }
}
#point .point_box dl dt {
  font-size: 26px;
  border-bottom: solid 1px #ffffff;
  display: inline-block;
  margin: 0 0 40px 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #point .point_box dl dt {
    font-size: 7vw;
    margin: 0 0 5vw 0;
  }
}
#point .point_box dl dt span {
  display: block;
  font-size: 240%;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  font-style: italic;
}
@media (max-width: 768px) {
  #point .point_box dl dt span {
    font-size: 160%;
    line-height: 1;
  }
}
#point .point_box dl dd {
  font-size: 18px;
}
@media (max-width: 768px) {
  #point .point_box dl dd {
    font-size: 16px;
  }
}
#point .point_box figure {
  width: calc(50% - 20px);
}
@media (max-width: 768px) {
  #point .point_box figure {
    width: 100%;
    margin: 5vw 0 0 0;
  }
}

/*===== 他店との比較 ====================================*/
#comparison {
  background: url(../images/comparison_bg.jpg) no-repeat center top;
  background-size: cover;
}
#comparison p {
  color: #ffffff;
  text-align: center;
  font-size: clamp(18px, 3.6vw, 36px);
  font-weight: 600;
  padding: clamp(20px, 5vw, 50px) 0 0 0;
  line-height: 1.5;
}

/*===== エースジムとは ====================================*/
#about {
  background: url(../images/about_bg.jpg) no-repeat center top;
  background-size: cover;
  text-align: center;
}
#about .logo {
  width: 140px;
  position: relative;
  margin: 0 auto 30px auto;
  padding: 0 0 30px 0;
}
@media (max-width: 768px) {
  #about .logo {
    width: 30%;
    max-width: 140px;
  }
}
#about .logo::after {
  content: "";
  border-bottom: solid 1px #00b6e8;
  position: absolute;
  bottom: 0;
  left: calc(50% - 50px);
  display: block;
  width: 100px;
  height: 1px;
}
#about p {
  font-size: 26px;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  #about p {
    font-size: 4.5vw;
  }
}
#about p span {
  background: #FCFC3E;
  padding: 0 5px 3px 5px;
}
#about ul {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #about ul {
    margin: 5vw 0;
  }
}
#about ul li {
  width: calc(50% - 10px);
  border: 3px solid;
  -o-border-image: linear-gradient(to right, #3fade1 5%, #eef7ff 50%, #3fade1 75%, #cbe8ff 100%);
     border-image: linear-gradient(to right, #3fade1 5%, #eef7ff 50%, #3fade1 75%, #cbe8ff 100%);
  border-image-slice: 1;
  background: url(../images/icn_check.svg) no-repeat center left 30px rgba(0, 182, 232, 0.7);
  background-size: 40px;
  margin: 0 0 20px 0;
  padding: 20px 20px 20px 100px;
  text-align: left;
  color: #ffffff;
  font-size: clamp(18px, 3vw, 30px);
}
@media (max-width: 768px) {
  #about ul li {
    width: 100%;
    background: url(../images/icn_check.svg) no-repeat center left 6vw rgba(0, 182, 232, 0.7);
    background-size: 8vw;
    margin: 0 0 2vw 0;
    padding: 3vw 3vw 3vw 20vw;
  }
}

/*===== 選ばれる理由 ====================================*/
#reason {
  background: #00b6e8;
  position: relative;
  z-index: 0;
  color: #ffffff;
}
#reason::after {
  content: "";
  background: url(../images/reason_bg.jpg) no-repeat center center;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: 100px;
  width: 60%;
  height: calc(100% - 500px);
  z-index: -1;
}
#reason dl {
  margin: 0 0 clamp(50px, 10vw, 100px) 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #reason dl {
    display: block;
  }
}
#reason dl dt {
  border-right: solid 1px #ffffff;
  width: 50%;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  padding: 0 30px 0 0;
}
@media (max-width: 768px) {
  #reason dl dt {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #ffffff;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
  }
}
#reason dl dt span {
  display: inline-block;
  color: #FCFC3E;
  font-size: 200%;
  font-weight: bold;
  font-style: italic;
  font-family: "Jost", sans-serif;
  border-bottom: solid 1px #ffffff;
  line-height: 1;
  margin: 0 0 10px 0;
}
#reason dl dd {
  width: 50%;
  font-size: 18px;
  padding: 0 0 0 30px;
}
@media (max-width: 980px) {
  #reason dl dd {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #reason dl dd {
    width: 100%;
    padding: 0;
    font-size: 14px;
  }
}

/*===== 1日の流れ ====================================*/
#flow {
  background: url(../images/flow_bg.jpg) no-repeat center top;
  background-size: cover;
  color: #ffffff;
}
#flow .flow_box {
  width: 33.3%;
  margin: 0 0 40px 0;
  padding: 0 clamp(20px, 3vw, 30px);
  position: relative;
}
#flow .flow_box:nth-child(1)::after, #flow .flow_box:nth-child(2)::after, #flow .flow_box:nth-child(4)::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-right: solid 2px #FCFC3E;
  border-bottom: solid 2px #FCFC3E;
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 100px;
}
@media (max-width: 980px) {
  #flow .flow_box:nth-child(1)::after, #flow .flow_box:nth-child(2)::after, #flow .flow_box:nth-child(4)::after {
    right: -0.4vw;
    top: 6.5vw;
  }
}
@media (max-width: 768px) {
  #flow .flow_box:nth-child(1)::after, #flow .flow_box:nth-child(2)::after, #flow .flow_box:nth-child(4)::after {
    display: none;
  }
}
@media (max-width: 768px) {
  #flow .flow_box {
    width: 100%;
    margin: 0 0 50px 0;
    padding: 0;
  }
  #flow .flow_box::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border-right: solid 2px #FCFC3E;
    border-bottom: solid 2px #FCFC3E;
    transform: rotate(45deg);
    position: absolute;
    right: calc(50% - 8px);
    bottom: -25px;
  }
  #flow .flow_box:last-child {
    margin: 0;
  }
  #flow .flow_box:last-child::before {
    display: none;
  }
}
#flow .flow_box figure {
  margin: 0 0 10px 0;
}
#flow .flow_box dl dt {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: bold;
}
#flow .flow_box dl dd {
  font-size: clamp(14px, 1.8vw, 18px);
  line-height: 1.5;
}

/*===== よくある質問 ====================================*/
#qa {
  background: #00b6e8;
}
#qa dl {
  padding: 20px 30px;
  border-bottom: solid 1px #ffffff;
  position: relative;
  color: #ffffff;
}
@media (max-width: 768px) {
  #qa dl {
    padding: 10px;
  }
}
#qa dl:first-of-type {
  border-top: solid 1px #ffffff;
}
#qa dl::before {
  content: "";
  background: #ffffff;
  height: 14px;
  width: 22px;
  clip-path: polygon(100% 0%, 50% 100%, 0% 0%);
  position: absolute;
  top: 45px;
  right: 20px;
  transition: all 0.2s ease 0s;
}
@media (max-width: 768px) {
  #qa dl::before {
    height: 11px;
    width: 16px;
    top: 25px;
    right: 10px;
  }
}
#qa dl.active::before {
  transition: all 0.2s ease 0s;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
#qa dl dt {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0 0 3.1em;
  text-indent: -3.1em;
}
@media (max-width: 768px) {
  #qa dl dt {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 0 0 0 1.7em;
    text-indent: -1.7em;
    padding-right: 35px;
  }
}
#qa dl dt::before {
  content: "Q";
  font-size: 30px;
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  color: #FCFC3E;
  margin: 0 20px 0 0;
}
@media (max-width: 768px) {
  #qa dl dt::before {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 10px 0 0;
  }
}
#qa dl dd {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 0 3.1em;
  text-indent: -3.1em;
  display: none;
}
@media (max-width: 768px) {
  #qa dl dd {
    margin: 0 0 0 1.7em;
    text-indent: -1.7em;
  }
}
#qa dl dd::before {
  content: "A";
  font-size: 30px;
  font-size: 3rem;
  font-family: "Jost", sans-serif;
  font-weight: bold;
  margin: 0 20px 0 2px;
}
@media (max-width: 768px) {
  #qa dl dd::before {
    font-size: 20px;
    font-size: 2rem;
    margin: 0 10px 0 0;
  }
}
#qa p {
  font-size: clamp(22px, 3.5vw, 35px);
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  margin: clamp(50px, 10vw, 100px) 0;
}

/*===== 店舗情報 ====================================*/
#shop {
  background: #F5F5F5;
}
#shop .shopdetail {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 30px auto;
}
#shop .shopdetail dl {
  color: #132840;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  margin: 0 0 10px 0;
}
@media (max-width: 768px) {
  #shop .shopdetail dl {
    font-size: 16px;
  }
}
#shop .shopdetail dl dt {
  width: 170px;
}
@media (max-width: 768px) {
  #shop .shopdetail dl dt {
    width: 140px;
  }
}
#shop .shopdetail dl dd {
  width: calc(100% - 170px);
}
@media (max-width: 768px) {
  #shop .shopdetail dl dd {
    width: calc(100% - 140px);
  }
}
#shop .map {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
#shop .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
}
@media (max-width: 768px) {
  #shop .map iframe {
    aspect-ratio: 2/2.5;
  }
}

/*===== お問い合わせフォーム ====================================*/
#reservation {
  background: #c7e2e9;
  background-size: cover;
}
#reservation .title1 + p {
  color: #132840;
  text-align: center;
  margin: -50px 0 30px 0;
}
@media (max-width: 768px) {
  #reservation .title1 + p {
    margin: 0 0 20px 0;
  }
}
#reservation .form_Area {
  width: 100%;
  max-width: 800px;
  background: #ffffff;
  padding: 30px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #reservation .form_Area {
    padding: 10px;
  }
}
#reservation .form_Area .row {
  border-bottom: solid 1px rgba(48, 50, 65, 0.3);
  padding: 20px 10px;
}
@media (max-width: 768px) {
  #reservation .form_Area .row {
    border: none;
    padding: 0 10px;
  }
}
#reservation .form_Area .row.border-none {
  border-bottom: none;
}
#reservation .form_Area .row .title {
  font-size: 18px;
  font-weight: bold;
  color: #00b6e8;
  margin: 0 0 5px 0;
  width: 100%;
}
@media (max-width: 768px) {
  #reservation .form_Area .row .title {
    font-size: 16px;
  }
}
#reservation .form_Area .row dl dt {
  font-size: 18px;
  font-weight: bold;
  color: #132840;
  margin: 0 0 5px 0;
}
@media (max-width: 768px) {
  #reservation .form_Area .row dl dt {
    font-size: 16px;
  }
}
#reservation .form_Area .row dl dt.sub {
  font-size: 16px;
}
@media (max-width: 768px) {
  #reservation .form_Area .row dl dt.sub {
    font-size: 14px;
  }
}
#reservation .form_Area {
  /* 2列 */
}
#reservation .form_Area .col2 {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #reservation .form_Area .col2 {
    display: block;
  }
}
#reservation .form_Area .col2 dl {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  #reservation .form_Area .col2 dl {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
#reservation .form_Area {
  /* 必須マーク */
}
#reservation .form_Area .hissu {
  color: #ffffff;
  font-size: 12px;
  font-size: 1.2rem;
  margin: 0 0 0 20px;
  padding: 2px 10px;
  background: #EA3939;
  border-radius: 0px;
}
#reservation .form_Area input[type=text],
#reservation .form_Area input[type=email],
#reservation .form_Area input[type=tel],
#reservation .form_Area input[type=date],
#reservation .form_Area textarea {
  background: #F5F5F5;
  padding: 10px;
  border: solid 1px #A9A9A9;
  font-size: 16px;
  font-size: 1.6rem;
  border-radius: 0px;
  width: 100%;
}
@media (max-width: 768px) {
  #reservation .form_Area input[type=text],
  #reservation .form_Area input[type=email],
  #reservation .form_Area input[type=tel],
  #reservation .form_Area input[type=date],
  #reservation .form_Area textarea {
    padding: 15px;
  }
}
#reservation .form_Area input[type=text].error,
#reservation .form_Area input[type=email].error,
#reservation .form_Area input[type=tel].error,
#reservation .form_Area input[type=date].error,
#reservation .form_Area textarea.error {
  border: solid 2px #EA3939;
  background: #ffe4e4;
  margin: 0;
  color: #132840;
}
#reservation .form_Area textarea {
  height: 180px;
}
#reservation .form_Area input[type=date] {
  height: 52px;
}
#reservation .form_Area {
  /*チェックボックス*/
}
#reservation .form_Area input[type=checkbox] {
  display: none;
  margin: 0;
}
#reservation .form_Area input[type=checkbox] + label {
  padding: 0 0 0 30px;
  position: relative;
}
#reservation .form_Area input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  box-sizing: border-box;
  width: 17px;
  height: 17px;
  margin-top: -3px;
  background: #FFF;
  border: 1px solid #A9A9A9;
  border-radius: 0px;
}
#reservation .form_Area input[type=checkbox].error + label::before {
  border: solid 2px #EA3939;
}
#reservation .form_Area input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 10px;
  box-sizing: border-box;
  display: block;
  left: 2px;
  width: 11px;
  height: 7px;
  margin-top: -3px;
  border-left: 2px solid #00b6e8;
  border-bottom: 2px solid #00b6e8;
  transform: rotate(-45deg);
}
#reservation .form_Area {
  /*セレクト*/
}
#reservation .form_Area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #F5F5F5 url(../images/arrow_select.svg) no-repeat right 20px center;
  background-size: 10px;
  border: solid 1px #A9A9A9;
  border-radius: 0px;
  padding: 11px 40px 11px 10px;
  font-size: 16px;
  font-size: 1.6rem;
  position: relative;
  width: 100%;
}
@media (max-width: 768px) {
  #reservation .form_Area select {
    padding: 16px 40px 16px 10px;
    height: 52px;
  }
}
#reservation .form_Area select ::-ms-expand {
  display: none;
}
#reservation .form_Area select.error {
  color: #132840;
  border: solid 2px #EA3939;
  background: #ffe4e4 url(../images/top/arrow_select.svg) no-repeat right 20px center;
  font-size: 16px;
  font-size: 1.6rem;
}
#reservation .form_Area {
  /*ラジオボタン*/
}
#reservation .form_Area label.radio {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 0px 0 3px 40px;
}
#reservation .form_Area label.radio.error {
  color: #EA3939;
}
#reservation .form_Area label.radio:before {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #A9A9A9;
  border-radius: 50%;
  left: 0px;
  content: "";
  z-index: 3;
}
#reservation .form_Area label.radio:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  left: 0px;
  top: 0px;
  background-color: #00b6e8;
  z-index: 1;
  border: solid 6px #ffffff;
}
#reservation .form_Area label.radio input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  left: -26px;
  top: -1px;
  margin: 0px !important;
  box-shadow: 26px 2px #FFFFFF;
  border-radius: 20px;
}
#reservation .form_Area label.radio input[type=radio]:checked {
  box-shadow: none;
}
#reservation .form_Area label.radio input[type=radio]:focus {
  opacity: 0.2;
  box-shadow: 26px 2px #FFF;
}
#reservation .form_Area {
  /* エラーメッセージ*/
}
#reservation .form_Area .error {
  color: #EA3939;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 5px 0 0 0;
}
#reservation .form_Area .error :empty {
  display: none;
}
#reservation .form_Area .scroll {
  width: 100%;
  height: 100px;
  border: solid 1px #A9A9A9;
  padding: 10px;
  text-align: left;
  overflow-y: scroll;
  margin: 0 0 20px 0;
  font-size: 12px;
}
#reservation .form_Area .btn {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #reservation .form_Area .btn {
    margin: 0;
    flex-direction: column-reverse;
  }
}
#reservation .form_Area .btn a, #reservation .form_Area .btn input, #reservation .form_Area .btn button {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  border: solid 4px #ffffff;
  border-radius: 5px;
  padding: 30px 0;
  margin: 0 20px;
  line-height: 1;
  display: block;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  #reservation .form_Area .btn a, #reservation .form_Area .btn input, #reservation .form_Area .btn button {
    font-size: 16px;
    font-size: 1.6rem;
    margin: 10px 0;
    width: 100%;
  }
}
#reservation .form_Area .btn a.btn1, #reservation .form_Area .btn input.btn1, #reservation .form_Area .btn button.btn1 {
  background: url(../images/arrow04.svg) no-repeat right 20px center #FCFC3E;
  background-size: 8px;
  color: #132840;
}
#reservation .form_Area .btn a.btn1:hover, #reservation .form_Area .btn input.btn1:hover, #reservation .form_Area .btn button.btn1:hover {
  background: url(../images/arrow04.svg) no-repeat right 20px center #ffff89;
  background-size: 8px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  #reservation .form_Area .btn a.btn1, #reservation .form_Area .btn input.btn1, #reservation .form_Area .btn button.btn1 {
    padding: 20px 0;
  }
}
#reservation .form_Area .btn a.btn2, #reservation .form_Area .btn input.btn2, #reservation .form_Area .btn button.btn2 {
  background: #666666;
  color: #ffffff;
}
#reservation .form_Area .btn a.btn2:hover, #reservation .form_Area .btn input.btn2:hover, #reservation .form_Area .btn button.btn2:hover {
  background: #777777;
  transition: all 0.5s ease 0s;
}
@media (max-width: 768px) {
  #reservation .form_Area .btn a.btn2, #reservation .form_Area .btn input.btn2, #reservation .form_Area .btn button.btn2 {
    padding: 20px 0;
  }
}
#reservation .form_Area.confirm .row {
  padding: 20px 10px;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .row {
    border-bottom: solid 1px rgba(48, 50, 65, 0.3);
    padding: 10px;
  }
}
#reservation .form_Area.confirm .row dl {
  display: flex;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .row dl {
    display: block;
  }
}
#reservation .form_Area.confirm .row dl dt {
  margin: 0;
  width: 200px;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .row dl dt {
    width: 100%;
  }
}
#reservation .form_Area.confirm .row dl dd {
  width: calc(100% - 200px);
  padding: 0 0 0 20px;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .row dl dd {
    width: 100%;
    padding: 0;
  }
}
#reservation .form_Area.confirm {
  /* 2列 */
}
#reservation .form_Area.confirm .col2 {
  display: block;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .col2 {
    display: block;
  }
}
#reservation .form_Area.confirm .col2 dl {
  width: 100%;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm .col2 dl {
    width: 100%;
    margin: 0 0 10px 0;
  }
}
#reservation .form_Area.confirm .col2 dl dt {
  width: 100px;
}
#reservation .form_Area.confirm .col2 dl dd {
  width: calc(100% - 100px);
}
#reservation .form_Area.confirm {
  /**/
}
#reservation .form_Area.confirm table {
  margin: 50px 0 0 0;
}
#reservation .form_Area.confirm table tr th {
  padding: 30px 40px 30px 0;
}
@media (max-width: 768px) {
  #reservation .form_Area.confirm table {
    margin: 30px 0 0 0;
  }
  #reservation .form_Area.confirm table tr th {
    padding: 10px;
  }
  #reservation .form_Area.confirm .btn {
    flex-direction: column-reverse;
  }
  #reservation .form_Area.confirm .btn a, #reservation .form_Area.confirm .btn input, #reservation .form_Area.confirm .btn button {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
  }
}
#reservation .form_Area.thanks {
  text-align: center;
  padding: 50px 20px;
}
@media (max-width: 768px) {
  #reservation .form_Area.thanks {
    padding: 30px 10px;
  }
}
#reservation .form_Area.thanks h3 {
  color: #00b6e8;
  font-size: 30px;
  font-weight: bold;
  margin: 0 0 30px 0;
}
@media (max-width: 768px) {
  #reservation .form_Area.thanks h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
}
#reservation .form_Area.thanks p {
  font-size: 16px;
}
@media (max-width: 768px) {
  #reservation .form_Area.thanks p {
    font-size: 14px;
  }
}

/*===== Utility ====================================*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.w10 {
  width: 10px !important;
}

.w20 {
  width: 20px !important;
}

.w30 {
  width: 30px !important;
}

.w40 {
  width: 40px !important;
}

.w50 {
  width: 50px !important;
}

.w60 {
  width: 60px !important;
}

.w70 {
  width: 70px !important;
}

.w80 {
  width: 80px !important;
}

.w90 {
  width: 90px !important;
}

.w100 {
  width: 100px !important;
}

.w120 {
  width: 120px !important;
}

.w150 {
  width: 150px !important;
}

.w200 {
  width: 200px !important;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px !important;
}

.w350 {
  width: 350px !important;
}

.w50p {
  width: 50% !important;
  max-width: 50% !important;
}

@media (max-width: 768px) {
  .w100p_sp {
    width: 100% !important;
  }
}
.mincho {
  font-family: "Noto Serif JP", serif;
}

.gothic {
  font-family: "Noto Sans JP", sans-serif;
}

.fs_ss {
  font-size: 10px;
  font-size: 1rem;
}

.fs_s {
  font-size: 12px;
  font-size: 1.2rem;
}

.fs_m {
  font-size: 14px;
  font-size: 1.4rem;
}

.fs_l {
  font-size: 16px;
  font-size: 1.6rem;
}

.fs_ll {
  font-size: 18px;
  font-size: 1.8rem;
}

.bold {
  font-weight: bold !important;
}

.normal {
  font-weight: normal !important;
}

.tl {
  text-align: left !important;
}

.tr {
  text-align: right !important;
}

.tc {
  text-align: center !important;
}

.vt {
  vertical-align: top !important;
}

.vm {
  vertical-align: middle !important;
}

.vb {
  vertical-align: bottom !important;
}

.fl {
  padding: 0 20px 10px 0;
  float: left !important;
}

.fr {
  padding: 0 0 10px 20px;
  float: right !important;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.photo-16-9 {
  position: relative;
}
.photo-16-9::before {
  content: "";
  float: left;
  padding-top: 56.25%;
}
.photo-16-9::after {
  content: "";
  display: block;
  clear: both;
}
.photo-16-9 > :first-child {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.photo-16-9 > .image {
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */