/* color
**************************************************************************************************/
/* font
**************************************************************************************************/
html {
  scroll-padding-top: 100px;
}
@media screen and (min-width: 1025px) {
  html {
    scroll-padding-top: 200px;
  }
}

body {
  font: 16px noto-sans-cjk-jp, sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  background: #fff;
  color: #2D292B;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
}

.en {
  font-family: futura-pt, sans-serif;
}

main {
  padding-bottom: 60px;
}
main > *:last-of-type {
  margin-bottom: 0;
}
.no_session main {
  padding-top: 114px;
}
.has_header_mini main {
  padding-top: 73px;
}
.has_session main {
  padding-top: 52px;
}
@media screen and (min-width: 1025px) {
  .no_session main {
    padding-top: 109px;
  }
  .has_header_mini main {
    padding-top: 109px;
  }
  .no_session main {
    padding-top: 115px;
  }
}

img {
  width: 100%;
  height: auto;
}

a {
  transition: all 0.5s;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

/* font
**************************************************************************************************************************/
th, td {
  font-weight: 500;
}

/* animation
**************************************************************************************************************************/
.slide-animation {
  animation: fadezoom 8s 0s ease-out forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* status
**************************************************************************************************************************/
.is_sp {
  display: block;
}

.is_pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .is_sp {
    display: none !important;
  }
  .is_pc {
    display: block !important;
  }
}
.is_hide {
  display: none;
}

.is_hidden {
  display: none;
}

.is_fixed {
  position: fixed;
}

/* common
**************************************************************************************************************************/
header {
  position: fixed;
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.55);
  padding: 15px 20px;
}
header .inner .ci-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .ci-nav .ci {
  width: 130px;
}
header .inner .ci-nav .ci .logo {
  line-height: 0;
}
header .inner .ci-nav .nav {
  display: none;
}
header .inner .ci-nav .tgl {
  position: relative;
  z-index: 101;
}
header .inner .ci-nav .tgl button {
  text-indent: -9999px;
  border: 0;
  padding: 0;
  background: none;
  margin-top: 0px;
  width: 20px;
  height: 20px;
  border-top: 1px solid #2D292B;
  position: relative;
  display: block;
  transition: all 0.5s;
}
header .inner .ci-nav .tgl button::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #2D292B;
  position: absolute;
  top: 9px;
  transition: all 0.5s;
}
header .inner .ci-nav .tgl button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #2D292B;
  position: absolute;
  bottom: 0px;
  transition: all 0.5s;
}
header .inner .ci-nav .tgl button.is_open {
  border: 0;
}
header .inner .ci-nav .tgl button.is_open::before {
  top: 9px;
  transform: rotate(135deg);
}
header .inner .ci-nav .tgl button.is_open::after {
  bottom: 9px;
  transform: rotate(45deg);
}
@media screen and (min-width: 1025px) {
  header {
    padding: 30px 40px;
  }
  header .inner .ci-nav {
    align-items: flex-end;
  }
  header .inner .ci-nav .ci {
    width: 300px;
    flex-shrink: 0;
  }
  header .inner .ci-nav .nav {
    display: block;
  }
  header .inner .ci-nav .nav nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    font-family: futura-pt, sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  header .inner .ci-nav .nav nav ul li {
    margin-left: 2em;
  }
  header .inner .ci-nav .nav nav ul li.ig {
    position: relative;
    top: -1px;
  }
  header .inner .ci-nav .nav nav ul li.ig img {
    width: 18px;
  }
  header .inner .ci-nav .tgl {
    display: none;
  }
}

footer {
  width: 100%;
  z-index: 10;
  background: rgba(255, 255, 255, 0.55);
  padding: 15px 20px;
}
footer .inner .ci-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .inner .ci-nav .ci {
  width: 200px;
}
footer .inner .ci-nav .ci .logo {
  line-height: 0;
}
footer .inner .ci-nav .nav {
  display: none;
}
footer .inner .ci-nav .tgl {
  display: none;
}
footer .inner .copyright {
  font-size: 10px;
  text-align: center;
  margin-top: 5em;
}
@media screen and (min-width: 1025px) {
  footer {
    padding: 30px 40px;
  }
  footer .inner .ci-nav {
    align-items: flex-end;
    justify-content: space-between;
  }
  footer .inner .ci-nav .ci {
    width: 300px;
    flex-shrink: 0;
  }
  footer .inner .ci-nav .nav {
    display: block;
  }
  footer .inner .ci-nav .nav nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    font-family: futura-pt, sans-serif;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  footer .inner .ci-nav .nav nav ul li {
    margin-left: 2em;
  }
  footer .inner .ci-nav .nav nav ul li.ig {
    position: relative;
    top: -1px;
  }
  footer .inner .ci-nav .nav nav ul li.ig img {
    width: 18px;
  }
  footer .inner .ci-nav .tgl {
    display: none;
  }
}

.wrap {
  overflow: clip;
  position: relative;
}
.nav-sp {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}
.nav-sp .tgl {
  position: absolute;
  z-index: 101;
  top: 16px;
  right: 20px;
}
.nav-sp .tgl button {
  text-indent: -9999px;
  border: 0;
  padding: 0;
  background: none;
  margin-top: 0px;
  width: 20px;
  height: 20px;
  position: relative;
  display: block;
  transition: all 0.5s;
}
.nav-sp .tgl button::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #2D292B;
  position: absolute;
  top: 10px;
  transition: all 0.5s;
  transform: rotate(135deg);
}
.nav-sp .tgl button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #2D292B;
  position: absolute;
  bottom: 9px;
  transition: all 0.5s;
  transform: rotate(45deg);
}
.nav-sp nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.nav-sp nav ul.en {
  font-size: 15px;
  font-weight: bold;
}
.nav-sp nav ul.en li {
  margin: 1.5em 0;
}
.nav-sp nav ul.en li.ig img {
  width: 18px;
  margin-top: 2em;
}
.has_navsp .nav-sp {
  z-index: 30;
  opacity: 1;
}
@media screen and (min-width: 1025px) {
  .nav-sp {
    display: none;
  }
}

/* utility
**************************************************************************************************************************/
.u-img-zoom {
  overflow: hidden;
}
.u-img-zoom img {
  transform: scale(1);
  transition: 0.5s ease-in-out;
  width: 100%;
}
.u-img-zoom:hover img {
  transform: scale(1.1, 1.1);
}

/* wysiwyg
**************************************************************************************************************************/
/* area
**************************************************************************************************************************/
.area-kv {
  text-align: center;
}
.area-kv .inner .title-body {
  position: relative;
}
.area-kv .inner .title-body .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 1.3em;
  z-index: 5;
}
.area-kv .inner .title-body .title p.tagline {
  font-size: 17px;
  font-weight: bold;
}
.area-kv .inner .title-body .title p.tagline span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5em 1em;
  word-break: keep-all;
}
.area-kv .inner .title-body .body .img-kv {
  opacity: 0;
  transition: opacity 0.3s linear;
}
.area-kv .inner .title-body .body .img-kv.slick-initialized {
  opacity: 1;
}
.area-kv .inner .title-body .body .img-kv li {
  vertical-align: bottom;
}
.area-kv .inner .title-body .body picture img {
  width: 100%;
  height: auto;
}
.area-kv .inner .title-body .body p.name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  width: 100vw;
}
@media screen and (min-width: 1025px) {
  .area-kv .inner .title-body .title p.tagline {
    font-size: 32px;
  }
  .area-kv .inner .title-body .body picture img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
  }
}

.area-service {
  margin-bottom: 40px;
}
.area-service .inner .title-body .title {
  padding: 40px 30px 60px 30px;
}
.area-service .inner .title-body .body {
  background: #E8EDEF url(../img/icon/question.png) 50% 150px no-repeat;
  background-size: 189px auto;
  padding: 36px;
}
.area-service .inner .title-body .body .block-solution {
  margin-bottom: 34px;
}
.area-service .inner .title-body .body .block-solution .head {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-top: 60px;
  background: #F3F2F3;
}
.area-service .inner .title-body .body .block-solution .head .imgtxt .txt {
  background: #DCDBDC;
  padding: 20px 60px;
}
.area-service .inner .title-body .body .block-solution .head .imgtxt .txt p {
  display: grid;
  grid-template-areas: "serial name" "serial lead";
}
.area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.serial {
  grid-area: serial;
  place-content: center center;
  font-family: futura-pt, sans-serif;
  font-weight: bold;
  font-size: 94px;
  line-height: 0;
  margin-right: 10px;
}
.area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.name {
  grid-area: name;
  font-size: 14px;
}
.area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.lead {
  grid-area: lead;
  font-size: 16px;
  font-weight: bold;
}
.area-service .inner .title-body .body .block-solution .content .solution-body {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #F3F2F3;
}
.area-service .inner .title-body .body .block-solution .content .solution-foot {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #fff;
  padding: 40px 30px;
  position: relative;
}
.area-service .inner .title-body .body .block-solution .content .solution-foot::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  background: #F3F2F3;
  height: 17.3205080757px;
  width: 56px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.area-service .inner .title-body .body .block-solution.solution03 .content .solution-foot::after{
	background: #b3b3bd;
}


.area-service .inner .title-body .body .block-solution .content .solution-foot .c-hl03 {
  font-size: 22px;
  font-family: futura-pt, sans-serif;
  margin-bottom: 1em;
}
.area-service .inner .title-body .body .block-solution .content .solution-foot p {
  font-size: 16px;
  line-height: 1.8;
}
.area-service .inner .title-body .body .block-solution.solution01 {
  position: relative;
}
.area-service .inner .title-body .body .block-solution.solution01 .solution-body {
  padding: 20px 10px;
}
.area-service .inner .title-body .body .block-solution.solution01::before {
  content: "";
  display: block;
  width: 100%;
  height: 40px;
  background: #BAB9B9;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.area-service .inner .title-body .body .block-solution.solution01::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1px;
  background: #E8EDEF;
  height: 17.3205080757px;
  width: 56px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.area-service .inner .title-body .body .block-solution.solution02 .solution-body {
  padding: 30px 36px;
}
.area-service .inner .title-body .body .block-solution.solution03 .solution-body {
  padding: 50px 24px;
  background: url(../img/top/thumb-solution03-sp.jpg) 50% 50% no-repeat;
  background-size: cover;
}
.area-service .inner .title-body .body .block-solution.solution04 .solution-body {
  padding: 30px 36px;
}
@media screen and (min-width: 1025px) {
  .area-service {
    margin-bottom: 80px;
  }
  .area-service .inner .title-body .title {
    padding: 70px 100px 80px 100px;
  }
  .area-service .inner .title-body .body {
    padding: 60px 100px 0 100px;
    background: #E8EDEF url(../img/icon/question.png) 50% 80px no-repeat;
    background-size: 300px auto;
  }
  .area-service .inner .title-body .body .block-slider-solution {
    position: relative;
  }
  .area-service .inner .title-body .body .block-slider-solution .c-hl03 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .area-service .inner .title-body .body .block-solution {
    margin-bottom: 85px;
  }
  .area-service .inner .title-body .body .block-solution .head {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-top: 85px;
  }
  .area-service .inner .title-body .body .block-solution .head .imgtxt .txt {
    background: #DCDBDC;
    padding: 20px 60px;
  }
  .area-service .inner .title-body .body .block-solution .head .imgtxt .txt p {
    display: grid;
    grid-template-areas: "serial name" "serial lead";
    grid-template-columns: 100px auto;
  }
  .area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.serial {
    font-family: futura-pt, sans-serif;
    font-weight: bold;
    font-size: 94px;
    line-height: 0;
    margin-right: 10px;
  }
  .area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.name {
    grid-area: name;
    font-size: 18px;
    width: 100%;
  }
  .area-service .inner .title-body .body .block-solution .head .imgtxt .txt p span.lead {
    grid-area: lead;
    font-size: 21px;
    width: 100%;
  }
  .area-service .inner .title-body .body .block-solution .content .solution-foot {
    padding: 80px 100px;
  }
  .area-service .inner .title-body .body .block-solution .content .solution-foot .solution-foot-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin-inline: auto;
  }
  .area-service .inner .title-body .body .block-solution .content .solution-foot .c-hl03 {
    font-size: 30px;
    margin-bottom: 0;
  }
  .area-service .inner .title-body .body .block-solution .content .solution-foot p {
    font-size: 16px;
    margin-left: 70px;
  }
  .area-service .inner .title-body .body .block-solution.solution01 .head {
    padding-top: 0;
    background: #e7e6e7;
  }
  .area-service .inner .title-body .body .block-solution.solution01 .head .imgtxt {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    margin-left: 10vw;
  }
  .area-service .inner .title-body .body .block-solution.solution01 .head .imgtxt .img {
    order: 2;
    width: 60%;
  }
  .area-service .inner .title-body .body .block-solution.solution01 .head .imgtxt .txt {
    order: 1;
    margin-top: 30px;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .area-service .inner .title-body .body .block-solution.solution01 .solution-body {
    padding: 125px 100px;
  }
  .area-service .inner .title-body .body .block-solution.solution01::before {
    height: 70px;
  }
  .area-service .inner .title-body .body .block-solution.solution02 .head {
    padding-top: 0;
    background: #e7e6e7;
  }
  .area-service .inner .title-body .body .block-solution.solution02 .head .imgtxt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-right: 10vw;
  }
  .area-service .inner .title-body .body .block-solution.solution02 .head .imgtxt .img {
    width: 60%;
  }
  .area-service .inner .title-body .body .block-solution.solution02 .head .imgtxt .txt {
    margin-top: 30px;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .area-service .inner .title-body .body .block-solution.solution02 .solution-body {
    padding: 90px 100px;
  }
  .area-service .inner .title-body .body .block-solution.solution03 .head {
    padding-top: 0;
    background: #e7e6e7;
  }
  .area-service .inner .title-body .body .block-solution.solution03 .head .imgtxt {
    margin-left: 10vw;
  }
  .area-service .inner .title-body .body .block-solution.solution03 .head .imgtxt .txt {
    margin-top: 30px;
    padding-top: 5vw;
    padding-left: 18vw;
    padding-bottom: 100px;
  }
  .area-service .inner .title-body .body .block-solution.solution03 .solution-body {
    padding: 0 100px 100px 100px;
    background: url(../img/top/thumb-solution03-pc.jpg) 50% 50% no-repeat;
    background-size: cover;
  }
  .area-service .inner .title-body .body .block-solution.solution03 .solution-body .c-item02 {
    position: relative;
    top: -50px;
  }
  .area-service .inner .title-body .body .block-solution.solution04 .head {
    padding-top: 0;
    background: #e7e6e7;
  }
  .area-service .inner .title-body .body .block-solution.solution04 .head .imgtxt {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-right: 10vw;
  }
  .area-service .inner .title-body .body .block-solution.solution04 .head .imgtxt .img {
    width: 60%;
  }
  .area-service .inner .title-body .body .block-solution.solution04 .head .imgtxt .txt {
    margin-top: 30px;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
  .area-service .inner .title-body .body .block-solution.solution04 .solution-body {
    padding: 125px 100px;
  }
}

.area-achievement {
  background: #fff;
}
.area-achievement .inner .title-body .title hgroup.c-hl01 .lead {
  padding: 0 35px;
}
.area-achievement .inner .title-body .title hgroup.c-hl01 .lead p {
  font-size: 16px;
  line-height: 1.8;
}
.area-achievement .inner .title-body .body {
  padding: 30px 30px 0 30px;
}
.area-achievement .inner .title-body .body .block-client {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: rgba(110, 138, 153, 0.13);
  padding: 30px 0 60px 0;
}
@media screen and (min-width: 1025px) {
  .area-achievement {
    background: #fff;
  }
  .area-achievement .inner .title-body .title {
    margin-bottom: 64px;
  }
  .area-achievement .inner .title-body .title hgroup.c-hl01 .lead {
    padding: 0;
  }
  .area-achievement .inner .title-body .body {
    padding: 0px;
  }
  .area-achievement .inner .title-body .body .block-client {
    padding: 40px 0 100px 0;
  }
}

.area-profile {
  background: rgba(45, 41, 43, 0.05);
  padding: 30px 35px;
}
.area-profile .inner .title-body .title {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.area-profile .inner .title-body .body .u-gmap {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
@media screen and (min-width: 1025px) {
  .area-profile {
    padding: 70px 100px 100px 100px;
  }
  .area-profile .inner .title-body .body {
    max-width: 1000px;
    margin-inline: auto;
  }
  .area-profile .inner .title-body .body .u-gmap {
    width: 100%;
    margin-left: 0;
  }
}

.area-contact {
  background: rgba(168, 168, 168, 0.2);
  padding: 40px 35px;
}
@media screen and (min-width: 1025px) {
  .area-contact {
    padding: 70px 100px 100px 100px;
  }
  .area-contact .inner .title-body .body {
    max-width: 1000px;
    margin-inline: auto;
  }
}

/* component
**************************************************************************************************************************/
/* headline */
hgroup.c-hl01 .main {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: futura-pt, sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 1.2em;
  position: relative;
  display: flex;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  justify-content: center;
}
hgroup.c-hl01 .main small {
  display: block;
  font-size: 13px;
  font-weight: normal;
}
hgroup.c-hl01 .main::before, hgroup.c-hl01 .main::after {
  content: "";
  flex-grow: 1;
  height: 1px;
}
hgroup.c-hl01 .main::before {
  margin-right: 10px;
  background: #009fe8;
  margin-top: 0.6em;
}
hgroup.c-hl01 .main::after {
  margin-left: 10px;
  background: linear-gradient(90deg, rgb(229, 0, 18) 0%, rgb(229, 0, 18) 40%, rgb(9, 135, 60) 40%, rgb(9, 135, 60) 100%);
  margin-top: 0.6em;
}
hgroup.c-hl01 .sub {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
hgroup.c-hl01 .lead {
  text-align: left;
}
hgroup.c-hl01 .lead p {
  font-size: 16px;
  line-height: 1.8;
}
hgroup.c-hl01.nobd .main::before, hgroup.c-hl01.nobd .main::after {
  display: none;
}
@media screen and (min-width: 1025px) {
  hgroup.c-hl01 .main {
    font-size: 44px;
  }
  hgroup.c-hl01 .main::before {
    margin-right: 15px;
  }
  hgroup.c-hl01 .main::after {
    margin-left: 15px;
  }
  hgroup.c-hl01 .sub {
    font-size: 40px;
  }
  hgroup.c-hl01 .lead {
    text-align: center;
  }
}

.c-hl02 {
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.8em;
}
@media screen and (min-width: 1025px) {
  .c-hl02 {
    font-size: 28px;
  }
}

.c-hl03 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.9em;
}
@media screen and (min-width: 1025px) {
  .c-hl03 {
    font-size: 35px;
  }
}

.c-hl04 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.8em;
  font-family: futura-pt, sans-serif;
}
.c-hl04 small {
  font-family: noto-sans, sans-serif;
  display: block;
  font-size: 13px;
}
@media screen and (min-width: 1025px) {
  .c-hl04 {
    font-size: 36px;
  }
}

.c-hl05 {
  font-family: futura-pt, sans-serif;
  font-weight: bold;
  font-size: 34px;
  line-height: 0;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: -0.3em;
}
.c-hl05 span {
  font-size: 146px;
}
.c-hl05.is_horizontal {
  margin-bottom: 0;
}
.c-hl05.is_vertical {
  transform: rotate(90deg) translateX(calc(100% - 3em));
  transform-origin: calc(100% - 1.1em) 0;
}
@media screen and (min-width: 1025px) {
  .c-hl05 {
    font-size: 75px;
  }
  .c-hl05 span {
    font-size: 325px;
  }
  .c-hl05.is_vertical {
    transform: rotate(90deg) translateX(calc(100% - 1.8em));
  }
}

/* button */
.btn.btn-more {
  display: inline-block;
  margin-inline: auto;
  font-family: futura-pt, sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 12px;
  padding: 0.5em 1.5em;
  background: #A4A3A4;
}
@media screen and (min-width: 1025px) {
  .btn.btn-more {
    font-size: 20px;
  }
}

/* slider */
.c-sliderset {
  margin-bottom: 40px;
}
.c-sliderset ul.sub {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 4%;
  justify-content: center;
}
.c-sliderset ul.sub li {
  text-align: center;
  font-size: 10px;
  cursor: pointer;
  width: 22%;
  margin-bottom: 4%;
}
.c-sliderset ul.sub li span {
  display: block;
  margin-top: 0.8em;
  font-weight: 600;
}
.c-sliderset .main {
  position: relative;
}
.c-sliderset .main .items {
  background: #fff;
  padding: 20px 40px;
}
.c-sliderset .main .items .item h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  margin-left: -1em;
}
.c-sliderset .main .items .item h4 img {
  width: 70px;
}
.c-sliderset .main .items .item p {
  font-size: 14px;
  line-height: 2;
}
.c-sliderset .main .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.c-sliderset .main .slick-arrow.slick-prev {
  text-indent: -9999px;
  overflow: hidden;
  left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 10px solid #000000;
  border-left: 0;
  background: none;
}
.c-sliderset .main .slick-arrow.slick-next {
  text-indent: -9999px;
  overflow: hidden;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #000000;
  border-right: 0;
  background: none;
}
@media screen and (min-width: 1025px) {
  .c-sliderset {
    margin-bottom: 50px;
  }
  .c-sliderset ul.sub {
    display: grid;
    gap: 36px 20px;
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 40px;
    max-width: 672px;
    margin-inline: auto;
  }
  .c-sliderset ul.sub li {
    font-size: 14px;
    width: auto;
    margin-bottom: 0;
  }
  .c-sliderset .main {
    max-width: 700px;
    margin-inline: auto;
  }
  .c-sliderset .main .items {
    padding: 20px 80px;
  }
  .c-sliderset .main .items .item h4 {
    font-size: 20px;
  }
  .c-sliderset .main .items .item h4 img {
    width: 80px;
  }
  .c-sliderset .main .items .item p {
    font-size: 16px;
  }
  .c-sliderset .main .slick-arrow.slick-prev {
    left: 30px;
  }
  .c-sliderset .main .slick-arrow.slick-next {
    right: 30px;
  }
}

/* solution */
.c-slider-solution {
  margin-bottom: 70px;
}
.c-slider-solution .row {
  position: relative;
}
.c-slider-solution .row dt {
  display: flex;
  align-items: center;
  background: rgba(164, 164, 164, 0.9);
  color: #fff;
  padding: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.c-slider-solution .row dt span:nth-of-type(1) {
  font-size: 36px;
	font-weight: 900;
  flex-shrink: 0;
}
.c-slider-solution .row dt span:nth-of-type(2) {
  font-size: 14px;
  font-weight: 700;
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #fff;
}
.c-slider-solution .row dd span {
  display: none;
}
.c-slider-solution .slick-list {
  width: 80%;
  overflow: visible;
  margin-left: -12px;
}
.c-slider-solution .slick-slide {
  padding: 0 12px;
}
.c-slider-solution .slick-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
}
.c-slider-solution .slick-dots li {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #969495;
}
.c-slider-solution .slick-dots li.slick-active {
  background: #FFADCF;
}
.c-slider-solution .slick-dots li button {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}
@media screen and (min-width: 1025px) {
  .c-slider-solution {
    display: grid;
    gap: 120px 40px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-inline: auto;
    margin-bottom: 100px;
  }
  .c-slider-solution .row {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }
  .c-slider-solution .row dt {
    padding: 10px 20px 15px 25px;
    background: rgba(255, 255, 255, 0.85);
    color: #2D292B;
    z-index: 3;
  }
  .c-slider-solution .row dt span:nth-of-type(1) {
    font-size: 60px;
	  font-weight: 900;
	  line-height: 1;
  }
  .c-slider-solution .row dt span:nth-of-type(2) {
    font-size: 16px;
    border-color: #2D292B;
	  padding-top: 5px;
	  padding-bottom: 5px;
	  margin-top: 5px;
	  margin-left: 2em;
  }
  .c-slider-solution .row dd picture {
    position: relative;
    z-index: 1;
  }
  .c-slider-solution .row dd span {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    place-content: center center;
    text-align: center;
    background: rgba(118, 118, 255, 0.75);
    z-index: 2;
    transform: translateY(100%);
    transition: all 0.3s;
  }
	.c-slider-solution .row:nth-of-type(2) dd span {background: rgba(148, 255, 191, 0.75);}
	.c-slider-solution .row:nth-of-type(3) dd span {background: rgba(255, 255, 113, 0.75);}
	.c-slider-solution .row:nth-of-type(4) dd span {background: rgba(244, 146, 146, 0.75);}
	
  .c-slider-solution .row:hover dd span {
    transform: translateY(0);
  }
}

.c-slider01 {
  margin-bottom: 0px;
}
.c-slider01 .row {
  position: relative;
}
.c-slider01 .row dt {
  background: rgba(164, 164, 164, 0.9);
  color: #fff;
  padding: 14px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  line-height: 1.8;
}
.c-slider01 .row dd {
  font-size: 12px;
}
.c-slider01.is_sp_scroll {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: scroll;
  padding-left: 10px;
  padding-bottom: 20px;
}
.c-slider01.is_sp_scroll dl {
  display: flex;
  gap: 20px;
}
.c-slider01.is_sp_scroll dl .row {
  width: 340px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .c-slider01 {
    margin-bottom: 50px;
  }
  .c-slider01 dl {
    display: grid;
    gap: 65px 65px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
    margin-inline: auto;
  }
  .c-slider01 .row {
    position: relative;
   
  }
  .c-slider01 .row dt {
    padding: 20px 0 0;
	  background: none;
	  position: inherit;
	  color: #2D292B;
  }
  .c-slider01 .row dd picture {
    position: relative;
    z-index: 1;
  }
  .c-slider01 .row:hover dt {
    
  }
  .c-slider01.is_sp_scroll {
    width: 100%;
    margin-left: 0;
    overflow: visible;
    padding-left: 0px;
    padding-bottom: 0;
  }
  .c-slider01.is_sp_scroll dl {
    display: grid;
    gap: 65px;
  }
  .c-slider01.is_sp_scroll dl .row {
    width: auto;
  }
}

.c-item01 .items {
  display: grid;
  gap: 24px 24px;
  grid-auto-flow: row;
}
.c-item01 .item .imgtxt .img {
  position: relative;
}
.c-item01 .item .imgtxt .img picture img {
  aspect-ratio: 300/175;
}
.c-item01 .item .imgtxt .img p {
  background: rgba(164, 164, 164, 0.9);
  width: 100%;
  padding: 0.8em;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
}
.c-item01 .item .imgtxt .txt {
  margin-top: 1em;
}
.c-item01 .item .imgtxt .txt p {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  .c-item01 {
    max-width: 1200px;
    margin-inline: auto;
  }
  .c-item01 .items {
    display: grid;
    gap: 100px 100px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: column;
  }
  .c-item01 .item .imgtxt .img picture img {
    aspect-ratio: auto;
  }
  .c-item01 .item .imgtxt .img p {
    font-size: 16px;
  }
}

.c-item02 .items {
  display: grid;
  grid-auto-flow: row;
  gap: 28px;
}
.c-item02 .item {
  background: #fff;
}
.c-item02 .item .imgtxt .txt {
  padding: 30px 50px;
}
.c-item02 .item .imgtxt .txt .c-hl03 {
  font-size: 20px;
}
.c-item02 .item .imgtxt .txt .lead p {
  margin-bottom: 1em;
  font-size: 14px;
  line-height: 1.8;
}

.c-item02 .item .imgtxt .txt .lead p:nth-of-type(1){
	font-size: 16px;
	font-weight: 700;
}

.c-item02 .item .imgtxt .img {
  background: #E7E7E7;
  padding: 24px 34px;
}
.c-item02 .item .imgtxt .img h5 {
  font-size: 16px;
  text-align: center;
}
.c-item02 .item .imgtxt .img picture {
  margin: 1.5em 0;
}
.c-item02 .item .imgtxt .img p {
  font-size: 14px;
  font-weight: bold;
}
@media screen and (min-width: 1025px) {
  .c-item02 .items {
    gap: 72px;
    max-width: 1160px;
    margin-inline: auto;
  }
  .c-item02 .item {
    background: #fff;
  }
  .c-item02 .item .imgtxt {
    display: flex;
    align-items: center;
  }
  .c-item02 .item .imgtxt .txt {
    padding: 50px;
    width: 380px;
  }
  .c-item02 .item .imgtxt .txt .c-hl03 {
    font-size: 24px;
  }
  .c-item02 .item .imgtxt .txt .lead p {
    font-size: 14px;
  }
  .c-item02 .item .imgtxt .img {
    padding: 50px 80px;
    flex: 1;
  }
  .c-item02 .item .imgtxt .img h5 {
    font-size: 18px;
  }
  .c-item02 .item .imgtxt .img p {
    font-size: 20px;
    text-align: center;
  }
}

.c-slider03 .item .imgtxt {
  position: relative;
}
.c-slider03 .item .imgtxt .txt {
  background: #aaa;
  color: #fff;
  padding: 18px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-slider03 .item .imgtxt .txt h4 {
  text-align: center;
}
.c-slider03 .item .imgtxt .txt h4 span.en {
  font-size: 25px;
}
.c-slider03 .item .imgtxt .txt h4 small {
  font-size: 11px;
  display: block;
}
.c-slider03 .item .imgtxt .txt p {
  font-size: 13px;
  margin-top: 0.8em;
}
.c-slider03.is_sp_scroll {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: scroll;
  padding-left: 20px;
  padding-bottom: 20px;
}
.c-slider03.is_sp_scroll .items {
  display: flex;
  gap: 20px;
}
.c-slider03.is_sp_scroll .item {
  width: 340px;
  flex-shrink: 0;
}
@media screen and (min-width: 1025px) {
  .c-slider03 .items {
    display: grid;
    gap: 80px 80px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1060px;
    margin-inline: auto;
  }
  .c-slider03 .item {
    background: rgba(45, 45, 45, 0.4);
  }
  .c-slider03 .item .imgtxt {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .c-slider03 .item .imgtxt .img {
    order: 2;
    width: 55%;
  }
  .c-slider03 .item .imgtxt .txt {
    background: rgba(45, 45, 45, 0.4);
    padding: 28px;
    width: auto;
    position: static;
    order: 1;
    background: none;
    flex: 1;
  }
  .c-slider03 .item .imgtxt .txt h4 span.en {
    font-size: 28px;
  }
  .c-slider03 .item .imgtxt .txt h4 small {
    font-size: 12px;
  }
  .c-slider03 .item .imgtxt .txt p {
    font-size: 14px;
    margin-top: 1.5em;
  }
  .c-slider03.is_sp_scroll {
    width: 100%;
    margin-left: 0;
    overflow: visible;
    padding-left: 0px;
    padding-bottom: 0;
  }
  .c-slider03.is_sp_scroll .items {
    display: grid;
    gap: 80px;
  }
  .c-slider03.is_sp_scroll .item {
    width: auto;
  }
}

/* achievement */
.c-list-img {
  margin-bottom: 30px;
  text-align: center;
}
.c-list-img ul {
  display: grid;
  gap: 12px 12px;
  grid-template-columns: repeat(3, 1fr);
}
.c-list-img p.more {
  margin-top: 20px;
  text-align: center;
}

	.c-list-img ul dl{
		font-size: 12px;
		margin-top: 10px;
	}	
@media screen and (min-width: 1025px) {
  .c-list-img {
    margin-bottom: 100px;
  }
  .c-list-img ul {
    gap: 30px 30px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1080px;
    margin-inline: auto;
  }
	.c-list-img ul dl{
		font-size: 14px;
		margin-top: 10px;
	}	
	
  .c-list-img p.more {
    margin-top: 48px;
  }
}

.c-list-movie {
  margin-bottom: 30px;
	text-align: center;
}
.c-list-movie .movies {
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
}
.c-list-movie p.more {
  margin-top: 20px;
  text-align: center;
}

	 .c-list-movie .movies dl{
		font-size: 12px;
		margin-top: 10px;
	}

@media screen and (min-width: 1025px) {
  .c-list-movie {
    margin-bottom: 100px;
  }
  .c-list-movie .movies {
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
    max-width: 1260px;
    margin-inline: auto;
  }
  .c-list-movie p.more {
    margin-top: 48px;
  }
	 .c-list-movie .movies dl{
		font-size: 14px;
		margin-top: 10px;
	}
	
}

.c-instagram {
  margin-bottom: 30px;
}
.c-instagram p.more {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .c-instagram {
    margin-bottom: 100px;
    max-width: 1000px;
    margin-inline: auto;
  }
  .c-instagram p.more {
    margin-top: 48px;
  }
}

/* ===== 外枠（動かさない） ===== */
.c-slider-logo .logos {
  display: flex;
  overflow: hidden;          /* ← 必須 */
  align-items: center;
}

/* ===== 実際に流れる要素 ===== */
.c-slider-logo .logos > ul {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  width: max-content;        /* ← 実寸幅を確定させる */
	padding-right: 20px;
	margin: 10px auto;
}

/* ロゴ単体 */
.c-slider-logo ul li {
  flex-shrink: 0;
}

.c-slider-logo ul li img {
  max-width: 150px;
  max-height: 20px;
  width: auto;
  height: auto;
}

/* ===== アニメーション指定（ulに掛ける） ===== */
.c-slider-logo .first > ul {
  animation: scroll 40s linear infinite;
}

.c-slider-logo .second > ul {
  animation: scroll 40s linear infinite reverse;
}

/* ===== PC調整 ===== */
@media screen and (min-width: 1025px) {
  .c-slider-logo .logos > ul {
    gap: 50px;
	  padding-right: 50px;
	  margin: 0;
  }

  .c-slider-logo ul li img {
    max-width: 150px;
    max-height: 50px;
  }
}

/* ===== 無限スクロール本体 ===== */
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.c-company-outline dl {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 30px;
}
.c-company-outline dl .row {
  margin-bottom: 1.5em;
}
.c-company-outline dl .row dt {
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 0.3em;
  margin-bottom: 0.5em;
}


@media screen and (min-width: 1025px) {
  .c-company-outline dl {
    font-size: 16px;
    margin-bottom: 60px;
  }
  .c-company-outline dl .row {
    margin-bottom: 1.5em;
    display: flex;
  }
  .c-company-outline dl .row dt {
    border-bottom: none;
    padding: 0.5em 0;
    margin-bottom: 0;
    width: 100px;
  }
  .c-company-outline dl .row dd {
    padding: 0.5em 0;
    flex: 1;
    margin-left: 20px;
  }
}

.c-form dl {
  margin-bottom: 2em;
}
.c-form dl .row {
  margin-bottom: 1.5em;
}
.c-form dl .row dt {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0.8em;
}
.c-form dl .row dt .require {
  background: #333;
  color: #fff;
  font-size: 10px;
  display: inline-block;
  margin-left: 1em;
  padding: 0.1em 0.6em;
  vertical-align: middle;
  margin-top: -2px;
}
.c-form p.submit {
  text-align: center;
}
.c-form p.submit button {
  border: 0;
  display: inline-block;
  color: #fff;
  background: #969495;
  font-size: 16px;
  font-weight: bold;
  padding: 0.5em 3em;
  border-radius: 100px;
}
.c-form #thankYouMessage {
  text-align: center;
  margin-top: 2em;
}
.c-form #thankYouMessage h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 1em;
}
.c-form #thankYouMessage p.contact-tankscopy {
  font-size: 13px;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  .c-form dl {
    margin-bottom: 2em;
  }
  .c-form dl .row {
    margin-bottom: 1.5em;
    display: flex;
  }
  .c-form dl .row dt {
    font-size: 16px;
    margin-bottom: 0;
    width: 180px;
    margin-right: 50px;
    padding-top: 0.8em;
  }
  .c-form dl .row dd {
    flex: 1;
  }
  .c-form p.submit {
    text-align: center;
  }
  .c-form p.submit button {
    border: 0;
    display: inline-block;
    color: #fff;
    background: #969495;
    font-size: 16px;
    font-weight: bold;
    padding: 0.5em 3em;
    border-radius: 100px;
    transition: all 0.3s;
  }
  .c-form p.submit button:hover {
    background: #FFADCF;
  }
  .c-form #thankYouMessage h3 {
    font-size: 18px;
  }
  .c-form #thankYouMessage p.contact-tankscopy {
    font-size: 14px;
  }
}

/* utility
**************************************************************************************************************************/
.u-maker {
  background: linear-gradient(transparent 60%, #FF83B6 60%);
  padding: 0 0.2em;
}


#photograph .solution-foot .u-maker {
  background: linear-gradient(transparent 60%, #7676FFBF 60%);
}

#location .solution-foot .u-maker {
  background: linear-gradient(transparent 60%, #94ffbfBF 60%);
}

#planning .solution-foot .u-maker {
  background: linear-gradient(transparent 60%, #ffff71BF 60%);
}

#team .solution-foot .u-maker {
  background: linear-gradient(transparent 60%, #f49292BF 60%);
}

.u-lead {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 1025px) {
  .u-lead {
    text-align: center;
    font-size: 16px;
    margin-bottom: 2em;
  }
}

.has_icn {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.has_icn::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icn-mark.svg) 0 0 no-repeat;
  background-size: contain;
  margin-right: 0.3em;
}

/*# sourceMappingURL=layout.css.map */
