@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
/* 共通 */
.business {
  width: 90.667vw;
  max-width: 1240px;
  margin: 0 auto;
}

.business * {
  margin: 0;
  padding: 0;
}

.business ul,
.business li {
  list-style: none;
}

.business a {
  transition: 0.3s;
}
.business a:hover {
  opacity: 0.7;
}

.business button {
  cursor: pointer;
}

.business_title {
  color: #000;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  text-align: center;
  border-bottom: none;
  margin-bottom: 4vw;
}

.business_title span {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .business_title {
    font-size: 28px;
    margin-bottom: 48px;
  }

  .business_title span {
    font-size: 18px;
  }  
}

@media (min-width: 768px) {
  .business_title span {
    display: inline;
  }
}

.business h3 {
  margin: 0;
  text-align: center;
  color: #002b66;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  background: transparent !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

.business h3 span {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .business h3 {
    font-size: 24px;
  }

  .business h3 span {
    font-size: 18px;
  }
}

/* 大口フラグ非表示 */
.block-header-hope {
  display: none !important;
}

/* ファーストビュー */
.fv {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);

  background-image: url("/event/business/business_sp.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  min-height: 1000px;
}

@media (min-width: 768px) {
  .fv {
    background-image: url("/event/business/business.png");
    min-height: 900px;
  }
}

.fv-content {
  position: absolute;
  top: 50%;
  left: 50%;  
  transform: translate(-50%, -50%);

  text-align: left;
  width: 90.667vw;
  max-width: 1240px;
  color: #08316d;
}

@media (min-width:768px) {
  .fv-content {
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 90.667vw;
    max-width: 1240px;
  }
}

.fv-title span {
  display: block;
  font-weight: 700;
  line-height: 1.35;
  font-size: 8vw;
}

@media (min-width: 768px) {
  .fv-title span {
    font-size: 42px;
  }
}

.fv-lead {
  margin-top: 20px;
  font-size: 3.6vw;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .fv-lead {
    font-size: 16px;
  }
}

/* 画像上に重ねるボタン */
.fv-btn {
  position: absolute;
  left: 100px;
  bottom: 60px;
  z-index: 10;

  display: grid;
  grid-template-columns: 22px auto 22px;
  align-items: center;
  column-gap: 8px; 

  background-color: #dc6225;
  border-radius: calc(infinity * 1px);

  color: #fff;
  font-family: var(--ff-helve);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none !important;

  padding-inline: 14px;
  padding-block: 8px;

  scale: var(--hover, 1.03);
  transition: scale .3s;
  will-change: scale;
}

/* ← アイコンの上下中央揃え */
.fv-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; 
}

.fv-btn .icon img {
  display: block; 
  width: 18px;
  height: auto;
}

/* SP：中央表示 */
@media (max-width: 768px) {
  .fv-btn {
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
  }
}

/* 30点以上のご注文なら */
.benefit {
  padding: 56px 16px;
  background: #fff;
}

.benefit__label {
  margin: 0 0 8px;
  text-align: center;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}

.benefit__title-wrap {
  text-align: center;
  margin-bottom: 4vw;
}

.benefit__title {
  display: inline;
  background: linear-gradient(transparent 60%, #f8e58c 60%);
  padding: 0 8px;
  color: #000;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  border-bottom: none;
}

.benefit__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.benefit-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  text-align: left;
}

.benefit-card__icon img {
  max-width: 100px;
  height: auto;
}

.benefit-card__body {
  flex: 1;
  min-width: 0;
}

.benefit-card h3 {
  margin: 0 0 8px;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  align-items: center;
  text-align: left;
  justify-content: flex-start;
}

.benefit-card h3 br {
  display: none;
}

.benefit-card p {
  margin: 0;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .benefit {
    padding: 80px 20;
  }

  .benefit__label {
    font-size: 18px;
  }

  .benefit__title-wrap {
    margin-bottom: 48px;
  }

  .benefit__title {
    font-size: 36px;
  }

  .benefit__title br {
    display: none;
  }

  .benefit__cards {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  .benefit-card {
    flex-direction: column;
    text-align: center;
    padding: 0px 18px 0px;
  }

  .benefit-card__icon img {
    max-width: 180px;
  }

  .benefit-card h3 {
    font-size: 20px;
    min-height: 64px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .benefit-card h3 br {
    display: inline;
  }
}

@media screen and (min-width: 1280px) {
  .benefit__cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* 目的別サポート */
.support {
  padding: 50px 20px;
  background: #fff;
}

.support__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.support-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 360px;
  padding: 24px 20px;
  border: 1px solid #dfe5ec;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.04);
}

.support-card__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.support-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.support-card__image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  flex: 1;
}

.support-card__image img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}

.support-card__items {
  margin: 0;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .support {
    padding: 80px 20px;
  }

  .support__cards {
    max-width: 1200px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .support-card {
    min-height: 420px;
    padding: 28px 20px 24px;
  }

  .support-card__image img {
    max-width: 260px;
  }

}

/* 理由 */
.reasons {
  padding: 48px 16px;
  background: #fff;
}

.reasons__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 10px;
  background: #fff;
}

.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.98) 0%,
    rgba(255,255,255,0.92) 38%,
    rgba(255,255,255,0.45) 68%,
    rgba(255,255,255,0.05) 100%
  );
}

.reason-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-card__content {
  position: relative;
  z-index: 2;
  width: 58%;
  padding: 24px 18px;
  color: #002b66;
}

.reason-card__num {
  display: block;
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.reason-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
}

.reason-card p {
  margin: 0;
  font-size: 14px;
  color: black;
  font-weight: 400;
  line-height: 1.9;
}

@media screen and (min-width: 768px) {
  .reasons {
    padding: 80px 20px;
  }

  .reasons__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .reason-card {
    min-height: 300px;
  }

  .reason-card__content {
    width: 54%;
    padding: 32px 22px;
  }

  .reason-card__num {
    font-size: 48px;
  }

  .reason-card h3 {
    font-size: 20px;
  }
}

/* おすすめ商品 */
.business .recommend {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  background: #F2F0E9;
  padding: 72px 18px;
}

.recommend_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 8px;
  margin-bottom: 10vw;
}

.recommend_item {
  border-top: none;
  padding: 0;
  text-align: left;
}

.recomend_inner {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.recommend_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 3vw;
}

.recommendInfo {
  padding: 0 10px;
}

.recommendInfo_text {
  margin-bottom: 2vw;
  font-size: 3vw;
}

.recommendInfo_price {
  margin-bottom: 2vw;
  font-size: 3vw;
}

.recommendInfo_price span {
  font-size: 4vw;
}

.recommendInfo_name {
  margin-bottom: 3vw;
  font-size: 3.2vw;
}

.recommend_text {
  margin-bottom: 5vw;
  font-size: 3.2vw;
  text-align: center;
  line-height: 1.58;
}

@media screen and (min-width: 768px) {
  .recommend {
    padding: 120px 0;
  }

  .recommend_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .recommend_item {
    border: none;
    padding: 0;
    font-size: 18px;
    flex-shrink: 0;
    width: calc(25% - 15px);
  }

  .recomend_inner {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;
    margin: 0 0 20px;
  }

  .recommend_image {
    width: 100%;
    height: 100%;
    margin-bottom: 20px;
  }

  .recommendInfo_text {
    margin-bottom: 10px;
    padding: 0 5px;
    font-size: 12px;
  }

  .recommendInfo_price {
    margin-bottom: 10px;
    padding: 0 5px;
    font-size: 12px;
  }

  .recommendInfo_price span {
    padding-left: 18px;
    font-size: 24px;
  }

  .recommendInfo_name {
    height: 5em;
    margin-bottom: 16px;
    padding: 0 5px;
    font-size: 1.37vw;
  }

  .recommend_text {
    margin-bottom: 30px;
    font-size: 18px;
  }

  @media screen and (min-width: 1280px) {
    .recomend_inner {
      width: 220px;
    }

    .recommend_image {
      width: 220px;
    }

    .recommendInfo_name {
      font-size: 14px;
    }

    .recommend_item {
      width: calc(20% - 16px);
    }
  }
}

.--limited .recomend_inner::after {
  content: "問い合わせ注文限定";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 30.667vw;
  height: auto;
  padding: 0 0.5em;
  background-color: #000;
  font-size: 10px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 767px) {
  .--limited .recomend_inner::after {
    top: -3vw;
  }
}

@media screen and (min-width: 768px) {
  .--limited .recomend_inner::after {
    top: -19px;
    width: max-content;
    font-size: 12px;
    border-radius: 0 5px 0 0;
  }
}

.cta_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3vw;

  position: relative;
  width: 88vw;
  height: 13.333vw;
  margin: 0 auto 10vw;
  padding: 5vw 4vw;
  border-radius: 8vw;

  font-weight: 500;
  font-size: 3.2vw;
  text-decoration: none;
  color: #fff;

  /* ホバー時に少し拡大 */
  scale: var(--hover, 1);
  transition: scale .3s;
  will-change: scale;
}

.cta_button:hover {
  --hover: 1.03;
}

@media screen and (min-width: 768px) {
  .cta_button {
    width: 500px;
    height: 68px;
    padding: 26px 30px;
    margin: 0 auto 60px;
    font-size: 16px;
    border-radius: 40px;
    gap: 12px;
  }
}

.cta_button .icon {
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.cta_button .icon-right {
  width: 4vw;
  height: 3vw;
  background-image: url("/event/oguchi/img/icon_arrow.png");
}

@media screen and (min-width: 768px) {
  .cta_button .icon-right {
    width: 16px;
    height: 16px;
  }
}

.cta_button.--black {
  background-color: #000;
}

.cta_button.--orange {
  background-color: #dc6225;
}

/* 左アイコン（メール） */
.cta_button.--orange .icon-left {
  width: 5.333vw;
  height: 4.399vw;
  background-image: url("/event/oguchi/img/icon_contact.png");
}

@media screen and (min-width: 768px) {
  .cta_button.--orange .icon-left {
    width: 22px;
    height: 18px;
  }
}


/* 製作事例 */
.case {
  padding: 48px 16px;
  background: #fff;
}

@media screen and (min-width: 768px) {
  .case {
    padding: 80px 20px;
  }
}

.block-case-voice-ttl {
  display: flex;
  align-items: center;
  padding: 0 0 10px;
  border-bottom: 1px solid #000;
  margin: 0 0 20px;
}

.block-case-voice-logo {
  width: 90px;
}

.block-case-voice-name {
  margin: 0 0 0 20px !important;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  width: calc(100% - 70px);
  border-bottom: none;
  text-align: left !important; 
}

.block-case-voice-images {
  margin: 0 0 40px;
}

.block-case-voice-media {
  margin: 0 0 24px;
}

.block-case-voice-media img {
  width: 100%;
}

.block-case-voice-media a {
  transition: opacity .3s;
}
.block-case-voice-media a:hover {
  opacity: .7;
}

.block-case-voice-category {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  gap: 8px;
}

.block-case-voice-category-item {
  padding: 8px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .1em;
  color: #0A0909;
  border: 1px solid #000;
  background: #fff;
  line-height: 1;
}

.block-case-voice-thumb-term {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  margin: 0 0 10px;
}

.block-case-voice-thumb-item + .block-case-voice-thumb-item {
  margin-top: 16px;
}

.block-case-voice-thumb-item a {
  transition: .3s;
}
.block-case-voice-thumb-item a:hover {
  opacity: .7;
}

.block-case-voice-thumb-box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.block-case-voice-thumb-img {
  width: 38%;
}

.block-case-voice-thumb-caption {
  width: 62%;
}

.block-case-voice-thumb-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.5;
  color: #000;
  text-decoration: underline;
}

.block-case-voice-text {
  margin: 0 0 24px;
}

.block-case-voice-text-list {
  position: relative;
  padding: 32px 24px;
  background: #F2F0E9;
}

.block-case-voice-text-term {
  display: inline-block;
  padding: 3px 18px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .08em;
  color: #000;
  background: #E4C256;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-50%);
}

.block-case-voice-text-desc,
.block-case-voice-text-foot {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: 1.75;
  color: #0A0909;
  margin-bottom: 5vw;
}

@media screen and (min-width: 1024px) {
  .block-case-voice-logo {
    width: 100px;
  }

  .block-case-voice-name {
    margin: 0 0 0 16px;
  }

  .block-case-voice-ttl {
    padding: 0 0 14px;
    margin: 0 0 32px;
  }

  .block-case-voice-images {
    display: grid;
    grid-template-columns: auto auto;
    gap: 24px;
    margin: 0 0 34px;
  }

  .block-case-voice-media {
    width: 450px;
    margin: 0;
  }

  .block-case-voice-category {
    margin: 0 0 16px;
  }

  .block-case-voice-category-item {
    font-size: 16px;
  }

  .block-case-voice-thumb-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 25px;
  }

  .block-case-voice-thumb-item + .block-case-voice-thumb-item {
    margin-top: 0;
  }

  .block-case-voice-thumb-box {
    flex-direction: column;
    gap: 12px 0;
  }

  .block-case-voice-thumb-img,
  .block-case-voice-thumb-caption {
    width: 100%;
  }

  .block-case-voice-thumb-link {
    font-size: 16px;
    letter-spacing: .06em;
  }

  .block-case-voice-text-list {
    padding: 32px;
  }

  .block-case-voice-text-desc,
  .block-case-voice-text-foot {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

/* よくある質問　*/
.c-faq-acc {
  margin-bottom: 5vw;
}

.c-faq-acc__q {
  margin-top: 5.333vw;
  padding: 2.4vw 4.8vw 2.4vw 5.6vw;
  min-height: 8.533vw;
  font-size: 3.2vw;
  font-weight: 500;
  border-bottom: 1px solid #000;
  position: relative;
  cursor: pointer;
}

.c-faq-acc__q::before,
.c-faq-acc__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 3.2vw;
  height: 1px;
  background: #000;
  transition: .3s;
  transform-origin: center;
}

.c-faq-acc__q::before {
  transform: translateY(-50%) rotate(0deg);
}

.c-faq-acc__q::after {
  transform: translateY(-50%) rotate(90deg);
}

.c-faq-acc__q.is-open::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-faq-acc__q.is-open::before {
  opacity: 0;
}

.c-faq-acc__q button {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none;
  color: #000 !important;
  font-size: inherit;
  font-weight: inherit;
  text-align: left;
  line-height: 1.5;
  cursor: pointer;
}

.c-faq-acc__q button::before {
  content: "Q.";
  display: block;
  font-family: Helvetica, "Open Sans", sans-serif;
  font-size: 3.466vw;
  font-weight: 600;
  position: absolute;
  left: 0;
}

.c-faq-acc__a {
  padding: 0 0 0 5.333vw;
  font-size: 3.466vw;
  line-height: 1.75;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
}

.c-faq-acc__a::before {
  content: "A.";
  position: absolute;
  left: 0;
  font-family: Helvetica, "Open Sans", sans-serif;
  font-size: 3.466vw;
  font-weight: 600;
}

.is-open + .c-faq-acc__a {
  padding: 4.8vw 0 0 5.333vw;
  max-height: fit-content;
  opacity: 1;
}

.c-faq-acc__img,
.c-faq-acc__btn,
.c-faq-acc__table {
  margin-left: -5.333vw;
  text-align: center;
}

@media (min-width: 768px) {
  .c-faq-acc {
    margin-bottom: 30px;
  }

  .c-faq-acc__q {
    margin-top: 40px;
    padding: 8px 0 8px 26px;
    min-height: 42px;
    font-size: 18px;
  }

  .c-faq-acc__q::before,
  .c-faq-acc__q::after {
    width: 16px;
    height: 2px;
    right: 20px;
  }

  .c-faq-acc__q button::before {
    font-size: 18px;
  }

  .c-faq-acc__a {
    padding-left: 26px;
    font-size: 16px;
  }

  .c-faq-acc__a::before {
    font-size: 18px;
  }

  .is-open + .c-faq-acc__a {
    padding: 36px 0 0 26px;
  }

  .c-faq-acc__img,
  .c-faq-acc__btn,
  .c-faq-acc__table {
    margin-left: -26px;
  }
}

/* お問い合わせ後の流れ */
.flow {
  background-color: #000;
  color: #fff;
  width: 100%;
  padding: 12vw 0 6.667vw;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 50px 0;
  }
}


.flow .content_title {
  margin-bottom: 5.333vw;
}
@media screen and (min-width: 768px) {
  .flow .content_title {
    margin-bottom: 25px;
    font-size: 25px;
  }
}

.flow_list {
  display: flex;
  overflow-x: auto;
  padding: 0 5.333vw;
}
@media screen and (min-width: 768px) {
  .flow_list {
    justify-content: center;
    padding-bottom: 20px;
  }
}

.flow_item {
  margin-right: -2.667vw;
}
@media screen and (min-width: 768px) {
  .flow_item {
    margin-right: -10px;
  }
}
.flow_item:nth-of-type(1) {
  z-index: 4;
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .flow_item:nth-of-type(1) {
    margin-left: 100px;
  }
}
.flow_item:nth-of-type(2) {
  z-index: 3;
}
.flow_item:nth-of-type(3) {
  z-index: 2;
}
.flow_item:nth-of-type(4) {
  z-index: 1;
}
.flow_item:last-child {
  margin-right: 0;
  margin-left: -2.4vw;
}
@media screen and (min-width: 768px) {
  .flow_item:last-child {
    margin-left: -10px;
  }
}

.flow_icon {
  width: 45.333vw;
  height: 40vw;
  margin-bottom: 8vw;
  padding: 2vw 8vw 2vw 3.333vw;
  background: url("/event/oguchi/img/flow_frame.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .flow_icon {
    width: 21.28vw;
    height: 19vw;
    margin-bottom: 2.97vw;
    padding: 0.99vw 3.96vw 0.99vw 0.99vw;
  }
}
@media screen and (min-width: 1280px) {
  .flow_icon {
    width: 215px;
    height: 192px;
    margin-bottom: 30px;
    padding: 10px 40px 10px 10px;
  }
}

.flow_item:last-child .flow_icon {
  background-image: url("/event/oguchi/img/flow_frame-last.png");
}

.flow_itemTitle {
  width: 34vw;
  padding-bottom: 2.667vw;
  font-family: Helvetica, sans-serif;
  font-size: 4.399vw;
  font-weight: bold;
  text-align: center;
  background: none;
  color: #fff;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .flow_itemTitle {
    width: 18.81vw;
    padding-bottom: 1.98vw;
    font-size: 1.78vw;
  }
}
@media screen and (min-width: 1280px) {
  .flow_itemTitle {
    width: 190px;
    padding-bottom: 20px;
    font-size: 18px;
  }
}

.flow_itemText {
  color: #fff;
  width: 40vw;
  padding: 0 1.733vw;
  font-weight: bold;
  font-size: 3.2vw;
  line-height: 1.58;
}
@media screen and (min-width: 768px) {
  .flow_itemText {
    width: 18.81vw;
    padding: 0 1.98vw;
    font-size: 1.38vw;
    line-height: 1.7;
  }
}
@media screen and (min-width: 1280px) {
  .flow_itemText {
    width: 190px;
    padding: 0 20px;
    font-size: 14px;
  }
}

.flow_itemCap {
  display: block;
  width: 34vw;
  margin-top: 2.667vw;
  padding-left: 1.733vw;
  font-size: 2.66vw;
}
@media screen and (min-width: 768px) {
  .flow_itemCap {
    width: 170px;
    margin-top: 20px;
    padding-left: 20px;
    font-size: 12px;
  }
}

/* 製作事例 */
.production {
  width: 100%;
  margin-bottom: 13.333vw;
  padding-top: 13.333vw;
}
@media screen and (min-width: 768px) {
  .production {
    margin-bottom: 100px;
    padding-top: 80px;
  }
}

.production .content_title {
  margin-bottom: 5.333vw;
}
@media screen and (min-width: 768px) {
  .production .content_title {
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: bold;
  }
}

.productionNav {
  position: relative;
  z-index: 1;
}

.productionNav__list {
  width: 94.667vw;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.333vw;
}
@media screen and (min-width: 768px) {
  .productionNav__list {
    width: 90%;
    max-width: 1010px;
    gap: 10px;
  }
}

.productionNav__item {
  width: 100%;
  border-bottom: 2px solid #000;
  padding: 4vw 0 2.933vw;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .productionNav__item {
    padding: 21px 0 22px;
  }
  .productionNav__item:hover {
    background-color: #000;
    border: none;
  }
}

.productionNav__item.is-active {
  background-color: #000;
  border: none;
}
@media screen and (min-width: 768px) {
  .productionNav__item.is-active {
    background-color: transparent;
    color: #000;
    border-bottom: 2px solid #000;
  }
  .productionNav__item.is-active:hover {
    background-color: #000;
    color: #fff;
  }
}

.productionNav__item a {
  text-decoration: none;
}

.productionNav__link {
  display: inline-block;
  width: 18.667vw;
  color: #000;
  font-family: Helvetica, sans-serif;
  font-size: 3.2vw;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .productionNav__link {
    width: 17.6vw;
    font-size: 2.77vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionNav__link {
    width: 178px;
    font-size: 28px;
  }
}

.productionNav__link::before {
  content: "CASE";
  font-size: 1.8667vw;
  font-weight: bold;
  position: absolute;
  top: -2.667vw;
  left: -4em;
}
@media screen and (min-width: 768px) {
  .productionNav__link::before {
    font-size: 1.38vw;
    top: 1.09vw;
    left: -11.5vw;
    z-index: 1;
  }
}
@media screen and (min-width: 1280px) {
  .productionNav__link::before {
    font-size: 14px;
    top: 11px;
    left: -118px;
  }
}

.productionNav__link::after {
  content: "01";
  color: #A2A19B;
  font-family: "Arial Black", Helvetica, sans-serif;
  font-size: 5.6vw;
  font-weight: bold;
  position: absolute;
  top: -0.933vw;
  left: -8.933vw;
}
@media screen and (min-width: 768px) {
  .productionNav__link::after {
    font-size: 4.95vw;
    top: -1.19vw;
    left: -8.91vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionNav__link::after {
    font-size: 50px;
    top: -12px;
    left: -90px;
  }
}

.productionNav__item:nth-child(2) .productionNav__link::after {
  content: "02";
}

.productionNav__item:nth-child(3) .productionNav__link::after {
  content: "03";
}

.productionNav__item.is-active .productionNav__link {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .productionNav__item.is-active .productionNav__link {
    color: #000;
  }
}

@media screen and (min-width: 768px) {
  .productionNav__item:hover .productionNav__link {
    color: #fff;
  }
}

.productionSection {
  display: none;
  position: relative;
  padding-top: 6.667vw;
}
@media screen and (min-width: 768px) {
  .productionSection {
    display: block;
    padding-top: 230px;
    margin-top: -160px;
    margin-bottom: 95px;
  }
}
.productionSection#case2 {
  padding-bottom: 1px;
  background: #f2f0e9;
}
@media screen and (min-width: 768px) {
  .productionSection#case2 {
    margin-bottom: 0;
    padding: 230px 0 80px;
    background: transparent;
  }
  .productionSection#case2::before {
    content: "";
    display: block;
    position: absolute;
    top: 160px;
    left: 0;
    right: 0;
    bottom: -160px;
    width: 100%;
    height: calc(100% - 160px);
    background: #f2f0e9;
  }
}

.productionSection.is-active {
  display: block;
}

.productionBox:first-of-type {
  width: 93.333vw;
  padding-top: 7.733vw;
  padding-left: 7.6vw;
  padding-bottom: 5.067vw;
  background-color: #F2F0E9;
  position: relative;
}
@media screen and (min-width: 768px) {
  .productionBox:first-of-type {
    width: 63%;
    padding-top: 5.74vw;
    padding-right: 4%;
    padding-bottom: 3.96vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox:first-of-type {
    padding-top: 58px;
    padding-right: 12%;
    padding-bottom: 40px;
  }
}
#case2 .productionBox:first-of-type {
  background: #fff;
}

.productionSection__title {
  padding-left: 0.7em;
  font-family: Helvetica, sans-serif;
  font-size: 5.466vw;
  font-weight: bold;
  border-bottom: 1px solid;
  margin-left: 18.667vw;
  margin-bottom: 4.4vw;
  padding-bottom: 2.667vw;
  background: none;
}
@media screen and (min-width: 768px) {
  .productionSection__title {
    font-size: 4.06vw;
    width: 42.18vw;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 3.96;
    padding-bottom: 1.98;
    position: relative;
  }
}
@media screen and (min-width: 1280px) {
  .productionSection__title {
    font-size: 41px;
    width: 417px;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}

.productionSection__title::before {
  content: "";
  display: block;
  width: 18.4vw;
  height: 19.333vw;
  background-image: url("/event/oguchi/img/production_num01.png");
  background-size: 100% 100%;
  position: absolute;
  top: 12vw;
  left: 6.667vw;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .productionSection__title::before {
    width: 13.27vw;
    height: 13.96vw;
    top: auto;
    left: -12.87vw;
    bottom: -2.97vw;
    transform: none;
  }
}
@media screen and (min-width: 1280px) {
  .productionSection__title::before {
    width: 134px;
    height: 141px;
    left: -130px;
    bottom: -30px;
  }
}

.productionSection:nth-child(2) .productionSection__title::before {
  background-image: url("/event/oguchi/img/production_num02.png");
}

.productionSection:nth-child(3) .productionSection__title::before {
  background-image: url("/event/oguchi/img/production_num03.png");
}

.productionSection__subText {
  padding-right: 11.6vw;
  padding-bottom: 2.667vw;
  border-bottom: 1px solid #000;
  font-size: 3.2vw;
  font-weight: bold;
  line-height: 1.58;
}
@media screen and (min-width: 768px) {
  .productionSection__subText {
    font-size: 1.58vw;
    width: 54.55vw;
    margin-left: auto;
    margin-right: 0;
    padding-left: 1.58vw;
    padding-right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .productionSection__subText {
    font-size: 16px;
    width: 551px;
    padding-left: 16px;
    padding-bottom: 28px;
  }
}

.productionBox:nth-of-type(n+2) {
  display: grid;
  margin-bottom: 13.333vw;
  padding-top: 8.933vw;
}
@media screen and (min-width: 768px) {
  .productionBox:nth-of-type(n+2) {
    /* grid-template-columns: 560px 1fr repeat(3, 0);
    grid-template-rows: repeat(2, 1fr) repeat(3, 0);
    grid-column-gap: 0px;
    grid-row-gap: 0px; */
    justify-content: flex-start;
    width: 95%;
    max-width: 1100px;
    margin: 0 auto 70px;
    padding-top: 75px;
    position: relative;
  }
}

.productionBox:nth-of-type(n+3) {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  #case1 .productionBox:nth-of-type(3) {
    margin-bottom: 35.15vw;
  }
}
@media screen and (min-width: 1280px) {
  #case1 .productionBox:nth-of-type(3) {
    margin-bottom: 450px;
  }
}

@media screen and (min-width: 768px) {
  .productionBox:nth-of-type(3) {
    justify-content: flex-end;
    margin-bottom: 22.66vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox:nth-of-type(3) {
    justify-content: flex-end;
    margin-bottom: 290px;
  }
}

.productionBox_title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 3.733vw;
  font-size: 3.467vw;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  position: relative;
}
@media screen and (min-width: 768px) {
  .productionBox_title {
    font-size: 1.78vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox_title {
    /* grid-area: 1 / 1 / 2 / 2; */
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.productionBox_title::before {
  content: "";
  display: inline-block;
  background-image: url("/event/oguchi/img/productionTitle_quart.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 5vw;
  height: 5vw;
  position: absolute;
  left: -7.667vw;
  top: -5px;
}
@media screen and (min-width: 768px) {
  .productionBox_title::before {
    width: 3.16vw;
    height: 3.16vw;
    left: -3.96vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox_title::before {
    width: 32px;
    height: 32px;
    left: -40px;
  }
}

.productionBox_title::after {
  content: "";
  display: inline-block;
  background-image: url("/event/oguchi/img/productionTitle_backQuart.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 5vw;
  height: 5vw;
  position: absolute;
  right: -7.667vw;
  top: -5px;
}
@media screen and (min-width: 768px) {
  .productionBox_title::after {
    width: 3.16vw;
    height: 3.16vw;
    right: -3.96vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox_title::after {
    width: 32px;
    height: 32px;
    right: -40px;
  }
}

.productionBox_inner {
  order: 3;
  width: 85.333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .productionBox_inner {
    order: 2;
    width: 55.45vw;
    padding-left: 2.97vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox_inner {
    /* grid-area: 2 / 1 / 3 / 2; */
    width: 560px;
    padding-left: 30px;
  }
}

.productionBox_text.-name {
  font-size: 2.933vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .productionBox_text.-name {
    font-size: 14px;
  }
}

.productionBox_text {
  font-size: 2.667vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .productionBox_text {
    font-size: 12px;
  }
}

.productionBox_text span {
  display: inline-block;
  font-size: 4.267vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .productionBox_text span {
    font-size: 22px;
  }
}

.productionBox_image {
  order: 2;
  width: 68.266vw;
  margin: 0 auto 6.667vw;
}
@media screen and (min-width: 768px) {
  .productionBox_image {
    width: 36vw;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 1280px) {
  .productionBox_image {
    width: 466px;
  }
}

@media screen and (min-width: 768px) {
  .productionBox:nth-of-type(3) .productionBox_image {
    top: 0;
    right: auto;
    left: 0;
  }
}

.productionPoint {
  border-bottom: 1px solid #000;
  margin-top: 7.6vw;
  padding-left: 1.333vw;
  padding-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .productionPoint {
    margin-top: 2.47vw;
    padding-left: 1.58vw;
    padding-bottom: 2.97vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionPoint {
    margin-top: 25px;
    padding-left: 16px;
    padding-bottom: 30px;
  }
}

.productionPoint_title {
  margin-bottom: 4vw;
  position: relative;
  font-size: 2.933vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .productionPoint_title {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.productionPoint_title::after {
  content: "";
  width: 64vw;
  height: 1px;
  background-color: #000;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .productionPoint_title::after {
    width: 37.5vw;
  }
}
@media screen and (min-width: 1280px) {
  .productionPoint_title::after {
    width: 430px;
  }
}

.productionPoint_item {
  position: relative;
  margin-bottom: 2.667vw;
  padding-left: 1em;
  font-size: 2.933vw;
}
@media screen and (min-width: 768px) {
  .productionPoint_item {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.productionPoint_item:last-of-type {
  margin-bottom: 0;
}

.productionPoint_item::before {
  content: "";
  display: inline-block;
  width: 3.067vw;
  height: 3.067vw;
  position: absolute;
  left: -0.5em;
  background-image: url("/event/oguchi/img/icon_check.png");
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .productionPoint_item::before {
    width: 14px;
    height: 14px;
  }
}

.production_jumpButton {
  color: #000;
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto 0;
  padding-bottom: 9px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #000;
}

.production_jumpButton::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 12px;
  background-image: url("/event/oguchi/img/icon_jumpArrow.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position-x: 5px;
  margin-left: 8px;
  transform: rotate(180deg);
}

.links {
  color: #fff;
  background-color: #000;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .links {
    display: flex;
    justify-content: center;
  }
}

.links_box {
  padding-top: 9.333vw;
  padding-bottom: 10.667vw;
}
@media screen and (min-width: 768px) {
  .links_box {
    width: 50%;
    max-width: 505px;
    padding-top: 76px;
    padding-bottom: 73px;
  }
}

.links_box:first-of-type {
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .links_box:first-of-type {
    border: none;
  }
}

.links_title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5.333vw;
  padding-bottom: 2.4vw;
  font-size: 4.533vw;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .links_title {
    margin-bottom: 40px;
    padding-bottom: 9px;
    font-size: 1.56vw;
  }
}
@media screen and (min-width: 1280px) {
  .links_title {
    font-size: 20px;
  }
}

.links_text {
  color: #fff;
  width: 90.667vw;
  margin: 0 auto 6.667vw;
  font-size: 3.467vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .links_text {
    width: 100%;
    margin-bottom: 3.125vw;
    font-size: 1.25vw;
  }
}
@media screen and (min-width: 1280px) {
  .links_text {
    margin-bottom: 40px;
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .links_box:last-of-type .links_text {
    margin-bottom: 4.69vw;
  }
}
@media screen and (min-width: 1280px) {
  .links_box:last-of-type .links_text {
    margin-bottom: 65px;
  }
}

.cta_button.--white {
  background-color: #fff;
  color: #000 !important;
}
@media screen and (min-width: 768px) {
  .cta_button.--white {
    width: 31.25vw;
    height: 4.69vw;
    padding: 2.03vw 2.34vw 2.03vw 3.125vw;
    font-size: 1.09vw;
  }
}
@media screen and (min-width: 1280px) {
  .cta_button.--white {
    width: 400px;
    height: 68px;
    padding: 26px 30px 26px 40px;
    font-size: 14px;
  }
}

.cta_button.--white::before {
  background-image: url("/event/oguchi/img/icon_contact-white.png");
}
@media screen and (min-width: 768px) {
  .cta_button.--white::before {
    width: 1.72vw;
    height: 1.41vw;
    margin-right: 1.17vw;
  }
}
@media screen and (min-width: 1280px) {
  .cta_button.--white::before {
    width: 22px;
    height: 18px;
    margin-right: 15px;
  }
}

.cta_button.--white::after {
  background-image: url("/event/oguchi/img/icon_arrow-white.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.links_button.--white::before {
  background-image: url("/event/oguchi/img/icon_pdf.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.links_button.--white::after {
  margin-left: auto;
}/*# sourceMappingURL=style.css.map */



.block-lineup-filter--btn,.block-lineup-aside {
  display: none !important;
}

.block-topic-path, .block-lineup-title {
  display: none;
}

.block-lineup-items {
  padding-inline: 0;
  padding-top: 45px;
}

.wrapper {
  display: block;
  max-width: none;
}

.wrapper hgroup h2 {
  border-bottom: none;
  padding: 0;
  margin: 0;
  background: none;
}


@media screen and (min-width: 768px) {
  .pane-contents .wrapper {
    margin: 0 auto;
    display: block;
  }

  .container {
    max-width: none;
  }

  .block-lineup-items {
    padding-inline: 0;
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .block-lineup-wrap {
    padding-top: 0;
    padding-inline: 0;
    inline-size: 100%;
  }
  .block-lineup-wrap.block-ranking-wrap {
    padding-inline: 0;
    padding-top: 0;
  }

  .box:has(.boxPoint) {
    overflow: hidden;
  }
}

@media screen and (min-width: 1280px) {
  .block-lineup-items {
    padding-top: 77px;
    padding-bottom: 0;
  }
}