@charset "utf-8";

body,html {
  /* font-size: 16px; */
  font-family: "Noto Serif","Cormorant Garamond", serif;
}
:root {
  --font-ja: "Noto Serif", serif;
  --font-en: "Cormorant Garamond", serif;
  --font-sub: "EB Garamond", serif;
  --font-sans: "Noto Sans", sans-serif;
  --color-blue: #005cab;
}
img {
  width: 100%;
}
a {
  transition: .3s;
}
a:hover {
  opacity: 0.9;
}
p {
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.inner {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
/* .header {
  height: 90px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

} */
/* 通常（スクロール前） */
.header {
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: transparent;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  /* 文字色はリンクに指定されているためリンクも変更 */
}
.header__link {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  transition: color 0.3s ease;
}

/* スクロールしてmvを超えた状態 */
.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8); /* 80%の透明度 */
  color: #000;
}

.header.scrolled .header__link {
  color: #000;
  text-shadow: initial;
}

/* 下線の色も変えるなら */
.header.scrolled .header__link::after {
  background-color: #000;
}

.header__inner {
  height: inherit;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.logo {
  width: 100%;
  max-width: 300px;
}
.logo__link {
  display: inline-block;
  width: 100%;
}
.header__nav {

}
.header__items {
  display: flex;
}
.header__item {

}
.header__item + .header__item {
  margin-left: 40px;
}
.header__link {
  display: inline-block;
  font-size: 14px;
  font-family: var(--font-sans);
  position: relative;
  color: #fff;
}
/* 下線アニメーション */
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.header__link:hover::after {
  transform: scaleX(1);
}
.mv {
	margin-top: -10px;
}
.mv__inner {
  padding: 0 0px;
}
.mv__image {
  position: relative;
}
.mv__image img {

}
.mv__copy {
  position: absolute;
  content: "";
  display: block;
  color: #fff;
  line-height: 1.75;
  font-size: 4rem;
  letter-spacing: 0.05em;
  left: 5%;
  bottom: 5%;
  font-weight: 400;
}
  /* メインビューのコンテナ */
.main-video {
  position: relative;
  width: 100%;
  height: 100vh; /* 全画面高さ */
  overflow: hidden;
}

/* 黒半透明のオーバーレイ */
.main-video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒40%透過 */
  pointer-events: none; /* クリック操作を動画に通す */
  z-index: 1;
  display: none;
}

.main-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;       /* 幅基準でフィット */
  height: auto;      /* 高さは比率維持 */
  transform: translate(-50%, -50%);
  object-fit: cover; /* はみ出した部分をカット */
  z-index: 0;
}

.about {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.about__inner {
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  margin: auto;
}
.about-wrap01 {
  /* display: flex; */
}
.section__title {
  font-size: 150px;
  font-family: var(--font-en);
  font-weight: 400;
}
.about__title {
  color: var(--color-blue);
  font-weight: 400;
  /* writing-mode: vertical-rl; */
}
.about-wrap01__text {
  margin-left: 80px;
  /* max-width: 500px; */
  width: 100%;
  max-width: 1200px;
  margin: 50px auto 0;
}
.about-wrap01__desc {
  line-height: 5;
  letter-spacing: 0.2em;
  color: #38445a;
  text-align: center;
}
.about-wrap01__desc span {
  line-height: 5;
}
.about-wrap01__catch {
  text-align: center;
  margin: 100px auto 0px; /* 下余白を追加して本文と区切る */
  font-size: 2.8rem; /* 目立たせるけど本文より大きめ */
  font-weight: 700; /* 太字で力強く */
  color: #222; /* 見出しは少し濃い色でコントラストを確保 */
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding: 0 20px;
}

.about-wrap02 {
  display: flex;
  padding-top: 50px;
}
.about-wrap02__image {
  flex: 0 0 500px;
  position: relative;
}
.about-wrap02__image::before {
  /* display: block;
  content: "";
  padding-top: 85%; */
}
.about-wrap02__image img {
  /* position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover; */
}
.about-wrap02__text{
  flex: 1;
  margin: 150px 0 0 80px;
}
.about-wrap02__desc {
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #38445a;
}
.business {
  background: var(--color-blue);
  padding-top: 120px;
  padding-bottom: 320px;
  overflow: hidden;
}
.business__inner {
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  margin: auto;
}
.business__heading {

}
.business__title {
  color: #fff;
}
.business__items {
  padding-top: 100px;
}
.business__item {

}
.business-alveri {

}
.business__image {
  position: relative;
}
.business__item-title {
  font-size: 150px;
  color: #fff;
  font-family: var(--font-en);
  writing-mode: vertical-rl;
  font-weight: 400;
}
.business-alveri__title {
  position: absolute;
  content: "";
  display: block;
  right: -50px;
  top: -100px;
}
.business-alveri__pic01 {
  position: absolute;
  content: "";
  display: block;
  left: 40px;
  bottom: -230px;
  max-width: 265px;
}
.business-alveri__pic02 {
  position: absolute;
  content: "";
  display: block;
  left: 400px;
  bottom: -320px;
  max-width: 210px;
}
.business__textWrap {
  width: 100%;
  max-width: 415px;
  background: rgba(56, 68, 90, 0.8);
  position: absolute;
  right: 100px;
  margin-top: -390px;
  padding: 40px 60px 60px;
}
.business__genre {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 500;
}
.service-alveri__title {
  width: 100%;
  max-width: 220px;
  margin: 30px auto 0 auto;
}
.service__heading {

}
.service__title {

}
.business__desc {
  color: #fff;
  letter-spacing: 0.1em;
  margin: 40px 0 0 0;
  line-height: 2;
}
.business__btn {
  text-align: center;
  margin: 50px auto 0 auto;
}
.more__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 150px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  padding-left: 30px;
  border-bottom: 1px solid #fff;
  gap: 10px; /* 矢印との隙間 */
  transition: color 0.3s ease, border-color 0.3s ease;
  position: relative;
  text-align: center;
}

.more__link-icon {
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.more__link:hover {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.more__link:hover .more__link-icon {
  transform: translateX(5px);
}

.more__link:hover .more__link-icon path {
  stroke: #ffd700;
}



.business-atelier {
  margin-top: 500px;
}
.business-atelier__title {
  position: absolute;
  content: "";
  display: block;
  left: -50px;
  top: -100px;
}
.business-atelier__pic01 {
  position: absolute;
  content: "";
  display: block;
  right: 170px;
  bottom: -400px;
  max-width: 406px;
}
.business-atelier__textWrap {
  right: initial;
  left: 100px;
  margin-top: -280px;
}
.service-atelier__title {
  color: #fff;
  font-size: 42px;
  text-align: center;
  font-family: var(--font-sub);
  margin: 30px 0 0 0;
}
.business-sdgs {
  margin-top: 560px;
}
.business-sdgs__title {
  position: absolute;
  content: "";
  display: block;
  right: -50px;
  top: -100px;
  font-size: 114px;
  color: #38445a;
  white-space: nowrap;
}
.service-sdgs__title {
  font-size: 36px;
  text-align: center;
  font-weight: 500;
  color: #fff;
}
.business-sdgs__textWrap {
  padding: 40px 50px 60px;
  right: 160px;
  margin-top: -350px;
}

/* Splide カスタム */
.splide__slider {
  margin-top: 50px;
  width: 80%;
  margin-left: auto;
}

.splide-card {
  display: block;
  /* border-radius: 8px; */
  overflow: hidden;
  background: #fff;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  text-decoration: none;
  color: inherit;
}

.splide-card__img {
  width: 100%;
  height: auto; /* 可変に変更 */
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2; /* 例：横長比率を維持（調整可） */
}

.splide-card__meta {
  padding: 1rem;
}

.splide-card__date {
  font-size: 1.5rem;
  color: #859fc2;
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--color-blue);
}

.splide-card__text {
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: var(--color-blue);
}
.splide-card__excerpt {
  font-size: 1.6rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 最大2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--color-blue);
}

/* Splideの余白調整 */
.splide__slide {
  padding-right: 1rem;
  box-sizing: border-box;
}
.splide__pagination__page.is-active {
  background: var(--color-blue) !important;
  transform: initial !important;
}
.splide__pagination {
  bottom: -3.5em !important;
}
.blog {
  padding-top: 170px;
  padding-bottom: 120px;
}
.blog__inner {

}
.blog__heading {
  max-width: 1340px;
  margin: auto;
  padding: 0 40px;
}
.blog__title {
  color: var(--color-blue);
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    position: relative;
  }
  .scroll-infinity__list {
    display: flex;
    /* gap: 80px; */
    list-style: none;
    padding: 0;
    position: relative;
  }
  .scroll-infinity__wrap::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../images/break-logo.webp) center center / contain no-repeat;
    width: 100%;
    max-width: 898px;
    height: 286px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 30s infinite linear 0.5s both;
  }
  .scroll-infinity__item {
    width: calc(100vw / 6);
  }
  .scroll-infinity__item>img {
    width: 100%;
  }
.scroll-infinity__item01 {
  margin-top: 100px;
  padding-left: 50px;
}
.scroll-infinity__item02 {
  margin-left: 50px;
}
.scroll-infinity__item03 {
margin-top: 400px;
margin-left: -100px;
}
.scroll-infinity__item04 {
  margin-top: 50px;
  margin-left: 50px;
}
.scroll-infinity__item05 {
  margin-top: 250px;
  margin-left: 50px;
}
.scroll-infinity__item06 {
  /* transform: translateX(-100px); */
  /* padding-right: 50px; */
}
.company-banner {
  text-align: center;
  margin-top: 100px;
}
.company-banner__link {
  display: inline-block;
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  position: relative;
}
.company-banner__link:hover {
  opacity: 0.9;
}
.company-banner__image {
  overflow: hidden; /* はみ出し防止 */
}

.company-banner__image img {
  transition: transform 0.4s ease;
  display: block;
  width: 100%;
  height: auto;
}
.company-banner__link:hover .company-banner__image img {
  transform: scale(1.05);
}
.company-banner__text {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.company-banner__title {
  font-size: 130px;
  color: #fff;
  font-family: var(--font-en);
}
.company-banner__btn {

}
.company-banner__btn .more__link {
  text-align: center;
}
.contact-banner {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 100px;
  padding-left: 40px;
  padding-right: 40px;
}
.contact-banner__link {
  display: inline-block;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  padding: 50px 40px;
  border: 1px solid var(--color-blue);
  text-align: center;
  position: relative;
}
.contact-banner__link::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../images/contact-arrow.webp) center center / cover no-repeat;
  width: 25px;
  height: 8px;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.contact-banner__title {
  text-align: center;
  font-size: 130px;
  color: var(--color-blue);
  font-family: var(--font-en);
  line-height: 1;
}
.contact-banner__text {
  text-align: center;
}
.contact-banner__desc {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: #38445a;
}
.contact-banner__link {
  transition: background-color 0.4s ease, border-color 0.4s ease;
}

.contact-banner__title,
.contact-banner__desc,
.contact-banner__link::after {
  transition: all 0.4s ease;
}

/* ホバーアニメーション */
.contact-banner__link:hover {
  background-color: rgba(0, 123, 255, 0.05); /* 薄いブルー背景 */
  border-color: var(--color-blue); /* 枠線濃く（同じ色でもOK） */
}

.contact-banner__link:hover .contact-banner__title {
  color: var(--color-blue); /* 変化なし or 薄めのブルーに */
}

.contact-banner__link:hover::after {
  right: 40px; /* 矢印が少し右へスライド */
}
.footer {
  background: url(../images/footer-bg.webp) center center / cover no-repeat;
}
.footer__inner {
  width: 100%;
  max-width: 1000px;
  padding: 120px 40px 170px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__text {

}
.footer__logo {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  font-family: var(--font-sans);
}
.footer__descs {
  margin-top: 50px;
}
.footer__desc {
  font-size: 14px;
  color: #fff;
  font-family: var(--font-sans);
}
.footer__desc a {
  color: #fff;
}
.footer__desc + .footer__desc {
  margin-top: 5px;
}
.footer__copy {
  font-size: 14px;
  color: #fff;
  font-family: var(--font-sans);
  margin-top: 30px;
}
.footer__links {

}
.footer__nav {

}
.footer__items {

}
.footer__item {

}
.footer__link {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-sans);
}
.footer__item + .footer__item {
  margin-top: 15px;
}
.footer-sns {
  margin-top: 30px;
}
.footer-sns__heading {
  text-align: center;
}
.footer-sns__title {
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-family: var(--font-sans);
}
.footer-sns__items {
  display: flex;
  gap: 15px;
  margin: 10px 0 0 0;
}
.footer-sns__item {

}
.footer-sns__link {
  display: inline-block;
  font-size: 32px;
}
.footer-sns__link i::before {
  color: #fff;
}
.breadcrumb {
  font-size: 14px;
  color: #666;
  max-width: 1380px;
  padding: 0 40px;
  margin: 20px auto;
}
.breadcrumb a {
  color: #000;
  text-decoration: underline;
}
.breadcrumb a:hover {

}
.breadcrumb span {
  margin: 0 5px;
}

.hero-image {
  width: 100%;
  height: 250px;
  background: url(../images/head-image02.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-image::before {
  position: absolute;
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-image h1 {
  color: #fff;
  font-size: 80px;
  padding: 10px 30px;
  border-radius: 8px;
  position: relative;
  font-family: var(--font-en);
}

.container {
  max-width: 1000px;
  margin: 100px auto;
  padding: 0 20px;
}

.intro-section {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
  margin-bottom: 60px;
}

.intro-image {
position: relative;
z-index: 1;
width: 300px;
height: 400px; /* 高さを明示して object-fit を効かせる */
margin-right: -30px;
flex-shrink: 0;
overflow: hidden; /* 画像がはみ出さないように */
border-radius: 10px;
}

.intro-image::before {
position: absolute;
content: "";
display: block;
}

.intro-image img {
width: 100%;
height: 100%; /* 高さも100%に */
object-fit: cover; /* 画像をトリミングしてきれいに表示 */
border-radius: 10px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.intro-text {
  flex: 1;
  background-color: #4d4d4d;
  padding: 40px 70px 40px 70px;
  position: relative;
  z-index: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.intro-text h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

.intro-text p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #fff;
}
.intro-name {
  text-align: right;
  margin-top: 30px;
}

.table-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #003366;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.table-section th, .table-section td {
  padding: 20px 20px;
  border-bottom: 1px solid #ddd;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.7;
}

.table-section th {
  background-color: #f0f4f8;
  font-weight: bold;
  width: 30%;
}

@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
    padding: 0px;
  }

  .intro-image {
    margin: 0 auto 20px;
    width: 300px;
    height: 300px;
  }

  .intro-text {
    padding: 20px 15px;
  }

  .hero-image h1 {
    font-size: 11vw;
    padding: 8px 20px;
  }
}

/* 既にリセットCSSが入っている前提 */

.l-main {
/* max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
background: #fff;
color: #333;
font-size: 1.6rem;
line-height: 1.8; */
}

.article__header {
margin-bottom: 40px;
}

.article__title {
font-size: 2.8rem;
font-weight: bold;
margin-bottom: 10px;
color: #000;
}

.article__meta {
font-size: 1.2rem;
color: #666;
}

.article__category {
margin-left: 15px;
}
.article__category + .article__category {
  margin-left: 0;
}
.article__body {
  font-size: 1.6rem;
}
.article__body h2 {
font-size: 2.2rem;
margin: 40px 0 20px;
border-left: 6px solid #000;
padding-left: 12px;
color: #000;
}

.article__body h3 {
font-size: 1.8rem;
margin: 30px 0 15px;
color: #000;
}

.article__body h4 {
font-size: 1.6rem;
margin: 25px 0 10px;
color: #000;
}

.article__body p {
margin-bottom: 20px;
font-size: 1.6rem;
}

.article__body ul,
.article__body ol {
margin: 20px 0;
padding-left: 2em;
}

.article__body ul li {
list-style-type: disc;
margin-bottom: 8px;
line-height: 1.75;
}

.article__body ol li {
list-style-type: decimal;
margin-bottom: 8px;
line-height: 1.75;
}

.article__body figure {
margin: 30px 0;
text-align: center;
}

.article__body img {
max-width: 100%;
height: auto;
object-fit: cover;
border-radius: 6px;
}

.article__body figcaption {
font-size: 1.3rem;
color: #666;
margin-top: 10px;
}

.article__body blockquote {
margin: 30px 0;
padding: 20px;
background-color: #f3f7fb;
border-left: 5px solid #003366;
font-style: italic;
color: #333;
}

.article__body table {
width: 100%;
border-collapse: collapse;
margin: 30px 0;
font-size: 1.5rem;
}

.article__body th,
.article__body td {
border: 1px solid #ccc;
padding: 12px;
text-align: left;
}

.article__body th {
background-color: #f0f4f8;
font-weight: bold;
}

/* スマホ対応 */
@media screen and (max-width: 767px) {
.article__title {
font-size: 2.2rem;
}

.article__body h2 {
font-size: 1.9rem;
}

.article__body h3 {
font-size: 1.6rem;
}

.article__body {
font-size: 1.5rem;
}
}


.l-main {
max-width: 1200px;
margin: 0 auto;
padding: 100px 40px;
background-color: #fff;
}

.blog-list__title {
font-size: 2.8rem;
margin-bottom: 30px;
color: #003366;
text-align: center;
}

.blog-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.blog-card {
background-color: #f9f9f9;
/* border-radius: 8px; */
overflow: hidden;
transition: box-shadow 0.3s;
}

.blog-card a {
display: block;
color: inherit;
}

.blog-card:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.blog-card__image {
  position: relative;
  width: 100%;
}
.blog-card__image::before {

  content: "";
  display: block;
  padding-top: 56.25%;
}
.blog-card__image img {
position: absolute;
width: 100%;
height: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
object-fit: cover;
object-position: center;
}

.blog-card__content {
padding: 16px;
}

.blog-card__date {
font-size: 1.2rem;
color: #666;
display: block;
margin-bottom: 8px;
}

.blog-card__title {
font-size: 1.6rem;
font-weight: bold;
margin-bottom: 10px;
color: #000;
}

.blog-card__excerpt {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.5rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 最大2行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
.blog-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media screen and (max-width: 767px) {
.blog-grid {
grid-template-columns: 1fr;
}
}

/*ContactForm7カスタマイズ*/
table.CF7_table{
	width:100%;
  max-width: 800px;
	margin:0 auto;
  box-shadow: none;
	/* border: 3px solid #e5e5e5; */
}

table.CF7_table tr{
	/* border-top: 1px solid #e5e5e5; */
  display: flex;
  align-items: center;
}
table.CF7_table tr + tr {
  margin-top: 30px;
}
table.CF7_table tr:last-child {
  align-items: initial;
}
table.CF7_table td {
  flex: 1;
}
.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	/* border: 1px solid #d8d8d8; */
  border: none;
  padding: 10px;
	width: 100%;
  background: #dddddd;
}
input[type="checkbox"] {
width: initial;
}

.CF7_table ::placeholder {
	color:#797979;
}


/*「必須」文字*/
.CF7_req{
    font-size: .7em;
    padding: 7px;
	background: var(--color-blue);/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}
.CF7_table2 .CF7_req {
background:#003366;
}
/*「任意」文字*/
.CF7_unreq{
    font-size: .7em;
    padding: 7px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	/* background-color:#ebedf5; */
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
	width:95%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	.CF7_table th{
	background-color:#ebedf5;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
    background-color: var(--color-blue);
    border: 0;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 auto;
    padding: 20px 0;
    width: 50%;
}
.wpcf7 input.wpcf7-submit.cf7-btn2 {
 background-color: #003366;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}

.wpcf7-submit:disabled {
background-color: #999 !important;
}
.contact-policy {
    text-align: center;
    margin-top: 20px;
}
.contact-policy p {
  text-align: center;
}
.contact-policy a {
color:#333;
margin-left: 5px;
}
.wpcf7 form .wpcf7-response-output {
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
	.wpcf7 input.wpcf7-submit {
		padding: 10px 0;
    width: 90%;
	}

}
.contact__heading {
  margin-bottom: 50px;
}
.contact__lead {
  text-align: center;
}
.fade-in {
  opacity: 0;
  transition: opacity 2.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}
/* 共通フェードイン用 */
.fade-in-plain {
  opacity: 0;
  transition: opacity 1.5s ease; /* ← ゆっくり */
  transition-delay: 1s; /* 全体が始まるのを少し遅らせる */
}
.fade-in-plain.is-visible {
  opacity: 1;
}
.fade-in.up {
  transform: translateY(40px);
}
.fade-in.up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.down {
  transform: translateY(-40px);
}
.fade-in.down.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.left {
  transform: translateX(40px);
}
.fade-in.left.is-show {
  opacity: 1;
  transform: translateX(0);
}

.fade-in.right {
  transform: translateX(-40px);
}
.fade-in.right.is-show {
  opacity: 1;
  transform: translateX(0);
}
.fade-in-split span {
  display: inline-block;
  opacity: 0;
  transition: opacity 3s ease; /* 3秒かけてじわっと出る */
}

.fade-in-split.is-show span {
  opacity: 1;
}

/* 遅延をゆっくり間隔にする（2秒ごとに表示） */
.fade-in-split.is-show span:nth-of-type(1) { transition-delay: 0s; }
.fade-in-split.is-show span:nth-of-type(2) { transition-delay: 2s; }
.fade-in-split.is-show span:nth-of-type(3) { transition-delay: 4s; }
.fade-in-split.is-show span:nth-of-type(4) { transition-delay: 6s; }
.fade-in-split.is-show span:nth-of-type(5) { transition-delay: 8s; }

.fade-in-split {
  transition-delay: 1s; /* 全体が始まるのを少し遅らせる */
}


.company-more__link:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.company-more__link:hover .more__link-icon path {
  stroke: #fff;
}
.article__thumbnail {
  margin-top: 10px;
}
.article__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;

}

.article__meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

.article__category {
  background: #eee;
  padding: 2px 8px;
  border-radius: 4px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background-color: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

.pagination .current {
  background-color: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
  font-weight: bold;
}
@media screen and (min-width:769px) {
  .splide__pagination {
    display: none !important;
  }
}

/* ハンバーガー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 15px;
  height: 15px;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #000;
  transition: 0.3s;
  transform-origin: center; /* ← これ大事 */
}

@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .hamburger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 100px 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* メニュー項目を1つずつフェードイン */
  .header__items {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .header__item {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  .header__nav.open .header__item {
    opacity: 1;
    transform: translateY(0);
  }
  /* 順番ごとに遅延をつける */
  .header__nav.open .header__item:nth-child(1) { transition-delay: 0.1s; }
  .header__nav.open .header__item:nth-child(2) { transition-delay: 0.2s; }
  .header__nav.open .header__item:nth-child(3) { transition-delay: 0.3s; }
  .header__nav.open .header__item:nth-child(4) { transition-delay: 0.4s; }

  /* ハンバーガー線アニメーションを柔らかく */
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #000;
    border-radius: 2px;
    transition: transform 0.4s ease, opacity 0.3s ease;
  }
/* open状態 */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
  .header__item + .header__item {
    margin-left: 0;
  }
  .header__link {
    font-size: 16px;
    color: #000;
  }
  .header {
    height: 50px;
}

  .header__inner {
    padding: 0 15px;
  }
  .logo {
    width: 50%;
    /* max-width: 300px; */
}
.mv__inner {
  padding: 0 0px;
}
.mv__copy {
  font-size: 4vw;
  display: none;
}
.about {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about__inner {
  padding: 0 15px;
}
.about-wrap01 {
  flex-direction: column;
}
.about__title {
  writing-mode: initial;
  font-size: 11vw;
}
.about-wrap01__text {
  margin-left: 0px;
  margin-top: 15px;
  max-width: initial;
}
.about-wrap01__catch {
  margin: 70px auto 0px;
  font-size: 1.8rem;
}
.about-wrap01__desc {
  line-height: 3.7;
  font-size: 3.5vw;
  letter-spacing: 0.1em;
}
.about-wrap01__desc span {
  line-height: 2;
}
.about-wrap01__image {
  width: 70%;
  text-align: center;
  margin: 15px auto;
  /* max-width: 370px; */
}
.about-wrap02 {
  flex-direction: column-reverse;
}
.about-wrap02__text {
  flex: 1;
  margin: 0px 0 0 0px;
}
.about-wrap02__desc {
  line-height: 2;
  font-size: 3.5vw;
  letter-spacing: 0.1em;
}
.about-wrap02__image {
  flex: 0 0 0px;
  margin: 15px 0 0 0;
}
.business {
  padding-top: 60px;
  padding-bottom: 320px;
}
.section__title {
  font-size: 11vw;
}
.business__inner {
  padding: 0 15px;
}
.business-alveri__title {
  position: absolute;
  content: "";
  display: block;
  right: -10px;
  top: -28px;
}
.business__item-title {
  font-size: 11vw;
}
.business__items {
  padding-top: 40px;
}
.business__textWrap {
  width: 90%;
  max-width: initial;
  background: rgba(56, 68, 90, 0.8);
  position: absolute;
  right: 0px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -100px;
  padding: 20px 15px 30px;
}
.business-alveri__pic01 {
  display: none;
}
.business__genre {
  font-size: 4.5vw;
}
.service-alveri__title {
  width: 60%;
  max-width: initial;
  margin: 20px auto 0 auto;
}
.business__desc {
  color: #fff;
  letter-spacing: 0.1em;
  margin: 20px 0 0 0;
  font-size: 3.5vw;
  line-height: 2;
}
.business-atelier__title {
  position: absolute;
  content: "";
  display: block;
  left: -10px;
  top: -40px;
}
.service-atelier__title {
  color: #fff;
  font-size: 8vw;
  text-align: center;
  font-family: var(--font-sub);
  margin: 20px 0 0 0;
}
.business-atelier__pic01 {
  display: none;
}
.business-sdgs__title {
  right: -10px;
  top: -50px;
}
.service-sdgs__title {
  font-size: 8vw;
}
.business-sdgs {
  margin-top: 510px;
}
.blog {
  padding-top: 60px;
  padding-bottom: 60px;
}
.splide__slider {
  margin-top: 50px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.company-banner__link {
  padding: 0 15px;
}
.company-banner__title {
  font-size: 11vw;
}
.contact-banner {
  padding-left: 15px;
  padding-right: 15px;
}
.contact-banner__link {
  padding: 20px 15px;
}
.contact-banner__title {
  font-size: 11vw;
}
.contact-banner__desc {
  font-size: 2.5vw;
}
.contact-banner__link::after {
  right: 20px;
}
.company-banner {
  margin-top: 50px;
}
.contact-banner {
  text-align: center;
  margin-top: 50px;
  padding-bottom: 50px;
}
.footer__inner {
  width: 100%;
  max-width: 1000px;
  padding: 100px 15px 60px;
  margin: auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
}
.footer__text {
  margin-top: 100px;
}
.footer__item {
  text-align: center;
}

.scroll-infinity {
  padding-top: 20px;
  padding-bottom: 30px;
}

.scroll-infinity__item {
  width: calc(100vw / 2.2); /* SPでは1つ1つを大きく表示 */
}

.scroll-infinity__item>img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; 
  object-fit: contain;
}

/* 各画像の個別スタイルを調整して見やすく */
.scroll-infinity__item01 {
  margin-top: 40px;
  padding-left: 10px;
}

.scroll-infinity__item02 {
  margin-left: 20px;
  margin-top: 60px;
}

.scroll-infinity__item03 {
  margin-top: 30px;
  margin-left: 10px;
}

.scroll-infinity__item04 {
  margin-top: 50px;
  margin-left: 10px;
}

.scroll-infinity__item05 {
  margin-top: 40px;
  margin-left: 10px;
}

.scroll-infinity__item06 {
  margin-top: 50px;
  margin-left: 10px;
}

/* 背景ロゴの表示位置やサイズも調整（必要なら） */
.scroll-infinity__wrap::before {
  width: 70%;
  height: 160px;
  background: url(../images/break-logo-sp.webp) center center / contain no-repeat;
}
.hero-image {
  height: 120px;
}
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 0px 15px;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center -60px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.intro-text h2 {
  font-size: 7vw;
}
.intro-text p {
  font-size: 3.5vw;
}
.table-section th, .table-section td {
  font-size: 3.5vw;
}
.table-section td {
  line-height: 1.5;
}
.blog-card {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.pagination {
  margin-top: 30px;
}
.l-main {
  padding: 50px 15px;
}
.breadcrumb {
  padding: 0 15px;
}
.contact__lead {
  font-size: 3.5vw;
}
/* .CF7_table input, .CF7_table textarea {
  width: 94%;
} */
table.CF7_table tr {
  flex-direction: column;
}
/* .wpcf7-list-item {
  margin: 0 !important;
} */
.article__category {
  margin-left: 0px;
  }

}

/* 共通：ボックスサイズをpadding込みで計算 */
.CF7_table input,
.CF7_table textarea,
.CF7_table select {
  box-sizing: border-box;
  max-width: 100%;
}

/* スマホ時のフォーム崩れ防止 */
@media screen and (max-width: 768px) {
  table.CF7_table {
    width: 95%;
    box-sizing: border-box;
  }
  .CF7_table tr,
  .CF7_table td,
  .CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
    box-sizing: border-box;
  }
  .CF7_table input,
  .CF7_table textarea,
  .CF7_table select {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  /* チェックボックスだけは横並び維持 */
  .CF7_table input[type="checkbox"] {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin-right: 5px;
  }
}

/* スクロールロック */
.body--no-scroll {
  overflow: hidden;
  height: 100vh; /* 画面高さ固定 */
}
.instagram {

}
.instagram__inner {
  width: 100%;
  max-width: 1380px;
  padding: 0 40px;
  margin: auto;
}
.instagram__heading {

}
.instagram__title {
  color: var(--color-blue);
}
.instagram__items {
  display: flex;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  gap: 40px;
}
.instagram__items01 {
  margin-top: 100px;
}
.instagram__items02 {
  flex-direction: row-reverse;
  margin-top: 150px;
}
.instagram__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.instagram__text h3 {
  font-size: 3rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.view__more {
  display: inline-block;
  padding: 12px 24px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: bold;
}

.instagram__images {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.instagram__images img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  display: block;

}
.instagram__link {
  color: #000;
  border-bottom: 1px solid #000;
}
.instagram__link:hover {
  color: #000;
  border-bottom-color: #000;
}

.instagram__link:hover .instagram__link-icon path {
  stroke: #000;
}
.instagram__btn .more__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  border: 1px solid #000; /* 枠線色は好みで変更 */
  background-color: transparent;
  color: #000; /* 初期文字色 */
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.instagram__btn .more__link:hover {
  background-color: #000; /* ホバー時の背景色 */
  color: #fff; /* ホバー時の文字色 */
}

.instagram__btn .more__link svg {
  display: none; /* 矢印を非表示にする場合 */
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .instagram__images img {
    width: 200px;
    height: 200px;
  }
}
/* SP時レイアウト */
@media (max-width: 768px) {
  .instagram {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .instagram__items {
    flex-direction: column-reverse;
  }
  .instagram__items01 {
    margin-top: 50px;
  }
  .instagram__items02 {
    margin-top: 80px;
  }
  .instagram__images {
    /* grid-template-columns: 1fr; */
  }

  .instagram__text {
    align-items: center;
    margin-top: 0px;
  }
  .instagram__text h3 {
    font-size: 2rem;
  }
  .instagram__images img {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
    object-fit: cover;
  }
}
.single__title h1 {
  font-size: 50px;
  font-family: var(--font-sans);
}


@media screen and (max-width:768px) {
  .single__title h1 {
    font-size: 8vw;
  }
  .main-video video {
    height: 100vh;
  }
}