*{
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

  /* Global Styles */
  :root {
    --primary-color: #35B6EE;
    --secondary-color: #103568;
    --font-color: #fff;
    --primary-font: 'Noto Sans JP';
    --primary-en-font: 'Montserrat';
    --crosstalk-font: 'Zeyada', cursive;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }

body{
  box-sizing: border-box;
  font-family: 'Noto Sans JP';
}

section{
  padding: 124px 0;
}

/* h2{
  padding: 0;
}
p{
  padding: 0;
  text-align: left;
} */

a{
  color: #333;
  text-decoration: none;
}

.inner{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}



/* ＝＝＝＝＝＝＝＝＝＝＝＝＝
      共通部分 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.read-more{
  width: fit-content;
  margin-left: auto;
}

.more-button{
  display: block;
  font-size: 12px;
  font-family: var(--primary-en-font);
}

.more-button-style{
  font-size: 16px;
}

.num-line{
  width: 56%;
  text-align: center;
  border: 1px solid #fff;
  position: absolute;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}

.num-line::before{
  content: 'TOP MESSAGE';
  position: absolute;
  top: -40px;
  display: block;
  color: #fff;
  text-align: center;
  font-size: 12px;
}

.num-line::after{
  content: '01';
  display: block;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 34px;
}




/* .openbtn2{
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background:#35B6EE;
  border-radius: 50%;
} */
  
/*ボタン内側*/

/* .openbtn2 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 18px;
    height: 4px;
    border-radius: 2px;
  background-color: #fff;
  }


.openbtn2 span:nth-of-type(1) {
  top:18px; 
    width: 30%;
}

.openbtn2 span:nth-of-type(2) {
  top:27px;
    width:30%;
} */

/*activeクラスが付与されると線が回転して×に*/

/* .openbtn2.active span:nth-of-type(1) {
    top: 17px;
    left: 17px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.openbtn2.active span:nth-of-type(2) {
    top: 29px;
    left: 17px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
} */




.logo{
  display: flex;
  align-items: center;
  justify-content: center;

}

.site-title{
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  margin-left: 20px;
}

.menu{
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu{
  margin-right: 50px;
}

.nav-menu ul{
  list-style: none;
  display: flex;
  font-size: 15px;
  font-weight: 700;
}

.nav-menu a{
  display: block;
  text-align: center;
  width: 160px;
  line-height: 50px;
  height: 50px;
  margin-right: 24px;
  border-radius: 50px;
  color: #35B6EE;
  background-color: #fff;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
	top:21px;
	right: 19px;
	cursor: pointer;
  width: 50px;
  height:50px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 35%;
  height: 3px;
  border-radius: 2px;
	background-color: #FFF;
  width: 30%;
  }

.openbtn span:nth-of-type(1) {
	top:20px;	
}

.openbtn span:nth-of-type(2) {
	top:28px;
}


.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*========= フルスクリーンナビメニュー ===============*/

/*========= ぼかしのためのCSS ===============*/

.mainblur{
	filter: blur(30px);
}


#g-nav{
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
	top:0;
  left: 0;
	width:100%;
  height: 100vh;/*ナビの高さ*/
	background:rgba(255,255,255,0.3);/*背景を少し透過させる*/
  /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  max-width: 1100px;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 260px;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 18px;
}


/*ナビゲーション*/
#g-nav ul {
  display: none;
  /*ナビゲーション天地中央揃え*/
  /* position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%); */
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
  text-align: left; 
}

#g-nav li a{
text-decoration: none;
/* padding:10px; */
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
}

.g-nav_block{
  width: 25%;
  position: relative;
  margin-right: 20px;
}

#g-nav li a,
.g-nav_block a,
.g-nav_wrapper h3{
  color: #fff;
}



.g-nav_block a{
  font-weight: 300;
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-top: 17px;
  padding-bottom: 17px;
}
.g-nav_block a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  right: 0;
  background: #fff;
  transition: width 0.4s ease, right 0.4s ease;
}

.g-nav_block a:hover::after {
  width: 100%;
  right: 0;
}


.g-nav_wrapper h3{
  font-size: 40px;
  margin-bottom: 56px;
  
}

.other_menu h3{
  font-size: 30px;
  margin-bottom: 22px;
}

.g-nav_wrapper{
  display: flex;
}

.nav_jcc-logo{
  position: absolute;
  width: 40vw;
  right: -100px;
  bottom: -100px;
}


/* ----- */






.hamburger-menu{
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #35B6EE;
  border-radius: 50%;
  z-index: 101;
}

header {
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  z-index: 100;
}


.top-fv{
  height: 100vh;
  position: relative;
  background-image: url(../images/1D5A1186.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-fv-copy{
  font-family: 'Noto Serif JP';
  letter-spacing: 1.5;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 15vw;
  line-height: 1;
  color: #fff;
}

/* ポテンシャル採用 */
.fv-potential{
  position: absolute;
  bottom: 160px;
  right: 60px;
}

.fv-potential a{
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(to right top, #800073, #FFAA00);
}

.fv-potential p{
  width: 100%;
  text-align: center;
  line-height: 1.4;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
}

.fv-potential img{
  width: 100%;
  -webkit-animation: rotation 15s linear infinite;
  animation: rotation 15s linear infinite;
  position: absolute;
  z-index: 1;
  top: -19px;
  width: 197px;
  left: -19px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}


/* エントリー前に知っておいてほしいこと */

.fv-before-entry{
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #35B6EE;
}

.fv-before-entry-link{
  height: 100px;
  width: 250px;
}

.fv-before-entry p{
  color: #fff;
  text-align: center;
  font-size: 16px;
  padding: 16px 24px;
  line-height: 1.2;
}

.fv-before-entry p::before{
  content: 'BEFORE ENTRY';
  display: block;
  font-size: 0.8em;
  margin-bottom: 8px;
}

/* .fv-before-entry a::after{
  content: '〉';
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: #103568;
} */

.fv-before-entry-arrow{
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 100%;
  width: 10%;
  color: #fff;
  background-color: #103568;
}



/* トップコンセプト */
.top-concept{
  position: relative;
  height: 100vh;
  background-color: #35B6EE;
  color: #fff;
  padding: 0;
}



.top-concept-wrap {
  position: relative;
}

.top-concept-copy{
  width: 100%;
  margin: 0 auto;
}

.top-concept-copy > p{
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 22px;
  padding: 30px;
  line-height: 2;
}


.top-concept{
  overflow: hidden;
}
.back-copy-anime{
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
}

.svg-container {
  width: 20000px;
  height: 23.3vh;
  background-repeat: repeat-x;
  background-position: bottom;
  margin: 53px 0;
  background-size: contain;
}

.svg-top {
  background-image: url('../images/bk_copy01.svg'); /* 最上行のSVG */
  animation: slideRightToLeft 500s linear infinite;
}

.svg-middle {
  background-image: url('../images/bk_copy02.svg'); /* 中央行のSVG */
  animation: slideLeftToRight 500s linear infinite;
}

.svg-bottom {
  background-image: url('../images/bk_copy03.svg'); /* 最下行のSVG */
  animation: slideRightToLeft 500s linear infinite;
  margin-bottom: auto;
}

@keyframes slideLeftToRight {
  from { background-position: -100% 0; }
  to { background-position: 100% 0; }
}

@keyframes slideRightToLeft {
  from { background-position: 100% 0; }
  to { background-position: -100% 0; }
}


/* トップメッセージ */
.top-message{
  position: relative;
  background-color: #E6EAEF;
  color: var(--primary-color);
  padding: 80px 0;
}

.top-message-sec-title{
  width: fit-content;
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 80px;

}

.top-message-sec-title h2{
  text-align: left;
}

.top-message-sec-title::before{
  content: 'About';
  color: var(--secondary-color);
  font-size: 2.5454em;
  line-height: 1.5;
}

.top-message-title{
  width: 100%;
  font-size: clamp(3.75rem, 1.427rem + 9.78vw, 9.375rem);
  letter-spacing: -0.05em;
  margin-top: 98px;
  font-family: var(--primary-en-font);
  font-weight: 300;
}

.top-message-title span{
  color: var(--secondary-color);
}

.top-message-title p {
    font-size: 22px;
    color: #333;
    text-align: right;
    margin-top: 8px;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.top-message-title h2::before{
  content: '';
  display: inline-block;
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url('../images/top-m-back-img.svg');
  background-repeat: no-repeat;
  background-position: top center;
  width: 100%;
  height: 500px;
}



/*==================================================
スライダーのためのcss
===================================*/
.top-message-slider {
  position:relative;
  z-index: 1;
  height: 750px;
}

/* 背景画像設定 */
.slider-item01 {
  background:url(../images/fuchibetoshinori.jpg);
}

.slider-item02 {
  background:url(../images/fuchibeshunichi.jpg);
}

.slider-item03 {
  background:url(../images/top-section-img1.jpg);
}

.slider-item {
  width: 100%;
  height: 750px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.top-message-slick-prev, 
.top-message-slick-next {
  position: absolute;/*絶対配置にする*/
  z-index: 3;
  top: 50%;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #ccc;/*矢印の色*/
  border-right: 2px solid #ccc;/*矢印の色*/
  height: 25px;
  width: 25px;
}

.top-message-slick-prev {/*戻る矢印の位置と形状*/
  left:2.5%;
  transform: rotate(-135deg);
}

.top-message-slick-next {/*次へ矢印の位置と形状*/
  right:2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

/* .slick-dots {
position: relative;
z-index: 3;
  text-align:center;
margin:-50px 0 0 0;
}

.slick-dots li {
  display:inline-block;
margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;
  height:8px;
  display:block;
  border-radius:50%;
  background:#ccc;
}

.slick-dots .slick-active button{
  background:#333;
} */


/*==================================================
スライダー内の調整
===================================*/

.top-message-copy{
  font-size: clamp(1.625rem, 0.723rem + 1.88vw, 2rem);
  line-height: 1.5;
  width: fit-content;
  color: #fff;
}

.top-message-container{
  position: relative;
  height: 100%;
}

.copy-point1{
  position: absolute;
  top: 150px;
  right: 0;
}
.copy-point2{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.bbbb::before{
  content: url('../images/top-left.png');
  display: inline-block;
  position: absolute;
  top: -10px;
  left: -15px;
}

.bbbb::after{
  content: url('../images/bottom-right.png');
  display: inline-block;
  position: absolute;
  bottom: -30px;
  right: -20px;

}

.top-message-copy p{
  text-align: left;
}

.high-font{
  font-size: 1.5em;
  border-bottom: 1px solid #fff;
  letter-spacing: 0.05em;
  margin: 0 10px;
}

.top-message-content p{
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: #fff;
}

.top-message-content p:nth-child(1){
  font-size: 11px;
}

.top-message-wrap{
  width: 100%;
  position: absolute;
  bottom: 10%;
}

.read-more-top-messe{
  margin-left: auto;
  margin-right: 0;
  color: #fff;
}

.read-more-top-messe a{
  color: #fff;
}

.read-more-top-messe img{
  width: 258px;
  padding-top: 8px;
}







/* ーーーaboutセクションーーー */

.en-font{
  font-family: var(--primary-en-font);
  font-weight: 300;
}

.about-sec{
  background-color: var(--secondary-color);
  color: var(--font-color);
  padding-bottom: 152px;

}

.about-sec p{
  line-height: 1.6;
  font-size: 16px;
  text-align: left;
}

.about-sec-title{
  width: fit-content;
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 80px;

}

.about-sec-title h2{
  text-align: left;
}

.about-sec-title::before{
  content: 'About';
  color: var(--font-color);
  font-size: 2.5454em;
  line-height: 1.5;
}

.about-content-first-card{
  position: relative;
  margin-bottom: 100px;
}

.about-content-first-card img{
  width: 100%;
  height: auto;
  border-radius: 40px;
}
.about-content-image p{
  font-size: clamp(3.75rem, 1.607rem + 6.57vw, 7.5rem);
  font-weight: 200;
  letter-spacing: -0.12em;
  text-align: center;
  margin-top: -85px;
}

.about-copy{
  text-align: center;
}

.about-text{
  font-weight: bold;
  margin-bottom: 20px;
}


.about-content{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
}



.about-content img {
  width: 100%; 
  height: auto;
  object-fit: cover; /* 画像のアスペクト比を保ちつつ、指定した幅と高さに収まるように画像をトリミング */
  margin-bottom: 30px;
  border-radius: 40px;
}

.about-content-second-card{
  width: 33.3%;
}

.about-content-second-card h3{
  font-size: 24px;
  margin-bottom: 20px;
}

.about-content-second-card span{
  font-size: 12px;
  margin-left: 12px;
  font-family: var(--primary-font);
  font-weight: 500;
}

@media screen and (max-width: 768px){
  .about-sec p{
    font-size: 12px;
  }
  .about-content-image p{
    font-size: clamp(1.875rem, 0.536rem + 6.7vw, 3.75rem);
    margin-top: -35px;
  }
  .about-content{
    flex-direction: column;
  }
  .about-content-second-card{
    width: 100%;
  }
  .about-content img {
    width: 100%; 
    height: 15vh;
    object-fit: cover; /* 画像のアスペクト比を保ちつつ、指定した幅と高さに収まるように画像をトリミング */
    margin-bottom: 30px;
    border-radius: 40px;
  }
}


/* ーーーEnvironment セクションーーーー */

.environment-sec{
  position: relative;
  background-image: url('../images/environment-img.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: var(--font-color);
  padding: 80px 0 200px;
}

.environment-sec-lead{
  width: fit-content;
  color: var(--font-color);
  font-size: 56px;
  margin-bottom: 234px;
}

.environment-sec-lead::after{
  content: '働く環境と制度について';
  display: block;
  color: var(--primary-color);
  font-size: 0.4em;
  margin-top: 14px;
}

.environment-sec-read{
  font-size: 40px;
  margin-bottom: 12px;
  text-align: left;
}

.environment-sec-content{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-size: 22px;
  line-height: 40px;
}

.environment-sec-content p{
  text-align: left;
}

.readmore-button{
  display: block;
  color: #000;
  width: 100%;
  height: 72px;
  min-width: 280px;
  max-width: 280px;
  border-radius: 50px;
  background-color: #fff;
  line-height: 1;
  font-size: 16px;
  position: relative;
  padding: 26px 16px 26px 36px;
}

.readmore-button::after{
  content: url(../images/environment--linkarrow.png);
  position: absolute;
  display: inline-block;
  top: 24%;
  right: 18px;
}

.environment-sec-title{
  font-size: clamp(3.125rem, 2rem + 7.63vw, 10rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  line-height: 60%;
  font-weight: 300;
  text-align: center;
  line-height: 0.7;
}



/* ーーーインタビューセクションーーー */

.interview-sec{
  background-color: #E6EAEF;
  color: var(--primary-color);
  padding-bottom: 200px;
}

.interview-sec-lead{
  width: fit-content;
  color: var(--secondary-color);
  font-size: 56px;
  margin-bottom: 73px;
}

.interview-sec-lead::after{
  content: 'スタッフ紹介';
  display: block;
  color: var(--primary-color);
  font-size: 0.4em;
  margin-top: 14px;
}

.interview-title{
  width: 100%;
  font-size: clamp(2.125rem, -1.193rem + 16.59vw, 11.25rem);
  letter-spacing: -0.05em;
  font-family: var(--primary-en-font);
  font-weight: 300;
  text-align: center;
  line-height: 0.7;
}

.interview-title span{
  color: var(--secondary-color);
}

.interview-container{
  background-color: #fff;
  border-radius: 80px;
  padding: 100px;
}

.interview-container p{
  font-size: 22px;
  text-align: center;
  color: var(--secondary-color);
  line-height: 2;
}

.interview-text{
  margin-bottom: 122px;
}

.interview-wrap{
  display: flex;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 90px;
}

.interview-card{
  max-width: 515px;
  position: relative;
}

.interview-card img{
  width: 100%;
  max-width: 515px;
  border-radius: 40px;
  object-fit: cover;
}

.interview-card-flex{
  display: flex;
  align-items: end;
  margin: 0 40px 0 16px;
}

.interview-card-flex p{
  text-align: left;
}

.interview-lead{
  width: 60%;
}

.interview-lead p{
  font-size: clamp(1.125rem, 0.763rem + 5.8vw, 1.625rem);
  margin-bottom: 22px;
  line-height: 2;
}

.interview-name{
  width: 40%;
  margin-bottom: 20px;
}

.interview-name p{
  font-size: clamp(2rem, -0.174rem + 34.78vw, 5rem);
  text-align: center;
}

.minus-m{
  margin-top: -100px;
}

.interview-profile{
  line-height: 2;
  margin-right: 78px;
}

.interview-profile p{
  font-size: 16px;
}

.read-more-interview{
  margin-right: auto;
  margin-left: 0;
}

.more-button-interview{
  font-size: 16px;
}

.interview-num{
  position: absolute;
  top: -9%;
  right: -10%;
  transform: translateX(-50%);
  width: 128px;
  height: 128px;
  border-radius: 50%;
  font-family: var(--primary-en-font);
  border: 1px solid var(--secondary-color);
}

.num-line-interview{
  width: 20px;
  text-align: center;
  border: 1px solid var(--secondary-color);
  position: absolute;
  border-radius: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
}

.num-line-interview::before{
  content: 'INTER VIEW';
  position: absolute;
  top: -30px;
  left: -26px;
  display: block;
  color: var(--secondary-color);
  text-align: center;
  font-size: 12px;
  width: max-content;
}

.num-line-interview::after{
  content: '01';
  display: block;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--secondary-color);
  font-size: 34px;
}

.num-2::after{
  content: '02';
}

.interview-content-more{
  display: block;
  width: 200px;
  height: 68px;
  text-align: center;
  line-height: 68px;
  margin: 0 auto;
  background-color: var(--secondary-color);
  border-radius: 34px;
  color: var(--font-color);
}


/* ーーークロストークセクションーーー */

.crosstalk-sec{
  background-image: url('../images/crosstalk-img.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--font-color);
  padding-bottom: 72px;
}

.crosstalk-sec-lead{
  width: fit-content;
  color: var(--secondary-color);
  font-size: 56px;
  margin-bottom: 140px;
}

.crosstalk-sec-lead::after{
  content: 'クロストーク';
  display: block;
  color: var(--primary-color);
  font-size: 0.4em;
  margin-top: 14px;
}

.crosstalk-sec-content{
  margin-bottom: 60px;
  text-align: center;
}

.crosstalk-sec-title{
  position: relative;
  z-index: 1;
}

.crosstalk-sec-title img{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.crosstalk-sec-content h2{
  font-size: clamp(1.875rem, 1.106rem + 3.85vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 46px;
}

.crosstalk-sec-content p{
  font-size: clamp(1rem, 0.949rem + 0.26vw, 1.125rem);
  margin-bottom: 60px;
  line-height: 2;
}

.crosstalk-link{
  width: fit-content;
  margin: 0 auto;
}


/* ーーーブランド一覧セクションーーー */

.brand-sec-lead{
  width: fit-content;
  color: var(--secondary-color);
  font-size: 56px;
}

.brand-sec-lead::after{
  content: 'ブランド一覧';
  display: block;
  color: var(--primary-color);
  font-size: 0.4em;
  margin-top: 14px;
}

.brand-sec-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  gap: 50px;
}

.brand-sec-flex p{
  text-align: left;
}

.brand-sec-text{
  font-size: clamp(0.875rem, 0.677rem + 0.83vw, 1.25rem);
  line-height: 2;
  width: 50%;
}

@media screen and (min-width: 1100px){
  .brand-sec-text{
    font-size: 20px;
  }
}


.brand-name{
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 24px;
}

.brand-card-slider hr{
  width: 100px;
  border: 1px solid #707070;
  margin-bottom: 26px;
}

.brand-content{
  font-size: 15px;
  line-height: 2;
  margin-top: 24px;
}



/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:100%;
  margin: 0 auto 70px;
  position: relative;
}

.slider p{
  text-align:left;
  padding: 0;
}

.slider img {
  width:100%;/*スライダー内の画像を横幅100%に*/
  height:auto;
  border-radius: 20px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
  margin:0 15px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
  display: block;
  top: auto;
  bottom: -138px;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  width: 68px;
  height: 68px;
  z-index: 1;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: 50%;
  margin-left: -200px;
  transform:  none;
}

.slick-next {/*次へ矢印の位置と形状*/
  right: 50%;
  margin-right: -200px;
  transform:  none;
}

/* .slick-prev::before{
  content: '';
  display: block;
  border-top: 5px solid var(--secondary-color);
  border-right: 5px solid var(--secondary-color);
  height: 15px;
  width: 15px;
  position: absolute;
  top: -32px;
  left: -25px;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  transform: rotate(45deg);
  z-index: -1;
  background-color: #fff;
}

.slick-next::before{
  content: '';
  display: block;
  width: 68px;
  height: 68px;
  position: absolute;
  top: -32px;
  left: -25px;
  border-radius: 50%;
  border: 5px solid var(--secondary-color);
  transform: rotate(45deg);
  z-index: 9;
} */

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align:center;
  margin:40px 0 0 0;
}

.slick-dots li {
  display:inline-block;
  margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}



/* ーーーFAQセクションーーー */

.faq-sec{
  background-color: var(--secondary-color);
}

.faq-sec-lead{
  width: fit-content;
  color:var(--font-color);
  font-size: 56px;
  margin-bottom: 126px;
}

.faq-sec-lead::after{
  content: 'よくある質問';
  display: block;
  color: var(--primary-color);
  font-size: 0.4em;
  margin-top: 14px;
}



/*アコーディオン全体*/

.accordion-area{
  list-style: none;
  margin:0 auto;
}

/* .accordion-area li{
  margin: 10px 0;
} */


.accordion-area li{
  border-top: 1px solid #fff;
}

.accordion-area li:nth-last-of-type(1){
  border-bottom: 1px solid #fff;
}

/*アコーディオンタイトル*/


.question-style{
  font-size: 40px;
  font-family: var(--primary-en-font);
  margin-right: 30px;
}

.title {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;/*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size:24px;
  color: #fff;
  font-weight: normal;
  padding: 3% 3% 3% 50px;
  transition: all .5s ease;
  z-index: 10;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
  position: absolute;
  content:'';
  width: 15px;
  height: 2px;
  background-color: #fff;
  
}
.title::before{
  top:48%;
  right: 15px;
  transform: rotate(0deg);
  
}
.title::after{    
  top:48%;
  right: 15px;
  transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.title.close::before{
transform: rotate(45deg);
}

.title.close::after{
transform: rotate(-45deg);
}

.title.close{
  background-color: #fff;
  color: var(--secondary-color);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;/*はじめは非表示*/
  background: #fff;
  padding: 0% 12% 4%;
}

.box p{
  font-size: 18px;
  line-height: 2;
  text-align: left;
  color: var(--secondary-color);
}


/* ーーー最後のリードセクションーーー */

.final-lead-sec{
  position: relative;
  overflow: hidden;
  height: 100vh;
  padding: 0;
}

.final-lead-position{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.final-lead-sec p{
  font-size: clamp(0.75rem, 0.684rem + 0.28vw, 0.875rem);
  margin-bottom: 74px;
  line-height: 1.85;
  font-weight: 900;
}

.final-lead-jp h2{
  font-size: clamp(2.5rem, 6vw, 5.625rem);
  font-weight: 700;
  line-height: 1.33;
}

.back-brush-img1{
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  z-index: -1;
}

.back-brush-img2{
  position: absolute;
  top: -30%;
  left: 0%;
  /* transform: translate(-50%, -50%); */
  width: 50%;
  z-index: -1;
}


/* ーーーフッターーーー */

.footer-content{
  background-color: var(--secondary-color);
  padding: 100px 0;
}


.footer-menu{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.footer-menu a{
  color: var(--font-color);
}

.footer-column{
  font-size: clamp(18px, 2.5vw, 24px);
}
.footer-column-head{
  margin-bottom: 36px;
}

.footer-column li{
  margin-bottom: 20px;
}

.footer-menu-list{
  font-size: 0.75em;
  margin-right: 10px;
}

.footer-rogo{
  display: block;
  width: 200px;
  margin-bottom: 100px;
}

.footer-rogo img{
  width: 100%;
}

.privacy-area{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 24px;
}

.privacy-area a{
  color: var(--font-color);
}

.footer-other{
  width: 100%;
}

.footer-other p{
  text-align: center;
  font-size: 12px;
  padding: 8px 0;
}


.title_block{
  margin-top: 100px;
  display: flex;
  align-items: center;
}

.privacy-title{
  width: 100%;
  min-width: 300px;
  max-width: 500px;
  font-size: 24px;
}

@media screen and (max-width: 1100px){
  .privacy-title{
    font-size: 20px;
  }
}
@media screen and (max-width: 768px){
    .privacy-title{
      font-size: 16px;
}
}

.privacy-contents-area{
  padding: 60px 0 100px;
  text-align: left;
  margin-top: 24px;
}

.privacy-contents-block p{
  line-height: 2.5;
  text-align: left;
  margin: 24px 0;
}

.privacy-contents-block h2{
  font-size: 24px;
  margin: 54px 0;
  text-align: left;
}

.privacy-contents-block li{
  line-height: 2.5;
}