@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --fontcolor: #000;
  --fontcolor-gray: #818181;
  --maincolor: #E13F3F;
  --subcolor: #00A18D;
  --fwlight: 350;
  --fwnormal: 400;
  --fwmedium: 500;
  --fwbold: 600;
  --fwblack: 800;
  --fssmall: 0.8rem;
  --fsnormal: 1rem;
  --fslarge: 1.2rem;
  --fsreset: 18px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** LP sns-oa
******************************************************************************
----------------------------------------------------------------------------*/
.lp_mv.__sns {
  background: url(../../images/sns-oa/bg-sns.jpg);
}

.__sns_title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  overflow: hidden;
}
.__sns_title_sub {
  width: clamp(250px, 25vw, 482px);
}
.__sns_title_sub img {
  width: 100%;
  display: block;
}
.__sns_title h1 {
  font-size: clamp(2em, 4vw, 4em);
  color: var(--fontcolor);
  margin-top: 1em;
  line-height: 1.3em;
}
.__sns_title_lead {
  font-size: clamp(1.5em, 2vw, 2em);
  font-weight: var(--fwblack);
  margin: 1em 0;
}
.__sns_title_btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 3em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 99px;
}

.sns_works .works-swiper {
  position: relative;
}
.sns_works .swiper-pagination {
  -webkit-transform: translate(0, calc(100% + 30px));
          transform: translate(0, calc(100% + 30px));
}
.sns_works .swiper {
  overflow: visible;
  margin-top: 30px;
}
.sns_works .swiper-button-prev,
.sns_works .swiper-button-next {
  display: grid;
  place-content: center;
  width: 3.4rem;
  height: 3.4rem;
  cursor: pointer;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}
.sns_works .swiper-button-prev {
  left: -1.6rem;
}
.sns_works .swiper-button-next {
  left: calc(100% - 1.6rem);
}
.sns_works .swiper-button-prev::before,
.sns_works .swiper-button-next::before {
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
}
.sns_works .swiper-button-prev::after,
.sns_works .swiper-button-next::after {
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  border: solid #ddd;
  border-width: 3px 3px 0 0;
  border-color: #fff;
}
.sns_works .swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.sns_works .swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.sns_works .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
.sns_works .slide {
  overflow: hidden;
  -webkit-transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 1s;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 1s;
  border-radius: 10px;
  -webkit-box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
          box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  min-height: 35.5em;
  background: #FFF;
}
.sns_works .slide__media {
  padding-top: 75%;
  position: relative;
  overflow: hidden;
}
.sns_works .slide__media img {
  height: calc(100% + 16px);
  -webkit-transform: translateY(-16px);
          transform: translateY(-16px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sns_works .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 4px 5px 14px 0px #d7d7d7;
          box-shadow: 4px 5px 14px 0px #d7d7d7;
}
.sns_works .swiper-slide:not(.swiper-slide-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
  position: relative;
}

.slide__title {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}

.slide__wrap {
  margin-top: 1.2em;
}

.slide__wraptitle {
  font-size: 0.9rem;
  font-weight: bold;
}

.slide__purposettl {
  font-size: 0.9rem;
  font-weight: bold;
  margin: 1.2em 0 0.5em;
}

.slide__content {
  padding: 1.2em 1.7em 2em;
  line-height: 1.2;
}
.slide__content .category {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  border-radius: 10px 0 10px 0;
  font-weight: bold;
}
.slide__content .category.gyosei {
  background-color: #31ae36;
  color: #fff;
}
.slide__content .category.maker {
  background-color: #ed7d31;
  color: #fff;
}
.slide__content .category.clinic {
  background-color: #5b9bd5;
  color: #fff;
}
.slide__content .category.retailer {
  background-color: #ff6699;
  color: #fff;
}
.slide__content .category.housing {
  background-color: #6666ff;
  color: #fff;
}
.slide__content .category.school {
  background-color: #ff9900;
  color: #fff;
}

.slide__iconwrap {
  margin: 1em 0 0.5em;
}
.slide__iconwrap span {
  font-size: 0.8rem;
  margin-right: 0.2em;
  color: #FFF;
  padding: 0.1em 0.5em;
  border-radius: 5px;
  line-height: 2;
}

.icon_instagram {
  background: #a333b1;
}

.icon_x {
  background: #0f1419;
}

.icon_facebook {
  background: #3b579d;
}

.icon_threads,
.icon_tiktok {
  background: #000000;
}

.icon_youtube {
  background: #ff0101;
}

.icon_web {
  background: #4a3219;
}

.icon_line {
  background: #31ae36;
}

.slide__unyoulist {
  font-size: 0.8rem;
  color: #666666;
}

.unyoulist_slash {
  padding: 0 0.2em;
}

@media screen and (min-width: 480px) {
  .jisseki .slide {
    min-height: 34em;
  }
}
@media screen and (min-width: 1024px) {
  /*
  .jisseki__contents {
    padding: 6em 0 0;
  }
  */
  .jisseki {
    padding: 4em 8em 5em;
  }
  .jisseki .slide {
    min-height: 40.5em;
  }
}
@media screen and (min-width: 1366px) {
  .jisseki .slide {
    min-height: 38em;
  }
  .jisseki .slide__content {
    padding: 0.5em 1.7em 2em;
  }
  .jisseki .slide__title {
    font-size: 1.25em;
  }
  .jisseki .slide__wrap {
    margin-top: 0.7em;
  }
  .jisseki .slide__wraptitle {
    font-size: 0.95em;
  }
  .jisseki .slide__purposettl {
    margin: 1em 0 0;
  }
  .jisseki li {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .slide__iconwrap {
    margin: 1.5em 0 0.5em;
  }
}
.jisseki__exp {
  line-height: 2.5em;
}

.jisseki__example {
  padding: 8vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.jisseki__example div[class*=jisseki__exp] {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  padding: 30px 10px;
  border-radius: 10px;
  margin-bottom: 60px;
  background-color: #fff;
  -webkit-box-shadow: -3px 8px 6px rgba(0, 0, 0, 0.1215686275);
          box-shadow: -3px 8px 6px rgba(0, 0, 0, 0.1215686275);
}
.jisseki__example div[class*=jisseki__exp] h3 {
  text-align: center;
  margin-bottom: 20px;
}
.jisseki__example div[class*=jisseki__exp] figure {
  width: 100%;
}
.jisseki__example div[class*=jisseki__exp] figure img {
  display: block;
  width: auto;
  max-width: 60px;
  margin: auto;
}
.jisseki__example div[class*=jisseki__exp] p {
  line-height: 1.9em;
}

@media screen and (min-width: 768px) {
  .jisseki__example {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .jisseki__example div[class*=jisseki__exp] {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .jisseki__example {
    padding: 4em 8em 2em;
  }
}
.jisseki__zenkoku {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.jisseki__zenkoku h2 {
  font-size: clamp(1.5em, 5vw, 4em);
  width: 100%;
  margin-top: 1em;
}
.jisseki__zenkoku-img {
  margin: 20px 0;
}
.jisseki__zenkoku-txt {
  line-height: 2em;
}
.jisseki__zenkoku-txt-strong {
  font-size: clamp(1.3em, 4vw, 2em);
  margin-bottom: 1em;
  font-weight: bold;
  border-bottom: solid 2px #e15e4f;
  padding-bottom: 5px;
}
@media screen and (min-width: 1024px) {
  .jisseki__zenkoku {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .jisseki__zenkoku h2 {
    font-size: clamp(1.5em, 3vw, 3.5em);
    text-align: center;
  }
  .jisseki__zenkoku-img {
    width: 60%;
  }
  .jisseki__zenkoku-txt {
    width: 38%;
  }
  .jisseki__zenkoku-txt-strong {
    font-size: clamp(1.5em, 2vw, 2em);
  }
}

.sns_problem {
  background: url(../../images/sns-oa/onayami-bg.jpg);
  padding: 100px 0;
}
.sns_problem_lead {
  text-align: center;
  font-size: 1.6em;
  margin-bottom: 30px;
  font-weight: var(--fwblack);
}
.sns_problem_lead span {
  color: var(--subcolor);
}
.sns_problem_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.sns_problem_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns_problem_item p {
  font-weight: var(--fwbold);
  font-size: 1.3em;
  text-align: center;
}

.sns_exp {
  padding: 100px 0;
}
.sns_exp_lead {
  font-size: clamp(1.5em, 2.6vw, 2.6em);
  font-weight: var(--fwblack);
}
.sns_exp_lead span {
  color: var(--subcolor);
  font-size: 1.2em;
}
.sns_exp_catch picture {
  display: block;
  width: 100%;
}
.sns_exp_catch picture img {
  display: block;
  margin: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
.sns_exp_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.sns_exp_item {
  width: 30%;
  max-width: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 40px 50px;
  -webkit-box-shadow: 0px 5px 7px 3px rgba(0, 0, 0, 0.0901960784);
          box-shadow: 0px 5px 7px 3px rgba(0, 0, 0, 0.0901960784);
}
.sns_exp_item h3 {
  margin: 0.3em 0 1em 0;
  font-size: 1.4em;
}
.sns_exp_item p {
  line-height: 2.1em;
}
.sns_exp_txt {
  line-height: 2.1em;
}

.sns_media {
  background: #f2f2f2;
  padding: 100px;
}
.sns_media_box {
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sns_media_snsimg {
  width: 40%;
  -webkit-animation: parallax linear both;
          animation: parallax linear both;
  animation-timeline: view();
}
.sns_media_accounts {
  width: 50%;
}
.sns_media_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  background: white;
  -webkit-box-shadow: 1px 2px 4px 0px #b3b3b3;
          box-shadow: 1px 2px 4px 0px #b3b3b3;
  margin-bottom: 30px;
}
.sns_media_item:last-child {
  margin-bottom: 0;
}
.sns_media_icon {
  width: 140px;
  aspect-ratio: 1/1;
  max-width: 556px;
}
.sns_media_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sns_media_icon.__city {
  max-height: 110px;
}
.sns_media_text {
  width: calc(100% - 175px);
  padding: 10px;
}
.sns_media_text strong {
  margin-bottom: 0.5em;
  display: block;
}
.sns_media_text p {
  font-size: 0.9em;
  margin-bottom: 0.5em;
}
.sns_media_text .follower {
  margin-bottom: 0;
}
.sns_media_text .follower span {
  font-weight: bold;
}

@-webkit-keyframes parallax {
  from {
    background-position: center 0;
  }
  to {
    background-position: center -200px;
  }
}

@keyframes parallax {
  from {
    background-position: center 0;
  }
  to {
    background-position: center -200px;
  }
}
.sns_tools_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px 30px;
}
.sns_tools_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: calc(25% - 50px);
}
.sns_tools_item .tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20%;
}
.sns_tools_item .tool figure {
  width: 72px;
  aspect-ratio: 1/1;
}
.sns_tools_item .tool figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: center;
     object-fit: center;
  -o-object-position: center;
     object-position: center;
}

.sns_flow_lead {
  line-height: 2.2em;
}
.sns_flow_img {
  width: 100%;
}
.sns_flow_img img {
  display: block;
  max-width: 100%;
  margin: auto;
}

.sns_price {
  margin-top: 100px;
}
.sns_price_table {
  display: block;
  width: 100%;
  margin-top: 50px;
  border-collapse: collapse;
}
.sns_price_table tbody, .sns_price_table tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.sns_price_table th, .sns_price_table td {
  padding: 1em;
  width: 25%;
  text-align: center;
  font-weight: bold;
  border: solid 1px #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sns_price_table th.price-th {
  padding: 30px 0;
  color: white;
  border-radius: 10px 10px 0 0;
  border: solid 1px white;
  border-bottom: none;
  border-top: none;
}
.sns_price_table th.price-th.__daikohaishin {
  background: #3CCBDF;
}
.sns_price_table th.price-th.__contentsseisaku {
  background: #FC8C42;
}
.sns_price_table th.price-th.__koukatsuikyu {
  background: #FF5156;
}
.sns_price_table td.price-td.__none {
  border: none;
}
.sns_price_table th.price-th-column {
  background: #ececec;
}/*# sourceMappingURL=sns-oa-style.css.map */