/********************************************************************************

common.css

********************************************************************************/

/*============================================================
 import
*============================================================*/
/*============================================================
 system
*============================================================*/
/* pc-sp display switch
---------------------------------------- */
.forPC {
  display: initial;
}

.forSP {
  display: none;
}

/*============================================================
 format
*============================================================*/
html {
  font-size: 10px;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 2rem;
  color: #000;
  letter-spacing: 1;
  line-height: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  min-width: 1028px;
}

.ropa {
  font-family: "Ropa Sans", sans-serif;
}

.roboto {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
}


h2 {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 220%;
  margin-bottom: 56px;
}


p {
  margin: 0;
}

a,
a:hover,
a:visited {
  cursor: pointer;
  text-decoration: none;
  color: #000;
}

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

span {
  font-weight: inherit;
}

/* user agent stylesheet 打消し */
button {
  font-family: "M PLUS 1p", sans-serif;
}

.breadcrumbs {
  line-height: 220%;
  text-align: left;
  padding-top: 120px;
  padding-bottom: 32px;
}

.breadcrumbs a {
  border-bottom: 1px solid #000;
}

.breadcrumbs .post-page {
  margin: 0 10px;
}

.breadcrumbs .home {
  margin-right: 10px;
}

@media (max-width: 480px) {
  .breadcrumbs span[property="name"] {
    display: inline-block;
    padding: 0;
    margin-top: -3px;
    vertical-align: middle;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 375px) {
  .breadcrumbs span[property="name"] {
    max-width: 200px;
  }
}

@media (max-width: 320px) {
  .breadcrumbs span[property="name"] {
    max-width: 150px;
  }
}

.breadcrumbs span[property="name"]:hover {
  max-width: none;
}

.site-featured-image {
  display: none;
}

/* テキスト上に点
---------------------------------------- */
.dot-text {
  position: relative;
}

.dot-text::after {
  content: "";
  width: 0.3em;
  height: 0.3em;
  background-color: #F5AB1A;
  border-radius: 100%;
  position: absolute;
  left: calc(0.5em - 0.15em);
}

/* button
---------------------------------------- */
.btn {
  width: 280px;
  height: 72px;
  line-height: 72px;
  text-align: center;
  background-color: #FFD800;
  border-radius: 100px;
  box-sizing: border-box;
}

.btn>* {
  display: inline-block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: #000000;
  border-radius: 100px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 220%;
  padding: 4px 0 0 0;
}

.btn input[type="submit"] {
  padding: 0;
}

.btn>*:hover {
  cursor: pointer;
}

/* add css for btn animation */
.btn {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  position: relative;
  font-weight: 500 !important;
}

.btn::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.btn,
.btn::before,
.btn::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.btn::after {
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

.btn:hover::after {
  top: 0;
  left: 0;
  background-color: #FFB800;
}

form .btn {
  margin: 0 auto;
}

/* scroll fade
---------------------------------------- */
.scroll-fade {
  opacity: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
  transform: translate(0, 50px);
}

.scroll-fade-on {
  opacity: 1;
  transform: translate(0, 0);
}

/* illust
---------------------------------------- */
.illust-base {
  position: relative;
  z-index: 100;
}

.illust {
  /* position: absolute; */
  z-index: 100;
  pointer-events: none;
}

/*============================================================
 common layout
*============================================================*/
html {
  width: 100%;
  background-color: #fff;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
}

section {
  width: 100%;
  margin: 0;
  padding: 0;
}


.inner {
  width: 980px;
  margin: 0 auto;
}

.heading h1 {
  background-color: #fff;
  font-weight: 500 !important;
  font-size: 3.2rem;
  line-height: 220%;
  margin-top: 78px;
  margin-bottom: 20px;
  text-align: center;
}

.heading p {
  font-size: 1.8rem;
  line-height: 220%;
  margin-bottom: 80px;
  text-align: center;
}

/* last-child adjust
---------------------------------------- */


/*============================================================
 header
*============================================================*/
header.site-header:not(.no-fixed) {
  position: fixed;
  /* top: -150px; */
  left: 0;
  z-index: 500;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;
}

header.site-header {
  width: 100%;
  height: 80px;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.08);

}

header.site-header:not(.no-fixed).scrolled {
  top: 0;
}

/* Navigation
---------------------------------------- */
header .site-branding {
  margin: 0 auto;
}

header .site-branding .inner {
  width: 1292px;
}

header .site-branding .top-info {
  width: 1292px;
  height: 80px;
  margin: 0 auto;
  max-width: 100%;
  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 .site-branding .top-info .top-logo {
  width: 206px;
  height: 64px;
  /* margin-right: auto; */
}

header .site-branding .top-info .top-catch {
  font-size: 1.4rem;
  line-height: 220%;
  margin: 0 auto 0 0;
}

header .site-branding .top-info nav {
  font-size: 1.4rem;
  line-height: 220%;
  margin-right: 45px;
}

header .site-branding .top-info nav ul {
  width: 320px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .site-branding .top-info .top-logo-nav {
  display: none;
}

header .site-branding .top-info .top-btn .btn {
  width: 200px;
  height: 48px;
  border-radius: 40px;
  line-height: 48px;
}

header .site-branding .top-info .top-btn .btn a {
  font-size: 1.6rem;
  padding: 7px 0 0 0;
}

header .site-branding .top-info nav .top-btn {
  display: none;
}

header nav ul li a {
  font-weight: 500;
  color: #000;
}

header nav ul li a.color {
  color: #37B3D0;
}

/*============================================================
 main
*============================================================*/
/* hero
---------------------------------------- */
/* #hero {
  width: 100%;
  height: calc(100vh - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
  background-color: #36B4D1;
  font-family: 'M PLUS 1p';
}

#hero .inner {
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding: 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#hero .inner .catch {
  width: 60%;
}

#hero .inner .catch__sub {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .08em;
  padding: 24px 40px;
  color: #ffffff;
  background-color: #274156;
  margin-bottom: 40px;
  text-align: center;
}

#hero .inner .catch__title {
  font-size: 34px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 68px;
  color: #ffffff;
  margin-bottom: 28px;
  text-align: left;
}

#hero .inner .catch__title span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #FFD800));
  background: linear-gradient(transparent 80%, #FFD800 0%);
}

#hero .inner .catch__detail {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 42px;
  color: #ffffff;
  margin-bottom: 32px;
}

#hero .inner .catch__detail span {
  color: #FFD800;
  font-weight: 700;
}

#hero .inner .catch__detail .big {
  font-size: 40px;
}

#hero .inner .catch__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#hero .inner .catch__cta .cta {
  padding: 8px 0;
}

#hero .inner .catch__cta .btn {
  width: 480px;
  height: 80px;
  margin: 0 8px;
}

#hero .inner .catch__cta .btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-size: 22px;
}

#hero .inner .catch__cta .button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 330px;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
  padding: 28px 0;
  background-color: #FFD800;
  border-radius: 36px;
  position: relative;
}

#hero .inner .catch__cta .button:hover::before {
  width: 100%;
}

#hero .inner .catch__cta .button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  width: 0;
  background: #FFB800;
  z-index: -1;
  transition: .5s;
  border-radius: 36px;
}

#hero .inner .illust {
  width: 40%;
  text-align: center;
  position: relative;
  z-index: 1;
}

#hero .inner .illust__content {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: .08em;
}

@media (max-width: 1240px) {
  #hero .catch__cta .cta {
    width: 340px;
  }

  #hero .catch__cta .cta .btn {
    width: 340px;
  }

  #hero .catch__cta .cta .btn a {
    font-size: 20px;
  }
} */
.top {
  width: 100%;
  margin: auto;
  background-color: #3CB4D1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  transform: translateY(80px);
}

.top .br {
  display: block;
}

.top .top-inner {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  padding: 48px 0;
}

.top .top-inner .top-catch {
  font-size: 36px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.top .top-inner .top-catch .empha {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.top .top-inner .top-catch .empha:before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.top .top-inner .top-title {
  font-size: 48px;
  font-weight: 400;
  letter-spacing: .12em;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 16px;
}

.top .top-inner .top-title .colored {
  color: #FFDB00;
}

.top .top-inner .top-content {
  width: 90%;
  margin: 0 auto 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top .top-inner .top-content .top-illust {
  max-width: 60%;
  width: 800px;
}

.top .top-inner .top-content .top-illust img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top .top-inner .top-content .top-illust img.sp {
  display: none;
}

.top .top-inner .top-content .top-comment {
  max-width: 40%;
  width: 100%;
}

.top .top-inner .top-content .top-comment .comment-item {
  margin-bottom: 80px;
}

.top .top-inner .top-content .top-comment .comment-item .comment-sp {
  display: none;
}

.top .top-inner .top-content .top-comment .comment-item .comment-content {
  display: inline-block;
  background-color: #fff;
  border-radius: 5px;
  padding: 12px 8px;
  min-width: 290px;
  position: relative;
}

.top .top-inner .top-content .top-comment .comment-item .comment-content .sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.5;
  color: #3CB4D1;
  margin-bottom: 4px;
}

.top .top-inner .top-content .top-comment .comment-item .comment-content .main {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1;
  color: #3CB4D1;
}

.top .top-inner .top-content .top-comment .comment-item .comment-content:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: -16px;
  bottom: 50%;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  border-width: 12px 0 12px 18px;
  -webkit-transform: rotate(180deg) translateY(-50%);
  transform: rotate(180deg) translateY(-50%);
}

.top .top-inner .top-content .top-comment .comment-item:last-child {
  margin-bottom: 0;
}

.top .top-inner .top-sub {
  margin-bottom: 32px;
}

.top .top-inner .top-sub .sub-text {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.7;
  color: #FFFFFF;
}

.top .top-inner .top-sub .sub-text .empha {
  display: inline-block;
  position: relative;
}

.top .top-inner .top-sub .sub-text .empha:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 2px;
}

.top .top-inner .top-cta {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top .top-inner .top-cta .cta-btn {
  width: 340px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1;
  padding: 16px 0;
  color: #000;
  background-color: #FFD700;
  margin-right: 64px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.top .top-inner .top-cta .cta-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 12px;
  background-color: #FFB800;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.top .top-inner .top-cta .cta-btn:hover:before {
  left: 0;
}

.top .top-inner .top-cta .cta-btn:last-child {
  margin-right: 0;
}

@media (max-width: 1240px) {
  .top .top-inner {
    max-width: 960px;
  }

  .top .top-inner .top-catch {
    font-size: 30px;
  }

  .top .top-inner .top-title {
    font-size: 44px;
  }

  .top .top-inner .top-content .top-illust {
    width: 500px;
  }

  .top .top-inner .top-content .top-comment .comment-item {
    margin-bottom: 48px;
  }

  .top .top-inner .top-sub .sub-text .tab {
    display: block;
  }
}

@media (max-width: 960px) {
  .top .top-inner {
    max-width: 740px;
  }

  .top .top-inner .top-catch {
    font-size: 24px;
    letter-spacing: .08em;
  }

  .top .top-inner .top-title {
    font-size: 36px;
    letter-spacing: .08em;
  }

  .top .top-inner .top-content {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .top .top-inner .top-content .top-illust {
    width: 400px;
  }

  .top .top-inner .top-content .top-comment .comment-item {
    margin-bottom: 32px;
  }
}

@media (max-width: 768px) {
  .top {
    transform: translateY(64px);
  }

  .top .top-inner .top-catch .sp {
    display: block;
  }

  .top .top-inner .top-title .sp {
    display: block;
  }

  .top .top-inner .top-content {
    display: block;
  }

  .top .top-inner .top-content .top-illust {
    max-width: 90%;
    width: 500px;
    margin: 0 auto 40px;
  }

  .top .top-inner .top-content .top-illust img.sp {
    display: block;
  }

  .top .top-inner .top-content .top-illust img.pc {
    display: none;
  }

  .top .top-inner .top-content .top-comment {
    width: 90%;
    max-width: 100%;
    margin: auto;
  }

  .top .top-inner .top-content .top-comment .comment-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-sp {
    display: block;
    width: 100px;
    height: auto;
    margin-right: 32px;
  }

  .top .top-inner .top-sub .sub-text .tab {
    display: none;
  }

  .top .top-inner .top-sub .sub-text .sp {
    display: none;
  }

  .top .top-inner .top-cta .cta-btn {
    width: 250px;
    font-size: 16px;
    margin-right: 32px;
  }
}

@media (max-width: 540px) {
  .top .top-inner .top-content .top-illust {
    width: 360px;
  }

  .top .top-inner .top-sub .sub-text {
    font-size: 16px;
    letter-spacing: .04em;
  }

  .top .top-inner .top-sub .sub-text .sp {
    display: none;
  }

  .top .top-inner .top-cta .cta-btn {
    width: 220px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .top .top-inner .top-catch {
    width: 95%;
    margin: 0 auto 24px;
    font-size: 18px;
  }

  .top .top-inner .top-catch .empha:before {
    bottom: -2px;
  }

  .top .top-inner .top-title {
    font-size: 32px;
  }

  .top .top-inner .top-comment .comment-item .comment-sp {
    width: 80px !important;
  }

  .top .top-inner .top-comment .comment-item .comment-content {
    width: 240px;
    min-width: 250px !important;
    padding: 10px 4px !important;
  }

  .top .top-inner .top-comment .comment-item .comment-content .main {
    font-size: 14px !important;
  }

  .top .top-inner .top-sub {
    width: 95%;
    margin: 0 auto 32px;
  }

  .top .top-inner .top-sub .sub-text .tab {
    display: block;
  }

  .top .top-inner .top-sub .sub-text .sp {
    display: block;
  }

  .top .top-inner .top-cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .top .top-inner .top-cta .cta-btn {
    width: 300px;
    font-size: 18px;
    margin: 0 auto 24px;
    padding: 18px 0;
  }

  .top .top-inner .top-cta .cta-btn:last-child {
    margin: 0 auto;
  }
}

@media (max-width: 375px) {
  .top .top-inner .top-catch {
    font-size: 16px;
  }

  .top .top-inner .top-title {
    font-size: 28px;
  }

  .top .top-inner .top-content .top-illust {
    width: 300px;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-sp {
    width: 70px !important;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-content {
    min-width: 230px !important;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-content .sub {
    font-size: 10px;
    letter-spacing: .04em;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-content .main {
    font-size: 13px !important;
  }
}

@media (max-width: 320px) {
  .top .top-inner .top-catch .sp {
    display: none;
  }

  .top .top-inner .top-title {
    font-size: 24px;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-sp {
    width: 80px !important;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-content {
    min-width: 190px !important;
  }

  .top .top-inner .top-content .top-comment .comment-item .comment-content .main {
    font-size: 10px !important;
    font-weight: 600 !important;
  }

  .top .top-inner .top-sub .sub-text .tab {
    display: none;
  }

  .top .top-inner .top-cta .cta-btn {
    width: 260px;
    font-size: 16px;
  }
}

.fvfooter {
  width: 100%;
  height: 80px;
  position: fixed;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  bottom: 0;
  background-color: #274156;
}

.fvfooter__inner {
  width: calc(100% - 128px);
  max-width: 1440px;
  margin: auto;
  padding: 0 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.fvfooter__inner p {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: .08em;
  line-height: 80px;
  margin-bottom: 0;
}

.fvfooter__inner p:first-child {
  margin-bottom: 0;
}


.fvfooter__inner .cta {
  height: 50px;
}

.fvfooter__inner .cta .btn {
  height: 50px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fvfooter__inner .cta .btn a {
  font-size: 14px;
  width: 200px;
  height: auto;
  display: block;
}

.fix {
  position: fixed;
  right: 10px;
  bottom: 90px;
  background-color: #ffffff;
  text-align: center;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, .16);
  z-index: 999;
}

.fix__inner {
  padding: 32px 48px;
}

.fix__inner h3 {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #36B4D1;
  margin-bottom: 16px;
  position: relative;
}

.fix__inner h3::before {
  content: "";
  display: block;
  width: 20px;
  height: 25px;
  background-image: url(../img/border2.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 4px;
  right: 100%;
}

.fix__inner h3::after {
  content: "";
  display: block;
  width: 20px;
  height: 25px;
  background-image: url(../img/border1.svg);
  background-repeat: no-repeat;
  position: absolute;
  top: 4px;
  left: 100%;
}

.fix__inner--arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#different {
  width: 100%;
  margin: auto;
  /* padding: 100px calc((100% - 90%) / 2) 0; */
  padding-top: 100px;
  transform: translateY(80px);
  background-color: #FFFDED;
}

#different .section__title {
  max-width: 1152px;
  margin: auto;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-bottom: 40px;
}

#different .different__text {
  max-width: 1152px;
  margin: auto;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

#different .different__text .colored {
  color: #37B3D0;
  font-weight: 500;
}

@media (max-width: 1024px) {
  #different .section__title {
    font-size: 30px;
  }

  #different .different__text {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  #different {
    transform: translateY(64px);
  }

  #different .section__title {
    font-size: 20px;
    width: 90%;
  }

  #different .different__text {
    font-size: 16px;
    width: 90%;
  }
}

@media (max-width: 500px) {
  #different .section__title .sp {
    display: block;
  }
}

@media (min-width: 1441px) {
  #different {
    max-width: 1152px;
    padding: 100px calc((100% - 1152px) / 2);
  }
}

#problem {
  width: 100%;
  background-color: #FFFDEE;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

#problem .section__title {
  padding-top: 80px;
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 500;
  letter-spacing: .04em;
}

#problem .problem__inner {
  width: 65%;
  max-width: 1024px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#problem .problem__inner--content {
  width: 45%;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 56px;
  text-align: left;
  margin-bottom: 0;
}

#problem .problem__inner--box {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#problem .problem__inner--boxChild {
  width: 100px;
  height: 100px;
  margin: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#problem .problem__inner--boxChild_img {
  width: 120px;
  height: 120px;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
  margin: 8px 0 12px;
}

#problem .problem__inner--boxChild_text {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  color: #ffffff;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* こんな経験ありませんか？
---------------------------------------- */
main #sec-problem {
  padding: 100px 0;
  background-color: #FFFDEE;
}

main #sec-problem .catch {
  text-align: center;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  letter-spacing: 0.04em;
  margin-bottom: 50px;
}

main #sec-problem ul {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

main #sec-problem ul li {
  width: 296px;
  height: 296px;
  background-color: #fff;
  border-radius: 296px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
  padding: 53px 0 0 0;
  box-sizing: border-box;
  text-align: center;

  font-weight: 500;
  font-size: 1.6rem;
  line-height: 180%;

  background-repeat: no-repeat;
  background-size: 160px auto;
  background-position: bottom 45px center;
}

main #sec-problem ul li span {
  color: #BF3232;
}

main #sec-problem ul li:nth-of-type(1) {
  background-image: url(assets/images/pc/front/problem-03.png);
}

main #sec-problem ul li:nth-of-type(2) {
  background-image: url(assets/images/pc/front/problem-02.png);
}

main #sec-problem ul li:nth-of-type(3) {
  background-image: url(assets/images/pc/front/problem-01.png);
}

#operation {
  width: 90%;
  max-width: 1440px;
  margin: auto;
  padding: 100px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#operation .operate__illust {
  width: 40%;
}

#operation .operate__content {
  width: 50%;
  text-align: center;
}

#operation .operate__content .section__title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 46px;
  margin-bottom: 40px;
}

#operation .operate__content .operate__sub {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 36px;
  margin-bottom: 40px;
}

#operation .operate__content .cta {
  height: 50px;
}

#operation .operate__content .cta .btn {
  width: 220px;
  height: 50px;
  margin: auto;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#operation .operate__content .cta .btn a {
  font-size: 16px;
  width: 220px;
  height: auto;
  display: block;
}

#improve {
  width: 100%;
  background-color: #36B4D1;
  text-align: center;
  padding: 100px 0;
}

#improve .section_title {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #FFD800;
  margin-bottom: 50px;
}

#improve .improve__inner {
  width: 90%;
  max-width: 1440px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#improve .improve__inner--text {
  width: 65%;
}

#improve .improve__inner--text p {
  font-size: 22px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.04em;
  color: #ffffff;
  margin: 24px 0;
  line-height: 32px;
}

#improve .improve__inner--illust {
  width: 25%;
}

/* コンセプト
---------------------------------------- */
main #sec-concept {
  background-image: url(assets/images/pc/front/concept-texture.png);
  background-size: 104px;
  color: #fff;
  height: 500;
  overflow: hidden;
}

main #sec-concept .inner {
  /* width: 1366px; */
  padding: 112px 0;
}

main #sec-concept h2 {
  font-weight: 500;
  font-size: 4.0rem;
  line-height: 200%;
  margin: 0 0 40px 0;
  /* margin: 0 0 40px 193px; */
  letter-spacing: 0.12em;
  text-align: left;
}

main #sec-concept p {
  font-size: 1.6rem;
  line-height: 240%;
  width: 622px;
}

main #sec-concept .illust {
  /* right: 85px; */
  right: -110px;
  bottom: 0;
}

main #sec-concept .illust img {
  width: 378px;
  height: 400px;
}

/* ポイント
---------------------------------------- */
main #sec-point {
  background-color: #FFFDEE;
  padding: 100px 0;
  position: relative;
}

/* main #sec-point:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 49.4vw 0 49.4vw;
  border-color: #FFFDEE transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
} */
main #sec-point .inner {
  /* overflow: hidden; */
}

main #sec-point h2 {
  background-image: url(assets/images/pc/front/point-h2-bg.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: 980px;
  font-weight: 500;
  font-size: 32px;
  line-height: 260%;
  letter-spacing: 0.04em;
  text-align: center;
  color: #37B3D0;
  margin-bottom: 0px;
}

main #sec-point .catch {
  font-weight: 500;
  font-size: 22px;
  line-height: 260%;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 72px;
}

main #sec-point .point-wrap {
  /* margin-bottom: 36px; */
}

main #sec-point .point-wrap .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 104px;
}

main #sec-point .point-wrap .point:last-child {
  margin-bottom: 0;
}

main #sec-point .point-wrap .point:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

main #sec-point .point-wrap .point .image {
  width: 232px;
  height: 232px;
}

main #sec-point .point-wrap .point .info {
  width: 676px;
  margin: 25px 0 0 0;
}

main #sec-point .point-wrap .point .info .num {
  font-weight: 500;
  font-size: 70px;
  color: #36B4D1;
  margin-bottom: 0;
  line-height: 40px;
  text-align: left;
  margin-bottom: 48px;
}

main #sec-point .point-wrap .point .info h3 {
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .04em;
  margin-bottom: 28px;
}

main #sec-point .point-wrap .point .info h3 span {
  color: #BF3232;
  font-weight: 600;
}

main #sec-point .point-wrap .point .info h3 span.big {
  font-size: 40px;
}

main #sec-point .point-wrap .point .info .text {
  font-size: 1.8rem;
  line-height: 32px;
}

/* 機能
---------------------------------------- */
main #sec-function {
  background-color: #FFD800;
  background-image: url(assets/images/pc/front/function-bg.png);
  background-repeat: no-repeat;
  background-position: top -460px center;
  background-size: 1560px 1087px;
  text-align: center;
}

main #sec-function .inner {
  padding: 100px 0 470px 0;
  /* width: 100%; */
}

main #sec-function .catch {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 220%;
  letter-spacing: 0.12em;
}

main #sec-function .catch.first {
  margin-bottom: 32px;
}

main #sec-function .catch.last {
  font-size: 22px;
  margin-bottom: 0;
  color: #BF3232;
  margin-bottom: 80px;
  line-height: 36px;
}

main #sec-function .catch.last span {
  color: #333333;
}

main #sec-function h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 180%;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  color: #BF3232;
}

main #sec-function ul {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 980px;
  margin: 0 auto;
}

main #sec-function ul li {
  height: 296px;
  width: 296px;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 180%;
  padding: 53px 0 0 0;
  margin-bottom: 46px;
  box-sizing: border-box;

  background-color: #fff;
  border-radius: 296px;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.08);
  background-repeat: no-repeat;
  background-size: 160px auto;
  background-position: bottom 45px center;
}

main #sec-function ul li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

main #sec-function ul li:nth-of-type(1) {
  background-image: url(assets/images/pc/front/function-circle-01.png);
}

main #sec-function ul li:nth-of-type(2) {
  background-image: url(assets/images/pc/front/function-circle-02.png);
}

main #sec-function ul li:nth-of-type(3) {
  background-image: url(assets/images/pc/front/function-circle-03.png);
}

main #sec-function ul li:nth-of-type(4) {
  background-image: url(assets/images/pc/front/function-circle-04.png);
}

main #sec-function ul li:nth-of-type(5) {
  background-image: url(assets/images/pc/front/function-circle-05.png);
}

main #sec-function ul li:nth-of-type(6) {
  background-image: url(assets/images/pc/front/function-circle-06.png);
}

main #sec-function .illust {
  bottom: -282px;
  left: 0;
  width: 100%;
  text-align: center;
}

main #sec-function .illust img {
  width: 1126px;
  height: auto;
}

/* ステップ
---------------------------------------- */
main #sec-step {
  background-color: #FFFDEE;
  padding: 377px 0 102px 0;
}

main #sec-step .inner .text {
  font-size: 22px;
}

main #sec-step h2 {
  font-weight: 500;
  font-size: 32px;
  line-height: 220%;
  text-align: center;
  margin-bottom: 0;
}

main #sec-step h2 span {
  color: #BF3232;
}

main #sec-step .step-wrap {
  /* background-image: url(assets/images/pc/front/step-bg.png?20200716);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 520px auto; */
  padding: 120px 0 0 0;

  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-image: url('assets/images/pc/front/step_back.png');
  background-size: 50%;
  background-position: center;
  background-repeat: no-repeat;
}

p:first-child {
  text-align: center;
  margin-bottom: 32px;
}

main #sec-step .step-wrap .step {
  margin: 0 0 80px 30px;
}

main #sec-step .step-wrap .steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

main #sec-step .step-wrap .step:nth-last-child(-n+2) {
  margin-bottom: 0;
}

/* main #sec-step .step-wrap .step:nth-child(1) {
	order: 1;
}
main #sec-step .step-wrap .step:nth-child(2) {
	order: 2;
}
main #sec-step .step-wrap .step:nth-child(3) {
	order: 4;
}
main #sec-step .step-wrap .step:nth-child(4) {
	order: 3;
} */
main #sec-step .step-wrap .step .monitor .number {
  position: absolute;
  top: -110px;
  left: -30px;
  font-family: "Ropa Sans", sans-serif;
  font-size: 12.0rem;
  line-height: 180%;
  color: #FFD800;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.12);
}

main #sec-step .step-wrap .step .monitor {
  box-sizing: border-box;
  border-radius: 16px;

  width: 440px;
  text-align: center;
  margin-bottom: 20px;

  position: relative;
}

main #sec-step .step-wrap .step .info h3 {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 180%;
  margin-bottom: 16px;
}

main #sec-step .step-wrap .step .info .text {
  font-size: 18px;
  line-height: 180%;
}

main #sec-step .cta {
  height: 50px;
}

main #sec-step .cta .btn {
  width: 220px;
  height: 50px;
  margin: auto;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 103px auto 0;
}

main #sec-step .cta .btn a {
  font-size: 16px;
  width: 220px;
  height: auto;
  display: block;
}

/* ユースケース
---------------------------------------- */
main #sec-usecase {
  background-color: #37B3D0;
  padding: 80px 0 70px 0;
  overflow: hidden;
}

main #sec-usecase .logo {
  margin-bottom: 24px;
  text-align: center;
}

main #sec-usecase .logo img {
  width: 238px;
  height: 76px;
}

main #sec-usecase .title-catch {
  font-weight: 500;
  font-size: 32px;
  line-height: 220%;
  margin-bottom: 56px;
  color: #FFFFFF;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main #sec-usecase .title-catch img {
  transform: translateY(-2px);
}

main #sec-usecase .usecase-wrap {}

main #sec-usecase .usecase-wrap .usecase {
  margin-bottom: 128px;
  position: relative;
  z-index: 100;
}

main #sec-usecase .usecase-wrap .usecase .number {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-size: 80.0rem;
  line-height: 220%;
  color: #36A4BE;
  position: absolute;
  bottom: -670px;
  right: -80px;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 480px) {
  main #sec-usecase .usecase-wrap .usecase .number {
    bottom: -720px !important;
  }
}

main #sec-usecase .usecase-wrap .usecase .number:after {
  content: "CASE";
  width: 100%;
  font-family: "M PLUS 1p", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 4.8rem;
  line-height: 220%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #3691A7;
  position: absolute;
  bottom: 578px;
  right: 10px;
  z-index: 0;
}

main #sec-usecase .usecase-wrap .usecase h3 {
  font-weight: 500;
  font-size: 26px;
  line-height: 220%;
  margin-bottom: 12px;
  color: #FFFFFF;
}

main #sec-usecase .usecase-wrap .usecase h3 span {
  font-size: 32px;
  font-weight: 600;
  color: #FFD800;
}

main #sec-usecase .usecase-wrap .usecase .catch {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 240%;
  color: #FFFFFF;
  margin-bottom: 48px;
}

main #sec-usecase .usecase-wrap .usecase .catch .first-line {
  padding-bottom: 5px;
  background: linear-gradient(transparent 90%, #FFD800 70%);
}

main #sec-usecase .usecase-wrap .usecase .text {
  background-color: #FFFDEE;
  border-radius: 12px;
  box-sizing: border-box;
  padding: 32px;
  font-size: 2.4rem;
  line-height: 240%;
}

main #sec-usecase .cta {
  height: 50px;
}

main #sec-usecase .cta .btn {
  width: 280px;
  height: 50px;
  margin: auto;
  padding: 16px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

main #sec-usecase .cta .btn a {
  font-size: 16px;
  width: 280px;
  height: auto;
  display: block;
}

/* 料金
---------------------------------------- */
main #sec-price {
  background-color: #FFFDEE;
  padding: 40px 0 0 0;
  height: 1330px;
  box-sizing: border-box;
}

main #sec-price h2 {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
}

main #sec-price p {
  line-height: 220%;
  text-align: center;
  margin-bottom: 44px;
}

main #sec-price .plan-wrap {
  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;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding-bottom: 32px;
}

main #sec-price .plan-wrap .plan {
  background-color: #FFFFFF;
  border: 1px solid #EAE6CE;
  box-sizing: border-box;
  border-radius: 12px;
  width: 320px;
  height: 680px;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;

  text-align: center;
}

main #sec-price .plan-wrap .plan:hover {
  background: #FFF09D;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.16);
  height: 680px;
  margin: -40px 0 0 0;
}

main #sec-price .plan-wrap .plan h3 {
  background-color: #FFD800;
  border: 1px solid #EAE6CE;
  box-sizing: border-box;
  border-radius: 12px 12px 0px 0px;
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 140%;
  padding: 8px 16px;
  margin-bottom: 24px;
}

main #sec-price .plan-wrap .plan h3::first-line {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 140%;
  letter-spacing: 0.04em;
}

main #sec-price .plan-wrap .plan.pro h3 {
  background-color: #000;
  color: #fff;
}

main #sec-price .plan-wrap .plan p {
  padding: 0 16px;
}

main #sec-price .plan-wrap .plan .price {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 180%;
  margin-bottom: 20px;
  filter: blur(7px);
}

main #sec-price .plan-wrap .plan .text {
  font-size: 1.6rem;
  line-height: 220%;
}

main #sec-price .plan-wrap .plan .note {
  font-size: 1.2rem;
  line-height: 220%;
}

main #sec-price .plan-wrap .plan dl {}

main #sec-price .plan-wrap .plan dl dt {
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 220%;
}

main #sec-price .plan-wrap .plan dl dd {
  font-size: 1.6rem;
  line-height: 180%;
  margin-bottom: 16px;
}

main #sec-price .plan-wrap .plan dl dd.possible {
  color: #37B3D0;
}

main #sec-price .plan-wrap .plan dl dd.impossible {
  color: #EB5757;
}

main #sec-price .price-option {
  background-color: #FFFDEE;
  border-radius: 12px;
  box-sizing: border-box;
  padding-bottom: 32px;
  font-size: 1.6rem;
  line-height: 200%;
}

main #sec-price .price-option p {
  text-align: left;
}

main #sec-price .price-option strong {
  font-weight: bold;
}

/* 導入の流れ
---------------------------------------- */
main #sec-flow {
  position: relative;
  z-index: 100;
  background-color: #FFD800;
  margin-top: 230px;
}

main #sec-flow .inner {
  /* width: 1366px; */
  padding: 16px 0 104px 0;

  background-image: url(assets/images/pc/front/flow-bg.png);
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

main #sec-flow .inner.illust-base {
  top: -32px;
}

main #sec-flow:before {
  content: "";
  display: block;
  background-image: url(assets/images/pc/front/flow-top.png);
  background-size: 1920px 136px;
  ;
  background-position: top 15px center;
  background-repeat: no-repeat;
  position: absolute;
  top: -136px;
  height: 136px;
  width: 100%;
}

main #sec-flow .illust {
  bottom: 0;
  right: 136px;
}

main #sec-flow .illust img {
  width: 111px;
}

main #sec-flow h2 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  text-align: center;
}

main #sec-flow .flow-wrap {
  width: 720px;
  margin: 0 auto;
  box-sizing: border-box;
}

main #sec-flow .flow-wrap .flow {
  margin-left: 48px;
  padding-bottom: 64px;
  border-left: solid 4px #37B3D0;
  position: relative;
}

main #sec-flow .flow-wrap .flow:last-child {
  padding-bottom: 0;
  border-left: none;
}

main #sec-flow .flow-wrap .flow:nth-child(5) h3:after {
  color: #37B3D0;
  content: "\f00c";
  font-size: 160%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 10px;
  position: relative;
  top: 5px;
  left: 10px;
}

main #sec-flow .flow-wrap .flow .number {
  position: absolute;
  top: 0;
  left: -48px;
  width: 96px;
  height: 96px;
  background-color: #37B3D0;
  font-family: "Ropa Sans", sans-serif;
  font-size: 6.4rem;
  line-height: 180%;
  color: #FFFFFF;
  text-align: center;
  border-radius: 100px;
  pointer-events: none;
}

main #sec-flow .flow-wrap .flow .number:before {
  content: "STEP";
  display: block;
  position: absolute;
  top: 10px;
  left: calc(48px - 1em);
  font-size: 1.4rem;
  line-height: 180%;
}

main #sec-flow .flow-wrap .flow:last-of-type .number:before {
  content: '';
}

main #sec-flow .flow-wrap .flow .number img {
  position: relative;
  top: 10px;
}

main #sec-flow .flow-wrap .flow h3 {
  height: 96px;
  background-color: #fff;
  border: solid 2px #37B3D0;
  box-sizing: border-box;
  border-radius: 0px 100px 100px 0px;

  font-weight: 500;
  font-size: 2.4rem;
  line-height: 220%;
  letter-spacing: 0.08em;
  padding: 22px 0 0 80px;
  margin-bottom: 8px;
}

main #sec-flow .flow-wrap .flow h3 .period {
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 220%;
  color: #F5AB1A;
  vertical-align: text-top;
  padding-left: 354px;
  letter-spacing: normal;
}

main #sec-flow .flow-wrap .flow .note {
  padding: 24px 0 24px 78px;
  font-size: 1.8rem;
  line-height: 220%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-sizing: border-box;
  margin-left: 16px;
  margin-top: 16px;
}

main #sec-flow .flow-wrap .flow .note a {
  border-bottom: 1px solid #000;
}

main #sec-flow .flow-wrap .flow .note p:first-child {
  margin-bottom: 0 !important;
  text-align: left !important;
}

main #sec-flow .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 87.5px 0 87.5px;
  border-color: #37b4d0 transparent transparent transparent;
  position: absolute;
  bottom: 24px;
  left: 47%;
  transform: translateX(-50%);
}

/* よくあるご質問
---------------------------------------- */
main #sec-faq {
  background-color: #FFFDEE;
}

main #sec-faq .inner {
  padding: 80px 0 96px 0;
}

main #sec-faq .illust {
  top: 60px;
  left: 260px;
  z-index: -1;
}

main #sec-faq .illust img {
  width: 132px;
}

main #sec-faq h2 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  text-align: center;
}

main #sec-faq .faq-wrap {
  margin-top: 55px;
}

main #sec-faq .faq-wrap .faq {
  background-color: #FFFFFF;
  border: 1px solid #EAE6CE;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 48px;
}

main #sec-faq .faq-wrap .faq h3 {
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 200%;
  padding-left: 64px;
  margin-bottom: 32px;
  display: inline-block;
  position: relative;
}

main #sec-faq .faq-wrap .faq .answer {
  font-size: 1.6rem;
  line-height: 240%;
  padding-left: 64px;
  position: relative;
}

main #sec-faq .faq-wrap .faq h3:before,
main #sec-faq .faq-wrap .faq .answer:before {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 2.4rem;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
}

main #sec-faq .faq-wrap .faq h3:before {
  content: "Q";
  background-color: #F5AB1A;
}

main #sec-faq .faq-wrap .faq .answer:before {
  content: "A";
  background-color: #37B3D0;
}

/* 会社概要
---------------------------------------- */
main #sec-about {
  padding: 104px 0 0 0;
}

main #sec-about .logo {
  margin-bottom: 12px;
  text-align: center;
}

main #sec-about .logo img {
  width: 272px;
}

main #sec-about h2 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  margin-bottom: 56px;
  text-align: center;
}

main #sec-about dl {
  margin-bottom: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

main #sec-about dl dt,
main #sec-about dl dd {
  font-size: 1.8rem;
  line-height: 200%;
  letter-spacing: 0.08em;
  padding-bottom: 24px;
  border-bottom: solid 1px #C4C4C4;
  margin-bottom: 24px;
  box-sizing: border-box;
}

main #sec-about dl dt {
  width: 240px;
  padding-right: 20px;
}

main #sec-about dl dd {
  width: 720px;
}

main #sec-about dl dt:last-of-type,
main #sec-about dl dd:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

main #sec-about dl dd .corp-link {
  text-decoration: underline;
}

main #sec-about .map iframe {
  width: 100%;
  height: 480px;
}

/* CTA
---------------------------------------- */
main .common-section-cta {
  padding: 88px 0 80px 0;
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);
  text-align: center;
}

main .common-section-cta .logo {
  margin-bottom: 40px;
}

main .common-section-cta .logo img {
  width: 432px;
  height: 136px;
}

main .common-section-cta .catch {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  margin-bottom: 43px;
}

main .common-section-cta .btn {
  width: 280px;
  margin: 0 auto;
}

main .common-section-cta .btn a {
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 220%;
  padding: 6px 0 0 0;
}

/* CTA-02
---------------------------------------- */
.common-section-cta-02 {
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.2);

}

.common-section-cta-02 * {
  line-height: 220%;
}

.common-section-cta-02 p {
  /* font-size: 3.2rem; */
  font-weight: 500;
}

.common-section-cta-02 .inner {
  padding: 60px 0 86px;

}

.common-section-cta-02 img {
  width: 300px;
}

.common-section-cta-02 .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.common-section-cta-02 .catch {
  position: relative;
  left: 14px;
  font-size: 2.4rem;
}

.common-section-cta-02 .btn {
  height: 56px;
  line-height: 56px;
}

/*============================================================
 お問い合わせ
*============================================================*/
#page-contact {
  /* background-color: #FFFDEE; */
  padding: 48px 0 80px 0;
}

#page-contact .inner {
  padding-top: 80px;
}

#page-contact .inner .mwform-checkbox-field {
  display: block;
  margin-bottom: 8px;
}

#page-contact .inner .mwform-checkbox-field label {
  display: block;
}

.mwform-checkbox-field-text {
  padding-left: 24px !important;
}

.mwform-checkbox-field-text::before {
  width: 12px !important;
  height: 12px !important;
  top: 50% !important;
  transform: translateY(-50%);
  border-radius: 50%;
  transition: .3s !important;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::before {
  background-color: #000 !important;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
  display: none !important;
}

.mw_wp_form .horizontal-item+.horizontal-item {
  margin-left: 0 !important;
}

.agreement .mwform-checkbox-field .mwform-checkbox-field-text {
  padding-left: 44px !important;
}

.agreement .mwform-checkbox-field .mwform-checkbox-field-text::before {
  width: 24px !important;
  height: 24px !important;
  transition: all 0.8s !important;
  border-radius: 0 !important;
}

.agreement input[type="checkbox"]:checked+.mwform-checkbox-field-text::before {
  background-color: #37B3D0 !important;
}

.agreement input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
  display: block !important;
}

@media (max-width: 480px) {
  #page-contact.pt0 {
    /* padding-top: 0; */
  }

  #page-contact .pt0 {
    padding-top: 0;
  }
}

#page-contact .inner #bread {
  padding-top: 0 !important;
}

#page-contact .inner .btn-area .btn {
  margin: 40px auto 0;
}

#page-contact .heading .catch .forSP {
  display: none;
}

#page-contact .heading h1 {
  line-height: 170%;
}

#page-contact .heading p {
  padding: 0 8px;
}

@media (max-width: 480px) {
  #page-contact .heading h1 {
    font-size: 26px;
  }
}

#page #colophon {
  transform: translateY(80px);
}

#page-contact,
.page-price h1 {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 220%;
  margin-bottom: 20px;
  text-align: center;
}

#page-contact,
.page-price .catch {
  font-size: 1.8rem;
  line-height: 220%;
  margin-bottom: 80px;
  text-align: center;
}

#page-contact.page-contact-thanks h1 {
  margin-bottom: 88px;
}

#page-contact.page-contact-thanks .inner {
  background-image: url(assets/images/pc/contact/contact-bg-01.png), url(assets/images/pc/contact/contact-bg-02.png);
  background-repeat: no-repeat;
  background-size: 96px, 109px;
  background-position: left 56px top 109px, right 60px top 109px;
}

#page-contact.page-contact-thanks .message {
  font-weight: 500;
  line-height: 220%;
  font-size: 2.4rem;
  margin-bottom: 136px;
  text-align: center;
}

#page-contact .btn-area .btn {
  width: 400px;
}

/* form */
#page-contact form * {
  /* font-size: 1.8rem; */
  /* line-height: 200%; */
}

#page-contact form dl dt {
  /* margin-bottom: 24px; */
  text-align: left;
}

#page-contact form dl dt.form-valid:after {
  content: "必須";
  display: inline-block;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 200%;
  color: #fff;
  background-color: #EB1305;
  text-align: center;
  vertical-align: text-bottom;
  margin-left: 32px;
  width: 64px;
  height: 22px;
  box-sizing: border-box;
}

#page-contact form dl dd {
  font-weight: 500;
  padding-bottom: 8px;
  border-bottom: solid 1px #000;
  text-align: left;
}

#page-contact form dl dd:last-of-type {
  border-bottom: solid 1px #000;
}

#border-none {
  border: none !important;
}

#page-contact form dl>*:last-child {
  margin-bottom: 88px;
}

#page-contact.page-contact-confirm form dl dd:last-of-type {
  margin-bottom: 80px;
}

#page-contact.page-contact-confirm form .form-footer .policy {
  display: none;
}

#page-contact form .form-footer {
  text-align: center;
}

#page-contact form .form-footer .policy {
  margin-bottom: 24px;
}

#page-contact form .form-footer .policy a {
  font-weight: 500;
  line-height: 220%;
  color: #37B3D0;
  text-decoration: underline;
}

#page-contact form .form-footer .agreement {
  margin-bottom: 80px;
  line-height: 220%;
}

#page-contact form input {
  border: none;
  background-color: transparent !important;
  width: 100%;
  font-weight: 500;
}

#page-contact form input[type="radio"] {
  width: unset;
}

#page-contact form textarea {
  font-family: "M PLUS 1p", sans-serif;
  width: 100%;
  height: 200px;
  padding: 0.5em;
  box-sizing: border-box;
  background-color: transparent !important;
}

#page-contact form input:focus,
#page-contact form textarea:focus,
#page-contact form button:focus {
  outline: none;
}

/* autofill */
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fffdee inset;
}

/* button */
#page-contact form .btn button {
  border: none;
  background-color: transparent;
  font-weight: 500;
  font-size: 20px;
  line-height: 220%;
}

#page-contact form .btn-area .btn.btn-confirm {
  display: none;
}

/* error
---------------------------------------- */
#page-contact .common-error {
  display: none;
}

#page-contact.on-error .catch {
  margin-bottom: 40px;
}

#page-contact.on-error .common-error {
  display: block;
  color: #DF1E1E;
  background-color: #fff;
  font-size: 1.8rem;
  line-height: 220%;
  padding: 16px;
  border: solid 2px #DF1E1E;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 80px;
}

.error-area {
  overflow: hidden;
  margin-bottom: 72px;
}

/* confirm
---------------------------------------- */
#page-contact.page-contact-confirm form .form-footer .agreement {
  color: #FFFDEE;
  margin-bottom: 0;
  height: 0;
  pointer-events: none;
}

#page-contact.page-contact-confirm form .btn-area .btn-confirm {
  display: block;
}

#page-contact.page-contact-confirm form .btn-area {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#page-contact.page-contact-confirm form .btn-area .btn {
  margin: 0 20px;
}

#page-contact.page-contact-confirm form .btn-area .btn.btn-confirm {
  background-color: #fff;
  border: solid 1px #000;
}

#page-contact.page-contact-confirm form .btn-area .btn.btn-confirm:hover::after {
  background: #F4F4F4;
}

/* thanks
---------------------------------------- */
#page-contact.page-contact-thanks .btn {
  margin: 0 auto;
}

#page-contact.page-contact-thanks .btn a {
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 220%;
}


/* checkbox 装飾
---------------------------------------- */
input[type="checkbox"] {
  display: none;
}

.mwform-checkbox-field-text {
  padding-left: 44px;
  position: relative;
}

.mwform-checkbox-field-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s;

}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::before {
  background-color: #37B3D0;
}

input[type="checkbox"]:checked+.mwform-checkbox-field-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 8px;
  width: 8px;
  height: 16px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;

}

/* 7日間無料 */
.taiken * {
  font-weight: 500;
}

.taiken {
  background-color: #37B3D0;
  color: #fff;
  max-width: 980px;
  width: 100%;
  margin: 0 auto 60px;
  font-family: "M PLUS 1p", sans-serif;
  border-radius: 8px;
  line-height: 220%;
  border-bottom: none !important;
}

.taiken .inner {
  padding-top: 30px;
  padding-bottom: 41px;
}

h2 {
  font-size: 3.2rem;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 220%;
  font-weight: 900;
}

.taiken-wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}

.taiken .block {
  width: 50%;
  margin-top: 6px;
}

.h-ttl {
  text-align: center;
  background-color: #F5AB1A;
  width: 206px;
  height: 36px;
  line-height: 36px;
  font-weight: 900;
  margin: 0 auto;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
}

.h-txt {
  text-align: center;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 200%;
  font-size: 1.6rem !important;
}

.taiken .box {
  background-color: #fff;
  color: #37B3D0;
  max-width: 360px;
  width: 100%;
  border-radius: 8px;
  font-size: 1.8rem !important;
  font-weight: 900;
  height: 255px;
  text-align: center;
}

.taiken .box .ttl {
  background-color: #37B3D0;
  color: #fff;
  width: 160px;
  border-radius: 8px;
  font-size: 1.2rem !important;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 15px;
}

.taiken .box ul {
  width: 257px;
  margin: 24px auto 0;
}

.taiken .box li {
  list-style: none;
  text-align: left;
  line-height: 220% !important;
}

.taiken .box li:before {
  color: #37B3D0;
  content: "\f00c";
  font-size: 160%;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  padding-right: 10px;
}

.taiken .list {
  min-width: 427px;
  margin: 0;
  line-height: 200%;
  text-align: left;
}

.taiken .list li {
  font-size: 1.4rem !important;
}

.taiken .list p {
  font-size: 1.4rem !important;
}

/*============================================================
 footer
*============================================================*/
footer {
  height: 88px;
  text-align: center;
  color: #fff;
  background-color: #37B3D0;
  padding: 31px 0;
  box-sizing: border-box;
  z-index: -1;
  position: relative;
  margin-bottom: 0;
}

footer.mb {
  margin-bottom: 80px;
}

footer .site-info .copyright {
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 220%;
  margin-bottom: 0;
}

/*============================================================
 page-info
*============================================================*/

#page-info .info {
  background-color: #FFFDEE;
  padding-top: 56px;
  padding-bottom: 72px;
}

#page-info h3 {
  line-height: 180%;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 14px;
  font-weight: 500;
}

#page-info .text {
  line-height: 200%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 26px;
}

#page-info .btn {
  margin: 0 auto;
  font-weight: 500;
  cursor: pointer;
}

#page-info .cta .btn {
  width: 400px;
}

.info-wrap {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-bottom: 73px;
}

.info-wrap img {
  /* margin-bottom: 20px; */
  max-width: 440px;
  width: 100%;
  border-radius: 20px;
}

.info-wrap .dl-btn {
  background-color: #353535;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-wrap .dl-btn a {
  color: #fff;
  position: relative;
  top: 5px;
}

.info-wrap .dl-btn img {
  width: 14px;
  height: 22px;
  margin-right: 10px;
  margin-bottom: 0;
}


/*============================================================
 page-service
*============================================================*/
#page-service .about .inner {
  position: relative;
  width: 1132px;
  max-width: 100%;
  padding-bottom: 40px;
}

#page-service .about {
  background: #37B3D0;
  color: #fff;
  text-align: center;
}

#page-service .about .title {
  /* align-items: baseline; */
  /* position: relative; */
  /* display: table; */
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 auto;
}

#page-service .about .title img {
  width: 287px;
  height: auto;
}
#page-service .about .title p {
  /* position: absolute; */
  /* right: -30px; */
  /* bottom: 0; */
  line-height: 1.7;
  font-weight: 500;
}

#page-service .about p {
  font-size: 3.2rem;
}

#page-service .about h2 {
  font-weight: initial;
  line-height: 200%;
  color: #fff;
  margin-top: 22px;
  font-weight: 500;
}

#page-service .about .illust {
  /* position: absolute; */
  bottom: -90px;
  left: 50%;
  /* transform: translateX(-50%); */
  width: 1080px;
  max-width: 100%;
  padding-top: 40px;
  margin: auto;
}

#page-service .step {
  background-color: #FFFDEE;
  padding-top: 50px;
  padding-bottom: 100px;
}

#page-service h2 {
  color: #37B3D0;
  text-align: center;
}

#page-service .step h2:last-of-type {
  /* margin-top: 103px; */
}

#page-service .step .text {
  line-height: 220%;
  text-align: center;
  font-size: 2.4rem;
  padding-bottom: 66px;
  font-weight: 500;
}

#page-service .step .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 97px;
  flex-wrap: wrap;
}

#page-service .step .wrap .chart img {
  width: 560px;
  max-width: 100%;
}

#page-service .step .wrap .person img {
  background-color: #fff;
  margin-top: 12px;
  border-radius: 100%;
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.25);
}

#page-service .step-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 62px;
  flex-wrap: wrap;
}

/* #page-service .step-list:nth-child(2) {
	display: flex;
	justify-content: space-between;
} */
#page-service .step-list:nth-child(2) img:last-of-type {
  margin-top: 40px;
}

#page-service .step-list .number {
  font-family: "Ropa Sans", sans-serif;
  font-size: 12.0rem;
  color: #FFD800;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.12);
}

#page-service .step-list ul {
  line-height: 220%;
  font-weight: 500;
}

#page-service .step-list:first-child ul {
  position: relative;
  right: 13px;
}

#page-service .step-list ul h3 {
  border-bottom: 4px solid #FFD800;
  font-size: 2.4rem;
  font-weight: 500;
}

#page-service .step-list ul li {
  font-weight: 500;
}

#page-service .step-list .images figure {
  text-align: right;
}

#page-service .step-wrap .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 87.5px 0 87.5px;
  border-color: #FFED89 transparent transparent transparent;
  margin: 0 auto;
  position: relative;
}

#page-service .step-wrap .triangle p {
  font-size: 2.4rem;
  color: #F5AB1A;
  text-align: center;
  width: 168px;
  position: absolute;
  bottom: -50%;
  display: inline-block;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
}

#page-service .merit .chart {
  width: 193px;
  text-align: center;
}

#page-service .merit .chart p {
  font-size: 1.4rem;
  line-height: 160%;
  font-weight: 900;
  font-weight: 500;
}

#page-service .merit {
  background-color: #FFFDEE;
  padding-top: 1px;
  padding-bottom: 72px;
}

#page-service .merit .inner h2 {
  margin-top: 64px;
}

#page-service .text {
  text-align: center;
  margin-top: 15px;
}

#page-service .merit .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
  flex-wrap: wrap;
}

#page-service .merit .wrap .h-ttl {
  width: 260px;
}

#page-service .merit .wrap .person img {
  margin-top: 32px;
}

#page-service .merit .box {
  background-color: #fff;
  width: 100%;
  margin-top: 103px;
  line-height: 220%;
  padding: 32px 0 47px 0;
  border: 1px solid #EAE6CE;
  border-radius: 12px;
}

#page-service .merit .box .title {
  font-weight: 900;
  color: #37B3D0;
  font-size: 3.2rem;
  text-align: center;
  line-height: 200%;
}

#page-service .merit .wrap .logo img {
  width: 280px;
}

#page-service .merit .box ul {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}

#page-service .merit .box ul li {
  margin-top: 24px;
  font-size: 2.4rem;
  line-height: 220%;
  font-weight: 500;
}

/* #page-service .merit .box ul li:before {
	width: 10px;
	height: 10px;
	background-color: #FFD800;
	border-radius: 100%;
	content: '';
	display: block;
} */
#page-service .merit .box .border {
  background: linear-gradient(transparent 70%, #FFD800 0%);
}

#page-service .merit .box .dot {
  background-color: #FFD800;
  font-weight: 900;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  margin-right: 14px;
}

/*============================================================
 archive
*============================================================*/
#page-archive .pickup a {
  display: flex;
  justify-content: space-between;
}

#page-archive .pickup img {
  width: 500px;
}

#page-archive .pickup .pickup-info {
  margin-left: 30px;
  width: 400px;
}

#page-archive .pickup .title {
  font-size: 3.2rem;
  line-height: 180%;
  text-align: left;
  margin-top: 20px;
  font-weight: 500;
}

#page-archive .pickup .title:first-letter {
  font-size: 5.6rem;
  color: #37B3D0;
}

#page-archive .pickup .tag {
  background-color: #F5AB1A;
  color: #fff;
  display: table;
  border-radius: 8px;
  width: 104px;
  height: 38px;
  line-height: 38px;
  text-align: center;
}

#page-archive .pickup .btn {
  /* display: none; */
}

#page-archive .company,
#page-single .company {
  font-size: 1.4rem;
  line-height: 180%;
  margin-top: 10px;
  font-weight: 500;
}

#page-archive .new {
  background: #FFFDEE;
  margin-top: 64px;
  padding-top: 20px;
  padding-bottom: 72px;
}

#page-archive .new h2 {
  font-weight: 400;
}

#page-archive .wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 22px;
}

#page-archive .wrap li {
  width: 49%;
  margin-bottom: 56px;
  height: 500px;
}

#page-archive .img {
  margin-bottom: 20px;
}

#page-archive .new .tag,
#page-single .tag {
  background: #CCCCCC;
  font-size: 1.2rem;
  border-radius: 8px;
  display: table;
  line-height: 220%;
  width: 100px;
  height: 32px;
  text-align: center;
  line-height: 32px;
}

#page-archive .new .title {
  font-size: 2.4rem;
  color: #37B3D0;
  font-weight: bold;
  display: table;
  background: linear-gradient(transparent 96%, #37B3D0 4%);
  display: inline;
  line-height: 180%;
}

#page-archive .cta .btn {
  margin: 0 auto;
}

/*============================================================
	single
*============================================================*/
#page-single {
  line-height: 220%;
}

#page-single article {
  margin-top: 70px;
}

#page-single article h2 {
  text-align: left;
}

#page-single article .center-block {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

#page-single article .title {
  text-align: left;
  font-weight: 500;
  font-size: 4.0rem;
}

#page-single article .title:first-letter {
  font-size: 6.4rem;
  color: #37B3D0;
}

#page-single article .text-bg {
  font-size: 1.8rem;
}

#page-single article .text-sm {
  font-size: 1.6rem;
}

#page-single article .company-ttl {
  font-size: 2.8rem;
}

#page-single article .yellow-box {
  border-radius: 8px;
  flex-wrap: nowrap;
  justify-content: space-between;
  background-color: #FFFDEE;
}

#page-single article .yellow-box-title {
  flex-basis: 15% !important;
  text-align: left;
  font-weight: 500;
}

#page-single article .yellow-box-txt {
  flex-basis: 80% !important;
}

#page-single article .yellow-box-txt p {
  font-weight: 400 !important;

}

#page-single article .quote-box {
  font-size: 3.2rem;
}

#page-single .quote-box p {
  font-weight: 500;
}

#page-single .kadai {
  position: relative;
  bottom: 27px;
}


#page-single .single-bottom {
  background: #FFFDEE;
  padding-top: 40px;

  padding-bottom: 72px;
}

#page-single .single-bottom h2 {
  font-weight: 500;
}

#page-single .single-bottom .summary {
  background-color: #FFD800;
  text-align: center;
  border-radius: 8px;
  padding: 0 24px 32px;
}

#page-single .summary h2 {
  padding-top: 24px;
  font-size: 2.8rem;
}

#page-single .single-bottom .dl-btn {
  background-color: #353535;
  color: #fff;
  line-height: 56px;
  margin: 46px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#page-single .single-bottom .dl-btn img {
  width: 12px;
  height: 18px;
  margin-right: 10px;
}

#page-single .single-bottom h2 {
  font-size: 3.2rem;
  margin-bottom: 22px;
}

#page-single .single-bottom .wrap {
  margin-top: 43px;
}

#page-single .single-bottom .list {
  display: flex;
  justify-content: space-between;
}

#page-single .single-bottom .list li {
  width: 29%;
}

#page-single .single-bottom .list li .title {
  font-size: 1.8rem;
  background: linear-gradient(transparent 96%, #37B3D0 4%);
  display: inline;
  font-weight: 900;
  color: #37B3D0;
  line-height: 180%;
}

#page-single p:first-child {
  text-align: left;
  margin-bottom: 0;
  font-weight: 500;
}

#page-single .has-inline-color {
  font-size: 6.4rem;
}

#page-single .has-drop-cap {
  display: flex;
  align-items: baseline;
  font-size: 4.0rem;
}

/* @media (max-width: 1024px) { */
/* #hero {
    width: 100%;
    height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    transform: translateY(80px);
    background-color: #36B4D1;
    font-family: 'M PLUS 1p';
    /* display: none; */
/* } */

/* #hero .inner {
    width: 100%;
    margin: auto;
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  } */

/* #hero .inner .catch {
    width: 65%;
  } */

/* #hero .inner .catch__sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 12px 24px;
    color: #ffffff;
    background-color: #274156;
    margin-bottom: 40px;
    text-align: center;
  }

  #hero .inner .catch__title {
    font-size: 31px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 68px;
    color: #ffffff;
    margin-bottom: 28px;
  }

  #hero .inner .catch__title span {
    display: inline-block;
    background: linear-gradient(transparent 80%, #FFD800 0%);
  }

  #hero .inner .catch__detail {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 38px;
    color: #ffffff;
    margin-bottom: 32px;
  }

  #hero .inner .catch__detail span {
    color: #FFD800;
    font-weight: 700;
  }

  #hero .inner .catch__detail .big {
    font-size: 40px;
  }

  #hero .inner .catch__cta {
    display: flex;
    justify-content: space-between;
  }

  #hero .inner .catch__cta .btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    padding: 16px 0;
    background-color: #FFD800;
    border-radius: 36px;
  }

  #hero .inner .illust {
    width: 30%;
    text-align: center;
  }
} */

@media screen and (max-width: 1024px) {
  /* #hero {
    width: 100%;
    height: calc(80vh - 80px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
    background-color: #36B4D1;
    font-family: 'M PLUS 1p';
  }

  #hero .inner {
    width: 100%;
    margin: auto;
    padding: 0 64px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  } */

  /* #hero .inner .catch {
    width: 65%;
  }

  #hero .inner .catch__sub {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 18px 24px;
    color: #ffffff;
    background-color: #274156;
    margin-bottom: 40px;
    text-align: center;
  }

  #hero .inner .catch__title {
    font-size: 31px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 68px;
    color: #ffffff;
    margin-bottom: 28px;
  }

  #hero .inner .catch__title span {
    display: inline-block;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #FFD800));
    background: linear-gradient(transparent 80%, #FFD800 0%);
  }

  #hero .inner .catch__detail {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 38px;
    color: #ffffff;
    margin-bottom: 64px;
  }

  #hero .inner .catch__detail span {
    color: #FFD800;
    font-weight: 700;
  }

  #hero .inner .catch__detail .big {
    font-size: 40px;
  }

  #hero .inner .catch__cta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #hero .inner .catch__cta .btn {
    width: 300px;
  }

  #hero .inner .catch__cta .btn a {
    width: 100%;
  }

  #hero .inner .catch__cta a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    padding: 16px 0;
    background-color: #FFD800;
    border-radius: 36px;
  }

  #hero .inner .illust {
    width: 35%;
    text-align: center;
  }

  #hero .inner .illust__content {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: .04em;
  } */

  .fvfooter__inner p {
    font-size: 16px;
  }

  main #sec-problem .catch {
    font-size: 30px;
  }

  #problem {
    width: 100%;
    background-color: #FFFDEE;
    text-align: center;
  }

  #problem .section__title {
    padding-top: 80px;
    font-size: 30px;
    margin-bottom: 50px;
  }

  #problem .problem__inner {
    width: 70%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 32px 56px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  #problem .problem__inner--content {
    width: 45%;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .08em;
    line-height: 32px;
    text-align: left;
  }

  #problem .problem__inner--box {
    width: 45%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #problem .problem__inner--boxChild {
    width: 90px;
    height: 90px;
    margin: 8px;
    border-radius: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #problem .problem__inner--boxChild_img {
    width: 100px;
    height: 100px;
  }

  #problem .problem__inner--boxChild_text {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    line-height: 12px;
  }

  #operation .operate__illust {
    width: 35%;
  }

  #operation .operate__content {
    width: 60%;
    text-align: center;
  }

  #operation .operate__content .section__title {
    font-size: 30px;
  }

  #operation .operate__content .operate__sub {
    font-size: 20px;
  }

  #operation .operate__content .cta .btn {
    width: 200px;
    margin: auto;
    padding: 16px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  #operation .operate__content .cta .btn a {
    font-size: 14px;
    width: 200px;
    height: auto;
    display: block;
  }

  #improve .section_title {
    font-size: 30px;
  }

  #improve .improve__inner .improve__inner--text p {
    font-size: 20px;
  }

  #sec-point .inner .h2 {
    font-size: 30px;
  }

  #sec-point .inner p {
    font-size: 20px;
  }

  #sec-function .inner h2 {
    font-size: 30px;
  }

  #sec-function .inner .catch {
    font-size: 20px;
  }

  #sec-step .inner h2 {
    font-size: 30px;
  }

  #sec-step .inner .text {
    font-size: 20px;
  }

  #sec-usecase .inner .title-catch {
    font-size: 30px;
  }

  #sec-faq .inner h2 {
    font-size: 30px;
  }

  #sec-about .inner h2 {
    font-size: 30px;
  }

  #common-section-cta-02 .inner .catch .p {
    font-size: 30px;
  }
}

@media screen and (min-width: 1240px) {
  /* #hero .inner .catch__sub {
    width: 70%;
  } */
}

@media screen and (min-width: 1280px) {
  .problem__inner {
    width: 65%;
  }

  .problem__inner--content {
    width: 40%;
  }

  .problem__inner--box {
    width: 55%;
  }

  .problem__inner--boxChild {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 1025px) {
  header .site-branding .top-info .top-logo {
    width: 160px;
  }

  header .site-branding .top-info .top-catch {
    font-size: 10px;
  }
}

@media screen and (min-width: 1025px) {
  header .site-branding .top-info nav {
    margin-right: 24px;
  }

  /* #hero .inner .catch__cta .cta:nth-child(2) {
    margin-left: 32px !important;
  }

  #hero .inner .catch__cta {
    justify-content: flex-start;
    width: 100% !important;
  }

  #hero .inner .catch__cta .cta {
    width: 45% !important;
  }

  #hero .inner .catch__cta .btn {
    width: 100%;
  }

  #hero .inner .catch {
    width: 60%;
  }

  #hero .inner .illust {
    width: 40%;
  }

  #hero .inner .catch__cta .cta {
    margin: 24px 0;
  } */

  header .site-branding .top-info nav ul {
    width: 260px;
  }

  header .site-branding .top-info .top-catch {
    font-size: 11px;
  }

  .problem__inner {
    width: 70%;
  }

  .problem__inner--content {
    width: 40%;
  }

  .problem__inner--box {
    width: 50%;
  }

  .problem__inner--boxChild {
    width: 100px;
    height: 100px;
  }

  .fvfooter__inner p {
    font-size: 16px;
  }

  header nav ul li a {
    font-size: 12px;
  }
}

@media screen and (min-width: 1439px) {
  /* #hero .inner .catch {
    width: 60%;
  }

  #hero .inner .illust {
    width: 40%;
  }

  #hero .inner .catch__sub {
    width: 70%;
  } */
}

@media screen and (min-height: 1000px) {
  /* #hero {
    height: 800px;
  } */
}

@media (max-width: 768px) {
  /* #hero {
    height: 880px;
  }

  #hero .inner {
    height: 740px;
  }

  #hero .inner .catch .catch__cta {
    display: flex;
    width: 290px;
  }

  #hero .inner .catch .catch__cta .cta {
    width: 290px;
  }

  #hero .inner .catch .catch__cta .cta .btn {
    width: 290px;
  }

  #hero .inner .catch__cta .cta .btn a {
    width: 290px;
  }

  #hero .illust {
    height: auto;
    margin: 72px auto 0;
  }
}

@media (max-width: 500px) {
  #hero {
    height: 720px !important;
  }

  #hero .inner {
    height: 700px !important;
  }

  #hero .inner .catch .catch__title {
    font-size: 20px !important;
  }

  #hero .inner .catch .catch__cta {
    display: block;
    width: 90%;
    margin: auto;
  }

  #hero .inner .catch .catch__cta .cta {
    width: 90%;
  }

  #hero .inner .catch .catch__cta .cta .btn {
    width: 70%;
    height: 80px;
  }

  #hero .inner .catch .catch__cta .cta .btn a {
    width: 90%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 16px;
  }

  #hero .inner .illust {
    height: auto;
  } */

  #improve .section__title .sp {
    display: block !important;
  }
}

@media (max-width: 480px) {
  /* #hero .inner .catch .catch__cta .cta .btn {
    width: 70%;
    height: 60px;
  }

  #hero .inner .catch .catch__cta .cta .btn {
    width: 100%;
    height: 60px;
  }

  #hero .inner .catch .catch__cta .cta .btn a {
    width: 100%;
    height: 60px;
  } */
}

@media (max-width: 500px) {
  .section__title .sp {
    display: block !important;
  }
}

@media (max-width: 375px) {
  /* #hero {
    height: 740px !important;
  }

  #hero .inner {
    height: 660px !important;
  }

  #hero .inner .catch .catch__title {
    font-size: 18px !important; */
  /* } */
}

@media (max-width: 320px) {
  /* #hero {
    height: 700px !important;
  }

  #hero .inner {
    margin-top: 0 !important;
  }

  #hero .inner .catch .catch__title {
    font-size: 16px !important;
  } */
}

/* @media screen and (min-width: 2000px) and (max-width: 2560px) {
  #hero .inner .catch__sub {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: .08em;
    padding: 42px 80px;
    color: #ffffff;
    background-color: #274156;
    margin-bottom: 40px;
    text-align: center;
  }

  #hero .inner .catch__title {
    font-size: 64px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 96px;
    color: #ffffff;
    margin-bottom: 28px;
    text-align: left;
  }

  #hero .inner .catch__detail {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: .08em;
    line-height: 72px;
    color: #ffffff;
    margin-bottom: 64px;
  }

  #hero .inner .catch__cta {
    width: 85%;
  }

  #hero .inner .catch__cta .btn {
    width: 400px;
    margin: 0 8px;
  }

  #hero .inner .catch__cta .btn a {
    font-size: 32px;
  }

  #hero .inner .illust {
    width: 40%;
  }

  #hero .inner .illust .illust_img {
    width: 700px;
    margin: auto;
  }

  #hero .inner .illust .illust_img img {
    width: 700px;
  }

  #hero .inner .illust__content {
    font-size: 36px;
  }

  #problem .problem__inner--content {
    width: 50%;
  }

  #problem .problem__inner--box {
    width: 45%;
  }

  #problem .problem__inner--boxChild {
    width: 150px;
    height: 150px;
  }
} */

/* @media screen and (min-width: 1441px) and (max-width: 2000px) {
  #hero .inner .catch__sub {
    font-size: 24px;
    padding: 32px 40px;
    width: 95% !important;
  }

  #hero .inner .catch__title {
    font-size: 52px;
    line-height: 88px;
  }

  #hero .inner .catch__detail {
    font-size: 38px;
    line-height: 56px;
  }

  #hero .inner .catch__cta .btn {
    width: 100%;
    max-width: 360px;
  }

  #hero .inner .catch__cta .btn a {
    font-size: 28px;
  }

  #hero .inner .illust__content {
    font-size: 32px;
  }

  #problem .problem__inner {
    width: 55%;
  }

  #problem .problem__inner .problem__inner--content {
    width: 50%;
    font-size: 22px;
  }

  #problem .problem__inner .problem__inner--box {
    width: 40%;
  }

  #problem .section__title {
    font-size: 40px;
  }

  main #sec-problem .catch {
    font-size: 40px;
  }

  #operation .operate__content .section__title {
    font-size: 40px;
  }

  #operation .operate__content .operate__sub {
    font-size: 32px;
  }

  #improve .section_title {
    font-size: 40px;
  }

  #improve .improve__inner--text p {
    font-size: 32px;
  }

  main #sec-point h2 {
    font-size: 40px;
  }

  main #sec-point .catch {
    font-size: 32px;
  }

  main #sec-function h2 {
    font-size: 40px;
    margin-bottom: 24px;
  }

  main #sec-function .catch.last {
    font-size: 32px;
  }

  main #sec-step h2 {
    font-size: 40px;
  }

  main #sec-step .inner .text {
    font-size: 32px;
  }

  main #sec-usecase .title-catch {
    font-size: 40px;
  }

  main #sec-usecase .title-catch img {
    width: 180px;
  }

  main #sec-faq h2 {
    font-size: 40px;
  }

  main #sec-about h2 {
    font-size: 40px;
  }

  .common-section-cta-02 p {
    font-size: 40px;
  }
} */

/* @media screen and (min-width: 1441px) and (max-width: 1600px) {
  #problem .problem__inner .problem__inner--box {
    width: 50%;
  }
} */

/* @media screen and (min-width: 1601px) and (max-width: 1900px) {
  #problem .problem__inner .problem__inner--box {
    width: 45%;
  }

  #hero .inner .catch__sub {
    width: 80% !important;
    font-size: 22px;
  }
}

@media screen and (min-width: 1901px) {
  #hero .inner .catch__sub {
    width: 75% !important;
    font-size: 26px;
  }

  #problem .problem__inner {
    width: 70%;
  }

  #problem .problem__inner .problem__inner--box {
    width: 50%;
  }

  #problem .problem__inner--boxChild {
    width: 180px;
    height: 180px;
  }

  #problem .problem__inner--boxChild_img {
    width: 180px;
    height: 180px;
  }

  #problem .problem__inner--boxChild_img img {
    width: 180px;
    height: 180px;
  }
}

@media screen and (min-width: 2000px) {
  #hero .inner {
    justify-content: center;
  }

  #operation {
    justify-content: center;
  }

  #improve .improve__inner {
    justify-content: center;
  }
}

@media screen and (min-width: 2200px) {
  #problem .problem__inner .problem__inner--box {
    width: 45%;
  }
}

@media screen and (min-width: 2300px) {
  #problem .problem__inner .problem__inner--box {
    width: 40%;
  }
} */