@charset "UTF-8";

/* news */
.common-tab {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  padding-bottom: 60px;
}
.common-tab > .item {
  line-height: 1.2;
}
.common-tab > .item:not(:last-child) {
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .common-tab > .item:not(:last-child) {
    margin-right: 20px;
  }
}
.common-tab .tab-item {
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #9f9f9f;
}
.common-tab .tab-item:after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 6px;
  background: #59A929;
  max-width: 0;
  transition: all 0.3s ease;
  position: absolute;
  bottom: -15px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .common-tab .tab-item:after {
    bottom: -10px;
  }
}
.common-tab .tab-item.current {
  color: #59A929;
}
.common-tab .tab-item.current:after {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .common-tab .tab-item {
    font-size: 14px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 768px) {
  .common-tab {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 40px;
  }
}

.news-list > .item:not(:last-child) {
  margin-bottom: 30px;
}
.news-list .news-item .info-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  margin-bottom: 10px;
}
.news-list .news-item .txt {
  color: #2A352B;
  text-decoration: none;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 700;
}
.news-list .news-item .txt:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .news-list .news-item .txt {
    font-size: 15px;
  }
}
.news-list .news-item .date {
  font-size: 13px;
  display: inline-block;
  margin-right: 10px;
}
.news-list.-sub {
  border-bottom: 1px solid #ddd;
}
.news-list.-sub > .item {
  padding: 30px 0;
  border-top: 1px solid #ddd;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .news-list.-sub > .item {
    padding: 16px 0;
  }
}
.news-list.-sub .info-wrapper {
  margin-bottom: 0;
  flex-wrap: nowrap;
  padding-top: 5px;
}
.news-list.-sub .info-wrapper .custom-tag {
  white-space: nowrap;
  width: 138px;
}
@media only screen and (max-width: 768px) {
  .news-list.-sub .info-wrapper .custom-tag {
    width: auto;
  }
}
@media only screen and (max-width: 768px) {
  .news-list.-sub .info-wrapper {
    margin-bottom: 10px;
  }
}
.news-list.-sub .news-item {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.news-list.-sub .news-item .content-wrapper {
  margin-left: 20px;
}
@media only screen and (max-width: 768px) {
  .news-list.-sub .news-item .content-wrapper {
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .news-list.-sub .news-item {
    display: block;
  }
}

.custom-tag {
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  height: 22px;
  line-height: 22px;
  border: 1px solid;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}
.custom-tag.-once {
  color: #4f93d8;
  border-color: #4f93d8;
}
.custom-tag.-crowd {
  color: #aea81a;
  border-color: #aea81a;
}
.custom-tag.-light {
  color: #4f93d8;
  border-color: #4f93d8;
}
.custom-tag.-standard {
  color: #cd5853;
  border-color: #cd5853;
}
.custom-tag.-free {
  color: #999;
  border-color: #999;
}
.custom-tag.-news {
  color: #4f93d8;
  border-color: #4f93d8;
}
.custom-tag.-release {
  color: #cd5853;
  border-color: #cd5853;
}
.custom-tag.-event {
  color: #AEA81A;
  border-color: #AEA81A;
}
.custom-tag.-trouble {
  color: #7BAA6B;
  border-color: #7BAA6B;
}

/* banner-section */
.top-banner-section {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.top-banner-section > .top-banner-box {
  width: 50%;
  position: relative;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  overflow: hidden;
}
.top-banner-section > .top-banner-box .img-wrapper {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.top-banner-section > .top-banner-box .img-wrapper img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-banner-section > .top-banner-box .img-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(36, 43, 36, 0.6) 0%, rgba(36, 43, 36, 0.48) 57.81%, rgba(36, 43, 36, 0.36) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top-banner-section > .top-banner-box .content-wrapper {
  position: absolute;
  padding: 40px 70px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.top-banner-section > .top-banner-box .content-wrapper .ttl {
  color: #fff;
  line-height: 1.4;
  font-size: 32px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box .content-wrapper .ttl {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }
}
.top-banner-section > .top-banner-box .content-wrapper .txt {
  color: #fff;
  font-size: 15px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box .content-wrapper .txt {
    text-align: center;
    margin-bottom: 20px;
  }
}
.top-banner-section > .top-banner-box .content-wrapper .button01.-trial, .top-banner-section > .top-banner-box .content-wrapper .btn-list li a.-trial, .btn-list li .top-banner-section > .top-banner-box .content-wrapper a.-trial {
  color: #fff;
  background: #f9c94c;
  border-color: #f9c94c;
  color: #2A352B;
}
.top-banner-section > .top-banner-box .content-wrapper .button01.-primary, .top-banner-section > .top-banner-box .content-wrapper .btn-list li a.-primary, .btn-list li .top-banner-section > .top-banner-box .content-wrapper a.-primary {
  color: #fff;
  background: #59a929;
  border-color: #59a929;
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box .content-wrapper .button01, .top-banner-section > .top-banner-box .content-wrapper .btn-list li a, .btn-list li .top-banner-section > .top-banner-box .content-wrapper a {
    font-size: 17px;
  }
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box .content-wrapper .btn-wrapper {
    text-align: center;
  }
  .top-banner-section > .top-banner-box .content-wrapper .btn-wrapper .button01, .top-banner-section > .top-banner-box .content-wrapper .btn-wrapper .btn-list li a, .btn-list li .top-banner-section > .top-banner-box .content-wrapper .btn-wrapper a {
    width: auto;
    padding: 15px 38px;
  }
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box .content-wrapper {
    width: 100%;
    padding: 40px 20px;
  }
}
.top-banner-section > .top-banner-box:hover .img-wrapper img {
  transform: scale(1.05);
}
@media only screen and (max-width: 768px) {
  .top-banner-section > .top-banner-box {
    width: 100%;
    height: auto;
  }
}

/* Footer */
footer {
  padding: 60px 0 25px;
}
footer .f-list > .item:nth-child(2n) .f-detail:last-of-type {
  border-bottom: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 20px 0;
  }
}

.f-wrapper {
  width: 1180px;
  margin: 0 auto;
  padding: 0 10px;
}
@media only screen and (max-width: 768px) {
  .f-wrapper {
    width: 100%;
    padding: 0 20px;
    position: relative;
  }
}

.f-menu {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  padding-bottom: 40px;
}
.f-menu .f-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.f-menu .f-list .f-list-item {
  min-width: 260px;
}
.f-menu .f-list .f-list-item:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .f-menu .f-list .f-list-item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .f-menu .f-list .f-list-item {
    max-width: 100% !important;
  }
}
.f-menu .inner-list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.f-menu .inner-list .item {
  min-width: 260px;
  max-width: 270px;
}
.f-menu .inner-list .item:not(:last-child) {
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .f-menu .inner-list .item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .f-menu .inner-list .item {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .f-menu {
    padding-bottom: 0;
  }
}
.f-menu .top-link {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.f-menu .top-link a {
  font-weight: 700;
  color: #2A352B;
  text-decoration: none;
  display: inline-block;
}

.f-menu-box .f-main-ttl {
  font-weight: 700;
  color: #2A352B;
  text-decoration: none;
  display: inline-block;
}
.f-menu-box .f-detail {
  border-top: 1px solid #ddd;
  padding: 20px 0;
}
.f-menu-box .f-detail dt {
  font-weight: 700;
}
.f-menu-box .f-detail dd:not(:last-child) {
  margin-bottom: 7px;
}
.f-menu-box .f-detail .f-link {
  display: inline-block;
  font-size: 15px;
  text-decoration: none;
  color: #2A352B;
}
.f-menu-box .f-detail .f-link:before {
  content: "\e5cc";
  font-family: "Material Icons";
  color: #59a929;
  display: inline-block;
  font-size: 20px;
  vertical-align: sub;
  line-height: 1;
  transform: translateX(-5px);
  text-decoration: none;
}
.f-menu-box .f-detail .f-link:hover {
  color: #59a929;
}
.f-sub-box .ttl {
  font-size: 14px;
  font-weight: 700;
}

.f-sub-list > .item:not(:last-child) {
  margin-bottom: 10px;
}
.f-sub-list .item-ttl {
  display: inline-block;
  color: #2A352B;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}
.f-sub-list .item-ttl:before {
  content: "\f8ce";
  display: inline-block;
  vertical-align: text-bottom;
  font-family: "Material Icons";
  font-size: 16px;
  color: #59a929;
  position: absolute;
  top: 0px;
  left: 0px;
  text-decoration: none;
}
.f-sub-list .item-ttl:hover {
  text-decoration: underline;
}
.f-sub-list .description {
  color: #9f9f9f;
  line-height: 1.25;
  font-size: 12px;
  padding-left: 20px;
}

.f-btns {
  width: 260px;
}
.f-btns .f-btn-wrapper:not(:last-of-type) {
  margin-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  .f-btns .f-btn-wrapper {
    width: calc(50% - 7px);
  }
}
.f-btns .f-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 14px 10px;
  border-radius: 6px;
  transition: all 0.3s;
  position: relative;
  font-size: 16px;
  font-weight: 700;
}
.f-btns .f-btn.-mail {
  color: #fff;
  background: #2A352B;
}
.f-btns .f-btn.-login {
  color: #2A352B;
  background: #ebecec;
}
.f-btns .f-btn.-login:before {
  content: "\ea77";
  font-family: "Material Icons";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}
.f-btns .f-btn.-trial {
  color: #2A352B;
  background: #f9c94c;
}
.f-btns .f-btn.-contact {
  color: #fff;
  background: #59a929;
}
.f-btns .f-btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .f-btns .f-btn {
    font-size: 15px;
    height: 60px;
    padding: 0 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .f-btns {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    display: flex;
  }
}

.f-bottom {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .f-bottom {
    padding-top: 0;
    border-top: none;
  }
}

.f-bottom-menu-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .f-bottom-menu-wrapper {
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.f-bottom-menu {
  margin-right: 30px;
}
.f-bottom-menu .list {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.f-bottom-menu .list > .item:not(:last-child) {
  margin-right: 24px;
}
@media only screen and (max-width: 768px) {
  .f-bottom-menu .list > .item:not(:last-child) {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .f-bottom-menu {
    margin-right: 0;
  }
}

.f-bottom-menu-link {
  color: #2A352B;
  text-decoration: none;
}
.f-bottom-menu-link:hover {
  color: #2A352B;
  text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  .f-bottom-menu-link {
    font-size: 12px;
  }
}

.f-bottom-sns {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}
.f-bottom-sns > .item:not(:last-child) {
  margin-right: 12px;
}
.f-bottom-sns .f-bottom-sns-btn {
  transition: all 0.3s;
  display: inline-block;
}
.f-bottom-sns .f-bottom-sns-btn:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .f-bottom-sns .f-bottom-sns-btn {
    width: 32px;
  }
}
@media only screen and (max-width: 768px) {
  .f-bottom-sns {
    flex-wrap: nowrap;
  }
}

.f-logo-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  font-size: 12px;
}
.f-logo-wrapper .f-logo {
  display: inline-block;
  margin-right: 12px;
}
@media only screen and (max-width: 768px) {
  .f-logo-wrapper .f-logo {
    width: 140px;
    display: block;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 768px) {
  .f-logo-wrapper {
    display: block;
    font-size: 11px;
  }
}

.f-right .logo-yogibo {
  width: 110px;
  display: inline-block;
  margin-right: 40px;
}
@media only screen and (max-width: 768px) {
  .f-right .logo-yogibo {
    width: 78px;
    margin-right: 20px;
  }
}
.f-right .logo-p-mark {
  width: 80px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .f-right .logo-p-mark {
    width: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .f-right {
    position: absolute;
    right: 20px;
    bottom: 0;
  }
}