@charset "UTF-8";

/*** main visual ***/
@media all {
  .main-visual {
    position: relative;
    overflow: hidden;
  }

  .main-copy {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .main-copy-ttl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 12em;
    height: 12em;
    background: radial-gradient(#fff 3em, transparent 6em);
  }

  .visual-item {
    overflow: hidden;
  }

  .visual-item img {
    object-fit: cover;
    object-position: bottom center;
    width: 100%;
    height: 100%;
  }

  .bgm {
    position: absolute;
    z-index: 10;
    bottom: 20px;
    right: 20px;
    font-size: 12px;
    line-height: 1.5;
  }
  .bgm-ttl {
    padding: 0 2em;
    white-space: nowrap;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #000;
  }
  .bgm-copy {
    display: block;
    color: #505050;
    font-weight: normal;
    text-align: right;
  }
  .bgm-notice {
    text-align: center;
  }
}

/* main visual - sp & tab */
@media only screen and (max-width: 979px) {}

/* main visual - sp */
@media only screen and (max-width: 599px) {
  .main-visual {
    height: 125vw;
    height: 130vw;
    overflow: visible;
  }
  @supports (-webkit-touch-callout: none) {
    .main-visual {
      height: calc(100vh - 145px);
    }
  }

  .visual-list, .slick-list, .slick-track {height: 100%;}
  
  .main-copy {
    justify-content: center;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .main-copy-ttl {
    margin-top: 20vw;
    background: radial-gradient(#fff 3.25em, transparent 4.75em);
    font-size: 5.625vw;
  }
  .bgm {
    bottom: -120px;
    right: calc(50% - 160px);
    padding: 12px 0 0;
    width: 320px;
    transform: scale(.8);
    transform-origin: top center;
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
  }
  .bgm-copy {margin-top: 4px;}
  .bgm-player {margin: 6px 0;}
}

/* main visual - sp横向き */
@media (orientation: landscape) and (max-width: 599px) {
  .main-visual {
    height: 100vw;
  }
}

/* main visual - pc & tab */
@media print,
(min-width: 600px) {

  .main-visual,
  .visual-item {
    height: 550px;
  }

  .main-copy {
    padding-top: 60px;
  }
  .main-copy-ttl {
    font-size: 30px;
  }
}

/* main visual - tab */
@media only screen and (min-width: 600px) and (max-width: 979px) {
  .main-visual,
  .visual-item {
    height: 50vh;
    min-height: auto;
    max-height: 550px;
  }
  .main-copy-ttl {
    font-size: 26px;
  }
}

/* main visual - pc */
@media print,
(min-width: 980px) {}


/***** section common *****/
@media all {
  .main-section {
    position: relative;
  }
  .section-ttl {
    text-align: center;
    font-weight: bold;
  }
  .section-ttl::after {
    content: attr(data-en);
    display: block;
    font-weight: normal;
  }
  
  .diagonal-bg {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1360px;
    background : top center no-repeat url(../img/top/diagonal-bg.svg);
    z-index: -1;
  }
  b.orange {color: orange}
  b.blue {color:#2850B4}
  b.green{color:#28A028}
}
/* section common - sp */
@media screen and (max-width: 599px) {
  .section-header {
    margin: 30px auto 30px;
    padding: 0 20px;
  }
  .section-ttl {
    font-size: 22px;
  }
  .section-ttl::after {
    font-size: 12px;
    font-weight: bold;
  }
  .section-header-lead {
    margin-top: 20px;
    font-size: 14px;
  }
  h3 {
    font-size: 18px;
  }
}

/* section common - tab & pc */
@media print,
(min-width: 600px) {
  .section-header {
    margin: 100px auto 90px;
    width: calc(100% - 50px);
    max-width: 640px;
  }
  .section-ttl {
    font-size: 35px;
  }
  .section-ttl::after {
    font-size: 15px;
  }
  .section-header-lead {
    margin-top: 40px;
    font-size: 18px;
    text-align: center;
  }
  h3 {
    font-size: 25px;
  }
}
/* section common - tab */
@media screen and (min-width: 600px) and (max-width: 979px) {
  .section-ttl {
    font-size: 30px;
  }
  .section-header-lead {
    margin-top: 32px;
  }
}
/* section common - pc */
@media print,
(min-width: 980px) {
  .section-ttl::after {font-size: 16px;}
  .section-header-lead {font-size: 20px;}
  h3 {font-size: 28px;}
}

/*** news ***/
@media all {
  .news-list {
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 800px;
    color: #000;
  }
  .news-item {
    display: flex;
    align-items: center;
    padding: 1em 0;
    border-top: 1px solid #CACACA;
  }
  .news-item:last-child {
    border-bottom: 1px solid #CACACA;
  }
  .news-date {
    width: 8em;
  }
  .news-type {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8em;
    border-radius: 1em;
    background-color: #a5ddc0;
    box-shadow: 0 0 2px rgba(0,0,0,.3);
    transition: all .3s;
    color: #000;
    line-height: 1.4;
  }
  .news-type.event {background-color: #a2d2ff;}
  .news-type.news {background-color: #f9b4b0;}
  .news-type:hover {
    opacity: .6;
    box-shadow: 0 0 0 rgba(0,0,0,0);
  }
  .news-link {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    transition: opacity .3s, text-decoration .3s;
    color: #000;
  }
  .news-link:hover {
    opacity: .7;
    text-decoration: underline #888;
  }
}
/* news - sp */
@media screen and (max-width: 599px) {
  #news {margin-top: 160px;}
  .news-item {
    flex-wrap: wrap;
    padding: 10px 0;
    font-size: 16px;
  }
  .news-type, .news-date {
    width: 7em;
    font-size: 14px;
  }
  .news-link {
    margin: .25em 0 0;
    width: 100%;
    max-width: none;
  }
}
/*** news - tab & pc ***/
@media print,
(min-width: 600px) {
  .news-list {
    margin-top: -40px;
    font-size: 18px;
  }
  .news-type {
    padding-top: 1px;
    font-size: 14px;
  }
  .news-link {
    margin-left: 2em;
    max-width: calc(100% - 16.25em);
  }
}

/*** concept ***/
@media all {
  .concept-inner-section {
    display: flex;
    flex-wrap: wrap;
  }
  .s-list {
    list-style: decimal;
    margin-left: 1.5em;
  }
  .s-item dt span {
    color: #28A028;
  }
  .s-item dd span {
    color: #2850B4;
  }
  .s-item dd::before {
    content: ':';
  }
  .concept-latterhalf {
    position: relative;
  }
}

/* concept - sp */
@media screen and (max-width: 599px) {
  #concept {margin-top: 150px;}
  #concept .diagonal-bg {
    top: -575px;
  }
  .concept-content {
    margin-top: 80px;
  }
  .concept-item + .concept-item {
    margin-top: 45px;
  }
  .concept-inner-section {
    flex-direction: column-reverse;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 400px;
  }
  .concept-ttl {
    margin-top: 16px;
  }
  .concept-txt {
    margin-top: 12px;
    font-size: 14px;
  }
  .s-list {
    margin-top: 8px;
  }
  .s-item {
    font-size: 14px;
    line-height: 1.5;
  }
  .s-item dt,
  .s-item dd {
    display: inline;
  }
  .concept-item:last-child .concept-txt {
    font-feature-settings:"palt";
    white-space: inherit;
  }

  .concept-latterhalf {
    margin-top: 130px;
  }
  .diagonal-bg {
    top: -600px;
  }
  .concept-item2 + .concept-item2 {
    margin-top: 80px;
  }
  .concept-item2:first-child .concept-inner-section {
    flex-direction: column;
    padding: 0;
  }
  .concept-item2:first-child .concept-content-txt2 {
    width: 100%;
  }
  .concept-item2:first-child .concept-ttl {
    font-size: 22px;
    text-align: center;
  }
  .concept-img2 {
    margin-top: 20px;
  }
  .concept-img3,
  .concept-img5 {
    display: block;
    margin-left: auto;
    margin-right: 0;
    width: 71.4286%;
  }
  .concept-img4 {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: 60.71429%;
  }
}
/* concept - tab & pc */
@media print,
(min-width: 600px) {
  #concept {margin-top: 230px;}
  #concept .diagonal-bg {
    top: -570px;
  }
  .concept-content,
  .concept-content2 {
    margin: 0 auto;
    width: calc(100% - 50px);
    max-width: 850px;
  }
  .concept-item + .concept-item {
    margin-top: 40px;
  }
  .concept-inner-section {
    justify-content: space-between;
    align-items: center;
  }
  .concept-content-txt,
  .concept-img {
    width: 47%;
    max-width: 400px;
  }
  .concept-txt {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2.14;
  }
  .s-list {
    font-size: 14px;
  }
  .s-item dl {
    display: flex;
  }

  .concept-latterhalf {
    margin-top: 350px;
  }
  .concept-latterhalf .diagonal-bg {
    top: -630px;
  }

  .concept-content2 {
    max-width: 870px;
  }
  .concept-item2 + .concept-item2 {
    margin-top: 100px;
  }
  .concept-content-txt2 {
    width: 53%;
    max-width: 590px;
  }
  .concept-img2 {
    width: 40.23%;
    max-width: 350px;
  }
  .concept-img3 {
    margin-left: 9%;
    width: 36.1%;
    max-width: 314px;
  }
  .concept-img4 {
    margin-right: 12%;
    width: 27.59%;
    max-width: 240px;
  }
  .concept-img5 {
    margin-left: 5%;
    width: 41%;
    max-width: 360px;
  }

  
}
@media print,
(min-width: 980px) {
  .concept-content, .concept-content2 {max-width: 950px}
  .concept-content-txt, .concept-img {max-width: 450px;}
  .concept-txt {font-size: 18px;}
  .s-list {margin-top: 8px;font-size: 18px;}
  .concept-txt small {font-size: 16px;}
  .concept-img2 {max-width: 400px;}
  .concept-img3 {max-width: 360px;}
  .concept-img4 {max-width: 360px;}
}


/*** greeting ***/
@media all {
  .diagonal-bg.symmetric {
    transform: scale(-1,1);
  }
  .greeting-ceo dt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 2;
  }
}
/* greeting - sp */
@media only screen and (max-width: 599px) {
  #greeting {
    margin-top: 250px;
  }
  .greeting-txt {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 400px;
    font-size: 14px;
  }
  .txt-mt2 {
    margin-top: 2em;
  }
  .greeting-ceo {
    display: flex;
    flex-direction: column-reverse;
    margin: 80px auto 0;
    padding: 0 20px;
    max-width: 340px;
  }
  .greeting-ceo dt {
    margin-top: 20px;
    font-size: 20px;
  }
  .greeting-ceo small {
    font-size: 13px;
  }
}

/* greeting - tab & pc */
@media print,
(min-width: 600px) {
  #greeting {
    margin-top: 250px;
  }
  #greeting .diagonal-bg {
    top: -630px;
  }
  #greeting .section-header {
    margin-bottom: 40px;
  }
  .greeting-txt {
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    max-width: 710px;
    font-size: 14px;
    line-height: 2;
    text-align: center;
  }
  .greeting-txt.txt-mt2 {
    margin-top: 2em;
  }
  .greeting-ceo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px auto 0;
    padding: 0 25px;
    width: 100%;
    max-width: 510px;
  }
  .greeting-ceo dt small {
    font-size: 13px;
  }
  .greeting-ceo dt span {
    font-size: 20px;
  }
  .greeting-ceo dd {
    width: 259px;
  }
}
/* greeting - pc */
@media print,
(min-width: 980px) {
  .greeting-txt {font-size: 18px;max-width: 800px;}
  .greeting-ceo dt span {font-size: 22px;}
  .greeting-ceo dt small {font-size: 16px;}
}


/*** works ***/
@media all {
  .works-inner-section {
    margin: 0 auto;
    padding: 0 25px;
    width: 100%;
    max-width: 627px;
  }
  .works-inner-section h3 {
    text-align: center;
  }
  .work-detail li {
    display: inline;
  }
  .work-detail li+li::before {
    content: ' / ';
  }
  /* .work-detail:last-child:after {
    content: 'など';
    display: inline-block;
    margin-left: -.2em;
  } */
}

/* works - sp */
@media only screen and (max-width: 599px) {
  #works {margin-top: 60px;}
  .works-inner-section {
    margin-top: 40px;
  }
  .works-inner-section h3 {
    font-size: 21px;
  }
  .work-list {
    margin: 0 auto;
    padding: 20px 20px 0;
    max-width: 388px;
  }
  .work-item {
    padding: 0 4px;
  }
  .work-ttl {
    margin-top: 16px;
    font-size: 18px;
    font-weight: bold;
  }
  .work-detail {
    font-size: 14px;
  }
  .work-list .slick-prev {top:40%;left: 0;}
  .work-list .slick-next {top:40%;right: 0;}
  .work-list .slick-prev::before,
  .work-list .slick-next::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-left: 2px solid #505050;
    border-bottom: 2px solid #505050;
  }
  .work-list .slick-prev::before {
    transform: rotate(45deg);
  }
  .work-list .slick-next::before {
    transform: rotate(-135deg);
  }
}

/* works - tab & pc */
@media print,
(min-width: 600px) {
  .works-inner-section + .works-inner-section {
    margin-top: 40px;
  }
  .work-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
  }
  .work-item {
    width: 44.66%;
    max-width: 280px;
    min-height: 340px;
  }
  .work-ttl {
    margin-top: 20px;
    font-size: 15px;
    font-weight: bold;
  }
  .work-detail {
    margin-top: 4px;
    font-size: 14px;
  }
}

@media print,
(min-width: 980px) {
  .works-inner-section {max-width: 1300px}
  .work-list {justify-content: space-evenly;}
  .work-item {width: 29.474%;min-width: 280px;max-width: none;min-height: 396px;}
  /* .work-item:last-child {margin-right: 16.8421%;}
  .work-item:nth-last-child(2) {margin-left: 16.8421%;} */
  .work-item img {width: 100% !important;}
  .work-ttl {font-size: 18px;}
  .work-detail {font-size: 16px;}
  .carousel-2 {margin-top: 80px!important;}
}


/*** event ***/
@media all {
  #event::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 690px;
    background : linear-gradient(to top, rgba(255, 249, 228, 1) 0%, #fff 690px, #fff 100%);
    z-index: -1;
  }
  .event-list .slick-list {
    overflow: initial;
  }
  .event-list .slick-dots {
    bottom: auto;
    display: flex;
    width:35px;
    height: 7px;
  }
  .event-list .slick-dots li {
    margin: 0;
  }
  .event-list .slick-dots li+li {
    margin-left: 7px;
  }
  .event-list .slick-dots li,
  .event-list .slick-dots li button {
    padding: 0;
    width: 7px;
    height: 7px;
  }
  .event-list .slick-dots li button::before {
    content: '';
    width: 7px;
    height: 7px;
    background-color: #DCDCDC;
    opacity: 1;
  }
  .event-list .slick-dots li.slick-active button::before {
    background-color: #B24350;
    opacity: 1;
  }
  .event-item {
    position: relative;
  }
  .event-ttl {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 1.4em 0 1em;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0,0,0,.4);
    font-weight: bold;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .event-thumb {
    width: 100%;
    object-fit: cover;
  }
  .event-txt {
    transition: opacity .3s;
    word-break: break-word;
  }
  .event-txt span {
    color: #B24350;
  }
  .event-txt a {
    display: block;
    transition: opacity .3s;
  }
  .event-txt a:hover {
    opacity: .8;
    cursor: pointer;
  }
  .event-txt-all {
    display: none;
  }
  #lightcase-content .event-ttl {
    position: static;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #lightcase-content .event-txt {
    height: auto;
    width: auto;
  }
  .youtube {
    margin: 0 auto;
  }
}

/* event - sp */
@media only screen and (max-width: 599px) {
  #event {
    margin-top: 60px;
    overflow: hidden;
  }

  .event-list {
    margin: 0 auto;
    width: 320px;
  }
  .event-list .slick-dots {
    top: 210px;
    left: 20px;
  }
  .event-ttl {
    width: 74px;
    height: 196px;
    font-size: 14px;
  }
  .event-thumb {
    display: block;
    margin-left: auto;
    width: 280px;
    height: 196px;
  }
  .event-txt {
    margin-top: 30px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.7;
  }
  .youtube {
    margin-bottom: 40px;
    width: 300px;
  }
  .youtube iframe {
    width: 300px;
    height: 169px;
  }
  .youtube-comment {
    font-size: 14px;
  }
}
/* event - tab & pc */
@media print,
(min-width: 600px) {
  #event {
    margin-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
    /* background : linear-gradient(to top, rgba(255, 249, 228, 1) 0%, #fff 690px, #fff 100%);
    z-index: -1; */
  }
  .event-list {
    margin: 0 auto;
    width: calc(100% - 100px);
    max-width: 600px;
  }
  .event-list .slick-dots {
    top: 355px;
  }
  .event-ttl {
    top: -42px;
    left: -47px;
    width: 95px;
    height: 250px;
    font-size: 18px;
  }
  .event-thumb {
    height: 338px;
  }
  .event-txt {
    margin: 40px auto 0;
    width: 400px;
    height: 52px;
    font-size: 14px;
    line-height: 2;
  }
  .event-img-box {
    text-align: center;
  }
  #lightcase-content .event-thumb {
    width: auto;
    height: auto;
    max-height: 800px;
    object-fit: contain;
  }
  #lightcase-content .event-ttl {
    margin: 40px auto 0;
    padding: 0 30px;
    width: 100%;
    max-width: 500px;
    text-align: left;
  }
  #lightcase-content .event-txt {
    margin: 1em auto 0;
    padding: 0 30px;
    width: 100%;
    max-width: 500px;
  }

  .youtube {
    margin-top: 200px;
    width: 560px;
  }
}

/* event - pc */
@media print,
(min-width: 980px) {
  .event-ttl {height: 270px; font-size: 20px;}
  .event-txt {width:480px;font-size: 16px;}
}


/*** challenge blog ***/
@media all {
  #blog {
    overflow: hidden;
  }
  .blog-arrow-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 245px;
    height: 46px;
  }
  .blog-slick-next,
  .blog-slick-prev {
    display: block;
    width: 26px;
    height: 21px;
  }
  .blog-slick-prev {
    transform: scale(-1, 1);
  }
  .blog-arrow-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2px;
    width: 150px;
    height: 46px;
    border: 1px solid #969696;
    border-radius: 23px;
    font-size: 12px;
  }
  .blog-arrow-box > * {
    transition: opacity .3s;
  }
  .blog-arrow-box > *:hover,
  .blog-item a:hover {
    cursor: pointer;
    opacity: .8;
  }
  .blog-arrow-box .slick-next::before {
    transform: scale(-1, 1);
  }
  .blog-item a {
    transition: opacity .3s;
  }
  .blog-ttl {
    margin-top: 1em;
    font-weight: bold;
    line-height: 1.2;
    height: 2.4em;
  }
  .blog-txt {
    margin-top: .5em;
    line-height: 1.3;
  }
  .blog-ttl,
  .blog-txt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  }
  .blog-link {
    color: #B24350;
  }
}

/* challenge blog - sp */
@media only screen and (max-width: 599px) {
  #blog {
    margin-top: 20px;
  }
  .blog-arrow-box {
    margin: 40px auto;
  }
  .blog-list {
    width: 150vw;
  }
  .blog-item {
    padding: 15px;
  }
  .blog-img {
    width: 100%;
    height: 43.75vw;
    object-fit: cover;
  }
  .blog-ttl {
    font-size: 18px;
  }
  .blog-txt, .blog-link {
    font-size: 14px;
  }
}
/* challenge blog - tab & pc */
@media print,
(min-width: 600px) {
  #blog {
    margin: 80px 0 85px;
    height: calc(14vw + 116px);

  }
  #blog .section-ttl {
    text-align: left;
  }
  #blog .section-header-lead {
    margin-top: 20px;
  }
  #blog .section-inner {
    display: flex;
    width: calc(245px + 70vw);
    /* height: calc(14vw + 112px); */
    overflow: hidden;
    transform: translateX(calc(50vw - 420px));
  }
  #blog .section-header {
    flex-shrink: 0;
    margin: 0 70px 0 0;
    width: 245px;
    min-height: 185px;
  }
  #blog .section-header-lead {
    font-size: 14px;
    text-align: left;
  }
  .blog-arrow-box {
    position: absolute;
    bottom: 1px;
    left: 0;
  }

  .blog-list {
    width: 70vw;
  }
  .blog-item {
    margin: 0 2vw 0 0;
    /* width: 20.5vw!important; */
  }
  .blog-img {
    width: 100%;
    height: 14vw;
    object-fit: cover;
  }
  .blog-ttl {
    font-size: 15px;
  }
  .blog-txt,
  .blog-link {
    font-size: 13px;
  }
}
/* challenge blog - tab */
@media screen and (min-width: 600px) and (max-width: 979px) {
  #blog .section-inner {
    padding-left: 25px;
    transform:  translateX(0);
  }
  #blog .section-header {
    margin-right: 40px;
  }
  #blog .section-header-lead {
    margin-top: 16px;
  }
}

/* challenge blog - pc */
@media print, (min-width: 980px) {
  #blog {height: calc(14vw + 146px);}
  #blog .section-header {
    margin-right: 52px;
    width: 263px;
  }
  #blog .section-header-lead {font-size: 16px;}
  .blog-arrow-box a {width: 160px; font-size: 15px;}
  .blog-ttl {font-size: 18px;}
  .blog-txt,.blog-link{font-size: 16px;}
}
/* challenge blog - ex pc */
@media screen and (min-width: 1500px) {
  #blog {
    height: calc(10vw + 146px);
  }
  .blog-list {
    width: 65vw;
  }
  .blog-item {
    margin: 0;
    margin-right: 2vw;
  }
  .blog-img {
    width: 100%;
    height: 9.5vw;
  }
  
}



/*** people ***/
@media all {
  #people::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 690px;
    background : linear-gradient(to bottom, rgba(255, 249, 228, 1) 0%, #fff 690px, #fff 100%);
    z-index: -1;
  }
  .people-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
  }
  .people-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #505050;
  }
  .people-copy > span {
    font-weight: bold;
    color: #EC1234;
    white-space: nowrap;
  }
  .people-thumb + .people-ttl {margin-top: 1em;}
  .people-position,
  .people-ttl {
    text-align: center;
    font-weight: bold;
  }
  #lightcase-content .people-ttl,
  #lightcase-content .people-txt,
  #lightcase-content .people-txt * {
    color: #505050;
    text-shadow: none;
  }
}

/* people - sp */
@media only screen and (max-width: 599px) {
  #people {
    padding-top: 10px;
  }
  .people-list {
    justify-content: space-between;
    margin: 30px auto 0;
    padding: 0 20px;
    max-width: 420px;
  }
  .people-item {
    width: 46.429%;
  }
  .people-item.dummy {display: none;}
  #people .people-item:nth-child(n+3) {
    margin-top: 50px;
  }
  .people-copy {
    padding: 6px 0;
    font-size: 12px;
    line-height: 1.4;
  }
  .people-position,
  .people-copy + .people-ttl  {
    margin-top: 6px;
  }
  .people-position,
  .people-ttl {
    font-size: 14px;
    line-height: 1.5;
  }
  #lightcase-content .people-thumb {
    display: block;
    margin: 0 auto;
    width: 50%;
  }
  #lightcase-content h3 {
    font-size: 15px;
  }
  #lightcase-content .people-txt {
    margin-top: 20px;
  }
}
/* people - tab & pc */
@media print,
(min-width: 600px) {
  #people {
    padding-top: 10px;
    /* background : linear-gradient(to bottom, rgba(255, 249, 228, 1) 0%, #fff 690px, #fff 100%); */
  }
  .people-item {
    width: 182px;
  }
  .people-copy {
    padding: 8px 0;
    font-size: 15px;
  }
  .people-position,
  .people-copy + .people-ttl {
    margin-top: 8px;
  }
  .people-position,
  .people-ttl {
    font-size: 15px;
  }
  .people-img-box {
    text-align: center;
  }
  #lightcase-content .people-thumb {
    width: auto;
    height: auto;
    max-height: 425px;
    object-fit: contain;
  }
  #lightcase-content .people-position,
  #lightcase-content .people-ttl {
    font-size: 18px;
    text-align: center;
  }
  #lightcase-content .people-position {
    margin-top: 40px;
  }
  #lightcase-content .people-txt {
    margin: 3em auto 0;
    padding: 0 30px;
    width: 100%;
    max-width: 560px;
    font-size: 14px;
  }
  #lightcase-content .people-txt h3 {
    font-size: 18px;
  }
  #lightcase-content .people-txt h3:nth-child(n+2) {
    margin-top: 14px;
  }
}
/* people - tab */
@media (min-width: 600px) and (max-width: 849px) {
  .people-list {
    margin: 0 auto;
    width: 500px;
  }
  .people-item.dummy {display: none;}
}
/* people - pc */
@media print,
(min-width: 980px) {
  #lightcase-content .people-position {font-size: 16px;}
  #lightcase-content .people-ttl {font-size: 22px;}
  #lightcase-content .people-txt {font-size: 16px;}
}


/*** info ***/
@media all {
  .info-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 100%;
    max-width: 530px;
    border-bottom: 1px solid #F2EFE3;
  }
  .info-list dt,
  .info-list dd {
    padding: 1em 0;
    border-top: 1px solid #F2EFE3;
    font-size: 12px;
  }
  .info-list dt {
    width: 20%;
    font-weight: bold;
  }
  .info-list dd {
    width: 80%;
  }
}

/* info - sp */
@media only screen and (max-width: 599px) {
  #info {
    margin-top: 80px;
    padding: 0 20px;
  }
  .info-list dd span {display: inline-block;}
}
/* info - tab & pc */
@media print,
(min-width: 600px) {
  #info {padding: 0 25px;}
  .info-list dt,.info-list dd {font-size: 13px;}
}
/* info - pc */
@media print,
(min-width: 980px) {
  .info-list {max-width: 750px;}
  .info-list dt, .info-list dd {font-size: 16px;text-shadow: 1px 1px #fff, -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;}
  .info-list dt {padding-left: 2em;}
}


/*** carousel ***/
@media all {
  .carousel {
    width: 100%;
    background-repeat: repeat-x;
    background-size: cover;
    background-position: 0 0;
    position: relative;
    z-index: -1;
    opacity: 0;
    transition: opacity .5s;
  }
  /* bg-img は lazyloadさせる */
}
@media only screen and (max-width: 599px) {
  .carousel {
    height: 160px;
  }
  .carousel-1 {
    margin-top: 100px;
    animation: carousel1-sp 60s linear 0s infinite normal;
  }
  .carousel-2 {
    margin-top: 64px;
    animation: carousel2-sp 60s linear 0s infinite normal;
  }
}
@keyframes carousel1-sp {
  0% {background-position-x: 0;}
  100% {background-position-x: -1281.28px;}
}
@keyframes carousel2-sp {
  0% {background-position-x: 0;}
  100% {background-position-x: 1281.28px;}
}
/* carousel - tab & pc */
@media print,
(min-width: 600px) {
  .carousel {
    height: 250px;
  }
  .carousel-1 {
    margin-top: 190px;
    animation: carousel1-pc 60s linear 0s infinite normal;
  }
  .carousel-2 {
    margin-top: 190px;
    animation: carousel2-pc 60s linear 0s infinite normal;
  }
}
@keyframes carousel1-pc {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2002px;
  }
}
@keyframes carousel2-pc {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 2002px;
  }
}


/* lightcase customize */
@media screen and (max-width: 640px) {
  #lightcase-content p{
    text-shadow: none;
    color: #505050;
  }
  html[data-lc-type=inline] #lightcase-case, html[data-lc-type=ajax] #lightcase-case {
    padding: 55px 10px 70px;
  }
  html[data-lc-type=inline] #lightcase-content, html[data-lc-type=ajax] #lightcase-content, html[data-lc-type=error] #lightcase-content {
    background-color: #fff!important;
  }
  html[data-lc-type=inline] #lightcase-content .lightcase-contentInner {
    height: auto!important;
  }
}


/*** floater ***/
@media all {
  .concept-inner-section {position: relative;}
  .concept-latterhalf {text-shadow: 0 0 2px rgba(255,255,255,.5);}
  .float-1 {
    top: 2200px;
  }
  .float-1 img {
    transform: translateX(calc(50vw - 570px));
    transform: translateX(min(calc(50vw - 570px), 10vw));
    border-radius: 50%;
  }
  .float-2 {
    top: 2400px;
    top: 2600px;
  }
  .float-2 div {
    transform: translateX(calc(50vw + 470px));
    transform: translateX(max(calc(50vw + 470px), 80vw));
  }
  .float-3 {
    top: 4200px;
    top: 4500px;
  }
  .float-3 div {
    transform: translateX(calc(50vw - 600px));
    transform: translateX(min(calc(50vw - 600px), 7vw));
  }
  .float-4 {
    top: 3500px;
    top: 3900px;
  }
  .float-4 img {
    border-radius: 50%;
    transform: translateX(calc(50vw + 300px));
    transform: translateX(max(calc(50vw + 300px), 73vw));
  }
  .float-5 {
    top: 5400px;
    top: 5900px;
  }
  .float-5 div {
    transform: translateX(calc(50vw - 600px));
    transform: translateX(min(calc(50vw - 600px), 2vw));
  }
  .float-6 {
    top: 6500px;
    top: 7100px;
  }
  .float-6 div {
    transform: translateX(calc(50vw + 300px));
    transform: translateX(max(calc(50vw + 300px), 85vw));
  }
  .float-7 {
    top: 7500px;
    top: 8200px;
  }
  .float-7 div {
    transform: translateX(calc(50vw - 520px));
    transform: translateX(min(calc(50vw - 520px), 3vw));
  }
  .float-8 {
    top: 8200px;
    top: 9000px;
  }
  .float-8 div {
    transform: translateX(calc(50vw + 350px));
    transform: translateX(max(calc(50vw + 350px), 85vw));
  }
  .float-9 {
    top: 9600px;
    top: 10500px;
  }
  .float-9 div {
    transform: translateX(calc(50vw + 250px));
    transform: translateX(max(calc(50vw + 250px), 78vw));
  }
  .float-10 {
    top: 10080px;
    top: 11080px;
  }
  .float-10 div {
    transform: translateX(calc(50vw - 520px));
    transform: translateX(min(calc(50vw - 520px), 8vw));
  }
}



/* support */
@media all {
  #support .work-item {min-height: auto;}
  /* tab */
  @media (min-width: 600px) and (max-width: 979px) {
    #support .work-item:nth-child(n+3) {
      margin-top: 40px;
    }
  }
}



/* 2025.07.18修正 */
html:not([data-lc-type=error]) #lightcase-content .lightcase-contentInner .lightcase-inlineWrap {
  height: 100%!important;
}