@charset "UTF-8";

/* ================================================================================
vars
================================================================================ */
@media screen {
  :root {
    --colorBlack: #1a1a24;
    --colorWhite: #ffffff;
    --colorNavy: #23232e;
    --colorYellow400: #ffe600;

    --colorGray600: #23232f;
    --colorGray500: #2e2e38;
    --colorGray400: #747480;
    --colorGray300: #c4c4cd;
    --colorGray200: #eaeaf2;
    --colorGray100: #f6f6fa;

    --colorGray600a: rgba(35, 35, 47, 0.8);

    --transition03: 0.3s ease-in-out 0s;
    --transition05: 0.5s ease-in-out 0s;
  }

  .bg-key {
    background-color: var(--colorYellow400);
  }
  .bg-navy {
    background-color: var(--colorNavy);
  }
  .bg-gray100 {
    background-color: var(--colorGray100);
  }
  }
  .bg-gray600 {
    background-color: var(--colorGray600);
  }
  .bg-gray500 {
    background-color: var(--colorGray500);
  }
  .bg-gray400 {
    background-color: var(--colorGray400);
  }
  .bg-gray300 {
    background-color: var(--colorGray300);
  }

  .video-block {
    position: relative;
    aspect-ratio: 16/9;
  }
  .video-block iframe {
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
  }

  .container.limit-1230 {
    max-width: 1230px;
  }

	.translate-middle {
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		width: 100%;
	}

  picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  section.white {
    background-color: var(--colorWhite);
  }
  section.gray500 {
    background-color: var(--colorGray500);
  }
  section.gray600 {
    background-color: var(--colorGray600);
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/* ========================================
MH
======================================== */
@media screen {
  .MH {
    cursor: pointer;
    transition: var(--transition03);
    transition-property: filter;
  }
  .MH:hover {
    filter: brightness(1.1) opacity(0.7);
  }
}

/* ========================================
mv
======================================== */
@media screen {
  .MV > .inner {
    position: relative;
  }
  .MV.MVL > .inner {
    height: 400px;
  }
  .MV.MVS > .inner {
    height: 300px;
  }

  .MV > .inner::before {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;

    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  }
  .MV picture {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .MV picture img {
    object-position: 50% 30%;
  }
  .MV picture.y45 img {
    object-position: 50% 45%;
  }
  .MV picture.y20 img {
    object-position: 50% 20%;
  }
  .MV picture.y15 img {
    object-position: 50% 15%;
  }
  .MV picture.y10 img {
    object-position: 50% 10%;
  }

  .MV h1 {
    z-index: 3;
    position: absolute;
    bottom: 25px;
    left: 80px;
    margin: 0;

    color: var(--colorWhite);
    font-size: 40px;
    line-height: 1.4;
  }
  .MV h1 small {
    font-size: 45%;
    margin-left: 3px;
  }
}

@media screen and (max-width: 767px) {
  .MV.MVL > .inner {
    height: 270px;
  }
  .MV.MVS > .inner {
    height: 200px;
  }
  .MV h1 {
    bottom: 1.5rem;
    left: 1rem;
    font-size: 24px;
    line-height: 1.2;
  }
  .MV h1 small {
    font-size: 80%;
  }
}

/* ========================================
professionals
======================================== */
@media screen {
  #professionals picture.faceArea,
  #op picture.faceArea {
    width: 100%;
    height: 600px;
  }

  #professionals picture.faceArea img,
  #op picture.faceArea img {
    object-fit: cover;
    object-position: top center;
  }

  #professionals .metaArea,
  #op .metaArea {
    padding: 2rem 0 0;
  }

  #professionals .metaArea p,
  #op .metaArea p {
    line-height: 1;
  }

  #professionals .metaArea .t1,
  #op .metaArea .t1 {
    /*margin: 0 0 1rem;
	font-size: 1.25rem;*/
    margin: 0 0 0.6rem 0.2rem;
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  #professionals .metaArea .t2,
  #op .metaArea .t2 {
    margin: 0 0 0.5rem;
    font-size: 2rem;
  }
  #professionals .metaArea .t3,
  #op .metaArea .t3 {
    margin: 0 0 0 2px;
    font-size: 1.25rem;
  }

  #professionals .MV h1 span {
    margin-left: 4px;
  }

  #professionals .MV h1 {
    line-height: 1.2;
  }
  #op .MV h1 {
    line-height: 1.2;
  }

  #op .MV h1 span,
  #fas .MV h1 span {
    margin-left: 4px;
  }
  #op .MV h5,
  #op .MV .h5,
  #fas .MV h5,
  #fas .MV .h5 {
    font-weight: 300;
  }
}

@media screen and (max-width: 767px) {
  #professionals picture.faceArea,
  #op picture.faceArea {
    height: 45vw;
  }

  #professionals .metaArea,
  #op .metaArea {
    padding: 2rem 0 0;
  }

  #professionals .metaArea p,
  #op .metaArea p {
    line-height: 1;
  }

  #professionals .metaArea .t1,
  #op .metaArea .t1 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
  }
  #professionals .metaArea .t2,
  #op .metaArea .t2 {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
  }
  #professionals .metaArea .t3,
  #op .metaArea .t3 {
    margin: 0;
    font-size: 1rem;
  }
}

/* ========================================
breadcrumb
======================================== */
@media screen {
  .breadcrumb {
    padding: 0;
    margin: 0;
    border-radius: unset;
  }
  .breadcrumb.black {
    background-color: var(--colorBlack);
  }
  .breadcrumb.gray600 {
    background-color: var(--colorGray600);
  }
  .breadcrumb.gray500 {
    background-color: var(--colorGray500);
  }
  .breadcrumb.white {
    background-color: var(--colorWhite);
  }

  .breadcrumb > .inner {
    padding: 1rem 80px;
  }

  .breadcrumb ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0 1rem;
    padding: 0;
    margin: 0;
    list-style-type: none;
  }
  .breadcrumb li:not(:last-child) p::after {
    content: "\e409";
    display: inline;
    margin: 0 0 0 1rem;

    color: var(--colorWhite);
    font-size: 16px;
    font-family: "Material Symbols Outlined";
    vertical-align: bottom;
  }
  .breadcrumb li p {
    color: var(--colorWhite);
    font-size: 16px;
  }

  .breadcrumb li:last-child p {
    font-weight: bold;
  }
  .breadcrumb li a {
    color: var(--colorWhite);
    font-size: 16px;
    font-weight: normal;
    text-decoration: none;
  }
  .breadcrumb.black li:not(:last-child) p::after,
  .breadcrumb.black li p,
  .breadcrumb.black li a {
    color: var(--colorWhite);
  }
  .breadcrumb.gray600 li:not(:last-child) p::after,
  .breadcrumb.gray600 li p,
  .breadcrumb.gray600 li a {
    color: var(--colorWhite);
  }
  .breadcrumb.gray500 li:not(:last-child) p::after,
  .breadcrumb.gray500 li p,
  .breadcrumb.gray500 li a {
    color: var(--colorWhite);
  }
  .breadcrumb.white li:not(:last-child) p::after,
  .breadcrumb.white li p,
  .breadcrumb.white li a {
    color: var(--colorGray500);
  }

  .breadcrumb li a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb > .inner {
    padding: 0.5rem 1rem;
  }
}

/* ========================================
buttonA B
======================================== */
@media screen {
  .buttonA,
  .buttonB,
  .buttonC {
    width: 160px;
    height: 50px;
    transition: var(--transition03);
  }
  .buttonA.widthL,
  .buttonB.widthL,
  .buttonC.widthL {
    width: 220px;
  }
  .buttonA.widthL2,
  .buttonC.widthL2,
  .buttonB.widthL2 {
    width: 250px;
  }
  .buttonA.widthXL,
  .buttonB.widthXL,
  .buttonC.widthXL {
    width: 320px;
    height: 70px;
  }

  .buttonA a,
  .buttonB,
  .buttonC a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.3em 0 0;
    text-decoration: none;
  }
  .buttonA a,
  .buttonC a {
    width: 100%;
    height: 100%;
  }
  .buttonA.white,
  .buttonB.white {
    border: 1px solid var(--colorWhite);
  }
  .buttonA.gray500,
  .buttonB.gray500 {
    border: 1px solid var(--colorGray500);
  }
  .buttonA.gray500--r,
  .buttonB.gray500--r {
		border: 1px solid var(--colorWhite);
    background-color: var(--colorGray500);
		color: var(--colorWhite);
  }
  .buttonA.gray500--r p,
  .buttonB.gray500--r p {
    color: var(--colorWhite);
  }
  .buttonA.gray500--r:hover,
  .buttonB.gray500--r:hover {
		border: 1px solid var(--colorGray500);
    background-color: var(--colorWhite);
  }
  .buttonA.gray500--r:hover p,
  .buttonB.gray500--r:hover p {
    color: var(--colorGray500);
  }
  .buttonA.gray600,
  .buttonB.gray600 {
    border: 1px solid var(--colorGray600);
  }

  .buttonA.white:hover,
  a:hover .buttonB.white {
    background-color: var(--colorWhite);
  }
  .buttonA.gray500:hover,
  a:hover .buttonB.gray500 {
    background-color: var(--colorGray500);
  }
  .buttonA.gray600:hover,
  a:hover .buttonB.gray600 {
    background-color: var(--colorGray600);
  }

  .buttonA p,
  .buttonB p,
  .buttonC p {
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1;
    transition: var(--transition03);
  }
  .buttonA.white p,
  .buttonB.white p {
    color: var(--colorWhite);
  }
  .buttonA.gray500 p,
  .buttonB.gray500 p {
    color: var(--colorGray500);
  }
  .buttonA.gray600 p,
  .buttonB.gray600 p {
    color: var(--colorGray600);
  }

  .buttonA.white:hover p,
  a:hover .buttonB.white p {
    color: var(--colorGray500);
  }
  .buttonA.gray500:hover p,
  a:hover .buttonB.gray500 p {
    color: var(--colorWhite);
  }
  .buttonA.gray600:hover p,
  a:hover .buttonB.gray600 p {
    color: var(--colorWhite);
  }

  .buttonC {
    border: 1px solid var(--colorGray500);
    background-color: var(--colorWhite);
  }
  .buttonC:hover {
    background-color: var(--colorGray500);
  }
  .buttonC p {
    color: var(--colorGray500);
  }
  .buttonC:hover p {
    color: var(--colorWhite);
  }
}

/* ========================================
col2Box
======================================== */
@media screen {
  .col2BoxA,
  .col2BoxB {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1320px;

    padding: 0 60px;
    margin: 0 auto;
  }
  .col2BoxB {
    flex-direction: row-reverse;
  }

  .col2Box > .inner:first-child {
    width: 55%;
  }
  .col2Box > .inner:last-child {
    width: 45%;
  }

  .col2BoxA > .inner:last-child {
    padding: 0 30px 0 100px;
  }
  .col2BoxB > .inner:last-child {
    padding: 0 100px 0 30px;
  }

  .col2Box h2 {
    margin: 0 0 25px;
    color: var(--colorYellow400);
    font-size: 32px;
    font-weight: normal;
    line-height: 1.3;
  }
  .gray500 .col2Box h2 {
    color: var(--colorYellow400);
  }
  .gray600 .col2Box h2 {
    color: var(--colorYellow400);
  }
  .white .col2Box h2 {
    color: var(--colorGray500);
  }

  .col2Box .text {
    margin: 0 0 45px;
    color: var(--colorWhite);
    font-size: 16px;
    word-break: break-all;
  }
  .gray500 .col2Box .text {
    color: var(--colorWhite);
  }
  .gray600 .col2Box .text {
    color: var(--colorWhite);
  }
  .white .col2Box .text {
    color: var(--colorGray500);
  }
}
@media screen and (max-width: 991px) {
  .col2BoxA > .inner:last-child {
    padding: 0 0 0 60px;
  }
  .col2BoxB > .inner:last-child {
    padding: 0 60px 0 0;
  }
}
@media screen and (max-width: 767px) {
  .col2BoxA,
  .col2BoxB {
    padding: 0 1rem;
  }

  .col2Box > .inner:first-child {
    width: 100%;
  }
  .col2Box > .inner:last-child {
    width: 100%;
  }

  .col2BoxA > .inner:last-child {
    padding: 30px 0 0;
  }
  .col2BoxB > .inner:last-child {
    padding: 30px 0 0;
  }
}

/* ========================================
thumbLinkSwiper
======================================== */
@media screen {
  .thumbLinkSwiper h2 {
    margin: 0 0 25px;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
  }
  .white .thumbLinkSwiper h2 {
    color: var(--colorGray500);
  }
  .gray500 .thumbLinkSwiper h2 {
    color: var(--colorYellow400);
  }
  .gray600 .thumbLinkSwiper h2 {
    color: var(--colorYellow400);
  }

  .thumbLinkSwiper .message {
    padding: 0 60px;
    margin: 0 0 45px;

    color: var(--colorWhite);
    font-size: 16px;
    text-align: center;
  }
  .white .thumbLinkSwiper .message {
    color: var(--colorGray500);
  }
  .gray500 .thumbLinkSwiper .message {
    color: var(--colorWhite);
  }
  .gray600 .thumbLinkSwiper .message {
    color: var(--colorWhite);
  }

  .thumbLinkSwiper .swiper-slide {
    position: relative;
    width: 340px;
  }
  .thumbLinkSwiper .swiper-slide a {
    text-decoration: none;
  }

  .thumbLinkSwiper .swiper-slide .thumb {
    position: relative;
    height: 400px;
    margin: 0 0 15px;
  }
  .thumbLinkSwiper .swiper-slide .pop {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    background-color: var(--colorGray600a);

    transition: var(--transition03);
    opacity: 0;
  }
  .thumbLinkSwiper .swiper-slide:hover .pop {
    opacity: 1;
  }
  .thumbLinkSwiper .swiper-slide picture {
    overflow: hidden;
  }
  .thumbLinkSwiper .swiper-slide picture img {
    transition: var(--transition03);
  }
  .thumbLinkSwiper .swiper-slide:hover picture img {
    transform: scale(1.05, 1.05);
  }

  .thumbLinkSwiper .swiper-slide h3 {
    color: var(--colorWhite);
    font-size: 32px;
    line-height: 1.5;
  }
  .thumbLinkSwiper .swiper-slide .button {
    position: absolute;
    bottom: 50px;
    left: 50px;
  }

  .thumbLinkSwiper .prev,
  .thumbLinkSwiper .next {
    z-index: 5;
    position: absolute;
    top: calc((400px - 160px) / 2);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--colorYellow400);
    width: 40px;
    height: 160px;

    transition-property: filter, width;
  }
  .thumbLinkSwiper .prev {
    left: 0;
  }
  .thumbLinkSwiper .next {
    right: 0;
  }

  .thumbLinkSwiper .prev::after,
  .thumbLinkSwiper .next::after {
    content: "\eb95";
    display: inline-block;
    font-size: 22px;
    font-family: "Material Symbols Outlined";
    transition: var(--transition03);
  }
  .thumbLinkSwiper .prev::after {
    transform: rotate(-90deg);
  }
  .thumbLinkSwiper .next::after {
    transform: rotate(90deg);
  }

  .thumbLinkSwiper .prev:hover::after {
    transform: translate(-0.2em, 0) rotate(-90deg);
  }
  .thumbLinkSwiper .next:hover::after {
    transform: translate(0.2em, 0) rotate(90deg);
  }
}
@media screen and (max-width: 767px) {
  .thumbLinkSwiper .pop {
    transition: 0.3s ease-in-out 0.5s;
  }
  .thumbLinkSwiper .swiper-slide-active .pop {
    opacity: 1;
  }
  .thumbLinkSwiper .swiper-slide-active picture img {
    transform: scale(1.05, 1.05);
  }
}

/* ========================================
entryButtonFixed
======================================== */
@media screen {
  .entryButtonFixedWrap {
    display: inline-block;
    z-index: 20;
    position: sticky;
    bottom: 30px;
    left: calc(100% - 30px - 140px);
    /*margin: -80px 0 0;*/
    margin: -340px 0 0;
  }

  .entryButtonFixed {
    z-index: 20;
    position: sticky;
    bottom: 30px;
    left: calc(100% - 30px - 140px);

    width: 140px;
    height: 140px;
    margin: -80px 0 0;

    background-color: #ffe600;
    border-radius: 50%;
    /* box-shadow: 0 0 1rem rgba(35, 35, 47, 0.15); */

    overflow: hidden;

    transition: 0.3s ease-in-out 0s;
    transition-property: filter;
  }
  .entryButtonFixed:hover {
    filter: brightness(1.1) opacity(0.7);
  }
  .entryButtonFixed a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  .entryButtonFixed p {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .entryButtonFixed p span {
    font-size: 24px;
  }

  .entryButtonFixedWrap .entryButtonFixed {
    position: relative;
    bottom: 0;
    left: 0;
    margin: 0px 0 0;
    margin-bottom: 16px;
  }
  .entryButtonFixedWrap .entryButtonFixed:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .entryButtonFixedWrap {
    left: calc(100% - 30px - 100px);
  }
  .entryButtonFixedWrap .entryButtonFixed {
    width: 110px;
    height: 110px;
  }
}

/* ================================================================================
sections
================================================================================ */

/* ========================================
lead
======================================== */
@media screen {
  section.lead {
    padding: 0;
    margin: 0;
  }
  section.lead.gray600 {
    background-color: var(--colorGray600);
  }
  section.lead.gray500 {
    background-color: var(--colorGray500);
  }
  section.lead.white {
    background-color: var(--colorWhite);
  }

  section.lead > .inner {
    padding: 60px;
  }

  section.lead h2 {
    font-size: 36px;
    /* font-weight: bold; */
    text-align: center;
    line-height: 1.3;
  }
  section.lead h2:not(:last-child) {
    margin: 0 0 50px;
  }
  section.lead.gray600 h2 {
    color: var(--colorWhite);
  }
  section.lead.gray500 h2 {
    color: var(--colorWhite);
  }
  section.lead.white h2 {
    color: var(--colorGray500);
  }

  section.lead p {
    /*max-width: 880px;*/
    max-width: 90%;
    margin: 0 auto;
    font-size: 16px;
    word-break: break-all;
  }
  section.lead p:not(:last-child) {
    margin: 0 auto 60px;
  }
  section.lead.gray600 p {
    color: var(--colorWhite);
  }
  section.lead.gray500 p {
    color: var(--colorWhite);
  }
  section.lead.white p {
    color: var(--colorGray500);
  }
}
@media screen and (max-width: 767px) {
  section.lead > .inner {
    padding: 60px 1rem;
  }
  section.lead p {
    max-width: 880px;
    text-align: left !important;
  }
}

/* ========================================
feature
======================================== */
@media screen {
  section.feature {
    padding: 0;
    margin: 0;
  }
  section.feature.gray600 {
    background-color: var(--colorGray600);
  }
  section.feature.gray500 {
    background-color: var(--colorGray500);
  }
  section.feature.white {
    background-color: var(--colorWhite);
  }

  section.feature > .inner {
    padding: 90px 0;
  }

  section.feature .col2Box:not(:last-child) {
    margin: 0 auto 90px;
  }
  section.feature .thumbLinkSwiper:not(:last-child) {
    margin: 0 0 100px;
  }
}
@media screen and (max-width: 767px) {
}

/* ========================================
related
======================================== */
@media screen {
  section.related {
    padding: 0;
    margin: 0;
  }
  section.related.gray600 {
    background-color: var(--colorGray600);
  }
  section.related.gray500 {
    background-color: var(--colorGray500);
  }
  section.related.white {
    background-color: var(--colorWhite);
  }

  section.related > .inner {
    padding: 60px;
  }

  section.related h2 {
    margin: 0 0 50px;
    font-size: 36px;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
  }
  section.related.gray600 h2 {
    color: var(--colorWhite);
  }
  section.related.gray500 h2 {
    color: var(--colorWhite);
  }
  section.related.white h2 {
    color: var(--colorGray500);
  }

  section.related ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  section.related ul:not(:last-child) {
    margin: 0 auto 50px;
  }

  section.related li {
    width: 240px;
  }
  section.related li a {
    text-decoration: none;
  }
  section.related li:hover a {
    text-decoration: underline;
  }

  section.related li picture {
    position: relative;
    height: 160px;
    margin: 0 0 10px;
    overflow: hidden;
  }
  section.related li picture::before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;

    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--colorGray600a);
    transition: var(--transition03);
    opacity: 0;
  }
  section.related li:hover picture::before {
    opacity: 1;
  }

  section.related li picture img {
    transition: var(--transition03);
    transition-property: transform, filter;
  }
  section.related li:hover picture img {
    transform: scale(1.03);
    filter: brightness(1.1);
  }

  section.related li h3 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
  }
  section.related.gray600 li h3 {
    color: var(--colorWhite);
  }
  section.related.gray500 li h3 {
    color: var(--colorWhite);
  }
  section.related.white li h3 {
    color: var(--colorGray500);
  }

  section.related li p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
  }
  section.related.gray600 p {
    color: var(--colorWhite);
  }
  section.related.gray500 p {
    color: var(--colorWhite);
  }
  section.related.white p {
    color: var(--colorGray500);
  }

  section.related .button {
    margin: 0 auto;
  }
}
@media screen and (max-width: 991px) {
  section.related ul {
    justify-content: space-between;
    gap: 0;
  }
  section.related li {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  section.related > .inner {
    padding: 60px 1rem;
  }
  section.related ul {
    justify-content: space-between;
    gap: 50px;
  }
  section.related li {
    width: 100%;
    margin: 0 auto;
  }

  section.related li picture {
    height: 60vw;
  }
}

/* ========================================
links
======================================== */
@media screen {
  section.links {
    padding: 0;
    margin: 0;
  }
  section.links.gray600 {
    background-color: var(--colorGray600);
  }
  section.links.gray500 {
    background-color: var(--colorGray500);
  }
  section.links.white {
    background-color: var(--colorWhite);
  }

  section.links > .inner {
    padding: 60px;
  }

  section.links h2 {
    margin: 0 0 50px;
    font-size: 36px;
    /* font-weight: bold; */
    text-align: center;
    line-height: 1.3;
  }
  section.links h2.brochre_margin{
    margin-top: -100px;
    padding-top: 100px;
  }
  section.links.gray600 h2 {
    color: var(--colorWhite);
  }
  section.links.gray500 h2 {
    color: var(--colorWhite);
  }
  section.links.white h2 {
    color: var(--colorGray500);
  }

  section.links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: calc(340px * 3 + 50px * 2);
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }
  section.links ul:not(:last-child) {
    margin: 0 auto 120px;
  }
  section.links li {
    width: 340px;
  }
  section.links li a {
    text-decoration: none;
  }

  section.links li picture {
    height: 244px;
    margin: 0 0 20px;
    overflow: hidden;
  }

  section.links li h3 {
    margin: 0 0 30px;
    font-size: 24px;
    /* font-weight: bold; */
    line-height: 1.3;
  }
  section.links.gray600 li h3 {
    color: var(--colorWhite);
  }
  section.links.gray500 li h3 {
    color: var(--colorWhite);
  }
  section.links.white li h3 {
    color: var(--colorGray500);
  }

  section.links li p {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
  }
  section.links li p a {
    display: inline-block;
    margin: 0 0 0.5em;
    font-weight: normal;
    text-decoration: underline;
  }
  section.links.gray600 li p a:hover {
    text-decoration: none;
  }
  section.links.gray600 li p a {
    color: var(--colorWhite);
  }
  section.links.gray500 li p a {
    color: var(--colorWhite);
  }
  section.links.white li p a {
    color: var(--colorGray500);
  }
}

.link-external-w:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/common/icon-external-02.svg) no-repeat bottom center;
    background-size: 65%;
    margin-left: 5px; 
}

.links-title-teamName{
    font-size: 80%;
    display: block;
}

/* アコーディオン */
.accordion-btn {
  display: inline-block;
  background-color: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 0;
}

.accordion-btn .arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  transition: transform 0.3s ease; /* 回転のアニメーション */
  top: 5px;
  position: absolute;
  left: -15px;
}

/* --- 開いているとき（クラスがついたとき）の矢印 --- */
.accordion-btn.is-open .arrow {
  transform: rotate(-45deg);
  top: 10px;
}

.accordion-content {
  max-height: 0; /* 最初は高さ0 */
  overflow: hidden; /* はみ出た分は隠す */
  transition: max-height 0.3s ease-out; /* アニメーション設定 */
}

@media screen and (max-width: 767px) {
  .accordion-btn{
      position: relative;
      text-align: center;
      top: -15px;
  }
  
  .accordion-btn .arrow {
    width: 8px;
    height: 8px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.technology-textLink{
  display: flex;
}

.technology-textLink p{
  color: var(--colorYellow400);
  margin: 0;
  line-height: 1;
}

.technology-textLink p:first-child:after{
  content: "";
  display: inline-block;
  background: var(--colorWhite);
  width: 1px;
  height: 16px;
  margin: -1px 15px;
}

.technology-textLink p a{
  color: var(--colorWhite);
  text-decoration-line: underline;
  font-weight: normal;
}

.technology-blockLink{
  display: inline-flex;
}

.technology-blockLink p,
.technology-blockLink a{
  width: 140px;
  height: 40px;
  padding-top: 3px;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.technology-blockLink p{
  background: var(--colorGray600);
  color: var(--colorYellow400);  
  margin: 0;
}

.technology-blockLink a{
  background: var(--colorYellow400);
  text-decoration-line: underline; 
}

@media screen and (max-width: 1240px) {
  section.links ul {
    max-width: calc(340px * 2 + 50px);
  }
}
@media screen and (max-width: 850px) {
  section.links ul {
    max-width: calc(340px);
  }
}
@media screen and (max-width: 767px) {
  section.links > .inner {
    padding: 60px 1rem;
  }
  section.links ul {
    max-width: 100%;
    justify-content: space-between;
    gap: 50px;
  }
  section.links li {
    width: 100%;
    margin: 0 auto;
  }

  section.links li picture {
    height: 60vw;
  }
}

/* ========================================
peoples
======================================== */
@media screen {
  section.peoples {
    padding: 0;
    margin: 0;
  }
  section.peoples.gray600 {
    background-color: var(--colorGray600);
  }
  section.peoples.gray500 {
    background-color: var(--colorGray500);
  }
  section.peoples.white {
    background-color: var(--colorWhite);
  }

  section.peoples > .inner {
    padding: 60px 0;
  }

  section.peoples h2 {
    margin: 0 0 50px;
    font-size: 36px;
    font-weight: normal;
    text-align: center;
    line-height: 1.3;
  }
  section.peoples.gray600 h2 {
    color: var(--colorWhite);
  }
  section.peoples.gray500 h2 {
    color: var(--colorWhite);
  }
  section.peoples.white h2 {
    color: var(--colorGray500);
  }

  section.peoples ul {
    display: flex;
    flex-wrap: wrap;
    gap: 45px 2px;
    max-width: calc(340px * 4 + 2px * 3);
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }
  section.peoples li {
    width: 340px;
  }
  section.peoples li a {
    text-decoration: none;
  }

  section.peoples li .thumb {
    position: relative;
    height: 400px;
    margin: 0 0 15px;
  }
  section.peoples li .pop {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px;
    background-color: var(--colorGray600a);

    transition: var(--transition03);
    opacity: 0;
  }
  section.peoples li:hover .pop {
    opacity: 1;
  }

  section.peoples li picture {
    overflow: hidden;
    background: #000;
  }
  
  section.peoples li picture img.dark{
    opacity: .8;
  }
  
  section.peoples li picture img {
    transition: var(--transition03);
  }
  section.peoples li:hover picture img {
    transform: scale(1.05, 1.05);
  }

  section.peoples li h3 {
    color: var(--colorWhite);
    font-size: 32px;
    line-height: 1.5;
  }

  section.peoples li a > p {
    padding: 0 2.5em;
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
    text-decoration: none;
  }
  section.peoples.gray500 li a > p {
    color: var(--colorWhite);
  }
  section.peoples.gray600 li a > p {
    color: var(--colorWhite);
  }
  section.peoples.white li a > p {
    color: var(--colorGray500);
  }
  section.peoples li a:hover > p {
    text-decoration: underline;
  }

  section.peoples li .button {
    position: absolute;
    bottom: 50px;
    left: 50px;
  }
}
@media screen and (max-width: 1366px) {
  section.peoples ul {
    max-width: calc(340px * 3 + 2px * 2);
  }
}
@media screen and (max-width: 1024px) {
  section.peoples ul {
    max-width: calc(340px * 2 + 2px);
  }
}
@media screen and (max-width: 767px) {
  section.peoples > .inner {
    padding: 60px 5vw;
  }
  section.peoples ul {
    max-width: 100%;
  }
  section.peoples li {
    width: 44.5vw;
  }
  section.peoples li .thumb {
    height: 52vw;
  }
  section.peoples li .pop {
    padding: 5vw;
  }
  section.peoples h2 {
    font-size: 26px;
  }
  section.peoples li h3 {
    font-size: 4vw;
  }
  section.peoples li a > p {
    padding: 0;
    font-size: 3.2vw;
  }
  section.peoples li .button {
    bottom: 5vw;
    left: 5vw;
  }
}

/* ========================================
example
======================================== */
@media screen {
  section.example {
    padding: 0;
    margin: 0;
  }
  section.example.gray600 {
    background-color: var(--colorGray600);
  }
  section.example.gray500 {
    background-color: var(--colorGray500);
  }
  section.example.white {
    background-color: var(--colorWhite);
  }

  section.example > .inner {
    padding: 0 0 60px;
  }

  section.example h2 {
    padding: 30px 0 60px;
    margin: 0;

    font-size: 36px;
    font-weight: 300;
    text-align: center;
    line-height: 1.3;
  }
  section.example h2.gray600 {
    color: var(--colorWhite);
    background-color: var(--colorGray600);
  }
  section.example h2.gray500 {
    color: var(--colorWhite);
    background-color: var(--colorGray500);
  }
  section.example h2.white {
    color: var(--colorGray500);
    background-color: var(--colorWhite);
  }

  section.example picture {
    width: 100%;
    margin: 0 0 90px;
  }

  section.example .content {
    padding: 0 60px 60px;
  }

  section.example .titleArea {
    margin: 0 0 40px;
  }
  section.example .titleArea h3 {
    max-width: 880px;
    margin: 0 auto 10px;

    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
  }
  section.example.gray600 h3 {
    color: var(--colorWhite);
  }
  section.example.gray500 h3 {
    color: var(--colorWhite);
  }
  section.example.white h3 {
    color: var(--colorGray500);
  }

  section.example .titleArea p {
    max-width: 880px;
    margin: 0 auto;

    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
  }

  section.example p {
    max-width: 880px;
    margin: 0 auto;
    font-size: 16px;
    word-break: break-all;
  }
  section.example p:not(:last-child) {
    margin: 0 auto 30px;
  }
  section.example.gray600 p {
    color: var(--colorWhite);
  }
  section.example.gray500 p {
    color: var(--colorWhite);
  }
  section.example.white p {
    color: var(--colorGray500);
  }
}
@media screen and (max-width: 767px) {
  section.example .content {
    padding: 0 1rem 60px;
  }
}

/* ========================================
blog-link
======================================== */
@media screen {
  section.blog-link {
    padding: 0;
    margin: 0;
  }
  section.blog-link.gray600 {
    background-color: var(--colorGray600);
  }
  section.blog-link.gray500 {
    background-color: var(--colorGray500);
  }
  section.blog-link.white {
    background-color: var(--colorWhite);
  }

  section.blog-link > .inner {
    padding: 60px;
  }

  section.blog-link h2 {
    font-size: 36px;
    /* font-weight: bold; */
    text-align: center;
    line-height: 1.3;
  }
  section.blog-link h2:not(:last-child) {
    margin: 0 0 50px;
  }
  section.blog-link.gray600 h2 {
    color: var(--colorWhite);
  }
  section.blog-link.gray500 h2 {
    color: var(--colorWhite);
  }
  section.blog-link.white h2 {
    color: var(--colorGray500);
  }

  section.blog-link p {
    /*max-width: 880px;*/
    max-width: 90%;
    margin: 0 auto;
    font-size: 16px;
    word-break: break-all;
  }
  section.blog-link p:not(:last-child) {
    margin: 0 auto 60px;
  }
  section.blog-link.gray600 p {
    color: var(--colorWhite);
  }
  section.blog-link.gray500 p {
    color: var(--colorWhite);
  }
  section.blog-link.white p {
    color: var(--colorGray500);
  }
}
@media screen and (max-width: 767px) {
  section.blog-link > .inner {
    padding: 60px 1rem;
  }
  section.blog-link p {
    max-width: 880px;
    text-align: left !important;
  }
}

.teamlinks {
  font-size: 1.6rem;
	position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .teamlinks {
		font-size: 1rem;
	}
}

.teamlinks-wrraper {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.teamlinks-wrraper div{
  padding: 0 15px;
  flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

@media screen and (max-width: 767px) {
  .teamlinks-wrraper div{
    padding: 0 5px;
  }
}

.teamlinks a {
  display: flex;
  justify-content: center;
  align-items: center;
	text-decoration: none;
	font-size: 21px;
	font-weight: normal;
  padding: 5px;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .teamlinks a {
    
    font-size: 0.9rem;
    
  }
}


.teamlinks a:hover {
  background: #dee2e6 !important;
	color: var(--colorGray500) !important ;
}


.team-container {
  display: flex;  
  align-items: center;
  justify-content: center;
  min-height: 400px;
}
.team-img {
  height: 100%;
}
.team-img img {
  height: 100%;
  object-fit: cover;
}


/* ========================================
members
======================================== */
@media screen {
  section.members {
    padding: 0;
    margin: 0;
  }
  section.members.gray600 {
    background-color: var(--colorGray600);
  }
  section.members.gray500 {
    background-color: var(--colorGray500);
  }
  section.members.white {
    background-color: var(--colorWhite);
  }

  section.members > .inner {
    padding: 60px;
  }


  section.members .members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: calc(340px * 3 + 50px * 2);
    padding: 0;
    margin: 0 auto;
    list-style: none;
  }
  section.members .members-list:not(:last-child) {
    margin: 0 auto 120px;
  }
  section.members .members-item {
    width: 340px;
  }
  section.members .members-item a {
    text-decoration: none;
  }

  section.members .members-item picture {
    height: 244px;
    margin: 0 0 20px;
    overflow: hidden;
  }

  section.members .members-item-header h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  section.members.gray600 .members-item-header h3 {
    color: var(--colorWhite);
  }
  section.members.gray500 .members-item-header h3 {
    color: var(--colorWhite);
  }
  section.members.white .members-item-header h3 {
    color: var(--colorGray500);
  }
  section.members .members-item-header p {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
  }
 
  section.members .members-item ul {
    margin: 0;
    padding: 1rem;
  }
}
@media screen and (max-width: 1240px) {
  section.members .members-list {
    max-width: calc(340px * 2 + 50px);
  }
}
@media screen and (max-width: 850px) {
  section.members .members-list {
    max-width: calc(340px);
  }
}
@media screen and (max-width: 767px) {
  section.members > .inner {
    padding: 60px 1rem;
  }
  section.members .members-list {
    max-width: 100%;
    justify-content: space-between;
    gap: 50px;
  }
  section.members .members-item {
    width: 100%;
    margin: 0 auto;
  }

  section.members .members-item picture {
    height: 60vw;
  }
}

.toggleBlock {
  display: none;
}
.toggleBlock.open {
  display: block;
}

.toggleBlock-button-close,
.toggleBlock-button-open {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  font-weight: bold;
}
.toggleBlock-button-close:before,
.toggleBlock-button-open:before {
  content: "＞";
  display: block;
  width: 1em;
  height: 1em;
  rotate: 90deg;
}
.toggleBlock-button-close:before{
  rotate: -90deg;
}
.toggleBlock-button-open.open:before {
  rotate: -90deg;
}
#about_botton {
  width: 250px;
}


/* ========================================
modal
======================================== */
.ey-modal {
  display: flex;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: auto;
  z-index: 1000;
}
.ey-modal .modal-content {
  background-color: #ffe600;
  padding: 6px;
  max-width: 842px;
  max-height: 90dvh;
  border-radius: 0;
  border: none;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ey-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.ey-modal-title {
  padding: 42px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.7;
  margin: 0;
}
.ey-modal .modal-inner {
  background-color: #ffffff;
  padding: 45px 80px;
  font-size: 16px;
  text-align: left; 
  line-height: 1.8;
  overflow-y: auto;
}

.ey-modal .ey-modal-sub-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid #ffe600;
  padding-bottom: 6px;
  margin-bottom: 26px;
  margin-top: 40px;
}
.ey-modal .ey-modal-sub-title:first-child {
  margin-top: 0;
}
.ey-modal h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
.ey-modal h4 + p,
.ey-modal h4 + ul,
.ey-modal h4 + ol {
  margin-top: 0;
}

.ey-modal ul,
.ey-modal ol {
  margin-left: 1.3rem;
  padding-left: 0;
}

.ey-modal .modal-inner p strong {
  font-weight: bold;
}
.ey-modal .modal-inner a {
  text-decoration: underline;
}
.ey-modal .modal-inner a:hover {
  text-decoration: none;
}

.ey-modal .close-area {
  display: flex;
  justify-content: center;
}
.ey-modal .close {
  position: relative;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
  display: inline-block;
  float: none;
  opacity: 1;
  margin-top: 30px;
}
.close::before {
  content: "";
  position: absolute;
  left: -60px;
  background-image: url(../img/special/stages/plus.png);
  background-size: contain;
  width: 46px;
  min-height: 46px;
  top: -14px;
  transform: rotate(45deg);
}
.close::after {
  content: "";
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .ey-modal-title {
    font-size: 18px;
    padding: 28px 22px;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .ey-modal .modal-content {
      max-height: 75dvh;
  }
  .ey-modal .modal-inner {
      padding: 20px;
  }
  .ey-modal .ey-modal-sub-title {
    font-size: 20px;
    padding-bottom: 6px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .ey-modal .modal-content {
      width: 85%;
  }
  .ey-modal .modal-icon {
      width: 40px;
      height: 40px;
      bottom: 14px;
      translate: -50% 0;
  }
  .ey-modal .modal-inner {
      padding: 28px 22px;
  }
  .ey-modal .modal-content {
      padding: 0 5px 5px;
  }
}

.other-entry .upper-description,
.other-entry .downer-description {
  display: none;
}




/* ======================================== end ======================================== */

