@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-font-base: #3a2e2e;
  --color-primary: #c03636;
  --color-primary-hover: #a32828;
  --color-primary-dark: #9b1e1e;
  --color-primary-dark02: #811414;
  --color-cta: #2688b2;
  --color-cta-hover: #2671a7;
  --color-white: #fff;
  --color-black: #12171b;
  --color-black-hover: #232a30;
  --color-gold: #f1d59f;
  --color-gold02: #c7a054;
  --color-gold03: #f6ebc0;
  --color-gray: #f8f8f8;
  --color-gray02: #bdbdbd;
  --color-gray03: #f5f5f5;
  --color-border: #e1e1e1;
  --color-error: #b32e2e;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 760px;
  --width-content: 960px;
  --width-content-l: 1080px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Zen Old Mincho", serif;
}

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

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

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

fieldset,
img {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input:not([type=checkbox]),
textarea,
select,
button {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  *font-size: 100%;
  border-radius: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  background-color: inherit;
}

input:not([type=checkbox]),
textarea,
select {
  font-size: 16px;
}

textarea {
  resize: vertical;
  display: block;
}

button {
  padding: 0;
  cursor: pointer;
}

legend {
  color: #000;
}

main {
  display: block;
}

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

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

svg {
  display: block;
}

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

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

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

/*!
foundation > base
------------------------------
*/
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.8;
  font-size: 14px;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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

/*!
component > cta
------------------------------
*/
.c-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  background-image: url(../../img/cta-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .c-cta {
    height: 400px;
    background-image: url(../../img/cta-bg-pc.png);
  }
}

.c-cta-inner {
  width: 100%;
  height: 100%;
}
.c-cta-inner > * {
  height: 100%;
}

.c-cta-main {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-cta-main-inner {
  width: 100%;
}

.c-cta-img {
  display: none;
}
@media screen and (min-width: 1080px) {
  .c-cta-img {
    display: block;
    position: absolute;
    left: -128px;
    bottom: 0;
    width: 200px;
  }
}

.c-cta-img02 {
  display: none;
}
@media screen and (min-width: 1080px) {
  .c-cta-img02 {
    display: block;
    position: absolute;
    right: -143px;
    bottom: 0;
    width: 200px;
  }
}

.c-cta-text {
  text-align: center;
  font-size: 20px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  color: var(--color-gold);
}
@media screen and (min-width: 768px) {
  .c-cta-text {
    font-size: 22px;
  }
}

.c-cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  height: 80px;
  margin: 12px auto 0;
  font-size: 20px;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-cta-link {
    height: 120px;
    font-size: 28px;
  }
}
@media (hover: hover) {
  .c-cta-link:hover .c-cta-link-inner {
    background-color: var(--color-primary-hover);
  }
}

.c-cta-link-inner {
  background-color: var(--color-primary);
  color: var(--color-white);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.c-cta-link-shadow {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 80px;
  background-color: rgba(196, 43, 84, 0.2);
  position: absolute;
  left: 8px;
  top: 8px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .c-cta-link-shadow {
    height: 120px;
  }
}

.c-cta-icon {
  width: 30px;
  margin-right: 8px;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-cta-icon {
    width: 54px;
    margin-right: 20px;
  }
}

/*!
page > common
------------------------------
*/
.c-title-en {
  font-weight: bold;
  font-size: 18px;
  display: block;
  text-align: center;
  line-height: 1;
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .c-title-en {
    font-size: 20px;
  }
}

.c-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 34px;
    margin-top: 20px;
  }
}

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

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

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

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

/*!
layout > header
------------------------------
*/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  padding: 16px 8px 0 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 30px 45px 0;
  }
}

.header-logo {
  width: 90px;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 115px;
  }
}

.header-cta-wrap {
  display: flex;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .header-cta-wrap {
    gap: 12px;
  }
}

.header-cta-youtube,
.header-cta-interview {
  padding: 12px 8px;
  line-height: 1;
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .header-cta-youtube,
  .header-cta-interview {
    font-size: 18px;
    padding: 15px 20px;
  }
}

.header-cta-youtube {
  background-color: var(--color-primary);
  color: var(--color-white);
}
@media (hover: hover) {
  .header-cta-youtube:hover {
    background-color: var(--color-primary-hover);
  }
}

.header-cta-interview {
  background-color: var(--color-cta);
  color: var(--color-white);
}
@media (hover: hover) {
  .header-cta-interview:hover {
    background-color: var(--color-cta-hover);
  }
}

.fixed-header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  padding: 12px 8px 12px 12px;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-white);
  box-shadow: 0px 3px 25px rgba(77, 77, 99, 0.1);
  top: -68px;
  display: none;
}
@media screen and (min-width: 768px) {
  .fixed-header {
    padding: 12px 20px;
    top: -82px;
  }
}

/*!
layout > footer
------------------------------
*/
.footer {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 16px 24px;
    font-size: 16px;
  }
}
.footer small {
  display: flex;
  align-items: center;
}
.footer a {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .footer a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .footer a:hover {
    text-decoration: none;
  }
}

/*!
page > kv
------------------------------
*/
.kv-bg {
  overflow: hidden;
}
.kv-bg img {
  aspect-ratio: 2/1.6;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .kv-bg img {
    aspect-ratio: 2/1.4;
    object-position: 0 -50px;
  }
}
@media screen and (min-width: 900px) {
  .kv-bg img {
    aspect-ratio: 0;
    object-position: 0;
    position: absolute;
    right: -29%;
    width: 150%;
  }
}
@media screen and (min-width: 1200px) {
  .kv-bg img {
    right: -3%;
    width: 90%;
  }
}
@media screen and (min-width: 1600px) {
  .kv-bg img {
    right: 0;
    width: 70%;
  }
}

.dummy-img {
  display: none;
}

.kv-main {
  margin-top: -17%;
  background-image: url(../../img/kv-bg02-sp.png);
  background-size: cover;
  background-position: top center;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .kv-main {
    padding: 102px 0 80px;
    grid-column: 1/2;
    grid-row: 1/2;
    margin-top: 0;
    background-position: bottom right -1px;
    background-image: url(../../img/kv-bg02-pc.png);
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .kv-main {
    width: 60%;
    padding: 140px 0 100px;
  }
}
.kv-main:after {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #a32e2e;
}

.kv-main-inner {
  margin: 0 auto;
  width: 90%;
  position: relative;
}
@media screen and (min-width: 900px) {
  .kv-main-inner {
    width: 100%;
    padding-left: 5%;
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 1200px) {
  .kv-main-inner {
    padding-left: calc((100vw - var(--width-content-l)) / 2 - 24px);
    padding-right: 40px;
  }
}

.kv-img-wrap {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .kv-img-wrap {
    margin: 24px 0 0;
  }
}
@media screen and (min-width: 1200px) {
  .kv-img-wrap {
    width: 420px;
    max-width: 420px;
    position: absolute;
    left: 100%;
    bottom: 0;
  }
}

.kv-img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 5px;
  width: 100%;
}

.kv-img-note {
  color: var(--color-white);
  width: 100%;
  text-align: center;
  font-size: 10px;
}
@media screen and (min-width: 900px) {
  .kv-img-note {
    position: absolute;
    left: 0;
    top: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .kv-img-note {
    text-align: right;
    font-size: 12px;
    text-shadow: 1px 1px 2px #767676;
  }
}

@media screen and (min-width: 768px) {
  .kv-text-wrap {
    grid-column: 1/2;
  }
}

.kv-text01 {
  color: var(--color-gold);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 10px;
  margin-top: 10px;
  font-weight: bold;
}
@media screen and (min-width: 500px) {
  .kv-text01 {
    font-size: 26px;
  }
}
@media screen and (min-width: 768px) {
  .kv-text01 {
    font-size: 20px;
  }
}
@media screen and (min-width: 900px) {
  .kv-text01 {
    font-size: 24px;
    margin-top: 0;
    text-align: left;
  }
}
.kv-text01 span {
  display: block;
}
@media screen and (min-width: 768px) {
  .kv-text01 span {
    display: inline;
  }
}

.kv-title {
  margin-top: 6px;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .kv-title {
    text-align: left;
    margin-top: 0;
  }
}

.kv-title-text01 {
  display: block;
  font-size: 26px;
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 0.025em;
}
@media screen and (min-width: 500px) {
  .kv-title-text01 {
    font-size: 36px;
  }
}

.kv-title-text02 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 36px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 500px) {
  .kv-title-text02 {
    flex-direction: row;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 5px 8px;
    gap: 0;
    width: fit-content;
    margin: 4px auto 0;
    font-size: 36px;
  }
}
@media screen and (min-width: 768px) {
  .kv-title-text02 {
    font-size: 48px;
  }
}
@media screen and (min-width: 900px) {
  .kv-title-text02 {
    margin: 4px 0 0 0;
  }
}
@media screen and (min-width: 1080px) {
  .kv-title-text02 {
    font-size: 52px;
  }
}
.kv-title-text02 span {
  display: block;
  background-color: var(--color-white);
  color: var(--color-primary);
  letter-spacing: 0.025em;
  font-weight: bold;
  width: fit-content;
  line-height: 1;
  padding: 5px 8px;
}
@media screen and (min-width: 500px) {
  .kv-title-text02 span {
    padding: 0;
    display: inline-block;
  }
}

.kv-text02 {
  margin-top: 10px;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 16px;
}
@media screen and (min-width: 500px) {
  .kv-text02 {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 900px) {
  .kv-text02 {
    justify-content: flex-start;
  }
}
.kv-text02 span {
  display: block;
  letter-spacing: 0.4em;
  color: var(--color-white);
  padding-left: 0.4em;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  border: 1px solid var(--color-white);
  background-color: rgba(255, 255, 255, 0.15);
}
@media screen and (min-width: 500px) {
  .kv-text02 span {
    width: fit-content;
    margin: 0 auto;
    padding: 0 6px 0 calc(6px + 0.4em);
    margin: 0;
  }
}
.kv-text02 p {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
}
@media screen and (min-width: 500px) {
  .kv-text02 p {
    font-size: 18px;
  }
}

.kv-link-copy {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  font-weight: bold;
}

.kv-link-wrap {
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .kv-link-wrap {
    max-width: 520px;
  }
}
@media screen and (min-width: 900px) {
  .kv-link-wrap {
    margin: 20px 0 0;
  }
}

.kv-link {
  font-size: 16px;
  position: relative;
  margin: 5px auto 0;
  display: block;
}
@media (hover: hover) {
  .kv-link:hover .kv-link-inner {
    background-color: var(--color-black-hover);
  }
}

.kv-link-inner {
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  height: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .kv-link-inner {
    height: 80px;
    font-size: 20px;
    justify-content: flex-start;
    padding-left: 40px;
  }
}
.kv-link-inner:after {
  content: "";
  display: block;
  width: 100%; /*画像の幅*/
  height: 100%; /*画像の高さ*/
  background-image: url(../../img/thumbnail.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .kv-link-inner:after {
    background-image: url(../../img/thumbnail02.png);
  }
}

.kv-link-icon {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .kv-link-icon {
    width: 46px;
  }
}

.kv-link-shadow {
  display: block;
  width: 100%;
  height: 70px;
  max-width: 320px;
  background-color: rgba(118, 38, 38, 0.5);
  position: absolute;
  left: 6px;
  top: 6px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .kv-link-shadow {
    max-width: 520px;
    height: 80px;
  }
}

/*!
page > problem
------------------------------
*/
.problem {
  background-image: url(../../img/problem-bg-sp.jpg);
  background-size: cover;
  background-position: center;
  padding: 60px 0 72px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .problem {
    background-image: url(../../img/problem-bg-pc.jpg);
    padding: 75px 0 86px;
  }
}

.problem-inner {
  position: relative;
  background: var(--color-white);
  border: solid 3px #e3e3e3;
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .problem-inner {
    padding: 60px 40px;
  }
}
.problem-inner:before {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 50%;
  margin-left: -29px;
  border: 25px solid transparent;
  border-top: 25px solid var(--color-white);
  z-index: 2;
}
.problem-inner::after {
  content: "";
  position: absolute;
  bottom: -56px;
  left: 50%;
  margin-left: -32px;
  border: 28px solid transparent;
  border-top: 28px solid #e3e3e3;
  z-index: 1;
}

.problem-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .problem-title {
    font-size: 32px;
  }
}
.problem-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .problem-title span {
    display: inline;
  }
}

.problem-list-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.problem-item {
  font-size: 17px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .problem-item {
    font-size: 20px;
    gap: 15px;
  }
}
.problem-item:before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background-image: url(../../img/icon-check.svg);
  background-size: contain;
  transform: translateY(8px);
}
@media screen and (min-width: 768px) {
  .problem-item:before {
    transform: translateY(7px);
  }
}

/*!
page > solution
------------------------------
*/
.solution {
  padding: 0 0 75px;
  background-image: url(../../img/solution-bg-sp.jpg);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .solution {
    background-image: url(../../img/solution-bg-pc.jpg);
    padding: 0 0 125px;
  }
}

.solution-head {
  padding-bottom: 64px;
  background-image: url(../../img/solution-head-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .solution-head {
    background-image: url(../../img/solution-head-bg-pc.png);
  }
}

.solution-title {
  padding: 60px 0 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solution-title {
    padding: 75px 0;
  }
}

.solution-title-text01 {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .solution-title-text01 {
    font-size: 34px;
  }
}

.solution-title-text02 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 500px) {
  .solution-title-text02 {
    flex-direction: row;
    gap: 0;
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 6px 8px;
    width: fit-content;
    margin: 4px auto 0;
  }
}
@media screen and (min-width: 768px) {
  .solution-title-text02 {
    font-size: 38px;
    display: inline-flex;
  }
}
.solution-title-text02 span {
  display: block;
  background-color: var(--color-white);
  color: var(--color-primary);
  letter-spacing: 0.025em;
  font-weight: bold;
  width: fit-content;
  line-height: 1;
  padding: 5px 8px;
}
@media screen and (min-width: 500px) {
  .solution-title-text02 span {
    display: inline;
    padding: 0;
  }
}

.solution-title-text03 {
  display: block;
  font-size: 32px;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .solution-title-text03 {
    font-size: 38px;
  }
}
@media screen and (min-width: 1080px) {
  .solution-title-text03 {
    display: inline;
  }
}

.solution-body {
  padding: 50px 20px;
  background-color: var(--color-white);
  margin-top: -64px;
}
@media screen and (min-width: 768px) {
  .solution-body {
    padding: 50px 50px;
  }
}
@media screen and (min-width: 1080px) {
  .solution-body {
    padding: 75px 110px;
  }
}

.solution-body-title-en {
  font-size: 16px;
  letter-spacing: 0.025em;
  color: var(--color-primary);
  display: block;
  text-align: center;
}

.solution-body-title {
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
}

.solution-body-title-text01 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
@media screen and (min-width: 500px) {
  .solution-body-title-text01 {
    flex-direction: row;
    gap: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 6px 8px;
    width: fit-content;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .solution-body-title-text01 {
    font-size: 34px;
    display: inline-flex;
  }
}
.solution-body-title-text01 span {
  display: block;
  background-color: var(--color-primary);
  color: var(--color-white);
  letter-spacing: 0.025em;
  font-weight: bold;
  width: fit-content;
  line-height: 1;
  padding: 5px 8px;
}
@media screen and (min-width: 500px) {
  .solution-body-title-text01 span {
    display: inline;
    padding: 0;
  }
}

.solution-body-text {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  margin-top: 35px;
}
@media screen and (min-width: 768px) {
  .solution-body-text {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  .solution-body-text > span {
    display: block;
  }
}
.solution-body-text > span:nth-child(2) {
  margin-top: 16px;
}

.solution-body-text-strong {
  font-weight: bold;
  color: var(--color-primary);
}

.solution-img {
  margin-top: 35px;
}
.solution-img img {
  aspect-ratio: 562/303;
}
@media screen and (min-width: 768px) {
  .solution-img img {
    aspect-ratio: 1722/381;
  }
}

.solution-program {
  margin-top: 40px;
}

.solution-program-title-wrap {
  position: relative;
}

.solution-program-title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 26px;
  letter-spacing: 0.025em;
  color: var(--color-primary);
  font-weight: bold;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solution-program-title {
    font-size: 32px;
  }
}

.solution-program-title-img {
  width: 207px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .solution-program-title-img {
    width: 324px;
  }
}

.solution-program-list {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}
@media screen and (min-width: 1080px) {
  .solution-program-list {
    margin-top: 0;
    flex-direction: row;
    align-items: center;
  }
}

.solution-arrow {
  width: 18px;
  height: 18px;
  margin: 8px auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1080px) {
  .solution-arrow {
    width: 22px;
    height: 22px;
    margin: 40px 10px 0;
    transform: rotate(-90deg);
  }
}
.solution-arrow svg {
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .solution-program-item {
    width: calc(33.3333333333% - 28px);
  }
}

.solution-program-item-step {
  width: 50px;
  height: 50px;
  background-color: var(--color-primary-dark02);
  transform: rotate(45deg);
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .solution-program-item-step {
    width: 55px;
    height: 55px;
  }
}

.solution-program-item-step-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.solution-program-item-step-inner span {
  display: block;
  text-align: center;
  line-height: 1;
  color: var(--color-gold03);
  letter-spacing: 0.025em;
}

.solution-program-item-step-text {
  font-size: 12px;
}

.solution-program-item-step-num {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .solution-program-item-step-num {
    font-size: 24px;
  }
}

.solution-program-item-body {
  background-color: var(--color-primary-dark);
  margin-top: -25px;
  padding: 40px 14px 20px 14px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body {
    margin-top: -28px;
    padding: 56px 8px 32px;
  }
}

.solution-program-item-body-inner {
  display: grid;
  grid-template-columns: 89px 1fr;
  grid-template-rows: max-content max-content;
  gap: 0 10px;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.solution-program-item-body-title {
  align-self: flex-end;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body-title {
    align-self: center;
    text-align: center;
  }
}
.solution-program-item-body-title span {
  color: var(--color-white);
  display: block;
  line-height: 1;
  font-weight: bold;
}
.solution-program-item-body-title span:nth-child(1) {
  font-size: 20px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body-title span:nth-child(1) {
    font-size: 22px;
  }
}
.solution-program-item-body-title span:nth-child(2) {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 5px;
}

.solution-program-item-body-img {
  width: 89px;
  grid-column: 1/2;
  grid-row: 1/3;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body-img {
    margin: 10px auto 0;
    width: 106px;
  }
}

.solution-program-item-body-text {
  font-size: 15px;
  color: var(--color-white);
  letter-spacing: 0.025em;
  padding-top: 10px;
}
@media screen and (min-width: 768px) {
  .solution-program-item-body-text {
    padding-top: 0;
    font-size: 18px;
  }
}

/*!
page > feature
------------------------------
*/
.feature {
  padding: 0 0 75px;
  background-color: var(--color-gray03);
}
@media screen and (min-width: 768px) {
  .feature {
    padding: 0 0 125px;
  }
}

.feature-head {
  padding-bottom: 64px;
  background: linear-gradient(90deg, #9b1e1e 1.53%, rgba(155, 30, 30, 0) 55.24%), url(../../img/feature-head-bg-sp.jpg);
  background-size: cover;
  background-position: top right;
}
@media screen and (min-width: 768px) {
  .feature-head {
    background: linear-gradient(90deg, #9b1e1e 1.53%, rgba(155, 30, 30, 0) 55.24%), url(../../img/feature-head-bg-pc.jpg);
    background-size: cover;
    background-position: 65% 0;
  }
}

.feature-head-inner {
  padding: 60px 0 40px;
}
@media screen and (min-width: 768px) {
  .feature-head-inner {
    padding: 75px 0;
  }
}

.feature-title-en {
  font-size: 16px;
  letter-spacing: 0.025em;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .feature-title-en {
    font-size: 20px;
  }
}

.feature-title {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .feature-title {
    margin-top: 32px;
    display: flex;
    gap: 6px;
  }
}

.feature-title-text01 {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .feature-title-text01 {
    font-size: 34px;
    background-color: var(--color-primary);
    width: fit-content;
    flex-direction: row;
    gap: 0;
    padding: 10px 16px;
  }
}
.feature-title-text01 span {
  background-color: var(--color-primary);
  color: var(--color-white);
  letter-spacing: 0.025em;
  font-weight: bold;
  width: fit-content;
  line-height: 1;
  padding: 5px 8px;
}
@media screen and (min-width: 768px) {
  .feature-title-text01 span {
    padding: 0;
  }
}

.feature-title-text02 {
  font-size: 28px;
  color: var(--color-white);
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .feature-title-text02 {
    font-size: 34px;
  }
}

.feature-body {
  margin-top: -64px;
  background-color: var(--color-white);
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .feature-body {
    padding: 50px 32px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (min-width: 1080px) {
  .feature-body {
    padding: 50px 60px;
    gap: 28px;
  }
}

.feature-item {
  background-color: var(--color-primary-dark);
  padding: 20px 12px;
}
@media screen and (min-width: 768px) {
  .feature-item {
    padding: 28px 12px;
    display: flex;
    flex-direction: column;
  }
}

.feature-item-img {
  width: 100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .feature-item-img {
    width: 145px;
  }
}

.feature-item-text {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-top: 20px;
  color: var(--color-gold);
}
@media screen and (min-width: 768px) {
  .feature-item-text {
    font-size: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1080px) {
  .feature-item-text {
    font-size: 24px;
  }
}

/*!
page > review
------------------------------
*/
.review {
  padding: 75px 0 100px;
  background-image: url(../../img/review-bg-sp.jpg);
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .review {
    background-image: url(../../img/review-bg-pc.jpg);
    padding: 100px 0 125px;
  }
}

.review-body {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .review-body {
    margin-top: 60px;
    gap: 50px;
  }
}

@media screen and (min-width: 768px) {
  .review-item {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .review-item-img {
    width: 40%;
  }
}
.review-item-img img {
  aspect-ratio: 647/431;
}
@media screen and (min-width: 768px) {
  .review-item-img img {
    aspect-ratio: 760/857;
  }
}

.review-item-main {
  width: calc(100% - 10px);
  margin-left: auto;
  margin-top: -14px;
}
@media screen and (min-width: 768px) {
  .review-item-main {
    margin-left: -20px;
    margin-top: 24px;
    width: calc(60% + 20px);
  }
}

.review-item-head {
  background-image: url(../../img/review-head-sp.png);
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .review-item-head {
    padding: 20px 40px;
    background-image: url(../../img/review-head-pc.png);
  }
}

.review-item-head-text01 {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-gold);
}
@media screen and (min-width: 768px) {
  .review-item-head-text01 {
    font-size: 22px;
  }
}

.review-item-head-text02 {
  color: var(--color-white);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .review-item-head-text02 {
    font-size: 15px;
  }
}

.review-item-head-name {
  font-size: 18px;
}

.review-item-text {
  background-color: var(--color-white);
  font-size: 15px;
  line-height: 1.8;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .review-item-text {
    font-size: 16px;
    padding: 20px 40px;
  }
}
.review-item-text p:not(:first-child) {
  margin-top: 12px;
}

/*!
page > flow
------------------------------
*/
.flow {
  padding: 75px 0 100px;
  background-color: var(--color-gray);
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 100px 0 125px;
  }
}

.flow-body {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .flow-body {
    margin-top: 60px;
  }
}

.flow-arrow {
  display: flex;
  justify-content: center;
  margin: 12px auto;
}
.flow-arrow svg {
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 768px) {
  .flow-arrow svg {
    width: 22px;
    height: 22px;
  }
}

.flow-step {
  background-color: var(--color-primary-dark);
  color: var(--color-gold);
  padding: 8px;
}

.flow-step-text {
  display: block;
  font-size: 14px;
  letter-spacing: 0.025;
  text-align: center;
  line-height: 1;
}

.flow-step-num {
  display: block;
  font-size: 22px;
  letter-spacing: 0.025;
  text-align: center;
  line-height: 1;
  margin-top: 5px;
}

.flow-box-body {
  background-color: var(--color-white);
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .flow-box-body {
    padding: 35px 30px;
  }
}

.flow-box-body-text {
  font-size: 20px;
  display: block;
  text-align: center;
  letter-spacing: 0.025em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .flow-box-body-text {
    text-align: left;
    font-size: 24px;
  }
}

.flow-box-body-text02 {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--color-gray02);
}
@media screen and (min-width: 768px) {
  .flow-box-body-text02 {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .flow-box-body-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.flow-box-body-link-copy {
  color: var(--color-gold02);
  font-size: 14px;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .flow-box-body-link-copy {
    font-size: 16px;
  }
}

.flow-box-body-link-wrap {
  width: 100%;
  max-width: 320px;
  margin: 20px auto 0;
}
@media screen and (min-width: 768px) {
  .flow-box-body-link-wrap {
    margin: 0;
  }
}

.flow-box-body-link {
  font-size: 16px;
  position: relative;
  margin: 5px auto 0;
  display: block;
}
@media (hover: hover) {
  .flow-box-body-link:hover .flow-box-body-link-inner {
    background-color: var(--color-black-hover);
  }
}

.flow-box-body-link-inner {
  font-size: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  height: 70px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: 0.3s;
  position: relative;
}
@media screen and (min-width: 768px) {
  .flow-box-body-link-inner {
    height: 80px;
    font-size: 18px;
  }
}
.flow-box-body-link-inner:after {
  content: "";
  display: block;
  width: 100%; /*画像の幅*/
  height: 100%; /*画像の高さ*/
  background-image: url(../../img/thumbnail.png);
  background-size: aute 100%;
  background-repeat: no-repeat;
  background-position: right;
  position: absolute;
  right: 0;
  top: 0;
}

.flow-box-body-link-shadow {
  display: block;
  width: 100%;
  height: 70px;
  max-width: 320px;
  background-color: rgba(118, 38, 38, 0.5);
  position: absolute;
  left: 6px;
  top: 6px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .flow-box-body-link-shadow {
    height: 80px;
  }
}

.flow-box-body-link-icon {
  display: block;
  width: 28px;
}
@media screen and (min-width: 768px) {
  .flow-box-body-link-icon {
    width: 34px;
  }
}

.flow-box-body-link02 {
  font-size: 18px;
  max-width: 280px;
  display: block;
  text-align: center;
  margin: 6px auto 0;
  color: var(--color-primary-dark);
  border-bottom: 1px solid var(--color-primary-dark);
}
@media screen and (min-width: 768px) {
  .flow-box-body-link02 {
    font-size: 20px;
  }
}

/*!
page > faq
------------------------------
*/
.faq {
  padding: 75px 0 100px;
  background-color: var(--color-gray);
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 100px 0 125px;
  }
}

.faq-title-en {
  font-weight: bold;
  font-size: 18px;
  display: block;
  text-align: center;
  line-height: 1;
  color: var(--color-primary);
}
@media screen and (min-width: 768px) {
  .faq-title-en {
    font-size: 20px;
  }
}

.faq-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.7;
  text-align: center;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .faq-title {
    font-size: 34px;
    margin-top: 20px;
  }
}

.faq-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .faq-body {
    margin-top: 60px;
  }
}

.faq-accordion-details {
  counter-increment: counter;
}

.faq-question {
  font-weight: bold;
  color: var(--color-white);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.025em;
  padding-right: 40px;
}
@media screen and (min-width: 768px) {
  .faq-question {
    font-size: 20px;
  }
}
.faq-question::before {
  content: "Q" counter(counter) ".";
  font-family: var(--font-family-en);
  font-size: 19px;
}
@media screen and (min-width: 768px) {
  .faq-question::before {
    font-size: 21px;
  }
}

.faq-answer {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .faq-answer {
    font-size: 16px;
  }
}

.faq-accordion-summary {
  cursor: pointer;
  background-color: var(--color-primary-dark);
  display: block;
  padding: 15px 20px;
  font-weight: bold;
  position: relative;
}
.faq-accordion-summary::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 768px) {
  .faq-accordion-summary {
    padding: 25px 30px;
  }
}

.faq-accordion-contents {
  overflow: hidden;
}

.faq-accordion-contents-inner {
  padding: 15px 20px;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .faq-accordion-contents-inner {
    padding: 20px 30px;
  }
}

.faq-accordion-icon {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
}
@media screen and (min-width: 768px) {
  .faq-accordion-icon {
    right: 33px;
    width: 24px;
    height: 24px;
  }
}

.faq-accordion-icon span {
  content: "";
  display: block;
  background-color: var(--color-white);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-accordion-icon span:nth-child(1) {
  width: 100%;
  height: 1px;
}

.faq-accordion-icon span:nth-child(2) {
  width: 1px;
  height: 100%;
  transition: 0.3s;
}

.faq-accordion-details.is-open .faq-accordion-icon span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*!
page > form
------------------------------
*/
.form {
  padding: 75px 0 100px;
  background-image: url(../../img/form-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .form {
    background-image: url(../../img/form-bg-pc.png);
    padding: 100px 0 125px;
  }
}

.form-title {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  line-height: 1.7;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .form-title {
    font-size: 34px;
  }
}
.form-title span {
  display: block;
}
@media screen and (min-width: 768px) {
  .form-title span {
    display: inline;
  }
}

.form-body {
  margin-top: 35px;
  background-color: var(--color-white);
  padding: 30px 12px;
}
@media screen and (min-width: 768px) {
  .form-body {
    padding: 40px 72px;
  }
}
.form-body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 8px;
}
.form-body fieldset {
  width: 100%;
  max-width: none !important;
}
.form-body label {
  font-weight: bold;
  margin-top: 4px;
  display: block;
}
.form-body input[type=text],
.form-body input[type=tel],
.form-body input[type=email] {
  height: 50px;
  width: 100% !important;
  padding: 0 16px;
  border: none;
  box-shadow: 0 0 0 1px var(--color-border) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--color-gray);
}
.form-body input:not([type=checkbox]):focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-body input[type=checkbox] {
  width: 24px;
  height: 24px;
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}
.form-body input[type=submit] {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 74px;
  max-width: 320px;
  padding: 8px;
  border: none;
  background-color: var(--color-black);
  color: var(--color-gold);
  font-weight: bold;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  font-size: 20px;
  transition: 0.3s;
}
.form-body input[type=submit]:hover {
  background-color: var(--color-black-hover);
}
.form-body input[type=submit]:focus {
  outline: 0;
  border: 2px solid rgb(33, 150, 243);
  box-shadow: none;
}
.form-body .hs-fieldtype-select .input {
  position: relative;
  background-color: var(--color-gray);
}
.form-body .hs-fieldtype-select .input:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(135deg);
  pointer-events: none;
}
.form-body .hs-fieldtype-select .input select {
  height: 50px;
  width: 100% !important;
  padding: 0 8px;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 0 1px var(--color-border) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.form-body .hs-fieldtype-select .input select::-ms-expand {
  display: none;
}
.form-body .hs-fieldtype-select .input select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgb(33, 150, 243) inset;
}
.form-body .hs-form-booleancheckbox {
  display: flex;
}
.form-body .hs-fieldtype-booleancheckbox .hs-error-msg {
  text-align: center;
}
.form-body .hs-form-booleancheckbox-display {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  cursor: pointer;
  margin: 0 auto;
}
.form-body .hs-form-booleancheckbox-display span {
  font-weight: normal;
  margin-left: 8px !important;
}
.form-body .hs-form-booleancheckbox-display a {
  text-decoration: underline;
}
.form-body .hs-error-msg,
.form-body .hs-form-required,
.form-body .hs-error-msgs label {
  color: var(--color-error) !important;
  font-weight: normal !important;
}
.form-body .hs_error_rollup {
  text-align: center;
}

.form-scroll-point {
  padding-top: 68px;
  margin-top: -68px;
}
@media screen and (min-width: 768px) {
  .form-scroll-point {
    padding-top: 82px;
    margin-top: -82px;
  }
}

/*!
page > thanks
------------------------------
*/
.thanks-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.thanks-header {
  padding: 84px 0 120px;
  background-image: url(../../img/solution-head-bg-sp.png);
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .thanks-header {
    padding: 84px 0 140px;
    background-image: url(../../img/solution-head-bg-pc.png);
  }
}

.thanks-header-logo {
  width: 80px;
  margin: 0 auto;
  position: absolute;
  left: 16px;
  top: 16px;
}
@media screen and (min-width: 768px) {
  .thanks-header-logo {
    width: 100px;
    left: 24px;
    top: 24px;
  }
}

.thanks-header-title-en {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .thanks-header-title-en {
    font-size: 14px;
  }
}

.thanks-header-title {
  margin-top: 6px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .thanks-header-title {
    font-size: 28px;
  }
}

.thanks-mian {
  margin-top: -100px;
  margin-bottom: 40px;
  flex: 1;
}

.thanks-mian-inner {
  padding: 40px 24px;
  background-color: var(--color-white);
  box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}
@media screen and (min-width: 768px) {
  .thanks-mian-inner {
    padding: 48px 80px;
  }
}

.thanks-text {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .thanks-text {
    font-size: 18px;
  }
}
.thanks-text > span {
  display: block;
}

.thanks-text02 {
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .thanks-text02 {
    font-size: 16px;
  }
}
.thanks-text02 > span {
  display: block;
}

.thanks-link {
  display: block;
  margin: 40px auto 0;
  width: 100%;
  max-width: 320px;
  padding: 16px 0;
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-left: 0.05em;
  font-size: 18px;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .thanks-link {
    font-size: 20px;
  }
}
@media (hover: hover) {
  .thanks-link:hover {
    background-color: var(--color-black-hover);
  }
}

.thanks-link-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.thanks-link-icon {
  width: 30px;
}

.thanks-meeting {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .thanks-meeting {
    margin-top: 48px;
  }
}

.thanks-meeting-text {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: var(--color-gold02);
}
@media screen and (min-width: 768px) {
  .thanks-meeting-text {
    font-size: 20px;
  }
}

.thanks-meeting-main {
  margin-top: 8px;
}
.thanks-meeting-main iframe {
  width: 100% !important;
  min-width: 0 !important;
}

/*# sourceMappingURL=style.css.map */
