@charset "EUC-JP";

html {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
}
a {
  text-decoration: none;
}
a:visited {
  color: black;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
/*fadein start*/
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 500ms;
}
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
.effect2 > .fadein:nth-of-type(2) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.effect2 > .fadein:nth-of-type(3) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.effect2 > .fadein:nth-of-type(4) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.effect2 > .fadein:nth-of-type(5) {
  -moz-transition-delay: 800ms;
  -webkit-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
}
/*fadein end*/

.header {
  background: #fff;
  box-shadow: #b5b4da 0px 1px 5px;
  position: fixed;
  top: 40px;
  margin: 1vw 0 0 3vw;
  background-attachment: fixed;
  z-index: 999;
  border-radius: 50px;
}
.hamburger-menu {
  display: none;
}
.navigation,
.navigation-link,
.navigation ul {
  display: flex;
  align-items: center;
}
.navigation {
  justify-content: space-around;
  font-weight: bold;
  padding: 1vw 2vw;
}
.navigation ul li {
  margin-left: 2.75rem;
  font-size: 1vw;
}
.navigation ul li:last-child {
  margin: 0 2.75rem;
}
.navigation ul li a {
  position: relative;
  display: block;
  color: #000;
}
.navigation ul li a:hover {
  color: #5856BA;
}
/*
.navigation ul li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.navigation ul li:first-child a::after {
  content: none;
}
.navigation ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -10px;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  background-color: #5856BA;
}
*/

/*pc dropdown start*/
.menu-list {
  justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item {
  position: relative;
}
/* メニューアイテムのホバースタイル */
.menu-item:hover .dropmenu {
  display: block;
  opacity: 1;
  transition: opacity .3s, visibility .3s;
  visibility: visible;
}
.drop-open:hover {
  color: #000!important;
}
.drop-open {
  display: flex!important;
  justify-content: space-between;
  align-items: center;
}
.drop-open::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid #000;
  border-right: 3px solid #000;
  content: '';
}

.drop-menu-item {
  margin: 0!important;
  font-size: 0.9vw!important;
}
.menu-item a {
  align-items: center;
  justify-content: center;
}
.drop-menu-list a {
  padding: 20px 50px;
  text-align: center;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.dropmenu {
  position: absolute;
  left: calc(-100% - -60px);
  transition: opacity .3s, visibility .3s;
  visibility: hidden;
  width: max-content;
  pointer-events: all;
  opacity: 0;
  z-index: 1;
  padding-top: 32px;
}
.drop-menu-list {
  display: block!important;
  background-color: #fff; /* ドロップダウンメニューの背景色 */
  box-shadow: #b5b4da 0px 1px 5px;
  border-radius: 5px;
}
@media screen and (max-width: 900px) {
  /*sp nav start*/
  .accordion-003 summary {
    display: flex;
    align-items: center;
    position: relative;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0!important;
    padding: 1rem;
  }

  .accordion-003 summary::-webkit-details-marker {
    display: none;
  }

  .accordion-003 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #000;
    border-right: 3px solid #000;
    content: '';
    transition: transform .3s;
    position: static;
  }

  .accordion-003[open] summary::after {
    transform: rotate(225deg);
  }

  .accordion-003 li {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
  }

  .accordion-003[open] li {
    transform: none;
    opacity: 1;
    padding-bottom: 0;
    width: 70%;
  }

  .br-none {
    border-bottom: none!important;
  }

  .accordion-003 li a {
    padding: 30px 0!important;
  }
}


.contact-icon {
  background-color: #5856BA;
  background-image: url("../images/mail.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 88px;
  height: 100px;
}
.contact-icon:hover {
  opacity: .7;
}
.fv-top {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: url(../images/fv-back.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 0 30px 0;
}
.fv-contents {
  display: flex;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
}
.fv-text {
  z-index: 99;
  margin: 0 0 0 5vw;
  padding: 50px;
}
.fv-text h1,
.fv-text p {
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  line-height: 2rem!important;
}
.fv-text p span {
  font-size: 2rem;
}
.loop-wrap {
  display: flex;
  transform: rotate(24deg);
  width: 55vw;
}
.loop-wrap-up img {
  width: auto;
  height: 100%;
}
@keyframes loop {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200%);
  }
}
.loop-wrap-up img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loop-wrap-up img:last-child {
  animation: loop2 50s linear infinite;
}
.loop-wrap-down img {
  width: auto;
  height: 100%;
}
@keyframes loop_D {
  0% {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(100%);
  }
}
@keyframes loop_D2 {
  0% {
    transform: translateY(-200%);
  }
  to {
    transform: translateY(0);
  }
}
.loop-wrap-down img:first-child {
  animation: loop_D 50s -25s linear infinite;
}
.loop-wrap-down img:last-child {
  animation: loop_D2 50s linear infinite;
}

.decoration {
  position: relative;
  width: 270px;
  margin: 0 auto;
}
.decoration::before,
.decoration::after {
  position: absolute;
  top: 0.8rem;
  height: 1.8rem;
  content: '';
}
.decoration::before {
  border-left: solid 3px;
  left: 0;
  transform: rotate(-30deg);
}
.decoration::after {
  border-right: solid 3px;
  right: 0;
  transform: rotate(30deg);
} 
.fv-text img {
  margin: 1rem 0 2rem;
  width: 100%;
}
.cta-btn a {
  background: #000;
  border: 3px solid #000;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  width: 364px;
  display: block;
  text-align: center;
  padding: 1rem 0;
  margin: 1rem auto 0;
  border-radius: 50px;
}
.cta-btn a:hover {
  background: #fff;
  color: #000;
  transition: .2s;
}
.cta-btn a svg {
  stroke: #fff;
  vertical-align: bottom;
}
.cta-btn a:hover svg {
  stroke: #000;
  stroke-width: 1.5px;
  transition: .2s;
}
.news-wrap {
  width: 490px;
  position: absolute;
  bottom: 0;
}
.news-datail {
  width: 100%;
  font-weight: bold;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1.5rem 2.5rem;
  z-index: 99;
  position: relative;
}
.topics {
  font-size: 1.25rem;
  margin-right: 1rem;
}
.date:before {
  margin: 0 1rem;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #000;
  position: absolute;
  right: 100%;
}
.date {
  position: relative;
  margin-left: 1rem;
}
.date span {
  color: #A7A7A7;
  display: block;
}
.date a {
  display: inline-block;
  text-decoration: underline;
}
.date a:hover {
  opacity: .7;
  text-decoration: none;
}
.news-slider button {
  display: none!important;
}
section {
  padding: 80px 0;
}
.service-page,
.case-page,
.option-page {
  padding-top: 140px;
}
h3 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2.25rem;
  text-align: center;
}
.issue {
  background: #5856BA;
  color: #fff;
}
.issue h3 {
  margin: 1.75rem 0 5rem;
  position: relative;
}
.issue h3::before {
  content: "issue";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #fff;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.issue-list {
  max-width: 570px;
  margin: 0 auto;
}
.issue-list li {
  margin-bottom: 2rem;
}
.issue-list li::before {
  content: url(../images/check.svg);
  vertical-align: middle;
  padding-right: 1rem;
}
.merit h3 {
  position: relative;
}
.merit h3::before {
  content: "merit";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.merit-list {
  display: flex;
  justify-content: center;
  margin: 4rem 0 10rem;
}
.merit-list li {
  background: #fff;
  width: 245px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 3rem 0;
  margin: 0 1rem;
}
.merit-list li figure,
.merit-list li figure figcaption {
  text-align: center;
}
.merit-list li figure figcaption {
  margin-top: 2rem;
  font-weight: bold;
}
.merit-box {
  position: relative;
  margin-bottom: 8rem;
}
.merit-box::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-color: #5856BA;
  content: "";
  z-index: -99;
}
.row-reverse {
  flex-direction: row-reverse;
}
.reverse::before {
  right: 0;
  left: auto;
  flex-direction: row-reverse;
}
@media only screen and (min-width: 48.0625em) {
  .merit-box::before {
    width: calc(50vw + 200px);
  }
}
.merit-box-inner {
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 2%;
}
.box-text {
  width: 524px;
  color: #fff;
}
.border-top {
  width: 524px;
  border-top: solid 1px #fff;
  padding-top: 3rem;
}
.box-text,
.box-img {
  margin: 0 2rem;
}
.merit-box h4 {
  color: #91CCC3;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 2.4rem;
  margin: 2rem 0;
}
.bg {
  background: #EEEDEA;
}
.contents-cta p {
  text-align: center;
}
.tel-contact,
.reception {
  font-size: 0.75rem;
  font-weight: bold;
}
.tel-contact {
  margin-top: 2rem;
}
.tel-contact svg {
  padding-right: 0.5rem;
  vertical-align: middle;
}
.tel {
  font-size: 0.75rem;
  font-weight: bold;
  vertical-align: middle;
}
.tel .office {
  border: 1px solid #000;
  padding: 0.25rem 1rem;
}
.tel .number {
  font-size: 2rem;
  font-family: outfit;
  font-weight: 500;
  vertical-align: sub;
  padding-left: 0.25rem;
}
.tel-border {
  width: 340px;
  border-top: solid 1px #000;
  padding-top: 1rem;
  margin: 1rem auto 0.5rem;
}
.branch-office {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem 0 1.5rem;
}
.branch-office p {
  margin: 0 0.5rem;
}
.branch-number {
  font-size: 1rem;
  padding-left: 0.25rem;
}
.knowhow h3 {
  position: relative;
}
.knowhow h3::before {
  content: "knowhow";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.lead {
  text-align: center;
  margin-top: 2rem;
  font-weight: 500;
}

/*slick start*/
.slider {
  width: 100%;
  margin: 0 auto;
}
.slider img {
  width: 100%;
  height: auto;
}
.slider .slick-slide {
  transform: scale(0.8);
  transition: all .5s;
  opacity: 0.7;
}
.slider .slick-slide.slick-center{
  transform: scale(1);
  opacity: 1;
}
.slick-prev, 
.slick-next {
  position: inherit!important;
}
/*slick end*/

.case-list {
  margin: 2rem 0 4rem;
}
.case-link {
  text-align: center;
}
.case-link a {
  width: 280px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  border: 3px solid #000;
  padding: 1rem 0;
  font-weight: bold;
  background: transparent;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.case-link a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #000;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.case-link a:hover {
  color: #fff;
}
.case-link a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.consulting {
  background-color: #E4E8F2;
}
.consulting h3 {
  text-align: left;
}
.consulting-wrap {
  display: flex;
  justify-content: center;
  align-items: center ;
  max-width: 1200px;
  padding: 0 2rem;
  margin: 0 auto;
}
.consulting-text-area {
  width: 40%;
  margin-right: 100px;
}
.consulting-text {
  margin: 1rem 0 3rem;
}
.consulting-wrap ol {
  counter-reset: list;
  padding: 0px;
}
.consulting-wrap ol li {
  color: #5856BA;
  font-weight: bold;
  position: relative;
  line-height: 30px;
  margin: 7px 0 40px 40px;
  padding-left: 10px;
  font-weight: bold;
}
.consulting-wrap ol li:last-child {
  margin-bottom: 0;
}
.consulting-wrap ol li:before{
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: -35px;
  width: 30px;
  height: 30px;
  background: #5856BA;
  text-align: center;
  color: #fff;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.consulting-box-wrap {
  background: #5856BA;
  color: #fff;
}
.consulting-box-wrap h3 {
  position: relative;
}
.consulting-box-wrap h3::before {
  content: "consulting";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -130px;
  right: 0;
  left: 0;
}
.consulting-box-lead {
  text-align: center;
  margin: 2rem 0 4rem;
}
.consulting-box-list {
  display: flex;
  justify-content: center;
}
.consulting-box-list li {
  color: #000;
  background: #fff;
  width: 200px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 3rem 1.25rem;
  margin: 0 0.5rem;
}
.box-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
.triangle {
  position: relative;
}
.triangle::before {
  content: "";
  top: 0;
  left: 0;
  border-bottom: 4em solid transparent;
  border-left: 4em solid #41408a;
  position: absolute;
  z-index: 100;
}
.triangle::after {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  top: 2px;
  color: #fff;
  left: 8px;
  position: absolute;
  z-index: 101;
}
.num-1::after {
  content: "01";
}
.num-2::after {
  content: "02";
}
.num-3::after {
  content: "03";
}
.num-4::after {
  content: "04";
}
.num-5::after {
  content: "05";
}
.voice  {
  display: none;
  background-color: #E4E8F2;
}
.voice h3 {
  position: relative;
  margin-bottom: 6rem;
}
.voice h3::before {
  content: "voice";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.voice-box-wrap {
  margin-bottom: 4rem;
  position: relative;
  max-width: 1200px;
  height: auto;
  margin: 0 auto 6rem;
}
.voice-img {
  z-index: 99;
  position: inherit;
  left: 0;
}
.voice-message {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 45%;
  height: auto;
  line-height: 1.5;
  background: #fff;
  padding: 60px 60px 60px 180px;
}

.voice-message span {
  background: #5856BA;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.voice-message span::before {
  vertical-align: middle;
  padding-right: 0.25rem;
  display: inline-block;
  width: 20px;
  height: 20px;
}
.apparel::before {
  content: url(../images/apparel.svg);
}
.food-icon::before {
  content: url(../images/food.svg);
}
.shop-name {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
footer {
  background: #5856BA;
}
.group-bn-wrap {
  display: flex;
  gap: 20px;
}
footer p {
  color: #fff;
  text-align: center;
  font-size: 0.5rem;
  padding: 3.5rem 0;
}
.group-bn-s {
  top: 36px;
}
.ierae {
  right: 30px;
}
.globalsign {
  right: 150px;
}
span#csi_siteseal_tag {
  width: 100px;
  display: block;
}
.ierae-bn {
  display: block;
  text-align: center;
}
.contents-section {
  background: #5856BA;
  margin: 0 auto;
}
.contents-section h2 {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
/*serviceplan start*/
.service {
  margin-bottom: -80px;
}
.service h3 {
  position: relative;
}
.service h3::before {
  content: "service";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.service-wrap {
  display: flex;
  justify-content: center;
  margin: 4rem 0 10rem;
}
.service-wrap h4 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  height: 72px;
}
.service-wrap h4 .sub {
  font-size: .75rem;
  margin-top: -0.25rem;
  display: block;
  text-align: center;
}
.service-plan {
  margin: 0 1rem;
  background: #fff;
  width: 310px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
}
.service-plan li {
  margin-bottom: 1.5rem;
  font-weight: 500;
  border-bottom: solid 1px #000;
  padding-bottom: .75rem;
}
.note {
  font-size: .5rem;
}
/*price start*/
#service-head {
  padding-top: 160px;
  margin-top: -160px;
}
.price h3 {
  position: relative;
}
.price h3::before {
  content: "price";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -42px;
  right: 0;
  left: 0;
}
.pc-price {
  display: block;
}
.sp-price {
  display: none;
}
.price-wrap {
  margin: 4rem auto 1rem;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 2rem;
  max-width: 1200px;
}
.price-wrap h4 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 2.25rem;
  text-align: center;
  margin-bottom: 1rem;
  height: 72px;
}
.price-wrap h4 .sub {
  font-size: .75rem;
  margin-top: -0.25rem;
  display: block;
  text-align: center;
}
/*price-table start*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}
.price-table {
  z-index: 99;
}
.price-table span {
  display: block;
  text-align: center;
}
.plan-description {
  display: block;
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.plan-name {
  font-size: 1.25rem;
  text-align: center;
}
.due-date {
  font-size: 0.75rem;
  padding: 0.5rem;
  margin: 0.5rem auto;
  width: 180px
}
.plan-price {
  font-size: 2rem
}
.plan-price span {
  font-size: 1.125rem;
  display: inline-block;
}
.without-tax {
  font-size: 0.75rem;
  font-weight: 500;
}
.wf {
  border: 1px solid #fff;
}
.bk {
  border: 1px solid #000;
}
thead th{
  padding: 1rem .8rem;
}
table th:nth-child(3),
table td:nth-child(3) {
    border-left: 5px solid #5856BA;
    border-right: 5px solid #5856BA;
}
table tr:last-child td:nth-last-child(2) {
  border-bottom: 5px solid #5856BA;
}

table tr {
  background-color: #fff;
  padding: .35rem;
}
table tr:nth-child(even){
  background-color: #ececec;
}
table th {
  padding: 2rem .8rem;
}
table td {
  padding: .7rem;
  text-align: center;
}
.plan1 {
  background: #d2d1ff;
}
.plan2 {
  background: #5856BA;
  color: #fff;
  position: relative;
  z-index: 1;
}
.plan2::before {
  white-space: pre;
  content: "人気\ANo.1";
  text-align: center;
  position: absolute;
  background: #5856BA;
  width: 100px;
  height: 100px;
  padding: 1rem;
  border-radius: 100px;
  top: -53px;
  left: 29%;
  right: 29%;
  margin: 0 auto;
  z-index: -1;
}
.plan3 {
  background: #91CCC3;
}
.price-note {
  max-width: 1200px;
  margin: 0 auto;
  line-height: 1.2rem;
}
/*flow start*/
.flow {
  background: #E4E8F2;
}
.flow h3 {
  position: relative;
}
.flow h3::before {
  content: "flow";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}
.flow-list {
	padding: 0;
  max-width: 600px;
  margin: 4rem auto 0;
}
.flow-list li {
	list-style-type: none;
}
.flow-list dd {
	margin-left: 0;
}
.flow-list {
	padding-left: 120px;
	position: relative;
}
.flow-list::before {
	content: "";
	width: 15px;
	height: 100%;
	background: #fff;
	margin-left: -8px;
	display: block;
	position: absolute;
	top: 0;
	left: 120px;
}
.flow-list > li {
	position: relative;
}
.flow-list > li:not(:last-child) {
	margin-bottom: 8vh;
}
.flow-list > li .flow-icon {
	font-size: 12px;
	color: #fff;
	background: #5856BA;
	background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
	background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
	padding: 8px 20px;
	display: block;
	position: absolute;
	top: 0;
	left: -120px;
	z-index: 100;
}
.flow-list > li .flow-icon::after {
	content: "";
	border-style: solid;
	border-width: 5px 0 5px 10px;
	border-color: transparent transparent transparent #66d5e9;
	position: absolute;
	top: 50%;
	left: 100%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.flow-list > li dl {
	padding-left: 70px;
	position: relative;
}
.flow-list > li dl::before,
.flow-list > li dl::after {
	content: "";
	display: block;
	position: absolute;
	top: 15px;
}
.flow-list > li dl::before {
	width: 7px;
	height: 7px;
	margin-top: -3px;
	background: #5856BA;
	border-radius: 50%;
	left: -4px;
}
.flow-list > li dl::after {
	width: 50px;
	border-bottom: 1px dashed #5856BA;
	position: absolute;
	left: 5px;
}
.flow-list > li dl dt {
  color: #5856BA;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1vh;
}
.flow-list > li dl dd span {
  font-size: .5rem;
}
.flow-note {
  max-width: 720px;
  margin: 2rem auto 0;
  line-height: 1.2rem;
}
/*basic start*/
.basic  {
  color: #fff;
}
.basic h3 {
  position: relative;
}
.basic h3::before {
  content: "basic";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #fff;
  opacity: .3;
  position: absolute;
  top: -37px;
  right: 0;
  left: 0;
}
.templete,
.templete-list {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem auto 0;
  max-width: 1200px;
}
.templete figure {
  max-width: 500px;
  margin: 0 .5rem 1rem;
  padding: 4rem 2rem 0;
}
.templete figcaption {
  text-align: center;
  font-size: 1.125rem;
}
.templete-list figure {
  max-width: 220px;
  margin: 0 .5rem 1rem;
  padding: 4rem 2rem 0;
}
.marker {
  background:linear-gradient(transparent 50%, #667875 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:background-size 1s;
}
.marker.on {
  background-size: 100% 100%;
}

.course-item img:hover {
  cursor: pointer;
}
#grayDisplay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
max-width: 100% !important;
height: 100%;
background: rgba(0, 0, 0, 0.8);
z-index: 99;
}

#grayDisplay img {
position: absolute;
top: 100px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
height: 60%;
object-fit: contain;
}

/*agency start*/
.agency  {
  background-color: #E4E8F2;
}
.agency h3 {
  position: relative;
}
.agency h3::before {
  content: "agency";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #5856BA;
  opacity: .3;
  position: absolute;
  top: -55px;
  right: 0;
  left: 0;
}
.card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 4rem auto 0;
}
.card figure {
  width: 200px;
  margin: 0 1rem 5rem;
  padding: 4rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  background: #fff;
  border-radius: 5px;
}
.card figure img {
  height: 150px;
}
.card figure,
.card figcaption {
  text-align: center;
}
.card figcaption {
  margin-top: 3rem;
  font-weight: 500;
}
a[href^="tel:"] {
  color: #333;
}
/*casestudy start*/
.category-button,
.thumbnail {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery,
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.gallery a {
  color: black;
}
.gallery a:hover {
  opacity: .7;
}
.buttons {
  gap: 20px 16px;
}
.buttons button {
  padding: 10px 30px;
  text-align: center;
  background-color: #3c3c3c;
  border: solid 1px #101010;
  color: white;
  border-radius: 30px;
  cursor: pointer;
}
.category-icon .buttons button {
  font-size: 0.7rem;
  padding: 8px 24px;
  background-color: #c2c2c2;
  border: solid 1px #c2c2c2;
}
.buttons button:hover {
  opacity: .7;
}
.thumbnail {
  margin-top: 80px;
}
.gallery {
  gap: 80px 30px;
}
.gallery li {
  width: 380px;
}
.gallery li img {
  box-shadow: 0 7px 30px -10px rgba(150,170,180,0.5);
}
.case-shop-name {
  font-weight: bold;
  margin: 16px 0;
}

/*option start*/
.area {
  display: none;
  opacity: 0;
}
.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}
@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.option-menu {
  padding: 80px 0 0 0;
}
.flex {
  display: flex;
}
.tab {
  display: flex;
  margin-left: 4vw;
}
.tab li {
  margin-right: 32px;
}
.tab li a {
  color: #000;
  font-weight: bold;
  font-size: 1.25rem;
  position: relative;
}
.tab li a:hover {
  color: #5856BA;
}
.tab li.active a {
  color: #5856BA;
}
.tab li.active a::before {
  background-color: #5856BA;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
.option-plan h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
  line-height: 1.2;
}
.option-card {
  width: 540px;
  margin: 2rem auto 0;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 6px;
  padding: 70px 0;
  border-top: solid 15px #5856BA;
  position: relative;
}
.option-card::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 50%;
  background: #DEDDF1;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.option-price {
  margin-bottom: 4rem;
}
.option-price,
.option-price p {
  text-align: center;
  font-weight: bold;
}
.option-price span {
  font-size: 3.5rem;
  color: #5856BA;
}
.option-price p {
  color: #747474;
}
.breakdown {
  text-align: center;
}
.breakdown p {
  font-weight: bold;
  color: #5856BA;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding: 0 55px;
  width: 45%;
}
.breakdown p:before,
.breakdown p::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 140px;
  height: 1px;
  background-color: #5856BA;
}
.breakdown p:before {
  left: 0;
}
.breakdown p::after {
  right: 0;
}
.breakdown-list li {
  margin-bottom: 1.5rem;
}
.breakdown-list li dl {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 360px;
  margin: 0 auto;
  font-size: 0.75rem;
}
#wordpress .breakdown-list li dl {
  align-items: center;
}
.breakdown-list li dt {
  width: 80%;
}
.breakdown-list li dd {
  font-size: 1.15rem;
  font-weight: bold;
  width: 40%;
}
.breakdown-list li:first-child dd {
  color: #5856BA;
}
.breakdown-list li:first-child dd .original-price {
  color: #000;
  text-decoration: line-through;
  font-size: 0.75rem;
}
.breakdown-list li dd .small {
  font-size: 70%;
}

.option-ex-wrap {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}
.option-ex {
  width: 570px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 50px;
}
.option-ex img {
  max-width: 50px;
}
.merit-text h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.merit-text p {
  line-height: 1.8;
}
.merit-text p span {
  color: #5856BA;
  font-size: 1.5rem;
  font-weight: bold;
}
.option-case {
  position: relative;
}
.option-case::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 60%;
  background: #5856BA;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#subscription .option-case::before {
  height: 90%;
  top: 30px;
}
.option-case-wrap {
  max-width: 1200px;
  align-items: center;
  margin: 0 auto;
  gap: 60px;
  padding: 0 20px;
}
.case-text {
  max-width: 41%;
}
.case-text-second {
  margin-top: 40px;
}
.option-case h4 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}
.option-case p {
  color: #fff;
  line-height: 1.6;
}
.option-case p span {
  font-size: 70%;
}
.composition {
  font-size: 0.875rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem;
  margin-top: 24px;
  line-height: 2;
}
@media only screen and (max-width: 1100px) {
  .case-text {
    max-width: 30%;
  }
  .composition {
    font-size: 0.5rem;
  }
}
.case-shop {
  display: block;
  height: 340px;
  overflow: scroll;
  border: 25px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 5px 5px 0 0;
}
.pc-back {
  position: relative;
}
.pc-back::after {
  content: "";
  position: absolute;
  background: #fff;
  bottom: -20px;
  width: 110%;
  height: 20px;
  left: -32px;
  right: 0;
  display: block;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 0 0 5px 5px;
}
.case-shop img {
  position: relative;
}
.field {
  position: absolute;
  top: 170px;
  left: 280px;
}

.option-bannar {
  max-width: 1200px;
  margin: 0 auto;
}
.option-bannar h4 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 12px;
  padding-left: 20px;
}
.option-bannar p {
  padding-left: 20px;
}
.option-bannar p span {
  font-size: 70%;
}
.option-bannar-list {
  gap: 75px;
  margin-top: 60px;
  padding: 0 20px;
}
.option-bannar-list li {
  width: 350px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.option-bannar-list li div,
.option-bannar-list li p {
  text-align: center;
}
.option-bannar-list li div {
  color: #fff;
  font-weight: bold;
  padding: 10px 0;
}
.option-bannar-list li:first-child div {
  background: #5856BA;
}
.option-bannar-list li:nth-child(2) div {
  background: #FF6583;
}
.option-bannar-list li:last-child div {
  background: #91CCC3;
}
.option-bannar-list li p {
  font-weight: bold;
  padding-bottom: 30px;
}

.option-support {
  background: #5856BA;
}
#subscription .option-support {
  margin-top: 100px;
}
.option-support h3 {
  margin: 1.75rem 0 5rem;
  position: relative;
  color: #fff;
}
.option-support h3::before {
  content: "support";
  font-family: Outfit;
  font-size: 6.5rem;
  font-weight: 700;
  color: #fff;
  opacity: .3;
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
}
.option-support-lead {
  color: #fff;
  text-align: center;
}
.option-support-lead span {
  font-size: 1.25rem;
}
.option-support-mission {
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}
.mission-box {
  background: #fff;
  color: #5856BA;
  font-weight: bold;
  padding: 20px 40px;
}
.option-support-mission p {
  color: #fff;
}
.second-text {
  font-size: 70%;
  margin-top: 8px;
}
.option-support-box {
  justify-content: center;
  gap: 60px;
  background: #fff;
  padding: 45px 0;
  width: 987px;
  margin: 40px auto 0;
}
.option-support-ttl {
  background: #5856BA;
  border-radius: 50px;
  color: #fff;
  padding: 8px 20px;
  text-align: center;
  margin-bottom: 12px;
}
.option-support-cap {
  text-align: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1100px) {
  .option-support-cap {
    font-size: 0.75rem;
  }
}
.support-detail-wrap {
  margin: 2px 0;
  align-items: center;
}
.support-detail-head {
  background: #DEDDF1;
  color: #5856BA;
  font-weight: bold;
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
}
.support-detail-txt {
  width: 80%;
  font-weight: bold;
  font-size: 0.75rem;
  background: #E4E8F2;
  padding: 9px 10px;
}
.production {
  background: #5856BA;
}
.production h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.production-lead {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.production-wrap {
  justify-content: center;
  gap: 60px;
}
.production-image {
  text-align: center;
}
.production-image p {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 20px;
}
.mgt80 {
  margin-top: 80px;
}
.mgb80 {
  margin-bottom: 80px;
}

#page-top {
  position: fixed;
  bottom: 64px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #5856BA;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: block;
  text-align: center;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}

#page-top::before {
  content: '\f062';
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}

#page-top.fadein {
  opacity: 1;
}

/*Responsive start*/
@media screen and (max-width: 900px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .navigation ul li a::after {
    display: none;
  }
  .loop {
    height: 61vh;
    overflow: hidden;
  }
  .loop-wrap {
    width: 100%;
    height: 100%;
    align-items: flex-start!important;
  }
  .loop-wrap ul li img {
    width: 100%;
  }
  .pc-menu {
    display: none!important;
  }
  #hamburger {
    background-color: transparent;
    position: relative;
    cursor: pointer;
    margin: 0 0 0 auto;
    height: 60px;
    width: 60px;
  }
  .hamburger-icon span {
    position: absolute;
    left: 15px;
    width: 30px;
    height: 4px;
    background-color: #000;
    border-radius: 8px;
    transition: ease 0.75s;
  }
  .hamburger-icon span:nth-of-type(1) {
    top: 16px;
  }
  .hamburger-icon span:nth-of-type(2) {
    top: 28px;
  }
  .hamburger-icon span:nth-of-type(3) {
    bottom: 16px;
  }
  .close span:nth-of-type(1) {
    transform: rotate(45deg);
    top: 28px;
  }
  .close span:nth-of-type(2) {
    opacity: 0;
  }
  .close span:nth-of-type(3) {
    transform: rotate(-45deg);
    top: 28px;
  }
  .hamburger-menu {
    top: 80px;
    left: 0px;
    position: absolute;
    z-index: 10;
    width: 100%;
    background-color: #fff;
  }
  .hamburger-menu ul {
    flex-direction: column;
  }
  .hamburger-menu ul li {
    width: 90%;
    border-bottom: 1px solid #000;
  }
  .hamburger-menu ul li a {
    padding: 2rem;
    text-align: center;
  }
  .navigation {
    padding-top: 10px;
  }
  .navigation ul li {
    margin: 0;
    font-size: 1rem;
  }
  .header {
    width: 100%;
    height: 80px;
    top: 0;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
  }
  .fv-top {
    padding: 80px 0 0 0;
  }
  .fv-contents {
    display: block;
    height: auto;
  }
  .fv-text {
    margin: 1rem 1rem 0 1rem;
  }
  .fv-text {
    padding: 0;
  }
  .fv-text p {
    font-size: 1rem;
  }
  .decoration {
    width: 90%;
  }
  .cta-btn a {
    width: 90%;
  }
  .tel-border {
    width: 90%;
  }
  .news-wrap {
    width: auto;
    left: 0;
  }
  .news-datail {
    width: 100%;
  }
  section {
    padding: 80px 16px;
  }
  .issue h3::before {
    font-size: 4rem;
    top: -24px;
  }
  .merit h3::before {
    font-size: 4rem;
    top: -24px;
  }
  .knowhow h3::before {
    font-size: 4rem;
    top: -24px;
  }
  .consulting-box-wrap h3::before {
    font-size: 4rem;
    top: -120px;
  }
  .voice h3::before {
    font-size: 4rem;
    top: -24px;
  }
  .issue-list li {
    margin-left: 46px;
  }
  .issue-list li::before {
    margin-left: -46px;
  }
  .merit-list {
    display: block;
  }
  .merit-list li {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 1rem 0;
  }
  .merit-list li figure {
    display: flex;
    padding: 1rem;
  }
  .merit-list li figure img {
    max-width: 32%;
  }
  .merit-list li figure figcaption {
    text-align: left;
    margin-left: 1rem;
  }
  .merit-box-inner {
    flex-direction: column-reverse;
    max-width: 100%;
  }
  .merit-box::before {
    top: 140px;
    height: 600px;
  }
  .box-text {
    width: 92%;
    margin: 0 auto;
  }
  .border-top {
    display: none;
  }
  .tel .office {
    padding: 0.25rem;
  }
  .branch-number {
    font-size: 0.75rem;
  }
  .consulting-wrap {
    display: block;
    padding: 0;
  }
  .consulting-box-wrap h3 {
    font-size: 1.45rem;
  }
  .consulting-text-area {
    width: 100%;
  }
  .consulting-text-area img {
    margin-bottom: 4rem;
  }
  .consulting-box-list {
    display: block;
  }
  .consulting-box-list li {
    width: auto;
    margin-bottom: 3rem;
  }
  .voice-message {
    position: inherit;
    width: 100%;
    padding: 0;
    transform: inherit;
  }
  .voice-message span {
    margin: 2rem 0 2rem 2rem;
  }
  .shop-name {
    padding: 0 2rem;
  }
  .shop-text {
    padding: 0 2rem 2rem 2rem;
  }
  .voice-img {
    width: 100%;
    margin: 0 auto -30px;
  }
  .service h3::before {
    font-size: 5rem;
    top: -34px;
  }
  .service-page,
  .case-page {
    padding-top: 0;
  }
  .service-wrap {
    padding-top: 0;
    display: block;
    justify-content: center;
    margin: 2rem 0 5rem;
  }
  .service-plan {
    margin: 2rem 0;
    width: 90%;
    padding: 1rem;
  }
  #price {
    padding: 160px 0 80px;
  }
  .basic {
    padding: 80px 0;
  }
  #service-head {
    padding-top: 80px;
    margin-top: -80px;
  }
  .price h3::before {
    font-size: 5rem;
    top: -32px;
  }
  .pc-price {
    display: none;
  }
  .price-block {
    margin: 2rem 0;
    position: relative;
    z-index: 1;
  }
  .sp-prime {
    margin-top: 3rem;
  }
  .sp-prime::before {
    white-space: pre;
    content: "人気\ANo.1";
    font-size: 0.5rem;
    color: #fff;
    font-weight: bold;
    text-align: center;
    position: absolute;
    background: #5856BA;
    width: 60px;
    height: 60px;
    padding: 0.5rem;
    border-radius: 100px;
    top: -34px;
    left: 40%;
    right: 40%;
    margin: 0 auto;
  }
  .price-block ul {
    padding: 0 0.5rem;
    background: #fff;
  }
  .price-block ul li {
    padding: 1rem 1rem 0.5rem 2.5rem;
    position: relative;
  }
  .price-plan {
    text-align: center;
    font-size: 0.75rem;
    position: relative;
  }
  .price-plan .plan {
    font-size: 1.5rem;
  }
  .basic-plan ul li::before {
    content: url("../images/price-list01.svg");
    position: absolute;
    top: 38%;
    left: 10px;
  }
  .prime-plan ul li::before {
    content: url("../images/price-list02.svg");
    position: absolute;
    top: 38%;
    left: 10px;
  }
  .full-plan ul li::before {
    content: url("../images/price-list03.svg");
    position: absolute;
    top: 38%;
    left: 10px;
  }
  .basic-plan ul li:nth-child(2n)  {
    background-color: #ededfc;
  }
  .prime-plan ul li:nth-child(2n)  {
    background-color: #e7e7ff;
  }
  .full-plan ul li:nth-child(2n)  {
    background-color: #ddf1ee;
  }
  .basic-plan {
    background: #d2d1ff;
  }
  .prime-plan {
    background: #5856BA;
  }
  .full-plan {
    background: #91CCC3;
  }
  .prime-plan summary {
    color: #fff;
  }
  .sp-price {
    display: block;
    font-size: 2.5rem;
    text-align: center;
  }
  .text-small {
    display: inline-block;
    font-size: 1rem;
  }
  .sp-due-date {
    display: inline-block;
    border: 1px solid #000;
    padding: 0.5rem;
    margin: 0.5rem;
    text-align: center;
  }
  .prime-plan .sp-due-date {
    border: 1px solid #fff;
  }
  .ex {
    margin-top: 0.5rem;
  }
  details {
    border-radius: 4px;
  }
  summary {
    display: flex;
    justify-content: center;
    align-items: baseline;
    position: relative;
    font-weight: 600;
    cursor: pointer;
    padding: 1rem 1rem 2rem 1rem;
  }
  summary::after {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateY(-25%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    content: '';
    transition: transform .3s;
  }
  .prime-plan summary::after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
  details[open] {
    font-size: 1rem;
  }
  details[open] summary {
    margin-bottom: 1rem;
  }
  details[open] summary::after {
    transform: rotate(225deg);
  }
  summary {
    display: block;
    list-style: none;
  }
  summary::-webkit-details-marker {
    display: none!important;
  }
  .price-wrap {
    overflow: auto;
    padding: 0;
  }
  .table-scroll {
    height: 500px;
  }
  .price-table {
    font-size: 0.75rem;
  }
  .price-wrap table {
    table-layout: auto;
  }
  .price-wrap table th {
    font-size: .5rem;
    white-space: nowrap;
    position: sticky;
    background: #fff;
    top: 0;
    left: 0;
  }
  .price-wrap tr:first-child th:first-child {
    z-index: 1;
  }
  .table-top {
    z-index: 2!important;
  }
  .price-wrap table td {
    white-space: nowrap;
    padding: 5px;
  }
  .plan1 {
    background: #d2d1ff!important;
  }
  .plan2 {
    background: #5856BA!important;
    margin-top: auto;
    padding-top: 0;
    display: revert;
  }
  .plan3 {
    background: #91CCC3!important;
  }
  table th:nth-child(3), table td:nth-child(3) {
    border: none;
  }
  table tr:last-child td:nth-last-child(2) {
    border: none;
  }
  .flow h3::before {
    font-size: 5rem;
    top: -32px;
  }
  .flow-list > li dl dt {
    font-size: 1rem;
  }
  .flow-list dd {
    font-size: .75rem;
  }
  .flow-list > li dl {
    padding-left: 40px;
  }
  .flow-list > li dl::after {
    width: 24px;
  }
  .flow-list > li .flow-icon {
    left: -110px;
  }
  .basic h3::before {
    font-size: 5rem;
    top: -32px;
  }
  .templete,
  .templete-list {
    margin: 0;
  }
  .templete-list {
    justify-content: center;
  }
  .templete-list figure {
    width: 150px;
    padding: 4rem 0.5rem 0;
  }
  .templete-list:after {
    content: "";
    display: block;
    width: 50%;
  }
  .agency h3::before {
    font-size: 5rem;
    top: -38px;
  }
  .card {
    justify-content: space-around;
  }
  .card figure {
    width: 42%;
    margin: 0 0rem 1rem;
    padding: 1rem 0.5rem;
  }
  .card figure img {
    min-height: 147px;
    height: auto;
  }
  footer {
    display: block;
    padding-bottom: 50px;
  }
  footer p {
    text-align: center;
    padding: 3rem 0 40px 0;
  }
  .group-bn-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  .group-bn-s {
    top: 40px;
  }
  #casestudy {
    padding: 160px 0 80px;
  }
  .category-button {
    padding-bottom: 0;
  }
  .buttons {
    gap: 10px 16px;
  }
  .sp-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 20px;
  }
  .buttons button {
    padding: 6px;
    min-width: 130px;
    font-size: 0.7rem;
  }
  .category-icon .buttons button {
    min-width: 100px;
    padding: 4px 12px;
    font-size: 0.6rem;
  }
  .gallery {
    justify-content: space-between;
    gap: 30px 0px;
  }
  .gallery li {
    width: 46%;
  }
  .thumbnail {
    margin-top: 40px;
  }
  .option-page {
    padding-top: 80px;
  }
  .case-shop-name {
    font-size: 0.8rem;
  }
  .flex {
    display: block;
  }
  .tab {
    display: block;
    margin-left: 7vw;
  }
  .tab li {
    margin: 0 0 40px 0;
  }
  .tab li.active a::before {
    background-color: #5856BA;
    border-radius: 5px;
    top: 50%;
    left: -15px;
    content: "";
    width: 5px;
    height: 30px;
    position: absolute;
    transform: translateY(-50%);
  }
  .option-plan {
    padding: 0px 16px!important;
  }
  .option-card {
    width: 100%;
    margin: 0 auto;
  }
  .option-plan h3 {
    font-size: 2rem;
  }
  .option-price span {
    font-size: 2.5rem;
  }
  .breakdown p {
    width: 55%;
  }
  .breakdown p:before,
  .breakdown p::after {
    width: 100px;
  }
  .breakdown-list li dl {
    width: 88%;
    align-items: center;
  }
  .option-ex-wrap {
    display: block;
  }
  .option-ex {
    width: 90%;
    display: block;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  .option-ex img {
    margin-bottom: 20px;
  }
  .case-text {
    width: 100%;
    margin-bottom: 40px;
    max-width: 100%;
  }
  .option-case::before {
    top: 2%;
  }
  .case-shop {
    height: 180px;
    border: 10px solid #fff;
  }
  .pc-back::after {
    left: -16px;
    border: 10px solid #fff;
    width: 104%;
    height: 0;
  }
  .field {
    top: 70px;
    left: 130px;
  }
  .option-bannar h4 {
    line-height: 1.4;
  }
  .option-bannar-list li {
    width: 100%;
    margin-bottom: 40px;
  }
  .option-bannar-list li:last-child {
    margin-bottom: 0;
  }
  .option-support h3 {
    margin: 1.75rem 0 3rem;
  }
  .mission-box {
    text-align: center;
    width: 30%;
    margin: 0 auto 20px;
    padding: 10px 40px;
  }
  .option-support-box {
    width: 100%;
  }
  .option-support-mission p {
    text-align: center;
  }
  .option-support-box img {
    display: flex;
    margin: 0 auto;
  }
  .option-support-ttl {
    margin: 32px auto 12px;
    width: 80%;
  }
  .support-detail-head,
  .support-detail-txt {
    width: 95%;
    padding: 10px 0;
    margin: 0 auto;
  }
  .support-detail-txt {
    text-align: center;
  }
  .support-detail-wrap {
    margin: 12px 0;
  }
  #subscription .option-case::before {
    top: 10px;
  }
  .production-image img {
    width: 90%;
    margin: 0 auto 40px;
  }
  .mgb80 {
    margin-bottom: 40px;
  }


}

@media screen and (min-width: 465px) and ( max-width: 899px) {
  .fv-top {
    min-height: 100vh;
  }
}
@media screen and (max-width: 376px) {
  .fv-top {
    min-height: 100vh;
  }
  .cta-btn a {
    font-size: 1rem;
  }
  .cta-btn a svg {
    vertical-align: middle;
  }
  .news-datail {
    padding: 1.5rem 0.5rem;
  }
}