/* =======================
 フォント
======================= */
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=M+PLUS+1p&family=M+PLUS+2:wght@100..900&display=swap");

/* SemiBold (600) */
@font-face {
  font-family: "GenEiGothicP";
  src: url("/wp-content/themes/aigan/fonts/GenEiGothicP-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Bold (700) */
@font-face {
  font-family: "GenEiGothicP";
  src: url("/wp-content/themes/aigan/fonts/GenEiGothicP-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Heavy (800) */
@font-face {
  font-family: "GenEiGothicP";
  src: url("/wp/wp-content/themes/aigan/fonts/GenEiGothicP-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Heavy alias (700 としても使えるように) */
@font-face {
  font-family: "GenEiGothicP";
  src: url("/wp/wp-content/themes/aigan/fonts/GenEiGothicP-Heavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.font-genei-semi {
  font-family: "GenEiGothicP", sans-serif !important;
  font-weight: 600 !important;
}

.font-genei-bold {
  font-family: "GenEiGothicP", sans-serif !important;
  font-weight: 700 !important;
}

.font-genei-heavy {
  font-family: "GenEiGothicP", sans-serif !important;
  font-weight: 800 !important;
}

.font-jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.font-mplus2 {
  font-family: "M PLUS 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.font-mplus1 {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* =======================
 ディスプレイ
======================= */
.pc {
  display: block;
}
.tab {
  display: none;
}
.sp {
  display: none;
}
@media screen and (max-width: 1059px) {
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .box-post {
    padding-top: 0;
  }
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .sp {
    display: block;
  }
}
.main .container-fluid {
  padding: 8rem 0 0;
}
@media screen and (max-width: 767px) {
  .main .container-fluid.pt0 {
    padding: 0;
  }
}
.main .container-inner {
  width: auto;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.p-history__start span,
.p-history__future span {
  font-family: "Merriweather", serif;
}
/* =======================
 アニメーション
======================= */

/* ============ fade-in ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* ============ left-in / right-in ============ */
.left-in,
.right-in {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

.left-in {
  transform: translateX(-40px);
}
.right-in {
  transform: translateX(40px);
}

.left-in.js-show,
.right-in.js-show {
  opacity: 1;
  transform: translateX(0);
}

/* =======================
 ボタン
======================= */
.btn_area a {
}
.btn_area a:hover {
  text-decoration: none;
}
.btn_area a:hover > * {
  opacity: 0.7;
  transition: all 0.3s;
}
/* =======================
 レイアウト
======================= */
.content__blackandred {
  overflow: hidden;
  position: relative;
}
.blackandred_section {
  padding-left: 20px;
  padding-right: 20px;
}
.sec__inner {
  max-width: 116rem;
  margin: auto;
}
/* sec_mv_bg(背景塗りたし) */
.sec_mv_bg {
  width: 100%;
  height: 500px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .sec_mv_bg {
    height: 500px;
  }
}

/* sec_mv */
.sec_mv {
  margin-top: -500px;
  background-image: url(/wp/wp-content/uploads/feature/foryou_black_and_red/mv_bg.webp);
  background-position: bottom -17vw center;
  background-repeat: no-repeat;
  background-size: 100%;
  text-align: center;
  position: relative;
  transform: skewY(-10deg);
  z-index: 1;
}

.sec_mv > * {
  transform: skewY(10deg);
}
.sec_mv__inner {
  padding-block-start: 60px;
  padding-block-end: 40vh;
}

.sec_mv__online img {
  width: 430px;
  max-width: 90%;
}
.sec_mv__title {
  margin-top: 30px;
  line-height: 1.2;
}
.sec_mv__title--black {
  color: transparent; /* 中身を透明にする */
  -webkit-text-stroke: 2px #fff; /* Chrome/Safari 等 */
  text-stroke: 2px #fff; /* 仕様名（互換性のため記述） */
  font-size: 68px;
}
.sec_mv__title--and {
  font-size: 53px;
  color: #fff;
}
.sec_mv__title--red {
  font-size: 68px;
  color: #c8161d;
}

.sec_mv__title--model {
  color: #fff;
  font-size: 68px;
}

.sec_mv__logo {
  margin-top: 50px;
  width: 205px;
  margin-left: auto;
  margin-right: 5vw;
}
@media screen and (max-width: 1900px) {
  .sec_mv {
    background-position: bottom -12vw center;
  }
}
@media screen and (max-width: 1700px) {
  .sec_mv {
    background-size: 110%;
    background-position: bottom -9vw center;
  }
}
@media screen and (max-width: 1300px) {
  .sec_mv {
    background-size: 120%;
    background-position: bottom 2vw center;
  }
}
@media screen and (max-width: 1059px) {
  .sec_mv {
    background-size: 130%;
    background-position: bottom -18vw center;
  }

  .sec_mv__inner {
    padding-block-end: 330px;
  }

  .sec_mv__online img {
    width: 400px;
  }
  .sec_mv__title {
    margin-top: 30px;
  }
  .sec_mv__title--black {
    font-size: 58px;
  }
  .sec_mv__title--and {
    font-size: 43px;
  }
  .sec_mv__title--red {
    font-size: 58px;
  }

  .sec_mv__title--model {
    font-size: 58px;
  }

  .sec_mv__logo {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .sec_mv {
    margin-top: -470px;
    background-position: bottom -130px center;
    background-size: 150%;
    letter-spacing: 0.1em;
  }

  .sec_mv__inner {
    padding-block-start: 0;
  }

  .sec_mv__online img {
    width: 260px;
  }
  .sec_mv__title {
    line-height: 1.2;
    margin-top: 20px;
  }
  .sec_mv__title--black {
    font-size: 40px;
  }
  .sec_mv__title--and {
    font-size: 20px;
  }
  .sec_mv__title--red {
    font-size: 40px;
  }

  .sec_mv__title--model {
    font-size: 40px;
  }

  .sec_mv__logo {
    margin-top: 20px;
    width: 90px;
  }
}
@media screen and (max-width: 590px) {
  .sec_mv {
    background-position: bottom -8vh center;
    background-size: 190%;
  }
}
@media screen and (max-width: 420px) {
  .sec_mv {
    background-position: bottom -3vh center;
  }
}
@media screen and (max-width: 300px) {
  .sec_mv {
    background-position: bottom -1vh center;
  }
}

/* sec_02 */
.sec_02 {
  margin-top: 0;
  padding-block-start: 140px;
  padding-bottom: 100px;
  text-align: center;
  letter-spacing: 0.1em;
  transform: skewY(-10deg);
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.sec_02 > * {
  transform: skewY(10deg);
}
.sec_02__inner {
}

.sec_02__title {
  font-size: 38px;
  line-height: 70px;
  color: #000;
  transform: rotate(-10deg);
  transform-origin: left bottom;
  padding-left: 1em;
}
.sec_02__title .newcolor {
  font-size: 60px;
  color: #fff100;
  font-weight: 900;
  -webkit-text-stroke: 15px #000;
  paint-order: stroke;
  padding-left: 0.5em;
}
.sec_02__title .bicolor {
  font-size: 60px;
  font-weight: 800;
  background: linear-gradient(to bottom, #c8161d 50%, #000 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* 文字を背景で塗りつぶす */
  margin-left: 0.1em;
  line-height: 1;
}

.sec_02__img01 {
  margin-top: -4vh;
}
.sec_02__img01 img {
  width: 700px;
  max-width: 100%;
}

.sec_02__flex01 {
  margin-top: 20px;
  gap: 15px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sec_02__flex01 .flex_item {
  padding: 60px 110px 120px 110px;
  flex: 1;
  background-image: url("/wp/wp-content/uploads/feature/foryou_black_and_red/sec02_img04.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
}

.sec_02__flex01__title {
  font-size: 34px;
  color: #c8161d;
}

.sec_02__flex01__txt {
  margin-top: 30px;
  text-align: left;
}
.sec_02__flex01 .flex_item img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 67%;
}
.sec_02__flex01--content01 img {
  bottom: -250px;
}
.sec_02__flex01--content02 img {
  bottom: -150px;
}
@media screen and (max-width: 1900px) {
  .sec_02 {
    margin-top: -40px;
  }
}
@media screen and (max-width: 1700px) {
  .sec_02 {
    margin-top: -100px;
  }
}
@media screen and (max-width: 1300px) {
  .sec_02 {
    margin-top: -200px;
  }
}
@media screen and (max-width: 1059px) {
  .sec_02 {
    margin-top: -40px;
  }
  .sec_02 {
  }
  .sec_02 > * {
  }
  .sec_02__inner {
  }

  .sec_02__title {
    font-size: 28px;
    line-height: 60px;
  }
  .sec_02__title .newcolor {
    font-size: 50px;
  }
  .sec_02__title .bicolor {
    font-size: 50px;
  }

  .sec_02__img01 {
    margin-top: -30px;
  }

  .sec_02__flex01 {
    margin-top: 0;
    gap: 15px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
  }
  .sec_02__flex01 .flex_item {
    padding: 50px 70px 60px 70px;
  }

  .sec_02__flex01__title {
    font-size: 30px;
  }

  .sec_02__flex01__txt {
    margin-top: 28px;
  }
  .sec_02__flex01 .flex_item img {
    width: 300px;
  }
  .sec_02__flex01--content01 img {
    bottom: -220px;
  }
  .sec_02__flex01--content02 img {
    bottom: -140px;
  }
}
@media screen and (max-width: 767px) {
  .sec_02 {
    margin-top: -40px;
    padding-block-start: 90px;
    padding-bottom: 0;
  }
  .sec_02 > * {
  }
  .sec_02__inner {
  }

  .sec_02__title {
    font-size: 22px;
    line-height: 37px;
  }
  .sec_02__title .newcolor {
    font-size: 31px;
    -webkit-text-stroke: 10px #000;
  }
  .sec_02__title .bicolor {
    font-size: 31px;
  }

  .sec_02__img01 {
    margin-top: 0;
  }

  .sec_02__flex01 {
    margin-top: 20px;
    align-items: center;
    flex-direction: column;
    gap: 130px;
  }
  .sec_02__flex01 .flex_item {
    padding: 20px 40px 100px 40px;
    background-position: top center;
  }

  .sec_02__flex01__title {
    font-size: 24px;
  }

  .sec_02__flex01__txt {
    margin-top: 10px;
  }
  .sec_02__flex01 .flex_item img {
    width: 240px;
  }
  .sec_02__flex01--content01 img {
    bottom: -120px;
  }
  .sec_02__flex01--content02 img {
    bottom: -100px;
  }
}
@media screen and (max-width: 590px) {
  .sec_02 {
    padding-block-start: 70px;
  }
}
/* sec_03 */
.sec_03 {
  padding-top: 170px;
  padding-bottom: 170px;
  background-color: #000;
  position: relative;
  letter-spacing: 0.1em;
  transform: skewY(-10deg);
  margin-top: 80px;
}
.sec_03 > * {
  transform: skewY(10deg);
}

.sec_03__inner {
}

.sec_03__title {
  line-height: 1.4;
  font-size: 51px;
  color: #fff;
  -webkit-text-stroke: 12px #c8161d;
  paint-order: stroke;
  text-align: center;
  transform: rotate(-10deg);
  transform-origin: left bottom;
  padding-left: 1em;
}

.sec_03__flex--01 {
  margin-top: 40px;
  display: flex;
}

.sec_03__flex--01 .flex_item {
}

.sec_03__flex--content01 {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.sec_03__flex__upper {
}

.sec_03__flex__lower {
  margin-top: 30px;
}

.sec_03__flex--content02 {
  flex: 1;
}

.sec_03__flex--01 .txt01 {
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 0;
}
.sec_03__flex--01 .txt01 .black {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
  paint-order: stroke;

  font-size: 42px;
}
.sec_03__flex--01 .txt01 .and {
  font-size: 32px;
}
.sec_03__flex--01 .txt01 .red {
  color: #c8161d;
  font-size: 42px;
}
.sec_03__flex--01 .txt02 {
  color: #fff;
  line-height: 1.5;
  margin-top: 0.8em;
}
.sec_03__flex--02 {
  margin-top: 50px;
  display: flex;
}
.sec_03__flex--02 .txt03 {
  color: #fff;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 0;
}
.sec_03__flex--02 .txt03 .red {
  color: #c8161d;
  font-size: 43px;
}

@media screen and (max-width: 1059px) {
  .sec_03 {
    padding-top: 140px;
    padding-bottom: 120px;
  }

  .sec_03__inner {
  }

  .sec_03__title {
    font-size: 42px;
  }

  .sec_03__flex--01 {
    margin-top: 40px;
  }

  .sec_03__flex--01 .flex_item {
  }

  .sec_03__flex--content01 {
  }

  .sec_03__flex__upper {
  }

  .sec_03__flex__lower {
  }

  .sec_03__flex--content02 {
  }

  .sec_03__flex--01 .txt01 {
    font-size: 20px;
  }
  .sec_03__flex--01 .txt01 .black {
    font-size: 32px;
  }
  .sec_03__flex--01 .txt01 .and {
    font-size: 22px;
  }
  .sec_03__flex--01 .txt01 .red {
    font-size: 32px;
  }
  .sec_03__flex--01 .txt02 {
  }
  .sec_03__flex--02 {
    margin-top: 40px;
  }
  .sec_03__flex--02 .txt03 {
    font-size: 20px;
  }
  .sec_03__flex--02 .txt03 .red {
    font-size: 33px;
  }
}
@media screen and (max-width: 767px) {
  .sec_03 {
    margin-top: 0;
    padding-top: 80px;
    padding-bottom: 70px;
  }

  .sec_03__inner {
  }

  .sec_03__title {
    font-size: 28px;
  }

  .sec_03__flex--01 {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .sec_03__flex--01 .flex_item {
    width: 100%;
    flex: auto;
  }

  .sec_03__flex--content01 {
  }

  .sec_03__flex__upper {
    text-align: center;
  }
  .sec_03__flex__upper img {
    max-width: 260px;
  }

  .sec_03__flex__lower {
    text-align: center;
  }

  .sec_03__flex--content02 {
  }

  .sec_03__flex--01 .txt01 {
    font-size: 24px;
  }
  .sec_03__flex--01 .txt01 .black {
    font-size: 32px;
    -webkit-text-stroke: 1px #fff;
    text-stroke: 1px #fff;
  }
  .sec_03__flex--01 .txt01 .and {
    font-size: 20px;
  }
  .sec_03__flex--01 .txt01 .red {
    font-size: 32px;
  }
  .sec_03__flex--01 .txt02 {
  }
  .sec_03__flex--02 {
    flex-wrap: wrap;
    gap: 10px;
  }
  .sec_03__flex--02 .flex_item {
    width: 100%;
    flex: auto;
  }

  .sec_03__flex--02 .sec_03__flex--content02 {
    order: 1;
  }
  .sec_03__flex--02 .sec_03__flex--content01 {
    order: 0;
  }
  .sec_03__flex--02 .txt03 {
    font-size: 24px;
  }
  .sec_03__flex--02 .txt03 .red {
    font-size: 32px;
  }
}
/* sec_04 */
.sec_04 {
  background-color: #2ea7e0;
  margin-top: -300px;
  padding-top: 470px;
  letter-spacing: 0.1em;
  padding-bottom: 70px;
}

.sec_04__title {
  font-size: 50px;
  text-align: center;
  color: #fff;
  -webkit-text-stroke: 12px #000;
  text-stroke: 12px #000;
  paint-order: stroke;
  transform: rotate(-10deg);
  transform-origin: left bottom;
  line-height: 1.5;
  padding-left: 1em;
}
.sec_04__title img {
  width: 900px;
  max-width: 100%;
}

.sec_04__title .coloerd {
  font-size: 64px;
  color: #fff100;
}
.sec_04__title .tax {
}
.sec_04__title .tax .tax01 {
  font-size: 53px;
  line-height: 1;
}
.sec_04__title .tax .tax02 {
  font-size: 18px;
  line-height: 1;
}

.sec_04__list {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap; /* 複数行に対応 */
  gap: 50px; /* アイテム間隔 */
  list-style: none;
  justify-content: center;
}

.sec_04__list_item {
  flex: 0 0 calc(33.333% - 50px); /* 横3列 */
  text-align: center;
  position: relative;
}

/* 右上がりにずらす */
.sec_04__list_item:nth-child(1) {
  transform: translateY(0);
  transition-delay: 0s;
}
.sec_04__list_item:nth-child(2) {
  transform: translateY(-15%);
  transition-delay: 0.15s;
}
.sec_04__list_item:nth-child(3) {
  transform: translateY(-30%);
  transition-delay: 0.3s;
}
.sec_04__list_item:nth-child(4) {
  transform: translateY(0);
  transition-delay: 0.45s;
}
.sec_04__list_item:nth-child(5) {
  transform: translateY(-15%);
  transition-delay: 0.6s;
}
.sec_04__list_item:nth-child(6) {
  transform: translateY(-30%);
  transition-delay: 0.75s;
}

.sec_04__list_item .img_area {
  background: #fff;
  border-radius: 400px;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec_04__list_item .img_area img {
}
.sec_04__list_item:nth-child(1) .img_area img {
  max-width: 60%;
}
.sec_04__list_item:nth-child(2) .img_area img {
  max-width: 60%;
}
.sec_04__list_item:nth-child(3) .img_area img {
  max-width: 70%;
}
.sec_04__list_item:nth-child(4) .img_area img {
  max-width: 80%;
}
.sec_04__list_item:nth-child(5) .img_area img {
  max-width: 80%;
}
.sec_04__list_item:nth-child(6) .img_area img {
  max-width: 60%;
}
.sec_04__list--title {
  color: #fff100;
  font-size: 31px;
  margin-top: 0.7em;
  line-height: 1.5;
}

.sec_04__list--txt {
  color: #fff;
  font-size: 22px;
  line-height: 1.5;
}

.sec_04__character01 {
  margin-top: -50px;
}

.btn_area {
  width: 100%;
}

.sec_04__btn_area01 {
  margin-top: 60px;
}
.sec_04__btn_area01 a {
  opacity: 1;
  display: flex;
  text-align: center;
  min-height: 200px;
  padding-bottom: 10px;
  background-image: url("/wp/wp-content/uploads/feature/foryou_black_and_red/sec04_btn_bg_red.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sec_04__btn_area01 .txt01 {
  color: #fff100;
  font-size: 55px;
  display: block;
  line-height: 1;
}

.sec_04__btn_area01 .txt02 {
  color: #fff;
  font-size: 34px;
  display: block;
  line-height: 1;
  margin-top: 0.5em;
}

.sec04__dosu {
  background: #fff;
  margin-top: 60px;
  border-radius: 15px;
  color: #595757;
  padding: 50px;
  position: relative;
}

.sec04__dosu__title {
  font-size: 45px;
  text-align: center;
}

.sec04__dosu__table {
  margin-top: 40px;
  width: 100%;
}
.sec04__dosu__table tr {
  border-top: 1px solid #595757;
}
.sec04__dosu__table tr:last-of-type {
  border-bottom: 1px solid #595757;
}
.sec04__dosu__table th {
  font-size: 30px;
  padding: 40px 40px 40px 10px;
  vertical-align: middle;
}
.sec04__dosu__table td {
  font-size: 54px;
  padding: 40px 10px 40px 40px;
  vertical-align: middle;
  line-height: 1;
}
.sec04__dosu__table td .sml {
  font-size: 20px;
}
.sec04__dosu__smltxt {
  margin-top: 35px;
}
.sec04__dosu__smltxt li {
  list-style: none;
  position: relative;
  padding-left: 1.5em;
}
.sec04__dosu__smltxt li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.sec04__dosu__smltxt li:not(:first-of-type) {
  margin-top: 1em;
}

.sec_04__character02 {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.sec_04__btn_area {
  width: 100%;
}
.sec_04__btn_area a {
  opacity: 1;
  display: flex;
  text-align: center;
  min-height: 200px;
  padding-bottom: 10px;
  background-image: url("/wp/wp-content/uploads/feature/foryou_black_and_red/sec04_btn_bg_blue.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec_04__btn_area02 {
  margin-top: -10px;
  position: relative;
  z-index: 2;
}

.sec_04__btn_area02 a .txt01 {
  font-size: 49px;
  color: #fff;
}

.sec_04__btn_area03 {
  margin-top: 50px;
}
.sec_04__btn_area03 a {
}
.sec_04__btn_area03 a .txt01 {
  font-size: 49px;
  color: #fff;
}

.sec04__copyright {
  margin-top: 30px;
  text-align: right;
}
.sec04__copyright img {
  max-width: 136px;
}

@media screen and (max-width: 1059px) {
  .sec_04 {
  }

  .sec_04__title {
    font-size: 42px;
  }
  .sec_04__title .coloerd {
    font-size: 50px;
  }
  .sec_04__title .tax {
  }
  .sec_04__title .tax .tax01 {
    font-size: 43px;
  }
  .sec_04__title .tax .tax02 {
    font-size: 14px;
  }

  .sec_04__list {
    margin-top: 40px;
    gap: 30px; /* アイテム間隔 */
  }

  .sec_04__list_item {
    flex: 0 0 calc(33.333% - 30px);
  }

  .sec_04__list_item .img_area {
  }
  .sec_04__list_item .img_area img {
  }

  .sec_04__list--title {
    font-size: 24px;
  }

  .sec_04__list--txt {
    font-size: 18px;
  }

  .sec_04__character01 {
  }

  .btn_area {
  }

  .sec_04__btn_area01 {
    margin-top: 40px;
  }
  .sec_04__btn_area01 a {
  }

  .sec_04__btn_area01 .txt01 {
    font-size: 50px;
  }

  .sec_04__btn_area01 .txt02 {
    font-size: 30px;
  }

  .sec04__dosu {
    margin-top: 50px;
    padding: 40px;
  }

  .sec04__dosu__title {
    font-size: 36px;
  }

  .sec04__dosu__table {
    margin-top: 30px;
  }
  .sec04__dosu__table tr {
  }
  .sec04__dosu__table tr:last-of-type {
  }
  .sec04__dosu__table th {
    font-size: 24px;
    padding: 40px 40px 40px 10px;
  }
  .sec04__dosu__table td {
    font-size: 44px;
    padding: 40px 10px 40px 40px;
  }
  .sec04__dosu__table td .sml {
    font-size: 18px;
  }
  .sec04__dosu__smltxt {
    margin-top: 20px;
  }
  .sec04__dosu__smltxt li {
  }
  .sec04__dosu__smltxt li::before {
  }
  .sec04__dosu__smltxt li:not(:first-of-type) {
  }

  .sec_04__character02 {
  }
  .sec_04__btn_area {
  }
  .sec_04__btn_area a {
    min-height: 140px;
  }
  .sec_04__btn_area02 {
    margin-top: -40px;
  }

  .sec_04__btn_area02 a .txt01 {
    font-size: 40px;
  }

  .sec_04__btn_area03 {
    margin-top: 20px;
  }
  .sec_04__btn_area03 a {
  }
  .sec_04__btn_area03 a .txt01 {
    font-size: 40px;
  }

  .sec04__copyright {
    margin-top: 20px;
  }
  .sec04__copyright img {
  }
}
@media screen and (max-width: 767px) {
  .sec_04 {
    padding-top: 380px;
  }

  .sec_04__title {
    font-size: 24px;
  }
  .sec_04__title .coloerd {
    font-size: 32px;
  }
  .sec_04__title .tax {
  }
  .sec_04__title .tax .tax01 {
    font-size: 28px;
  }
  .sec_04__title .tax .tax02 {
    font-size: 12px;
  }

  .sec_04__list {
    margin-top: 40px;
    gap: 20px; /* アイテム間隔 */
    justify-content: space-between;
  }

  .sec_04__list_item {
    flex: 0 1 calc(50% - 10px);
  }

  /* 右上がりにずらす */
  .sec_04__list_item:nth-child(1) {
    transform: translateY(0);
  }
  .sec_04__list_item:nth-child(2) {
    transform: translateY(-15%);
  }
  .sec_04__list_item:nth-child(3) {
    transform: translateY(0);
  }
  .sec_04__list_item:nth-child(4) {
    transform: translateY(-15%);
  }
  .sec_04__list_item:nth-child(5) {
    transform: translateY(0);
  }
  .sec_04__list_item:nth-child(6) {
    transform: translateY(-15%);
  }
  .sec_04__list_item .img_area {
  }
  .sec_04__list_item .img_area img {
  }

  .sec_04__list--title {
    font-size: 20px;
  }

  .sec_04__list--txt {
    font-size: 15px;
  }

  .sec_04__character01 {
    margin-top: -10px;
  }

  .btn_area {
  }

  .sec_04__btn_area01 {
    margin-top: 20px;
  }
  .sec_04__btn_area01 a {
    min-height: 80px;
  }

  .sec_04__btn_area01 .txt01 {
    font-size: 30px;
  }

  .sec_04__btn_area01 .txt02 {
    font-size: 12px;
  }

  .sec04__dosu {
    margin-top: 50px;
    padding: 30px 15px;
  }

  .sec04__dosu__title {
    font-size: 26px;
  }

  .sec04__dosu__table {
    margin-top: 20px;
  }
  .sec04__dosu__table tr {
  }
  .sec04__dosu__table tr:last-of-type {
  }
  .sec04__dosu__table th {
    font-size: 18px;
    padding: 10px 10px 10px 0;
  }
  .sec04__dosu__table td {
    font-size: 24px;
    padding: 10px 0 10px 10px;
  }
  .sec04__dosu__table td .sml {
    font-size: 14px;
  }
  .sec04__dosu__smltxt {
    margin-top: 18px;
  }
  .sec04__dosu__smltxt li {
  }
  .sec04__dosu__smltxt li::before {
  }
  .sec04__dosu__smltxt li:not(:first-of-type) {
  }

  .sec_04__character02 {
  }
  .sec_04__btn_area {
  }
  .sec_04__btn_area a {
    min-height: 80px;
    padding: 0 6px 4px 6px;
  }
  .sec_04__btn_area02 {
    margin-top: -20px;
  }

  .sec_04__btn_area02 a .txt01 {
    font-size: 18px;
  }

  .sec_04__btn_area03 {
    margin-top: 0;
  }
  .sec_04__btn_area03 a {
  }
  .sec_04__btn_area03 a .txt01 {
    font-size: 20px;
  }

  .sec04__copyright {
  }
  .sec04__copyright img {
  }
}

/*
===========================
店舗一覧
===========================
*/
.content__blackandred_shop {
}
.blackandred_shop__section {
  padding-left: 20px;
  padding-right: 20px;
}
.blackandred_shop__section:last-of-type {
  margin-bottom: 10vh;
}

.sec_shop_mv {
  background-color: #c8161d;
}

.sec_shop_mv .sec_shop_mv__flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 10%;
  gap: 2rem;
}

.sec_shop_mv .sec_shop_mv__flex .flex_item.item--txt {
  white-space: nowrap; /* 改行しない */
  flex-shrink: 0; /* テキスト側は縮ませない */
}
.sec_shop_mv .sec_shop_mv__flex .flex_item.item--img {
  flex-shrink: 1; /* 画像側は縮ませる */
}
.sec_shop_mv .sec_shop_mv__flex .flex_item.item--img img {
  width: 100%;
  height: auto;
  display: block;
}

.sec_shop_mv .sec_shop_mv__title01 {
  color: #fff100;
  -webkit-text-stroke: 10px #000; /* Chrome/Safari 等 */
  text-stroke: 10px #000; /* 仕様名（互換性のため記述） */
  font-size: clamp(30px, 4vw, 40px);
  paint-order: stroke;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.3));
  margin-bottom: 0;
}

.sec_shop_mv .sec_shop_mv__title02 {
  margin-top: 0.5em;
  color: #fff;
  font-size: clamp(30px, 3.5vw, 40px);
  -webkit-text-stroke: 10px #000; /* Chrome/Safari 等 */
  text-stroke: 10px #000; /* 仕様名（互換性のため記述） */
  paint-order: stroke;
  filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.3));
  text-align: center;
  margin-bottom: 0;
}

.sec_shop_list {
  margin-top: clamp(30px, 5vw, 60px);
}

.sec_shop_list .sec_shop_list__ttl {
  text-align: center;
}
.sec_shop_list .sec_shop_list__ttl span {
  color: #000;
  font-size: clamp(16px, 1.5vw, 22px);
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.sec_shop_list .sec_shop_list__ttl span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* 下端に配置 */
  width: 100%; /* 文字幅に合わせる */
  height: 2px; /* 線の太さ */
  background-color: #000; /* 線の色 */
}

.sec_shop_list .pref {
  margin-top: clamp(20px, 5vw, 50px);
}
.sec_shop_list .pref:not(:first-of-type) {
  border-top: #f3f2f1 1px solid;
  margin-top: 2em;
  padding-top: 2em;
}
.sec_shop_list .pref:last-of-type {
  border-bottom: #f3f2f1 1px solid;
  padding-bottom: 2em;
}

.sec_shop_list .prefecture {
  background-color: #f3f2f1;
  letter-spacing: 0.2em;
  font-size: clamp(14px, 1.2vw, 19px);
  font-weight: 700;
  padding: 0.7em;
  text-align: center;
}

.sec_shop_list .shop {
}
.sec_shop_list .shop:not(:first-of-type) {
  margin-top: clamp(10px, 3vw, 20px);
  border-top: #f3f2f1 1px solid;
}

.sec_shop_list .shop_flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: clamp(10px, 3vw, 20px);
}

.sec_shop_list .shop_name {
  font-size: clamp(14px, 1.2vw, 19px);
  font-weight: 700;
  margin-bottom: 0;
}

.sec_shop_list .shop_tel {
  font-size: clamp(14px, 1.2vw, 18px);
  margin-left: 3em;
  margin-bottom: 0;
}
.sec_shop_list .shop_tel .tel-sp {
  display: none;
}

.sec_shop_list .add {
  font-size: clamp(14px, 1vw, 16px);
  margin-top: clamp(10px, 3vw, 16px);
  line-height: 1.5;
}

.sec_shop_list .postal {
  margin-bottom: 0;
}

.sec_shop_list .address {
}

.sec_shop_link {
  margin-top: clamp(30px, 5vw, 60px);
}
.sec_shop_link .shop__btn__flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sec_shop_link .shop__btn {
  text-align: center;
  flex: 1;
  flex: 1 1 0; /* flex-grow:1, flex-shrink:1, flex-basis:0 */
  min-width: 550px; /* 最小幅を500pxに設定 */
  max-width: 100%; /* 最大幅は親に収まるように */
  text-align: center;
}
.sec_shop_link .shop__btn a {
  color: #fff;
  padding: 0.6em 1em;
  /* display: inline-block; */
  font-size: clamp(24px, 4vw, 31px);
  width: 100%;
  text-align: center;
  border-radius: 10px;
  border: #000 4px solid;
  filter: drop-shadow(5px 5px 3px rgba(0, 0, 0, 0.3));
  padding: 0.5em 1em; /* テキスト周りの余白 */
  display: inline-block;
  line-height: 1.3;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.sec_shop_link .shop__btn a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.sec_shop_link .btn01 {
}
.sec_shop_link .btn01 a {
  background-image: url("/wp/wp-content/uploads/feature/foryou_black_and_red/arrow.webp"); /* 背景画像のパス */
  background-repeat: no-repeat; /* 繰り返さない */
  background-position: left 1em center; /* 左中央に配置 */
  background-size: 0.5em auto; /* 画像サイズ */
  padding-left: 2em; /* 文字と背景画像の間隔確保 */
  background-color: #c8161d;
}
.shop__btn.btn01 a::before {
}
.sec_shop_link .btn02 {
  margin-top: clamp(20px, 5vw, 30px);
}
.sec_shop_link .btn02 a {
  background-color: #2ea7e0;
}

@media screen and (max-width: 1059px) {
}

@media screen and (max-width: 767px) {
  .sec_shop_mv .sec_shop_mv__flex {
    margin-left: 0;
    display: block;
    padding-top: 2vh;
  }
  .sec_shop_list .shop_flex {
    display: block;
  }
  .sec_shop_list .shop_tel {
    margin-top: clamp(10px, 3vw, 16px);
    margin-left: 0;
  }
  .sec_shop_list .shop_tel .tel-pc {
    display: none;
  }
  .sec_shop_list .shop_tel .tel-sp {
    display: inline;
  }

  .sec_shop_link .shop__btn {
    min-width: auto; /* min-width制限を解除 */
    width: 100%;
  }

  .sec_shop_link .btn01 a,
  .sec_shop_link .btn02 a {
    width: 100%; /* 親幅いっぱいに */
    font-size: clamp(20px, 5vw, 28px); /* スマホ向け文字サイズ */
  }

  .sec_shop_mv .sec_shop_mv__flex .flex_item.item--txt {
    text-align: center;
  }
  .sec_shop_mv .sec_shop_mv__flex .flex_item.item--img {
  }
  .sec_shop_mv .sec_shop_mv__flex .flex_item.item--img img {
  }

  .sec_shop_mv .sec_shop_mv__title01 {
  }

  .sec_shop_mv .sec_shop_mv__title02 {
  }
}
