@charset "UTF-8";

.container {
  width: 92.6%;
  margin: 0 auto;
}

.single-post .container,
.single-news .container,
.single-interview .container {
  max-width: 1040px;
}
.single-post header .container,
.single-news header .container,
.single-interview header .container {
  max-width: 1200px;
}
.contents .single-post .container,
.contents .single-news .container,
.contents .single-interview .container {
  max-width: 1040px;
  padding-bottom: 3%;
}

.sponly,
.site-contact-btn-sp {
  display: none !important;
}

.breadcrumb-list li:not(:last-child):after {
  content: '>';
  display: inline-block;
  margin: 0 5px;
  font-size: 10px;
}

@media (min-width: 960px) {
  .container {
    width: 92.5%;
    max-width: 1200px;
  }
}

.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* ヘッダー 中身*/
/* ヘッダー：サイト名 */
.site {
  display: flex;
  align-items: center;
}

.site .nav a {
  font-size: 14px;
  font-weight: 500;
  color: #323232;
}

.site .nav a:not([href]):hover {
  opacity: 1;
}

.header .site-name {
  margin-right: 40px;
}

.site-name {
  font-family: 'Century Gothic', sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #323232;
  width: 128px;
}

.site-right {
  display: flex;
  align-items: center;
}

.site-right .telno {
  font-size: 24px;
  color: #3e3e3e;
}

.site-right .telno i {
  margin-right: 8px;
}

.site-right .reception {
  font-size: 10px;
}

/* ナビゲーションボタン */
.nav-button {
  box-sizing: content-box;
  padding: 0;
  outline: none;
  border: none;
  background: none;
  width: 30px;
  color: black !important;
  height: 14px;
  cursor: pointer;
}

.nav-button::before,
.nav-button::after {
  content: '';
  display: block;
  height: 2px;
  background-color: currentColor;
  transform: translateY(5px);
  transition: 0.3s ease-in-out;
}

.nav-button::before {
  transform: translateY(-9px);
  box-shadow: 0 8px currentColor;
}

/* ナビゲーション　閉じるボタン */
.open .nav-button {
  z-index: 1000;
  color: #ffffff;
}

.open .nav-button::before {
  transform: translateY(1px) rotate(45deg);
  box-shadow: none;
}

.open .nav-button::after {
  transform: translateY(-1px) rotate(-45deg);
}

/* ナビゲーションメニュー　モバイル */
@media (max-width: 960px) {
  /* ex 959px */
  html.open,
  .open body {
    height: 100%;
    overflow: hidden;
  }

  .open .form {
    display: none;
  }

  .open nav {
    left: 0;
  }

  .header {
    position: relative;
  }

  .nav {
    position: absolute;
    top: 0;
    left: 160%;
    width: 100%;
    height: 100vh;
    background: white;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: left 0.5s;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .nav ul {
    list-style: none;
    font-weight: bold;
    text-align: center;
  }

  .nav li:not(:last-child) {
    margin-bottom: 40px;
  }

  .nav .btn {
    width: 148px;
    border-color: #cdd6dd;
  }

  .site-right {
    display: none;
  }

  .sponly,
  .site-contact-btn-sp {
    display: block !important;
  }

  .site-contact-btn-sp::before {
    content: '';
    display: block;
    width: 18.5px;
    height: 17.5px;
    background: url(/wp-content/uploads/2021/08/mailicon.png) no-repeat;
    background-size: contain;
  }

  .site > a:not(.site-contact-btn-sp) {
    position: relative;
    z-index: 999;
  }

  .site-contact-btn-sp {
    z-index: 1;
  }

  .open .site-contact-btn-sp {
    z-index: -1;
  }

  .site-contact-btn-sp {
    font-size: 15px;
    background: #000;
    color: white;
    font-weight: 700;
    padding: 5px 12px 5px 45px;
    position: absolute;
    right: 80px;
    text-align: right;
    border-radius: 50px;
  }

  .site-contact-btn-sp::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url(/wp-content/uploads/2021/08/mailicon.png) no-repeat;
    background-size: contain;
    margin: 0 10px 0 auto;
    position: absolute;
    left: 13px;
    top: 7.5px;
  }
}

/* ナビゲーションメニュー　PC */
@media (min-width: 961px) {
  .nav-button {
    display: none;
  }

  .nav > ul {
    display: flex;
    align-items: center;
    list-style: none;
    color: #333333;
    margin: 0 0 -15px;
  }
  .nav > ul > li {
    position: relative;
    padding: 0 0 15px;
  }
  .nav > ul a i {
    font-size: 90%;
    margin: 0 0 3px 3px;
  }
  .nav > ul ul {
    list-style: none;
    position: absolute;
    background: #fff;
    border-radius: 5px;
    left: 0;
    top: 38px;
    box-shadow: rgba(76, 76, 76, 0.5) 0 0 10px;
    z-index: 5;
    overflow: hidden;
    display: none;
  }
  .nav > ul > li:hover ul {
    display: block;
  }
  .nav > ul ul li a {
    white-space: nowrap;
    display: block;
    padding: 14px 17px;
  }
  .nav > ul ul li a:hover {
    opacity: 1;
    background: #f2f2f2;
  }
  .nav > ul > li:not(:last-child) {
    margin-right: 28px;
  }

  .nav .btn {
    width: 148px;
    border-color: #cdd6dd;
  }

  .menu-sr-only {
    display: none;
  }
}

/* ヒーロー */
.hero {
  padding-bottom: 36px;
  background-color: #f2f2f2;
  display: flex;
}

.hero .catch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}

.hero h1 {
  margin-top: 8%;
  font-size: 36px;
  font-weight: bold;
}

.hero h1 .font36 {
  font-size: 36px;
}

.hero .catch > div:first-child {
  flex: 0 0 60%;
  max-width: 60%;
}

.hero .catch > div:last-child {
  max-width: 35%;
  margin-left: 5%;
  margin-top: 16px;
}

.hero .catch > div:last-child figure.image img {
  width: 100%;
}

/* PC */
@media (min-width: 960px) {
  .hero h1 {
    align-items: center;
  }

  .hero h1 .font30 {
    font-size: 30px;
  }
}

.hero-price {
  display: flex;
  justify-content: flex-start;
  margin-top: 24px;
  align-items: center;
}

.hero-price p:not(:nth-child(2)) {
  text-align: center;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  background-color: white;
  font-weight: bold;
}

.red {
  color: #c10808;
}

.hero-price .red {
  font-family: 'Century Gothic', sans-serif;
  font-size: 24px;
  font-weight: bold;
  margin-right: 3px;
}

.hero-price .yen {
  font-size: 16px;
}

.hero-price .small {
  font-family: 'Century Gothic', sans-serif;
  font-size: 12px;
  font-weight: bold;
}

.hero-price p:nth-child(1) {
  padding: 16px 29px;
}

.hero-price p:nth-child(2) {
  padding: 20px 0;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
  font-weight: bold;
  font-size: 24px;
  color: #7d7c7c;
  margin: 0 8px;
}

.hero-price p:nth-child(3) {
  padding: 16px 35px;
}

.hero-contact {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-download-btn {
  background: white;
  padding: 17px 67px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-right: 11px;
}

.hero-contact-btn {
  color: #fff;
  background: #ff4800;
  padding: 17px 67px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 11px;
}

.hero .hero-text {
  margin-top: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

/* 特徴 */
.feature {
  margin: 100px 0 44px;
  text-align: center;
  font-size: 18px;
}

.feature .feature-text {
  text-align: center;
  margin: 65px auto 80px;
  color: #323232;
  line-height: 1.75;
}

.feature .details {
  justify-content: center;
  margin: 0 auto;
}

.feature-flex {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.feature-flex:nth-child(2) {
  flex-direction: row-reverse;
}

.feature-right {
  text-align: left;
  width: 500px;
}

.feature-right .title {
  font-size: 24px;
  font-weight: 500;
}

.feature-right .under {
  border-bottom: solid 4px #f1e443;
}

.feature-right .text {
  margin-top: 31px;
  color: #323232;
  line-height: 1.75;
}

/* 他社との違い */
.difference {
  text-align: center;
  background-color: #f2f2f2;
  padding: 91px 0px 115px;
}

.difference img {
  max-width: 88%;
  margin-top: 60px;
}

.difference .text {
  margin-top: 80px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.75;
}

/* 制作事例 */
.case {
  text-align: center;
  padding: 91px 0px 102px;
}

.case .details {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.case .details .detail > a > * {
  transition: 0.3s ease;
}

.case .details .detail > a:hover > * {
  opacity: 0.7;
  transition: 0.3s ease;
}

.case .detail p {
  overflow-wrap: anywhere;
  max-width: 321px;
  text-align: left;
  font-size: 14px;
}

.case h3 {
  text-align: left;
  font-size: 18px;
  padding: 14px 0 20px;
  font-weight: bold;
}

.case h3 .category {
  color: #565656;
  padding: 2.5px 12px;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #565656;
  margin-right: 10px;
}

.more-btn {
  color: black;
  padding: 18px 85px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  font-weight: bold;
  background-color: white;
}

.case .more-btn {
  margin-top: 110px;
}

.price .more-btn {
  margin-top: 55px;
}

.flow .more-btn {
  margin-top: 78px;
}

/* 料金 */
.price {
  background-image: url(/wp-content/themes/siteflow/images/price.jpg);
  background-position: center;
  background-size: cover;
  color: white;
  text-align: center;
  position: relative;
  padding: 85px 0px 72px;
}
.price::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}

.price > * {
  position: relative;
  z-index: 2;
}

section.price h2 + p {
  color: white;
  margin-top: 10px;
}

.price-flex {
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price .box {
  color: black;
  text-align: left;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  background-color: white;
  font-weight: bold;
  padding: 50px 40px;
}

.cost-en {
  font-weight: bold;
  color: #666666;
  margin-bottom: 10px;
  text-align: left;
}

.cost-jp {
  font-weight: bold;
  font-size: 30px;
}

.cost-jp + hr {
  margin: 20px 0 15px;
}

.notes {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
}

.font48 {
  font-size: 48px;
}

.font18 {
  font-size: 18px;
}

.font60 {
  font-size: 60px;
  font-weight: bold;
}

.point-flex {
  display: flex;
  flex-wrap: wrap;
}

.point-flex li {
  list-style: none;
  padding-left: 26px;
  background: url(/wp-content/themes/siteflow/images/checkicon.png) left 0px top
    3px no-repeat;
  font-weight: 200;
  margin-bottom: 5px;
}

.point-flex li:nth-child(odd) {
  width: 210px;
}

.point-flex li:nth-child(even) {
  width: 187px;
}

/* 制作の流れ */
.flow {
  text-align: center;
  background-color: #f2f2f2;
  padding: 80px 0px;
}

.flow-flex {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.flow-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 25px 1.5em 0;
  padding: 34px 10px 20px;
  min-width: 180px;
  max-width: 260px;
  height: 400px;
  font-size: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0px 2px;
}

.flow-right img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.flow-right:nth-child(1) img {
  margin-top: 5px;
}

.flow-right:nth-child(3) img {
  margin-top: -20px;
  position: relative;
  z-index: -1;
}

.flow-item-img {
  height: 190px;
}

.flow-right:not(:last-child):before {
  content: '';
  position: absolute;
  top: 45%;
  left: 100%;
  margin-top: -15px;
  border: 30px solid transparent;
  border-left: 30px solid white;
  filter: drop-shadow(0px 2px 0px rgba(0, 0, 0, 1));
}

.flow-right:last-child {
  margin: 1.5em 0px 1.5em 0;
}

.flow-right:nth-child(1) {
  z-index: 4;
}

.flow-right:nth-child(2) {
  z-index: 3;
}

.flow-right:nth-child(3) {
  z-index: 2;
}

.flow-right:nth-child(4) {
  z-index: 1;
}

.flow-right p {
  margin: 0;
  padding: 0;
}

.flow-right .flow-no {
  width: 78%;
  max-width: none;
  margin: 0 auto;
  font-size: 30px;
  font-weight: bold;
  color: #666666;
  text-align: left;
}

.flow-right h3 {
  width: 85%;
  max-width: none;
  margin: 30px auto 0;
  font-size: 18px;
}

.flow-right .detail-text {
  width: 85%;
  max-width: none;
  margin: 20px auto 0;
  line-height: 1.75;
}

/* 主要機能紹介 */
.functions {
  text-align: center;
  padding: 91px 0px;
}

.functions-flex {
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.functions-flex + .functions-flex {
  margin-top: 30px;
}

.functions-flex .detail {
  margin: 0px 27.5px 0px 27.5px;
}

.function-color {
  background-color: black;
  display: inline-block;
  width: 210px;
  height: 210px;
  border-radius: 210px;
  position: relative;
  margin-bottom: 20px;
}

.function-color img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.functions-btn {
  color: black;
  padding: 18px 69px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  font-weight: bold;
  background-color: white;
  margin-top: 70px;
}

/* お知らせ */
.news {
  text-align: center;
  background-color: #f2f2f2;
  padding: 80px 0px 70px;
}

.news-inner {
  width: 100%;
  margin: 30px auto 0px;
  max-width: 1100px;
}

ul.newsList {
  display: flex;
  flex-flow: row wrap;
  border-bottom: 1px dashed #91a0b5;
  padding: 30px 0;
}

ul.newsList li {
  display: block;
  margin: 0;
}

ul.newsList li:nth-child(1) {
  flex-basis: 85px;
  text-align: left;
  color: #323232;
}

ul.newsList li:nth-child(2) {
  color: black;
  font-size: 14px;
  padding: 4px 0px;
  text-align: center;
  background-color: white;
  border-radius: 30px;
  border: 1px solid black;
  margin: 0px 23px 0px 18px;
  width: 120px;
  position: relative;
  top: -2px;
}

ul.newsList li:nth-child(3) {
  flex-basis: auto;
  text-decoration: none;
  border-bottom: 1px solid #616161;
  padding-bottom: 1px;
  color: #323232;
}

.news-btn {
  color: black;
  padding: 18px 53.2px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  font-weight: bold;
  background-color: white;
  margin-top: 63px;
}

/* お問い合わせ */
.contact {
  text-align: center;
  padding: 60px 0px 42px;
  background-color: black;
  color: white;
}

.contact .text p {
  font-size: 24px;
  font-weight: bold;
}

.contact-flex {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-btn {
  color: #323232;
  background: white;
  padding: 13px 68px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid black;
  text-decoration: none;
  font-weight: bold;
  margin-right: 11px;
}

.contact-btn {
  color: white;
  background: #ff4800;
  padding: 13px 68px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 11px;
}

.contact-flex .cta-btn {
  background: #ffffff;
  padding: 17px 0;
  width: 200px;
  display: inline-block;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 11px;
}

.contact .tel {
  margin-top: 32px;
  font-size: 24px;
  font-weight: bold;
}

.contact .reception {
  margin-top: 30px;
  font-size: 14px;
}

.contact .mg10 {
  margin-right: 10px;
}

.page-id-31 iframe {
  /*height: 600px;*/
  margin-top: 3%;
}

/* フッター */
.footer {
  padding: 24px 0 10px;
}

.footer .site {
  align-items: baseline;
  justify-content: space-between;
}

.footer .navi {
  margin-left: 80px;
  width: 100%;
}

.footer .nav-flex {
  display: flex;
  list-style: none;
  justify-content: space-between;
}

.footer li {
  list-style: none;
  font-size: 14px;
  color: #323232;
}

.footer .nav-child {
  line-height: 1.75;
  margin-top: 4px;
}

.footer .nav-flex > li:not(:first-child) {
  margin-left: 25px;
}

.footer .nav-flex li a {
  font-weight: 500;
}

.footer .site-contact-btn {
  margin-top: -7px;
}

.footer .wrap {
  background-color: #f2f2f2;
  margin-top: 24px;
  padding: 10px 0;
}

.footer .wrap + p {
  text-align: center;
}

.footer .site2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .site2 p {
  color: #323232;
}

.footer .nav-flex2 {
  display: flex;
  list-style: none;
}

.footer .nav-flex2 > li:not(:first-child) {
  margin-left: 32px;
}

.footer .nav-flex2 li {
  list-style: none;
  font-size: 12px;
}

/* 機能ページ */
.func-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
}

.func-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.func-page-section {
  text-align: center;
  padding: 65px 0px 0;
}

.schedule-section {
  text-align: center;
  padding: 64px 0 134px;
}

.schedule-section h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
  margin: 0 auto 70px;
  max-width: 1110px;
}

.func-page-flex ul {
  width: 100%;
  max-width: 1110px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  margin: 0 auto;
}

.func-page-flex li {
  width: 31.4%;
  margin-bottom: 2rem;
  margin-right: 25px;
}

.func-page-flex li:nth-child(3n) {
  margin-right: 0px;
}

.func-page-flex a {
  display: block;
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.func-page-flex figure {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid #28235a;
  border-right: 1px solid #28235a;
  border-left: 1px solid #28235a;
  box-sizing: border-box;
}

.func-calendar {
  background-color: #fff799;
}

.func-typography {
  background-color: #8bd7f9;
}

.func-page-flex img {
  width: 100%;
  height: auto;
  /*  max-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: contain;
	*/
}

.func-page-flex .box {
  padding: 1rem 20px 24px;
  word-break: break-all;
  text-align: left;
  background-color: #f2f2f2;
  border: 1px solid #28235a;
  min-height: 135px;
}

.func-page-flex .box h3 {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}

/* 料金ページ */
.price-section {
  text-align: center;
  position: relative;
  padding: 51px 0px 60px;
}

.shin-go-h2 {
  font-size: 32px;
  font-weight: 500;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.page-id-31 .shin-go-h2,
.page-id-28 .shin-go-h2,
.whitepaper .shin-go-h2 {
  text-align: center;
  padding-top: 50px;
}

.category-blog .shin-go-h2 {
  display: none;
}

/*
.page-id-28 iframe{
	height: 650px;
}*/

.page-id-28 footer,
.page-id-31 footer {
  display: none;
}

.price-flex {
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-section .box {
  color: black;
  text-align: left;
  border-radius: 10px;
  border: 1px solid #aaaaaa;
  background-color: white;
  font-weight: bold;
  padding: 50px 40px;
}

.price-section .font60 {
  font-size: 60px;
  font-weight: bold;
  color: #aaaaaa;
}

.flow-section {
  text-align: center;
  padding: 79px 0px;
  background-color: #f2f2f2;
}

.flow-section .box:first-of-type {
  margin-top: 53px;
}

.flow-section .box {
  width: 950px;
  height: auto;
  margin: 26px auto 0;
  background-color: white;
  padding: 34px 36px 24px;
  position: relative;
}

.flow-section .box:not(:last-child):before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid white;
}

.flow-section .box .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-flow-title {
  font-size: 18px;
  font-weight: bold;
  text-align: left;
}

.price-flow-txt {
  text-align: left;
}

.price-flow-block {
  width: 558px;
  height: fit-content;
  margin: 21px auto 0;
  background-color: #f2f2f2;
  padding: 20px 26px 22px;
}

.price-flow-block p {
  text-align: left;
  padding-left: 23px;
  padding-top: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: #313131;
  padding: 5px 0px;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  width: 150px;
}

.price-flow-block ul {
  margin-top: 20px;
  text-align: left;
}

.price-flow-block ul li {
  font-size: 14px;
  list-style: none;
  line-height: 1.75;
  margin-bottom: 5px;
}

.question-section {
  text-align: center;
  padding: 79px 0px 100px;
}

.question-section .box {
  width: 85.5%;
  margin: 26px auto 0;
  background-color: white;
}

.question-block {
  margin: 21px auto 0;
  background-color: #f2f2f2;
  text-align: left;
  padding: 22px 33px;
}

.question-block p:first-child {
  font-weight: bold;
  margin-bottom: 20px;
}

/* 制作事例ページ */
.case-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
}

.case-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.case-page-section {
  text-align: center;
  padding: 65px 0px 0;
}

.case-page-flex ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.case-page-flex li {
  width: 320px;
  margin: 0 34px;
  margin-bottom: 60px;
}

.case-page-flex figure {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 235px;
}

.case-page-flex figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.case-page-flex h3 {
  text-align: left;
  font-size: 16px;
  padding: 14px 0 20px;
  font-weight: bold;
}

.case-page-flex h3 .category {
  color: #4b4b4b;
  padding: 2.5px 12px;
  display: inline-block;
  border-radius: 20px;
  border: 1px solid #565656;
  margin-right: 10px;
  font-size: 14px;
}

.case-page-flex .box p {
  overflow-wrap: anywhere;
  max-width: 321px;
  text-align: left;
  font-size: 14px;
}

.case-page-section .paging-area {
  margin: 12px 0 120px 0;
}

/* サイドバー */
.menu {
  list-style: none;
}

.sidebar-img {
  width: 100%;
}

.side-container {
  position: sticky;
  top: 80px;
}

.side-container .menu > li:not(:first-child) {
  margin-top: 25px;
}

.side-container .wp-caption-text {
  display: none;
}

/*タグクラウドのデザイン*/
.widget_categories h2:before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/wp-content/themes/siteflow/images/search.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
}

.widget_categories ul {
  padding: 20px 20px;
  background-color: #f8f8f8;
}

.widget_categories ul li {
  list-style: none;
  display: inline-block;
}

.widget_categories ul a {
  background: white;
  color: #666666;
  padding: 5px 15px;
  margin: 3px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 12px !important;
  border: 1px solid #535353;
  display: inline-block;
}

/*タグクラウドマウスオーバー時*/
.widget_categories ul a:hover {
  color: #333;
  background: #ddd;
}

.single-post .widget_categories {
  display: none;
}

/*--------------------------------------
  WP Popular Posts ここから
--------------------------------------*/
.widgettitle {
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  background-color: black;
  color: white;
  padding: 8px 20px;
}

.wpp-cards-compact {
  padding: 20px 20px;
  background-color: #f8f8f8;
}
.wpp-cards-compact li {
  display: flex;
  align-items: flex-start;
  list-style: none;
}
.wpp-cards-compact li:not(:last-child) {
  margin: 0 0 1.2em 0;
  padding: 0 0 1em 0;
}
.wpp-list li {
  font-size: 14px;
  font-weight: normal;
}
.wpp-cards-compact li .wpp-thumbnail {
  overflow: hidden;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 1em;
  font-size: 0.8em;
  line-height: 1;
  background: #f0f0f0;
  border: none;
  width: 100px;
}
.wpp-cards-compact li .wpp-post-title {
  margin-bottom: 0.5em;
  line-height: 1.71;
}
.wpp-cards-compact li a.wpp-post-title {
  text-decoration: underline;
}
.wpp-list li a {
  color: rgb(0, 0, 0);
}
.popular-posts h2:before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(/wp-content/uploads/recommendicon_2.png) no-repeat;
  background-size: contain;
  margin-right: 10px;
  top: 3px;
  position: relative;
}

#wpp-3 h2:before {
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  width: 1em;
  height: 1em;
  background-size: contain;
  margin-right: 10px;
}

/*--------------------------------------
  WP Popular Posts ここまで
--------------------------------------*/

/* 投稿一覧ページ */
.info-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
  margin-bottom: 33px;
}

.info-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.info-section {
  display: flex;
}

.info-eye-catch > a {
  min-height: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-eye-catch img {
  width: 280px;
  height: auto;
}

.info-main-content h2 {
  font-size: 18px;
  font-weight: bold;
}

.info-item-hr {
  margin: 30px 0 40px 0;
  border: 1px dashed #666666;
}

.info-eye-catch {
  margin-right: 30px;
}

.info-main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-main-content .post-date {
  margin-bottom: 20px;
}

.info-main-content .tags {
  background: white;
  color: #666666;
  padding: 5px 15px;
  margin-right: 3px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 12px !important;
  border: 1px solid #535353;
  display: inline-block;
  position: relative;
  top: -4px;
}

/* 記事ページ */
.single-post .contents,
.single-interview .contents,
.single-news .contents {
  padding-top: 35px;
  min-height: 520px;
  padding-bottom: 40px;
}

.contents {
  margin: 5px 0px;
}

.contents h1 {
  font-size: 20px;
  font-weight: bold;
}

.archive .main {
  justify-content: center;
}

.main-area {
  flex: 1;
  margin-right: 50px;
  max-width: 680px;
}

.main-area table {
  display: block;
  overflow-x: scroll;
  height: 100% !important;
  border-width: 0px !important;
}

.sidebar-area {
  width: 310px;
  /* margin-bottom: 80px;	*/
}

.post-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 28px;
}

.single-news .post-info {
  margin: 15px 0 12px;
}

div#ez-toc-container {
  background: #f2f2f2;
  border: 0;
  padding: 4% 7% 3.5%;
  margin: 25px auto 30px;
  box-sizing: border-box;
}

div#ez-toc-container p.ez-toc-title {
  text-align: left;
  font-size: 16px;
  margin-bottom: 30px;
  display: block;
}

div#ez-toc-container li {
}

div#ez-toc-container li.ez-toc-heading-level-3 {
  margin-bottom: 0px !important;
}

div#ez-toc-container ul.ez-toc-list-level-3 {
  margin-bottom: 8px;
  border-top: 1px solid #dfdfdf !important;
  padding-top: 13px;
  margin-left: 0;
  padding-left: 1.5em;
}

div#ez-toc-container a {
  font-size: 16px;
  color: black;
  margin-bottom: 5px;
  display: block;
}

div#ez-toc-container .ez-toc-heading-level-2 {
  border-bottom: 1px solid;
  padding-top: 10px;
}

div#ez-toc-container .ez-toc-heading-level-2:first-of-type {
  border-top: 1px solid;
}

div#ez-toc-container .ez-toc-heading-level-2 > a {
  font-weight: bold;
  padding-bottom: 5px;
}

div#ez-toc-container .ez-toc-heading-level-3 > a {
  font-size: 14px;
}

.author-info {
  display: flex;
  align-items: center;
}

.author-info-img {
  background-color: black;
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
}

.author-info-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.author {
  margin-left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.post-date {
  font-size: 14px;
  font-weight: 500;
}

.eye-catch img {
  width: 100%;
  height: auto;
}

.main-content {
  margin-top: 40px;
}

.main-content h2 {
  font-size: 20px;
  margin: 24px 0 40px;
  background: #f2f2f2;
  padding: 10px 20px;
  border-radius: 6px;
}

.main-content h3,
.terms-content h3 {
  margin: 18px 0 30px;
  border-left: 5px solid #c4c4c4;
  padding: 3px 13px;
  line-height: 1.75;
  font-size: 18px;
  font-weight: bold;
}

.main-content h4,
.terms-content h4 {
  font-size: 16px;
  margin: 16px 0 12.5px;
  font-weight: bold;
}

.main-content p,
.terms-content p {
  line-height: 1.75;
  margin-bottom: 40px;
}

.main-content ul {
  margin: 2em 0 2em 2em;
}

.main-content ul li {
  margin-bottom: 5px;
}

.main-content blockquote {
  background: #f2f2f2;
  width: 100%;
  margin: 20px 0;
  padding: 5% 10%;
  position: relative;
  box-sizing: border-box;
  border-left: 5px solid #c4c4c4;
}

.main-content blockquote::before {
  content: '\f10d';
  position: absolute;
  top: 20px;
  left: 20px;
  display: block;
  color: white;
  font-family: 'Font Awesome 5 Free';
  font-size: 25px;
  z-index: 10;
  font-weight: 900;
}

.main-content cite {
  font-size: 0.9em;
  margin-top: 10px;
  text-align: right;
  display: block;
  color: #9a9a9a;
}

.main-content a {
  text-decoration: underline;
  color: #6664c2;
}

.main-content .ctabox {
  border: 2px solid #c4c4c4;
  padding: 8% 5% 0% 5%;
  position: relative;
  margin: 10% auto;
  width: 100%;
  box-sizing: border-box;
}

.main-content .ctabox a {
  color: #fff;
  background: #ff4800;
  border-radius: 9999px;
  box-shadow: none;
  display: inline-block;
  font-size: 1.125em;
  padding: calc(0.667em + 2px) calc(1.333em + 2px);
  text-align: center;
  text-decoration: none;
  overflow-wrap: break-word;
  box-sizing: border-box;
  margin: 0 auto 1.5rem;
  display: table;
  transition: 0.3s ease;
}

.main-content .ctabox .cta_heading {
  background: #c4c4c6;
  font-size: 20px !important;
  margin: -100px 0 20px;
  width: 90%;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
}

.main-content .ctabox p {
  margin-bottom: 20px;
}

.main-content .ctabox ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.author-box {
  width: 100%;
  background-color: #f2f2f2;
  margin: 50px auto 0px;
  padding: 35px 30px 40px;
  box-sizing: border-box;
}

.author-member {
  text-align: center;
  margin-bottom: 32px;
}

.author-box-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.author-box-img {
  display: inline-block;
  max-width: 150px;
  height: auto;
  position: relative;
  margin-right: 22px;
}

.author-name-box {
  width: calc(100% - 172px);
  padding-top: 10px;
}

.author-box-img img {
  width: 100%;
  height: auto;
}

.author-name {
  font-weight: bold;
  margin-bottom: 25px;
}

.author-desc {
  font-size: 14px;
  text-align: left;
  line-height: 1.75;
}

.breadcrumb {
  background-color: #f2f2f2;
  margin-top: 80px;
}

.breadcrumb-list {
  display: flex;
  justify-content: flex-start;
  padding: 8px 0px;
}

.breadcrumb-list li {
  list-style: none;
  font-size: 12px;
}

.breadcrumb-list li a {
  font-size: 12px;
}

.breadcrumb-list a:not(:first-child) {
  margin: 0 10px;
}

.wp-block-table table,
.wp-block-table tr,
.wp-block-table th,
.wp-block-table td {
  border: 1px solid;
}

.wp-block-table th {
  background: #f2f2f2;
}

figure.wp-block-table {
  margin-bottom: 40px;
}

.wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
table th,
table td {
  border: 2px solid #eee;
  padding: 4px 8px;
}

/* 関連記事　記事ページ */
.related_bottom {
  margin-top: 40px;
  border: 1px solid #c5c5c5;
  padding: 24px;
}

h4.related_bottom_title {
  text-align: center;
  margin: 16px 0 40px;
  font-size: 20px;
}

ul.related_bottom_lists {
  list-style: none;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

ul li.related_bottom_list {
  width: calc(50% - 2.5px);
  margin-right: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10px;
}

ul li.related_bottom_list:nth-child(even) {
  margin-right: 0;
}

.related_bottom_list a:first-child {
  width: 120px;
  margin-right: 10px;
}

.related_bottom_list a:last-child {
  font-size: 14px;
  width: calc(100% - 133px);
  color: black;
  text-decoration: none;
}

.related_bottom_list img {
  width: 120px;
  height: auto;
}

/* ページTOPへ遷移 */
#page_top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 1;
  margin-right: 3.7%;
  z-index: 2;
}
#page_top a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* お知らせ一覧ページ */
.news-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
}

.news-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.page-news {
  margin: 90px auto 110px;
  width: 81%;
}

.tax-news_cat .shin-go-h2,
.category .shin-go-h2 {
  margin-bottom: 40px;
}

.news-item-date {
  font-size: 14px;
}

.news-item-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 45px;
}

.news-item-content {
  font-size: 16px;
  color: black;
  font-weight: normal;
  margin-top: 15px;
}

.news-item-hr {
  margin: 40px 0 40px 0;
  border: 1px solid #a0a0a0;
}

.paging-area {
  text-align: center;
}

.paging-area .page-numbers {
  display: inline-block;
  margin-right: 10px;
  padding: 13px 15.5px;
  color: black;
  border-radius: 3px;
  background: #eeeeee;
}
.paging-area .current {
  padding: 13px 15.5px;
  background: #535353;
  color: white;
}

.paging-area .dots {
  background: transparent;
  box-shadow: none;
}

/* お知らせ詳細ページ */
.single-news .post-info {
  justify-content: unset;
}

.single-news .post-date::after {
  content: '-';
  margin: 0 10px;
  display: inline-block;
}

.news-cat {
  font-size: 14px;
}

.news-cat:hover {
  text-decoration: underline;
}

/* よくある質問ページ */
.faq-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
}

.faq-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.faq-section {
  text-align: center;
  padding: 72px 0px 165px;
}

.faq-section .box {
  width: 85.5%;
  margin: 0 auto;
  background-color: white;
}

.faq-block {
  margin: 21px auto 0;
  background-color: #f2f2f2;
  text-align: left;
  padding: 22px 33px;
}

.faq-block:first-child {
  margin: 0px auto 0;
}

.faq-block p:first-child {
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-block p:last-child {
  text-indent: -1.2rem;
  padding-left: 1.3rem;
}

/* 資料請求 */
.download_h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  margin-top: 70px;
}

.material_img {
  width: 90%;
}

.download_list {
  margin: 20px auto;
  padding-left: 25px;
}

.download_p {
  font-size: 14px;
  margin-bottom: 20px;
}

/* 利用規約 */
.terms-hero {
  text-align: center;
  position: relative;
  padding: 35px 0px 65px;
}

.terms-hero .shin-go-h2 {
  font-size: 24px;
  font-weight: 500;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.terms-hero h2 + p {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
}

.terms-section {
  text-align: center;
  position: relative;
  padding: 0px 0px 225px;
}

.terms-content {
  text-align: left;
  width: 80%;
  margin: 0 auto;
  color: #323232;
}

.page-id-28 .wp-block-columns {
  padding: 0 5%;
}

.slugs {
  display: none;
}

.page-id-28 header nav,
.page-id-28 header .site-right,
.page-id-31 header nav,
.page-id-31 header .site-right {
  display: none;
}

.lkc-internal-wrap {
  border: 1px solid #f2f2f2;
  border-radius: 10px;
}

.lkc-content {
  display: table;
  width: 100%;
  height: auto !important;
}
.lkc-title {
  display: table-cell;
  padding: 0 10px 0 20px;
  height: 100%;
  vertical-align: middle;
}
.lkc-excerpt {
  display: none;
}
.lkc-title-text {
  color: #404040 !important;
}
.lkc-content figure {
  display: table-cell;
  vertical-align: middle;
  margin: 0px;
}
.lkc-content figure img {
  display: block;
  width: 90px;
  height: auto;
  border-radius: 5px;
}

/* ホワイトペーパーページ */
.materials-page-hero {
  text-align: center;
  padding: 24px 0 30px;
  background-color: black;
  color: white;
}

.materials-page-hero-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  font-family: /* "Shin Go", */ 'Noto Sans JP', sans-serif;
}

.materials-page-section {
  text-align: center;
  padding: 65px 0px 0;
}

.materials-page-flex ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.materials-page-flex li {
  width: 325px;
  margin: 0 34px;
  padding-bottom: 60px;
  position: relative;
  margin-bottom: 60px;
}

.materials-page-flex figure {
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
}

.materials-page-flex figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.materials-page-flex h3 {
  text-align: left;
  font-size: 18px;
  padding: 14px 0 20px;
  font-weight: bold;
}
.materials-page-flex li a.dl-btn {
  border: 1px solid #000;
  border-radius: 30px;
  font-size: 16px;
  text-align: center;
  padding: 9px 53px 10px;
  width: 178px;
  margin: 15px auto 0;
  font-weight: bold;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  position: absolute;
  bottom: 0;
}

.materials-page-flex .box p {
  overflow-wrap: anywhere;
  max-width: 321px;
  text-align: left;
  font-size: 14px;
}

.materials-page-section .paging-area {
  margin: 12px 0 120px 0;
}

/*1116*/

.new-hero.hero h1 {
  margin-top: 8%;
  font-size: 36px;
  font-weight: bold;
}
.new-hero.hero .hero-price-2021 {
  font-size: 24px;
  font-weight: bold;
  border-bottom: 10px solid #f1e443;
  width: 350px;
  letter-spacing: 0.1em;
}
.new-hero.hero .hero-price-2021 span {
  font-size: 60px;
  color: #c10808;
}

.new-price .price-list {
  color: #000;
  max-width: 1109px;
  margin: 45px auto 0;
}
.new-price .price-list li {
  border: 0px;
}

.new-hero .hero-contact-btn {
  width: 200px;
  box-sizing: border-box;
  padding: 17px;
  text-align: center;
}
.hero-contact2 {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
}
.hero-contact2 a {
  text-decoration: underline;
  font-weight: bold;
}
.price-page .container {
  max-width: 1109px;
}
.price-page {
  padding-top: 30px;
  padding-bottom: 30px;
}
.pricelist-section {
  text-align: center;
}
.price-list {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 35px;
}

.price-list li {
  width: 350px;
  position: relative;
  border: 1px solid #c9c9c9;
  border-radius: 5px 5px 5px 5px;
  background: #f8f8f8;
}
.price-list li .price-box {
  background: #fff;
  padding: 10px 0;
}
.price-list li.basic {
  border: 1px solid #be0f0f;
}

.price-list li h2 {
  font-size: 18px;
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 3px 3px 0 0;
  padding: 10px 0 5px;
}
.price-list li.basic h2 {
  background: #be0f0f;
}
.price-list li .popular {
  border: 1px solid #be0f0f;
  width: 100px;
  background: #fff;
  color: #be0f0f;
  text-align: center;
  padding: 2px;
  font-size: 14px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.price-list li .price-inner {
  border-top: 0px;
  border-radius: 0px 0px 5px 5px;
}
.price-list li .price-inner p {
  font-size: 12px;
}
.price-list li .price-inner p.price-text {
  font-weight: bold;
}
.price-list li.basic .price-inner p.price-text {
  margin-top: 0px;
}
.price-list li .price-inner p.price-text span {
  font-size: 36px;
  margin: 0 5px;
}

.price-list li .price-inner ul {
  list-style: none;
  font-size: 14px;
  text-align: left;
  border-radius: 0px 0px 5px 5px;
  padding: 15px 50px 20px;
}
.price-list li.basic .price-inner ul {
  background: #fff6f6;
}

.price-list li .price-inner ul li {
  border: 0px;
  background-color: transparent;
  border-bottom: 1px dashed #c9c9c9;
  padding: 5px 0;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.price-list li.basic .price-inner ul li:nth-child(1),
.price-list li.premium .price-inner ul li:nth-child(1) {
  font-weight: bold;
}
.price-list li .price-inner ul li:last-child {
  border: 0px;
}

.price-list li .price-inner ul li:before {
  content: '';
  background: url(./images/icon-list.png) 0 0 no-repeat;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  vertical-align: middle;
}
.price-list li.basic .price-inner ul li:nth-child(2):before {
  background: url(./images/icon-domain.png) 0 0 no-repeat;
}
.price-list li.basic .price-inner ul li:nth-child(3):before {
  background: url(./images/icon-camera.png) 0 0 no-repeat;
}
.price-list li.basic .price-inner ul li:nth-child(4):before {
  background: url(./images/icon-phone.png) 0 0 no-repeat;
}
.price-list li.basic .price-inner ul li:nth-child(5):before {
  background: url(./images/icon-analytics.png) 0 0 no-repeat;
}

.price-list li.premium .price-inner ul li:nth-child(2):before {
  background: url(./images/icon-support.png) 0 0 no-repeat;
}
.price-list li.premium .price-inner ul li:nth-child(3):before {
  background: url(./images/icon-contents.png) 0 0 no-repeat;
}
.price-list li.premium .price-inner ul li:nth-child(4):before {
  background: url(./images/icon-refresh.png) 0 0 no-repeat;
}

.price-list li.entry .price-inner ul li:nth-child(1):before {
  background: url(./images/icon-smart.png) 0 0 no-repeat;
}
.price-list li.entry .price-inner ul li:nth-child(2):before {
  background: url(./images/icon-form.png) 0 0 no-repeat;
}
.price-list li.entry .price-inner ul li:nth-child(3):before {
  background: url(./images/icon-ssl.png) 0 0 no-repeat;
}
.price-list li.entry .price-inner ul li:nth-child(4):before {
  background: url(./images/icon-cms.png) 0 0 no-repeat;
}

.start-price {
  font-size: 40px;
}
body:not(.single) h2 + p.start-text {
  font-size: 18px;
  font-weight: normal;
  color: #000;
  line-height: 1.66;
  margin-bottom: 45px;
}

.function-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  border: 1px solid #000;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 100px 15px 30px;
}

.caution {
  text-align: right;
  font-size: 14px;
  margin-top: 10px;
}

.comparison-section {
  padding: 60px 0 65px;
  background: #f2f2f2;
}
.comparison-section h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 55px;
}
.comparisonTab {
  padding-left: 31.5%;
}
.comparisonTab ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
}
.comparisonTab ul li {
  width: 33%;
  background: #fff;
  position: relative;
  border-radius: 5px 5px 0 0;
}
.comparisonTab ul li.comparison-basic {
  background: #fff6f6;
}
.comparisonTab li .popular {
  border: 1px solid #1d1752;
  width: 80px;
  box-sizing: border-box;
  background: #fff;
  color: #1d1752;
  text-align: center;
  padding: 2px 0px;
  font-size: 12px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.slick-disabled {
  display: none !important;
}

.comparisonTab ul li h3 {
  background: #000;
  color: #fff;
  text-align: center;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 10px;
}
.comparisonTab ul li.comparison-basic h3 {
  background: #363167;
}

.comparisonTab ul li p {
  font-size: 14px;
  text-align: center;
}
.comparisonTab ul li p.comparison-price {
  margin-bottom: 10px;
  font-weight: bold;
}
.comparisonTab ul li p.comparison-price span {
  font-size: 34px;
  margin: 0 5px;
}

.comparison-table {
  width: 100%;
  border: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}
.comparison-table th {
  border: 0px;
  padding: 5px 0 5px 35px;
  font-weight: normal;
  font-size: 14px;
  box-sizing: border-box;
  width: 31.5%;
  text-align: left;
  vertical-align: middle;
  background: #ececec;
}
.comparison-table td {
  border: 0px;
  padding: 5px 0 5px 0px;
  box-sizing: border-box;
  width: 22.5%;
  vertical-align: middle;
  text-align: left;
  text-align: center;
  background: #ececec;
}
.comparison-table td img {
  vertical-align: middle;
}

.comparison-table td.basic {
  background: #f2d5d5;
  width: 22.9%;
}
.comparison-table tr:nth-child(2n) th,
.comparison-table tr:nth-child(2n) td {
  background: #fff;
}
.comparison-table tr:nth-child(2n) td.basic {
  background: #fff6f6;
}

.reason-section {
  padding: 70px 0 0px;
}
.reason-section h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}
body:not(.single) h2 + p.reason-text {
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}
.reason-text2 {
  margin-bottom: 35px !important;
}

.reason-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 40px;
}
.reason-list li {
  width: 350px;
  background: #f8f8f8;
  position: relative;
  padding: 45px 17px 30px;
  box-sizing: border-box;
}
.reason-list li h3 {
  padding-left: 70px;
  font-size: 18px;
  margin-bottom: 20px;
}
.reason-list li .point {
  background: #000;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  padding: 20px 0;
  box-sizing: border-box;
  position: absolute;
  top: 30px;
  left: 17px;
}
.reason-list li img {
  margin-bottom: 20px;
}
.reason-list li p {
  font-size: 14px;
  line-height: 1.75;
}

section.hero > div > div:nth-of-type(4) {
  font-weight: bold;
  text-decoration: underline;
  margin: 0px 0px 0px;
  padding: 4px;
}

section.hero > div > div:nth-of-type(3) {
  margin: 10px 0px 0px;
}

#request-question > p {
  margin: 10px 0px;
}
@media (max-width: 480px) {
  #request-question {
    margin-bottom: -10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 960px) {
  .hero-price-2021 {
    display: block;
    margin: 0 auto;
  }
}

.contact.inquiry-btn-wrapper {
  padding: 42px 0;
}

.contact.inquiry-btn-wrapper .text p {
  font-size: 16px;
}

.contact.inquiry-btn-wrapper .contact-flex {
  margin-top: 20px;
}

.contact.inquiry-btn-wrapper .contact-flex a {
  background: #ffffff;
  padding: 17px;
  display: inline-block;
  border-radius: 30px;
  width: 200px;
  margin: 0 11px;
  box-sizing: border-box;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact.inquiry-btn-wrapper .container .text p {
    font-size: 12px;
  }
  .contact .contact-flex a {
    width: 150px;
    padding: 2.5% 10px;
    font-size: 12px;
  }
}
