@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;
  --subcolor: #00A18D;
  --fwlight: 350;
  --fwnormal: 400;
  --fwmedium: 500;
  --fwbold: 600;
  --fssmall: 0.8rem;
  --fsnormal: 1rem;
  --fslarge: 1.2rem;
  --fsreset: 18px;
}

html, body {
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.pc_only {
  display: none;
}

.w_base {
  margin: 0;
  max-width: 90%;
  margin: auto;
}

.cta_btn_1, .cta_btn_2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  padding: 10px 2.4em 10px 2.2em;
  font-weight: var(--fwbold);
  color: white !important;
  position: relative;
  border-radius: 100vh;
  min-width: 200px;
  text-align: center;
  text-decoration: none;
}
.cta_btn_1:after, .cta_btn_2:after {
  content: "";
  width: 10px;
  aspect-ratio: 13/18;
  background: url(../images/arrow.png) no-repeat center center/contain;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cta_btn_1.__shadow, .cta_btn_2.__shadow {
  -webkit-box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.168627451);
          box-shadow: 3px 5px 10px 0px rgba(0, 0, 0, 0.168627451);
}

.cta_btn_1 {
  background: var(--maincolor);
}
.cta_btn_1.__micro span {
  position: absolute;
  background: white;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -83%);
          transform: translate(-50%, -83%);
  color: var(--maincolor);
  border: solid 1px var(--maincolor);
  border-radius: 100vh;
  padding: 5px 2em;
  width: 75%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  font-size: var(--fssmall);
  font-weight: var(--fwlight);
}
.cta_btn_1.__micro span:before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -7px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid white;
}

.cta_btn_2 {
  background: var(--subcolor);
}

.link_btn_1,
.link_btn_2 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  padding: 10px 2.4em 10px 2.2em;
  font-weight: var(--fwbold);
  position: relative;
  border-radius: 100vh;
  min-width: 200px;
  text-align: center;
  text-decoration: none;
}
.link_btn_1:after,
.link_btn_2:after {
  content: "";
  width: 10px;
  display: block;
  aspect-ratio: 13/18;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.link_btn_1 {
  color: var(--maincolor);
  border: solid 1px var(--maincolor);
}
.link_btn_1:after {
  background: url(../images/arrow-link-1.png) no-repeat center center/contain;
}
.link_btn_1.__micro {
  position: relative;
}
.link_btn_1.__micro span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  gap: 1em;
  font-size: 0.8em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.link_btn_1.__micro span:before, .link_btn_1.__micro span:after {
  content: "";
  display: block;
  width: 6px;
  height: 12px;
}
.link_btn_1.__micro span:before {
  background: url(../images/link_btn1__micro_before.png) no-repeat center/contain;
}
.link_btn_1.__micro span:after {
  background: url(../images/link_btn1__micro_after.png) no-repeat center/contain;
}

.link_btn_2 {
  color: var(--subcolor);
  border: solid 1px var(--subcolor);
}
.link_btn_2:after {
  background: url(../images/arrow-link-2.png) no-repeat center center/contain;
}

.h2_title {
  font-size: 1.6em;
}
.h2_title span {
  color: var(--maincolor);
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
  position: relative;
  font-size: 0.7em;
}

.ma_auto {
  margin: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  z-index: 9999;
}
.hd_bg .hd {
  height: 70px;
  margin: 0;
  padding: 10px;
}
.hd_bg .hd .hd_con {
  height: 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;
}
.hd_bg a.site_logo {
  max-height: 100%;
  max-width: 120px;
}
.hd_bg a.site_logo img {
  display: block;
}

.hd_nav-area_sp.active {
  visibility: visible !important;
}

.hd_nav-area_sp {
  visibility: hidden;
  position: fixed;
  z-index: 4;
  width: 100%;
  height: 100svh;
  top: 0;
  left: 0;
  padding: 50px 5%;
  color: white;
}
.hd_nav-area_sp_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2em 1.5em;
  margin-bottom: 4em;
}
.hd_nav-area_sp_nav ul li {
  width: 45%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.hd_nav-area_sp_nav ul li a {
  color: white;
  text-decoration: none;
}
.hd_nav-area_sp_nav ul:after {
  content: "";
  display: block;
  width: 45%;
}
.hd_nav-area_sp_btnbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2%;
}
.hd_nav-area_sp_btnbox .cta_btn_2, .hd_nav-area_sp_btnbox .cta_btn_1 {
  font-size: 0.8em;
  width: 48%;
  padding: 0.6em 2.5em 0.6em 1.7em;
  min-width: initial;
  opacity: 1;
}
.hd_nav-area_sp .menu-item-tel {
  position: relative;
  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;
  padding: 30px 0;
}
.hd_nav-area_sp .menu-item-tel a {
  display: block;
  color: white;
  font-weight: var(--fwbold);
  line-height: 1.15em;
  position: relative;
  padding-left: 17.71px;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
}
.hd_nav-area_sp .menu-item-tel a:before {
  content: "";
  background: url(../images/phone.png) no-repeat center center/contain;
  width: 13.71px;
  aspect-ratio: 21/31;
  position: absolute;
  left: -6px;
  top: calc(50% + 3px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-filter: invert(1);
          filter: invert(1);
}
.hd_nav-area_sp .menu-item-tel:before {
  content: "";
  display: block;
  width: 80%;
  position: absolute;
  border: solid 1px #b7b7b7;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hd_nav-area_sp .hamburger {
  visibility: visible;
  position: fixed;
  z-index: 2;
  bottom: 97px;
  right: 8px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hd_nav-area_sp span.hamb_bg {
  display: block;
  visibility: visible;
  position: fixed;
  bottom: 97px;
  right: 8px;
  height: 50px;
  width: 50px;
  z-index: -1;
  background: #4c4c4c;
  border-radius: 100vh;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.hd_nav-area_sp span.hamb_bg.active {
  scale: 50;
  -webkit-transform: translate(-3px, 3px);
          transform: translate(-3px, 3px);
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 32px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

.sp_footer_btn {
  position: fixed;
  z-index: 2;
  width: 100%;
  bottom: 43px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2%;
}
.sp_footer_btn .cta_btn_2, .sp_footer_btn .cta_btn_1 {
  width: 48%;
  padding: 0.6em 2.5em 0.6em 1.7em;
  font-size: 0.9em;
  min-width: initial;
  border-radius: 10px;
  opacity: 1;
}
@media screen and (max-width: 464px) {
  .sp_footer_btn .cta_btn_2, .sp_footer_btn .cta_btn_1 {
    padding: 0.6em 1.7em 0.6em 0.9em;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_contact {
  background: #F6F5F2;
  padding: 50px 0 60px;
}
.ft_contact_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.ft_contact_item {
  background: white;
  padding: 2em;
  width: 100%;
}
.ft_contact_item_subtitle {
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  font-style: normal;
  color: var(--maincolor);
  margin-bottom: 1.5em;
}
.ft_contact_item_title {
  font-size: var(--fslarge);
  font-weight: var(--fwbold);
  padding-bottom: 0.5em;
  border-bottom: solid 1px #000;
  margin-bottom: 0.8em;
}
.ft_contact_btn_1, .ft_contact_btn_2 {
  display: block;
  width: 100%;
  padding: 1em 0;
  text-align: center;
  border-radius: 10px;
  margin-top: 1em;
  color: white;
  text-decoration: none;
  font-weight: var(--fwbold);
}
.ft_contact_btn_1 {
  background-color: var(--maincolor);
}
.ft_contact_btn_2 {
  background-color: var(--subcolor);
}

.ft_info_wrap {
  padding: 50px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.ft_info_company {
  width: 100%;
}
.ft_info_company_logos {
  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;
}
.ft_info_company_logos img {
  width: 50%;
}
.ft_info_company_logos p {
  width: 50%;
  font-size: 1.2em;
  font-weight: var(--fwbold);
}
.ft_info_company_logos p small {
  font-weight: var(--fwnormal);
}
.ft_info_company iframe {
  width: 100%;
  aspect-ratio: 3/1;
}

.ft_info_links {
  width: 90%;
}
.ft_info_links .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.ft_info_links .sns a {
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
}
.ft_info_links .sns a img {
  width: 100%;
}
.ft_info_links .ft_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.ft_info_links .ft_nav ul {
  width: 30%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}
.ft_info_links .ft_nav ul p {
  margin-bottom: 20px;
  font-weight: var(--fwbold);
}
.ft_info_links .ft_nav ul li {
  margin-bottom: 10px;
}
.ft_info_links .ft_nav ul li a {
  text-decoration: none;
  color: var(--fontcolor);
}
.ft_info_links .ft_nav ul li a:hover {
  text-decoration: underline;
}

.ft_copy {
  text-align: center;
  padding: 10px 0;
  background-color: var(--subcolor);
  color: white;
  display: block;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_mv {
  width: 100%;
  aspect-ratio: 768/774;
}
.index_mv video {
  width: 100%;
}
.index_mv img {
  width: 100%;
  margin-top: 120px;
}

.index_service_lead {
  text-align: center;
  font-size: var(--fslarge);
  margin-top: 1em;
}
.index_service_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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 30px 0;
}
.index_service_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
  gap: 10px;
  padding: 1em 2em 1.5em;
  border: solid 3px var(--subcolor);
  border-radius: 10px;
}
.index_service_item h3 {
  font-weight: var(--fwbold);
  font-size: clamp(1.5em, 2vw, 30px);
  color: var(--subcolor);
}
.index_service_item p {
  line-height: 2em;
}
.index_service_btnbox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 10px;
}
.index_service_btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  padding: 7px 2em 7px 1.8em;
  font-weight: var(--fwnormal);
  border: solid 1px var(--maincolor);
  position: relative;
  border-radius: 100vh;
  min-width: 200px;
  text-align: center;
  text-decoration: none;
  color: var(--maincolor);
  font-size: 0.9em;
}
.index_service_btn:after {
  content: ">";
  color: var(--maincolor);
  width: 10px;
  aspect-ratio: 13/18;
  position: absolute;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.index_works {
  background: url(../images/index-works-bg.jpg) no-repeat center right/cover;
  padding: 50px 0;
}
.index_works_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.index_works_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;
  gap: 10px;
  width: 90%;
}
.index_works_item figure {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.index_works_item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.index_works_item h4 {
  color: var(--subcolor);
  font-weight: var(--fwmedium);
  font-size: var(--fslarge);
}
.index_works_item table tr th {
  padding-right: 1em;
}

.index_works_lead {
  margin: 50px 0 100px;
}
.index_works_lead .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  width: 100%;
}
.index_works_lead_con {
  margin: 50px auto;
}
.index_works_lead_title {
  margin-bottom: 1em;
}
.index_works_lead_title strong {
  font-size: clamp(1.5em, 1.8vw, 2em);
}

.index_features {
  margin-bottom: 100px;
}
.index_features_title {
  width: 100%;
}
.index_features_title img {
  display: block;
  margin: auto;
}
.index_features_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: 30px;
  margin-top: 30px;
}
.index_features_item {
  padding: 2em 2.5em;
  width: 100%;
  background-color: #F6F5F2;
  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;
  gap: 30px;
}
.index_features_item_p {
  font-weight: var(--fwbold);
  text-align: center;
}
.index_features_item_p span {
  color: var(--subcolor);
}

/*----------------------------------------------------------------------------
******************************************************************************
** LP
******************************************************************************
----------------------------------------------------------------------------*/
.lp_mv {
  width: 90%;
  margin: auto;
  border-radius: 70px 70px 0 0;
  height: 80vh;
  max-height: 670px;
}

.lp_mv {
  position: relative;
  overflow: hidden;
}
.lp_mv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.lp_mv:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
  background: #849EB8;
  position: absolute;
}

.lp_main span.red {
  color: var(--maincolor);
  font-weight: var(--fwbold);
}
.lp_main span.blue {
  color: var(--subcolor);
  font-weight: var(--fwbold);
}
.lp_main span.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(255, 247, 0, 0.4901960784)));
  background: linear-gradient(transparent 50%, rgba(255, 247, 0, 0.4901960784) 50%);
}

/* パンくずリスト */
.breadcrumb {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  padding: 8px 10px;
  font-size: 0.8rem;
}
.breadcrumb .breadcrumb-inner {
  padding: 0 10px;
  font-size: 0.8rem;
}
.breadcrumb span {
  margin: 0 4px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** お問い合わせ
******************************************************************************
----------------------------------------------------------------------------*/
.contact_section {
  background: #f7f7f7;
  padding: 0 0 60px;
}
.contact_section .contact_intro {
  background: #fff center/cover no-repeat;
  padding: 50px 20px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.contact_section .contact_intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.contact_section .contact_intro p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}
.contact_section .contact {
  width: 95%;
  margin: 60px auto 0;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  font-family: "Noto Sans JP", sans-serif;
}
.contact_section .contact h2 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  color: #222;
}
.contact_section .contact .contact_base {
  /* チェックボックスのグループ */
  /* プライバシーポリシー */
  /* 送信ボタン */
}
.contact_section .contact .contact_base .form_group {
  margin-bottom: 25px;
}
.contact_section .contact .contact_base .form_group label {
  font-size: 1rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #333;
}
.contact_section .contact .contact_base .form_group label .required {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.8rem;
  background: #e63946;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}
.contact_section .contact .contact_base .form_group input[type=text],
.contact_section .contact .contact_base .form_group input[type=email],
.contact_section .contact .contact_base .form_group input[type=tel],
.contact_section .contact .contact_base .form_group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.contact_section .contact .contact_base .form_group input[type=text]:focus,
.contact_section .contact .contact_base .form_group input[type=email]:focus,
.contact_section .contact .contact_base .form_group input[type=tel]:focus,
.contact_section .contact .contact_base .form_group textarea:focus {
  border-color: #1a2b4c;
  -webkit-box-shadow: 0 0 0 3px rgba(26, 43, 76, 0.1);
          box-shadow: 0 0 0 3px rgba(26, 43, 76, 0.1);
  outline: none;
}
.contact_section .contact .contact_base .form_group textarea {
  min-height: 120px;
  resize: vertical;
}
.contact_section .contact .contact_base .wpcf7-form .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 10px 0;
}
.contact_section .contact .contact_base .wpcf7-form .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
}
.contact_section .contact .contact_base .wpcf7-form .wpcf7-list-item label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #1a2b4c;
  cursor: pointer;
}
.contact_section .contact .contact_base .privacy {
  margin-top: 40px;
}
.contact_section .contact .contact_base .privacy .privacy_link {
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.contact_section .contact .contact_base .privacy .privacy_link a {
  color: #1a2b4c;
  text-decoration: underline;
}
.contact_section .contact .contact_base .privacy .privacy_link a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.contact_section .contact .contact_base .privacy .checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
}
.contact_section .contact .contact_base .privacy .checkbox label input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #1a2b4c;
}
.contact_section .contact .contact_base input[type=button].wpcf7-previous {
  width: 100%;
  padding: 14px 0;
  background: #ffffff;
  border: solid 1px #1a2b4c;
  border-radius: 30px;
  color: #1a2b4c;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  margin: 30px auto;
}
.contact_section .contact .contact_base input[type=submit] {
  width: 100%;
  padding: 14px 0;
  background: #1a2b4c;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.contact_section .contact .contact_base input[type=submit]:hover {
  background: #2e4675;
}

.wpcf7-response-output {
  display: none;
}

/* サンクスページ */
.contact_thanks_section {
  padding: 50px 10px;
}
.contact_thanks_section .contact_thanks_intro {
  padding: 80px 10px;
}
.contact_thanks_section .contact_thanks_intro h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.contact_thanks_section .contact_thanks_intro p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 資料ダウンロード */
.download_section {
  padding: 0 10px 10px;
}

.download_intro {
  padding: 50px 10px;
}
.download_intro h2 {
  font-size: 1.8rem;
}
.download_intro p {
  font-size: 0.95rem;
}

.download {
  padding: 20px 15px;
  margin: 50px 10px;
}
.download h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.download .download_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.download .download_column .left h3 {
  font-size: 1.5rem;
  padding: 0.5em 0.2em;
  color: #00A18D;
}
.download .download_column .left ul li {
  font-size: 1.2rem;
  padding: 0.2em 0.2em;
  margin-bottom: 10px;
}
.download .download_column .left ul li img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}
.download .download_column .left .download_contents img {
  max-width: 100%;
  height: auto;
}
.download .download_column .left .caption {
  font-size: 0.75rem;
  padding: 0 0.2em;
}
.download .download_column .right .box {
  padding: 20px;
}
.download .download_column .right .box h3 {
  font-size: 1rem;
}
.download .download_column .right .box input,
.download .download_column .right .box textarea {
  font-size: 0.9rem;
  padding: 10px;
}
.download .download_column .right .box input[type=submit] {
  padding: 12px 0;
  font-size: 0.95rem;
}
.download .download_column .right .box label {
  font-size: 0.85rem;
}
.download .download_column .right .box .checkbox input {
  margin-right: 6px;
}
.download .download_column .right .box .wpcf7-list-item {
  display: block;
  margin: 0 0 10px;
}

/* ダウンロード後 */
.document_section {
  padding: 50px 10px;
}
.document_section .document_intro {
  padding: 50px 10px;
}
.document_section .document_intro h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
.document_section .document_intro p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 資料ダウンロード
******************************************************************************
----------------------------------------------------------------------------*/
.download_section {
  background: #f2f2f2;
  padding: 0 0 10px 0;
}

/* ファーストビュー部分 */
.download_intro {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 50px 20px;
  text-align: center;
  background-color: #ffffff;
}
.download_intro h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}
.download_intro p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.download {
  max-width: 1200px;
  width: 95%;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin: 20px auto;
}
.download h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
}
.download p {
  color: #555;
  text-align: left;
}
.download .download_column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.download .download_column .left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.download .download_column .left h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #00A18D;
  padding: 0 0.5em;
}
.download .download_column .left ul {
  margin-bottom: 25px;
  padding: 0 0.5em;
}
.download .download_column .left ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0 0.5em;
  list-style: none;
}
.download .download_column .left ul li img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.download .download_column .left .download_contents {
  margin: 20px auto 10px;
  text-align: center;
}
.download .download_column .left .download_contents img {
  max-width: 100%;
  height: auto;
  border: 1px solid #eee;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.download .download_column .left .caption {
  font-size: 0.8rem;
  color: #666;
  margin-top: 6px;
  padding: 0 0.5em;
}
.download .download_column .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.download .download_column .right .box {
  display: block;
  background-color: #f2f2f2;
  padding: 30px;
  border-radius: 10px;
}
.download .download_column .right .box p {
  margin: 0 0 1.5em;
  line-height: 1em;
}
.download .download_column .right .box h3 {
  font-size: 1.1rem;
}
.download .download_column .right .box input[type=text],
.download .download_column .right .box input[type=email],
.download .download_column .right .box input[type=tel],
.download .download_column .right .box textarea {
  display: block;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
}
.download .download_column .right .box input[type=submit] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 30px;
  background: #1a2b4c;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
}
.download .download_column .right .box input[type=submit]:hover {
  background: #2f4a7a;
}
.download .download_column .right .box label {
  font-size: 0.9rem;
  display: block;
  font-weight: 600;
}
.download .download_column .right .box label .required {
  background: #db3d3d;
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
}
.download .download_column .right .box div.wpcf7 .wpcf7-spinner {
  display: none !important;
}
.download .download_column .right .box label[for=your_email_privacy_policy] {
  display: block;
  margin-bottom: 5px;
}
.download .download_column .right .box .privacy_link {
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 1rem;
  text-align: left;
  line-height: 0;
}
.download .download_column .right .box .privacy_link:hover {
  color: #2f5c7a;
  text-decoration: none;
}
.download .download_column .right .box .checkbox input {
  margin-right: 6px;
  width: auto;
}
.download .download_column .right .box .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** ダウンロード後
******************************************************************************
----------------------------------------------------------------------------*/
.document_section {
  background: #f7f7f7;
  padding: 100px 0 60px;
}
.document_section .document_intro {
  background: #fff center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.document_section .document_intro h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.document_section .document_intro p {
  font-size: 1rem;
  color: #202020;
  line-height: 1.8;
}

.document_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin: 10px auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.document_contents .document_item {
  width: 100%;
  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;
  text-decoration: none;
  margin-bottom: 30px;
}
.document_contents .document_item p {
  font-size: 1em;
  text-align: center;
  margin-bottom: 1em;
  font-weight: bold;
}
.document_contents .document_item a {
  display: block;
  width: 100%;
}
.document_contents .document_item a img {
  display: block;
  margin: auto;
  max-width: 500px;
  width: 100%;
  -webkit-box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1450980392);
          box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1450980392);
}

/*----------------------------------------------------------------------------
******************************************************************************
** archive
******************************************************************************
----------------------------------------------------------------------------*/
.bcWrap {
  width: 100%;
  background: #F6F5F2;
}
.bcWrap #breadcrumbs {
  padding: 10px 0px;
}
.bcWrap #breadcrumbs span {
  margin-right: 1em;
  margin-left: 1em;
}
.bcWrap #breadcrumbs span:first-child {
  margin-left: 0;
}

.archive_mv {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 52px 52px;
  background-repeat: repeat;
  background-position: center center;
  padding: 50px 0 80px;
}
.archive_mv_innr h1 {
  text-align: center;
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 0.5em;
}
.archive_mv_innr p {
  text-align: center;
  margin-bottom: 1em;
}

.archive_select {
  background: #F6F5F2;
  padding: 30px 0;
}
.archive_select fieldset {
  border: none;
  padding: 0;
}
.archive_select_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: center;
          flex-direction: center;
}
.archive_select_box p {
  width: 95px;
  font-weight: bold;
  font-size: 0.8em;
}
.archive_select_box div {
  width: calc(100% - 95px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1.5em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.archive_select_box div label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 0.8em;
}
.archive_select_box div label input[type=checkbox] {
  width: 20px;
  height: 0;
}
.archive_select_box div label input[type=checkbox]:before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 3px;
  border: solid 1px #e6e6e6;
  background: white;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.archive_select_box div label input[type=checkbox]:checked:before {
  background: rgb(255, 0, 0);
  background: url(../images/check.png) center center/contain no-repeat, #E13F3F;
}
.archive_select button.archive_select_submit {
  display: block;
  margin: 30px auto 0;
  background-color: white;
}

.archive_works {
  margin-top: 50px;
}
.archive_works_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 0;
  margin-bottom: 30px;
}
.archive_works_item {
  width: 100%;
}
.archive_works_item .thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 600/450;
  overflow: hidden;
}
.archive_works_item .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_works_item .title {
  margin-top: 1em;
}
.archive_works_item .title a {
  color: var(--subcolor);
  font-weight: bold;
  text-decoration: none;
}
.archive_works_item .description {
  margin: 1em 0;
  line-height: 1.5em;
  min-height: 3em;
}

ul.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 1em;
}
ul.tags li {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.7em;
  padding: 0.3em 1em 0.3em 2em;
  border: solid 1px #c0c0c0;
  border-radius: 4px;
}
ul.tags li:before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  aspect-ratio: 1/1;
  background: var(--maincolor);
  left: 0.9em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
ul.tags li.sns-consalting:before {
  background: var(--maincolor);
}
ul.tags li.youtube:before {
  background: #FF8F8F;
}
ul.tags li.movie:before {
  background: #FFF1CB;
}
ul.tags li.facebook:before {
  background: #C2E2FA;
}
ul.tags li.instagram:before {
  background: #B7A3E3;
}
ul.tags li.threads:before {
  background: #ECF4E8;
}
ul.tags li.tiktok:before {
  background: #CBF3BB;
}
ul.tags li.x:before {
  background: #ABE7B2;
}
ul.tags li.web:before {
  background: #93BFC7;
}

.pager_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  margin-bottom: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.pager_list .page-numbers {
  width: 2em;
  aspect-ratio: 1/1;
  border: solid 1px #c4c4c4;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pager_list .page-numbers.next, .pager_list .page-numbers.prev {
  text-decoration: none;
}
.pager_list .page-numbers.current {
  color: var(--maincolor);
}

/*----------------------------------------------------------------------------
******************************************************************************
** single works
******************************************************************************
----------------------------------------------------------------------------*/
.single_mv {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 52px 52px;
  background-repeat: repeat;
  background-position: center center;
  padding: 50px 0 50px;
}
.single_mv_innr h1 {
  text-align: center;
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 0.5em;
}
.single_mv_innr p {
  text-align: center;
  margin-bottom: 1em;
}

.single_title {
  padding: 50px 0 80px;
}
.single_title_innr h1 {
  font-size: clamp(1.8em, 3vw, 2.5em);
  margin-bottom: 0.5em;
}
.single_title_innr p.sub_title {
  font-size: 1.2em;
  font-weight: bold;
}

.single_content_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single_content_thumb {
  width: 100%;
}
.single_content_editor {
  width: 100%;
}
.single_content_editor .works-table tbody tr th,
.single_content_editor .works-table tbody tr td {
  border: initial;
  border-bottom: solid 1px #d1d1d1;
}
.single_content_btn_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin: 50px 0;
}/*# sourceMappingURL=sp.css.map */