@charset "UTF-8";
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;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--- iosのスタイルリセット  ---*/
input[type=submit],
input[type=button] {
  border-radius: 10px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

summary {
  display: block;
}

summary::-webkit-details-marker {
  display: none;
}

a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wrapper {
  position: relative;
}

/* =============================================================================
Image
========================================================================== */
a {
  display: block;
}

img {
  width: 100%;
  height: inherit;
}

/* =============================================================================
Basic style
========================================================================== */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
  color: #333;
  word-break: break-all;
}

img {
  vertical-align: top;
}

/*==============================================================================
Media
============================================================================= */
/*
  sp
----------------------------------------------- */
/*
  pc
----------------------------------------------- */
/*
  xl-pc
----------------------------------------------- */
/*==============================================================================
Accessibility
============================================================================= */
.screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

.hidden {
  display: none;
}

/*==============================================================================
font-size
============================================================================= */
/*
	  mobile
  ----------------------------------------------- */
@media screen and (max-width: 767px) {
  html {
    font-size: 2.1333333333vw;
  }
  p {
    font-size: 1rem;
  }
}
/*
  PC
  ----------------------------------------------- */
@media screen and (min-width: 768px) {
  html {
    font-size: 1.1111111111vw;
  }
  p {
    font-size: 1rem;
  }
}
/*==============================================================================
Responsive
============================================================================= */
@media screen and (max-width: 767px) {
  .inner {
    width: 43.125rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .inner {
    width: 75rem;
    margin: 0 auto;
    position: relative;
  }
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
/*==============================================================================
font-family
============================================================================= */
.yugothic {
  font-family: “游ゴシック体“, YuGothic, “游ゴシック“, “Yu Gothic”, sans-serif;
}

.futura {
  font-family: futura-pt, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

/*==============================================================================
Header
============================================================================= */
@media screen and (max-width: 767px) {
  .header--bg {
    padding: 1rem 0 11.875rem;
    background: url(/common/upload_data/tokyo-ecbizcom/image/header-img01_sp.webp) no-repeat;
    background-size: contain;
    width: 46.875rem;
  }
  .header--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 42.75rem;
    position: relative;
  }
  .header--logo {
    width: 28.3125rem;
  }
  .header--cta {
    position: absolute;
    width: 23.5rem;
    right: 0;
  }
}
@media screen and (min-width: 768px) {
  .header--bg {
    padding: 0.625rem 0;
    position: relative;
    background: #fff;
    z-index: 1;
  }
  .header--inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header--wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.875rem;
    width: 75rem;
    margin: 0 auto;
  }
  .header--wrapper.sp-only {
    display: none;
  }
  .header--logo {
    width: 55.625rem;
  }
  .header--cta {
    width: 18.125rem;
  }
}
/*==============================================================================
footer
============================================================================= */
@media screen and (max-width: 767px) {
  .footer--bg {
    padding: 2.5rem 0;
    background: #676767;
  }
  .footer .copy {
    text-align: center;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  .footer--bg {
    padding: 2.1875rem 0;
    background: #676767;
  }
  .footer .copy {
    text-align: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04rem;
  }
}
@media screen and (max-width: 767px) {
  .problem--bg {
    background-color: #29945e;
    padding-bottom: 4.6875rem;
  }
  .problem--title {
    position: relative;
    width: 39.6875rem;
    padding: 5.75rem 0 4.0625rem;
    margin: 0 auto;
  }
  .problem--title::after {
    position: absolute;
    content: "";
    display: block;
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-title_bg_sp.webp) no-repeat;
    background-size: 100%;
    width: 46.875rem;
    height: 46.875rem;
    top: -50%;
    left: -9%;
    z-index: 0;
  }
  .problem-list {
    width: 41.875rem;
    margin: 0 auto;
  }
  .problem-list .list-item {
    margin-bottom: 2.5rem;
  }
  .problem-head {
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .problem-head::after {
    content: "";
    position: absolute;
    display: block;
    width: 3.75rem;
    height: 4.375rem;
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-open_sp.webp) no-repeat;
    background-size: contain;
    top: 28%;
    right: 3%;
  }
  .problem-head .on {
    display: none;
  }
  .problem-head .off {
    display: block;
  }
  .problem-head.open::after {
    content: "";
    position: absolute;
    display: block;
    width: 3.75rem;
    height: 4.375rem;
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-close_sp.webp) no-repeat;
    background-size: contain;
    top: 28%;
    right: 4.6%;
  }
  .problem-head.open .on {
    display: block;
  }
  .problem-head.open .off {
    display: none;
  }
  .problem-contents {
    display: none;
  }
  .reason--title {
    position: relative;
    top: -4.375rem;
    margin-bottom: -3.125rem;
  }
  .reason--list .list-item {
    background-color: #f5fffa;
    padding: 3.5rem 0 6.875rem;
    margin-bottom: 5.125rem;
  }
  .reason--list .list-item:last-child {
    margin-bottom: 0;
  }
  .reason--list .list-item .content01 .item-box01 {
    padding: 0 4.25rem 0;
    margin-bottom: 2.875rem;
  }
  .reason--list .list-item .content01 .item-box02 {
    padding: 0 4.25rem 0;
    margin-bottom: 1.25rem;
  }
  .reason--list .list-item .content01 .item-box03 {
    padding: 0 4.25rem 0;
    margin-bottom: 1.875rem;
  }
  .reason--list .list-item .content01 .item-box04 {
    padding: 0 4.25rem 0;
    margin-bottom: 4.6875rem;
  }
  .reason--list .list-item .content01 .item-box05 {
    padding: 0 4.25rem 0;
    margin-bottom: 4.6875rem;
  }
  .reason--list .list-item.item01 {
    padding-bottom: 3.125rem;
  }
  .reason--list .list-item.item02 .item-box03 {
    margin-bottom: 5rem;
  }
  .reason--list .list-item.item02 .item-box04 {
    padding: 0 2.5rem 0;
    margin-bottom: 0;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head {
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head::after {
    content: "";
    position: absolute;
    display: block;
    width: 3.75rem;
    height: 4.375rem;
    background: url(/common/upload_data/tokyo-ecbizcom/image/reason-btn_open_sp.webp) no-repeat;
    background-size: contain;
    top: 28%;
    right: 2%;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head .on {
    display: none;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head .off {
    display: block;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head.open::after {
    content: "";
    position: absolute;
    display: block;
    width: 3.75rem;
    height: 4.375rem;
    background: url(/common/upload_data/tokyo-ecbizcom/image/reason-btn_close_sp.webp) no-repeat;
    background-size: contain;
    top: 28%;
    right: 3.9%;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head.open .on {
    display: block;
  }
  .reason--list .list-item.item02 .item-box04 .reason-head.open .off {
    display: none;
  }
  .reason--list .list-item.item02 .item-box04 .reason-contents {
    position: relative;
    top: -0.625rem;
    display: none;
  }
  .reason--list .list-item.item03 .item-box03 {
    margin-bottom: 5rem;
  }
  .reason--list .list-item.item03 .item-box04 {
    padding: 0 1.875rem 0;
  }
  .reason .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }
  .reason .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .cta--bg {
    background-color: #ffe964;
    padding: 4.375rem 0 3.125rem;
  }
  .cta--title {
    width: 41.875rem;
    margin: 0 auto 1.25rem;
  }
  .cta--contents {
    position: relative;
    width: 41.875rem;
    margin: 0 auto 1.25rem;
  }
  .cta--contents .item-box02 {
    position: absolute;
    width: 38.3125rem;
    height: 8.4375rem;
    bottom: 10%;
    left: 4%;
    right: 50%;
  }
}
@media screen and (min-width: 768px) {
  .kv--bg {
    background-color: #edfcf5;
  }
  .kv--contents {
    width: 76.25rem;
    margin: 0 auto;
    padding: 0.625rem 0;
  }
  .problem {
    position: relative;
    z-index: 1;
  }
  .problem--bg {
    background-color: #239159;
    padding: 0 0 7.5rem;
  }
  .problem--title {
    position: relative;
    width: 33.75rem;
    margin: 0 auto;
    padding: 5.625rem 0 3.625rem;
  }
  .problem--title::after {
    position: absolute;
    content: "";
    display: block;
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-title02.webp) no-repeat;
    background-size: 100%;
    width: 27.0625rem;
    height: 27.0625rem;
    top: -50%;
    left: 9%;
    z-index: 0;
  }
  .problem-wrap {
    width: 61.25rem;
    margin: 0 auto;
  }
  .problem-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 0 0 1.0625rem;
  }
  .problem-tabs .tab-item {
    width: 19.875rem;
    height: 7.5rem;
    cursor: pointer;
    position: relative;
    z-index: 1;
    -webkit-transition: none;
    transition: none;
  }
  .problem-tabs .tab-item.item01 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab01_off.webp) no-repeat;
    background-size: 100%;
  }
  .problem-tabs .tab-item.item02 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab02_off.webp) no-repeat;
    background-size: 100%;
  }
  .problem-tabs .tab-item.item03 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab03_off.webp) no-repeat;
    background-size: 100%;
  }
  .problem-tabs .tab-item.show {
    height: 7.5rem;
  }
  .problem-tabs .tab-item.show.item01 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab01_on.webp) no-repeat;
    background-size: 100%;
  }
  .problem-tabs .tab-item.show.item02 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab02_on.webp) no-repeat;
    background-size: 100%;
  }
  .problem-tabs .tab-item.show.item03 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/problem-tab03_on.webp) no-repeat;
    background-size: 100%;
  }
  .problem-contents {
    display: none;
  }
  .problem-contents.show {
    display: block;
  }
  .reason--inner {
    margin: 0 auto;
  }
  .reason--title {
    position: relative;
    width: 73.75rem;
    margin: -2.3125rem auto 0;
  }
  .reason--list {
    margin: 0 auto;
  }
  .reason .list-item {
    padding-bottom: 3.4375rem;
    margin-bottom: 7.5rem;
  }
  .reason .list-item .content01 {
    width: 61.875rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 0 auto;
    padding: 2.5rem 0 4.375rem;
    gap: 2.5rem;
  }
  .reason .list-item .content01 .item-box01 {
    width: 26.75rem;
  }
  .reason .list-item .content01 .item-box02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    width: 28.125rem;
  }
  .reason .list-item .content02 {
    width: 61.875rem;
    margin: 0 auto;
  }
  .reason .list-item.item01 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/reason-bg01.webp) no-repeat;
    background-size: 100%;
  }
  .reason .list-item.item01 .item-box02 .title {
    margin-bottom: 0.625rem;
  }
  .reason .list-item.item01 .item-box02 .video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    width: 28.125rem;
  }
  .reason .list-item.item01 .item-box02 .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .reason .list-item.item02 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/reason-bg02.webp) no-repeat;
    background-size: 100%;
  }
  .reason .list-item.item02 .content01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    padding-bottom: 2.5rem;
  }
  .reason .list-item.item02 .content01 .item-box02 {
    width: 28rem;
    margin-top: 0.625rem;
    margin-right: 1.25rem;
  }
  .reason .list-item.item03 {
    background: url(/common/upload_data/tokyo-ecbizcom/image/reason-bg01.webp) no-repeat;
    background-size: 100%;
  }
  .reason .list-item.item03 .content01 {
    gap: 4.375rem;
    padding-bottom: 2.8125rem;
  }
  .reason .list-item.item03 .content01 .item-box02 {
    width: 29.375rem;
  }
  .cta--bg {
    background-color: #ffe964;
    padding: 4.6875rem 0 3.75rem;
  }
  .cta--title {
    width: 57.1875rem;
    margin: 0 auto 1.6875rem;
  }
  .cta--contents {
    position: relative;
    width: 61.25rem;
    margin: 0 auto;
  }
  .cta--contents .item-box02 {
    position: absolute;
    width: 28.75rem;
    height: 5.8125rem;
    bottom: 18%;
    right: 5%;
  }
}

#logging_in, #pan, #load{display: none !important;}