@charset "UTF-8";

/* ★は修正要 */

/* ------------------------- */
/* 全般
------------------------- */
body {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  background-color: #ffffff;
  color: #4d4d4d;
  overflow-x: hidden;
}

img {
  width: 100%;
  max-width: 100%;
}

.newLine {
  display: inline-block;
}

.font24 {
  font-size: 1.5rem;
}

.font64 {
  font-size: 4rem;
}

.font128 {
  font-size: 8rem;
}

.fontExtralight {
  font-weight: 300;
}

.fontBold {
  font-weight: 700;
}

.fontOutline {
  display: inline-block;
  color: #ffffff;
  text-shadow: 2px 2px 0px #4d4d4d, -2px 2px 0px #4d4d4d, 2px -2px 0px #4d4d4d,
    -2px -2px 0px #4d4d4d, 2px 0px 0px #4d4d4d, 0px 2px 0px #4d4d4d,
    -2px 0px 0px #4d4d4d, 0px -2px 0px #4d4d4d;
}

.generalWrapper {
  margin: 0 100px 0 auto;
  padding: 128px 3%;
}

.border {
  border-top: 1px solid rgba(77, 77, 77, 0.5);
  border-right: 1px solid rgba(77, 77, 77, 0.5);
}

.marker {
  background-color: #f8cf23;
}

.link {
  position: relative;
  display: inline-block;
  border-bottom: 1px solid rgba(77, 77, 77, 0.5);
}

.link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8cf23;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
  z-index: -99;
}

.link:hover::before {
  width: 100%;
  transform-origin: left;
  transform: scaleX(1);
}

.fadeInRtoL,
.fadeInLtoR {
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1.6s, transform 0.8s;
}

.fadeInLtoR {
  transform: translateX(-100%);
}

.fadeInRtoL.active,
.fadeInLtoR.active {
  opacity: 1;
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .generalWrapper {
    margin: 0 auto;
    padding: 64px 3%;
  }

  .border {
    border-right: none;
  }

  .font24 {
    font-size: 1.2rem;
  }

  .font64 {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 450px) {
  .font64 {
    font-size: 2.3rem;
  }
}

/* ------------------------- */
/* レイアウト
------------------------- */
.bodyWrapper {
  margin: 0 auto;
  max-width: 1920px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: start;
}

.mainWrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

.headerWrapper {
  position: fixed;
  width: 100px;
  height: 100vh;
  z-index: 999;
}

@media screen and (max-width: 768px) {
  .bodyWrapper {
    flex-direction: column;
    align-items: start;
  }

  .headerWrapper {
    width: 100%;
    height: 82px;
  }
}

/* ------------------------- */
/* #header
------------------------- */
#header .headerInner {
  padding: 32px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  z-index: 999;
}

#header .logo {
  width: 50px;
}

#header .navBtn {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#header .navBtn::after {
  position: absolute;
  top: 66px;
  left: 50%;
  transform: translateX(-50%);
  height: 7em;
  content: "メニューを開く";
  text-orientation: upright;
  writing-mode: tb-rl;
  -ms-writing-mode: tb-rl;
}

#header.active .navBtn::after {
  height: 8em;
  content: "メニューを閉じる";
}

#header .navBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 100%;
  height: 2px;
  background-color: #4d4d4d;
  transition: 0.4s ease;
}

#header .navBtn span:nth-child(1) {
  top: 10px;
}

#header .navBtn span:nth-child(3) {
  top: 40px;
}

#header.active .navBtn span:nth-child(1) {
  top: 25px;
  transform: translate(-50%, -50%) rotate(135deg);
}

#header.active .navBtn span:nth-child(2) {
  opacity: 0;
}

#header.active .navBtn span:nth-child(3) {
  top: 25px;
  transform: translate(-50%, -50%) rotate(-135deg);
}

#header .navContainer {
  /* ★ 20250603 <s> 
  padding: 32px; 
　★ 20250603 <e> */
  padding: 32px 132px 32px 32px;
  display: none;
  position: fixed;
  top: 0;
  /* ★ 20250603 <s> 
  left: calc(100% - 400px);
  width: 400px; 
  ★ 20250603 <e> */
  left: calc(100% - 480px);
  width: 480px;
  height: 100%;
  animation: slideRtoL 0.4s;
  background-color: #ededed;
  overflow-y: auto;
  z-index: 99;
}

#header.active .navContainer {
  display: block;
}

#header .navContainer ul {
  display: grid;
  row-gap: 32px;
}

@media screen and (max-width: 768px) {
  #header .headerInner {
    padding: 16px;
    flex-direction: row;
    justify-content: space-between;
  }

  #header .logo {
    height: 50px;
    width: auto;
  }

  #header .navBtn::after {
    position: absolute;
    top: 50%;
    left: calc(-7em - 16px);
    transform: translateY(-50%);
    width: 7em;
    height: 1em;
    text-orientation: mixed;
    writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    line-height: 1;
  }

  #header.active .navBtn::after {
    left: calc(-8em - 16px);
    width: 8em;
    height: 1em;
  }

  #header .navContainer {
    padding: 114px 32px 32px;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
  }
}

@keyframes slideRtoL {
  0% {
    opacity: 0;
    transform: translateX(50%);
  }

  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}

/* ------------------------- */
/* #mv
------------------------- */
#mv .mv-video {
  margin: 0 100px 0 auto;
  position: relative;
  background-color: #f8cf23;
  z-index: -1;
}

#mv .mv-video .video-PC,
#mv .mv-video .video-SP {
  width: 100%;
  height: auto;
  vertical-align: top;
}

#mv .mv-video .video-SP {
  display: none;
}

#mv .mv-videoText {
  position: absolute;
  top: 50%;
  left: 4vw;
  transform: translateY(-50%);
  display: grid;
  row-gap: 2vw;
  color: rgba(255, 255, 255, 0.5);
}

#mv .mv-videoText .textA {
  font-size: 8vw;
  letter-spacing: 0.15em;
  line-height: 1.3;
}

#mv .mv-videoText .textB {
  font-size: 4vw;
  letter-spacing: 0.15em;
}

@media screen and (min-width: 1920px) {
  #mv .mv-videoText .textA {
    font-size: 128px;
  }

  #mv .mv-videoText .textB {
    font-size: 64px;
  }
}

@media screen and (max-width: 768px) {
  #mv .mv-video {
    margin: 0 auto;
  }

  #mv .mv-video .video-PC {
    display: none;
  }

  #mv .mv-video .video-SP {
    display: block;
    width: 100%;
  }

  #mv .mv-videoText {
    top: 80%;
  }
}

/* ------------------------- */
/* #lead
------------------------- */
#lead .generalWrapper {
  padding-top: 32px;
  padding-right: 0;
}

#lead .leadText {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: right;
  text-align: right;
}

#lead .leadText p {
  position: relative;
  padding-right: 16px;
}

#lead .leadText p::after {
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%) rotate(120deg);
  content: "";
  width: 16px;
  height: 1px;
  background-color: #4d4d4d;
}

#lead .leadText .link {
  z-index: 99;
}

@media screen and (max-width: 768px) {
  #lead .generalWrapper {
    padding-right: 3%;
  }

  #lead .leadText {
    grid-template-columns: auto;
  }
}

@media screen and (max-width: 450px) {
  #lead .leadText {
    font-size: 13px;
  }
}

/* ------------------------- */
/* #sec01
------------------------- */
#sec01 {
  margin-top: 128px;
}

#sec01 .sec01Inner01 {
  padding-bottom: 441px;
  position: relative;
}

#sec01 .inner01-image {
  position: absolute;
  top: -64px;
  left: 3%;
  width: 800px;
}

#sec01 .inner01-textContainer {
  margin-top: 349px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#sec01 .inner01-textContainer img {
  width: 200px;
}

#sec01 .inner01-text {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  #sec01 {
    margin-top: 64px;
  }

  #sec01 .inner01-image {
    top: -32px;
    width: 400px;
  }

  #sec01 .inner01-textContainer {
    margin-top: 174px;
  }

  #sec01 .inner01-text {
    margin-top: 32px;
  }
}

@media screen and (max-width: 450px) {
  #sec01 .inner01-textContainer img {
    width: 100px;
  }
}

@media screen and (max-width: 375px) {
  #sec01 .inner01-image {
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
  }

  #sec01 .inner01-textContainer {
    margin-top: 120px;
    align-items: center;
  }

  #sec01 .inner01-textContainer img {
    display: none;
  }
}

/* ------------------------- */
/* #sec02
------------------------- */
/* 聴く、訊く、利く、効く
------------------------- */
#sec02 .circle {
  margin-right: 16px;
  display: inline-block;
  width: 48px;
  height: 48px;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  color: #4d4d4d;
}

#sec02 .sec02Inner01 {
  position: relative;
}

#sec02 .inner01-imageContainer {
  position: absolute;
  top: -313px;
  left: 0;
  width: 100%;
}

#sec02 .inner01-image01 {
  width: 1200px;
}

#sec02 .inner01-image02 {
  position: absolute;
  bottom: -191px;
  right: 3%;
  width: 800px;
}

#sec02 .inner01-text {
  margin-top: 249px;
  display: grid;
  row-gap: 32px;
  color: #f8cf23;
}

@media screen and (max-width: 1440px) {
  #sec01 .sec01Inner01 {
    padding-bottom: 389px;
  }

  #sec02 .inner01-imageContainer {
    top: -261px;
  }

  #sec02 .inner01-image01 {
    width: 1000px;
  }

  #sec02 .inner01-image02 {
    bottom: -95px;
    width: 400px;
  }

  #sec02 .inner01-text {
    margin-top: 197px;
  }
}

@media screen and (max-width: 768px) {
  #sec01 .sec01Inner01 {
    padding-bottom: 260px;
  }

  #sec02 .inner01-imageContainer {
    top: -196px;
  }

  #sec02 .inner01-image01 {
    width: calc(100% - 32px);
  }

  #sec02 .inner01-image02 {
    right: 0;
    width: 400px;
  }

  #sec02 .inner01-text {
    margin-top: 196px;
    row-gap: 16px;
  }
}

@media screen and (max-width: 450px) {
  #sec01 .sec01Inner01 {
    padding-bottom: 171px;
  }

  #sec02 .inner01-imageContainer {
    top: -107px;
  }

  #sec02 .inner01-image01 {
    width: calc(100% - 16px);
  }

  #sec02 .inner01-image02 {
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
  }

  #sec02 .inner01-text {
    margin-top: 191px;
  }
}

@media screen and (max-width: 375px) {
  #sec02 .inner01-imageContainer {
    top: -94px;
  }

  #sec02 .inner01-image01 {
    width: calc(100% - 16px);
  }

  #sec02 .inner01-text {
    margin-top: 148px;
  }
}

@media screen and (max-width: 320px) {
  #sec02 .inner01-imageContainer {
    top: -79px;
  }

  #sec02 .inner01-text {
    margin-top: 152px;
  }
}

/* クリエイティブ×コンサルティング
------------------------- */
#sec02 .sec02Inner02 {
  position: relative;
}

#sec02 .inner02-imageContainer {
  display: flex;
  justify-content: flex-end;
}

#sec02 .inner02-image01 {
  width: 1200px;
}

#sec02 .inner02-image02 {
  position: absolute;
  top: 50%;
  right: 1168px;
  transform: translateY(-50%);
  width: 400px;
}

#sec02 .inner02-textContainer {
  margin-right: 100px;
  padding: 64px 3%;
  border-right: 1px solid rgba(77, 77, 77, 0.5);
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 1600px) {
  #sec02 .inner02-image02 {
    right: 1008px;
  }
}

@media screen and (max-width: 1440px) {
  #sec02 .inner02-image01 {
    width: 1000px;
  }

  #sec02 .inner02-image02 {
    right: 800px;
  }
}

@media screen and (max-width: 1200px) {
  #sec02 .inner02-image02 {
    right: 692px;
    width: 300px;
  }
}

@media screen and (max-width: 768px) {
  #sec02 .inner02-image01 {
    width: calc(100% - 32px);
  }

  #sec02 .inner02-image02 {
    right: calc(100% - 316px);
  }

  #sec02 .inner02-textContainer {
    margin: 64px 0 0;
    padding: 0 3%;
    border-right: none;
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 450px) {
  #sec02 .inner02-image01 {
    width: calc(100% - 16px);
  }

  #sec02 .inner02-image02 {
    top: 106px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
  }

  #sec02 .inner02-textContainer {
    margin-top: 238px;
    justify-content: center;
  }
}

@media screen and (max-width: 375px) {
  #sec02 .inner02-image02 {
    top: 79px;
  }

  #sec02 .inner02-textContainer {
    margin-top: 265px;
  }
}

/* サッポロネストのクリエイティブは
------------------------- */
#sec02 .sec02Inner03 {
  margin-right: 100px;
  padding: 64px 3%;
  border-right: 1px solid rgba(77, 77, 77, 0.5);
  display: grid;
  grid-template-columns: minmax(448px, auto) minmax(400px, calc(100% - 576px));
  justify-content: center;
  align-items: center;
  column-gap: 128px;
}

#sec02 .inner03-textContainer {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(2, auto);
  row-gap: 64px;
}

@media screen and (max-width: 1200px) {
  #sec02 .sec02Inner03 {
    grid-template-columns: minmax(448px, auto) calc(100% - 512px);
    column-gap: 64px;
  }
}

@media screen and (max-width: 768px) {
  #sec02 .sec02Inner03 {
    margin: 64px auto 32px;
    padding: 0 3%;
    border-right: none;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    column-gap: 0px;
    row-gap: 64px;
  }

  #sec02 .inner03-textContainer {
    row-gap: 32px;
  }
}

/* 私たちは
------------------------- */
#sec02 .sec03Inner04 {
  margin-right: 100px;
  padding: 64px 3% 256px 0;
  border-right: 1px solid rgba(77, 77, 77, 0.5);
  display: grid;
  grid-template-columns: minmax(calc(50% - 64px), 1000px) minmax(506px, auto);
  justify-content: space-between;
  align-items: center;
  column-gap: 64px;
}

#sec02 .inner04-textContainer {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(2, auto);
  row-gap: 64px;
}

@media screen and (max-width: 1200px) {
  #sec02 .sec03Inner04 {
    padding: 64px 0 256px 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    column-gap: 0px;
    row-gap: 64px;
  }

  #sec02 .inner04-textContainer {
    padding: 0 3%;
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    row-gap: 64px;
  }
}

@media screen and (max-width: 768px) {
  #sec02 .sec03Inner04 {
    margin-right: 0;
    border-right: none;
    padding: 0 0 128px 0;
    row-gap: 32px;
  }

  #sec02 .inner04-textContainer {
    row-gap: 32px;
  }
}

/* ------------------------- */
/* #sec03
------------------------- */
/* 様々な領域のノウハウ、独自性の高いコンテンツ
------------------------- */
#sec03 {
  position: relative;
}

#sec03 .generalWrapper {
  padding-bottom: 256px;
}

#sec03 .sec03Inner01 {
  position: absolute;
  top: calc(calc(calc(-100vw + 100px) * 0.3) / 4);
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(calc(100vw - 100px) / 12);
  width: 94%;
  color: #f8cf23;
}

#sec03 .sec03Inner02 {
  margin-top: calc(calc(calc(calc(100vw - 100px) * 0.3) * 0.75) - 64px);
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  row-gap: 32px;
  column-gap: 32px;
}

#sec03 .sec03Inner02 li {
  width: 200px;
  text-align: center;
  transform: rotate(352deg);
}

#sec03 .sec03Inner03 {
  margin-top: 128px;
  display: flex;
  justify-content: left;
}

@media screen and (min-width: 1920px) {
  #sec03 .sec03Inner01 {
    position: absolute;
    top: -151px;
    font-size: 151px;
  }
}

@media screen and (max-width: 768px) {
  #sec03 .generalWrapper {
    padding-bottom: 128px;
  }

  #sec03 .sec03Inner01 {
    top: calc(calc(-94vw * 0.3) / 4);
    font-size: calc(94vw / 12);
  }

  #sec03 .sec03Inner02 {
    margin-top: calc(calc(94vw * 0.27) * 0.75);
  }

  #sec03 .sec03Inner02 li {
    width: 100px;
  }

  #sec03 .sec03Inner03 {
    margin-top: 64px;
  }
}

@media screen and (max-width: 450px) {
  #sec03 .sec03Inner01 {
    top: calc(calc(-94vw * 0.8) / 8);
    font-size: calc(94vw / 6);
    line-height: 1.2;
    width: 6em;
  }

  #sec03 .sec03Inner02 {
    margin-top: calc(calc(94vw * 0.8) - 32px);
    justify-content: center;
  }

  #sec03 .sec03Inner02 li {
    width: 100px;
  }
}

/* ------------------------- */
/* #sec04
------------------------- */
/* 制作実績例
------------------------- */
#sec04 {
  position: relative;
}

#sec04 .generalWrapper {
  padding-bottom: 256px;
}

#sec04 .sec04Inner01 {
  position: absolute;
  top: calc(calc(calc(-100vw + 100px) * 0.3) / 4);
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(calc(100vw - 100px) / 12);
  width: 94%;
  color: #f8cf23;
}

#sec04 .sec04Inner02 {
  margin-top: calc(calc(calc(calc(100vw - 100px) * 0.3) / 4) - 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  row-gap: 64px;
}

#sec04 .inner02-text {
  margin-top: 32px;
}

@media screen and (min-width: 1920px) {
  #sec04 .sec04Inner01 {
    position: absolute;
    top: -151px;
    font-size: 151px;
  }
}

@media screen and (max-width: 768px) {
  #sec04 .generalWrapper {
    padding-bottom: 128px;
  }

  #sec04 .sec04Inner01 {
    top: calc(calc(-94vw * 0.3) / 4);
    font-size: calc(94vw / 12);
  }

  #sec04 .sec04Inner02 {
    margin-top: calc(calc(calc(94vw * 0.15) / 2));
    column-gap: 32px;
    row-gap: 64px;
  }

  #sec04 .inner02-text {
    margin-top: 16px;
  }
}

@media screen and (max-width: 450px) {
  #sec04 .sec04Inner01 {
    top: calc(calc(-94vw * 0.8) / 8);
    font-size: calc(94vw / 6);
    line-height: 1.2;
    width: 6em;
  }

  #sec04 .sec04Inner02 {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    column-gap: 0px;
    row-gap: 32px;
  }
}

/* お客様の声
------------------------- */
#sec04 .sec04Inner03 {
  margin-top: 128px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, auto);
  row-gap: 64px;
}

#sec04 .sec04Inner03 li {
  margin: 0 3%;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(77, 77, 77, 0.5);
}

#sec04 .head-nameContainer {
  margin-bottom: 16px;
  padding-bottom: 16px;
  color: #f8cf23;
  border-bottom: 1px solid rgba(77, 77, 77, 0.5);
  text-align: right;
}

#sec04 .head-titleContainer {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
  cursor: pointer;
}

#sec04 .head-titleContainer::after {
  position: absolute;
  top: -2.5vw;
  left: 0;
  transform: translateY(-50%);
  content: "Customer Review";
  font-size: 5vw;
  font-weight: 300;
  white-space: nowrap;
  color: rgba(248, 207, 35, 0.3);
  z-index: -1;
}

#sec04 .title-accBtn,
#sec04 .closeBtn {
  position: relative;
  width: 30px;
  height: 30px;
}

#sec04 .title-accBtn span {
  position: absolute;
  top: 50%;
  content: "";
  width: 16px;
  height: 2px;
  background-color: #4d4d4d;
  transition: 0.4s ease;
}

#sec04 .title-accBtn span:nth-child(1) {
  left: 2px;
  transform: rotate(45deg);
}

#sec04 .title-accBtn span:nth-child(2) {
  left: 13px;
  transform: rotate(-45deg);
}

#sec04 .active .title-accBtn span:nth-child(1) {
  left: 2px;
  transform: rotate(-45deg);
}

#sec04 .active .title-accBtn span:nth-child(2) {
  left: 13px;
  transform: rotate(45deg);
}

#sec04 .inner03-detailContainer {
  display: none;
  animation: fadeIn 0.4s;
}

#sec04 .sec04-image05,
#sec04 .sec04-image06 {
  margin-top: 32px;
  width: 300px;
}

#sec04 .detail-text {
  margin-top: 32px;
}

#sec04 .detail-closeBtnContainer {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 8px;
  width: 100%;
  cursor: pointer;
}

#sec04 .closeBtn span {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #4d4d4d;
  transition: 0.4s ease;
}

#sec04 .closeBtn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

#sec04 .closeBtn span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  #sec04 .sec04Inner03 {
    margin-top: 64px;
  }

  #sec04 .head-titleContainer::after {
    top: -5vw;
    font-size: 10vw;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ------------------------- */
/* #sec05
------------------------- */
/* 制作実績例
------------------------- */
#sec05 {
  position: relative;
}

#sec05 .sec05Inner01 {
  position: absolute;
  top: calc(calc(calc(-100vw + 100px) * 0.3) / 4);
  left: 50%;
  transform: translateX(-50%);
  font-size: calc(calc(100vw - 100px) / 12);
  width: 94%;
  color: #f8cf23;
}

#sec05 .sec05Inner02 {
  margin-top: calc(calc(calc(calc(100vw - 100px) * 0.3) / 4) - 64px);
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(2, auto);
  row-gap: 64px;
}

#sec05 .contactBtn {
  padding: 8px 32px;
  border-radius: 32px;
  background-color: #f8cf23;
}

#sec05 .contactBtn:hover {
  background-color: #4d4d4d;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  #sec05 .sec05Inner01 {
    top: calc(calc(-94vw * 0.3) / 4);
    font-size: calc(94vw / 12);
  }

  #sec05 .sec05Inner02 {
    margin-top: calc(calc(calc(94vw * 0.15) / 2));
    row-gap: 32px;
  }
}

@media screen and (max-width: 450px) {
  #sec05 .sec05Inner01 {
    top: calc(calc(-94vw * 0.8) / 8);
    font-size: calc(94vw / 6);
    line-height: 1.2;
    width: 6em;
  }
}

/* ------------------------- */
/* #footer
------------------------- */
#footer .generalWrapper {
  padding-bottom: 16px;
}

#footer .footerInner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  row-gap: 64px;
}

#footer .deco {
  width: 200px;
}

#footer .infoContainer {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: flex-start;
  column-gap: 64px;
}

.link-nesting {
  position: relative;
  padding-left: calc(1em + 8px);
}

#footer .link-nesting::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "┗";
}

#footer .copylightContainer {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer .infoContainer {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    column-gap: 0px;
    row-gap: 32px;
  }
}

/* ------------------------- */
/* staff.index #staff
------------------------- */
/* 私たちがサッポロネストです。
------------------------- */
#staff {
  margin-top: 64px;
}

#staff .generalWrapper {
  padding-top: 64px;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: repeat(2, auto);
  row-gap: 128px;
}

#staff .staffInner01 {
  font-size: calc(calc(100vw - 100px) / 15);
  color: #f8cf23;
  text-align: center;
}

#staff .staffInner02 {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  display: grid;
  grid-template-columns: auto;
  /* grid-template-rows: repeat(7, 1fr);
  row-gap: 128px; */
  /* 20250707 修正 <s> */
  grid-template-rows: repeat(8, auto);
  row-gap: 48px;
  /* 20250707 修正 <e> */
}
/* 20250707 修正 <s> */
.mem_sp {
  display: none;
}
/* 20250707 修正 <e> */

#staff .inner02-itemContainer {
  display: flex;
  justify-content: center;
  align-items: center;
}

#staff .inner02-itemContainer:nth-child(even) {
  flex-direction: row-reverse;
}

#staff .inner02-image {
  width: 480px;
  height: auto;
}

#staff .textContainer {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

#staff .text-nameContainer {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  column-gap: 32px;
  line-height: 1;
}

#staff .number {
  text-align: center;
}

#staff .firstName {
  margin-top: 16px;
}

@media screen and (min-width: 1920px) {
  #staff .staffInner01 {
    font-size: 121px;
  }
}

@media screen and (max-width: 1200px) {
  #staff .inner02-itemContainer {
    padding-left: 128px;
    row-gap: 32px;
  }

  #staff .inner02-itemContainer:nth-child(1) {
    background: url("../img/staff-01.png") left center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(2) {
    background: url("../img/staff-02.png") left center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(3) {
    background: url("../img/staff-03.png") left center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(4) {
    background: url("../img/staff-04.png") left center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(5) {
    background: url("../img/staff-05.png") left -25% center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(6) {
    background: url("../img/staff-06.png") left -50% center no-repeat;
    background-size: contain;
  }

  #staff .inner02-itemContainer:nth-child(7) {
    background: url("../img/staff-07.png") left center no-repeat;
    background-size: contain;
  }

  #staff .inner02-image {
    display: none;
  }

  #staff .text-nameContainer {
    display: flex;
    flex-direction: column;
    align-items: end;
    row-gap: 16px;
  }

  #staff .name {
    text-align: right;
  }

  #staff .text-introContainer {
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

@media screen and (max-width: 768px) {
  #staff .generalWrapper {
    row-gap: 32px;
  }

  #staff .staffInner01 {
    font-size: calc(94vw / 15);
  }

  #staff .staffInner02 {
    row-gap: 64px;
  }
}

@media screen and (max-width: 450px) {
  #staff .staffInner01 {
    font-size: calc(94vw / 7);
    line-height: 1.2;
    text-align: left;
  }

  #staff .inner02-itemContainer:nth-child(1),
  #staff .inner02-itemContainer:nth-child(2),
  #staff .inner02-itemContainer:nth-child(3),
  #staff .inner02-itemContainer:nth-child(4),
  #staff .inner02-itemContainer:nth-child(5),
  #staff .inner02-itemContainer:nth-child(6),
  #staff .inner02-itemContainer:nth-child(7) {
    padding-left: 0px;
    background: none;
  }

  #staff .inner02-image {
    display: block;
  }

  #staff .inner02-itemContainer,
  #staff .inner02-itemContainer:nth-child(even) {
    flex-direction: column;
  }

  #staff .text-nameContainer {
    align-items: center;
  }

  #staff .name {
    text-align: center;
  }

  #staff .text-introContainer {
    padding: 0px;
    background: none;
  }

  /* 20250707 修正 <s> */
  .mem_pc {
    display: none;
  }
  .mem_sp {
    display: block;
  }
  /* 20250707 修正 <e> */
}
