@charset "UTF-8";
/* CSS Document */
/* ---------- about ----------*/
.about {
  position: relative;
  margin-top: 100px;
  text-align: left;
}
.about-back {
  padding-top: 100px;
  overflow: hidden;
  height: 70px;
  margin-bottom: -60px;
}
.about-back h1 {
  font-family: Impact;
  font-size: 130px;
  color: #2c2c2c;
  opacity: 0.1;
}
.about-text h2 {
  font-family: Impact;
  font-size: 60px;
  padding-left: 20px;
  padding-bottom: 20px;
}
.about-text a {
  color: #2c2c2c;
}
.about-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.about-left-line {
  display: none;
}
.about-second-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 50px;
}
.about-text h3 {
  font-size: 1.8rem;
  display: inline-block;
}
.about-right-line {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 2px;
  background-color: #2c2c2c;
}
.about-text1 p {
  position: relative;
  left: 5%;
  width: 70%;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: left;
  margin: 40px 0;
}
.about-text2 p {
  position: relative;
  left: 13%;
  width: 80%;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: left;
  margin-bottom: 40px;
}
.about-text3 p {
  position: relative;
  left: 5%;
  width: 90%;
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: left;
}
@media(min-width:769px){
  .about-back {
    padding-top: 400px;
    height: 120px;
    margin-bottom: -100px;
  }
  .about-back h1 {
    font-size: 25rem;
  }
  .about-text h2 {
    font-size: 10rem;
    padding-left: 100px;
    display: inline-block;
    padding-bottom: 60px;
  }
  .about-left-line {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10%;
    height: 4px;
    background-color: #2c2c2c;
  }
  .about-second-title {
    padding-left: 14%;
  }
  .about-text h3 {
    font-size: 2.4rem;
  }
  .about-right-line {
    width: 70%;
    height: 4px;
  }
  .about-text1{
    margin-top: 60px;
  }
  .about-text1 p {
    font-size: 2.4rem;
    font-weight: 600;
    width: 80%;
    line-height: 4rem;
  }
  .about-text2 p {
    font-size: 2.4rem;
    line-height: 4rem;
  }
  .about-text3 p {
    font-size: 2.4rem;
    line-height: 4rem;
  }
}
/* ---------- team-member ----------*/
.team {
  background-image: url("../image/teamback.jpg");
  background-size: cover;
  background-color: rgba(255,255,255,0.4);
  background-blend-mode: lighten;
  background-position: center;
  position: relative;
  margin-top: 100px;
  padding-bottom: 20px;
}
.team-back {
  width: 100%;
  padding-top: 250px;
  overflow: hidden;
  height: 70px;
  margin-bottom: -140px;
  position: absolute;
  top: -16%;
  white-space: nowrap;
}
.team-back h1 {
  width: 100%;
  font-family: Impact;
  font-size: 130px;
  color: #2c2c2c;
  opacity: 0.1;
}
.team-text {
  position: relative;
}
.team-text a {
  color: #2c2c2c;
}
.team-text h2 {
  font-family: Impact;
  font-size: 60px;
  text-align: right;
  padding-right: 20px;
  padding-bottom: 20px;
}
.team-title {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.team-left-line {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 2px;
  background-color: black;
}
.team-second-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 50px;
}
.team-text h3 {
  font-size: 1.8rem;
  text-align: right;
  position: relative;
  padding-right: 40px;
}
.team-right-line {
  display: none;
}
/* ----- アコーディオン全体 ----- */
.accordion-area{
  list-style: none;
  width: 73%;
  margin:20px auto;
}
.accordion-area li{
  margin-bottom: 20px;
}
.accordion-title {
  position: relative;
}
.accordion-title img {
  width:73vw;
  height:200px;
  object-fit: cover;
}
.accordion-title h4 {
  font-family: Impact;
  font-size: 2.4rem;
  text-align: left;
  margin-top: -5px;
  margin-bottom: 5px;
}
.accordion-title h5 {
  font-family: Impact;
  font-size: 3.6rem;
  text-align: left;
}
/* アイコンの＋と× */
.accordion-title h5::before,
.accordion-title h5::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #2c2c2c;
}
.accordion-title h5::before{
    bottom: 24px;
    right: 12px;
    transform: rotate(0deg);
}
.accordion-title h5::after{    
    bottom: 24px;
    right: 12px;
    transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.accordion-title.close h5::before{
  transform: rotate(45deg);
  }
  .accordion-title.close h5::after{
  transform: rotate(-45deg);
  }
/*アコーディオンで現れるエリア*/
.accordion-box {
  display: none;/*はじめは非表示*/
  background: #fff;
  padding: 80px 10px 10px;
  margin-top: -60px;
}
.accordion-box p {
  font-size: 1.4rem;
  text-align: left;
  line-height: 2rem;
  letter-spacing: -0.1rem;
}
/*　画像の縮小＋テキスト出現　*/
.zoomOutText{/*背景色とテキストの基点となる位置を定義*/
	position: relative;
  width: 70%;
  margin: 0 auto 20px;
}
.zoomOutText span.mask{
	position: relative;
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	display: block;/*画像をくくるspanタグをブロック要素にする*/
  line-height: 0;/*行の高さを0にする*/
  overflow:hidden;/*拡大してはみ出る要素を隠す*/
}
.zoomOutText:hover span.mask::before{/*hoverした時の変化*/
	content:"";
	position: absolute;
	z-index:2;
	top:10px;
	left:10px;
	width: calc(100% - 20px);
    height: calc(100% - 20px);
	background:rgba(0,0,0,0.5);/*背景色*/
}
.zoomOutText img {
  width: 100%;
  aspect-ratio: 0.9/1;
  object-fit: cover;
	transform: scale(1.2);
	filter: blur(0);
	transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}
.zoomOutText:hover img{/*hoverした時の変化*/
	transform: scale(1);/*縮小の値を変更したい場合はこの数値を変更*/
	filter: blur(2px);/*ぼかし具合を変更したい場合はこの数値を変更*/
}
.zoomOutText span.cap{
	opacity:0;
	transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
	position: absolute;
	z-index:3;/*テキストを前面に出す*/
	top: 50%;
  left: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
  line-height: 1;
  text-align: left;
  width: 80%;
}
.zoomOutText span.cap h4 {
  font-family: Impact;
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.zoomOutText span.cap h5 {
  font-family: Impact;
  font-size: 3.6rem;
}
.zoomOutText span.cap h6 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.zoomOutText span.cap p {
  font-size: 1.4rem;
}
.zoomOutText:hover span.cap{/*hoverした時の変化*/
	opacity:1;
}
@media(min-width:769px){
  .team {
    margin-top: 240px;
    padding-bottom: 60px;
  }
  .team-back {
    height: 140px;
    margin-bottom: -120px;
    top: -21%;
  }
  .team-back h1 {
    font-size: 25rem;
  }
  .team-text h2 {
    font-size: 10rem;
    margin-bottom: 40px;
    padding-right: 100px;
  }
  .team-left-line {
    width: 65%;
    height: 4px;
  }
  .team-second-title {
    padding-right: 14%;
  }
  .team-right-line {
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 13%;
    height: 4px;
    background-color: #2c2c2c;
  }
  .team-text h3 {
    font-size: 2.4rem;
  } 
  .accordion-area {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 60px auto;
  }
  .accordion-area li {
    padding: 0 40px;
  }
  .accordion-title img {
    height: 350px;
    width: 35vw;
  }
  .teammember {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin: 0 auto;
    width: 70%;
    flex-direction: row;
  }
  .zoomOutText {
    margin: 0 20px 20px;
  }
}
/* ---------- lebel ---------- */
.lebel {
  position: relative;
  margin-top: 60px;
}
.lebel-back {
  padding-top: 60px;
  text-align: left;
  overflow: hidden;
  height: 70px;
  margin-bottom: -60px;
}
.lebel-back h1 {
  font-family: Impact;
  font-size: 130px;
  color: #2c2c2c;
  opacity: 0.1;
}
.lebel-text {
  text-align: left;
}
.lebel-text h2 {
  font-family: Impact;
  font-size: 60px;
  text-align: left;
  padding-left: 20px;
  padding-bottom: 20px;
}
.lebel-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.lebel-left-line {
  display: none;
}
.lebel-second-title {
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 50px;
}
.lebel-text h3 {
  font-size: 1.8rem;
  display: inline-block;
}
.lebel-right-line {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  height: 2px;
  background-color: #2c2c2c;
}
.lebel-text h4 {
  font-family: Impact;
  font-size: 4.8rem;
  line-height: 4rem;
  text-align: left;
  margin: 20px 20px 10px;
}
.lebel-text p {
  font-size: 1.6rem;
  margin: 0 20px 20px;
}
.lebel-group1 {
  background-color: #E4DDDB;
  border-radius: 4%;
  margin: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
}
.lebel-group1 h1 {
  font-family: Impact;
  font-size: 8vw;
  text-align: left;
  margin-bottom: 20px;
}
.lebel-group1-text {
  display: flex;
  justify-content: space-between;
}
.lebel-group1-text p {
  font-size: 1.4rem; 
  text-align: left;
  position: relative;
}
.lebel-group1-text img {
  width: 40vw;
}
.lebel-group2 {
  background-color: #E4DDDB;
  border-radius: 4%;
  margin: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
}
.lebel-group2 h1 {
  font-family: Impact;
  font-size: 8vw;
  text-align: left;
  margin-bottom: 20px;
}
.lebel-group2-text {
  display: flex;
  justify-content: space-between;
}
.lebel-group2-text p {
  font-size: 1.4rem; 
  text-align: left;
  line-height: 1.2em;
  position: relative;
}
.lebel-group2-text img {
  width: 40vw;
}
@media(min-width:480px){
  .lebel-spbox-img img {
    width: 40vw;
  }
}
@media(min-width:769px){
  .lebel-back {
    padding-top: 160px;
    height: 140px;
    margin-bottom: -120px;
  }
  .lebel-back h1 {
    font-size: 25rem;
  }
  .lebel-text h2 {
    font-size: 10rem;
    padding-left: 100px;
    display: inline-block;
  }
  .lebel-text h2 {
    font-size: 10rem;
    padding-left: 100px;
    display: inline-block;
    padding-bottom: 60px;
  }
  .lebel-left-line {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 10%;
    height: 4px;
    background-color: #2c2c2c;
  }
  .lebel-second-title {
    padding-left: 14%;
  }
  .lebel-text h3 {
    font-size: 2.4rem;
  }
  .lebel-right-line {
    width: 70%;
    height: 4px;
  }
  .lebel-text h4 {
    font-size: 9rem;
    line-height: 8rem;
    margin: 40px 100px;
  }
  .lebel-text p {
    font-size: 2.8rem;
    margin: 0 100px 40px;
    letter-spacing: -0.1em;
  }
  .lebel-text p br {
    display: none;
  }
  .lebel-spbox {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .lebel-group1 {
    width: 60%;
    margin-left: 100px;
    padding: 60px;
    position: relative;
    margin-bottom: 60px;
  }
  .lebel-group1 h1 {
    font-size: 6vw;
    margin-bottom: 40px;
  }
  .lebel-group1-text p {
    font-size: 2.4rem;
  }
  .lebel-group2 {
    width: 60%;
    padding: 60px;
    position: relative;
    margin-left: 25%;
    margin-bottom: 60px;
  }
  .lebel-group2 h1 {
    font-size: 6vw;
    margin-bottom: 40px;
  }
  .lebel-group2-text p {
    font-size: 2.4rem;
  }
  .lebel-spbox-img {
    max-width: 288px;
  }
  .lebel-spbox-img img {
    width: 100%;
  }
}
/* ---------- sns ---------- */
.lebel-snsbtniti::before {
  content: "";
  display: block;
  width: 50%;
  height: 3px;
  background-color: #2c2c2c; /* 線の色を指定 */
  position: absolute;
  top: -50%;
}
.lebel-sns-box1,.lebel-sns-box2 {
  margin-top: 30px;
  position: relative;
}
.lebel-snsbtniti {
  display: flex;
  justify-content: center;
  gap: 3%;
  list-style: none;
}
.lebel-snsbtniti li img {
  width: 20px;
  border-radius: 50%;
}
  @media(min-width:769px){
    .lebel-snsbtniti::before {
      top: -100%;
      width: 70%;
    }
    .lebel-snsbtniti {
      justify-content: center;
    }
    .lebel-snsbtniti li img {
      width: 30px;
      border-radius: 50%;
    }
  }