@charset "UTF-8";

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

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

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ol,
ul {
  list-style: none;
}

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

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
  border-style: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

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

/* base.scss */
.mode_pc {
  display: none !important;
}

@media (min-width: 1024px) {
  .mode_pc {
    display: inline-block !important;
  }
}

@media (min-width: 1024px) {
  .mode_sp {
    display: none !important;
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 15px;
  margin: 0;
  background: #fff;
  color: #3B3B3B;
}

@media (min-width: 1024px) {
  body {
    font-size: 20px;
  }
}

body.js-fixed {
  overflow: hidden;
  touch-action: none;
}

header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}

header .sp-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 12px 12px 0 0;
}

header .hamburger {
  display: flex;
  flex-direction: column;
  width: 43px;
  height: 43px;
  justify-content: center;
  background: #fff;
  border: 1px solid #E37439;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}

header .hamburger span {
  width: 14px;
  display: block;
  height: 1px;
  margin: 2px auto;
  background: #E37439;
  transition: 0.3s;
}

header .hamburger.js-open span {
  width: 17px;
}

header .hamburger.js-open span:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 5px;
}

header .hamburger.js-open span:nth-of-type(2) {
  opacity: 0;
}

header .hamburger.js-open span:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -5px;
}

header .sp-nav {
  transform: translate(100vw, 0);
  translate: 100vw 0;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 1000;
  flex-direction: column;
  transition: all 0.3s;
}

header .sp-nav-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
}

header .sp-nav-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header .sp-nav-items a {
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 32px;
  color: #E37439;
}

header .sp-nav-items a:nth-last-of-type(1) {
  margin-bottom: 55px;
}

header .sp-nav-items a .nav-en {
  display: block;
  font-size: 10px;
  font-weight: 300;
}

header .sp-nav-logo {
  width: 49%;
}

header .sp-nav-logo img {
  margin: 0 auto;
}

header .sp-nav.js-open {
  transform: translate(0, 0);
  translate: 0;
}

@media (min-width: 1024px) {

  header .sp-header,
  header .hamburger,
  header .sp-nav {
    display: none;
  }
}

header .pc-header {
  display: none;
  height: 100px;
  padding: 12px 30px;
  align-items: center;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  header .pc-header {
    display: flex;
  }
}

header .pc-header .pc-nav-logo {
  width: 12%;
  max-width: 196px;
  background: url("/assets/img/logo_w.svg") no-repeat center;
  background-size: contain;
}

header .pc-header .pc-nav-logo span {
  opacity: 0;
}

header .pc-header .pc-nav {
  width: 88%;
  padding-left: 6vw;
}

header .pc-header .pc-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .pc-header .pc-nav-items {
  display: flex;
}

header .pc-header .pc-nav-items li {
  margin-right: 6vw;
}

header .pc-header .pc-nav-items li a {
  color: #fff;
  font-size: 1.4vw;
  font-weight: 600;
  transition: all 0.2s;
}

header .pc-header .pc-nav-items li a:hover {
  opacity: 0.8;
}

header .pc-header .pc-nav-btn {
  display: flex;
  width: 41%;
  justify-content: space-between;
}

header .pc-header .pc-nav-btn .btn-style {
  width: 48%;
  max-width: 300px;
}

header .pc-header .pc-nav-btn .btn-style a {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 14px;
  padding: 16px 26px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  position: relative;
  border: 2px solid #fff;
  border-radius: 50px;
  background: #E37439;
  transition: all 0.2s;
}

header .pc-header .pc-nav-btn .btn-style a::after {
  content: "";
  width: 18px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8%;
  margin: auto;
  background: url("/assets/img/icon_arrow_w.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 1024px) {
  header .pc-header .pc-nav-btn .btn-style a:hover {
    color: #FFFF00;
    background: #FD8241;
  }

  header .pc-header .pc-nav-btn .btn-style a:hover::after {
    background: url("/assets/img/icon_arrow_y.svg") no-repeat center;
    background-size: contain;
    left: 9%;
  }
}

header .pc-header .pc-nav-btn .btn-style.green-btn a {
  background: #3BC121;
}

@media (min-width: 1024px) {
  header .pc-header .pc-nav-btn .btn-style.green-btn a:hover {
    background: #3BC121;
  }
}

@media (min-width: 1024px) {
  header .pc-header.js-active {
    background: #fff;
    box-shadow: 0 1px 4px #a8a8a8;
  }

  header .pc-header.js-active .pc-nav-logo {
    background: url("/assets/img/logo_b.svg") no-repeat center;
    background-size: contain;
  }

  header .pc-header.js-active .pc-nav-items li a {
    color: #3B3B3B;
  }
}

.main-contents {
  overflow: hidden;
}

.title-main {
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 42px;
}

@media (min-width: 1024px) {
  .title-main {
    font-size: 30px;
    text-align: left;
    margin: 0 auto 42px;
  }
}

.title-main .en-title {
  font-size: 13px;
  color: #3BC121;
  display: inline-block;
  width: 100%;
  margin: 0 auto 15px;
}

@media (min-width: 1024px) {
  .title-main .en-title {
    font-size: 15px;
    margin: 0 auto 30px;
  }
}

.float-btn {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  padding-bottom: 14px;
  display: flex;
  justify-content: center;
}

.float-btn.js-hide {
  display: none;
}

.float-btn-item {
  width: 42%;
  margin: 0 7px;
}

.float-btn-item a {
  width: 100%;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  padding: 12px 17px;
  line-height: 1;
  color: #fff;
  font-weight: 600;
  position: relative;
  border: 1px solid #fff;
  border-radius: 50px;
  background: #E37439;
}

.float-btn-item a::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8%;
  margin: auto;
  background: url("/assets/img/icon_arrow_w.svg") no-repeat center;
  background-size: contain;
}

.float-btn-item.green-btn a {
  background: #3BC121;
}

.fv {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.fv-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.fv-bg .fv-bg-swiper {
  width: 100%;
  height: 100%;
}

.fv-bg .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.fv-bg .swiper-slide {
  width: 100%;
  height: 100%;
}

.fv-bg .slide-01 {
  background: url("/assets/img/mv_bg_01_sp.jpg") no-repeat center;
  background-size: cover;
}

@supports (background-image: url("/assets/img/mv_bg_01_sp.webp")) {
  .fv-bg .slide-01 {
    background: url("/assets/img/mv_bg_01_sp.webp") no-repeat center/cover;
  }
}

@media (min-width: 1024px) {
  .fv-bg .slide-01 {
    background: url("/assets/img/mv_bg_01.jpg") no-repeat center;
    background-size: cover;
  }

  @supports (background-image: url("/assets/img/mv_bg_01.webp")) {
    .fv-bg .slide-01 {
      background: url("/assets/img/mv_bg_01.webp") no-repeat center/cover;
    }
  }
}

.fv-bg .slide-02 {
  background: url("/assets/img/mv_bg_02_sp.jpg") no-repeat center;
  background-size: cover;
}

@supports (background-image: url("/assets/img/mv_bg_02_sp.webp")) {
  .fv-bg .slide-02 {
    background: url("/assets/img/mv_bg_02_sp.webp") no-repeat center/cover;
  }
}

@media (min-width: 1024px) {
  .fv-bg .slide-02 {
    background: url("/assets/img/mv_bg_02.jpg") no-repeat center;
    background-size: cover;
  }

  @supports (background-image: url("/assets/img/mv_bg_02.webp")) {
    .fv-bg .slide-02 {
      background: url("/assets/img/mv_bg_02.webp") no-repeat center/cover;
    }
  }
}

.fv-bg .slide-03 {
  background: url("/assets/img/mv_bg_03_sp.jpg") no-repeat center;
  background-size: cover;
}

@supports (background-image: url("/assets/img/mv_bg_03_sp.webp")) {
  .fv-bg .slide-03 {
    background: url("/assets/img/mv_bg_03_sp.webp") no-repeat center/cover;
  }
}

@media (min-width: 1024px) {
  .fv-bg .slide-03 {
    background: url("/assets/img/mv_bg_03.jpg") no-repeat center;
    background-size: cover;
  }

  @supports (background-image: url("/assets/img/mv_bg_03.webp")) {
    .fv-bg .slide-03 {
      background: url("/assets/img/mv_bg_03.webp") no-repeat center/cover;
    }
  }
}

.fv-content {
  width: 92%;
  max-width: 1300px;
  height: 100%;
  padding-top: 16%;
  position: relative;
  text-align: center;
  z-index: 1;
}

@media (min-width: 1024px) {
  .fv-content {
    padding-top: 0;
    display: flex;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .fv-content {
    padding-top: 20px;
  }
}

.fv-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/img/fv_text_bg_sp.svg") no-repeat center 10vw;
  background-size: contain;
  opacity: 0.95;
  pointer-events: none;
  z-index: -1;
  top: -1%;
}

@media (min-width: 1024px) {
  .fv-content::before {
    background: url("/assets/img/fv_text_bg.svg") no-repeat center;
    background-size: contain;
  }
}

.fv-text {
  font-size: 18px;
  font-weight: 600;
}

@media (min-width: 820px) {
  .fv-text {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .fv-text {
    font-size: 1.6vw;
  }
}

@media (min-width: 1200px) {
  .fv-text {
    font-size: 19px;
  }
}

.fv-text .or_text {
  color: #E37439;
  font-size: 23px;
}

@media (min-width: 820px) {
  .fv-text .or_text {
    font-size: 33px;
  }
}

@media (min-width: 1024px) {
  .fv-text .or_text {
    font-size: 2.1vw;
  }
}

@media (min-width: 1200px) {
  .fv-text .or_text {
    font-size: 26px;
  }
}

@media (min-width: 1024px) {
  .fv-text-large {
    margin: 1vw auto 3vw;
    padding: 1vw 0;
    border-top: 1px solid #3B3B3B;
    border-bottom: 1px solid #3B3B3B;
  }
}

.fv-content-main {
  width: 72%;
  display: flex;
  justify-items: center;
  align-items: center;
  margin: 0 auto 7%;
}

@media (min-width: 820px) {
  .fv-content-main {
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .fv-content-main {
    align-items: start;
    margin: 0 auto;
  }
}

.fv-video {
  width: 66%;
}

@media (min-width: 820px) {
  .fv-video {
    width: 51%;
  }
}

@media (min-width: 1024px) {
  .fv-video {
    width: 36%;
    padding-top: 6%;
  }
}

.fv-video-item {
  rotate: -5deg;
}

.fv-video-mask {
  mask-image: url("/assets/img/fv_smartphone_mask.png");
  -webkit-mask-image: url("/assets/img/fv_smartphone_mask.png");
  mask-size: cover;
  -webkit-mask-size: cover;
}

.fv-video-base {
  position: absolute;
  top: 0;
  left: 0;
}

.fv-mainText {
  width: 30%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: relative;
  font-size: 19px;
  font-weight: 600;
}

@media (min-width: 820px) {
  .fv-mainText {
    width: 27%;
    font-size: 35px;
  }
}

@media (min-width: 1024px) {
  .fv-mainText {
    width: 65%;
    writing-mode: initial;
    font-size: 3.4vw;
    padding-top: 6%;
  }
}

@media (min-width: 1200px) {
  .fv-mainText {
    font-size: 40px;
  }
}

.fv-mainText::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #3B3B3B;
  position: absolute;
  top: -7%;
  right: 0;
  rotate: -24deg;
}

@media (min-width: 1024px) {
  .fv-mainText::before {
    content: none;
  }
}

.fv-mainText::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #3B3B3B;
  position: absolute;
  bottom: -7%;
  right: 0;
  rotate: 24deg;
}

@media (min-width: 1024px) {
  .fv-mainText::after {
    content: none;
  }
}

.fv-mainText .top_quotation {
  rotate: -60deg;
  translate: 5px 5px;
  display: inline-block;
}

@media (min-width: 1024px) {
  .fv-mainText .top_quotation {
    rotate: 0deg;
    translate: -1px -5px;
  }
}

.fv-mainText .bottom_quotation {
  rotate: 120deg;
  translate: -5px -5px;
  display: inline-block;
}

@media (min-width: 1024px) {
  .fv-mainText .bottom_quotation {
    rotate: 0deg;
  }
}

.fv-logo {
  width: 68%;
  margin: 0 auto;
}

@media (min-width: 820px) {
  .fv-logo {
    width: 56%;
  }
}

.fv-logo a {
  display: inline-block;
}

.fv-down-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5vw;
}

.fv-down-icon a {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 15px;
  transition: all 0.3s;
}

.fv-down-icon a::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  width: 0.8em;
  height: 0.8em;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.fv-down-icon a:hover {
  translate: 0 4px;
  opacity: 0.8;
}

.probrem,
.solve,
.example,
.voice,
.flow,
.faq,
.contact {
  width: 100%;
  padding: 42px 0;
  position: relative;
}

@media (min-width: 1024px) {

  .probrem,
  .solve,
  .example,
  .voice,
  .flow,
  .faq,
  .contact {
    padding: 100px 0;
  }
}

.probrem {
  background: #ECF7EA;
  position: relative;
  padding: 50px 0 11%;
}

@media (min-width: 1024px) {
  .probrem {
    padding: 100px 0 200px;
  }
}

.probrem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 87%;
  max-width: 1200px;
  padding-top: 12%;
  display: block;
  border-radius: 40px 40px 0 0;
  background: #fff;
}

@media (min-width: 1024px) {
  .probrem::after {
    width: 79%;
    padding-top: 6%;
    border-radius: 80px 80px 0 0;
  }
}

.probrem-inner {
  padding-bottom: 51%;
  position: relative;
}

@media (min-width: 1024px) {
  .probrem-inner {
    width: 67%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}

.probrem-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 47%;
  padding-top: 37%;
  display: block;
  background: url("/assets/img/probrem_img.svg") no-repeat bottom center;
  background-size: contain;
}

@media (min-width: 1024px) {
  .probrem-inner::after {
    bottom: 0;
    left: auto;
    width: 36%;
  }
}

.probrem ul {
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .probrem ul {
    text-align: left;
  }
}

.probrem ul li:not(:last-child) {
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .probrem ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.solve {
  padding: 0 0 42px;
}

@media (min-width: 1024px) {
  .solve {
    padding: 0 0 100px;
  }
}

.solve .en-title {
  color: #E37439;
}

.solve-inner {
  padding-bottom: 59%;
  position: relative;
}

@media (min-width: 1024px) {
  .solve-inner {
    width: 67%;
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 0;
  }
}

.solve-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  padding-top: 50%;
  display: block;
  background: url("/assets/img/tti_img_slove.svg") no-repeat bottom center;
  background-size: contain;
}

@media (min-width: 1024px) {
  .solve-inner::after {
    bottom: 0%;
    left: auto;
    width: 36%;
  }
}

.solve-inner ul {
  width: 60%;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .solve-inner ul {
    width: 100%;
  }
}

.solve-inner ul li {
  position: relative;
  padding-left: 24px;
}

@media (min-width: 1024px) {
  .solve-inner ul li {
    padding-left: 39px;
  }
}

.solve-inner ul li:not(:last-of-type) {
  margin-bottom: 35px;
}

@media (min-width: 1024px) {
  .solve-inner ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

.solve-inner ul li::before {
  width: 16px;
  height: 16px;
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  margin: 0 auto;
  display: block;
  background: url("/assets/img/icon_check.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}

@media (min-width: 1024px) {
  .solve-inner ul li::before {
    width: 27px;
    height: 27px;
  }
}

.images-gallery {
  padding: 45px 0;
  background: #FCEFE2;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .images-gallery {
    padding: 80px 0;
  }
}

.images-gallery .images-list-left {
  margin-bottom: 18px;
}

@media (min-width: 1024px) {
  .images-gallery .images-list-left {
    margin-bottom: 20px;
  }
}

.images-gallery .swiper-wrapper {
  transition-timing-function: linear;
}

.images-gallery .swiper-slide {
  width: 50%;
}

@media (min-width: 820px) {
  .images-gallery .swiper-slide {
    width: 20%;
  }
}

.example {
  overflow: hidden;
}

.example .example-inner .title-main {
  margin: 0 auto 20px;
}

@media (min-width: 1024px) {
  .example .example-inner .title-main {
    text-align: center;
    position: relative;
    width: 61%;
  }

  .example .example-inner .title-main::after {
    content: "";
    display: block;
    position: absolute;
    background: url("/assets/img/tti_img_example.svg") no-repeat center;
    background-size: contain;
    right: 0;
    width: 15vw;
    height: 12vw;
    top: 12%;
    z-index: 0;
  }
}

.example .example-inner .title-main .en-title {
  color: #E37439;
}

.example .example-inner .sub-text {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: #E37439;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .example .example-inner .sub-text {
    font-size: 23px;
    margin-bottom: 70px;
  }
}

.example .example-inner .sub-text sup {
  font-size: 8px;
  vertical-align: super;
}

@media (min-width: 1024px) {
  .example .example-inner .sub-text sup {
    font-size: 13px;
  }
}

.example .example-items {
  position: relative;
  margin: 0 auto 70px;
}

.example .example-items .example-item {
  height: auto;
  background: #E37439;
  border-radius: 15px;
  position: relative;
  padding: 24px 10px 10px;
  display: flex;
  flex-direction: column;
  transition: opacity 0.5s;
}

@media (min-width: 1024px) {
  .example .example-items .example-item {
    border-radius: 25px;
    padding: 32px 14px 14px;
  }
}

.example .example-items .example-item:not(.example .example-items .example-item.swiper-slide-active) {
  opacity: 0.3;
}

@media (min-width: 820px) {
  .example .example-items .example-item:not(.example .example-items .example-item.swiper-slide-active) {
    opacity: 1;
  }
}

@media (min-width: 820px) {

  .example .example-items .example-item.swiper-slide-prev,
  .example .example-items .example-item.swiper-slide-next {
    opacity: 1 !important;
  }
}

.example .example-items .example-item .item-head .item-head-text {
  position: relative;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-head .item-head-text {
    font-size: 19px;
  }
}

.example .example-items .example-item .item-head .item-head-text span {
  width: 46%;
  margin: 0 auto;
  display: inline;
  border: 2px solid #E37439;
  border-radius: 30px;
  background: #fff;
  color: #E37439;
  font-size: 12px;
  text-align: center;
  padding: 3px 10px;
  position: absolute;
  top: -37px;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-head .item-head-text span {
    width: 120px;
    font-size: 17px;
    top: -50px;
    padding: 4px 10px;
  }
}

.example .example-items .example-item .item-body {
  width: 100%;
  background: #fff;
  border-radius: 7px;
  margin: 14px auto 0;
  padding: 15px 10px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body {
    border-radius: 10px;
    margin: 20px auto 0;
    padding: 20px 14px 14px;
  }
}

.example .example-items .example-item .item-body-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-price {
    justify-content: center;
  }
}

.example .example-items .example-item .item-body-price .item-icon {
  width: 27%;
  padding-left: 3%;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-price .item-icon {
    width: 24%;
    padding-left: 5%;
  }
}

.example .example-items .example-item .item-body-price .item-price {
  line-height: 1;
  font-size: 27px;
  font-weight: 600;
  text-align: right;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-price .item-price {
    font-size: 36px;
    text-align: center;
    margin-left: 5px;
  }
}

.example .example-items .example-item .item-body-price .item-price img {
  width: 46%;
  display: inline-block;
  margin-right: 5px;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-price .item-price img {
    width: 40%;
  }
}

.example .example-items .example-item .item-body-list {
  padding-top: 13px;
  padding-bottom: 5px;
  flex-grow: 1;
}

.example .example-items .example-item .item-body-list ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.example .example-items .example-item .item-body-list ul li {
  width: 48.5%;
  border-radius: 5px;
  border: 1px solid #3BC121;
  background: #FFFBE6;
  color: #3BC121;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
  padding: 5px 0;
  margin-bottom: 3.5%;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-list ul li {
    font-size: 17px;
    border: 2px solid #3BC121;
    padding: 7px 0;
  }
}

.example .example-items .example-item .item-body-list ul li.full_w {
  width: 100%;
}

.example .example-items .example-item .item-body-text {
  font-size: 9px;
  font-weight: 600;
  color: #E37439;
  letter-spacing: -0.02rem;
  display: flex;
  align-items: center;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-text {
    font-size: 12px;
  }
}

.example .example-items .example-item .item-body-text .icon {
  display: inline-block;
  width: 17px;
  height: 14px;
  margin-right: 7px;
  vertical-align: bottom;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-text .icon {
    width: 20px;
    height: 17px;
  }
}

.example .example-items .example-item .item-body-text .icon.icon-image {
  background: url("/assets/img/icon_image.svg") no-repeat center;
  background-size: contain;
}

.example .example-items .example-item .item-body-text .icon.icon-movie {
  background: url("/assets/img/icon_movie.svg") no-repeat center;
  background-size: contain;
}

.example .example-items .example-item .item-body-text .icon.icon-image_movie {
  height: 29px;
  background-image: url("/assets/img/icon_image.svg"), url("/assets/img/icon_movie.svg");
  background-repeat: no-repeat no-repeat;
  background-position: left top, left bottom;
  background-size: contain, contain;
}

@media (min-width: 1024px) {
  .example .example-items .example-item .item-body-text .icon.icon-image_movie {
    height: 35px;
  }
}

.example .example-items .swiper-button-prev,
.example .example-items .swiper-button-next {
  width: 39px;
  height: 39px;
  border: 1px solid #E37439;
  background: #fff;
  border-radius: 50%;
  top: 46%;
  transition: all 0.2s;
}

@media (min-width: 1024px) {

  .example .example-items .swiper-button-prev,
  .example .example-items .swiper-button-next {
    width: 49px;
    height: 49px;
  }

  .example .example-items .swiper-button-prev:hover,
  .example .example-items .swiper-button-next:hover {
    background: #FFED82;
  }
}

.example .example-items .swiper-button-prev::after,
.example .example-items .swiper-button-next::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 1024px) {

  .example .example-items .swiper-button-prev::after,
  .example .example-items .swiper-button-next::after {
    width: 13px;
    height: 13px;
  }
}

.example .example-items .swiper-button-prev {
  left: 9%;
}

@media (min-width: 1024px) {
  .example .example-items .swiper-button-prev {
    left: 6.7%;
  }

  .example .example-items .swiper-button-prev:hover {
    translate: -4px 0px;
  }
}

.example .example-items .swiper-button-prev::after {
  background: url("/assets/img/icon_arrow_left.svg") no-repeat center;
  background-size: contain;
}

.example .example-items .swiper-button-next {
  right: 9%;
}

@media (min-width: 1024px) {
  .example .example-items .swiper-button-next {
    right: 6.7%;
  }

  .example .example-items .swiper-button-next:hover {
    translate: 4px 0px;
  }
}

.example .example-items .swiper-button-next::after {
  background: url("/assets/img/icon_arrow_right.svg") no-repeat center;
  background-size: contain;
}

.example .example-items .swiper-pagination {
  bottom: -36px;
}

.example .example-items .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  opacity: 0.3;
  background: #E37439;
}

@media (min-width: 1024px) {
  .example .example-items .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

.example .example-items .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.example .example-swiper .swiper-wrapper.is-pc {
  justify-content: center;
}

.example .example-swiper .swiper-wrapper.is-pc .example-item {
  width: 27%;
  margin: 0 10px;
}

.example .option-title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 auto 25px;
}

@media (min-width: 1024px) {
  .example .option-title {
    font-size: 22px;
  }
}

.example .option-list {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .example .option-list {
    align-items: center;
  }
}

.example .option-list .list-item {
  font-size: 13px;
  font-weight: 600;
  color: #3BC121;
  margin: 0 5px 10px;
  padding: 10px 17px;
  border: 1px solid #3BC121;
  border-radius: 50px;
  line-height: 1;
}

@media (min-width: 1024px) {
  .example .option-list .list-item {
    font-size: 17px;
    border: 2px solid #3BC121;
  }
}

.example .option-list .list-text {
  font-size: 10px;
  font-weight: 600;
  margin: 0 5px 8px;
}

@media (min-width: 1024px) {
  .example .option-list .list-text {
    font-size: 15px;
  }
}

.example .option-att {
  font-size: 11px;
  width: 85%;
  margin: 0 auto;
  position: relative;
  padding-left: 1.2em;
}

@media (min-width: 1024px) {
  .example .option-att {
    font-size: 13px;
    width: 52%;
    max-width: 686px;
  }
}

.example .option-att::before {
  content: "※";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 11px;
}

@media (min-width: 1024px) {
  .example .option-att::before {
    font-size: 13px;
  }
}

.voice {
  background: #E37439;
  position: relative;
  overflow: hidden;
  padding: 42px 0 60px;
}

@media (min-width: 1024px) {
  .voice {
    padding: 100px 0 90px;
  }
}

.voice-inner {
  position: relative;
  z-index: 2;
}

.voice .title-main {
  color: #fff;
  position: relative;
}

@media (min-width: 1024px) {
  .voice .title-main {
    text-align: center;
  }
}

.voice .title-main::after {
  content: "";
  display: block;
  width: 30vw;
  height: 37vw;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: 0;
  background: url("/assets/img/ttl_img_voice.svg") no-repeat center;
  background-size: contain;
  animation: fuwafuwa01 3s infinite ease-in-out;
}

@media (min-width: 1024px) {
  .voice .title-main::after {
    width: 29vw;
    height: 28vw;
    top: -50%;
    right: 11%;
  }
}

.voice .title-main .en-title {
  color: #FFFFB1;
}

.voice .voice-cards {
  position: relative;
}

.voice .voice-cards .swiper-button-prev,
.voice .voice-cards .swiper-button-next {
  width: 39px;
  height: 39px;
  border: 1px solid #E37439;
  background: #fff;
  border-radius: 50%;
  top: 46%;
  transition: all 0.2s;
}

@media (min-width: 1024px) {

  .voice .voice-cards .swiper-button-prev,
  .voice .voice-cards .swiper-button-next {
    width: 49px;
    height: 49px;
  }

  .voice .voice-cards .swiper-button-prev:hover,
  .voice .voice-cards .swiper-button-next:hover {
    background: #FFED82;
  }
}

.voice .voice-cards .swiper-button-prev::after,
.voice .voice-cards .swiper-button-next::after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

@media (min-width: 1024px) {

  .voice .voice-cards .swiper-button-prev::after,
  .voice .voice-cards .swiper-button-next::after {
    width: 13px;
    height: 13px;
  }
}

.voice .voice-cards .swiper-button-prev {
  left: 9%;
}

@media (min-width: 1024px) {
  .voice .voice-cards .swiper-button-prev {
    left: 6.7%;
  }

  .voice .voice-cards .swiper-button-prev:hover {
    background: #FFED82;
    translate: -4px 0px;
  }
}

.voice .voice-cards .swiper-button-prev::after {
  background: url("/assets/img/icon_arrow_left.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-cards .swiper-button-next {
  right: 9%;
}

@media (min-width: 1024px) {
  .voice .voice-cards .swiper-button-next {
    right: 6.7%;
  }

  .voice .voice-cards .swiper-button-next:hover {
    background: #FFED82;
    translate: 4px 0px;
  }
}

.voice .voice-cards .swiper-button-next::after {
  background: url("/assets/img/icon_arrow_right.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-cards .swiper-pagination {
  bottom: -36px;
}

@media (min-width: 820px) {
  .voice .voice-cards .swiper-pagination {
    bottom: -53px;
  }
}

.voice .voice-cards .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  opacity: 0.3;
  background: #fff;
}

@media (min-width: 1024px) {
  .voice .voice-cards .swiper-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
}

.voice .voice-cards .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.voice .voice-card {
  border-radius: 15px;
  height: auto;
  position: relative;
  padding: 23px 10px 43px;
  transition: all 0.5s;
  background: #fff url("/assets/img/bg_voice_icon.svg") no-repeat center 95%;
  background-size: 95%;
  box-shadow: 0 0 2px #E37439;
}

@media (min-width: 1024px) {
  .voice .voice-card {
    padding: 23px 23px 56px;
    background: #fff url("/assets/img/bg_voice_icon.svg") no-repeat center 96%;
    background-size: 83%;
    translate: 2% 10%;
  }
}

.voice .voice-card.swiper-slide-active {
  rotate: 0deg;
  translate: 0 0;
  z-index: 2;
}

.voice .voice-card.swiper-slide-prev {
  rotate: 7deg;
  translate: -2% 10%;
}

.voice .voice-card.swiper-slide-next {
  rotate: -7deg;
  translate: 2% 10%;
}

.voice .voice-card.swiper-slide-next+.voice-card {
  rotate: 7deg;
  translate: 0% 22%;
  z-index: -1;
}

.voice .voice-card:has(+ .swiper-slide-prev) {
  rotate: -7deg;
  translate: -2% 22%;
  z-index: -1;
}

.voice .voice-card .card-head {
  font-size: 19px;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .voice .voice-card .card-head {
    font-size: 26px;
    margin-bottom: 16px;
  }
}

.voice .voice-card .card-head .icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

@media (min-width: 1024px) {
  .voice .voice-card .card-head .icon {
    width: 40px;
    height: 40px;
  }
}

.voice .voice-card .card-head .icon.icon-01 {
  background: url("/assets/img/icon_voice_01.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-card .card-head .icon.icon-02 {
  background: url("/assets/img/icon_voice_02.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-card .card-head .icon.icon-03 {
  background: url("/assets/img/icon_voice_03.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-card .card-head .icon.icon-04 {
  background: url("/assets/img/icon_voice_04.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-card .card-head .icon.icon-05 {
  background: url("/assets/img/icon_voice_05.svg") no-repeat center;
  background-size: contain;
}

.voice .voice-card .card-body {
  border: 1px solid #E37439;
  border-radius: 7px;
  padding: 16px 15px;
}

.voice .voice-card .card-body dt {
  font-size: 15px;
  font-weight: 600;
  color: #E37439;
  margin-bottom: 15px;
}

@media (min-width: 1024px) {
  .voice .voice-card .card-body dt {
    font-size: 20px;
  }
}

.voice .voice-card .card-body dd {
  font-size: 11px;
}

@media (min-width: 1024px) {
  .voice .voice-card .card-body dd {
    font-size: 15px;
    line-height: 1.7;
  }
}

.voice .bg-parts {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.voice .bg-parts.parts-item01 {
  width: 32%;
  top: -4%;
  left: -6%;
}

@media (min-width: 820px) {
  .voice .bg-parts.parts-item01 {
    width: 29%;
    left: 3%;
  }
}

@media (min-width: 820px) {
  .voice .bg-parts.parts-item01 {
    width: 29%;
    left: 3%;
  }
}

.voice .bg-parts.parts-item02 {
  width: 18%;
  top: -2%;
  right: -4%;
}

@media (min-width: 820px) {
  .voice .bg-parts.parts-item02 {
    top: 7%;
    right: -4%;
  }
}

@keyframes fuwafuwa01 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(30px);
  }
}

.faq {
  position: relative;
  z-index: 1;
}

.faq::after {
  content: "";
  width: 100%;
  height: 66%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #E37439;
  z-index: -1;
}

.faq-inner {
  background: #fff;
  border-radius: 40px;
  margin: 0 auto;
  padding: 40px 25px;
  width: 87%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .faq-inner {
    width: 79%;
    border-radius: 80px;
    padding: 100px 0;
  }
}

.faq .title-main {
  position: relative;
}

@media (min-width: 820px) {
  .faq .title-main {
    width: 65%;
  }
}

@media (min-width: 1024px) {
  .faq .title-main {
    width: 65%;
    text-align: center;
    margin: 0 auto 100px;
  }
}

.faq .title-main::before,
.faq .title-main::after {
  content: "";
  display: block;
  width: 18vw;
  height: 20vw;
  position: absolute;
  top: 0;
  z-index: 0;
}

@media (min-width: 820px) {

  .faq .title-main::before,
  .faq .title-main::after {
    width: 15vw;
    height: 13vw;
  }
}

@media (min-width: 1024px) {

  .faq .title-main::before,
  .faq .title-main::after {
    width: 17vw;
    height: 15vw;
    top: -20%;
  }
}

.faq .title-main::before {
  background: url("/assets/img/tti_img_faq_01.svg") no-repeat center;
  background-size: contain;
  left: 0;
}

.faq .title-main::after {
  background: url("/assets/img/tti_img_faq_02.svg") no-repeat center;
  background-size: contain;
  right: 0;
}

@media (min-width: 1024px) {
  .faq .faq-list {
    width: 78%;
    margin: 0 auto;
  }
}

.faq .faq-list .faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #3BC121;
  margin-bottom: 20px;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item {
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid #3BC121;
  }
}

.faq .faq-list .faq-item.js-open {
  background: #FFFBE6;
  border: 1px solid #E37439;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item.js-open {
    border: 2px solid #E37439;
  }
}

.faq .faq-list .faq-item .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1em;
  font-size: 14px;
  font-weight: 700;
  color: #3BC121;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 20px 40px 20px 50px;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-q {
    text-align: center;
    font-size: 20px;
  }
}

.faq .faq-list .faq-item .faq-q::before {
  font-family: source-han-serif-jp-subset, sans-serif;
  font-weight: 500;
  font-size: 28px;
  content: "Q";
  color: #3BC121;
  display: block;
  position: absolute;
  top: 11px;
  left: 7%;
}

@media (min-width: 820px) {
  .faq .faq-list .faq-item .faq-q::before {
    top: 16px;
    left: 2%;
  }
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-q::before {
    font-size: 32px;
    top: 6px;
    left: 5%;
  }
}

.faq .faq-list .faq-item .faq-q::after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 22px;
  top: 42%;
  width: 0.7em;
  height: 0.7em;
  border-right: 2px solid #3BC121;
  border-bottom: 2px solid #3BC121;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-q::after {
    right: 48px;
  }
}

.faq .faq-list .faq-item .faq-q.js-open {
  color: #E37439;
}

.faq .faq-list .faq-item .faq-q.js-open::before {
  color: #E37439;
}

.faq .faq-list .faq-item .faq-q.js-open::after {
  top: 54%;
  transform: translateY(-50%) rotate(-135deg);
  border-right: 2px solid #E37439;
  border-bottom: 2px solid #E37439;
}

.faq .faq-list .faq-item .faq-a {
  font-size: 11px;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  will-change: max-height, opacity;
  position: relative;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-a {
    font-size: 16px;
    font-weight: 600;
  }
}

.faq .faq-list .faq-item .faq-a::before {
  font-family: source-han-serif-jp-subset, sans-serif;
  font-weight: 500;
  font-size: 28px;
  content: "A";
  color: #3B3B3B;
  display: block;
  position: absolute;
  top: 11px;
  left: 7%;
}

@media (min-width: 820px) {
  .faq .faq-list .faq-item .faq-a::before {
    top: 5px;
    left: 2%;
  }
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-a::before {
    font-size: 32px;
    top: 15px;
    left: 5%;
  }
}

.faq .faq-list .faq-item .faq-a::after {
  width: 88%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  content: "";
  background: #E37439;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-a::after {
    width: 91%;
  }
}

.faq .faq-list .faq-item .faq-a-inner {
  padding: 20px 40px 20px 55px;
}

@media (min-width: 1024px) {
  .faq .faq-list .faq-item .faq-a-inner {
    padding: 30px 40px 30px 12%;
  }
}

.faq .faq-list .faq-item .faq-a.js-open {
  max-height: 300px;
  opacity: 1;
}

.faq .bg-parts {
  position: absolute;
  opacity: 0;
  transform: translateY(40px);
  transition: none;
}

.faq .bg-parts.parts-item03 {
  width: 29%;
  top: -6%;
  left: -6%;
  z-index: 0;
}

@media (min-width: 820px) {
  .faq .bg-parts.parts-item03 {
    width: 20%;
    top: -11%;
    left: 20%;
  }
}

.faq .bg-parts.parts-item04 {
  width: 40%;
  top: -2%;
  right: -8%;
  z-index: 0;
}

@media (min-width: 820px) {
  .faq .bg-parts.parts-item04 {
    width: 24%;
    top: 9%;
    right: -8%;
  }
}

.faq .bg-parts.parts-item05 {
  width: 28%;
  top: 29%;
  left: -8%;
  z-index: 0;
}

@media (min-width: 820px) {
  .faq .bg-parts.parts-item05 {
    width: 25%;
    top: 33%;
    left: -8%;
  }
}

.faq .bg-parts.parts-item06 {
  width: 29%;
  top: 45%;
  right: -15%;
  z-index: 0;
}

@media (min-width: 820px) {
  .faq .bg-parts.parts-item06 {
    width: 13%;
    top: 45%;
    right: -7%;
  }
}

.flow {
  position: relative;
  margin-top: -80vh;
}

@media (min-width: 1024px) {
  .flow {
    margin-top: -120vh;
  }
}

.flow::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FCEFE2;
  z-index: -1;
}

.flow-inner {
  background: #fff;
  border-radius: 40px;
  margin: 0 auto;
  padding: 40px 25px;
  width: 87%;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .flow-inner {
    width: 79%;
    border-radius: 80px;
    padding: 100px 0;
  }
}

@media (min-width: 1024px) {
  .flow .title-main {
    width: 65%;
    text-align: center;
    margin: 0 auto 120px;
    position: relative;
  }

  .flow .title-main::after {
    content: "";
    display: block;
    position: absolute;
    background: url("/assets/img/tti_img_flow.svg") no-repeat center;
    background-size: contain;
    right: 0;
    width: 11vw;
    height: 12vw;
    top: -14%;
    z-index: 0;
  }
}

.flow .en-title {
  color: #E37439;
}

@media (min-width: 1024px) {
  .flow .flow-list {
    width: 78%;
    margin: 0 auto;
  }
}

.flow .flow-item dl {
  width: 73%;
  position: relative;
}

@media (min-width: 1024px) {
  .flow .flow-item dl {
    width: 58%;
  }
}

.flow .flow-item dl:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid #E37439;
  padding: 0 23px 30px 0;
  margin-bottom: 30px;
}

@media (min-width: 1024px) {
  .flow .flow-item dl:not(:nth-last-of-type(1)) {
    padding: 0 0 20px 0;
  }
}

.flow .flow-item dl::before {
  width: 18vw;
  height: 25vw;
  display: block;
  content: "";
  position: absolute;
  top: -2%;
  right: -37%;
  z-index: 1;
}

@media (min-width: 820px) {
  .flow .flow-item dl::before {
    width: 19vw;
    height: 10vw;
    top: -25%;
    right: -38%;
  }
}

@media (min-width: 1024px) {
  .flow .flow-item dl::before {
    width: 19vw;
    height: 10vw;
    top: -25%;
    right: -65%;
  }
}

.flow .flow-item dl.flow-01::before {
  background: url("/assets/img/flow_01_sp.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-01::before {
    background: url("/assets/img/flow_01.svg") no-repeat center;
    background-size: contain;
  }
}

.flow .flow-item dl.flow-02::before {
  background: url("/assets/img/flow_02_sp.svg") no-repeat center;
  background-size: contain;
  top: -11%;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-02::before {
    background: url("/assets/img/flow_02.svg") no-repeat center;
    background-size: contain;
    top: -25%;
  }
}

.flow .flow-item dl.flow-03::before {
  background: url("/assets/img/flow_03_sp.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-03::before {
    background: url("/assets/img/flow_03.svg") no-repeat center;
    background-size: contain;
  }
}

.flow .flow-item dl.flow-04::before {
  background: url("/assets/img/flow_04_sp.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-04::before {
    background: url("/assets/img/flow_04.svg") no-repeat center;
    background-size: contain;
  }
}

.flow .flow-item dl.flow-05::before {
  background: url("/assets/img/flow_05_sp.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-05::before {
    background: url("/assets/img/flow_05.svg") no-repeat center;
    background-size: contain;
  }
}

.flow .flow-item dl.flow-06::before {
  background: url("/assets/img/flow_06_sp.svg") no-repeat center;
  background-size: contain;
  top: -15%;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-06::before {
    background: url("/assets/img/flow_06.svg") no-repeat center;
    background-size: contain;
    top: -25%;
  }
}

.flow .flow-item dl::after {
  content: "";
  display: block;
  height: 25px;
  width: 2px;
  background: #3B3B3B;
  position: absolute;
  bottom: -12%;
  right: calc(-22% + 2px);
  z-index: 0;
}

@media (min-width: 820px) {
  .flow .flow-item dl::after {
    height: 59%;
    width: 3px;
    bottom: -2vw;
    right: calc(-23% + 2px);
    rotate: -39deg;
  }
}

@media (min-width: 1024px) {
  .flow .flow-item dl::after {
    height: 59%;
    width: 3px;
    bottom: -2vw;
    right: calc(-40% + 2px);
    rotate: -39deg;
  }
}

.flow .flow-item dl.flow-02::after {
  bottom: -22%;
  height: 20px;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-02::after {
    height: 59%;
    bottom: -2vw;
    rotate: 39deg;
  }
}

.flow .flow-item dl.flow-03::after {
  height: 36px;
  bottom: -9%;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-03::after {
    height: 70%;
    bottom: -2.5vw;
  }
}

@media (min-width: 1024px) {
  .flow .flow-item dl.flow-03::after {
    height: 59%;
    bottom: -2vw;
  }
}

.flow .flow-item dl.flow-04::after {
  height: 27px;
  bottom: -13%;
}

@media (min-width: 820px) {
  .flow .flow-item dl.flow-04::after {
    height: 59%;
    bottom: -2vw;
    rotate: 39deg;
  }
}

.flow .flow-item dl.flow-06::after {
  content: none;
}

.flow .flow-item dl dt {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .flow .flow-item dl dt {
    font-size: 20px;
  }
}

.flow .flow-item dl dd {
  font-size: 11px;
  line-height: 1.6;
}

@media (min-width: 820px) {
  .flow .flow-item dl dd {
    min-height: 35px;
  }
}

@media (min-width: 1024px) {
  .flow .flow-item dl dd {
    font-size: 15px;
  }
}

.flow .bg-parts {
  position: absolute;
  opacity: 0.8;
}

.flow .bg-parts.parts-item01 {
  width: 37%;
  top: 29%;
  left: -19%;
  z-index: 0;
}

@media (min-width: 820px) {
  .flow .bg-parts.parts-item01 {
    width: 26%;
    top: 46%;
    left: -19%;
  }
}

.flow .bg-parts.parts-item02 {
  width: 30%;
  top: 50%;
  right: -14%;
  z-index: 0;
}

@media (min-width: 820px) {
  .flow .bg-parts.parts-item02 {
    width: 16%;
    top: 50%;
    right: -5%;
  }
}

.flow .bg-parts.parts-item03 {
  width: 41%;
  top: 66%;
  left: -11%;
  z-index: 0;
}

@media (min-width: 820px) {
  .flow .bg-parts.parts-item03 {
    width: 18%;
    top: 78%;
    left: -3%;
  }
}

.contact {
  position: relative;
  height: 100%;
  background: linear-gradient(180deg, #FCEFE2 0%, #FCEFE2 37%, #3BC121 37%, #3BC121 100%);
  z-index: 1;
}

.contact::before {
  content: "";
  background: #3BC121;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: -1;
}

.contact .contact-inner {
  background: #fff;
  border-radius: 40px;
  margin: 0 auto;
  padding: 40px 25px;
  width: 87%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact .contact-inner {
    width: 79%;
    border-radius: 80px;
  }
}

.contact .contact-inner .title-main {
  margin: 0 auto 9px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact .contact-inner .title-main {
    width: 79%;
    text-align: center;
  }
}

.contact .contact-inner .title-main::after {
  content: "";
  display: block;
  width: 24vw;
  height: 18vw;
  position: absolute;
  top: -14%;
  right: 4%;
  z-index: 0;
  background: url("/assets/img/ttl_img_contact.svg") no-repeat center;
  background-size: contain;
}

@media (min-width: 820px) {
  .contact .contact-inner .title-main::after {
    width: 15vw;
    height: 5vw;
    top: 8%;
    right: 25%;
  }
}

@media (min-width: 1024px) {
  .contact .contact-inner .title-main::after {
    width: 11vw;
    height: 4vw;
    top: 25%;
    right: 17%;
  }
}

.contact .contact-inner .sub-text {
  font-size: 9px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .contact .contact-inner .sub-text {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .contact .contact-inner .contact-form-inner {
    width: 78%;
    margin: 0 auto;
  }
}

.contact .contact-inner .error {
  color: #ff0000;
  font-size: 13px;
  padding-top: 5px;
  padding-bottom: 10px;
}

.contact .contact-inner .field_item {
  margin-bottom: 19px;
}

@media (min-width: 1024px) {
  .contact .contact-inner .field_item {
    margin-bottom: 25px;
  }
}

.contact .contact-inner .field_item label {
  font-size: 13px;
  font-weight: 600;
  color: #3B3B3B;
}

@media (min-width: 1024px) {
  .contact .contact-inner .field_item label {
    font-size: 16px;
  }
}

.contact .contact-inner .field_item .error {
  color: #ff0000;
  font-size: 13px;
  padding-top: 5px;
}

.contact .contact-inner .field_item.submit,
.contact .contact-inner .field_item.checkbox {
  text-align: center;
}

.contact .contact-inner .field_item.checkbox {
  margin-bottom: 40px;
}

.contact .contact-inner .field_item .icon_req {
  display: inline-block;
  font-size: 9px;
  color: #fff;
  font-weight: 600;
  padding: 2px 5px;
  margin-left: 10px;
  background: #E37439;
  border-radius: 20px;
  vertical-align: middle;
}

@media (min-width: 1024px) {
  .contact .contact-inner .field_item .icon_req {
    font-size: 11px;
    padding: 1px 6px;
  }
}

.contact .contact-inner .field_item input[type=text],
.contact .contact-inner .field_item textarea {
  border: 1px solid #3B3B3B;
  border-radius: 2px;
  padding: 13px 15px;
  margin-top: 10px;
  width: 100%;
  appearance: none;
}

@media (min-width: 1024px) {

  .contact .contact-inner .field_item input[type=text],
  .contact .contact-inner .field_item textarea {
    font-size: 16px;
  }
}

.contact .contact-inner .field_item input[type=checkbox] {
  width: 24px;
  height: 24px;
  border: 1px solid #3B3B3B;
  border-radius: 2px;
  background: #fff;
  appearance: none;
  position: relative;
  vertical-align: middle;
}

.contact .contact-inner .field_item input[type=checkbox]::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-image: url("/assets/img/icon_checkbox.svg");
  background-repeat: no-repeat;
  background-size: 77%;
  background-position: center;
}

.contact .contact-inner .field_item input[type=checkbox]:checked::before {
  opacity: 1;
}

.contact .contact-inner .field_item input[type=submit] {
  width: 180px;
  height: 40px;
  background: #3AC121;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s;
}

@media (min-width: 1024px) {
  .contact .contact-inner .field_item input[type=submit] {
    width: 230px;
  }

  .contact .contact-inner .field_item input[type=submit]:hover {
    color: #FFFF00;
  }
}

.contact .contact-inner .field_text {
  font-size: 11px;
  color: #3B3B3B;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .contact .contact-inner .field_text {
    text-align: center;
    font-size: 14px;
  }
}

.contact .contact-inner .field_text a {
  color: #3BC121;
}

.contact .bg-parts {
  position: absolute;
  opacity: 0.8;
}

.contact .bg-parts.parts-item04 {
  width: 44%;
  top: -21%;
  right: -19%;
  z-index: 0;
}

@media (min-width: 820px) {
  .contact .bg-parts.parts-item04 {
    width: 26%;
    top: -19%;
    right: -10%;
  }
}

.contact .bg-parts.parts-item05 {
  width: 42%;
  top: 0%;
  left: -11%;
  z-index: 0;
}

@media (min-width: 820px) {
  .contact .bg-parts.parts-item05 {
    width: 16%;
    top: 11%;
    left: -11%;
  }
}

.contact iframe {
  position: relative;
  z-index: 0;
  margin-top: -150px;
}

.complete {
  background: #ECF7EA;
  position: relative;
  padding: 50px 0 11%;
}

@media (min-width: 1024px) {
  .complete {
    padding: 200px 0 11%;
  }
}

.complete-inner {
  background: #fff;
  border-radius: 40px;
  margin: 0 auto;
  padding: 40px 25px 60px;
  width: 87%;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .complete-inner .title-main {
    text-align: center;
  }
}

.complete .sub-text {
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
}

.footer {
  background: #3BC121;
  padding-bottom: 40px;
}

.footer.complete-footer {
  padding-top: 40px;
}

@media (min-width: 1024px) {
  .footer-wrap {
    width: 83%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .footer-wrap .footer-logo {
    width: 24%;
  }
}

.footer-wrap .footer-logo img {
  max-height: 98px;
}

.footer-inner {
  width: 57%;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .footer-inner {
    width: 74%;
  }
}

.footer-inner .footer-nav {
  border-bottom: 1px solid #fff;
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav {
    margin-left: 5%;
  }
}

.footer-inner .footer-nav ul {
  padding-left: 5%;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav ul {
    display: flex;
    justify-content: space-between;
    padding-left: 0;
  }
}

.footer-inner .footer-nav li {
  margin-bottom: 25px;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav li {
    margin-bottom: 20px;
  }
}

.footer-inner .footer-nav li a {
  font-weight: 600;
  font-size: 13px;
  color: #fff;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav li a {
    font-size: 12px;
    display: block;
    line-height: 1.5;
    transition: opacity 0.2s;
  }

  .footer-inner .footer-nav li a:hover {
    opacity: 0.8;
  }
}

.footer-inner .footer-nav li a .nav-ja {
  display: inline-block;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav li a .nav-ja {
    display: block;
  }
}

.footer-inner .footer-nav li a .nav-en {
  display: inline-block;
  padding-left: 10px;
  font-family: din-2014, sans-serif;
  font-weight: 500;
  font-size: 9px;
}

@media (min-width: 1024px) {
  .footer-inner .footer-nav li a .nav-en {
    display: block;
    padding-left: 0;
  }
}

.footer-inner .footer-logo {
  width: 100%;
  text-align: center;
  margin: 0 auto 30px;
}

.footer-inner .footer-logo img {
  margin: 0 auto;
}

.footer .sub-footer {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .footer .sub-footer {
    margin-left: 5%;
    width: 95%;
  }
}

@media (min-width: 1024px) {
  .footer .sub-footer-inner {
    display: flex;
    justify-content: space-between;
  }
}

.footer .sub-footer-nav {
  display: flex;
  font-size: 8px;
  color: #fff;
}

@media (min-width: 1024px) {
  .footer .sub-footer-nav {
    font-size: 10px;
  }
}

.footer .sub-footer-nav li {
  margin-right: 12px;
}

@media (min-width: 1024px) {
  .footer .sub-footer-nav li {
    margin-right: 35px;
    transition: opacity 0.2s;
  }

  .footer .sub-footer-nav li a:hover {
    opacity: 0.8;
  }
}

.footer .sub-footer .copyright {
  font-size: 8px;
  color: #fff;
}

@media (min-width: 1024px) {
  .footer .sub-footer .copyright {
    font-size: 10px;
  }
}

.parallax-bg {
  position: relative;
  width: 100%;
  height: 76vh;
  background: url("/assets/img/bg_parallax_sp.jpg") no-repeat center/cover;
  z-index: 0;
  margin-top: -40vh;
  margin-bottom: 40vh;
  overflow: hidden;
}

@supports (background-image: url("/assets/img/bg_parallax_sp.webp")) {
  .parallax-bg {
    background: url("/assets/img/bg_parallax_sp.webp") no-repeat center/cover;
  }
}

@media (min-width: 1024px) {
  .parallax-bg {
    height: 150vh;
    margin-top: -70vh;
    background: url("/assets/img/bg_parallax.jpg") no-repeat center/cover;
  }

  @supports (background-image: url("/assets/img/bg_parallax.webp")) {
    .parallax-bg {
      background: url("/assets/img/bg_parallax.webp") no-repeat center/cover;
    }
  }
}

.flBnr {
  display: none;
  width: 94%;
  height: 118px;
  position: fixed;
  bottom: 62px;
  right: 0;
  left: 0;
  margin: 0 auto;
  background: url("/assets/img/bnr_fl_sp.png") no-repeat center;
  background-size: contain;
  z-index: 10;
  transition: all 0.3s;
}

@media (min-width: 1024px) {
  .flBnr {
    width: 230px;
    height: 170px;
    bottom: 2%;
    right: 1%;
    left: auto;
    background: url("/assets/img/bnr_fl_pc.png") no-repeat center;
    background-size: contain;
  }
}

.flBnr .flBnrInner {
  height: calc(100% - 34px);
}

.flBnr .flBnrItem {
  width: 100%;
  height: 100%;
}

.flBnr .flBnrItem a {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: -9999px;
}

.flBnr .flBnrClose {
  display: block;
  overflow: hidden;
  text-indent: -9999px;
  width: 38px;
  height: 34px;
  margin-right: 0;
  margin-left: auto;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .flBnr .flBnrClose {
    width: 33px;
    height: 29px;
  }
}

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