@charset "UTF-8";
/*
Theme Name: Metabirds
Theme URI: https://wordpress.org/themes/twentysixteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Metabirds is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Metabirds will make your WordPress look beautiful everywhere.
Version: 1.5
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog
Text Domain: twentysixteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */
/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  letter-spacing: 0.02em;
  font-weight: 400;
  background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
  min-height: 100vh;
}

* {
  margin: 0px;
  padding: 0px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.8em;
  color: #1a1a1a;
}

h2 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  color: #333;
}

/* アニメーション定義 - タイトル用 */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px) translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(-50%);
  }
}

@keyframes drawLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 240px;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes glowIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

p {
  margin-bottom: 1.2em;
  line-height: 1.8;
}

/* ヒーローセクションのアニメーション */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes drawLine {
  0% {
    opacity: 0;
    width: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    width: 240px;
  }
}

@keyframes drawLineVertical {
  0% {
    opacity: 0;
    height: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
    height: 40%;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes glowIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

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

.wrapper {
  max-width: 100%;
  overflow: hidden;
}

/*ヘッダー*/
.site-header {
  background: rgb(255, 255, 255);
  display: flex;
  padding: 10px 20px 5px;
  position: fixed;
  justify-content: space-between;
  top: 0px;
  transition: 0.5s;
  width: 100%;
  z-index: 999999999;
}
.site-header.transform {
  background: rgba(255, 255, 255, 0.5);
}

.trial_button, .inquire_button {
  display: block;
  position: absolute;
  top: 50%;
  bottom: 50%;
  transform: translateY(-50%);
  height: 60px;
  padding: 0 10px;
  text-align: center;
  text-decoration: none;
  background: #ff9300;
  color: #FFF;
  border-radius: 5px;
  transition: 0.1s opacity ease;
}
.trial_button span, .inquire_button span {
  font-weight: bold;
  line-height: 60px;
}
.trial_button:hover, .inquire_button:hover {
  opacity: 0.8;
}
.trial_button::after, .inquire_button::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  font-size: 1.6rem;
}

.trial_button {
  right: 340px;
}
.trial_button::after {
  content: "";
}

.inquire_button {
  right: 160px;
}
.inquire_button::after {
  content: "";
}

.btn_menu {
  position: fixed;
}

.p-top__mv {
  position: relative;
}

figure.img {
  display: block;
}
figure.img img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

.p-top__mv .txt {
  width: 50%;
  position: absolute;
  right: 30px;
  bottom: 90px;
}
.p-top__mv .txt .catch01 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: #fff;
  line-height: 1;
  padding-bottom: 5rem;
}
.p-top__mv .txt .catch02 {
  /* font-size: 1.5vw; */
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 60px;
}
.p-top__mv .txt .desc {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 700;
}

.m-side-caption {
  display: none;
}

.m-side-caption__item {
  position: fixed;
  top: 50%;
  z-index: 50;
  text-indent: 2px;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}

.bg_navy {
  width: 100%;
  min-height: 600px;
  background: linear-gradient(135deg, #627D8B 0%, #546E7A 100%);
  padding-top: 180px;
  padding-bottom: 80px;
  position: relative;
}
.bg_navy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.firstview {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  background: transparent;
  display: flex;
  z-index: 1;
  align-items: center;
  min-height: 500px;
  padding: 0 20px;
  box-sizing: border-box;
}
.firstview__left, .firstview__right {
  height: auto;
  flex: 1;
}
.firstview__left {
  position: relative;
  flex: 0 0 55%;
  max-width: 55%;
}
.firstview__left::after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 600px;
  height: 600px;
  background: url(./images/fv/firstview@2x.png) no-repeat bottom -50px left 40px/contain;
}
.firstview__left .firstview_balloon {
  position: absolute;
  width: 200px;
  height: 100px;
  z-index: 1;
  text-align: center;
  padding: 9px 5px 30px 0;
  box-sizing: border-box;
  line-height: 25px;
  color: #707070;
  animation: balloon__move 1s 1 ease-in;
}
@keyframes balloon__move {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, -5px);
  }
  50% {
    transform: translate(0, 5px);
  }
  60% {
    transform: translate(0, -3px);
  }
  70% {
    transform: translate(0, 1px);
  }
  80% {
    transform: translate(0, -1px);
  }
  90% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}
.firstview__left .firstview_balloon.left {
  left: 50px;
  bottom: 240px;
  background: url(./images/fv/balloon_left.png) no-repeat left top/contain;
}
.firstview__left .firstview_balloon.right {
  left: 260px;
  bottom: 200px;
  background: url(./images/fv/balloon_right.png) no-repeat left top/contain;
}
.firstview__right {
  position: relative;
  color: white;
  flex: 0 0 45%;
  max-width: 45%;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  margin-left: 2rem;
  box-sizing: border-box;
}
.firstview__right p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 56px;
  line-height: 59px;
  margin-top: 50px;
}
.firstview__right h1 {
  font-size: 18px;
  line-height: 29px;
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}
.firstview__right .firstview__logos {
  font-size: 0;
  text-align: center;
}
.firstview__right .firstview__logos li {
  display: inline-block;
  list-style-type: none;
  margin-right: 10px;
}
.firstview__right .firstview__logos li:last-child {
  margin-right: 0;
}
.firstview__right .firstview__logos img {
  vertical-align: middle;
}
.firstview__right .firstview__logos.service {
  margin-top: 30px;
}
.firstview__right .firstview__logos.service img {
  max-width: 30px;
}
.firstview__right .firstview__logos.platform {
  margin-top: 10px;
}
.firstview__right .firstview__logos.platform li {
  max-width: 30%;
}
.firstview__right .firstview__logos.platform img {
  vertical-align: top;
}
.firstview.corab {
  display: flex;
  align-items: center;
}
.firstview.corab .firstview__left {
  height: auto;
  width: 45%;
}
.firstview.corab .firstview__left .corab_logo {
  height: 100px;
}
.firstview.corab .firstview__left .corab_head {
  font-size: 30px;
  color: white;
  line-height: 40px;
  margin: 20px 0;
}
.firstview.corab .firstview__left .corab_head .corab_marker {
  position: relative;
  display: inline-block;
}
.firstview.corab .firstview__left .corab_head .corab_marker::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background: rgba(255, 219, 0, 0.3);
  height: 10px;
  bottom: 0px;
  z-index: 0;
}
.firstview.corab .firstview__left .corab_text {
  line-height: 20px;
  color: white;
}
.firstview.corab .firstview__left::after {
  content: none;
}
.firstview.corab .firstview__right {
  position: relative;
  width: 55%;
  background: url(./images/fv/fv_charm_bg.svg) left top/contain;
}
.firstview.corab .firstview__right p {
  font-size: 1.2rem;
  line-height: 15px;
}
.firstview.corab .firstview__right img {
  position: absolute;
  display: block;
  width: 364px;
  left: calc(50% + 25px);
  transform: translateX(-50%);
  bottom: 10px;
}
.firstview.corab .firstview__right .firstview_balloon {
  position: absolute;
  width: 200px;
  height: 100px;
  z-index: 1;
  text-align: center;
  padding: 9px 5px 30px 0;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: bold;
  line-height: 25px;
  color: #707070;
  transition: transform 0.2s ease;
}
.firstview.corab .firstview__right .firstview_balloon:hover {
  cursor: pointer;
  transform: scale(1.2);
}
.firstview.corab .firstview__right .firstview_balloon.left {
  z-index: 2;
  left: 110px;
  bottom: 320px;
  background: url(./images/fv/balloon_left.png) no-repeat left top/contain;
}
.firstview.corab .firstview__right .firstview_balloon.right {
  left: 300px;
  bottom: 290px;
  background: url(./images/fv/balloon_right.png) no-repeat left top/contain;
}
.firstview.corab .firstview__right::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 300px 0 300px 75px;
  border-color: transparent transparent transparent #627D8B;
  filter: drop-shadow(10px 0 0 rgba(0, 0, 0, 0.1));
}
.firstview.corab .firstview__right::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  width: 10px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.firstview.corab.sp_crn .firstview__right {
  background: #d7f1ff url(./images/fv/sp_crn_image@3x.png) center bottom/contain no-repeat;
}

@media (max-width: 1020px) {
  .bg_navy {
    min-height: 450px;
    height: auto;
  }
  .firstview {
    width: 769px;
  }
  .firstview__left::after {
    width: 100%;
  }
  .firstview__left .firstview_balloon {
    width: 180px;
    height: 87px;
    padding: 8px 5px 24px 0;
    line-height: 22px;
    font-size: 14px;
  }
  .firstview__left .firstview_balloon.left {
    bottom: 164px;
  }
  .firstview__left .firstview_balloon.right {
    left: 226px;
    bottom: 126px;
  }
  .firstview__right p {
    font-size: 43px;
    line-height: 49px;
  }
  .firstview__right h1 {
    font-size: 14px;
    line-height: 25px;
  }
  .firstview__right .firstview__logos.service img {
    max-width: 26px;
  }
  .firstview__right .firstview__logos.platform li {
    max-width: 37%;
  }
  .firstview.corab {
    overflow: visible;
    flex-direction: column;
  }
  .firstview.corab .firstview__left {
    width: 100%;
    padding: 50px 30px 10px;
    box-sizing: border-box;
  }
  .firstview.corab .firstview__left .corab_logo {
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .firstview.corab .firstview__left .corab_head {
    font-size: 20px;
    line-height: 28px;
  }
  .firstview.corab .firstview__right {
    width: 100%;
    height: 470px;
  }
  .firstview.corab .firstview__right::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    filter: drop-shadow(0 10px 0 rgba(0, 0, 0, 0.1));
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 75px 500px 0 500px;
    border-color: #627D8B transparent transparent transparent;
  }
  .firstview.corab .firstview__right::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: rgba(0, 0, 0, 0.1);
  }
  .firstview.corab .firstview__right .firstview_balloon.left {
    left: 20px;
    bottom: 280px;
  }
  .firstview.corab .firstview__right .firstview_balloon.right {
    left: auto;
    right: 20px;
    bottom: 210px;
  }
  .firstview.corab .firstview__right img {
    width: 254px;
    left: 50%;
    bottom: 10px;
  }
  .firstview.corab.sp_crn .firstview__left {
    padding-bottom: 40px;
  }
  .firstview.corab.sp_crn .firstview__right::before {
    top: -30px;
  }
}
@media (max-width: 768px) {
  .bg_navy {
    height: auto;
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 40px;
    overflow: visible;
  }
  .firstview {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .firstview__left {
    float: none;
    width: 320px;
    margin: 0 auto;
    height: 227px;
    overflow: hidden;
  }
  .firstview__left .firstview_balloon {
    width: 157px;
    height: 76px;
    padding: 8px 4px 20px 0;
    line-height: 19px;
    font-size: 12px;
  }
  .firstview__left .firstview_balloon.left {
    left: 10px;
    bottom: 98px;
  }
  .firstview__left .firstview_balloon.right {
    left: 152px;
    bottom: 77px;
  }
  .firstview__left::after {
    width: 320px;
  }
  .firstview__right {
    float: none;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .firstview__right p {
    font-size: 43px;
    line-height: 49px;
    margin-top: 30px;
  }
  .firstview__right h1 {
    font-size: 13px;
    line-height: 25px;
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .firstview__right .firstview__logos.service {
    margin-top: 15px;
  }
  .firstview__right .firstview__logos.service img {
    max-width: 26px;
  }
  .firstview__right .firstview__logos.platform {
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 13px;
  }
  .firstview__right .firstview__logos.platform li {
    max-width: auto;
  }
  .firstview__right .firstview__logos.platform img {
    height: 28px;
  }
}
.about {
  position: relative;
  padding-top: 98px;
  padding-bottom: 94px;
  text-align: center;
}

.link {
  position: relative;
  margin-top: 20px;
  margin-right: 52px;
  text-align: right;
}

.c-btn--line {
  padding-left: 46px;
}
.c-btn--line:before {
  position: absolute;
  top: 0;
  bottom: 2px;
  left: 0;
  display: block;
  margin: auto 0;
  width: 35px;
  height: 1px;
  background-color: #000;
  content: "";
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.c-btn .letters {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  padding: 6px 0 5px;
}
.c-btn .letter {
  position: relative;
  letter-spacing: 0.162em;
  font-weight: 500;
  font-size: 1.6rem;
  font-family: Teko, sans-serif;
}
.c-btn .letter span {
  display: block;
}
.c-btn .letter:after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: attr(data-letter);
  opacity: 0;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}

.sec-case {
  position: relative;
  padding-top: 65px;
  background: #f3f3f3;
}
.sec-case:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 90%;
  height: calc(100% - 860px);
  background-color: #f781a8;
  content: "";
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  margin-bottom: 7rem;
}

/*slick*/
/*前矢印のアイコンフォント*/
.sp-next-arrow:before {
  font-family: FontAwesome !important;
  content: "\f105" !important;
}

/*後矢印のアイコンフォント*/
.sp-previous-arrow:before {
  font-family: FontAwesome !important;
  content: "\f104" !important;
}

/*ナビゲーションボタンの色*/
.sp-button {
  border: 2px solid #ccc;
}

.sp-selected-button {
  background-color: #ccc;
}

.service_list .service--item, .a_service_list .service--item {
  width: 100%;
  margin: 0 auto 1rem;
  position: relative;
}

.service_list .service--item {
  width: 60%;
  margin-bottom: 0;
}

.service_list {
  counter-increment: section;
}
.service_list .service--item {
  background-color: #fff;
  padding: 5rem;
  height: 60vh;
}
.service_list .service--item::before {
  background-color: #000;
  content: counter(section, decimal-leading-zero);
  border-radius: 0 0 100%;
  color: #fff;
  font-family: Teko, sans-serif;
  letter-spacing: 0.5rem;
  font-size: 2.4rem;
  line-height: 2;
  text-indent: 1rem;
  height: 6rem;
  width: 6rem;
  position: absolute;
  left: 0;
  top: 0;
}

.a_service_list .service--item::before {
  border-radius: 0 0 100%;
  color: #fff;
  font-family: Teko, sans-serif;
  letter-spacing: 0.5rem;
  font-size: 2.4rem;
  line-height: 2;
  text-indent: 1rem;
  height: 6rem;
  width: 6rem;
  position: absolute;
  left: 0;
  top: 0;
}

.service_list_img {
  border-radius: 100%;
  height: 110px;
  width: 130px;
  margin: 0 auto 1rem;
  text-align: center;
  position: relative;
}
.service_list_img .fa {
  font-size: 10.5rem;
  text-align: center;
  color: #f781a8;
}

.service_list_title {
  font-size: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

.l-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: -15px 0 0 -15px;
}

.l-grid__item {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.l-grid__item--1of2 {
  width: 50%;
}

.l-grid__item {
  padding: 15px 0 0 15px;
}

.card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}
.card a {
  position: relative;
  display: block;
}

.card__img img {
  display: block;
  transition-duration: 0.3s;
}

.sec-feature .card__img img {
  display: block;
  max-width: 500px;
  height: 100%;
  object-fit: cover;
  /* この一行を追加するだけ！ */
  transition-duration: 0.3s;
}

.card__img img:hover {
  transform: scale(1.1);
  /*画像の拡大率*/
  transition-duration: 0.3s;
  /*変化に掛かる時間*/
}

.card__jp, .card__hdg {
  position: absolute;
  bottom: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  /* color: #fff; */
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

.feature_desc {
  text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
}

.card a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%);
  content: "";
}

.sec-plan .card__hdg, .card__jp {
  position: absolute;
  bottom: 60px;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
}

.card--01:after {
  display: none !important;
}

.force-barba {
  background: none !important;
}
.force-barba::after {
  background: none !important;
}

.headings {
  position: absolute;
  bottom: -35px;
  left: 0;
  z-index: 30;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 0 0 0 28px;
  width: 52%;
  height: 170px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.headings:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ff8737;
  content: "";
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.headings__inner {
  position: relative;
  width: 130px;
}

.page-template-service-php .card__hdg {
  font-family: Teko, sans-serif;
  top: 364px;
  letter-spacing: 0.5rem;
  ffont-size: 4vw;
}

.card__jp {
  bottom: 30px;
  font-size: 2.5vw;
}

.free--plan {
  width: 100%;
  max-width: 1030px;
  margin: 3rem auto 0;
  border: 5px solid #eb9605;
  border-collapse: collapse;
  border-spacing: 0px;
}
.free--plan td {
  vertical-align: middle;
  padding: 30px 15px;
  font-size: 0.875em;
}
.free--plan th {
  color: #fff;
  background-color: #eb9605;
  font-size: 1vw;
}
.free--plan td {
  background-color: #f2f2f2;
  color: #111;
}

.inview {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.inq_btn {
  max-width: 360px;
  margin: 40px auto 0;
}

.inview.zoom.on {
  -webkit-animation-name: inviewZoom;
  animation-name: inviewZoom;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.inq_btn {
  margin: 2rem auto;
  display: block;
}
.inq_btn a {
  position: relative;
  display: inline-block;
  display: block;
  padding: 5%;
  background-color: #eb9605;
  border: 2px solid #eb9605;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.inq_btn a::after {
  position: absolute;
  top: 50%;
  right: 40px;
  content: url(images/common/inq_btn.png);
  transition: all 0.2s;
  transform: translateY(-50%);
}
.inq_btn a:hover {
  background-color: #fff;
  border: 2px solid #eb9605;
  color: #eb9605;
}
.inq_btn a:hover::after {
  content: url(images/common/biz4-arw2.png);
  right: 1.9999em;
}

.sec-feature {
  padding-top: 65px;
  position: relative;
}
.sec-feature:before {
  position: absolute;
  bottom: 180px;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* height: calc(100% - 143px); */
  content: "";
  /* -webkit-transform: skewX(-12deg); */
  /* transform: skewX(-12deg); */
  /* -webkit-transform-origin: 100% 0; */
  /* transform-origin: 100% 0; */
  margin-bottom: -25rem;
}

/*左右の矢印の色を変える*/
.slick-prev:before {
  color: #000;
}

.slick-next {
  right: 20px;
  z-index: 99;
}
.slick-next:before {
  color: #000;
}

/*左右の矢印の位置を変える*/
.slick-prev {
  left: 15px;
  z-index: 100;
}

/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before, .slick-dots li button:before {
  color: #fff;
}

/*スライド画像の横幅可変*/
img {
  max-width: 100%;
  height: auto;
}

.sec-news__content .article a {
  position: relative;
  display: block;
  padding-top: 18px;
  padding-bottom: 16px;
  -webkit-transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.sec-news__content .article__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

.article__date .i-fb {
  margin-right: 7px;
  color: #3b5998;
  font-size: 1.5rem;
}

.article__ttl {
  margin-top: 5px;
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.85;
}

.entryArea {
  position: relative;
  clear: both;
}

.entryArea__inner {
  color: #fff;
  position: relative;
  padding: 110px 0 114px;
  text-align: center;
  z-index: 2;
}

.entryArea__title {
  font-size: 1.5rem;
  font-weight: 100;
  letter-spacing: 0.2em;
}

.entryArea__link {
  margin: 20px auto 0;
  max-width: 350px;
}

.button__link {
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: linear-gradient(-90deg, #038af1, #fc0075);
  border-radius: 30px;
  color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: Teko, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.2em;
  text-decoration: none;
  font-weight: 100;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 16px 0 15px;
  width: 100%;
  border-radius: 35px;
  padding: 5px;
}
.button__link:before {
  content: "";
  background-image: -webkit-linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  width: 200%;
  height: 200%;
  position: absolute;
  /*ボタンの左上方向にはみ出させて配置*/
  top: -100%;
  left: -200%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.button__link:hover:before {
  top: 0%;
  /*ボタンの右下方向へ移動させます*/
  left: 100%;
}
.button__link.jp {
  width: 350px;
  height: 44px;
  letter-spacing: 0;
}
.button__link.jp span {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.entryArea__bg {
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
  overflow: hidden;
}

.button__link:after {
  font-family: "FontAwesome";
  font-size: 18px;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  content: "\f105";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -0.5em;
}

.entryArea__bg, .entryArea__bgInner, .entryArea__bgItem, .entryArea__bg, .entryArea__bgInner, .entryArea__bgItem {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.entryArea__bgInner {
  left: 0;
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.entryArea__bgItem {
  background: url(images/footer/contact-bg@2x.jpg) 50% 50%;
  background-size: cover;
  padding: 0 0 380px;
}

.pageFooter__copyright {
  font-family: Teko, sans-serif;
  text-align: center;
  padding: 20px;
  letter-spacing: 0.2em;
  font-size: 0.8em;
  background: #2a2a2a;
  color: #fff;
}

.accordion {
  padding: 5rem 0;
}
.accordion.faq {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.button_title {
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}

.displayNone {
  display: none;
}

.accordion li {
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.accordion a {
  display: block;
}

.contentWrap {
  margin: 0;
  padding: 0 150px 48px 130px;
}

.accordion section:nth-child(odd) {
  background: #fff;
}

.contentWrap--w {
  background-color: #fff;
}

.switch {
  cursor: pointer;
  font-weight: bold;
  padding: 48px 150px 48px 130px;
  font-weight: 700;
  font-size: 1.6rem;
  position: relative;
}

.accordion section:nth-child(odd) {
  background-color: #f7f7fa;
}

.switch:before {
  position: absolute;
  top: 25px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #e60027;
  color: #fff;
  content: "Q";
  letter-spacing: 0;
  font-weight: 500;
  font-size: 2.5rem;
  font-family: Teko, sans-serif;
}
.switch:after {
  position: absolute;
  top: 50%;
  right: 35px;
  margin-top: -18px;
  content: ">";
  font-size: 2.4rem;
  font-weight: bold;
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transition: all, 0.25s, linear;
  -o-transition: all, 0.25s, linear;
  -webkit-transition: all, 0.25s, linear;
  transition: all, 0.25s, linear;
  font-family: sans-serif;
  color: #e60027;
}
.switch.open:after {
  content: "x";
}

@media (min-width: 768px) {
  body {
    /*    min-width: 1060px;*/
    font-size: 1.6rem;
    line-height: 1.78;
  }
  a:active, a:hover {
    outline-width: 0;
  }
  /* サイトロゴ */
  .g-header__logo a img {
    /* width: 100%; */
    height: 100%;
  }
  .p-top__mv .txt .catch02 {
    text-shadow: #fff 1px 1px 0px, #fff -1px 1px 0px, #fff 1px -1px 0px, #fff -1px -1px 0px;
  }
  .p-top__mv:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100vh 30vw;
    border-color: transparent transparent #ffdb00 transparent;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  .p-top__mv:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10vw 0 0 100vw;
    border-color: transparent transparent transparent #f2f2f2;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .p-top__mv figure.img span:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90vh 0 0 25vw;
    border-color: transparent transparent transparent #ffdb00;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .p-top__mv figure.img span:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 75vh 30vw 0 0;
    border-color: #f2f2f2 transparent transparent transparent;
    position: absolute;
    left: 0;
    top: 0;
  }
  .m-side-caption {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: scroll;
    width: 100%;
    height: 100%;
  }
  .l-container {
    margin: 0 auto;
    /* max-width: 1060px; */
    width: 100%;
  }
  .sec-field {
    padding-bottom: 108px;
  }
  .sec-topics {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .p-top .sec-field {
    /* padding-top: 90px; */
    padding-bottom: 87px;
  }
  .sec-header--field {
    text-align: center;
  }
  .sec-concept__txt {
    margin-top: 54px;
    padding: 0;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2.5;
    position: relative;
  }
  .sec-concept__txt p {
    padding-top: 2rem;
  }
  .sec-concept__txt_02 p {
    padding-top: 2rem;
  }
  .m-side-caption__item--left {
    left: 20px;
    -webkit-transform: rotate(-90deg) translateX(-50%);
    transform: rotate(-90deg) translateX(-50%);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  .m-side-caption__item--right {
    right: 20px;
    -webkit-transform: rotate(90deg) translateX(50%);
    transform: rotate(90deg) translateX(50%);
    -webkit-transform-origin: right top;
    transform-origin: right top;
  }
  .m-side-caption__en {
    letter-spacing: 0.3em;
    font-size: 1.8rem;
    font-family: "Teko", sans-serif;
  }
  .sec-about {
    padding-top: 178px;
    padding-bottom: 120px;
  }
  .link {
    margin-top: 31px;
    text-align: right;
  }
  .c-btn--line {
    padding-left: 67px;
    color: #fff;
    text-decoration: none;
  }
  .c-btn--line:before {
    width: 46px;
  }
  .c-btn .letter {
    letter-spacing: 0.1em;
    font-size: 2.2rem;
    font-family: Teko, sans-serif;
  }
  .c-btn--line:before {
    position: absolute;
    top: 0;
    bottom: 2px;
    left: 87%;
    display: block;
    margin: auto 0;
    width: 35px;
    height: 1px;
    background-color: #fff;
    content: "";
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
  .c-btn .letter:after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: attr(data-letter);
    opacity: 0;
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
  }
  .c-btn--line:hover:before, a:hover .c-btn--line:before {
    -webkit-transition: -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.45s cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: scale(4, 1);
    transform: scale(4, 1);
  }
  .sec-case {
    padding-top: 30px;
    padding-bottom: 100px;
    background: #f2f2f2;
  }
  .service_list .service--item, .a_service_list .service--item {
    box-shadow: 5px 10px 0 5px rgba(0, 0, 0, 0.2);
  }
  .slider-pro {
    margin-top: 37px !important;
  }
  .l-grid {
    margin: 0 -16px;
    padding: 5rem 0;
  }
  .l-grid__item {
    padding: 0 16px;
    width: 25%;
    padding: 0 16px;
    width: 33%;
  }
  .card {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .card__img:before {
    padding-top: 100%;
  }
  .card__hdg {
    font-family: Teko, sans-serif;
    bottom: 50px;
    letter-spacing: 0.5rem;
    font-size: 1.8rem;
  }
  .card__jp {
    bottom: 30px;
    font-size: 1.3rem;
  }
  .headings {
    right: 0;
    bottom: 0;
    left: auto;
    overflow: hidden;
    padding: 10px 0 0 135px;
    width: 100px;
    height: 100px;
  }
  .headings:before {
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
  }
  .sec-feature {
    padding-top: 30px;
  }
  .card--01 {
    position: relative;
    overflow: hidden;
  }
  .sec-feature .card--01 {
    height: 20vw;
  }
  .card--01:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%);
    content: "";
  }
  .figcaption {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    height: 100%;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    background: url(images/common/member_bg.png) center center no-repeat;
    background-size: 100% 100%;
    color: #fff;
    font-size: 17px;
    line-height: 1.88235;
    font-weight: bold;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
  .figcaption p {
    padding: 3vw;
    vertical-align: middle;
  }
  .card--01:hover .figcaption {
    opacity: 1;
    z-index: 10;
  }
  .card--01:hover .card__img {
    transform: scale(1.1);
    transition-duration: 0.3s;
  }
  .sec-feature .card--01:hover .card__hdg {
    display: none;
  }
  .button__link {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .switch:before {
    top: 34px;
    left: 42px;
    width: 58px;
    height: 58px;
    font-size: 3.4rem;
  }
  .m-page-header {
    height: 408px;
    text-align: center;
    height: 380px;
    margin-top: 10rem;
  }
  .m-page-header--type01:after {
    height: 364px;
    z-index: -1;
  }
  .m-page-header--type01:before {
    height: 364px;
    z-index: -1;
    width: 72.25%;
  }
  .m-page-header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
  }
  .m-page-header--field .m-page-header__container {
    padding-top: 5rem;
  }
  .m-page-header--type01 .m-page-header__head {
    display: block;
    padding-bottom: 0;
    height: auto;
  }
  .m-page-header__hdg {
    padding-top: 20px;
  }
  .m-page-header__sub {
    margin: 31px 0 0;
    letter-spacing: 0.1em;
    font-size: clamp(4rem, 6vw, 6rem);
    font-family: Teko, sans-serif;
  }
  .u-sp {
    display: none !important;
  }
  .m-page-header--type01 .m-page-header__content {
    margin-top: 13px;
  }
  .m-page-header__lead {
    font-size: 1.5rem;
    line-height: 2.13;
  }
  .m-page-header--type01 .m-page-header__lead {
    margin-top: 3px;
  }
  .sections {
    margin-top: 60px;
    padding-bottom: 70px;
  }
  .m-sec-header {
    margin: 0;
    padding: 31px 0 50px;
  }
  .m-sec-header--field {
    padding-top: 20px;
  }
  .m-sec-header__obj {
    width: 330px;
    height: 383px;
  }
  .m-sec-header--right .m-sec-header__obj {
    right: -60px;
  }
  .m-sec-header--field .m-sec-header__obj {
    width: 330px;
    height: 383px;
  }
  .m-sec-header__hdg {
    margin-top: 24px;
    font-weight: 500;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
  }
  .m-sec-header__hdg .under-line:before {
    bottom: -5px;
    border-bottom-width: 3px;
  }
  .m-sec-header__hdg .under-line + .under-line {
    margin-top: 10px;
  }
  .section__content {
    margin-top: 70px;
  }
  .section .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -65px;
  }
  .section .grid__item {
    padding: 0 65px 45px;
    width: 50%;
  }
  .section .card__header {
    position: absolute;
    left: 0;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    align-items: baseline;
    -ms-flex-align: baseline;
    margin: 0;
    padding: 46px 35px 0 3px;
    min-width: 286px;
    background-color: #fff;
  }
  .section .card__hdg {
    position: relative;
    top: 2px;
    margin-right: 15px;
    font-size: 2.8rem;
  }
  .section .card__sub {
    position: relative;
    top: 2px;
    letter-spacing: 0.195em;
    font-size: 1.6rem;
    font-family: Teko, sans-serif;
  }
  .section .card__img {
    margin: 0;
  }
  .section .card__img:before {
    padding-top: 65% !important;
  }
  .section .card__content-inner {
    padding: 23px 0 10px;
  }
  .section .card__txt {
    font-size: 1.5rem;
    line-height: 2.13;
  }
  .section .grid__item {
    padding: 0 65px 45px;
    width: 35%;
    margin: 0 auto;
  }
  .section .grid__item:nth-child(even) {
    position: relative;
    top: 90px;
  }
}
.p-top .sec-field {
  position: relative;
  padding-top: 65px;
}

.sec-header__hdg {
  position: relative;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: inline-block;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
.sec-header__hdg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  width: 60px;
  background: linear-gradient(135deg, #d4a574, #e8c5a0);
  border-radius: 1px;
}

.sec-header__sub {
  margin-top: 20px;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.6;
  position: relative;
  color: #666;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.sec-header__sub.--achievement_head {
  font-size: 2rem;
  margin-bottom: 15px;
}

.sec-field {
  padding-bottom: 60px;
  background: #f2f2f2;
}
.sec-field.sec-feature, .sec-field.sec-plan {
  background-color: #fff;
}

.sec-service {
  background: #f2f2f2;
}

.sec-concept__txt, .sec-concept__txt_02 {
  padding: 0 25px;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.15;
}

.sec-concept__txt h3 {
  color: #32c3ce;
  font-size: 23px;
  line-height: 1.8;
  font-weight: 800;
}

.sec-concept__txt_02 {
  color: #fff !important;
  position: relative;
}
.sec-concept__txt_02 h3 {
  color: #32c3ce;
  font-size: 23px;
  line-height: 1.8;
  font-weight: 800;
  color: #fff !important;
  position: relative;
}

.sec-plan .sec-concept__txt_02 {
  color: #111 !important;
  position: relative;
  text-align: center;
}
.sec-plan .sec-concept__txt_02 h3 {
  color: #111 !important;
  position: relative;
  text-align: center;
}
.sec-plan p {
  color: #111 !important;
  position: relative;
  text-align: center;
}

.hw3 {
  color: #fff;
}

.hw3-bg::after {
  background-color: #fff;
}

.sec-about {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 100px 0 100px;
  text-align: center;
  color: #fff;
  background: url(images/top/service-main.jpg) no-repeat bottom center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}
.sec-about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(30, 190, 202, 0.9);
}

/*クリックボタン*/
header button {
  display: block;
  background: #e60027;
  border: none;
  padding: 20px 30px;
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  font-weight: 600;
  z-index: 1001;
  text-align: center;
  outline: none;
}
header button .bar {
  display: block;
  height: 2px;
  background-color: #fff;
  margin: 10px 0;
  transition: all 0.2s;
  transform-origin: 0 0;
}
header button .close {
  letter-spacing: 0.08em;
  display: none;
}
header button .menu {
  display: block;
}
header button.active .bar {
  width: 49px;
}
header button.active .bar1 {
  transform: rotate(30deg);
}
header button.active .bar2 {
  opacity: 0;
}
header button.active .bar3 {
  transform: rotate(-30deg);
}
header button.active .menu {
  display: none;
}

button.active .close {
  display: block;
}

.global_nav_wrapper {
  width: 50%;
  height: 100%;
  transition: all 0.2s;
  transform: translate(100%);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #e60027;
}
.global_nav_wrapper.open {
  transform: translate(0);
}

.global_nav {
  width: 50%;
  padding: 120px 0 0 60px;
}
.global_nav li {
  font-size: 1.3rem;
  color: #fff;
  position: relative;
  margin-bottom: 35px;
  list-style: none;
}
.global_nav li a {
  display: block;
  color: #fff;
}
.global_nav li span {
  height: 32px;
  background-color: #e60027;
}
.global_nav .ja {
  font-size: 1.3rem;
  display: block;
  float: right;
  padding-left: 8px;
}
.global_nav .en {
  display: block;
  float: left;
  padding-right: 8px;
}
.global_nav .en:after {
  content: "";
  display: block;
  border-bottom: 1px solid #fff;
  width: 235px;
  position: absolute;
  top: 16px;
  z-index: -1;
  left: 36px;
}
.global_nav a {
  height: 32px;
  line-height: 32px;
  height: 32px;
  transition: color 0.3s;
}
.global_nav a:after {
  content: "";
  clear: both;
  display: block;
}
.global_nav li.sns {
  text-align: center;
}
.global_nav a:hover {
  color: #ffdb47;
}
.global_nav .en:hover::after {
  border-bottom: 1px solid #ffdb47;
}
.global_nav li.sns a {
  display: inline-block;
  font-size: 2.4rem;
  margin: 0 15px;
}

.bg_blue {
  background-color: #81D5E0;
  background: -webkit-linear-gradient(#81d5e0 20%, #69ade0 100%);
  background: -o-linear-gradient(#81d5e0 20%, #69ade0 100%);
  background: linear-gradient(#81d5e0 20%, #69ade0 100%);
  padding-top: 40px;
}
.bg_blue:before {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background-image: url("/wp/wp-content/themes/zdo_template/img/common/bg_wave.png");
  background-repeat: repeat-x;
  background-position: 50%;
  position: relative;
  top: -80px;
}

.sub_logo_area {
  line-height: 0;
  text-align: center;
  padding: 64px 0;
  margin-bottom: 40px;
}

@media all and (min-width: 769px) {
  header button {
    top: 0;
    right: 0;
  }
  .main_contents {
    width: 1024px;
    margin: 0 auto 64px;
  }
  .left_contents {
    float: left;
    width: 656px;
  }
  .right_contents {
    float: right;
    width: 320px;
    margin-left: 48px;
  }
}
@media all and (max-width: 768px) {
  header button {
    top: 0;
    right: 0;
    padding: 5px 15px;
  }
  .sub_logo_area {
    padding: 24px 0;
  }
  .sub_logo_area img {
    width: 210px;
    height: auto;
  }
  .bg_blue {
    padding-top: 32px;
  }
  .bg_blue:before {
    height: 20px;
    background-size: 600px;
    top: -52px;
  }
}
.global_nav .en:hover:after {
  display: block;
  border-bottom: 1px solid #ffdb47;
}

@media screen and (min-width: 480px) and (max-width: 1024px) {
  /*ヘッダー*/
  .site-header {
    background: rgb(255, 255, 255);
    display: flex;
    padding: 10px 20px 5px;
    position: fixed;
    justify-content: space-between;
    transition: 0.5s;
    width: 100%;
  }
  .site-header.transform {
    background: rgba(255, 255, 255, 0.5);
    padding: 20px;
  }
  .g-header__logo {
    top: 20px;
  }
  .btn_menu {
    position: fixed;
  }
  .global_nav {
    width: 75%;
  }
}
@media screen and (min-width: 300px) {
  /* 300px以上の時に読み込まれる */
}
@media screen and (max-width: 768px) {
  .global_nav {
    width: 100%;
    padding: 120px 0 0 60px;
  }
  .g-header__logo a img {
    width: 65%;
    height: auto;
  }
  .global_nav_wrapper {
    width: 90%;
  }
  .global_nav {
    width: 83%;
    padding: 120px 0 0 30px;
  }
  .global_nav li, .global_nav .ja, .global_nav .about-ja {
    font-size: 13px;
  }
  .global_nav .en:after {
    width: 80%;
    opacity: 0.4;
  }
  .global_nav .about-en:after {
    width: 15%;
  }
  .hero {
    position: relative;
    padding: 70px 0 0;
  }
  .l-grid {
    padding: 3rem 0;
  }
  .headings {
    left: 45px;
    bottom: 0px;
    width: 65%;
    height: 100px;
    overflow: hidden;
  }
  .l-grid__item {
    padding: 0;
  }
  .l-grid__item--1of2 {
    width: 30%;
    margin: 0 auto;
  }
  .figcaption {
    display: none;
  }
  .figcaption.onhidden {
    height: 250px;
    overflow-y: hidden;
  }
  .figcaption .text {
    padding: 10px;
  }
  .figcaption .readmore {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0) linear-gradient(180deg, rgba(255, 255, 255, 0.5), white) repeat scroll 0 0;
    font-weight: bold;
    cursor: pointer;
    z-index: 999;
  }
  .figcaption .readmore span {
    border-radius: 20px;
    padding: 5px 30px;
    background-color: #dd4b39;
    color: #FFF;
  }
  .trial_button {
    display: none;
  }
  .inquire_button {
    right: auto;
  }
}
.content-inner-y {
  /*   padding-top: 80px;*/
  padding-bottom: 80px;
}

.scrt-to-top {
  -webkit-transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-property: opacity, transform;
  -moz-transition-property: opacity, transform;
  -ms-transition-property: opacity, transform;
  -o-transition-property: opacity, transform;
  transition-property: opacity, transform;
}

.page-title {
  font-family: "Teko", sans-serif;
  text-align: center;
  font-weight: 900;
  font-size: 3.8rem;
  letter-spacing: 0.5rem;
}

.scrt-to-top.visible {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.justify-content-center {
  justify-content: center !important;
}

.col-lg-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%;
  z-index: 90;
}

.mb20 {
  margin-bottom: 20px !important;
}

.text-center {
  text-align: center !important;
}

#contact #sec01 ul {
  padding-left: 10px;
}
#contact #sec01 ul li {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 10px;
}

.content-inner-b {
  padding-bottom: 80px;
}

.pos-r {
  position: relative;
}

.col-lg-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.form-group {
  margin-bottom: 20px;
}

.col-md-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-form-label {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: bold;
  color: #4d4d4d;
}

.notice {
  color: #ec4c4c;
}

.form_table dl dt {
  width: 25%;
  float: left;
  clear: both;
  font-weight: bold;
}
.form_table dl dd {
  padding: 0 0 1.5rem 190px;
}

.mwform-tel-field input[type=text] {
  width: 14%;
}

input[type=text], input[type=email], input[type=password], input[type=tel] {
  /* display: block; */
  width: 100%;
  padding: 1rem 0.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #111;
  border-radius: 0px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  touch-action: manipulation;
  font-size: 16px;
}

textarea, select {
  /* display: block; */
  width: 100%;
  padding: 1rem 0.8rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #111;
  border-radius: 0px;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  touch-action: manipulation;
  font-size: 16px;
}

.page-template-contact-confirm .form_table dl {
  padding-bottom: 5rem;
}
.page-template-contact-confirm .form_table dl dt {
  padding: 0 25px;
}
.page-template-contact-confirm .form_table dl dd {
  padding: 0 0 3.5rem 190px;
}

.cp_ipselect {
  width: 100%;
  position: relative;
  display: inline-block;
}
.cp_ipselect::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0px;
  border-bottom: solid 2px #111;
  border-right: solid 2px #111;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 31%;
  right: 10px;
  margin-top: -4px;
}
.cp_ipselect select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 40px;
  background: transparent;
  position: relative;
  z-index: 1;
  padding: 0 40px 0 10px;
  border: 1px solid #111;
  border-radius: 2px;
}
.cp_ipselect select::-ms-expand {
  display: none;
}

.mw_wp_form_confirm .cp_ipselect::after {
  display: none;
}

.selectBox {
  margin-right: -1.8rem;
}

.check {
  text-align: center;
  padding: 1rem 0;
}

.btnWrap {
  text-align: center;
  padding: 2rem 0;
}

input[type=submit] {
  display: inline-block;
  background: #e60027;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.8rem;
  line-height: 1.5;
  border-radius: 0px;
  min-width: 240px;
  padding: 1rem 1.5rem;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 1rem;
  -webkit-appearance: none;
  border-radius: 0;
}
input[type=submit]:hover {
  background: #000;
}

input[type=button] {
  display: inline-block;
  background: #e60027;
  color: #fff;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 0.8rem;
  line-height: 1.5;
  border-radius: 0px;
  min-width: 240px;
  padding: 1rem 1.5rem;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  margin-bottom: 1rem;
  -webkit-appearance: none;
  border-radius: 0;
}
input[type=button]:hover {
  background: #000;
}

.ncms-mod-common-section1__body {
  margin: 5rem 0;
}

.ncms-mod-section4.-green {
  border: 5px solid #ff8737;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.ncms-mod-section4__head {
  background: #fff2ea;
  text-align: center;
  overflow: hidden;
}

.ncms-mod-section4__title {
  background: #ff8737;
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 15px 20px;
  margin: 0;
  margin-bottom: 20px;
}

.ncms-mod-section4__price {
  margin: 2rem 0;
}

.ncms-frm-root .ncms-mod-section4__head > * {
  margin-bottom: 20px;
}

.ncms-mod-section4__price span {
  color: #ff8737;
  display: inline-block;
  font-size: 3vw;
  font-weight: 700;
  font-family: "Teko", sans-serif;
  line-height: 1;
  margin-right: 10px;
}

.ncms-mod-section4__body {
  padding: 30px;
  overflow: hidden;
}
.ncms-mod-section4__body > p {
  margin-top: 0;
  font-size: 15px;
  margin: 15px 0 0;
}

/*お問い合わせページ*/
#service, #contact, #plan, #news {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}

.contact_aside {
  padding: 40px;
  margin: 0 auto 30px;
  background: #ddd;
}

.m-page-header {
  position: relative;
}

.m-page-header--field:before {
  background-color: #fff9d3;
  z-index: -2;
}

#service .m-page-header--field:before {
  background-color: #c1eef1;
  z-index: -2;
}

#contact .m-page-header--field:before {
  background-color: #f7cfdc;
  z-index: -2;
}

#news .m-page-header--field:before {
  background-color: #ffe6d5;
  z-index: -2;
}

.m-page-header--type01:before {
  top: 0;
  right: 0;
  width: 86.53%;
  z-index: -2;
}

.m-page-header--field:after {
  background-color: #ffdb00;
  z-index: -1;
}

#service .m-page-header--field:after {
  background-color: #1ebeca;
  z-index: -1;
}

#contact .m-page-header--field:after {
  background-color: #f781a8;
  z-index: -1;
}

#news .m-page-header--field:after {
  background-color: #ff8737;
  z-index: -1;
}

.m-page-header--type01:after {
  top: 31px;
  left: 0;
  width: 44.8%;
  z-index: -1;
}

.m-page-header:after, .m-page-header:before {
  position: absolute;
  display: block;
  content: "";
}
.m-page-header:after {
  -webkit-transform: skewX(-12deg);
  transform: skewX(-12deg);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.m-page-header--type01:after, .m-page-header--type01:before {
  height: 330px;
}

.m-page-header__container {
  position: relative;
}

.m-page-header__hdg {
  padding-top: 10px;
  text-align: center;
  font-size: 1.5rem;
}

.m-page-header__sub {
  margin: 19px -30px 0;
  padding-left: 0.1em;
  text-align: center;
  letter-spacing: 0.075em;
  font-weight: 500;
  font-size: 5.5rem;
  font-family: Teko, sans-serif;
  line-height: 0.85;
}

.m-page-header--type01 .m-page-header__content {
  margin-top: 26px;
  z-index: 100;
}

.m-page-header__lead {
  padding: 0 15px;
  font-size: 1.6rem;
  line-height: 1.81;
}

.sections {
  margin-top: 120px;
  padding: 80px 0 120px;
  background: #ffffff;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.m-sec-header {
  position: relative;
  margin: 0 -30px;
  padding: 0 0 50px;
  text-align: center;
}

.m-sec-header__obj {
  position: absolute;
  top: 0;
  overflow: hidden;
  width: 38.13%;
  height: 100%;
}

.m-sec-header--right .m-sec-header__obj {
  right: -9px;
}

.m-sec-header__obj:before {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
}

.m-sec-header--right .m-sec-header__obj:before {
  -webkit-transform: skewX(12deg);
  transform: skewX(12deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
}

.m-sec-header--field .m-sec-header__obj:before {
  background-color: #ffdb00;
}

#service .m-sec-header--field .m-sec-header__obj:before {
  background-color: #1ebeca;
}

#contact .m-sec-header--field .m-sec-header__obj:before {
  background-color: #f781a8;
}

#news .m-sec-header--field .m-sec-header__obj:before {
  background-color: #ff8737;
}

.m-sec-header__hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.56;
}

.m-sec-header__hdg--shadow {
  position: absolute;
  visibility: hidden;
}

.m-sec-header__hdg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.56;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.56;
}
.m-sec-header__hdg .under-line {
  position: relative;
  display: inline-block;
  vertical-align: top;
  position: relative;
  display: inline-block;
  vertical-align: top;
}
.m-sec-header__hdg .under-line:before {
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 2px solid #000;
  content: "";
}
.m-sec-header__hdg .under-line + .under-line {
  margin-top: 10px;
}

#plan .sections {
  margin-top: 10rem;
  padding-bottom: 100px;
}

#news .articles-l {
  overflow: hidden;
  padding: 5rem 50px 0;
}

.section__content {
  position: relative;
}

.section .card {
  position: relative;
  padding: 30px;
  margin-bottom: 40px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(212, 165, 116, 0.1);
}
.section .card__group {
  position: relative;
}
.section .card__header {
  /*padding: 25px 30px 25px;*/
  /*background-color: #f7f7fa;*/
  line-height: 1;
}
.section .card__hdg {
  font-weight: 600;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.02em;
}
.section .card__sub {
  margin-top: 12px;
  color: #666;
  letter-spacing: 0.02em;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

.page-template-service-php .card__img {
  overflow: hidden;
  width: 100%;
  height: 240px;
  position: relative;
  margin: 0 !important;
}

.section .card__img {
  position: relative;
  overflow: hidden;
  margin: 0 -30px;
}
.section .card__img:before {
  display: block;
  padding-top: 80.2%;
  content: "";
}
.section .card__img > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.section .card__content {
  position: relative;
}
.section .card__content-inner {
  padding: 25px 0 10px;
}
.section .card__txt {
  font-size: 1.5rem;
  line-height: 1.93;
}

.tabs {
  margin: 30px 0 0;
  padding: 0 28px;
}
.tabs li {
  display: inline-block;
  list-style: none;
  padding: 0;
}
.tabs li + li span {
  margin-left: -5px;
}

#tabindex, #tabcontents {
  position: relative;
}

.tabs span {
  background-color: #ccc;
  border-radius: 6px 6px 0 0;
  background-color: #fff;
  border: 2px solid #FF8736;
  color: #FF8736;
  font-weight: 700;
  letter-spacing: 0.5rem;
  display: block;
  font-size: 1.8rem;
  padding: 15px 80px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s;
  transform-origin: 50% 90%;
}
.tabs .current {
  background-color: #FF8736;
  color: #fff;
  box-shadow: none;
  font-weight: bold;
  z-index: 1;
  transform: scale(1.2);
}

.tab-content {
  background-color: #fff;
  border: 20px solid #FF8736;
  box-shadow: 0 3px 0 0 #ccc;
  padding: 30px 20px;
  width: 100%;
  box-sizing: border-box;
}

.flexbox {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

/* 
TABLE
================================================ */
.slide-wrap {
  padding-bottom: 5rem;
  /* max-width: 1060px; */
  width: 100%;
  text-align: center;
}

.ptsContainer * {
  border: none;
  white-space: normal;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.ptsTableElementContent {
  border-top: solid 1px #f5f9fd;
  border-radius: 6px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2);
}

.horizontal_scroll_wrap .ptsCol {
  max-width: 242px;
  white-space: normal;
}

.horizontal_scroll_wrap2 {
  margin: 0 auto;
  text-align: center;
}

.slide-wrap2 {
  /*display:flex;*/
  padding-bottom: 5rem;
  width: 100%;
  text-align: center;
}

.horizontal_scroll_wrap2 .ptsCol {
  /* width:35%; */
  max-width: 242px;
  white-space: normal;
}

.horizontal_scroll_wrap, .horizontal_scroll_wrap2 {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.scroll_lst, .scroll_lst2 {
  display: flex;
}

.ptsCol {
  padding: 0 10px;
  vertical-align: top;
  /* width:35%; */
  max-width: 242px;
  white-space: normal;
}

.ptsEl {
  display: inline-block;
  min-width: 15px;
  position: relative;
}

.plan .slide-wrap, .sec-plan .slide-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.plan .ptsCol, .sec-plan .ptsCol {
  max-width: 320px;
  white-space: normal;
  margin-bottom: 20px;
}
.plan .ptsEl, .sec-plan .ptsEl {
  display: block;
}

.plan .ptsCol {
  max-width: 260px;
}

.ptsBlock {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: initial;
  margin: initial;
  padding: initial;
  vertical-align: initial;
  outline: initial;
  text-align: inherit;
}
.ptsBlock * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  line-height: initial;
  margin: initial;
  padding: initial;
  vertical-align: initial;
  outline: initial;
  text-align: inherit;
}

.ptsCol .ptsElArea {
  overflow: hidden;
  position: relative;
}
.ptsCol .ptsColHeader, .ptsCol .ptsColDesc, .ptsCol .ptsColDesc2, .ptsCol .ptsRows .ptsCell, .ptsCol .ptsColFooter {
  text-align: center;
}

.ptsColHeader {
  padding: 15px;
  color: #fff;
  background-color: rgb(51, 153, 255);
}

.ptsToggle > div {
  visibility: visible !important;
}

.ptsCol .ptsRows {
  color: #666;
}
.ptsCol .ptsRows .ptsCell {
  padding: 12px;
  height: 100%;
}

.topTxt, .sub-titleInner {
  background: #ff8080;
  background-color: #fff;
  padding: 30px 10px;
  border-bottom: 1px solid #d2d2d2;
  margin-right: 20px;
  margin-left: 20px;
}

.feature .ptsCell:first-child {
  border-top: 1px solid #d2d2d2;
  margin-right: 20px;
  margin-left: 20px;
}

.sub-title .feature .ptsCell:nth-child(even) {
  background: #f6f6f6;
}

.ptsTog2 {
  /*height:8vw;*/
}

.rgba {
  border-bottom: 1px solid #d2d2d2;
}

.ptsColDesc .ptsTog {
  /* height:8vw; */
}
.ptsColDesc .ptsTog2 {
  height: 8vw;
}

.sub-title .sub-titleInner {
  height: 8vw;
  /* vertical-align: middle; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-title2 .sub-titleInner2 {
  height: 40vh;
  /* vertical-align: middle; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  margin-right: 20px;
  margin-left: 20px;
}

.first--price {
  font-family: "Teko", sans-serif;
  font-weight: 900;
  letter-spacing: 0.3rem;
}

.m-sec-header .head--read {
  position: relative;
  padding-top: 5rem;
}

/* 
BUTTON
================================================ */
.ptsCol .ptsColFooter {
  padding: 20px;
  border-top: 1px solid #d2d2d2;
  margin-right: 20px;
  margin-left: 20px;
}

.ptsActBtn {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

.ptsEditArea {
  position: relative;
  display: inline-block;
  display: block;
  padding: 5%;
  background-color: #eb9605;
  border: 2px solid #eb9605;
  color: #fff;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
}
.ptsEditArea::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: url(images/common/inq_btn.png);
  transition: all 0.2s;
  transform: translateY(-40%);
}
.ptsEditArea:hover {
  background-color: #fff;
  border: 2px solid #eb9605;
  color: #eb9605;
}
.ptsEditArea:hover::after {
  content: url(images/common/biz4-arw2.png);
  right: 0.5em;
}

/*topicks*/
.articles-l article {
  margin: 0 3.333% 50px 0;
  width: 21.5%;
  float: left;
  display: block;
}
.articles-l article:nth-child(4n+1) {
  clear: left;
}
.articles-l article a {
  display: block;
  -webkit-transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: color, background-color, border-color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: color, background-color, border-color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  -webkit-transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: color, background-color, border-color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: color, background-color, border-color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.articles-l article a:before, .articles-l article a:after {
  -webkit-transition-property: color, background-color, border-color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: color, background-color, border-color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: color, background-color, border-color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.has-thumbnail .thumbnail, .hover-zoom {
  display: block;
  overflow: hidden;
}

.articles-l article .thumbnail {
  margin-bottom: 12px;
  height: 125px;
  overflow: hidden;
}

.has-thumbnail .thumbnail img, .hover-zoom img {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(1);
  -webkit-transition: transform 0.75s ease;
  -moz-transform: scale(1);
  -moz-transition: transform 0.75s ease;
  -ms-transform: scale(1);
  -ms-transition: transform 0.75s ease;
  -o-transform: scale(1);
  -o-transition: transform 0.75s ease;
  transform: scale(1);
  transition: transform 0.75s ease;
}

.articles-l article .thumbnail img {
  display: block;
  width: 100%;
  height: auto;
}

.has-thumbnail a:hover .thumbnail img, .has-thumbnail a.thumbnail:hover img {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  -transform: scale(1.25);
}

a.hover-zoom:hover img, .hover-zoom a:hover img {
  -webkit-transform: scale(1.25);
  -moz-transform: scale(1.25);
  -ms-transform: scale(1.25);
  -o-transform: scale(1.25);
  -transform: scale(1.25);
}

.articles-l article .article-title {
  margin: 0 0 0.3em 0;
  font-size: 16px;
  line-height: 1.7;
}
.articles-l article p {
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #999;
  display: inline;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #999;
}
.articles-l article p + p:before {
  content: "| ";
  margin-left: 10px;
}

article .article-category span[data-url] {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}

.has-thumbnail a {
  text-decoration: none;
  color: #111;
}

.article-category .cate {
  margin-left: 0;
  padding: 0 10px;
  background: none;
}

.blog--left {
  width: 71.5%;
  float: left;
}

.blog--right {
  width: 20%;
  float: right;
  padding-bottom: 10rem;
}

.blog-body {
  padding: 10px 30px 30px 0;
  font-size: 1.3rem;
}

.article__date {
  font-size: 1.8rem;
  color: #666;
  font-family: "Teko", sans-serif;
  /* letter-spacing: 0.3rem; */
  letter-spacing: 0.2em;
}

.side-title {
  font-weight: bold;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 20px;
  padding: 8px 0;
  letter-spacing: 0.3rem;
  font-size: 1.8rem;
  font-family: "Teko", sans-serif;
}
.side-title:after {
  content: "";
  width: 30px;
  position: absolute;
  bottom: -2px;
  left: 0;
  border-bottom: 2px solid #e60027;
}

.cat-list, .children {
  list-style: none;
}

.cat-list li {
  margin-bottom: 5px;
}
.cat-list li a {
  font-weight: bold;
  display: block;
  color: #111;
  padding: 5px 0;
  padding-left: 30px;
  background: #FFF;
  text-decoration: none;
  position: relative;
  font-size: 14px;
}
.cat-list li a::before {
  position: absolute;
  left: 3px;
  top: 50%;
  margin-top: -11px;
  content: "\f105";
  font-family: FontAwesome;
  color: rgb(17, 17, 17);
  font-size: 10px;
}

.children li a::before {
  content: " ";
}

.cat-list li ul {
  margin-bottom: 10px;
}
.cat-list li ul li {
  border-bottom: none;
  margin-bottom: 0;
}
.cat-list li ul li a {
  padding: 8px 20px;
  padding-left: 40px;
  font-weight: normal;
}

#related-article h3 {
  font-size: 18px;
}

.related-section {
  clear: both;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 10px;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.side--list {
  border: 1px solid #ccc;
  padding: 1rem 10px;
}

.related-section-thumb {
  margin-bottom: 5px;
  padding-bottom: 5px;
}

.related-section-title a, .related-section-snippet, .related-section-read a {
  color: #111;
  text-decoration: none;
}

.related-section-title {
  margin-bottom: 5px;
}

.related-section-snippet {
  margin-bottom: 5px;
  font-size: 1.3rem;
  color: #666;
}

.related-section-read {
  margin: 0;
  font-size: 12px;
  text-align: right;
}

.sec-news__content {
  margin: 5rem auto;
  border-top: 1px solid #e3e3e3;
  width: 80%;
}
.sec-news__content .article {
  border-bottom: 1px solid #e3e3e3;
}
.sec-news__content .article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -ms-flex-align: center;
  padding: 22px 0;
  color: #111;
  text-decoration: none;
  -webkit-transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.sec-news__content .article a:hover {
  opacity: 0.6;
}

.cate {
  border-radius: 20px;
  background: #85d2f3;
  padding: 0 20px;
  margin-right: 10px;
  letter-spacing: 0.3rem;
  font-family: Teko, sans-serif;
}

.sec-news__content .article__date {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 150px;
  font-weight: 500;
  font-size: 1.5rem;
}
.sec-news__content .article__date .i-fb {
  margin-right: 15px;
  width: 22px;
  height: 22px;
  font-size: 2.2rem;
}

.article__ttl {
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-top: 0;
  padding-right: 70px;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .accordion.faq {
    width: auto;
  }
  .ncms-mod-section4.-green {
    width: 95%;
  }
  .button__link {
    position: relative;
  }
  .p-top__mv {
    background: #ffdb00;
    position: relative;
  }
  .p-top__mv .img {
    height: 95vw;
    background: red;
  }
  .p-top__mv .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-top__mv .logo span {
    width: 17.5vw;
    left: 4vw;
    top: 2vh;
  }
  .p-top__mv .txt {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 0 15px 5px;
    margin: -90px 0 0;
  }
  .p-top__mv .txt:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 90px 0 0 100vw;
    border-color: transparent transparent transparent #ffdb00;
    position: absolute;
    left: 0;
    top: 0;
  }
  .p-top__mv .txt .catch01 {
    position: relative;
    padding-bottom: 10px;
  }
  .p-top__mv .txt .catch02 {
    margin: 0 0 10px;
    position: relative;
  }
  .p-top__mv .txt .desc {
    font-size: 1.6rem;
  }
  .sec-field__header {
    text-align: center;
    padding: 2rem 0;
  }
  .sec-header__sub, .sec-concept__txt h3, .sec-concept__txt_02 h3, .card__hdg, .card__jp, .article__ttl, .m-sec-header__hdg {
    font-size: 100%;
  }
  .sec-concept__txt, .sec-concept__txt_02 {
    padding: 2rem 25px;
    font-size: 100%;
  }
  .sec-about {
    padding: 30px 0;
  }
  .sec-case {
    padding-top: 20px;
  }
  .sec-header__hdg {
    margin-top: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 3.2rem;
    font-family: Teko, sans-serif;
    line-height: 1;
  }
  .sec-header__lead {
    font-size: 1.4rem;
    line-height: 1.93;
  }
  .service_list .service--item {
    background-color: #fff;
    border: 1px solid #111;
    padding: 2rem;
    height: 40vh;
  }
  .sec-field__content, .dsp-flex {
    width: 95%;
    margin: 0 auto;
  }
  .free--plan {
    margin: 0 auto 0;
  }
  .free--plan th, .free--plan td {
    width: 100%;
    display: block;
    border-top: none;
    font-size: 100%;
    padding: 1rem 0;
  }
  .form_table dt, .form_table dd {
    width: 100%;
    display: block;
    border-top: none;
    font-size: 100%;
    padding: 1rem 0;
  }
  .form_table dl dd {
    padding: 1rem 0;
  }
  .page-template-contact-confirm .form_table dl dd {
    padding: 1rem 0 !important;
  }
  .sec-feature .l-grid {
    margin: 0 auto;
    padding: 3rem 0 0;
  }
  .sec-feature .l-grid__item--1of2 {
    width: 100%;
    margin: 0 auto;
  }
  .sec-plan .l-grid {
    margin: 0 auto;
    padding: 3rem 0 0;
  }
  .sec-plan .l-grid__item--1of2 {
    width: 100%;
    margin: 0 auto 3rem;
  }
  .card__img img {
    display: block;
    width: 100%;
    transition-duration: 0.3s;
  }
  .headings {
    left: 0;
  }
  .headings:before {
    -webkit-transform: skewX(30deg);
    transform: skewX(30deg);
  }
  .sec-plan {
    margin: -40px 0 10px !important;
  }
  .sec-feature {
    padding-top: 20px;
  }
  .sec-feature .card__img {
    display: inline-block;
    /* ここがポイント */
    position: relative;
    height: 180px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .sec-feature .card__img img {
    height: 100%;
  }
  .sec-feature .card__hdg {
    top: 130px;
  }
  .sec-feature .card {
    box-shadow: none;
  }
  .sec-feature .card__img:after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.7)));
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%);
    content: "";
  }
  .sec-feature .figcaption p {
    text-align: center;
  }
  .sec-feature:before {
    margin-bottom: -25rem;
  }
  .entryArea__link {
    position: relative;
  }
  .sec-news__content {
    margin: 0 auto;
    width: 100%;
    padding-bottom: 5rem;
  }
  #feed-list {
    padding-bottom: 1rem !important;
  }
  .sec-faq .sec-field__header {
    padding: 1rem 0;
  }
  .switch {
    cursor: pointer;
    font-weight: bold;
    padding: 30px 80px 48px 90px;
    font-weight: 700;
    font-size: 100%;
    position: relative;
  }
  .contentWrap {
    padding: 30px 80px 48px 90px;
  }
  .switch:before {
    left: 25px;
  }
  .entryArea__inner {
    padding: 60px 0 60px;
  }
  .m-page-header__container {
    position: relative;
    z-index: 90;
  }
  .m-page-header {
    position: relative;
    margin-top: 70px;
  }
  .m-page-header__lead {
    padding: 0 15px;
    font-size: 100%;
    line-height: 1.81;
    text-align: center;
  }
  #plan .sections, #service .sections, #contact .sections, #news .sections, .row-news {
    margin-top: 160px;
    padding-bottom: 0;
  }
  .head--read {
    width: 85%;
    text-align: center;
    margin: 0 auto;
  }
  .horizontal_scroll_wrap, .horizontal_scroll_wrap2 {
    white-space: normal;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .horizontal_scroll_wrap .ptsCol {
    max-width: 100%;
    width: 95%;
    padding-bottom: 5rem;
    margin-bottom: 3rem;
    padding: 0;
  }
  .ptsColDesc .ptsTog {
    height: 15vh;
  }
  .ptsTog2 {
    height: 20vw;
  }
  .sub-title2 .sub-titleInner2 {
    height: 40vh;
  }
  .section .card__content-inner {
    padding: 0;
    width: 85%;
    text-align: center;
    margin: 0 auto;
  }
  .section .card__sub, .section .card__hdg {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
  }
  .section .card__header {
    /*padding: 15px 50px 15px;*/
  }
  .section .card__img:before {
    /*padding-top: 87.2%;*/
    padding-top: 66.2%;
  }
  .section .card__txt {
    font-size: 100%;
    line-height: 1.93;
    text-align: center;
    padding-top: 3rem;
  }
  .slide-wrap2 {
    display: block;
    width: 95%;
    margin: 0 auto;
  }
  .ptsCol {
    padding: 0;
    width: 100%;
    vertical-align: top;
  }
  .ptsCol .ptsElArea {
    margin-bottom: 3rem;
  }
  .related-section {
    overflow: hidden;
  }
  .blog--left {
    width: 90%;
    float: none;
    margin: 0 auto 5rem;
  }
  .blog--right {
    width: 90%;
    float: none;
    margin: 0 auto 5rem;
    width: 95%;
    margin: 1rem auto;
    border-top: 1px solid #d2d2d2;
  }
  .related-section-thumb {
    width: 20%;
    margin-bottom: 5px;
    padding-bottom: 5px;
    float: left;
  }
  .related-section-content {
    float: right;
    width: 70%;
    vertical-align: top;
  }
  .cp_ipselect::after {
    top: 37.4%;
  }
  .form_table dl dt {
    width: 100%;
  }
  .page-template-contact-confirm .form_table dl dt {
    padding: 1rem 0 !important;
  }
  .sec-news__content .article__date {
    width: 100px;
  }
  .page-template-service-php .card__hdg {
    top: 150px;
  }
  .ncms-mod-section4__price span {
    font-size: 7vh;
  }
  .articles-l article {
    margin: 0 3.333% 50px 0;
    width: 90%;
    margin: 0 auto 5rem;
    float: none;
    display: block;
  }
}
a.anchor {
  display: block;
  padding-top: 70px;
}

.grad-item {
  font-size: 12px;
}

.m-sec-header__obj {
  z-index: -1;
}

.feature_top,
.feature_bottom {
  width: 1200px;
  margin: 0 auto;
}

.feature_topcontent {
  width: 850px;
  min-height: 150px;
  margin: 70px auto;
}
.feature_topcontent:first-child {
  margin-top: 0;
}
.feature_topcontent h2, .feature_topcontent p {
  width: 650px;
}
.feature_topcontent h2 {
  font-size: 1.8rem;
  line-height: 2.5rem;
}
.feature_topcontent p {
  margin-top: 5px;
  font-size: 1.4rem;
  font-weight: lighter;
}
.feature_topcontent:nth-child(even) {
  margin-left: auto;
}
.feature_topcontent:nth-child(even) h2, .feature_topcontent:nth-child(even) p {
  margin-left: auto;
}
.feature_topcontent::before {
  content: "";
  display: block;
  clear: left;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}
.feature_topcontent.feature1::before {
  background: url(./images/service/new_featuretop1.png) top left/contain;
}
.feature_topcontent.feature2::before {
  background: url(./images/service/new_featuretop2.png) top left/contain;
}
.feature_topcontent.feature3::before {
  background: url(./images/service/new_featuretop3.png) center left/contain no-repeat;
}
.feature_topcontent.feature4::before {
  background: url(./images/service/new_featuretop4.png) top left/contain;
}
.feature_topcontent.feature5::before {
  background: url(./images/service/new_featuretop5.png) top left/contain;
}
.feature_topcontent.feature6::before {
  background: url(./images/service/new_featuretop6.png) top left/contain;
}
.feature_topcontent.feature7::before {
  background: url(./images/service/new_featuretop7.png) top left/contain;
}
.feature_topcontent.feature8::before {
  background: url(./images/service/new_featuretop8.png) top left/contain;
}
.feature_topcontent:nth-child(odd)::before {
  float: left;
  margin-right: 30px;
}
.feature_topcontent:nth-child(even)::before {
  float: right;
  margin-left: 30px;
}

.feature_bottom h2 {
  text-align: center;
}
.feature_bottom .feature_bottom_list {
  width: 750px;
  margin: 70px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature_bottom .feature_bottom_list_item {
  list-style-type: none;
  width: 33%;
  padding: 0 15px 30px;
  box-sizing: border-box;
}
.feature_bottom .feature_bottom_list_item h3 {
  text-align: center;
}
.feature_bottom .feature_bottom_list_item h3::after {
  display: block;
  content: "";
  width: 100%;
  height: 60px;
  margin: 20px 0;
}
.feature_bottom .feature_bottom_list_item.item1 h3::after {
  background: url(./images/service/new_featurebottom1.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item2 h3::after {
  background: url(./images/service/new_featurebottom2.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item3 h3::after {
  background: url(./images/service/new_featurebottom3.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item4 h3::after {
  background: url(./images/service/new_featurebottom4.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item5 h3::after {
  background: url(./images/service/new_featurebottom5.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item6 h3::after {
  background: url(./images/service/new_featurebottom6.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item7 h3::after {
  background: url(./images/service/new_featurebottom7.png) center center/contain no-repeat;
}
.feature_bottom .feature_bottom_list_item.item8 h3::after {
  background: url(./images/service/new_featurebottom8.png) center center/contain no-repeat;
}

@media (max-width: 1020px) {
  .feature_top,
  .feature_topcontent,
  .feature_topcontent h2,
  .feature_topcontent p,
  .feature_bottom,
  .feature_bottom_list {
    width: 100% !important;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .feature_bottom_list .feature_bottom_list_item {
    box-sizing: border-box;
  }
}
@media (max-width: 768px) {
  .feature_topcontent h2 {
    margin: 15px 0;
  }
  .feature_topcontent::before {
    float: none !important;
    margin: 10px auto !important;
  }
  .feature_bottom_list_item {
    width: 50% !important;
  }
}
.error404 #service .m-page-header--field:before {
  background: #B2B2B2;
}
.error404 #service .m-page-header--field:after {
  background: #DEDEDE;
}

@media (max-width: 768px) {
  .error404 .m-page-header {
    min-height: 291px;
  }
  .error404 .entryArea {
    margin-top: 200px;
  }
}
.sec-field__content.top_feature {
  display: flex;
  justify-content: space-between;
  max-width: 1020px;
  margin: auto auto 60px auto;
  padding: 0 10px;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.sec-field__content.top_feature h3 {
  display: flex;
  position: relative;
  width: 45%;
  margin-top: 30px;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
}
.sec-field__content.top_feature h3::before {
  content: "";
  display: block;
  clear: left;
  width: 100px;
  height: 100px;
  margin-right: 10px;
  flex-shrink: 0;
}
.sec-field__content.top_feature h3.feature1::before {
  background: url(./images/service/new_featuretop1.png) center left/contain no-repeat;
}
.sec-field__content.top_feature h3.feature2::before {
  background: url(./images/service/new_featuretop2.png) center left/contain no-repeat;
}
.sec-field__content.top_feature h3.feature3::before {
  background: url(./images/service/new_featuretop3.png) center left/contain no-repeat;
}
.sec-field__content.top_feature h3.feature4::before {
  background: url(./images/service/new_featuretop4.png) center left/contain no-repeat;
}

@media (max-width: 768px) {
  .sec-field__content.top_feature {
    display: block;
  }
  .sec-field__content.top_feature h3 {
    width: 90%;
    margin: 30px auto 0;
    font-size: 1.4rem;
  }
  .sec-case__achievement {
    z-index: 999;
    justify-content: center;
  }
  .sec-case__achievement li {
    max-width: 90% !important;
  }
}
#plan h2 {
  margin-bottom: 40px;
  text-align: center;
}
#plan .ptsTog2.topTxt {
  margin: auto;
}

.plan_remark {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}

.entryArea.multipleButtons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.entryArea.multipleButtons .entryArea__link {
  margin: 0;
}
.entryArea.multipleButtons .entryArea__link .button__link {
  width: 310px;
}
.entryArea.multipleButtons .entryArea__link:first-child {
  margin-right: 20px;
}
.entryArea.multipleButtons .entryArea__link:last-child .button__link {
  background: #eb9605;
}

.sec-about {
  margin-top: 60px;
}

.sec-plan .sec-header__sub {
  margin-bottom: 20px;
}
.sec-plan .sec-plan_plan {
  color: #fff !important;
}
.sec-plan .topTxt {
  border-bottom: none;
}

@media (max-width: 768px) {
  .entryArea.multipleButtons .entryArea__link {
    margin: 10px 0 !important;
  }
}
.blog--wrapper--body {
  padding: 0 30px;
}

@media (max-width: 768px) {
  .blog--wrapper--body {
    padding: 60px 0 0 0;
  }
  #news .articles-l {
    padding: 5rem 0 0;
  }
}
strong {
  font-weight: bold;
}

.sec-case__achievement {
  position: relative;
  z-index: 99;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}
.sec-case__achievement li {
  max-width: 40%;
  list-style-type: none;
  margin-bottom: 20px;
}
.sec-case__achievement li p {
  margin-top: 10px;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.inquire_bar {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  width: 100%;
}

.iqb_trial {
  display: inline-block !important;
  background: linear-gradient(135deg, #d4a574 0%, #e8c5a0 100%) !important;
  color: #ffffff !important;
  padding: 18px 40px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 1.1em !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  margin-bottom: 1rem !important;
  position: relative !important;
  overflow: hidden !important;
  min-width: auto !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.iqb_trial::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.iqb_trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
  opacity: 1;
}

.iqb_trial:hover::before {
  left: 100%;
}

.inquire_bar a.iqb_contact {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
  transition: all 0.3s ease;
}

.screen_shots {
  padding: 10px;
  text-align: center;
}
.screen_shots img {
  display: inline;
  height: 300px;
  max-width: 45%;
  padding: 10px;
}
.screen_shots.chatbox_colors {
  width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  align-items: flex-start;
}
.screen_shots.chatbox_colors img {
  height: auto;
  width: 120px;
}

@media (max-width: 768px) {
  .inquire_bar {
    flex-wrap: wrap;
  }
  .inquire_bar a.iqb_trial {
    margin-top: 20px;
    margin-left: 0;
  }
  .screen_shots img {
    display: block;
    max-width: 90%;
    height: auto;
    padding: 0;
    margin: 10px auto;
  }
  .screen_shots.chatbox_colors {
    width: 90%;
    margin: 5px auto;
  }
  .screen_shots.chatbox_colors img {
    height: auto;
    width: 100px;
  }
}
.btn-flat-dashed-filled {
  display: inline-block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: #67c5ff;
  border: dashed 1px #67c5ff;
  background: #f2fcff;
  border-radius: 3px;
  transition: 0.4s;
}

.btn-flat-dashed-filled:hover {
  background: #cbedff;
  color: #FFF;
}

.--marked {
  color: #7ae4ec;
}

.corp_link {
  margin: 10px auto 0;
  padding: 20px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.8);
}
.corp_link a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #525252;
}
.corp_link__logo img {
  width: 200px;
}
.corp_link__text::after {
  content: "\f08e";
  font-family: "FontAwesome";
  margin-left: 2px;
}

.entryArea__link.-ja .button__link {
  font-size: 1.6rem;
  letter-spacing: normal;
  font-weight: bold;
  min-height: 46px;
}
.entryArea__link.-ja .button__label {
  vertical-align: middle;
}

.justify-content-sa {
  justify-content: space-around;
}

.guide_images {
  align-items: center;
}
.guide_images img {
  border: 1px solid #DDD;
  max-height: 300px;
  margin: 10px;
}

.formValidateError {
  padding: 4px;
  background: #f00;
  border-radius: 2px;
  color: #FFF;
}

/* ISMS認証エリアのスタイル */
.l-content__isms {
  margin-top: 30px;
}

.l-content__isms-logo {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 15px;
}

.l-content__isms-desc {
  font-size: 0.9em;
  color: #333;
  text-align: center;
  line-height: 1.4;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* ファッションブランド風デザイン改善 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&family=Noto+Serif+JP:wght@300;400;500&display=swap');

/* プレミアムボタンスタイル */
.premium-button {
  background: linear-gradient(135deg, #d4a574 0%, #e8c5a0 100%);
  color: #ffffff !important;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: inline-block;
}

.premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

/* セクション間の余白改善 */
.content-section {
  padding: 4rem 0;
  margin: 2rem 0;
}

/* エレガントなカードスタイル */
.elegant-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.2);
  transition: all 0.3s ease;
}

.elegant-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ミニマルなタイポグラフィ */
.premium-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

.premium-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* アニメーション効果 */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* グラデーションアクセント */
.gradient-accent {
  background: linear-gradient(135deg, #d4a574 0%, #e8c5a0 50%, #f5e6d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* エレガントなヒーロータイトル */
.hero-title-main {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-title-secondary {
  font-family: 'Playfair Display', 'Noto Serif JP', serif;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-connector {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-style: italic;
}

/* ヒーローセクションのレスポンシブ対応 */
@media (max-width: 1024px) {
  .firstview {
    max-width: 100%;
    padding: 0 15px;
  }
  
  .firstview__right {
    margin-left: 1rem;
  }
}

@media (max-width: 768px) {
  .premium-button {
    padding: 1rem 2rem;
    font-size: 1.1em;
  }
  
  .content-section {
    padding: 2rem 0;
  }
  
  .elegant-card {
    padding: 1.5rem;
    margin: 1rem 0;
  }
  
  /* モバイル用ヒーロータイトル調整 */
  h1 span[style*="font-size: 2.6rem"] {
    font-size: 1.8rem !important;
  }
  
  h1 span[style*="font-size: 2.2rem"] {
    font-size: 1.6rem !important;
  }
  
  h1 span[style*="font-size: 1.1rem"] {
    font-size: 1rem !important;
  }
  
  /* ヒーローセクションのモバイル対応 */
  .firstview {
    flex-direction: column;
    min-height: auto;
    padding: 1rem;
  }
  
  .firstview__left, .firstview__right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  
  .firstview__left {
    order: 2;
    margin-top: 2rem;
  }
  
  .firstview__right {
    order: 1;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  
  .firstview__left::after {
    width: 100%;
    height: 300px;
    background-size: contain;
    background-position: center;
  }
}

@media (max-width: 480px) {
  .firstview {
    padding: 0.5rem;
  }
  
  .firstview__right {
    padding: 1rem;
  }
}

/* ドロップダウンメニュー - 業種別ソリューション */
.global_nav li.has-dropdown {
  position: relative;
}

.global_nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0;
  min-width: 220px;
  z-index: 1000;
  margin-top: 0;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}

.global_nav li.has-dropdown:hover .dropdown-menu {
  display: block;
}

.global_nav .dropdown-menu li {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.global_nav .dropdown-menu li a {
  display: block;
  padding: 8px 20px;
  color: #333;
  text-decoration: none;
  font-size: 1.6rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  text-align: left;
}

.global_nav .dropdown-menu li a:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
}

.global_nav .dropdown-menu li a:after {
  display: none;
}

/* モバイル対応 */
@media (max-width: 968px) {
  .global_nav .dropdown-menu {
    position: static;
    display: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.05);
  }

  .global_nav li.has-dropdown.open .dropdown-menu {
    display: block;
  }

  .global_nav .dropdown-menu li a {
    padding: 7px 20px 7px 40px;
    font-size: 1.6rem;
  }
}

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