/* common */
:root {
    --chaen-baige: #FFFBF7;
	--chaen-sand: #EFEDE6;
}

.chaen-primaryBtn {
    color: var(--main-text);
    font-size: 1rem;
    display: flex;
    width: 260px;
    justify-content: center;
    border-radius: 9999px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    letter-spacing: 1px;
    background: #FFF;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    height: 50px;
    line-height: 46px;
}
.chaen-primaryBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--main-text);
    font-weight: 500;
    text-align: center;
    transition: all .4s;
}

.chaen-primaryBtn span:nth-child(1) {
    top: 0;
}

.chaen-primaryBtn span:nth-child(2) {
    top: 100%;
	font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 1.4rem;
	letter-spacing: 1.5px;
	text-transform:capitalize;
	color: #707070;
	line-height: 2.2;
}

.chaen-primaryBtn:hover span:nth-child(1) {
    top: -100%;
}

.chaen-primaryBtn:hover span:nth-child(2) {
    top: 0;
}
.chaen-primaryBtn:after {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 21px;
    top: 48%;
    transform: translateY(-50%);
    opacity: 0.7;
}
.chaen-primaryBtn.otherSite:after {
    content: "\f35d";
    opacity: 0.4;
    top: 45%;
}
.chaen-primaryBtn:hover {
    opacity: 0.7;
    background: #000;
    color: #fff;
}

/* animetion */
.fade-in {
    transition-duration: 1520ms;
}

/* video */
 /* 動画オーバーレイの基本設定 */
#videoOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: black;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0; /* 初期状態は透明 */
	visibility: hidden;
	transition: opacity 1s ease-out, visibility 0s linear 1s; /* フェードイン/アウト */
}
#videoOverlay:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.1);
    background-image: radial-gradient(#313131 10%, transparent 11%), radial-gradient(#313131 10%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
}
.videoOverlay__img {
    position: absolute;
    top: 0;
    left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none;
}
img.videoOverlay__img--text {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 動画のサイズ調整 */
#videoOverlay video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* フェードイン状態 */
#videoOverlay.show {
	opacity: 1;
	visibility: visible;
	transition: opacity 1s ease-in, visibility 0s linear 0s;
}

/* フェードアウト時 */
#videoOverlay.hide {
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease-out, visibility 0s linear 1s;
}

.videoOverlay__img--logo {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}
.videoOverlay__img--logo img {
    width: 100%;
}

 /* マウスストーカーの円 */
#cursorCircle {
    position: fixed;
    width: 180px;
    height: 160px;
    background: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    filter: url(#waveFilter);
    animation: gradientMove 6s infinite ease-in-out;
    border-radius: 47% 53% 53% 47% / 65% 46% 54% 35%;
}

/* SVGフィルターで波打つエフェクト */
svg {
	position: absolute;
	width: 0;
	height: 0;
}

@keyframes gradientMove {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

#videoOverlay .shape {
    opacity: 0.12;
}

/* header menu */
header#chaenHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002; /* メニューアイコンを含むヘッダーを最前面に */
}
.chaenHeader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 2%;
}
a.chaenHeader__inner--logo {
    width: 100px;
}
a.chaenHeader__inner--logo:hover {
    opacity: 0.6;
}
a.chaenHeader__inner--logo img {
    width: 100%;
}
.chaenHeader__inner--right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}
ul.chaenHeader__inner--rightTextList {
   display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    transition: 0.2s ease-in-out;
    opacity: 1;
    pointer-events: auto;
}
ul.chaenHeader__inner--rightTextList.hidden {
    opacity: 0;
    pointer-events: none;
}
ul.chaenHeader__inner--rightTextList li {
    display: flex;
    justify-content: center;
}
ul.chaenHeader__inner--rightTextList li a {
    padding: 5px 6px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--main-text);
    overflow: hidden;
    display: flex;
    justify-content: center;
	height: 40px;
    line-height: 40px;
    width: 140px;
    position: relative;
}

ul.chaenHeader__inner--rightTextList li a span {
    position: absolute;
    left: 0;
    width: 100%;
    color: var(--main-text);
    font-weight: 500;
    text-align: center;
    transition: all .4s;
}

ul.chaenHeader__inner--rightTextList li a span:nth-child(1) {
    top: 0;
}

ul.chaenHeader__inner--rightTextList li a span:nth-child(2) {
    top: 100%;
	font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 1.4rem;
	letter-spacing: 1.5px;
	text-transform:capitalize;
	color: #707070;
	opacity: 0.6;
}

ul.chaenHeader__inner--rightTextList li a:hover span:nth-child(1) {
    top: -100%;
}

ul.chaenHeader__inner--rightTextList li a:hover span:nth-child(2) {
    top: 0;
}

/* フルスクリーンメニューの基本スタイル */
#chaenFullScreenMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000; /* これを `1000` にして、ヘッダーより背面に */
}

/* 表示時のスタイル */
#chaenFullScreenMenu.active {
    opacity: 1;
    visibility: visible;
}

/* ナビゲーションメニュー */
.chaenMenuNav ul {
    list-style: none;
    padding: 0;
}

.chaenMenuNav li {
    margin: 20px 0;
}

/* メニューボタンのスタイル */
#chaenHeader__menuToggle {
    width: 52px;
    height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    gap: 8px;
    align-items: center;
    border-radius: 9999px;
    background: #FFF;
    box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    z-index: 1003; /* ヘッダーよりも前面に配置 */
}
#chaenHeader__menuToggle.active {
    box-shadow: none;
}

/* 2本の線のスタイル */
#chaenHeader__menuToggle span {
    display: block;
    width: 48%;
    height: 2px;
    background-color: black;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* メニューが開いたときの変形 */
#chaenHeader__menuToggle.active span:first-child {
    transform: translateY(4px) rotate(45deg);
}

#chaenHeader__menuToggle.active span:last-child {
    transform: translateY(-6px) rotate(-45deg);
}

/* menu の中 */
nav.chaenMenuNav {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
	gap: 45px;
}
.chaenMenuNav ul.chaenMenuNav__list {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 35px;
    justify-content: flex-start;
}
ul.chaenMenuNav__list li {
    margin: 0;
}
a.chaenMenuNav__list--link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 3rem;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: var(--main-text);
	gap: 6px;
	transition: 0.3s ease-in-out;
}
a.chaenMenuNav__list--link:hover {
    opacity: 0.6;
}
a.chaenMenuNav__list--link span {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
}
ul.chaenMenuNav__list .trp-language-switcher > div {
    background: #f9f9f9;
    padding-bottom: 5px;
}
li.chaenMenuNav__list--icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
}
li.chaenMenuNav__list--icon a {
    padding: 4px;
}
li.chaenMenuNav__list--icon a:hover {
    opacity: 0.6;
}
a.chaenMenuNav__list--link span i {
    color: #aaa;
}

/* mv */
main#chaen {
    position: relative;
}
.chaenMV__Img, section#chaenMV {
    width: 100%;
    height: 100svh;
    min-height: 800px;
}
.chaenMV__Img {
    position: fixed;
    top: 0;
    left: 0;
	pointer-events: none;
}
.chaenMV__Img img {
    width: 100%;
    object-fit: cover;
    height: 100%;
	object-position: top;
	transition: transform 0.2s ease-out;
}
section#chaenMV {
    position: relative;
}
.chaenMV__inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 100svh;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 120px;
	min-height: 600px;
}
.chaenMV__inner--rightText {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 1.5s ease-out;
}

/* アニメーション開始時（表示） */
.chaenMV__inner--rightText.show {
    opacity: 1;
}
.chaenMV__inner--rightText h1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.chaenMV__inner--rightText h1 span {
    background: linear-gradient(90deg, #5800FF 0%, #5CE1E6 100%);
    background-size: 200% 200%;
    animation: gradientMove 7s infinite ease-in-out;
    color: #fff;
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: 5px;
    padding: 10px 0px 15px 36px;
    line-height: 1;
    width: fit-content;
}
.chaenMV__inner--rightText p {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    color: var(--main-heading);
    text-align: right;
    line-height: 1.6;
}

.chaenMV__inner--rightObi {
    position: absolute;
    left: 0;
    top: 0;
    width: 160px;
    height: 100%;
    background: var(--chaen-baige);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.chaenMV__inner--rightObi p {
    transform: rotate(-90deg) translateX(140px) translateY(-2px);
    color: #707070;
    font-size: 0.9rem;
}

.chaenMV__inner--rightObi p i {
  animation: floating-x 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-x {
  0% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(30%);
  }
}

/* message */
section#chaenMessage {
    position: relative;
    padding: 1240px 0 140px;
	background: linear-gradient(180deg, rgba(255, 251, 247, 0.00) 0%, rgba(255, 251, 247, 0.65) 30%, rgba(255, 251, 247, 0.90) 53.5%, rgba(255, 251, 247, 0.90) 100%);
}
section#chaenMessage:before {
    content: "";
    width: 160px;
    height: 1000px;
    background: linear-gradient(180deg, #FFFBF7 0%, rgba(255, 251, 247, 0.80) 15.54%, rgba(255, 251, 247, 0.20) 31.93%, rgba(255, 251, 247, 0.00) 100%);
    position: absolute;
    top: 0;
    left: 0;
}
.chaenMessage__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    gap: 15px;
}
p.chaenMessage__inner--middle {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
}
.chaenMessage__inner h2 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--main-heading);
    z-index: 1;
}
.chaenMessage__inner--sign {
    display: flex;
    flex-direction: column;
    align-items: end;
	margin-top: -120px;
}
.chaenMessage__inner--sign img {
    opacity: 0.3;
    max-width: 280px;
}
.chaenMessage__inner--sign h3 {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
    font-weight: 500;
	color: #707070;
}

/* about */
section#chaenAboutTop {
    position: relative;
    background: var(--chaen-sand);
}
section#chaenAboutTop:after {
    content: "";
    width: 600px;
    height: 600px;
    position: absolute;
    background: url(https://digirise.ai/wp-content/uploads/2025/03/centerlogos.svg) no-repeat;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background-size: contain;
    opacity: 0.4;
}
.chaenAboutTop__inner--top h2 {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 18rem;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    opacity: 0.4;
    pointer-events: none;
}
.chaenAboutTop__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 180px;
}
.chaenAboutTop__inner--topText {
    display: flex;
    justify-content: space-between;
	align-items: flex-start;
	padding-top: 220px;
	position: relative;
    z-index: 1;
}
.chaenAboutTop__inner--topTextLeft {
    width: 33%;
    display: flex;
    justify-content: center;
}
.chaenAboutTop__inner--topTextLeft h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--main-heading);
	letter-spacing: 2.2px;
}
.chaenAboutTop__inner--topTextRight {
    display: flex;
    flex-direction: column;
    width: 55%;
    gap: 40px;
    padding-top: 160px;
}
.chaenAboutTop__inner--topTextRightBtn {
    display: flex;
    justify-content: flex-end;
}

.chaenAboutTop__inner--topmiddle {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 120px 0 60px;
}
/* chaen swiper */
.chaen-swiper-container {
    width: 100vw;
    overflow: hidden;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.swiper-wrapper {
    display: grid;
    grid-auto-flow: column;
    align-items: stretch;
}

.swiper-slide {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 5px;
    object-position: center;
    vertical-align: bottom;
    max-width: 380px;
}
.chaenAboutTop__inner--top .chaenAboutTop__inner--topmiddle h2 {
    opacity: 1;
    font-weight: 900;
    font-size: 6.4rem;
    position: relative;
    line-height: 1;
    transform: none;
    width: 100%;
    max-width: 1200px;
    left: auto;
    top: auto;
    margin: -70px auto 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
    letter-spacing: 4px;
	gap: 2px;
	text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.15);
	overflow: hidden;
	padding-bottom: 20px;
}
.chaenAboutTop__inner--top .chaenAboutTop__inner--topmiddle h2 span:nth-child(2) {
    text-align: right;
}

.chaenAboutTop__inner--topBottom {
    margin: 0 auto;
    width: fit-content;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 5px;
    padding: 30px 35px;
	gap: 25px;
	position: relative;
}
/* chaen heading */
.chaenHeading {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
	gap: 5px;
}
.chaenHeading img {
    width: 32px;
    height: 32px;
    margin: 0 auto;
}
.chaenHeading h2 {
    position: static;
    font-size: 3.6rem;
    color: var(--main-text);
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
	font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
}
.chaenHeading p, .chaenHeading a {
    font-size: 0.9rem;
    margin-top: -8px;
	line-height: 2.2;
}
.chaenHeading a {
    color: var(--main-heading);
    text-decoration: underline;
	position: relative;
}
.chaenHeading a:after {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.8;
    padding-left: 6px;
    font-size: 0.8rem;
    text-decoration: none;
    vertical-align: 1.6px;
}

/* chaen card */
ul.chaenLinks {
    display: flex;
    flex-wrap: wrap;
}
ul.chaenLinks.interview {
    justify-content: center;
    gap: 35px;
}
ul.chaenLinks li {
    width: 340px;
}
a.chaenLinksCard {
    background: #fff;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
    cursor: pointer;
    transition: 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    border-radius: 6px;
    overflow: hidden;
    padding-bottom: 6px;
    height: 100%;
}
.chaenLinksCard__text {
    padding: 18px 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
	flex-grow: 2;
}
.chaenLinksCard__text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.53;
	overflow: hidden;
	  display: -webkit-box;
	  text-overflow: ellipsis;
	  -webkit-box-orient: vertical;
	  -webkit-line-clamp: 3;
}
p.chaenLinksCard__desc {
    line-height: 1.73;
    font-size: 0.9rem;
    margin-bottom: 8px;
	flex-grow: 1;
}
p.chaenLinksCard__url {
    line-height: 1;
    position: relative;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    color: #707070;
}
p.chaenLinksCard__url:after {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.4;
    padding-left: 6px;
}
a.chaenLinksCard:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* corprate */
section#chaenCorprate {
    position: relative;
    height: 100svh;
    min-height: 750px;
	clip-path: polygon(100% 0, 100% 90%, 0 100%, 0 10%);
    margin-top: -100px;
	margin-bottom: -100px;
    z-index: 2;
}
section#chaenCorprate .shape {
    z-index: 2;
}
.chaenCorprate__bgImage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
}
img#chaenCorprate__bgImageFile {
    width: 100%;
    object-fit: cover;
    height: 100%;
    object-position: top;
    transition: transform 0.4s ease-out;
}
.chaenCorprate__inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.chaenCorprate__inner--right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
}
.chaenCorprate__inner--right h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    letter-spacing: 3px;
	text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}
.chaenCorprate__inner--right p {
    color: #fff;
    font-weight: 500;
	text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}
.chaenCorprate__head {
    position: absolute;
    left: 0;
    top: 44%;
    transform: rotateZ(-90deg) translateY(-170%);
    z-index: 2;
}
.chaenCorprate__head p {
    font-size: 10rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    line-height: 1;
    opacity: 0.3;
}
.chaenCorprate__inner--rightBtn {
    display: flex;
    justify-content: flex-end;
}

/* medias */
section#medias {
    position: relative;
	overflow: hidden;
}
h2.midashiMedia {
    background: #fff;
    padding-top: 160px;
    text-align: center;
    position: static;
    font-size: 6.6rem;
    color: var(--chaen-sand);
    font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    margin-bottom: -80px;
    position: relative;
    z-index: 1;
}
.medias__inner {
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 100px 0 80px;
}

/* content Swiper */
.slide-pagination-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    width: fit-content;
    margin: 20px auto 0;
    height: 60px;
    align-items: center;
}
.swiper-button-prev {
    color: var(--main-heading);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    left: -40px;
    transform: translateY(-7px);
}
.swiper-button-prev:after, .swiper-button-next:after {
    font-size: 1.4rem;
    pointer-events: none;
}
.swiper-button-next {
    color: var(--main-heading);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    right: -40px;
    transform: translateY(-7px);
}
.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.swiper-pagination span {
    width: 18px;
    height: 18px;
    transition: 0.5s ease-in-out;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--main-heading);
	width: 48px;
    border-radius: 12px;
}
a.chaenLinksCard.medias img {
    height: 180px;
    border-radius: 0;
	max-width: none;
}
p.chaenLinksCard__url i.fa-youtube {
    color: #ff0000;
    font-size: 1.1rem;
    vertical-align: -3px;
}

/* note api */
.medias__inner .chaenHeading a {
    display: inline-flex;
    margin: 0 auto;
	align-items: center;
}
.medias__inner.note {
    background: var(--chaen-sand);
}
.medias__inner.note .chaenHeading h2 {
    text-transform: lowercase;
}
.medias__inner a.chaenLinksCard.medias p.chaenLinksCard__url img {
    width: 16px;
    height: 16px;
    vertical-align: -5px;
}

/* results */
section#chaenResults {
    position: relative;
}
section#chaenResults .shape {
    z-index: 2;
    opacity: 0.06;
    background: #fff;
}
.chaenResultsBgImg {
    position: sticky;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100svh;
    min-height: 800px;
}
.chaenResults__inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 120px;
}
.chaenResults__inner--left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 50%;
    position: relative;
	padding-bottom: 60px;
}
p.chaenResultsMidashi {
    font-size: 6.6rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    position: absolute;
    z-index: 1;
    top: -50px;
    line-height: 1;
    left: -50px;
    opacity: 0.2;
}
.chaenResults__inner--left h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
	position: relative;
}
p.chaenResultsDesc {
    color: #fff;
    font-weight: 500;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
}

.chaenResultsBgImg img {
    transition: transform 0.3s ease-out;
    object-fit: cover;
    object-position: center;
}
.chaenResultsBgImg__blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: backdrop-filter 0.2s ease, -webkit-backdrop-filter 0.2s ease;
}
.medias__inner.resultSlider {
    overflow: hidden;
    padding-bottom: 100px;
	position: relative;
    background: none;
	z-index: 2;
}
section#chaenResults .medias__inner.resultSlider {
    margin-top: -760px;
}

/* contact */
section#chaenContact {
    position: relative;
    background: url(/wp-content/uploads/2025/03/chaencontac.jpg) no-repeat;
    background-position: center;
    background-size: cover;
}
section#chaenContact .shape {
    background: #fff;
}
.chaenContact__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 0 120px;
    display: flex;
    justify-content: flex-end;
}
.chaenContact__inner--right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 55%;
    position: relative;
}
.chaenContact__inner h2 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
    position: relative;
}
.chaenResultsDesc--block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.chaenContact__inner--rightBtn {
    display: flex;
    justify-content: flex-end;
}

/* two CTA */
section#chaenTwiCta {
    position: relative;
    background: #fff;
}
.chaenTwiCta__inner {
    display: flex;
    justify-content: space-between;
}
.chaenTwiCta__inner--block {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 45px 55px;
    position: relative;
    height: auto;
}
.chaenTwiCta__inner--block h2 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.53;
    letter-spacing: 2px;
}
.chaenTwiCta__inner--block p {
    font-size: 1rem;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
	flex-grow: 1;
}
.chaenTwiCta__inner--blockBtn {
    display: flex;
    justify-content: flex-end;
}
.chaenTwiCta__inner .chaenTwiCta__inner--block:first-child {
    border-right: solid 1px #ddd;
}
button#playmovie:after {
    content: "\f2d2";
    opacity: 0.4;
    top: 45%;
    font-weight: 100;
}

/* youtube modal */
/* モーダルのベース */
.chaenVideoModal {
    display: flex;
    position: fixed;
    z-index: 9999; /* すべての要素より前面に */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* 背景のオーバーレイ */
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden; /* 初期状態は非表示 */
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* モーダルのコンテンツ */
.chaenVideoModal__content {
    position: relative;
    width: 90%;
    max-width: 800px; /* PC最大幅 */
    background: #000;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* モーダルが開いた時のアニメーション */
.chaenVideoModal.show {
    opacity: 1;
    visibility: visible;
}

.chaenVideoModal.show .chaenVideoModal__content {
    opacity: 1;
    transform: scale(1);
}

/* 閉じるボタン（×アイコン） */
.chaenVideoModal__close {
    position: absolute;
    top: -50px;
    right: -2px;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 11;
}
.chaenVideoModal__close:hover {
    opacity: 0.7;
}

/* iframeのコンテナ */
.chaenVideoModal__iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9アスペクト比 */
    height: 0;
    overflow: hidden;
}
.chaenVideoModal__iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* footer */
footer#footerChaen {
    background: var(--main-text);
    position: relative;
}
.footerChaen__inner {
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.footerChaen__inner--top {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    padding-bottom: 50px;
    border-bottom: solid 1px #707070;
    margin-bottom: 5px;
}
a.footerChaen__inner--topLogo:hover {
    opacity: 0.8;
}
.footerChaen__inner--top .trp-language-switcher > div {
    background-position: calc(100% - 12px) calc(1em + 0px), calc(100% - 3px) calc(1em + 0px);
}
ul.footerChaen__inner--topSocial {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
}
ul.footerChaen__inner--topSocial li {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
}
ul.footerChaen__inner--topSocial li a:hover {
    opacity: 0.6;
}
ul.footerChaen__inner--topLinks {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
}
ul.footerChaen__inner--topLinks li a {
    padding: 2px 8px;
    position: relative;
    color: #eee;
    letter-spacing: 1px;
}
ul.footerChaen__inner--topLinks li a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: -6px;
    top: 51%;
    transform: translateY(-50%);
    opacity: 0.7;
}
ul.footerChaen__inner--topLinks li a:hover {
    opacity: 0.7;
}
.footerChaen__inner--bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0 25px;
}
p.footerChaen__inner--bottomRights {
    font-size: 0.8rem;
    color: #aaa;
}
.footerChaen__inner--bottomRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}
a.chaenOutLink {
    position: relative;
    font-size: 0.8rem;
    color: #fff;
    letter-spacing: 0.5px;
}
a.chaenOutLink:after {
    content: "\f35d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.8;
    padding-left: 6px;
}
a.chaenOutLink:hover {
    opacity: 0.7;
}
a#toTop {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    color: #fff;
    align-items: center;
    border: solid 1px #707070;
    border-radius: 9999px;
}
a#toTop:hover {
    border-color: #fff;
}

/* about me */
section#chaenHeaderBlock {
    position: relative;
}
section#chaenHeaderBlock .shape {
    background: #fff;
}
.chaenHeaderBlock__backg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.chaenHeaderBlock__backg img {
    width: 100vw;
    object-fit: cover;
    height: 100%;
    object-position: top;
}
.chaenHeaderBlock__inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    align-items: flex-start;
    margin: 0 auto;
    padding: 180px 0;
    flex-direction: column;
}
.chaenHeaderBlock__inner h1 {
    position: static;
    font-size: 5.6rem;
    color: #fff;
    left: auto;
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
}
.chaenHeaderBlock__inner p {
    font-family: 'Noto Sans JP', sans-serif;
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

/* history */
section#chaenHistory {
    position: relative;
    background: var(--chaen-sand);
}
.chaenHistory__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 140px 0 120px;
    position: relative;
}
.chaenHistory__inner h2 {
    font-size: 6.6rem;
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    letter-spacing: 1.5px;
    text-transform: capitalize;
    position: absolute;
    z-index: 1;
    top: 80px;
    line-height: 1;
    left: -60px;
    opacity: 0.6;
}
.chaenHistory__inner p {
    position: relative;
    z-index: 1;
}

/* 間の画像 */
section#chaenMiddleImg {
    position: relative;
    background: url(https://digirise.ai/wp-content/uploads/2025/03/aidano.jpg) no-repeat;
    height: 420px;
    background-size: cover;
}
/* profile */
section#chaenprofile {
    position: relative;
    background: var(--chaen-sand);
}
.chaenprofile__inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.chaenprofile__inner--tab {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
h2.chaenprofile__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--main-text);
}
h2.chaenprofile__heading span {
    color: #707070;
    font-size: 1rem;
}
/* tabs */
section#chaenprofile nav.tabs__nav {
    margin-bottom: 0;
    box-shadow: none;
	background: none;
}
section#chaenprofile .someTabs {
    filter: drop-shadow(0px 1px 1px #ddd);
}
section#chaenprofile a.tabs__item {
    color: #222;
    opacity: 0.4;
    background: #fff;
    position: relative;
    border: none;
    padding-top: 20px;
    font-size: 1.2rem;
    gap: 5px;
}
section#chaenprofile a.tabs__item.active {
    opacity: 1;
}
section#chaenprofile a.tabs__item.active:before {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    top: 0;
    background: #000;
}
section#chaenprofile .tabs__body {
    background: #fff;
    padding: 25px 35px;
}
.tabs__content ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.tabs__content ul li {
    line-height: 2.2;
    letter-spacing: 1.8px;
    color: var(--main-text);
    word-wrap: break-word;
    font-size: 1.1rem;
}
.chaenpro {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
dl.chaenpro__history {
    border-radius: 3px;
    background: #FFF;
    filter: drop-shadow(0px 1px 1px #ddd);
    display: flex;
    flex-direction: column;
    padding: 45px 50px 50px;
	position: relative;
}
.chaenpro__history--wrapper {
    display: flex;
    justify-content: flex-start;
    position: relative;
    padding-bottom: 30px;
	padding-left: 40px;
}
.chaenpro__history--wrapper:before {
    content: "";
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 3px;
    background: #CBC09D;
    border-radius: 9999px;
}
.chaenpro__history--wrapper:after {
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 10px;
    top: 4px;
    background: #CBC09D;
}
.chaenpro__history--wrapper dt {
    width: 200px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--main-text);
}
ul.chaenpro__history--list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
ul.chaenpro__history--list li {
    position: relative;
    padding-left: 30px;
    font-size: 1.1rem;
    letter-spacing: 1.2px;
    color: var(--main-text);
}
ul.chaenpro__history--list li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 2px;
    top: 5px;
    opacity: 0.3;
}
dl.chaenpro__history .chaenpro__history--wrapper:last-child {
    padding-bottom: 0;
}
dl.chaenpro__history .chaenpro__history--wrapper:last-child:after {
    content: none;
}

/* prof Card */
.chaenSns {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
h2.chaenprofile__heading.english {
    font-family: "Roboto", sans-serif;
    font-style: italic;
    font-size: 3.2rem;
    letter-spacing: 4px;
}
ul.chaenVertical {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
a.chaenVerticalCard {
    display: flex;
    justify-content: flex-start;
    background: #fff;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 5px;
    align-items: center;
}
a.chaenVerticalCard:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
    color: #888;
    text-decoration: none;
    transform: translateY(-2px);
}
.chaenVerticalCard__img {
    width: 280px;
}
.chaenVerticalCard__img img {
    vertical-align: bottom;
    object-fit: cover;
    width: 100%;
	border-radius: 5px 0 0 5px;
}
.chaenVerticalCard__right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 25px;
    width: calc(100% - 280px);
}
.chaenVerticalCard__right h3 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.53;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
.chaenVerticalCard__right p.chaenLinksCard__url img {
    width: 14px;
    height: 14px;
    vertical-align: -4px;
    margin-right: 5px;
}
/* chaen aboutme */
.chaenaboutResults {
	display: flex;
    flex-direction: column;
    gap: 40px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.chaenaboutResults .medias__inner.resultSlider {
    background: none;
    padding: 0;
}
.chaenaboutResults a.chaen-primaryBtn {
    margin: -20px auto 0;
}

/* chaen corp */
section#chaenCompany {
    position: relative;
    background: var(--chaen-sand);
}
.chaenCompany__inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 0 120px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.chaenCompany__inner--top {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.chaenVerticalCard__img.wide {
    width: 370px;
    height: 330px;
    background: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px 0 0 5px;
}
.chaenVerticalCard__img.wide img {
    object-fit: contain;
    max-width: 250px;
    border-radius: 0;
}
p.chaenVerticalCard__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: #707070;
}
h3.companyname {
    font-size: 2.2rem;
    margin-bottom: 5px;
}
p.chaenVerticalCard__descs {
    line-height: 1.83;
    font-size: 1rem;
    margin-bottom: 10px;
}
/* companys */
img.chaenLinksCardImgs {
    height: 190px;
    object-fit: cover;
}

/* press */
main#chaen.pressPage {
    background: var(--chaen-sand);
}
section#chaenAcco {
    position: relative;
    margin-top: -34px;
}
/* アコーディオンヘッダー */
.chaenAcco__inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 0 80px;
    position: relative;
}

.chaenAcco__inner--header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #FFF;
    padding: 20px 20px 22px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease-in-out;
    position: relative;
    border-radius: 3px 3px 0 0;
    font-weight: 500;
    gap: 10px;
}

.chaenAcco__inner--row {
    border-radius: 5px;
    background: #FFF;
    box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.chaenAcco__inner--header h2 {
    font-size: 1.2rem;
    letter-spacing: 0.8px;
	font-weight: 600;
}

.chaenAcco__inner--header:hover {
    background: #f9f9f9;
}

/* アイコンのスタイル */
.chaenAcco__inner--header i {
    font-size: 1.3rem;
    opacity: 0.4;
    transition: 0.3s ease-in-out;
    position: relative;
	vertical-align: -1px;
}

.chaenAcco__inner--header i:hover {
    opacity: 0.8;
}

/* アコーディオンのコンテンツ */
.panel {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
	border-top: solid 1px #ddd;
}
.panel__inner {
    display: flex;
    padding: 20px 30px 35px;
    flex-direction: column;
    gap: 35px;
}

/* `span`（ツールチップの内容）をデフォルトで非表示 */
.chaenAcco__inner--headerIcon {
    position: relative;
    display: inline-block;
}

/* ツールチップのスタイル */
.chaenAcco__inner--headerIcon span {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    max-width: 350px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    z-index: 10;
    line-height: 1.73;
}

/* ツールチップの矢印 */
.chaenAcco__inner--headerIcon span::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent transparent transparent;
}

/* `i` をホバーすると `span`（ツールチップ）を表示 */
.chaenAcco__inner--headerIcon:hover span {
    opacity: 1;
    visibility: visible;
}

.chaenAcco__inner--header.show h2 {
    color: var(--main-heading);
}
.chaenAcco__inner--header:after {
    content: "\f055";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 21px;
    top: 48%;
    transform: translateY(-50%);
    opacity: 0.4;
    font-size: 1.2rem;
}
.chaenAcco__inner--header.show:after {
    content: "\f056";
    color: var(--main-heading);
    opacity: 1;
}
.panel__inner__block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.panel__inner__block h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #707070;
    background: #f9f9f9;
    width: fit-content;
    padding: 5px 12px 7px;
    text-align: center;
    border-radius: 3px;
    letter-spacing: 1.2px;
}
.panel__inner__block a {
    color: var(--main-heading);
    text-decoration: underline;
    font-weight: 600;
}
p.corpName {
    font-weight: 600;
    font-size: 1.6rem;
}
.panel__inner hr {
    height: 1px;
    background: #ddd;
}
.panel__inner__blockLogoImg {
    border: solid 1px #ddd;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: #f9f9f9;
}

/* chaen news */
main#newsPostPage.baigeBgColor {
    position: relative;
    background: var(--chaen-sand);
}
main#newsPostPage .newsPostPage__inner--blockInner.chaenNews figure.wp-block-image {
    pointer-events: none;
}
main#newsPostPage .newsPostPage__inner--blockInner.chaenNews h2.wp-block-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--main-heading);
}
main#newsPostPage .newsPostPage__inner--blockInner.chaenNews strong {
    font-weight: 600;
}
main#newsPostPage .newsPostPage__inner--blockInner.chaenNews ul.wp-block-list li {
    line-height: 1.92;
}
main#newsPostPage .newsPostPage__inner--blockInner.chaenNews ul.wp-block-list li:before {
    top: 2px;
}

/* chaen links */
aside#resultsLink {
    position: relative;
    background: var(--chaen-sand);
}
.resultsLink__inner {
    padding-bottom: 60px;
}
.resultsLink__inner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--main-heading);
    margin-bottom: -60px;
    text-align: center;
    position: relative;
    z-index: 4;
}
.resultsLink__inner a.chaen-primaryBtn {
    margin: -60px auto 0;
    z-index: 4;
}
p.noUrlText {
    line-height: 1;
    position: relative;
    font-size: 0.7rem;
    letter-spacing: 1.2px;
    color: var(--main-heading);
    font-weight: 600;
    width: fit-content;
}
p.noUrlText:after {
    content: "\f0c1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: relative;
    opacity: 0.4;
    padding-left: 6px;
}

@media screen and (max-width: 1200px) {
/* （ここに1200px以下のスタイルを記述） */
	/* mv */
	.chaenMV__inner--rightObi {
    width: 120px;
	}
	.chaenMV__inner--rightObi p {
    white-space: nowrap;
	}
	section#chaenMessage:before {
    width: 120px;
	}
	.chaenMV__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* about */
	.chaenAboutTop__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenAboutTop__inner--topTextRight {
    width: 60%;
	}
	.chaenAboutTop__inner--top .chaenAboutTop__inner--topmiddle h2 {
    font-size: 4.8rem;
	}
	/* corprate */
	.chaenCorprate__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenResultsBgImg img {
    height: 100svh;
	}
	.chaenResults__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* cta */
	.chaenContact__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenContact__inner--right {
    width: 65%;
	}
	/* footer */
	.footerChaen__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	/* header */
	.chaenHeaderBlock__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 1000px) {
/* （ここに1000px以下のスタイルを記述） */
	/* header */
	nav.chaenMenuNav {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenCorprate__inner--right {
    width: 70%;
	}
	.chaenResults__inner--left h2 br, .chaenResults__inner--left p br {
    display: none;
	}
	.chaenContact__inner--right h2 br {
    display: none;
	}
	.chaenTwiCta__inner--block p br {
    display: none;
	}
	.chaenAboutTop__inner--top .chaenAboutTop__inner--topmiddle h2 {
    font-size: 3.4rem;
    }
}

@media screen and (max-width: 860px) {
/* （ここに860px以下のスタイルを記述） */
	/* header */
	ul.chaenHeader__inner--rightTextList {
    display: none;
	}
	a.chaenMenuNav__list--link {
    font-size: 2.6rem;
	}
	/* message */
	.chaenMessage__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenMessage__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	a.chaenLinksCard.medias img {
    height: 220px;
	}
	.chaenResults__inner {
    flex-direction: column;
	gap: 30px;
	}
	.chaenResults__inner--left {
    width: 100%;
    align-items: center;
	}
	h2.aboutHeading {
    font-size: 8.5rem;
	}
	.chaenHistory__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenprofile__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenCompany__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
	.chaenAcco__inner {
    padding-left: 4%;
    padding-right: 4%;
	}
}

@media screen and (max-width: 767px) {
/* （ここにモバイル用スタイルを記述） */
	/* header */
	.chaenHeader__inner--right .chaen-primaryBtn {
    display: none;
	}
	nav.chaenMenuNav {
    flex-direction: column;
    align-items: center;
    height: 100%;
    gap: 25px;
    padding: 40px 0;
    justify-content: flex-start;
	}
	.chaenMenuNav ul.chaenMenuNav__list {
    width: 100%;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 25px;
	}
	a.chaenMenuNav__list--link {
     font-size: 2rem;
	 align-items: center;
     gap: 0;
    }
	a.chaenMenuNav__list--link span {
    font-size: 0.8rem;
	}
	nav.chaenMenuNav ul.chaenMenuNav__list:first-child {
    order: 3;
	}
	h2.aboutHeading {
     font-size: 6.5rem;
    }
	.chaenHeader__inner {
    padding: 8px 2%;
	}
	a.chaenHeader__inner--logo img {
    width: 80%;
	transform: translateY(5px);
	}
	/* mv */
	.chaenMV__inner {
    height: 80svh;
	}
	.chaenMV__inner--rightObi {
     width: 0;
	 z-index: 0;
     overflow: hidden;
     transition: width 1.8s ease-in-out; /* ゆったりとしたアニメーション */
    }
	.chaenMV__inner--rightObi p {
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    /* 1.8秒後にopacityを発動（遅延1.8秒） */
    .chaenMV__inner--rightObi.show p {
        opacity: 1;
        transition-delay: 1.8s;
    }
	/* ページ読み込み後にアニメーションを発動 */
    .chaenMV__inner--rightObi.show {
     width: 65px;
    }
	section#chaenMessage:before {
    width: 0;
	top: 0;
	left: 0;
    transition: width 1.8s ease-in-out;
    }
	section#chaenMessage.show:before {
    width: 65px;
    }
	.chaenMV__inner--rightText h1 {
    z-index: 1;
	}
	.chaenMV__inner--rightText h1 span {
	font-size: 2.4rem;
	padding: 8px 0px 11px 22px;
	margin: 0 auto;
    }
	.chaenMV__inner--rightText p {
    font-size: 1.5rem;
    text-align: center;
    z-index: 1;
	}
	/* message */
	section#chaenMessage {
    padding-top: 600px;
	padding-bottom: 60px;
	}
	p.chaenMessage__inner--middle {
    font-size: 1.6rem;
	}
	p.chaenMessage__inner--middle br {
    display: none;
	}
	.chaenMessage__inner h2 {
    font-size: 2rem;
	}
	/* about */
	.chaenAboutTop__inner--topText {
    padding-top: 60px;
	}
	.chaenAboutTop__inner--topText {
    flex-direction: column;
    align-items: center;
	}
	.chaenAboutTop__inner--topTextRight {
    padding-top: 0;
    width: 100%;
	}
	.chaenAboutTop__inner--topTextRightBtn {
    justify-content: center;
	}
	.chaenAboutTop__inner--topmiddle {
    padding-top: 60px;
	}
	/* toppage */
	section#chaenAboutTop:after {
    width: 300px;
    height: 300px;
	}
	.chaenAboutTop__inner--top .chaenAboutTop__inner--topmiddle h2 {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
	}
	.chaenAboutTop__inner--topBottom {
    padding-left: 4%;
    padding-right: 4%;
    width: auto;
	}
	p.chaenResultsMidashi {
    font-size: 3rem;
    left: -5px;
    top: -20px;
    }
	.chaenMessage__inner--sign {
    margin-top: -50px;
	}
	.chaenMessage__inner--sign img {
    max-width: 180px;
	}
	/* company */
	.chaenCorprate__inner--right {
    width: 100%;
    gap: 20px;
	}
	.chaenCorprate__inner--right h2 {
    font-size: 2.2rem;
    line-height: 1.5;
	}
	.chaenCorprate__inner--right p br {
    display: none;
	}
	h2.midashiMedia {
    font-size: 4.6rem;
	margin-bottom: -40px;
	}
	.medias__inner {
    gap: 25px;
    padding-top: 50px;
	padding-bottom: 40px;
	}
	.chaenResults__inner {
    padding-top: 0;
    padding-bottom: 0;
	gap: 0;
    }
	.chaenResults__inner--left h2 {
    font-size: 2.2rem;
    line-height: 1.5;
	}
	.chaenResults__inner--right {
    display: none;
	}
	.medias__inner.resultSlider {
    padding-top: 0;
	padding-bottom: 60px;
	}
	/* contact */
	.chaenContact__inner--right {
    width: 100%;
	}
	.chaenContact__inner h2 {
    font-size: 2.2rem;
    line-height: 1.5;
	}
	.chaenContact__inner {
    padding-top: 80px;
    padding-bottom: 60px;
	}
	/* two cta */
	.chaenTwiCta__inner {
    flex-direction: column;
	}
	.chaenTwiCta__inner--block {
    width: 100%;
    border: none;
    padding: 20px 25px 30px;
    gap: 8px;
	}
	.chaenTwiCta__inner .chaenTwiCta__inner--block:first-child {
    border-bottom: solid 1px #ddd;
	}
	.chaenTwiCta__inner--blockBtn {
    justify-content: center;
	}
	/* footer */
	ul.footerChaen__inner--topLinks {
    flex-direction: column;
    gap: 20px;
	}
	.footerChaen__inner--bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
	padding-bottom: 15px;
	}
	.footerChaen__inner--bottomRight {
    flex-direction: column-reverse;
    gap: 15px;
	}
	p.footerChaen__inner--bottomRights {
    font-size: 0.6rem;
    text-align: center;
	}
	/* abpit page */
	.chaenHeaderBlock__inner {
    align-items: center;
	}
	.chaenHeaderBlock__inner h1 {
    font-size: 4.1rem;
	}
	.chaenHistory__inner {
    padding-top: 80px;
    padding-bottom: 60px;
	}
	.chaenHistory__inner h2 {
    font-size: 3rem;
    left: 0;
    top: 50px;
	}
	section#chaenMiddleImg {
    background-position: center;
    height: 240px;
	}
	.chaenprofile__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 60px;
	}
	a.tabs__item {
    min-width: 100%;
    max-width: 100%;
	}
	.someTabs {
    display: flex;
    flex-direction: column;
    gap: 0px;
	}
	dl.chaenpro__history {
    padding: 20px 25px 30px;
	}
	.chaenpro__history--wrapper {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 25px;
	}
	ul.chaenpro__history--list {
    gap: 10px;
	}
	.chaenpro {
    gap: 15px;
	}
	h2.chaenprofile__heading {
    font-size: 1.8rem;
	}
	.chaenprofile__inner--tab {
    gap: 15px;
	}
	.chaenSns {
    gap: 15px;
	}
	h2.chaenprofile__heading.english {
    font-size: 2.4rem;
	}
	/* long card */
	a.chaenVerticalCard {
    flex-direction: column;
	}
	.chaenVerticalCard__img {
    width: 100%;
	}
	.chaenVerticalCard__img img {
    border-radius: 5px 5px 0 0;
	}
	.chaenVerticalCard__right {
    width: 100%;
    padding-top: 14px;
    padding-bottom: 22px;
    gap: 12px;
	}
	/* media other page */
	section#medias.toppagePlus h2.midashiMedia {
    padding-top: 40px;
	}
	.chaenCompany__inner {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 40px;
	}
	.chaenCompany__inner--top {
    gap: 20px;
	}
	.chaenVerticalCard__img.wide {
    width: 100%;
    height: 170px;
	}
	h3.companyname {
    font-size: 1.5rem;
    margin-top: -10px;
    margin-bottom: -5px;
	}
	p.chaenVerticalCard__descs {
    line-height: 1.83;
    font-size: 0.9rem;
	}
	/* press */
	.chaenAcco__inner--header {
    padding-left: 12px;
    padding-right: 14px;
	}
	.panel__inner {
    padding: 10px 18px 16px;
	}
	.chaenAcco__inner--headerIcon span {
    width: 220px;
    padding: 8px 12px;
	}
	.chaenAboutTop__inner--topTextLeft h3 {
    font-size: 2.6rem;
	}
	.chaenCorprate__inner--rightBtn {
    justify-content: center;
	}
	.chaenContact__inner--rightBtn {
    justify-content: center;
	}
	/* chaen bottom movie */
	.chaenVideoModal .chaenVideoModal__content {
    width: 100%;
	padding: 0;
	}
	/* chaen news */
	main#newsPostPage .newsPostPage__inner--blockInner.chaenNews ul.wp-block-list {
    padding: 15px 20px;
	}
	.resultsLink__inner h2 {
    margin-bottom: 40px;
	}
}