@charset "UTF-8";

/*=======================================================
#services 導入
=======================================================*/
#services {
  padding: 10rem 0 8rem;
  background-color: var(--color_5);
}

.services__diagram {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: 80rem;
  margin: 4rem auto 0;
}

.service__column {
  width: 18rem;
}

.service__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  font-size: 2.4rem;
  line-height: 1.4;
  text-align: center;
  background-color: var(--color_1);
  border: var(--color_2) 2px solid;
  border-radius: 50%;
}

.service__list {
  position: relative;
  padding: 2.4rem 0;
}

.service__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 100%;
  background-image: url(../img/services-list-line.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.service__list li {
  position: relative;
  margin-bottom: 2.4rem;
  padding: 0.5em 0;
  font-size: 1.8rem;
  text-align: center;
  background-color: var(--color_1);
  border: var(--color_2) 2px solid;
}

@media screen and (max-width: 896px) {
  .services__diagram {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  #services {
    padding: 5rem 0;
  }
  .services__diagram {
    width: 100%;
  }
  .service__column {
    width: 13rem;
  }
  .service__ttl {
    font-size: 1.6rem;
  }
  .service__list {
    padding: 1.2rem 0;
  }
  .service__list li {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .services__diagram {
    display: block;
    margin: 2.4rem auto 0;
  }
  .service__column {
    width: 15rem;
    width: 60%;
    margin: auto auto 2.4rem;
  }
  .service__column:last-of-type {
    margin: auto auto 0;
  }
  .service__ttl {
    aspect-ratio: 2/1;
    font-size: 5vw;
    border-radius: 100px;
  }
  .service__list li {
    font-size: 4vw;
  }
  .service__list::before {
    background-size: contain;
  }
}

/*=======================================================
#service-list サービス一覧
=======================================================*/
#service-list {
  padding: 10rem 0 8rem;
}

.content__head-s .content__en {
  text-align: center;
}
.content__head-s .content__ttl-big {
  margin: auto;
}

.service-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8rem 6rem;
}

.service__item a {
  display: block;
  width: 100%;
  height: 10rem;
  font-size: 2.4rem;
  text-align: center;
  align-content: center;
  background-color: var(--color_1);
  border: var(--color_2) 0.3rem solid;
  border-radius: 10rem;
  -webkit-filter: drop-shadow(0 4px 0 var(--color_2));
  filter: drop-shadow(0 4px 0 var(--color_2));
  transition: 0.1s;
}
.service__item a:hover,
.service__item a:focus,
.service__item a:active {
  -webkit-filter: drop-shadow(0 0.5px 0 var(--color_2));
  filter: drop-shadow(0 0.5px 0 var(--color_2));
  transform: translateY(3.5px);
  opacity: 0.5;
  transition: 0.2s;
}

.service__item p {
  margin: 1em auto 0;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.4;
}

.service__item p span {
  display: inline-block;
}

@media screen and (max-width: 896px) {
  .service-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

@media screen and (max-width: 600px) {
  #service-list {
    padding: 8rem 0 4.8rem;
  }
  .service-list__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 2.4rem;
  }
  .service__item a {
    height: 8rem;
    font-size: 2rem;
  }
  .service__item p {
    font-size: 1.2rem;
  }
  .service__item p .br__sp {
    display: block;
  }
}

/*=======================================================
■ サービス詳細ページ用
=======================================================*/
/*詳細ページ-ページタイトル*/
.br__sp #page-head {
  background-color: var(--color_5);
}

.descPage-head {
  width: 90%;
  margin: 16rem auto 4rem;
}

.descPage-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 15em;
  height: 9rem;
  margin: auto auto 1rem;
  font-size: 2.4rem;
  background-color: var(--color_1);
  border: var(--color_2) 2px solid;
}

.descPage-head .breadcrumb nav {
  text-align: center;
}

.descPage-head .breadcrumb p {
  white-space: nowrap;
  font-size: 1.3rem;
  color: var(--color_7);
}
.descPage-head .breadcrumb a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 896px) {
  .descPage-head {
    width: 100%;
  }
  .descPage-ttl {
    margin: -3.5rem auto 1rem;
  }
}

@media screen and (max-width: 600px) {
  .descPage-head {
    margin: 8rem auto;
  }
  .descPage-ttl {
    width: 90%;
    min-width: 270px;
    height: 8rem;
    margin: 0 auto 4rem;
  }
  .descPage-head .breadcrumb {
    margin: auto;
  }
  .descPage-head .breadcrumb p {
    font-size: 1.2rem !important;
  }
  #page-head p {
    margin-right: 0;
  }
}

/***詳細ページ-内容共通部分***/
/*inner2カラムに*/
#service-desc__inner {
  display: flex;
  align-items: flex-start;
  padding: 5rem 0 0;
}
/*サイドメニュー*/
.sideMenu {
  position: -webkit-sticky;
  position: sticky;
  top: 2.4rem;
  flex-shrink: 0;
  width: 24rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3rem 2.4rem 4rem;
  background-color: var(--color_5);
  border: var(--color_2) 2px solid;
  border-radius: 0 3rem 3rem 0;
}

.sideMenu > p {
  margin-bottom: 1.6rem;
  font-size: 2rem;
}

.sideMenu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sideMenu ul li a {
  display: block;
  padding: 0.6em 0;
  font-size: 1.4rem;
  text-align: center;
  background-color: var(--color_1);
  border: var(--color_2) 2px solid;
  border-radius: 50px;
  -webkit-filter: drop-shadow(0 3px 0 var(--color_2));
  filter: drop-shadow(0 3px 0 var(--color_2));
  transition: 0.2s;
}

.sideMenu ul li a:hover,
.sideMenu ul li a:focus,
.sideMenu ul li a:active {
  -webkit-filter: drop-shadow(0 0.5px 0 var(--color_2));
  filter: drop-shadow(0 0.5px 0 var(--color_2));
  transform: translateY(2.5px);
}
/*表示ページ*/
.sideMenu ul li.thisPage a {
  background-color: #e1ff00;
  pointer-events: none;
  -webkit-filter: drop-shadow(0 0.5px 0 var(--color_2));
  filter: drop-shadow(0 0.5px 0 var(--color_2));
}

/*メイン記事部分*/
.desc-main {
  width: calc(100% - 24rem);
  max-width: 1330px;
  margin: auto;
}

.service-detail__block {
  width: 100%;
}
.service-detail__inner {
  width: calc(100% - 20rem);
  margin: auto;
  padding: 5rem 0;
}
.service-detail__block:last-of-type .service-detail__inner {
  padding: 5rem 0 10rem;
}

.service-detail__head {
  margin: 0 0 2.4rem;
  padding: 0.5em 0.8em;
  font-size: 2.4rem;
  line-height: 1.4;
  background-color: var(--color_5);
  border-left: var(--color_3) 8px solid;
}
.service-detail__head span {
  display: inline-block;
}

.service-detail__diagram {
  width: 75%;
  margin: 4rem auto 0;
}

/*背景グレーsection*/
.service-detail__block-gr {
  background-color: var(--color_5);
}
.service-detail__block-gr .service-detail__head {
  text-align: center;
  background-color: var(--color_1);
  border-left: var(--color_2) 3px solid;
  border-right: var(--color_2) 3px solid;
}

@media screen and (max-width: 896px) {
  #service-desc__inner {
    display: block;
  }
  .sideMenu {
    display: none;
  }
  .desc-main {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .service-detail__block {
    padding: 0 25px;
  }
  .service-detail__inner {
    width: 100%;
  }
  .service-detail__head {
    font-size: 1.8rem;
  }
  .service-detail__diagram {
    width: 100%;
    margin: 4rem auto 0;
  }
}
/*=======================================================
■詳細  新規サイト制作
=======================================================*/
.service-detail__ng-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 7rem;
  margin-top: 2.4rem;
  padding: 5rem 7rem;
  border: var(--color_2) 2px solid;
}

.ng-item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  aspect-ratio: 1 / 0.6;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  background-image: url(../img/service-desc-ng.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% auto;
}
/*料金について*/
.detail__price {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 7.2rem auto;
  padding: 0 2em;
  font-weight: 700;
  line-height: 3;
  background-color: var(--color_3);
}
.detail__price .head {
  margin-right: 3em;
  font-size: 2.4rem;
}
.detail__price .price {
  font-size: 3.2rem;
}
/*
.service-detail__2plan {
  display: flex;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto 4rem;
  border: red 1px solid;
}

.plan__item {
  width: 40rem;
}
.plan__item h3 {
  margin-bottom: 0.5em;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
*/

.price-table__note {
  font-size: 0.85rem;
  color: var(--color_6);
  text-align: center;
  display: none;
}

.price-table {
  width: calc(100% + 2rem);
  margin-left: -1rem;
  border-collapse: separate;
  border-spacing: 1rem;
}

.price-table * {
  text-align: center;
}

.price-table thead th {
  padding: 1rem 0;
  background-color: var(--color_3);
}
.price-table thead th:first-of-type {
  background-color: transparent;
}

.price-table tbody th {
  width: 32rem;
  height: 8rem;
  padding: 1.6rem 0;
  background-color: var(--color_3);
}

.price-table tbody th span {
  display: inline-block;
}

.price-table tbody td {
  width: 32rem;
  font-weight: 700;
}

.price-table tbody td span.number {
  font-size: 3rem;
}

.price-table tbody td span.bg__w {
  display: inline-block;
  padding: 0.3em 3em 0.8em;
  line-height: 1.4;
  background-color: var(--color_1);
}

.price-table tbody td span.weight__normal {
  display: inline-block;
  font-weight: 500;
}

.about-option {
  margin: 2.4rem auto 6rem;
}

.about-option br {
  display: none;
}

.service__motif {
  display: flex;
  justify-content: right;
  gap: 4rem;
  width: 100%;
  padding: 2.4rem 4rem 0 0;
}

.service__motif .shape__item {
  width: 4rem;
  height: 4rem;
  margin: 0;
  -webkit-animation: dance-1 2s cubic-bezier(0.68, -0.6, 0.32, 1) infinite;
  animation: dance-1 2s cubic-bezier(0.68, -0.6, 0.32, 1) infinite;
  transform-origin: center bottom;
}
@-webkit-keyframes dance-1 {
  0%,
  100% {
    transform: scale(1, 1);
  }
  18% {
    transform: scale(1.4, 0.4);
  }
  45% {
    transform: scale(0.75, 1.4);
  }
  65% {
    transform: scale(1.1, 0.9);
  }
}
@keyframes dance-1 {
  0%,
  100% {
    transform: scale(1, 1);
  }
  18% {
    transform: scale(1.4, 0.4);
  }
  45% {
    transform: scale(0.75, 1.4);
  }
  65% {
    transform: scale(1.1, 0.9);
  }
}

.service__motif .shape__item-circle {
  opacity: 1;
  -webkit-animation-delay: 0.18s;
  animation-delay: 0.18s;
}

.service__motif .shape__item-square {
  -webkit-animation-delay: 0.08s;
  animation-delay: 0.08s;
}

.flow__list {
  width: 80%;
  margin: 5.6rem auto;
}
.flow__list li {
  margin: 0 0 4rem;
}
.flow__list li .flow__ttl {
  display: block;
  font-size: 2rem;
}
.flow__desc {
  margin-left: 2.4rem;
}

.flow__setup {
  width: calc(80% + 10rem);
  margin: auto;
  padding: 5rem;
  border: var(--color_2) 2px solid;
}

.setup__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -5rem auto 0;
  padding: 0.5em 1em 0.7em;
  font-size: 1.8rem;
  line-height: 1.4;
  transform: translateY(-50%);
  border: var(--color_2) 2px solid;
  background-color: var(--color_5);
}
.setup__ttl br {
  display: none;
}

.setup__inner {
  margin: 1.6rem 0 4.8rem;
}
.setup__inner:last-of-type {
  margin: 1.6rem 0 0;
}

.setup__inner h4 {
  position: relative;
  padding-left: 1.1em;
  font-weight: 700;
}
.setup__inner h4::before {
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
}

.setup__list {
  margin-left: 1.6rem;
}

.setup__list li {
  position: relative;
  padding-left: 1em;
}
.setup__list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.link__setup {
  text-align: right;
}

.link__setup a {
  position: relative;
  margin-right: 1.3em;
  transition: 0.1s;
}
.link__setup a::after {
  content: "→";
  position: absolute;
  top: -0.15em;
  right: -1.3em;
  transition: 0.2s;
} /*
.link__setup a:hover {
  border-bottom: var(--color_2) 1.5px solid;
}*/

.link__setup a:hover::after {
  transform: translateX(4px);
}

.desc-main a {
  border-bottom: var(--color_3) 2px solid;
}
.desc-main a:hover,
.desc-main a:focus,
.desc-main a:active {
  opacity: 0.5;
}

@media screen and (max-width: 896px) {
  .service-detail__ng-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 7rem;
    margin-top: 2.4rem;
    padding: 5rem 7rem;
    border: var(--color_2) 2px solid;
  }
  .price-table tbody th span {
    display: none;
  }
  .flow__list {
    width: 100%;
  }
  .flow__setup {
    width: 100%;
    padding: 5rem 2.4rem;
  }
  .flow__desc,
  .setup__list {
    margin-left: 0;
  }
}

@media screen and (max-width: 600px) {
  .service-detail__ng-grid {
    gap: 2.4rem;
    padding: 2.4rem;
  }
  .ng-item h3 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .ng-item p {
    line-height: 1.6;
  }
  .detail__price {
    margin: 4rem auto;
    padding: 1em 2em;
    text-align: center;
    line-height: 1.6;
  }
  .detail__price .head {
    display: block;
    margin-right: 0;
    font-size: 1.6rem;
  }
  .detail__price .price {
    font-size: 2.4rem;
  }
  .price-table__note {
    display: block;
  }
  .price-table__container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }
  .price-table {
    min-width: 52rem;
    margin-bottom: 0;
  }
  .price-table tbody th {
    width: 34rem;
    height: 6rem;
  }
  .price-table tbody td {
    width: 26rem;
  }
  .price-table tbody td span.bg__w {
    padding: 0 1.5em 0.5em;
  }
  .price-table tbody td span.number {
    font-size: 2rem;
  }
  .about-option br {
    display: block;
  }
  .flow__list {
    margin: 2.4rem auto 5.6rem;
  }
  .flow__list li {
    margin: 0 0 2.4rem;
  }
  .flow__list li .flow__ttl {
    display: block;
    font-size: 1.8rem;
  }
  .setup__ttl {
    width: 90%;
    padding: 0.5em 0.5em 0.7em;
    font-size: 1.6rem;
    text-align: center;
  }
  .setup__ttl br {
    display: block;
  }
  .setup__inner {
    margin: 0 0 4.8rem;
  }
  .setup__inner h4 {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 385px) {
  .service-detail__ng-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.6rem;
  }
}

@media screen and (max-width: 360px) {
  .setup__ttl {
    width: 110%;
    margin-left: -5%;
  }
}

/*=======================================================
■詳細  サイトリニューアル
=======================================================*/
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 4rem;
  align-items: start;
}

/* 基本スタイル */
.price-card {
  display: flex;
  flex-direction: column;
  height: max-content;
  background-color: var(--color_1);
  border: 1.5px solid var(--color_7);
  border-radius: 2rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px #cccccc80;
  border-color: var(--color_2);
}

/* おすすめ */
.price-card--recommend {
  position: relative;
}

.price-card--recommend .label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color_3);
  padding: 0.1em 2rem;
  border-radius: 0 0 1rem 1rem;
  font-size: 80%;
  font-weight: bold;
}

/* タイトル・価格 */
.price-card__head {
  padding: 3rem 1rem 2rem;
  background-color: var(--color_5);
  text-align: center;
  border-bottom: 1px solid #eee;
}

.price-card__head h3 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.price-amount {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

.price-amount span {
  font-size: 1rem;
  margin-left: 0.2rem;
}

/* テキスト・リスト */
.price-card__body {
  padding: 1.5rem;
}

.price-tag {
  font-weight: bold;
  margin-bottom: 1.5rem;
  display: inline-block;
  border-bottom: 2px solid var(--color_7);
}

.price-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--color_6);
}

/* 含まれる内容 */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: fit-content;
  margin: auto;
}

.price-list li {
  position: relative;
  padding-left: 1.2em; /*
  font-size: 1rem;*/
}

.price-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
}

@media screen and (max-width: 896px) {
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media screen and (max-width: 600px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .price-card__head {
    padding: 2.5rem 2rem 1.5rem;
  }

  .price-card__head h3 {
    font-weight: 500;
  }
}

/*=======================================================
■詳細  グラフィックデザイン
=======================================================*/
/*こんな方に選ばれています*/
.p_list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.p_list > span {
  display: flex;
  gap: 0.4rem;
}

.p_list > span::before {
  content: "›";
  flex-shrink: 0;
}

/*料金について*/
.price__table {
  width: 100%;
  border-collapse: collapse;
}

.price__table tr {
  border-bottom: 1px solid #e0e0e0;
  border-bottom: 1px solid var(--color_7);
}

.price__table td {
  padding: 1.5rem 0.5rem;
}

.price__table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-feature-settings: "tnum";
}

.price__note {
  margin: 2rem 0 1rem;
}
