@charset "utf-8";

body{
	background-color: #272727;
	font-family: "Noto Sans JP", sans-serif;
}

/*---- ファーストビュー ----*/
.fv {
  position: relative;
  width: 100%;
  height: 700px; /* ← 高さ固定に変更 */
  background: #272727;
  overflow: hidden;
  padding: 40px 0;
}
.fv-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #272727;
  z-index: 1;
}

.fv-img {
  position: relative;
  width: 1280px;
  height: 100%;
  object-fit: cover;
  margin: 0 auto;
  display: block;
  z-index: 2;
  filter: blur(10px);      /* 最初はぼかす */
  opacity: 0;              /* 最初は透明 */
  transition: filter 1.5s ease-out, opacity 1.5s ease-out;
}

/* 表示されたらくっきり */
.fv-img.is-visible {
  filter: blur(0);
  opacity: 1;
}

.fv-text {
  position: absolute;
  top: 50%;
  padding: 0 80px;
  transform: translateY(-50%);
  color: #fff;
  z-index: 3;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

.fv-text h1 {
  font-family: 'Anton', sans-serif;
  font-size: 60px;
  letter-spacing: 4px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.fv-text p {
  font-size: 30px;
  font-weight: 600;
}


/* pタグに少し遅延を入れる */
.smooth.delay {
  transition-delay: 0.6s;
}

@media (max-width: 1380px) {
  .fv-text {
    padding: 0 80px;
	left: 0;
  }
}

@media (max-width: 768px) {
  .fv {
    height: 520px;
	padding:0 0 40px 0;
  }
  .fv-inner {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .fv-bg {
    width: 20%;
  } 
  .fv-img {
    width: 80%;
    height: 100%;
    margin: 0;
    object-fit: cover;
    margin-left: 20%;
  }
  .fv-text {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    padding-left: 0;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
  }
  .fv-text h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .fv-text p {
    font-size: 16px;
    line-height: 1.5;
  }
 }

@media (max-width: 480px) {
  .fv-text {
    padding: 0 10px;
  }
  .fv-text h1 {
    font-size: 20px;
    letter-spacing: 1.4px;
    line-height: 20px;
  }
  .fv-text p {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.7px; 
  }
}

  

/*---- アニメーション ----*/
.smooth {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(0.37, 0, 0.63, 1);
}

.smooth.is-animated {
  clip-path: inset(0);
}

/* pタグに少し遅延を入れる */
.smooth.delay {
  transition-delay: 0.6s;
}


/*タイトルの文字*/

.title {
  padding: 3px 0;
}

.title-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}
.title h2 {
  font-family: 'Anton', sans-serif;
  font-size: 40px;
  color: #FFFFFF;
  letter-spacing: 1.92px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.title h2 span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1px;
  margin-top: 8px;
}



/*レスポンシブ*/


@media screen and (max-width: 480px) {
.title h2 {
   font-size: 24px;
   letter-spacing: 0.5px;
   line-height: 1.3;
margin-bottom: 24px;
 }
.title h2 span {
   font-size: 12px;
   letter-spacing: 0px;
   margin-top: 4px;
	}
	
.title-inner {
   padding: 0 20px;
	}
}


/*アコーディオンメニューのCSS⇩*/

p{
	font-family: "Noto Sans JP", sans-serif;
}


.list li{
	font-family: "Noto Sans JP", sans-serif;
}

.container{
	display: flex;
    align-items: center;
	flex-direction: column;
	padding-bottom: 100px;
}


.accordion-menu {
    max-width: 1100px;
	margin: auto;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
	background-color: #272727;
}


/* summary の横並びはそのまま */
.accordion-menu summary {
    display: flex;
    justify-content: center; /* 全体を中央寄せ */
    align-items: center;
    padding: 1em 2em;
    border-left: 5px solid #000;
    background-color: #000;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
	transition: .5s;
}

.accordion-menu summary::-webkit-details-marker {
    display: none;
}

.accordion-menu p{
	width: 700px;
	text-align: center;
	font-size: 18px;
}


.accordion-menu li {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #605c5c;
    transition: transform .5s, opacity .5s;
	font-size: 18px;
	color: #fff;
}

.accordion-menu[open] li {
    transform: none;
    opacity: 1;
}

.list{
  column-count: 3;
}


.accordion-menu {
    max-width: 1100px;
}

.accordion-menu:not([open]) {
    margin-bottom: 7px;
}


.line-left{
	width: 1100px;
	height: 50%;
	border-top: 1px solid #fff;
	align-self: center;
	margin-right: auto;
}

.line-right{
	width: 1100px;
	height: 50%;
	border-top: 1px solid #fff;
	align-self: center;
	margin-left: auto;
}

/* ▼ 矢印は p::after に付ける（文字の隣） */
.accordion-menu summary p::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 10px; /* 文字との間隔 */
    border-bottom: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* ▼ 開いたときに回転 */
.accordion-menu[open] summary p::after {
    transform: rotate(225deg);
}



/* タブレットサイズ */
@media (max-width: 1110px) {
  .accordion-menu {
    width: 95%; /* max-width:1100pxはそのまま残るけど、狭い時は%優先 */
  }
  .accordion-menu p{
	font-size: 14px;
}
}

@media (max-width: 840px) {
  .container{
		padding-bottom: 70px; /*fotterのカラムが2になる幅*/
	}
}


@media (max-width: 768px) {
	
  .accordion-menu {
    width: 90%; /* max-width:1100pxはそのまま残るけど、狭い時は%優先 */
  }
  .accordion-menu p {
    width: 100%; /* 600px固定を解除して親幅に合わせる */
    font-size: 14px;
  }
  .list {
    column-count: 2;
  }
  .line-left,
  .line-right {
    width: 90%;
  }
	
  .br-sp{
		display: block;/*表示する*/
	}
	
  .accordion-menu summary p.other-areas::after {
		vertical-align: top;
	}
}

@media (min-width: 769px){
	.br-sp{
		display: none;/*表示しない*/
	}
}

/* スマホサイズ */
@media (max-width: 480px) {
	
  .container{
		padding-bottom: 20px;
	}

  .accordion-menu {
    width: 95%;
  }
	
  .accordion-menu li{
		font-size: 12px;
	}
  .accordion-menu p {
    font-size: 12px;
  }
  .list {
    column-count: 1;
  }
  .accordion-menu summary {
    padding: 0.8em;
    font-size: 14px;
  }
  .line-left,
  .line-right {
    width: 95%;
  }
}