
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: sans-serif;
  background: #fff;
}
/* loading */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


/* top */
.top .catchcopy01,
.top .catchcopy02 {
    position: absolute;
    z-index: 10;
    padding: 10px 20px;
    font-weight: bold;
    white-space: nowrap;
}
.top .slide-area .catch {
    -webkit-transform: skew(-25deg);
    transform: skew(-25deg);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px 20px;
    border: 2px solid #000;
    display: inline-block;
}
.top .catchcopy01 {
    top: 37%;
    left: 25%;
    transform: translateX(-50%);
}
.top .catchcopy02 {
    top: 49%;
    left: 35%;
    transform: translateX(-50%);
}

.top .slide-area {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* スクロールは既存のままでOK */
.top .slider-track{
  display:flex;
  width:calc(100% * 2);
  animation:scroll 40s linear infinite;
}
.top .slider-wrapper{
  display:flex;
  gap:25px;
  padding:25px 0;
}
.top .parent {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: repeat(10, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    height: 90vh;
    padding-right: 20px;
}
.top .slide-grid img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
  box-shadow:0 0 30px #c3c3c3;
}

.top .div1 { grid-area: 2 / 1 / 7 / 6; }
.top .div2 { grid-area: 7 / 1 / 11 / 3; }
.top .div3 { grid-area: 7 / 3 / 11 / 6; }
.top .div4 { grid-area: 1 / 6 / 6 / 9; }
.top .div5 { grid-area: 6 / 6 / 11 / 9; }
.top .div6 { grid-area: 1 / 9 / 11 / 12; }

/* スクロールアニメ（そのまま） */
@keyframes scroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-50%); }
}

/* SP：2列×3行に簡略化（必要なら画像数・配置調整） */
@media (max-width: 768px){
  .top .slide-grid{
    grid-template-columns:repeat(2, 1fr);
    grid-template-rows:repeat(3, 1fr);
  }
  .top .div1 { grid-area: 1 / 1 / 2 / 3; }
  .top .div3 { grid-area: 2 / 1 / 3 / 2; }
  .top .div6 { grid-area: 2 / 2 / 4 / 3; }
  .top .div4 { grid-area: 3 / 1 / 4 / 2; }
  .top .div5 { display:none; }           /* モバイルは1枚削減など */
  .top .div2 { grid-area: 1 / 1 / 2 / 3; display:none; }
}


/* people slide */
.section01 {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}
.section01 .slide-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    transition: background-color 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    border-radius: 200px;
}
.section01 .slide-wrapper .slide_ttl {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section01 .slide-wrapper .slide_ttl p {}
.section01 .slide-wrapper .slide_ttl .ttl {
    background-color: #fff;
    border: 1px solid #000;
    padding: 1px 6px;
    font-weight: 600;
    letter-spacing: 1px;
}
.section01 .swiper {
    width: 100%;
    height: 100%;
}
.section01 .swiper-slide {
    width: 100%;
    height: auto;
    border-radius: 20px;
    color: #fff;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}
.section01 .swiper-slide img {
    width: 100%;
    border-radius: 10px;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section01 .swiper-slide .slide-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  border-radius: 10px;
  z-index: 1;
}

.section01 .swiper-slide .center-img {
  opacity: 0;
  z-index: 2;
}

.section01 .swiper-slide .side-img {
  opacity: 1;
  z-index: 1;
}
/* アクティブ時に切り替え */
.swiper-slide.swiper-slide-active .center-img {
  opacity: 1;
}

.swiper-slide.swiper-slide-active .side-img {
  opacity: 0;
}
/* ボタンを右上にまとめて配置 */
.section01 .nav-buttons {
  position: absolute;
  top: 10%;
  right: 8%;
  display: flex;
  flex-direction: row;
  z-index: 10;
}
.swiper-button-next:after, .swiper-button-prev:after {
  display: none;
}
.section01 .swiper-button-prev, .section01 .swiper-button-next {
    flex-direction: column;
    font-size: 14px;
    gap: 2px;
}
.section01 .swiper-button-prev, .section01 .swiper-button-next span {
  color: #000;
}
.section01 .swiper-button-prev {
  position: relative;
}
.section01 .swiper-button-next {
  position: relative;
}
.section01 .swiper-button-prev,
.section01 .swiper-button-next {
  width: 120px;
  height: 120px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section01 .swiper-button-prev img, .section01 .swiper-button-next img {
    width: 55px;
    height: auto;
}
.section01 .swiper-slide {
  transform: scale(0.8);
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.section01 .swiper-slide.swiper-slide-active {
    transform: scale(1.3);
    opacity: 1;
}
.section01 .swiper-slide .slide-number {
    position: absolute;
    top: 25%;
    left: 10%;
    font-size: 60px;
    font-weight: bold;
    text-shadow: -1px -1px 0 black,
     1px -1px 0 black,
    -1px  1px 0 black,
     1px  1px 0 black;
    z-index: 5;
}
/* テキストボックス：中央、左下、右上 */
.section01 .swiper-slide .text-box {
  position: absolute;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  z-index: 2;
}
.section01 .swiper-slide .text-center {
    top: 56%;
    left: 35%;
    transform: translate(-50%, -50%);
    height: 165px;
}
.section01 .swiper-slide .text-center p {
    writing-mode: vertical-rl;
    color: #000;
    height: 100%;
    display: inline-block;
    /* height: 165px; */
}
.section01 .swiper-slide .text-topleft {
    right: 0%;
    top: 30%;
    z-index: 0;
}
.section01 .swiper-slide .text-bottomleft {
    bottom: 22%;
    left: 10%;
    z-index: 3;
}
.section01 .swiper-slide.swiper-slide-active .text-bottomleft {
    bottom: 12%;
    left: 10%;
    z-index: 3;
}
.section01 .swiper-slide .text-bottomleft .ttl {
    background-color: #000;
    margin-bottom: 2px;
    display: inline-block;
    padding: 3px 5px;
    font-size: 10px;
}
.text-bottomleft ul {
  display: none;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* 中央スライド時のみ表示 */
.swiper-slide.swiper-slide-active .text-bottomleft ul {
  display: block;
  transform: translateY(0);
}
.section01 .swiper-slide .text-bottomleft ul li {
    color: #000;
}
.section01 .swiper-slide .text-bottomleft ul li span {
    background-color: #fff;
    padding: 1px 3px;
    display: inline-block;
    letter-spacing: 1px;
    font-weight: 800;
    margin-bottom: 0px;
    border: 1px solid #000;
}
/* slide-wrapper 左上ボタン */
.section01 .custom-link-btn {
    position: absolute;
    top: 10%;
    left: 10%;
    z-index: 20;
    color: #fff;
    padding: 10px 20px;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transform: skewY(-8deg);
}

.section01 .circle-name {
  padding: 5%;
}

.section01 .block {
    width: 75px;
    height: 75px;
    margin: auto;
}

.section01 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section01 .circleText__circle {
  fill: none;
}
.section01 .circleText__text {
    fill: #000;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: bold;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section01 .swiper {
}

@media (max-width: 1024px) {

  .section01 .slide-wrapper {
    height: 520px;             /* 少し低めに */
    border-radius: 24px;       /* 丸みを抑える */
    padding: 0 24px;           /* 左右に余白をつけてチラ見えを確保 */
  }

  /* アクティブ時の拡大率が強すぎると切れるので弱めに */
  .section01 .swiper-slide {
    transform: scale(0.92);
    opacity: 0.7;
  }
  .section01 .swiper-slide.swiper-slide-active {
    transform: scale(1.04);
    opacity: 1;
  }

  /* 画像はチラ見えを邪魔しないように */
  .section01 .swiper-slide img.slide-img {
    border-radius: 8px;
  }

  /* テキスト位置の微調整（必要に応じて） */
  .section01 .swiper-slide .text-center {
    top: 55%;
    left: 40%;
  }
  .section01 .swiper-slide .text-bottomleft {
    bottom: 16%;
    left: 8%;
  }
  .section01 .swiper-slide.swiper-slide-active .text-bottomleft {
    bottom: 10%;
    left: 8%;
  }

  /* ナビゲーションの位置・大きさも調整 */
  .section01 .nav-buttons {
    top: 6%;
    right: 6%;
    gap: 8px;
  }
  .section01 .swiper-button-prev,
  .section01 .swiper-button-next {
    width: 84px;
    height: 84px;
  }
  .section01 .swiper-button-prev img,
  .section01 .swiper-button-next img {
    width: 40px;
  }

  /* 左上のVIEW MOREボタンが被る場合の調整 */
  .section01 .custom-link-btn {
    top: 6%;
    left: 6%;
    padding: 8px 14px;
    font-size: 14px;
  }
}
/* section02 */
.section02 {
    padding-top: 120px;
}
.section02 .grid-menu {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    font-family: sans-serif;
    text-align: center;
    border-top: 8px solid #000;
    border-bottom: 8px solid #000;
}
.section02 .box {
    color: #000;
    padding: 1em;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    gap: 5px;
    border: 2px solid #000;
    width: 100%;
}
.section02 .box {
    transition: filter .3s ease;
}
.section02 .box h2,
.section02 .box img {
    transition: transform .3s ease;
    transform: rotateY(0deg);
}
.section02 .box:hover h2 {
    transform: rotateY(-25deg);
}
.section02 .box:hover img {
    transform: rotateY(-25deg);
}
.section02 .box:hover {
    filter: drop-shadow(2px 4px 6px black);
}
.section02 .box img {
    width: 120px;
    height: auto;
}
.section02 .box .menu_ttl {
    font-weight: 900;
    margin: 0.2em 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 65%;
    line-height: 1;
    letter-spacing: 1px;
    font-size: clamp(2.513rem, -3.503rem + 7.89vw, 3.75rem);
}
.section02 .box span {
    background: #fff;
    padding: 0.1em 0.5em;
    color: #000;
    border: 1px solid #000;
}

/* 背景色（画像に合わせて再現） */
.section02 .concept { background: url(../img/top/icons-back-01.webp) center / cover no-repeat; }
.section02 .story { background: url(../img/top/icons-back-02.webp) center / cover no-repeat; }
.section02 .faq { background: url(../img/top/icons-back-03.webp) center / cover no-repeat; }
.section02 .people { background: url(../img/top/icons-back-04.webp) center / cover no-repeat; }
.section02 .vision { background: url(../img/top/icons-back-05.webp) center / cover no-repeat; }
.section02 .guideline { background: url(../img/top/icons-back-06.webp) center / cover no-repeat; }
.section02 .blog { background: url(../img/top/icons-back-07.webp) center / cover no-repeat; }
.section02 .numberof { background: url(../img/top/icons-back-08.webp) center / cover no-repeat; }
.section02 .careerpath { background: url(../img/top/icons-back-09.webp) center / cover no-repeat; }


/* section03 */
.section03 {
    margin-top: 150px;
    padding-bottom: 135px;
}
.section03 .circle-name {
  padding: 5%;
}
.section03 .block {
    width: 120px;
    height: 120px;
    margin: auto;
    opacity: 1;
}
.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.circleText__circle {
  fill: none;
}
.section03 .circleText__text {
  fill: var(--pink);
  font-size: 20px;
  letter-spacing: 0.05em;
}
.section03 .box {
}
.section03 .box:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.section03 .box:nth-child(1) .ttl {}
.section03 .box:nth-child(1) .ex {
    margin-top: 65px;
    width: 80%;
}
.section03 .box:nth-child(1) .buttons {
    margin-top: 50px;
}
.section03 .box:nth-child(2) {
  position: relative;
}
.section03 .box:nth-child(2) .img-box {
    position: relative;
    width: 75%;
    margin: 0 auto;
}
.section03 .box:nth-child(2) .img-box img {
    box-shadow: 0 0 13px #575757;
    position: absolute;
    border-radius: 15px;
    height: fit-content;
    object-fit: cover;
    cursor: pointer;
    will-change: transform, box-shadow, opacity;
}
.section03 .box:nth-child(2) .img-box .img_01 {
    transform: rotate(2deg);
    left: 10%;
}
.section03 .box:nth-child(2) .img-box .img_02 {
  transform: rotate(-2deg);
}
.section03 .box:nth-child(2) .parts {
    position: absolute;
    top: 40px;
    left: 90%;
    transform: translate(-50%, -50%);
    width: auto;
    z-index: 2;
}

/* 追加　コンセプト */
.section_concept {
    position: relative;
}
.section_concept .big_circle {}
.section_concept .big_circle .block {
    width: 800px;
    opacity: .4;
}
.section_concept .circleText__text {
    fill: var(--orange);
    font-size: 20px;
    letter-spacing: 2px;
}
.section_concept .circleText {
    overflow: visible;
    animation: rotation 40s linear infinite;
    animation-direction: reverse;
}
.section_concept .big_circle01 {
    position: absolute;
    top: -20%;
    right: -35%;
    z-index: -1;
}
.section_concept .big_circle02 {
    position: absolute;    
    bottom: -20%;
    left: -35%;
    z-index: -1;
}
.section_concept .area {}
.section_concept .text_box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
}
.section_concept .text_box .txt {
    letter-spacing: 3px;
    font-weight: 400;
    line-height: 2.3;
    text-align: center;
}
.section_concept .text_box .txt span{
  letter-spacing: -0.1em;
  font-weight: 100;
}
/* section04 */
.section04 {
    width: 100%;
    overflow-x: hidden;
    padding-top: 200px;
}
.gallery {
    display: flex;
    animation: scroll-left 80s linear infinite;
    width: 100%;
}
.gallery li {
  flex: 0 0 auto;
  list-style: none;
}
.gallery img {
    height: 275px;
    aspect-ratio: 16/9;
    width: auto;
    display: block;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* section05 */
.section05 .circle-name {
  padding: 5%;
}
.section05 .block {
    width: 120px;
    margin: auto;
}
.section05 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section05 .circleText__circle {
  fill: none;
}
.section05 .circleText__text {
    fill: var(--yellow);
    font-size: 19px;
    letter-spacing: 0.05em;
}
.section05 {
    overflow: hidden;
    width: 100%;
    padding-top: 100px;
    height: 100%;
}
.section05 .area {
    height: 750px;
}
.section05 .box {
  height: 100%;
}
.section05 .box:nth-child(1) {
  position: relative;
}
.section05 .box:nth-child(1) {
  width: 60%;
}
.section05 .box:nth-child(1) .ttl_area {}
.section05 .box:nth-child(1) .ttl_area h4 {}
.section05 .box:nth-child(1) .ttl_area .ttl {
    display: inline-block;
    border: 1px solid #000;
    padding: 0 8px;
}
.section05 .box:nth-child(1) .img-box {
    position: relative;
    z-index: 1;
    height: fit-content;
    top: 20px;
}
.section05 .box:nth-child(1) .img-box img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 0 18px #858585;
    aspect-ratio: 16/9;
    height: auto;
    width: 85%;
    cursor: pointer;
    will-change: transform, box-shadow, opacity;
    border-radius: 20px;
}
.section05 .box:nth-child(1) .img-box img:nth-child(1) {
    transform: rotate(4deg);
    top: 0%;
    left: 2%;
}
.section05 .box:nth-child(1) .img-box img:nth-child(2) {
    transform: rotate(-3deg);
}
.section05 .box:nth-child(1) .parts {
    position: absolute;
    top: 9%;
    right: 10%;
    z-index: -1;
}
.section05 .box:nth-child(2) {
  width: 40%;

}
.section05 .box:nth-child(2) ul {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 80%;
    justify-content: flex-start;
    margin: 0 auto;
}
.section05 .box:nth-child(2) ul li {}
.section05 .box:nth-child(2) ul li .card {
    display: flex;
    align-items: center;
    justify-content: space-around;
    border-bottom: 1px solid #575757;
    padding: 25px 0;
}
.section05 .box:nth-child(2) ul li .card img {
    width: 40px;
    height: auto;
}
.section05 .box:nth-child(2) ul li .card .sub {
    width: 60%;
}
.section05 .box:nth-child(2) ul li:nth-child(1) .card .sub {
  color: var(--red);

}
.section05 .box:nth-child(2) ul li:nth-child(2) .card .sub {
  color: var(--yellow);
}
.section05 .box:nth-child(2) ul li:nth-child(3) .card .sub {
  color: var(--purple);

}
.section05 .box:nth-child(2) ul li:nth-child(4) .card .sub {
  color: var(--orange);

}
.section05 .box:nth-child(2) ul li:nth-child(5) .card .sub {
  color: var(--green);

}
.section05 .box:nth-child(2) ul li:nth-child(6) .card .sub {
  color: var(--brown);

}
.section05 .box:nth-child(2) ul li .card .arrow {
    display: flex;
    align-items: center;
}
.section05 .box:nth-child(2) ul li .card .arrow svg {
    width: 25px;
    height: auto;
}
/* anim */
.section05 .box:nth-child(2) ul li .card .sub {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 2px;
  background-position: 0 100%;
  transition: background-size .35s ease, color .35s ease;
}
.section05 .box:nth-child(2) ul li:hover .card .sub,
.section05 .box:nth-child(2) ul li:focus-within .card .sub {
  background-size: 100% 2px;
}

@media (hover: hover) and (pointer: fine) {
  .section05 .box:nth-child(2) ul li .card,
  .section05 .box:nth-child(2) ul li .card img,
  .section05 .box:nth-child(2) ul li .card .arrow svg {
    will-change: transform, filter, opacity;
  }
  .section05 .box:nth-child(2) ul li .card {
    transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
    transform: translateX(0);
  }
  .section05 .box:nth-child(2) ul li:hover .card,
  .section05 .box:nth-child(2) ul li:focus-within .card {
    transform: translateX(6px);
  }
  .section05 .box:nth-child(2) ul li .card img {
    transition: transform .35s ease;
    transform: scale(1) rotate(0deg);
  }
  .section05 .box:nth-child(2) ul li:hover .card img,
  .section05 .box:nth-child(2) ul li:focus-within .card img {
    transform: scale(1.05) rotate(-6deg);
  }
  .section05 .box:nth-child(2) ul li .card .arrow svg {
    transition: transform .25s ease;
    transform: translateX(0);
  }
  .section05 .box:nth-child(2) ul li:hover .card .arrow svg,
  .section05 .box:nth-child(2) ul li:focus-within .card .arrow svg {
    transform: translateX(4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .section05 .box:nth-child(2) ul li .card,
  .section05 .box:nth-child(2) ul li .card img,
  .section05 .box:nth-child(2) ul li .card .arrow svg,
  .section05 .box:nth-child(2) ul li .card .sub {
    transition: none !important;
  }
}




.section05 .buttons {
    position: absolute;
    bottom: 27%;
}
.section05 .buttons [class^=btn-] {
    background-color: var(--yellow);
}
.section05 .buttons a {
    color: #000;
}


/* section06 */
.section06 .buttons [class^=btn-] {
    background-color: var(--purple);
    border: 1px solid #FFF;
}
.section06 .circle-name {
  padding: 5%;
}
.section06 .block {
    width: 120px;
    height: 120px;
    margin: auto;
    opacity: .6;
}
.section06 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section06 .circleText__circle {
  fill: none;
}
.section06 .circleText__text {
    fill: var(--pink);
    font-size: 20px;
    letter-spacing: 0.05em;
}
.section06 {
    background: url(../img/top/story-back.webp) center / cover no-repeat;
    height: 800px;
    margin-top: 20px;
    position: relative;
}
.section06::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: brightness(0.5);
    -webkit-backdrop-filter: brightness(0.5);
    z-index: 1;
}
.section06 .container {
  position: relative;
  z-index: 2;
}
.section06 .area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-left: auto;
    height: 800px;
    gap: 120px;
    color: #fff;
}
.section06 .area .box {}
.section06 .area .box:nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.section06 .area .box:nth-child(1) h2 {
  font-weight: bold;
  margin: 0.2em 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
.section06 .area .box:nth-child(1) h2 span {
    background-color: var(--purple);
    padding: 3px 5px;
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
}

.section06 .area .box:nth-child(1) .text_box {}
.section06 .area .box:nth-child(1) .text_box p {
    width: 100%;
    margin: 0 auto;
}
.section06 .area .box:nth-child(2) {
    position: relative;
}
.section06 .area .box:nth-child(2) .buttons {
  
}
.section06 .area .box:nth-child(2) .parts {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* section07 */
.section07 {
    padding-top: 150px;
}
.section07 .area {
}
.section07 .buttons [class^=btn-] {
    background-color: var(--sky);
    color: #000;
}
.section07 .box {}
.section07 .box:nth-child(1) {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.section07 .box:nth-child(1) .ttl .faq {}
.section07 .box:nth-child(1) .ttl p {
  border: 1px solid #000;
  padding: 5px 10px;
  background-color: #fff;
  display: inline-block;
}
.section07 .box:nth-child(2) {
  width: 70%;
  position: relative;
}
.section07 .circle-name {
    padding: 0;
    position: absolute;
    top: -25%;
    right: -1%;
}
.section07 .block {
    width: 120px;
    height: 120px;
    margin: auto;
    opacity: .4;
}
.section07 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section07 .circleText__circle {
  fill: none;
}
.section07 .circleText__text {
  fill: #5194db;
  font-size: 20px;
  letter-spacing: 0.05em;
}
.section07 .card {
  position: relative;
  margin-bottom: 16px;
  z-index: 1;
}

.section07 .card::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: inherit;
  z-index: -1;
  pointer-events: none;
}
.section07 .question-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background-color: #000;
    color: #fff;
    padding: 1% 5%;
    border-radius: 10px;
}
.section07 .question {
    font-weight: bold;
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.section07 .arrow {
  transition: transform 0.4s ease;
  margin-left: 10px;
}
.section07 .card {
    border-radius: 8px;
}
.section07 .card span {
    padding-right: 20px;
}
.section07 .card.open .arrow {
  transform: rotate(180deg);
}

.section07 .answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  margin: 0;
  padding: 0 5%;
}
.section07 .card.open .answer {
    max-height: 500px;
    opacity: 1;
    padding: 1% 5%;
    border-radius: 0 0 8px 8px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.section07 .card.open .question-wrap {
    border-radius: 10px 10px 0 0;
}


/* sectyion08 */
.section08 {
    padding-top: 120px;
}
.section08 .buttons [class^=btn-] {
    background-color: var(--brown);
}
.section08 .box:nth-child(1) {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 30px 0;
    align-items: center;
}
.section08 .box:nth-child(1) .ttl {}
.section08 .box:nth-child(1) .ttl .ivent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section08 .box:nth-child(1) .ttl .ivent span {
  background-color: #FFF;
  border: 1px solid #000;
  padding: 5px 10px;
}
.section08 .circle-name {
    padding: 0%;
    position: absolute;
    top: 30%;
    right: 0%;
}
.section08 .block {
    width: 120px;
    height: 120px;
    margin: auto;
    opacity: .4;
}
.section08 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section08 .circleText__circle {
  fill: none;
}
.section08 .circleText__text {
  fill: var(--brown);
  font-size: 20px;
  letter-spacing: 0.05em;
}
.section08 .box:nth-child(2) {
    margin: 0 auto;
    display: flex;
    gap: 40px;
    width: 100%;
}
.section08 .card {
    background: #fff;
    border-radius: 12px;
    position: relative;
    box-sizing: border-box;
    width: 31%;
}
.section08 .label {
    position: absolute;
    top: -25px;
    left: 0px;
    background: var(--brown);
    color: #fff;
    border-radius: 8px 8px 0 0 !important;
    padding: 5px 10px;
}
.section08 .label span {
    margin-top: 5px;
        --tilt: -5deg;
    display: inline-block;
    transform: rotate(var(--tilt));
    transform-origin: center;
    white-space: nowrap;
    letter-spacing: 1px;
  font-weight: 900;
}
.section08 .image {
    margin-top: 12px;
    overflow: hidden;
}
.section08 .image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: 6px solid var(--brown);
    border-radius: 0px 20px 20px 20px;
}

.section08 .card-body {
  margin-top: 12px;
}

.section08 .title {
    font-weight: bold;
    margin-bottom: 6px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: auto;
    font-size: 22px;
}
.section08 .text {
    color: #333;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

/* section09 */
.section09 .circle-name {
  padding: 5%;
}
.section09 .block {
    width: 120px;
    height: 120px;
    margin: auto;
    opacity: 1;
}
.section09 .circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
}
.section09 .circleText__circle {
  fill: none;
}
.section09 .circleText__text {
    fill: var(--purple);
    font-size: 20px;
    letter-spacing: 0.05em;
}
.section09 {
    overflow: hidden;
    width: 100%;
    padding-top: 120px;
    height: 100%;
    padding-bottom: 120px;
}
.section09 .area {
    height: 100%;
    align-items: stretch;
}
.section09 .box {
  height: 100%;
}
.section09 .box:nth-child(1) {
  position: relative;
}
.section09 .box:nth-child(1) {
  width: 60%;
}
.section09 .box:nth-child(1) .ttl_area {}
.section09 .box:nth-child(1) .ttl_area h4 {}
.section09 .box:nth-child(1) .ttl_area .ttl {}
.section09 .box:nth-child(1) .img-box {
    position: relative;
    z-index: 1;
    height: fit-content;
    margin-top: 50px;
}
.section09 .box:nth-child(1) .img-box img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 0 18px #858585;
    aspect-ratio: 16/9;
    height: auto;
    width: 85%;
}
.section09 .box:nth-child(1) .img-box img {
    border-radius: 18px;
}
.section09 .box:nth-child(1) .parts {
    position: absolute;
    top: 58%;
    right: 10%;
    z-index: 0;
}
.section09 .box:nth-child(2) {
    width: 40%;
    height: 500px;
}
.section09 .box:nth-child(2) .ttl-area {
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
}
.section09 .box:nth-child(2) .ttl-area h4 {}
.section09 .box:nth-child(2) .ex-box {}
.section09 .box:nth-child(2) .ex-box {
    padding-top: 23px;
}
.section09 .box:nth-child(2) .ex-box .info {
    width: 100%;
}
.section09 .box:nth-child(2) .ex-box .info tr {}
.section09 .box:nth-child(2) .ex-box .info tr th, .section09 .box:nth-child(2) .ex-box .info tr td {
    padding-bottom: 20px;
}
.section09 .box:nth-child(2) .ex-box .info tr th {
    display: flex;
}
.section09 .box:nth-child(2) .ex-box .info tr td {
    padding-left: 25px;
}
.section09 .buttons {
    position: absolute;
    top: 440px;
}
.section09 .buttons [class^=btn-] {
    background-color: var(--purple);
    color: #fff;
}
.section09 .buttons a {
    color: #000;
}


/* ========== RESPONSIVE ========== */
/* 1920px～ */
@media screen and (min-width: 1921px) {}
/* 1471px～1920px */
@media screen and (min-width: 1471px) and (max-width: 1920px) {}
/* 1024px～1470px タブレット横からMac横まで*/
@media screen and (max-width: 1469px){
.section03 .box:nth-child(1) .ex {
    width: 95%;
}
.section03 {
    margin-top: clamp(5.625rem, -2.985rem + 13.45vw, 9.375rem);
    padding-bottom: clamp(1.875rem, -13.192rem + 23.54vw, 8.438rem);
}
.section02 {
    padding-top: clamp(5.313rem, 0.29rem + 7.85vw, 7.5rem);
}
.section02 .box img {
    width: clamp(5.625rem, 1.32rem + 6.73vw, 7.5rem);
}
.section02 .box {
    height: clamp(10rem, 4.26rem + 8.97vw, 12.5rem);
}
.section04 {
    padding-top: clamp(5.938rem, -9.13rem + 23.54vw, 12.5rem);
}
.section05 {
    padding-top: clamp(5.313rem, 3.16rem + 3.36vw, 6.25rem);
}
.section05 .box:nth-child(2) ul li .card {
    padding: clamp(0.938rem, -0.497rem + 2.24vw, 1.563rem) 0;
}
.section05 .area {
    height: clamp(36.25rem, 11.855rem + 38.12vw, 46.875rem);
}
.section06 {
    height: clamp(29.688rem, -16.949rem + 72.87vw, 50rem);
}
.section06 .area {
    height: clamp(27.188rem, -25.189rem + 81.84vw, 50rem);
    gap: clamp(3.125rem, -6.92rem + 15.7vw, 7.5rem);
}
.section07 {
    padding-top: clamp(6.875rem, 1.135rem + 8.97vw, 9.375rem);
}
.section08 {
    padding-top: clamp(3.75rem, -4.86rem + 13.45vw, 7.5rem);
}
.section08 .box:nth-child(2) {
    gap: 10px;
    justify-content: space-between;
}
.section09 {
    padding-top: clamp(5.313rem, 0.29rem + 7.85vw, 7.5rem);
    padding-bottom: clamp(5.313rem, 0.29rem + 7.85vw, 7.5rem);
}
.section09 .buttons {
    top: clamp(24.688rem, 18.23rem + 10.09vw, 27.5rem);
}
.section08 .box:nth-child(2) {
    gap: 10px;
    box-sizing: border-box;
}
.section08 .card {
    width: 33%;
}
}
/* ~1280px */
@media screen and (max-width: 1280px) {}
/* 768px~1023px タブレット縦*/
@media screen and (max-width: 1024px) {
  .top .slider-wrapper {
    padding: 0px 0 25px;
  }
  .top .parent {
    height: 100vh;
  }
  .top .slide-area {
    overflow-x: hidden;
}
.top .catchcopy01 {
    top: 37%;
    left: 35%;
}
.top .catchcopy02 {
    top: 45%;
    left: 50%;
}
.section03 {
    margin-top: 80px;
    padding-bottom: 30px;
}
.section03 .box:nth-child(1) .ex {
    margin-top: 25px;
    width: 100%;
}
.section03 .box:nth-child(2) .img-box {
    width: 60%;
    aspect-ratio: 6/4;
    margin: inherit;
    margin-left: auto;
}
.section03 .box:nth-child(2) .img-box .img_01 {
    left: -3%;
}
.section03 .box:nth-child(1) .buttons {
    margin-top: 40px;
    z-index: 2;
}
.section03 .box:nth-child(2) .img-box img:nth-child(1) {
    left: -5%;
}
.section01 {
    padding-top: 25px;
}
.section01 .swiper-slide .slide-img {
    width: 85%;
}
.section01 .swiper-slide .text-topleft {
    right: 11%;
}
  .section02 .grid-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
.section02 .grid-menu > *:first-child {
    grid-column: 1 / -1;
    justify-content: center;
}
.section02 .grid-menu > *:first-child img{}
.section02 .grid-menu > *:first-child .menu_ttl {
    width: 50%;
}
  .section02 .grid-menu > *:nth-child(n+2) {
    grid-column: auto;
  }
.section04 {
    padding-top: clamp(5.625rem, -15rem + 42.97vw, 12.5rem);
}
.section05 .box:nth-child(2) ul li .card {
    padding: 12px 0;
}
.section05 .area {
    height: clamp(30rem, 11.25rem + 39.06vw, 36.25rem);
}
.section05 .buttons {
    bottom: 33%;
}
.section05 .box:nth-child(2) ul li .card img {
    width: 30px;
    height: auto;
}
.section06 {
    height: clamp(25rem, -50rem + 156.25vw, 50rem);
    min-height: 450px;
}
.section06 .area {
    height: clamp(25rem, -50rem + 156.25vw, 50rem);
    gap: 50px;
    width: 100%;
}
.section08 .box:nth-child(2) {
    gap: 5px;
}
.section08 .card {
    width: 33%;
}
.section09 .box:nth-child(2) .ex-box .info tr td {
    white-space: normal;
}
.section09 {
    padding-top: clamp(5rem, -2.5rem + 15.63vw, 7.5rem);
    padding-bottom: clamp(5rem, -2.5rem + 15.63vw, 7.5rem);
}
}
/* スマホ（01） */
@media screen and (min-width: 375px) and (max-width: 476px) {
  .top .slide-area .catch {
    padding: 5px 10px;
  }
  .top .catchcopy01, .top .catchcopy02 {
    padding: 10px 8px;
  }
  .top .catchcopy01 {
    top: 32%;
    left: 40%;
}
.top .catchcopy02 {
    top: 39%;
    left: 52%;
}
.top .parent {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    padding-right: 8px;
}
  .section01 .swiper-slide,
  .section01 .swiper-slide.swiper-slide-active {
      transform: none;
  }
.section01 .swiper-slide .text-center {
    top: 41%;
    left: 28%;
    transform: none;
    width: 90px;
}
  .section01 .container {
    width: 100%;
  }
.section01 {
    padding-top: 75px;
}
.section01 .slide-wrapper {
    height: 460px;
    padding: 0 16px;
    border-radius: 0;
}
  .section01 .swiper-slide {
    transform: scale(0.9);
  }
  .section01 .swiper-slide.swiper-slide-active {
    transform: scale(1.02);
  }
  .section01 .swiper-button-prev, .section01 .swiper-button-next {
    width: 70px;
    height: 70px;
}
.section01 .nav-buttons {
    top: inherit;
    right: 5%;
    bottom: 1%;
}
.section01 .swiper-button-prev img, .section01 .swiper-button-next img {
    width: 25px;
}
.section01 .custom-link-btn {
    top: 19%;
    left: 6%;
    padding: 5px 10px;
}
.section02 {
    padding-top: 60px;
}
.section02 .box .menu_ttl {
    gap: 5px;
    font-size: 30px;
    width: 100%;
}
  .section02 .box {
      height: 200px;
      flex-direction: column-reverse;
      padding: 8px;
  }
  .section02 .box img {
    width: 65px;
  }
.section02 .box span {
    font-size: 12px;
}
  .section02 .grid-menu > *:first-child {
    flex-direction: row-reverse;
    width: 100%;
    height: 165px;
}
.section02 .grid-menu > *:first-child .menu_ttl {
    width: 60%;
    font-size: 38px;
}
.section02 .grid-menu > *:first-child .menu_ttl span {
    font-size: 15px;
}
.section02 .grid-menu > *:first-child img {
    width: 110px;
}
  .section03 {
    margin-top: 50px;
    padding-bottom: 50px;
}
.section03 .box:nth-child(2) .img-box {
    width: 95%;
    aspect-ratio: 16/9;
    margin: 0 auto;
}
  .section03 .box:nth-child(2) .img-box img {
    aspect-ratio: 16/9;
  }
  .section03 .box:nth-child(2) .img-box img:nth-child(1) {
    left: 0%;
  }
.section03 .box:nth-child(2) .parts {
    left: 80%;
    top: 4%;
    z-index: 1;
}
  .section03 .box:nth-child(1) .ex {
    margin-top: 20px;
  }
  .section03 .box:nth-child(1) .buttons {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .section03 .block {
    width: 75px;
    height: 75px;
}
.section03 .box:nth-child(2) .img-box .img_01 {
    left: 0%;
}
.section04 {
    padding-top: 60px;
}
.gallery img {
    height: 175px;
}
.section05 {
    padding-top: 60px;
}
.section05 .area {
    flex-direction: column;
    flex-wrap: nowrap;
    height: 100%;
}
.section05 .box:nth-child(1) {
    width: 100%;
    height: 320px;
}
.section05 .box:nth-child(2) {
    width: 100%;
}
.section05 .box:nth-child(1) .img-box {
    aspect-ratio: 16/9;
}
.section05 .block {
    width: 85px;
}
.section05 .box:nth-child(1) .parts {
    top: 15%;
}
.section05 .box:nth-child(1) .img-box img {
    aspect-ratio: 16/9;
    width: 95%;
    border-radius: 10px;
}
.section05 .buttons {
    bottom: 8%;
}
.section05 .box:nth-child(2) ul {
    width: 100%;
}
.section06 {
    margin-top: 55px;
}
.section07 {
    padding-top: 55px;
}
.section07 .area {
    flex-direction: column;
}
.section07 .box:nth-child(1) {
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    margin-bottom: 20px;
}
.section07 .box:nth-child(1) .ttl{
  width: 50%;
}
.section07 .box:nth-child(1) .ttl p {
    padding: 2px 8px;
}
.section07 .box:nth-child(1) .buttons {
    margin: 10px 0 20px;
    width: 50%;
}
.section07 .buttons [class^=btn-] {
    margin-left: auto;
}
.section07 .box:nth-child(2) {
    width: 100%;
}
  .section07 .block {
    width: 75px;
    height: 75px;
  }
.section07 .circle-name {
    top: -14%;
    right: 3%;
}
.section08 {
    padding-top: 55px;
}
.section08 .box:nth-child(2) {
    gap: 35px;
    flex-wrap: wrap;
}
.section08 .card {
    width: 100%;
}
.section08 .image img {
    border-radius: 0px 10px 10px 10px;
    aspect-ratio: 16/9;
}
.section08 .title {
    font-size: 20px;
}
.section08 .text {
    font-size: 12px;
}
  .section08 .block {
    width: 80px;
    height: 80px;
  }
  .section08 .circle-name {
    top: 30%;
    right: 12%;
  }
.section09 .box:nth-child(1) {
    width: 100%;
}
.section09 .box:nth-child(1) .img-box {
    margin-top: 1px;
    aspect-ratio: 16/9;
    width: 100%;
}
.section09 .box:nth-child(1) .img-box img {
    width: 100%;
}
.section09 .box:nth-child(2) {
    width: 100%;
    height: auto;
    margin-top: 30px;
}
.section09 .box:nth-child(2) .ex-box {
    padding-top: 8px;
}
.section09 .box:nth-child(2) .ttl-area {
    padding-bottom: 8px;
}
.section09 .block {
    width: 100px;
    height: auto;
}
.section09 .box:nth-child(1) .parts {
    top: 13%;
    right: 3%;
    z-index: -1;
}
.section09 {
    padding-top: 55px;
    padding-bottom: 55px;
}
.section09 .buttons {
    top: 90%;
}

.section06 {
    background: url(../img/top/story-back_sp.webp) center / cover no-repeat;
}
/* add */
.section_concept .big_circle .block {
    width: 275px;
}
.section_concept .big_circle02 {
    bottom: 5%;
    left: -50%;
}
.section_concept .big_circle01 {
    top: 0%;
        right: -50%;
}
.section_concept .text_box {
    height: 575px;
}
.section_concept .text_box .txt {
    font-size: 16px;
}
}




