@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
body {
  min-height: 100vh;
  overflow-x: clip;
}

.animation-bg {
  content: "";
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #E8E8E8;
  -webkit-animation-name: PageAnime-fade;
          animation-name: PageAnime-fade;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  pointer-events: none;
}

@-webkit-keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes PageAnime-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.grecaptcha-badge {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** base color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** tablet size
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.hd_bg.headerColorScroll {
  background: rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.hd_bg.headerColorScroll:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
}
.hd_bg .hd {
  position: relative;
  width: 100%;
  max-width: 1024px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: 0 auto;
  padding: 10px 20px;
}
.hd_bg .hd_logo {
  width: calc(100% - 30vw);
  max-width: 280px;
}
.hd_bg .hd_btn {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  position: fixed;
  top: 0px;
  right: -100%;
  z-index: 100;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  background: #444;
  color: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10rem;
    padding: 0 60px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav {
    padding: 0 20px;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav {
    padding: 0 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_list {
    width: 100vw;
    max-width: 585px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 145px 0;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav_list {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 145px 0 100px;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav_list {
    width: 100%;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 145px 0 100px;
  }
}
.hd_nav_list > li {
  position: relative;
  border-top: 1px solid #787878;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_list > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.hd_nav_list > li > a {
  position: relative;
  display: block;
  padding: 15px;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
}
.hd_nav_list > li > .child_wrap_btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 10;
  width: 35px;
  height: 35px;
  border: 1px solid #787878;
  border-radius: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_list > li > .child_wrap_btn {
    display: none;
  }
}
.hd_nav_list > li > .child_wrap_btn::before, .hd_nav_list > li > .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: #fff;
}
.hd_nav_list > li > .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(0deg) translateX(-50%);
  transform: rotate(0deg) translateX(-50%);
}
.hd_nav_list > li > .child_wrap_btn::after {
  top: 50%;
  left: 9px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hd_nav_list > li > .child_wrap_btn.close::after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_list > li > .child_wrap {
    padding: 20px 0;
    padding-left: 6.65rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav_list > li > .child_wrap {
    display: none;
    margin-top: -0.5rem;
    padding: 0 0 20px 3em;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav_list > li > .child_wrap {
    display: none;
    margin-top: -0.5rem;
    padding: 0 0 20px 3em;
  }
}
.hd_nav_list > li > .child_wrap > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 1.3rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover, .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a.current {
  background-color: #000;
  -webkit-box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
          box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_info {
    position: sticky;
    top: 0;
    width: 100vw;
    padding-top: 145px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav_info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_info .logo {
    margin-bottom: 25px;
  }
  .hd_nav_info .logo img {
    width: 100%;
    max-width: 329px;
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav_info .logo {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav_info .logo {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_info .address {
    margin-bottom: 15px;
  }
  .hd_nav_info .address dt {
    margin-bottom: 5px;
    font-weight: 700;
  }
  .hd_nav_info .address dd address {
    font-style: normal;
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hd_nav_info .address {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .hd_nav_info .address {
    display: none;
  }
}
.hd_nav_info .sns {
  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;
  gap: 2.7rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hd_nav_info .contact {
    display: none;
  }
}
.hd_nav_info .contact a {
  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;
  width: 100vw;
  max-width: 156px;
  height: 100vh;
  max-height: 56px;
  background: #fff;
  color: #000;
  font-size: 1.7rem;
  font-weight: 700;
  border-radius: 50vh;
  overflow: hidden;
}
.hd_nav_info .contact a .hover_scroll {
  position: relative;
  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;
  width: 100%;
}
.hd_nav_info .contact a .hover_scroll .hover_scroll_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.6em 0;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1);
  transition: opacity 0.4s, -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1);
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s;
  transition: transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1), opacity 0.4s, -webkit-transform 0.4s cubic-bezier(0.15, 0.85, 0.45, 1);
}
.hd_nav_info .contact a .hover_scroll .hover_scroll_text::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 14px;
  margin-right: 10px;
  background: url(../images/icon_contact_black.svg) no-repeat center center;
  background-size: contain;
}
.hd_nav_info .contact a .hover_scroll .hover_scroll_text:nth-child(2) {
  position: absolute;
  top: 100%;
  opacity: 0;
}
.hd_nav_info .contact a .hover_scroll .hover_scroll_text:nth-child(2)::before {
  background: url(../images/icon_contact_red.svg) no-repeat center center;
}
@media (hover: hover) {
  .hd_nav_info .contact a:hover .hover_scroll_text {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .hd_nav_info .contact a:hover .hover_scroll_text:nth-child(2) {
    opacity: 1;
    color: #DD001B;
  }
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 60px;
  height: 60px;
  background: #DD001B;
  border-radius: 50%;
  border: 1px solid #DD001B;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.sp_nav_trigger::after, .sp_nav_trigger::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: calc(50% - 2px);
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 6px;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.sp_nav_trigger::before {
  display: block;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-box-shadow: 10px 0 0 #fff;
          box-shadow: 10px 0 0 #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.sp_nav_trigger::after {
  -webkit-transform: translateX(9px);
          transform: translateX(9px);
}
.sp_nav_trigger.sp_active {
  background: transparent;
  border-color: #787878;
  -webkit-transform: translateY(-50%) rotate(360deg);
          transform: translateY(-50%) rotate(360deg);
}
.sp_nav_trigger.sp_active::before {
  width: 30px;
  height: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transform: rotate(45deg) translate(-10px, 9px);
          transform: rotate(45deg) translate(-10px, 9px);
}
.sp_nav_trigger.sp_active::after {
  width: 30px;
  height: 3px;
  -webkit-transform: rotate(-45deg) translate(-9px, -10px);
          transform: rotate(-45deg) translate(-9px, -10px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  padding: 30px 10px;
}
.con_bg .con .main {
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  background: #E8E8E8;
}
.ft_bg .ft {
  padding: 60px 25px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 3rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 520px) {
  .ft_bg .ft {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.ft_bg .ft_left {
  width: 100%;
  max-width: 350px;
}
.ft_bg .ft_left .ft_logo {
  margin-bottom: 25px;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_left .ft_logo {
    width: calc(100% - 20vw);
    max-width: 329px;
  }
}
@media screen and (max-width: 520px) {
  .ft_bg .ft_left .ft_logo {
    width: calc(100% - 20vw);
    max-width: 329px;
  }
}
.ft_bg .ft_left .ft_logo img {
  width: 100%;
  max-width: 329px;
}
.ft_bg .ft_left .ft_address {
  margin-bottom: 15px;
}
.ft_bg .ft_left .ft_address dt {
  margin-bottom: 5px;
  font-weight: 700;
}
.ft_bg .ft_left .ft_address dd address {
  font-style: normal;
  font-size: 1.3rem;
}
.ft_bg .ft_left .ft_sns {
  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;
  gap: 2.7rem;
  margin-bottom: 40px;
}
.ft_bg .ft_left .ft_sns_item a {
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ft_bg .ft_left .ft_sns_item a:hover {
  opacity: 0.6;
}
.ft_bg .ft_left .ft_link {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_left .ft_link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
  .ft_bg .ft_left .ft_link_item {
    width: calc((100% - 1rem) / 2);
    max-width: 250px;
  }
  .ft_bg .ft_left .ft_link_item a {
    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;
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #fff;
    font-size: 2rem;
    border: 1px solid #DEDBDB;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .ft_bg .ft_left .ft_link_item a:hover {
    opacity: 0.6;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 520px) {
  .ft_bg .ft_right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
  }
}
.ft_bg .ft_right .ft_nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.ft_bg .ft_right .ft_nav_list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  overflow: hidden;
}
.ft_bg .ft_right .ft_nav_list > li > a {
  position: relative;
  display: inline-block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 1em;
  background: #E8E8E8;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ft_bg .ft_right .ft_nav_list > li > a::before {
  position: absolute;
  top: 11px;
  left: 0;
  z-index: -1;
  content: "";
  width: 100vw;
  height: 1px;
  background: #707070;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_right .ft_nav_list > li > a::before {
    display: none;
  }
}
.ft_bg .ft_right .ft_nav_list > li > a:after {
  position: absolute;
  bottom: 0;
  right: 1em;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.ft_bg .ft_right .ft_nav_list > li > a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.ft_bg .ft_right .ft_nav_list > li.contact {
  margin-top: 2rem;
}
.ft_bg .ft_right .ft_nav_list > li.contact a::before {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_right .ft_nav_list > li ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_right .ft_nav_list > li ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .ft_bg .ft_right .ft_nav_list > li ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_right .ft_nav_list > li ul li {
    width: calc((100% - 1rem) / 2);
  }
}
@media screen and (max-width: 520px) {
  .ft_bg .ft_right .ft_nav_list > li ul li {
    width: calc((100% - 1rem) / 2);
  }
}
.ft_bg .ft_right .ft_nav_list > li ul li a {
  position: relative;
  display: inline-block;
  font-size: clamp(1.1rem, 1.009rem + 0.45vw, 1.3rem);
  font-weight: 400;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ft_bg .ft_right .ft_nav_list > li ul li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.ft_bg .ft_right .ft_nav_list > li ul li a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.ft_bg .ft_right .ft_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 20px;
}
.ft_bg .ft_right .ft_link_item {
  width: calc((100% - 2rem) / 2);
}
.ft_bg .ft_right .ft_link_item a {
  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;
  width: 100%;
  height: 100%;
  padding: 10px;
  background: #fff;
  font-size: clamp(1.6rem, 1.418rem + 0.91vw, 2rem);
  border: 1px solid #DEDBDB;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.ft_bg .ft_right .ft_link_item a:hover {
  opacity: 0.6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_right .ft_link {
    display: none;
  }
}
.ft_bg .ft_copy {
  padding: 25px 0;
  background: #fff;
  font-size: 1.3rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  overflow: hidden;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 60px;
  height: 60px;
  background: #DD001B;
  border: 1px solid #DD001B;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pt a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 53%;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pt a .arrow {
  position: absolute;
  top: 10px;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 8px;
  background: none;
  border: none;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.pt a .arrow::before, .pt a .arrow::after {
  background: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pt a .arrow::before {
  width: 3px;
  bottom: 0;
}
.pt a .arrow::after {
  height: 3px;
  right: 0;
}
.pt:hover {
  background: #fff;
  color: #DD001B;
}
.pt:hover a {
  color: #DD001B;
}
@-webkit-keyframes arrow-up {
  0% {
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
    opacity: 1;
  }
  37% {
    -webkit-transform: translate(0, -3rem) rotate(45deg);
            transform: translate(0, -3rem) rotate(45deg);
    opacity: 1;
  }
  38% {
    -webkit-transform: translate(0, -3rem) rotate(45deg);
            transform: translate(0, -3rem) rotate(45deg);
    opacity: 0;
  }
  39% {
    -webkit-transform: translate(0, 3rem) rotate(45deg);
            transform: translate(0, 3rem) rotate(45deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: translate(0, 3rem) rotate(45deg);
            transform: translate(0, 3rem) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
    opacity: 1;
  }
}
@keyframes arrow-up {
  0% {
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
    opacity: 1;
  }
  37% {
    -webkit-transform: translate(0, -3rem) rotate(45deg);
            transform: translate(0, -3rem) rotate(45deg);
    opacity: 1;
  }
  38% {
    -webkit-transform: translate(0, -3rem) rotate(45deg);
            transform: translate(0, -3rem) rotate(45deg);
    opacity: 0;
  }
  39% {
    -webkit-transform: translate(0, 3rem) rotate(45deg);
            transform: translate(0, 3rem) rotate(45deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: translate(0, 3rem) rotate(45deg);
            transform: translate(0, 3rem) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0) rotate(45deg);
            transform: translate(0) rotate(45deg);
    opacity: 1;
  }
}
.pt:hover a .arrow::before, .pt:hover a .arrow::after {
  background: #DD001B;
}
@media (hover: hover) {
  .pt:hover .arrow {
    -webkit-animation: arrow-up 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
            animation: arrow-up 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 80px 0 0;
}
.pager .pager_list {
  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: 1.5rem;
}
.pager .pager_list .page-numbers {
  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;
  color: #000;
  font-size: clamp(1.2rem, 1.064rem + 0.68vw, 1.5rem);
  text-align: center;
  text-decoration: none;
  border: 1px solid #E8E6E6;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .pager .pager_list .page-numbers {
    width: 60px;
    height: 60px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .pager .pager_list .page-numbers {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 520px) {
  .pager .pager_list .page-numbers {
    width: 40px;
    height: 40px;
  }
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: #E8E6E6;
}
.pager .pager_list .page-numbers.dots {
  border-color: #E8E6E6;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  overflow: clip;
}
.index_main .index_about {
  position: relative;
  z-index: 1;
  margin-bottom: 110px;
}
.index_main .index_about h2 {
  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: 1rem;
  padding: 30px 10px;
  font-size: clamp(1.4rem, 2vw + 1rem, 1.8rem);
  font-weight: 500;
  text-align: center;
}
.index_main .index_about h2 span {
  display: inline-block;
  padding: 10px;
  color: #fff;
}
.index_main .index_about h2 span:first-of-type {
  background: #d97234;
}
.index_main .index_about h2 span:last-of-type {
  background: #1293ce;
}
.index_main .index_about_catch {
  -webkit-overflow: clip;
  overflow: clip;
  position: relative;
  z-index: 5;
  width: 100%;
}
.index_main .index_about_catch_logo {
  position: absolute;
  top: calc(100svh - 35rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  height: 90rem;
  padding: 0 20px;
}
.index_main .index_about_catch_logo .logo img {
  opacity: 0.62;
}
.index_main .index_about_catch_slider img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.index_main .index_about_catch_movie {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  z-index: 1;
}
.index_main .index_about_catch_movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_about_section {
  overflow: clip;
  padding: 0 20px;
}
.index_main .index_about_section .logo_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 90rem;
  margin: -75rem 0 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_section .logo_wrapper {
    height: 100rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_section .logo_wrapper {
    height: 100rem;
  }
}
.index_main .index_about_section_con {
  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;
  width: 100%;
  max-width: 1000px;
  margin: 80px auto 100px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_section_con {
    -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;
    padding: 0 0 120px;
  }
}
.index_main .index_about_section_con_movie {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 350px;
}
@media screen and (max-width: 520px) {
  .index_main .index_about_section_con_movie {
    margin-bottom: 30px;
  }
}
.index_main .index_about_section_con_movie::before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
  content: "";
  background: #f7f7f7;
  border-radius: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_section_con_movie::before {
    width: 700px;
    height: 700px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_section_con_movie::before {
    width: 700px;
    height: 700px;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_about_section_con_movie::before {
    width: 100vw;
    max-width: 350px;
    height: 100vh;
    max-height: 350px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_section_con_movie video {
    width: 80%;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_section_con_movie video {
    width: 80%;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_about_section_con_movie video {
    width: 50%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_section_con_movie img {
    max-width: 262px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_section_con_movie img {
    max-width: 262px;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_about_section_con_movie img {
    max-width: 160px;
  }
}
.index_main .index_about_section_con_inner {
  width: 100%;
  max-width: 570px;
}
.index_main .index_about_section_con_inner h3 {
  margin-bottom: 30px;
  font-size: clamp(1.8rem, 1.3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.032em;
}
.index_main .index_about_section_con_inner h3::before {
  content: attr(data-subttl);
  display: block;
  margin-bottom: 20px;
  font-family: "Questrial", sans-serif;
  color: #DD001B;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.index_main .index_about_section_con_inner p {
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 2.2;
}
.index_main .index_about_service {
  margin-bottom: 12rem;
  padding: 0 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_service {
    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: 2rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_service {
    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: 2rem;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_about_service {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_about_service_item {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_about_service_item {
    width: calc((100% - 2rem) / 2);
  }
}
.index_main .index_about_service_item a {
  display: block;
}
.index_main .index_about_service_item a .img {
  position: relative;
  overflow: hidden;
}
.index_main .index_about_service_item a .img_wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
.index_main .index_about_service_item a .img_mask {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.index_main .index_about_service_item a .img_mask .txt {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: top 0.5s ease;
  transition: top 0.5s ease;
}
.index_main .index_about_service_item a .img::before {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon_link_white.svg) no-repeat center center;
  opacity: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.index_main .index_about_service_item a h4 {
  margin: 1rem 0;
  font-weight: 700;
}
.index_main .index_about_service_item a p {
  margin-bottom: 0;
  font-size: 1.4rem;
}
.index_main .index_about_service_item a:hover .img::before {
  opacity: 1;
}
.index_main .index_about_service_item a:hover .img_mask {
  opacity: 1;
}
.index_main .index_about_service_item a:hover .img_mask .txt {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index_main .index_about_slide_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0;
}
.index_main .index_about_slide_wrap .index_about_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index_main .index_about_slide_wrap .index_about_slide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: clamp(1rem, 0.545rem + 2.27vw, 2rem);
  width: 200vw;
  padding: 0;
  -webkit-animation: infinity-scroll-left 20s infinite linear 1s both;
          animation: infinity-scroll-left 20s infinite linear 1s both;
}
.index_main .index_about_slide_wrap .index_about_slide_list_item {
  width: calc((100% - clamp(1rem, 0.545rem + 2.27vw, 2rem) * 5) / 6);
}
.index_main .index_about_slide_wrap .index_about_slide_list_item:nth-of-type(2), .index_main .index_about_slide_wrap .index_about_slide_list_item:nth-of-type(5) {
  margin-top: 28px;
}
.index_main .index_about_slide_wrap .index_about_slide_list_item:nth-of-type(3), .index_main .index_about_slide_wrap .index_about_slide_list_item:nth-of-type(6) {
  margin-top: 99px;
}
.index_main .index_about_slide_wrap .index_about_slide_list_item:last-of-type {
  margin-right: clamp(1rem, 0.545rem + 2.27vw, 2rem);
}
.index_main .index_about_slide_wrap .index_about_slide_list_item img {
  width: 100%;
  max-width: 334px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@-webkit-keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.index_main .index_service {
  margin-bottom: 130px;
}
.index_main .index_service h2 {
  margin-bottom: 50px;
  font-family: "Questrial", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.index_main .index_service h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.index_main .index_service_item {
  margin-bottom: clamp(1.875rem, 1.023rem + 4.26vw, 3.75rem);
  padding: 0 20px;
}
.index_main .index_service_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_service_item a .thumb {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 20px;
}
.index_main .index_service_item a .thumb img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.index_main .index_service_item a .ttl {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}
.index_main .index_service_item a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.index_main .index_service_item a .txt {
  font-size: 1.4rem;
}
.index_main .index_service_item a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.index_main .index_service_item a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.index_main .index_service_list_wrap {
  margin-bottom: 30px;
  padding: 0 20px;
  overflow: visible;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_service_list_wrap .index_service_list_item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 80%;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_service_list_wrap .index_service_list_item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 90%;
  }
}
.index_main .index_service_list_wrap .index_service_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_service_list_wrap .index_service_list_item a .thumb {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 10px;
}
.index_main .index_service_list_wrap .index_service_list_item a .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.index_main .index_service_list_wrap .index_service_list_item a .ttl {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}
.index_main .index_service_list_wrap .index_service_list_item a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.index_main .index_service_list_wrap .index_service_list_item a .txt {
  font-size: 1.4rem;
}
.index_main .index_service_list_wrap .index_service_list_item a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.index_main .index_service_list_wrap .index_service_list_item a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.index_main .index_service_list_wrap .swiper-pagination {
  position: relative !important;
  top: 10px;
}
.index_main .index_service_list_wrap .service_button_arrow .swiper-button-prev, .index_main .index_service_list_wrap .service_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.index_main .index_service_list_wrap .service_button_arrow .swiper-button-prev::after, .index_main .index_service_list_wrap .service_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.index_main .index_service_list_wrap .service_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.index_main .index_service_list_wrap .service_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}
.index_main .index_works {
  margin-bottom: 100px;
}
.index_main .index_works h2 {
  margin-bottom: 50px;
  font-family: "Questrial", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.index_main .index_works h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.index_main .index_works_movie {
  position: relative;
  overflow: hidden;
  width: 100vw;
  padding: 0 20px;
}
.index_main .index_works_movie video {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 520px) {
  .index_main .index_works_movie video {
    border-radius: 10px;
  }
}
.index_main .index_works_movie_con {
  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;
  gap: 20px;
  margin-top: 20px;
}
.index_main .index_works_movie_con .ttl a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_works_movie_con .ttl a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.index_main .index_works_movie_con .ttl a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.index_main .index_works_movie_con .ttl a span {
  display: inline-block;
  margin-left: 5px;
  font-size: 1.8rem;
  font-weight: 700;
}
.index_main .index_works_movie_con .cate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.index_main .index_works_movie_con .cate span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 8px 20px;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50vh;
}
.index_main .index_works_movie_con .cate span::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #fff;
}
.index_main .index_works_movie_con .cate span.movie {
  background: #C364DF;
}
.index_main .index_works_movie_con .cate span.event {
  background: #FF62AC;
}
.index_main .index_works_movie_con .cate span.sns {
  background: #1EB765;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_works_list_wrap {
    position: relative;
    margin: 5rem calc(50% - 50vw) 30px 0;
    padding: 0 20px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_works_list_wrap {
    margin: 5rem 0 30px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_works_list_wrap {
    margin: 5rem 0 30px;
    padding: 0 20px;
  }
}
.index_main .index_works_list_wrap.swiper {
  overflow: visible;
}
.index_main .index_works_list_wrap .index_works_list_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_works_list_wrap .index_works_list_item > a .thumb {
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 10px;
}
.index_main .index_works_list_wrap .index_works_list_item > a .thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.index_main .index_works_list_wrap .index_works_list_item > a .ttl {
  position: relative;
  margin-bottom: 15px;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_works_list_wrap .index_works_list_item > a .ttl {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_works_list_wrap .index_works_list_item > a .ttl span {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.8rem;
    font-weight: 700;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_works_list_wrap .index_works_list_item > a .ttl span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_works_list_wrap .index_works_list_item > a .ttl span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.index_main .index_works_list_wrap .index_works_list_item > a .ttl span.client {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  color: #484848;
}
.index_main .index_works_list_wrap .index_works_list_item > a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.index_main .index_works_list_wrap .index_works_list_item > a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.index_main .index_works_list_wrap .index_works_list_item > a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_works_list_wrap .index_works_list_item .cate {
    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;
    gap: 1rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_works_list_wrap .index_works_list_item .cate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_works_list_wrap .index_works_list_item .cate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
.index_main .index_works_list_wrap .index_works_list_item .cate a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 8px 20px;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #E8E6E6;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a:hover {
  color: #fff;
  background: #DD001B;
  border: 1px solid #DD001B;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #fff !important;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.paper::before {
  background: #00C2FF;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.web::before {
  background: #FFD52E;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.sns::before {
  background: #1EB765;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.movie::before {
  background: #B66AD5;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.event::before {
  background: #FF62AC;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.digital-signage::before {
  background: #1178D1;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.administration::before {
  background: #FE7962;
}
.index_main .index_works_list_wrap .index_works_list_item .cate a.plan::before {
  background: #A1D23E;
}
.index_main .index_works_list_wrap .swiper-pagination {
  position: relative !important;
  top: 10px;
}
.index_main .index_works_list_wrap .service_button_arrow .swiper-button-prev, .index_main .index_works_list_wrap .service_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.index_main .index_works_list_wrap .service_button_arrow .swiper-button-prev::after, .index_main .index_works_list_wrap .service_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.index_main .index_works_list_wrap .service_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.index_main .index_works_list_wrap .service_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}
.index_main .index_works .more {
  margin-right: 20px;
}
.index_main .index_works_slide_wrap {
  width: 100vw;
  margin: 130px calc(50% - 50vw) 0;
}
.index_main .index_works_slide_wrap .index_works_slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.index_main .index_works_slide_wrap .index_works_slide_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100vw;
  padding: 0;
  -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both;
          animation: infinity-scroll-left 30s infinite linear 0.5s both;
}
@media screen and (max-width: 520px) {
  .index_main .index_works_slide_wrap .index_works_slide_list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
.index_main .index_works_slide_wrap .index_works_slide_list_item {
  width: 33.3333333333%;
}
@media screen and (max-width: 520px) {
  .index_main .index_works_slide_wrap .index_works_slide_list_item img {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    height: 290px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@keyframes infinity-scroll-left {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.index_main .more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.index_main .more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_main .more a .arrow {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background: #DD001B;
  border-radius: 50vh;
  overflow: hidden;
}
.index_main .more a .arrow:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  width: 20px;
  height: 12px;
  background: url(../images/icon_arrow_white.svg) no-repeat center center;
}
.index_main .more a:hover {
  color: #DD001B;
}
@media (hover: hover) {
  @-webkit-keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 1;
    }
    37% {
      -webkit-transform: translate(calc(3rem - 50%), -50%);
              transform: translate(calc(3rem - 50%), -50%);
      opacity: 1;
    }
    38% {
      -webkit-transform: translate(calc(3rem - 50%), -50%);
              transform: translate(calc(3rem - 50%), -50%);
      opacity: 0;
    }
    39% {
      -webkit-transform: translate(calc(-3rem - 50%), -50%);
              transform: translate(calc(-3rem - 50%), -50%);
      opacity: 0;
    }
    40% {
      -webkit-transform: translate(calc(-3rem - 50%), -50%);
              transform: translate(calc(-3rem - 50%), -50%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 1;
    }
  }
  @keyframes arrow {
    0% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 1;
    }
    37% {
      -webkit-transform: translate(calc(3rem - 50%), -50%);
              transform: translate(calc(3rem - 50%), -50%);
      opacity: 1;
    }
    38% {
      -webkit-transform: translate(calc(3rem - 50%), -50%);
              transform: translate(calc(3rem - 50%), -50%);
      opacity: 0;
    }
    39% {
      -webkit-transform: translate(calc(-3rem - 50%), -50%);
              transform: translate(calc(-3rem - 50%), -50%);
      opacity: 0;
    }
    40% {
      -webkit-transform: translate(calc(-3rem - 50%), -50%);
              transform: translate(calc(-3rem - 50%), -50%);
      opacity: 1;
    }
    100% {
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      opacity: 1;
    }
  }
  .index_main .more a:hover .arrow::before {
    -webkit-animation: arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
            animation: arrow 0.4s cubic-bezier(0.29, 0.65, 0.62, 1) forwards;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 110px;
    padding: 80px 20px;
    background: #E8E8E8;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_contact {
    margin-bottom: 110px;
    padding: 40px 20px;
    background: #E8E8E8;
  }
}
@media screen and (max-width: 520px) {
  .index_contact {
    margin-bottom: 110px;
    padding: 40px 20px;
    background: #E8E8E8;
  }
}
.index_contact_info {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_contact_info {
    max-width: 430px;
  }
}
.index_contact_info h2 {
  margin-bottom: 30px;
  font-family: "Questrial", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.index_contact_info h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.index_contact_info > p {
  margin-bottom: 80px;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 2;
}
.index_contact_info_tel {
  padding: 25px;
  text-align: center;
  border: 1px solid #B2B2B2;
  border-radius: 10px;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_contact_info_tel {
    background: #fff;
    border: none;
  }
}
@media screen and (max-width: 520px) {
  .index_contact_info_tel {
    background: #fff;
    border: none;
  }
}
.index_contact_info_tel h3 {
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 1.709rem + 0.45vw, 2rem);
  font-weight: 700;
}
.index_contact_info_tel dl dt {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.index_contact_info_tel dl dt span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.index_contact_info_tel dl dd {
  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;
  gap: 0.5rem;
  font-family: "Questrial", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.index_contact_info_tel dl dd::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/icon_tel.svg) no-repeat center center;
  background-size: contain;
}
.index_contact_form div[class$=_area] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
.index_contact_form h3 {
  margin-bottom: 35px;
  font-size: clamp(1.8rem, 1.709rem + 0.45vw, 2rem);
  font-weight: 700;
}
.index_contact_form h3.input_area_title {
  padding-bottom: 10px;
  color: #000;
  border-bottom: 1px solid #000;
}
.index_contact_form h3.confirm_area_title {
  padding-bottom: 10px;
  color: #000;
  border-bottom: 1px solid #000;
}
.index_contact_form h3.thanks_area_title {
  padding-bottom: 10px;
  color: #DD001B;
  border-bottom: 1px solid #DD001B;
}
.index_contact_form .index_contact_form_item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #434343;
  font-size: 1.4rem;
  font-weight: 700;
}
.index_contact_form .index_contact_form_item > label span {
  padding: 2px 10px;
  color: #DD001B;
  font-size: 1.2rem;
  border: 1px solid #DD001B;
  border-radius: 3px;
}
.index_contact_form .index_contact_form_item input[type=text], .index_contact_form .index_contact_form_item input[type=email], .index_contact_form .index_contact_form_item textarea {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px;
  background: #fff;
  font-size: 1.4rem;
  border: none !important;
  border-radius: 4px;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0 0 0 30px;
  color: #434343;
  font-size: 1.4rem;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 0;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  width: 13px;
  height: 23px;
  margin-top: -15px;
  border: transparent !important;
  border-right: 6px solid #DD001B !important;
  border-bottom: 3px solid #DD001B !important;
  border-radius: 0 !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #666;
}
.index_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.index_contact_form .index_contact_form_item .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-weight: 700;
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.index_contact_form input[type=submit], .index_contact_form input[type=button] {
  display: block;
  width: 190px;
  margin: 0 auto;
  padding: 15px;
  background: #DD001B;
  color: #fff;
  border: 1px solid #DD001B;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.index_contact_form input[type=submit]:hover, .index_contact_form input[type=button]:hover {
  background: #fff !important;
  color: #DD001B;
}
.index_contact_form input[type=submit].confirm_button, .index_contact_form input[type=submit].back_button, .index_contact_form input[type=button].confirm_button, .index_contact_form input[type=button].back_button {
  display: block;
  width: 190px !important;
  margin: 0 auto;
  padding: 15px !important;
  background: #B2B2B2 !important;
  color: #000;
  border: 1px solid #B2B2B2 !important;
  border-radius: 50vh !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.index_contact_form input[type=submit].confirm_button:hover, .index_contact_form input[type=submit].back_button:hover, .index_contact_form input[type=button].confirm_button:hover, .index_contact_form input[type=button].back_button:hover {
  background: #fff !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_contact_form {
    width: 100%;
    max-width: calc(100% - 490px);
  }
  .index_contact_form .input_area_title {
    display: none;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_contact_form {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .index_contact_form {
    width: 100%;
    margin-top: 40px;
  }
  .index_contact_form .index_contact_form_item .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

.index_book {
  margin-bottom: 130px;
  padding: 0 20px;
  overflow: clip;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_book {
    padding: 0;
  }
}
@media screen and (max-width: 520px) {
  .index_book {
    padding: 0;
  }
}
.index_book h2 {
  margin-bottom: 50px;
  font-family: "Questrial", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.index_book h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_book_list_wrap {
    width: 100%;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 520px) {
  .index_book_list_wrap {
    width: 100%;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_book_list_wrap .index_book_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
  }
}
.index_book_list_wrap .index_book_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_book_list_wrap .index_book_list_item a .thumb {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 10px;
}
.index_book_list_wrap .index_book_list_item a .thumb img {
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.index_book_list_wrap .index_book_list_item a .ttl {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: 700;
}
.index_book_list_wrap .index_book_list_item a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.index_book_list_wrap .index_book_list_item a .txt {
  font-size: 1.4rem;
}
.index_book_list_wrap .index_book_list_item a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.index_book_list_wrap .index_book_list_item a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.index_book_list_wrap .swiper-pagination {
  position: relative !important;
  top: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_book_list_wrap .service_button_arrow {
    display: none;
  }
}
.index_book_list_wrap .service_button_arrow .swiper-button-prev, .index_book_list_wrap .service_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.index_book_list_wrap .service_button_arrow .swiper-button-prev::after, .index_book_list_wrap .service_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.index_book_list_wrap .service_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.index_book_list_wrap .service_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}

.scrolldown {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.wrapper {
  overflow: hidden;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*----------------------------------------------------------------------------
******************************************************************************
** works archive
******************************************************************************
----------------------------------------------------------------------------*/
.works_category {
  margin: 0 0 35px;
}
.works_category h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 0 15px;
  font-size: 1.8rem;
  font-weight: 500;
}
.works_category h2::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_search.svg) no-repeat center center;
}
.works_category .slider_works_category {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.works_category_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #B2B2B2;
  border-radius: 10px;
}
.works_category_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  padding: 10px;
  font-size: clamp(1.2rem, 1.064rem + 0.68vw, 1.5rem);
  font-weight: 500;
}
.works_category_list_item a::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.works_category_list_item a.paper::before {
  background: url(../images/icon_works_paper.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.web::before {
  background: url(../images/icon_works_web.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.sns::before {
  background: url(../images/icon_works_sns.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.movie::before {
  background: url(../images/icon_works_movie.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.event::before {
  background: url(../images/icon_works_event.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.digital-book::before {
  background: url(../images/icon_works_signage.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.administration::before {
  background: url(../images/icon_works_administration.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a.plan::before {
  background: url(../images/icon_works_plan.svg) no-repeat center center;
  background-size: cover;
}
.works_category_list_item a:hover::before {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}
.works_category .swiper-pagination {
  position: relative !important;
  top: 5px;
}
.works_category .works_button_arrow {
  position: absolute;
  top: 35%;
  width: 100%;
}
.works_category .works_button_arrow .swiper-button-prev, .works_category .works_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.works_category .works_button_arrow .swiper-button-prev::after, .works_category .works_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.works_category .works_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.works_category .works_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}

.works_industry {
  margin: 0 0 35px;
}
.works_industry h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin: 0 0 15px;
  font-size: 1.8rem;
  font-weight: 500;
}
.works_industry h2::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_search.svg) no-repeat center center;
}
.works_industry .slider_works_industry {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
.works_industry_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works_industry_list_item a .thumb {
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 10px;
}
.works_industry_list_item a .thumb img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (max-width: 520px) {
  .works_industry_list_item a .thumb img {
    width: 100%;
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.works_industry_list_item a .ttl {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: clamp(1.2rem, 1.064rem + 0.68vw, 1.5rem);
  font-weight: 500;
}
.works_industry_list_item a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.works_industry_list_item a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.works_industry_list_item a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.works_industry .swiper-pagination {
  position: relative !important;
  top: 5px;
}
.works_industry .works_button_arrow {
  position: absolute;
  top: 35%;
  width: 100%;
}
.works_industry .works_button_arrow .swiper-button-prev, .works_industry .works_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.works_industry .works_button_arrow .swiper-button-prev::after, .works_industry .works_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.works_industry .works_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.works_industry .works_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}

.works_tag_wrap {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 50px;
  padding: 25px 0;
  background: #E8E8E8;
  overflow-x: hidden;
}
.works_tag_wrap .works_tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.works_tag_wrap .works_tag_list {
  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;
  gap: 1rem;
  -webkit-animation: loop-tag 120s infinite linear both;
          animation: loop-tag 120s infinite linear both;
}
@-webkit-keyframes loop-tag {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-tag {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.works_tag_wrap .works_tag_list span a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3rem;
  padding: 8px 20px;
  background: #fff;
  color: #484848;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.4rem);
  line-height: 1;
  border-radius: 50vh;
  white-space: nowrap;
}
.works_tag_wrap .works_tag_list span a::before {
  content: "#";
}

.works_article h2 {
  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;
  margin: 0 0 55px;
  font-size: 3.2rem;
  font-weight: 700;
}
.works_article h2.single {
  font-size: 2.2rem;
}
.works_article_category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  margin: 0 0 50px;
}
.works_article_category::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.works_article_category span {
  font-family: "Questrial", sans-serif;
  font-size: 1.8rem;
}
.works_article_category select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 10px 25px;
  font-size: clamp(1.2rem, 1.064rem + 0.68vw, 1.5rem);
  border: 1px solid #DEDBDB;
  border-radius: 50px;
}
.works_article_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works_article_list {
    gap: 8rem 2rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .works_article_list {
    gap: 8rem 2rem;
  }
}
@media screen and (max-width: 520px) {
  .works_article_list {
    gap: 5rem;
  }
}
.works_article_list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .works_article_list_item {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .works_article_list_item {
    width: calc((100% - 4rem) / 3);
  }
}
@media screen and (max-width: 520px) {
  .works_article_list_item {
    width: 100%;
  }
}
.works_article_list_item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works_article_list_item > a .thumb {
  overflow: hidden;
  margin-bottom: 20px;
}
.works_article_list_item > a .thumb img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.works_article_list_item > a .ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 15px;
  font-size: 1.4rem;
}
.works_article_list_item > a .ttl span:last-of-type {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
}
.works_article_list_item > a .ttl:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.works_article_list_item > a:hover .thumb img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2); /* 拡大 */
}
.works_article_list_item > a:hover .ttl::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.works_article_list_item > .cate {
  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;
  gap: 1rem;
  margin: auto 0 10px;
}
.works_article_list_item > .cate a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 8px 20px;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #E8E6E6;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works_article_list_item > .cate a::before {
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works_article_list_item > .cate a:hover {
  color: #fff;
  background: #DD001B;
  border: 1px solid #DD001B;
}
.works_article_list_item > .cate a:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #fff !important;
}
.works_article_list_item > .cate a.paper::before, .works_article_list_item > .cate a.dining::before {
  background: #00C2FF;
}
.works_article_list_item > .cate a.web::before, .works_article_list_item > .cate a.beauty::before {
  background: #FFD52E;
}
.works_article_list_item > .cate a.sns::before, .works_article_list_item > .cate a.retail::before {
  background: #1EB765;
}
.works_article_list_item > .cate a.movie::before, .works_article_list_item > .cate a.maker::before {
  background: #B66AD5;
}
.works_article_list_item > .cate a.event::before, .works_article_list_item > .cate a.facility::before {
  background: #FF62AC;
}
.works_article_list_item > .cate a.digital-book::before, .works_article_list_item > .cate a.tourism::before {
  background: #1178D1;
}
.works_article_list_item > .cate a.administration::before, .works_article_list_item > .cate a.clinic::before {
  background: #FE7962;
}
.works_article_list_item > .cate a.plan::before, .works_article_list_item > .cate a.housing::before {
  background: #A1D23E;
}
.works_article_list_item > .tag {
  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;
  gap: 1rem;
  margin-top: auto;
}
.works_article_list_item > .tag a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  background: #E8E8E8;
  color: #484848;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50vh;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.works_article_list_item > .tag a::before {
  content: "#";
}
.works_article_list_item > .tag a:hover {
  color: #fff;
  background: #DD001B;
}

/*----------------------------------------------------------------------------
******************************************************************************
** service arcive page
******************************************************************************
----------------------------------------------------------------------------*/
.service-archive .service-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 5%;
  margin-bottom: 80px;
}
.service-archive .service-box .text-box {
  margin-bottom: 50px;
}
.service-archive .service-figure {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-archive .service-figure.ob-left img {
  -o-object-position: left;
     object-position: left;
}
.service-archive .service-figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.service-archive .service-detail {
  width: 100%;
}
.service-archive .service-detail .text-box h2 {
  font-weight: normal;
  margin-top: 0;
  position: relative;
  margin-bottom: 30px;
}
.service-archive .service-detail .text-box h2:before {
  content: "";
  width: 40px;
  height: 5px;
  display: block;
}
.service-archive .service-detail .text-box h2.digital::before {
  background: #D67575;
}
.service-archive .service-detail .text-box h2.sns::before {
  background: #E2C272;
}
.service-archive .service-detail .text-box h2.magazine::before {
  background: #6FA9C4;
}
.service-archive .service-detail .text-box h2.other::before {
  background: #78B892;
}
.service-archive .service-listbox-wrap {
  width: 100vw;
  height: auto;
  margin: 0 calc(50% - 50vw);
}
.service-archive .service-listbox-wrap .service-listbox {
  height: 100%;
}
.service-archive .service-listbox-wrap .service-listbox .sercvice-item {
  height: auto;
  background: #f9f9f9;
  border-radius: 10px;
}
.service-archive .service-listbox-wrap .service-listbox .sercvice-item .item-textbox {
  padding: 0 10px;
}
.service-archive .service-listbox-wrap .service-listbox .sercvice-item .item-textbox .ttl {
  font-size: 1.8rem;
  font-weight: 500;
}
.service-archive .service-listbox-wrap .service-listbox .sercvice-item a.thumb {
  display: block;
  width: 100%;
  aspect-ratio: 330/188;
  overflow: hidden;
  border-radius: 10px;
}
.service-archive .service-listbox-wrap .service-listbox .sercvice-item a.thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.service-archive .service-listbox-wrap .swiper-pagination {
  position: relative !important;
  top: 5px;
}
.service-archive .service-listbox-wrap .service_button_arrow .swiper-button-prev, .service-archive .service-listbox-wrap .service_button_arrow .swiper-button-next {
  background: #000;
  width: 40px;
  height: 40px;
  color: #fff;
  border-radius: 50vh;
}
.service-archive .service-listbox-wrap .service_button_arrow .swiper-button-prev::after, .service-archive .service-listbox-wrap .service_button_arrow .swiper-button-next::after {
  font-size: 1.4rem;
  font-weight: 700;
}
.service-archive .service-listbox-wrap .service_button_arrow .swiper-button-prev {
  content: "<";
  left: 10px;
}
.service-archive .service-listbox-wrap .service_button_arrow .swiper-button-next {
  content: ">";
  right: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** contact page
******************************************************************************
----------------------------------------------------------------------------*/
.page_contact_wrap {
  margin-bottom: 110px;
  background: #E8E8E8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_contact_wrap {
    padding: 80px 20px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .page_contact_wrap {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 520px) {
  .page_contact_wrap {
    padding: 40px 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_contact_wrap .page_contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page_contact_wrap .page_contact_info {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_contact_wrap .page_contact_info {
    max-width: 430px;
  }
}
.page_contact_wrap .page_contact_info h2 {
  margin-bottom: 30px;
  font-family: "Questrial", sans-serif;
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.page_contact_wrap .page_contact_info h2::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.page_contact_wrap .page_contact_info > p {
  margin-bottom: 80px;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  line-height: 2;
}
.page_contact_wrap .page_contact_info_tel {
  padding: 25px;
  text-align: center;
  border: 1px solid #B2B2B2;
  border-radius: 10px;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .page_contact_wrap .page_contact_info_tel {
    background: #fff;
    border: none;
  }
}
@media screen and (max-width: 520px) {
  .page_contact_wrap .page_contact_info_tel {
    background: #fff;
    border: none;
  }
}
.page_contact_wrap .page_contact_info_tel h3 {
  margin-bottom: 25px;
  font-size: clamp(1.8rem, 1.709rem + 0.45vw, 2rem);
  font-weight: 700;
}
.page_contact_wrap .page_contact_info_tel dl dt {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: 500;
}
.page_contact_wrap .page_contact_info_tel dl dt span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
}
.page_contact_wrap .page_contact_info_tel dl dd {
  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;
  gap: 0.5rem;
  font-family: "Questrial", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
.page_contact_wrap .page_contact_info_tel dl dd::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background: url(../images/icon_tel.svg) no-repeat center center;
  background-size: contain;
}
.page_contact_wrap .page_contact_form div[class$=_area] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem;
}
.page_contact_wrap .page_contact_form .input_area_title {
  margin-bottom: 35px;
  font-size: clamp(1.8rem, 1.709rem + 0.45vw, 2rem);
  font-weight: 700;
}
.page_contact_wrap .page_contact_form .index_contact_form_item > label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #434343;
  font-size: 1.4rem;
  font-weight: 700;
}
.page_contact_wrap .page_contact_form .index_contact_form_item > label span {
  padding: 2px 10px;
  color: #DD001B;
  font-size: 1.2rem;
  border: 1px solid #DD001B;
  border-radius: 3px;
}
.page_contact_wrap .page_contact_form .index_contact_form_item input[type=text], .page_contact_wrap .page_contact_form .index_contact_form_item input[type=email], .page_contact_wrap .page_contact_form .index_contact_form_item textarea {
  display: block;
  width: 100% !important;
  margin: 0 !important;
  padding: 10px;
  background: #fff;
  font-size: 1.4rem;
  border: none !important;
  border-radius: 4px;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox] {
  display: none;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0;
  padding: 0 0 0 30px;
  color: #434343;
  font-size: 1.4rem;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  width: 22px;
  height: 22px;
  margin-top: 0;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  display: block;
  width: 13px;
  height: 23px;
  margin-top: -15px;
  border: transparent !important;
  border-right: 6px solid #DD001B !important;
  border-bottom: 3px solid #DD001B !important;
  border-radius: 0 !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  border-color: #666;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
.page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-weight: 700;
  -webkit-animation: blink 1.5s ease-in-out infinite alternate;
  animation: blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page_contact_wrap .page_contact_form input[type=submit], .page_contact_wrap .page_contact_form input[type=button] {
  display: block;
  width: 190px;
  margin: 0 auto;
  padding: 15px;
  background: #DD001B;
  color: #fff;
  border: 1px solid #DD001B;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.page_contact_wrap .page_contact_form input[type=submit]:hover, .page_contact_wrap .page_contact_form input[type=button]:hover {
  background: #fff !important;
  color: #DD001B;
}
.page_contact_wrap .page_contact_form input[type=submit].confirm_button, .page_contact_wrap .page_contact_form input[type=submit].back_button, .page_contact_wrap .page_contact_form input[type=button].confirm_button, .page_contact_wrap .page_contact_form input[type=button].back_button {
  display: block;
  width: 190px !important;
  margin: 0 auto;
  padding: 15px !important;
  background: #B2B2B2 !important;
  color: #000;
  border: 1px solid #B2B2B2 !important;
  border-radius: 50vh !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  cursor: pointer;
}
.page_contact_wrap .page_contact_form input[type=submit].confirm_button:hover, .page_contact_wrap .page_contact_form input[type=submit].back_button:hover, .page_contact_wrap .page_contact_form input[type=button].confirm_button:hover, .page_contact_wrap .page_contact_form input[type=button].back_button:hover {
  background: #fff !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .page_contact_wrap .page_contact_form {
    width: 100%;
    max-width: calc(100% - 490px);
  }
  .page_contact_wrap .page_contact_form .input_area_title {
    display: none;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .page_contact_wrap .page_contact_form {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .page_contact_wrap .page_contact_form {
    width: 100%;
    margin-top: 40px;
  }
  .page_contact_wrap .page_contact_form .index_contact_form_item .wpcf7-checkbox {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon {
    margin-bottom: 240px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon {
    margin-bottom: 240px;
  }
}
@media screen and (max-width: 520px) {
  .mcon {
    margin-bottom: 100px;
  }
}
.mcon a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_ttl {
  margin: 0 0 35px;
  border-top: 1px solid #E8E6E6;
  border-bottom: 1px solid #E8E6E6;
}
.mcon_ttl.archive, .mcon_ttl.event {
  padding: 35px 10px;
}
.mcon_ttl.archive .ttl, .mcon_ttl.event .ttl {
  margin-bottom: 30px;
  color: #000 !important;
  font-family: "Questrial", sans-serif;
  font-size: clamp(2.5rem, 1.909rem + 7.95vw, 3.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.mcon_ttl.archive .ttl::after, .mcon_ttl.event .ttl::after {
  content: attr(data-subttl);
  display: block;
  margin-top: 10px;
  color: #DD001B;
  font-size: clamp(1.2rem, 0.927rem + 1.36vw, 1.8rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}
.mcon_ttl.archive p, .mcon_ttl.event p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.2rem, 0.891rem + 2.05vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}
.mcon_ttl.category {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 35px 20px 20px;
}
.mcon_ttl.category .ttl {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 1.309rem + 5.45vw, 4.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.mcon_ttl.category p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.2rem, 0.891rem + 2.05vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}
.mcon_ttl.category.paper {
  background: url(../images/ttl_bg_paper_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.web {
  background: url(../images/ttl_bg_web_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.sns {
  background: url(../images/ttl_bg_sns_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.movie {
  background: url(../images/ttl_bg_movie_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.event {
  background: url(../images/ttl_bg_event_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.digital-book {
  background: url(../images/ttl_bg_digitalbook.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.administration {
  background: url(../images/ttl_bg_administration_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.plan {
  background: url(../images/ttl_bg_plan_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.dining {
  background: url(../images/ttl_bg_dining.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.beauty {
  background: url(../images/ttl_bg_beauty.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.retail {
  background: url(../images/ttl_bg_retail.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.facility {
  background: url(../images/ttl_bg_facility.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.tourism {
  background: url(../images/ttl_bg_tourism.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.clinic {
  background: url(../images/ttl_bg_clinic.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.category.housing {
  background: url(../images/ttl_bg_housing.jpg) no-repeat center center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_ttl.category.paper {
    background: url(../images/ttl_bg_paper.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.web {
    background: url(../images/ttl_bg_web.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.sns {
    background: url(../images/ttl_bg_sns.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.movie {
    background: url(../images/ttl_bg_movie.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.event {
    background: url(../images/ttl_bg_event.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.digital-book {
    background: url(../images/ttl_bg_digitalbook.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.administration {
    background: url(../images/ttl_bg_administration.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.plan {
    background: url(../images/ttl_bg_plan.jpg) no-repeat center center;
    background-size: cover;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon_ttl.category.paper {
    background: url(../images/ttl_bg_paper.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.web {
    background: url(../images/ttl_bg_web.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.sns {
    background: url(../images/ttl_bg_sns.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.movie {
    background: url(../images/ttl_bg_movie.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.event {
    background: url(../images/ttl_bg_event.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.digital-book {
    background: url(../images/ttl_bg_digitalbook.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.administration {
    background: url(../images/ttl_bg_administration.jpg) no-repeat center center;
    background-size: cover;
  }
  .mcon_ttl.category.plan {
    background: url(../images/ttl_bg_plan.jpg) no-repeat center center;
    background-size: cover;
  }
}
.mcon_ttl.tag {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 35px 20px 20px;
  background: url(../images/ttl_bg_paper_sp.jpg) no-repeat center center;
  background-size: cover;
}
.mcon_ttl.tag .ttl {
  margin-bottom: 30px;
  font-size: clamp(2.4rem, 1.309rem + 5.45vw, 4.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.mcon_ttl.tag p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: clamp(1.2rem, 0.891rem + 2.05vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}
.mcon_ttl.page, .mcon_ttl.single {
  position: relative;
  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;
  min-height: 100px;
  padding: 30px 10px;
}
.mcon_ttl.page::before, .mcon_ttl.single::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.mcon_ttl.page .ttl, .mcon_ttl.single .ttl {
  position: relative;
  z-index: 1;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1;
}
.mcon_page {
  padding: 0 20px;
}
.mcon_page h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon_page h2:first-of-type {
  margin-top: 0;
}
.mcon_page h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon_page h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon_page h5,
.mcon_page h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon_page hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon_page iframe {
  max-width: 100%;
}
.mcon_page img {
  max-width: 100%;
  height: auto;
}
.mcon_page p {
  margin-bottom: 1em;
}
.mcon_page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon_page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon_page.single .works_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
  padding: 0 0 100px;
  border-bottom: 1px solid #E8E6E6;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 5.5rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap .works_detail {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 55%;
  }
}
.mcon_page.single .works_wrap .works_detail .img {
  margin: 0 0 25px;
  border-radius: 10px;
  overflow: hidden;
}
.mcon_page.single .works_wrap .works_detail .img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mcon_page.single .works_wrap .works_detail .img .splide__track {
  border-radius: 10px;
  aspect-ratio: 16/9;
}
.mcon_page.single .works_wrap .works_detail .img .splide__pagination {
  position: relative;
  margin: 1.5em 0 0 !important;
}
.mcon_page.single .works_wrap .works_detail .img .splide__pagination li {
  margin: 0 0.5em !important;
}
.mcon_page.single .works_wrap .works_detail .img .splide__pagination li .splide__pagination__page {
  background: #000;
}
.mcon_page.single .works_wrap .works_detail .img .splide__pagination li .splide__pagination__page.is-active {
  background: #DD001B;
}
.mcon_page.single .works_wrap .works_detail .youtube {
  aspect-ratio: 16/9;
  margin: 0 0 30px;
  border-radius: 10px;
  overflow: hidden;
}
.mcon_page.single .works_wrap .works_detail .youtube iframe {
  width: 100%;
  height: 100%;
}
.mcon_page.single .works_wrap .works_detail .data {
  margin: 0 0 20px;
  padding: 20px;
  background: #F6F6F6;
}
.mcon_page.single .works_wrap .works_detail .data_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 1rem;
  padding: 0 0 1rem;
  border-bottom: 1px dotted #ccc;
}
.mcon_page.single .works_wrap .works_detail .data_ttl.link::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 0 0 0 0.5rem;
  background: url(../images/icon_elink_gray.svg) no-repeat center center;
}
.mcon_page.single .works_wrap .works_detail .data_ttl a {
  position: relative;
  display: inline-block;
  color: #484848;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_page.single .works_wrap .works_detail .data_ttl a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.mcon_page.single .works_wrap .works_detail .data_ttl a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.mcon_page.single .works_wrap .works_detail .data_ttl span {
  display: inline-block;
  color: #484848;
}
.mcon_page.single .works_wrap .works_detail .data_list {
  margin: 0 0 20px;
  color: #484848;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap .works_detail .data_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon_page.single .works_wrap .works_detail .data_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 520px) {
  .mcon_page.single .works_wrap .works_detail .data_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.mcon_page.single .works_wrap .works_detail .data_list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  padding: 0 0 1rem;
  font-size: clamp(1.3rem, 1.164rem + 0.68vw, 1.6rem);
  border-bottom: 1px dotted #ccc;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap .works_detail .data_list dl {
    width: calc((100% - 5.5rem) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .mcon_page.single .works_wrap .works_detail .data_list dl {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap .works_detail .data_list dl {
    width: 100%;
  }
}
.mcon_page.single .works_wrap .works_detail .data_sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.5rem;
}
.mcon_page.single .works_wrap .works_detail .data_sns a {
  display: block;
}
.mcon_page.single .works_wrap .works_detail .cate {
  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;
  gap: 1rem;
  margin: 0 0 20px;
}
.mcon_page.single .works_wrap .works_detail .cate a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 8px 20px;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #E8E6E6;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_page.single .works_wrap .works_detail .cate a::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_page.single .works_wrap .works_detail .cate a:hover {
  color: #fff;
  background: #DD001B;
  border: 1px solid #DD001B;
}
.mcon_page.single .works_wrap .works_detail .cate a:hover::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  background: #fff !important;
}
.mcon_page.single .works_wrap .works_detail .cate a.paper::before, .mcon_page.single .works_wrap .works_detail .cate a.dining::before {
  background: #00C2FF;
}
.mcon_page.single .works_wrap .works_detail .cate a.web::before, .mcon_page.single .works_wrap .works_detail .cate a.beauty::before {
  background: #FFD52E;
}
.mcon_page.single .works_wrap .works_detail .cate a.sns::before, .mcon_page.single .works_wrap .works_detail .cate a.retail::before {
  background: #1EB765;
}
.mcon_page.single .works_wrap .works_detail .cate a.movie::before, .mcon_page.single .works_wrap .works_detail .cate a.maker::before {
  background: #B66AD5;
}
.mcon_page.single .works_wrap .works_detail .cate a.event::before, .mcon_page.single .works_wrap .works_detail .cate a.facility::before {
  background: #FF62AC;
}
.mcon_page.single .works_wrap .works_detail .cate a.digital-book::before, .mcon_page.single .works_wrap .works_detail .cate a.tourism::before {
  background: #1178D1;
}
.mcon_page.single .works_wrap .works_detail .cate a.administration::before, .mcon_page.single .works_wrap .works_detail .cate a.clinic::before {
  background: #FE7962;
}
.mcon_page.single .works_wrap .works_detail .cate a.plan::before, .mcon_page.single .works_wrap .works_detail .cate a.housing::before {
  background: #A1D23E;
}
.mcon_page.single .works_wrap .works_detail .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.mcon_page.single .works_wrap .works_detail .tag a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  background: #E8E8E8;
  color: #484848;
  font-size: 1.2rem;
  line-height: 1;
  border-radius: 50vh;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_page.single .works_wrap .works_detail .tag a::before {
  content: "#";
}
.mcon_page.single .works_wrap .works_detail .tag a:hover {
  color: #fff;
  background: #DD001B;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .mcon_page.single .works_wrap .works_con {
    width: 45%;
  }
}
.mcon_page.single .works_wrap .works_con .back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px 0;
}
.mcon_page.single .works_wrap .works_con .back_btn a {
  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;
  width: 100vw;
  max-width: 156px;
  height: 100vh;
  max-height: 56px;
  background: #fff;
  color: #000;
  font-size: 1.5rem;
  font-weight: 700;
  border: 1px solid #B2B2B2;
  border-radius: 50vh;
  overflow: hidden;
}
.mcon_page.single .works_wrap .works_con .back_btn a > span {
  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;
  padding: 0.6em 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon_page.single .works_wrap .works_con .back_btn a > span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (hover: hover) {
  .mcon_page.single .works_wrap .works_con .back_btn a:hover span {
    color: #DD001B;
  }
  .mcon_page.single .works_wrap .works_con .back_btn a:hover span::before {
    color: #DD001B;
    border-bottom-color: #DD001B;
    border-left-color: #DD001B;
  }
}

/*----------------------------------------------------------
************************************************************
お問い合わせフォーム
************************************************************
-----------------------------------------------------------*/
.contact_form {
  max-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
  color: #232323;
  text-transform: uppercase;
  font-weight: 800;
}

.contact_form_ttl {
  font-style: normal;
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.contact_form_con .wpcf7 input:not([type=radio]):not([type=submit]):not([type=checkbox]), .wpcf7 textarea, .wpcf7-select {
  width: 100%;
}

.contact_form .wpcf7 textarea {
  height: 100px;
}

.contact_form_con .wpcf7 input[type=submit] {
  width: 20%;
  padding: 10px;
  background: #92a6c0;
}

.contact_form_submit {
  text-align: center;
}

.wpcf7 form {
  width: 100%;
  margin: 15px 0;
}

.wpcf7 input:not([type=radio]):not([type=submit]):not([type=checkbox]),
.wpcf7 textarea,
.wpcf7-select {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 4px;
  background: #fafafa;
  border: 1px solid #455a64;
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  padding: 10px;
  width: auto;
  margin-bottom: 10px;
}

.wpcf7 input:not([type=radio]):not([type=submit]):not([type=checkbox]):focus,
.wpcf7 textarea:focus,
.wpcf7-select:focus {
  background: #fff;
}

.wpcf7 textarea {
  width: 100%;
}

.wpcf7 input[type=checkbox],
.wpcf7 input[type=radio] {
  display: none;
}

.wpcf7 input[type=checkbox] + span,
.wpcf7 input[type=radio] + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.wpcf7 input[type=checkbox] + span:before,
.wpcf7 input[type=radio] + span:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #455a64;
  border-radius: 3px;
  margin-right: 5px;
}

.wpcf7 input:checked + span {
  font-weight: 700;
  position: relative;
}

.wpcf7 input:checked + span:after {
  content: "";
  border-radius: 50%;
  border: 3px solid #455a64;
  position: absolute;
  left: 4.5px;
  top: calc(50% - 3px);
}

.wpcf7 input[type=submit] {
  padding: 15px 30px;
  width: auto;
  background: #f06292;
  border-radius: 3px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
}

.wpcf7 input[type=submit]:hover,
.wpcf7 input[type=button]:hover {
  -webkit-box-shadow: 0 8px 4px -4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 4px -4px rgba(0, 0, 0, 0.3);
}

.wpcf7 div[role=alert],
.wpcf7 span[role=alert] {
  color: #f44336;
  display: block;
}

/*----------------------------------------------------------
************************************************************
お問い合わせフォーム END
************************************************************
-----------------------------------------------------------*/
/*----------------------------------------------------------
************************************************************
 404 page
************************************************************
-----------------------------------------------------------*/
.notfound {
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  color: #232323;
  text-transform: uppercase;
  font-weight: 800;
  text-align: center;
}

.notfound h1 {
  font-style: normal;
  font-size: 28px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.notfound h2 {
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.notfound_btn {
  background-color: #BB0000;
  color: #fff;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 60px;
  font-size: 16px;
}

.notfound img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  height: auto;
}/*# sourceMappingURL=sp.css.map */