@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Coiny&family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap");

.fontCoiny {
  font-family: "Coiny", system-ui;
}

/*************
FMT
*************/
.info_wrap,
.footer_container {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Arial", "Verdana", "sans-serif";
  font-size: 16px;
  color: #000;
  line-height: 1.5;
  font-weight: 400;
}
img {
  display: block;
  width: 100%;
}
.content_wrap {
  -webkit-font-smoothing: antialiased;
  font-family: "〇〇〇〇〇〇〇〇〇〇〇〇", "Noto Sans JP", serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--text-color);
  margin-top: 66px;
  background-color: var(--bg-color);
  width: 100%;
  position: relative;
  z-index: 0;
}
a:hover img {
  opacity: 1;
}

figure {
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}
figcaption .caption {
  margin-left: auto;
  margin-right: 0;
  width: fit-content;
  font-size: 12px;
}
@media (min-width: 751px) {
  .content_wrap {
    margin-top: 90px;
  }
}
:root {
  --text-color: #000000;
  --primary-color: #2ebcad;
  --bg-color: #ffffff;
  --red-color: #ee0000;
  --accent-color: #ffff00;
}
/*アキ*/
.mgt48 {
  margin-top: 48px !important;
}
.mgt32 {
  margin-top: 32px !important;
}
.mgt24 {
  margin-top: 24px !important;
}
.mgt16 {
  margin-top: 16px !important;
}
.mgt8 {
  margin-top: 8px !important;
}
.mgt4 {
  margin-top: 4px !important;
}
.mgt0 {
  margin-top: 0 !important;
}

/*テキストサイズ*/
.annotation {
  font-size: 14px;
}
.smallest {
  font-size: 12px;
}
.larger {
  font-size: 1.5em;
}
.smaller {
  font-size: 0.75em;
}

/* テキスト揃え */
.center {
  text-align: center;
}
.auto_center {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.ib {
  display: inline-block;
}

/* テキストカラー */
.fcPrimary {
  color: var(--primary-color);
}
.fcRed {
  color: var(--red-color);
}
.fcWhite {
  color: #fff;
}
.fcYellow {
  color: #ff0;
}

/* テキスト汎用 */
.bold {
  font-weight: bold;
}
.text_link {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
  cursor: pointer;
}
.marker {
  background: linear-gradient(transparent 50%, var(--accent-color) 50%);
}
.relative_wrap {
  position: relative;
}

/* 箇条書き */
ul.text_list li,
p.text_list {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}
ul.text_list li + li {
  margin-top: 2px;
}
ul.text_list.annotation li {
  font-size: 12px;
}
@media (min-width: 751px) {
  .red_box {
    font-size: 22px;
  }
  .pc_center {
    text-align: center;
  }
}
/* js-fadeUp */
.js-fadeUp {
  transform: translateY(10px);
  opacity: 0;
  transition: all 1s;
}
.js-fadeUp.is-inview {
  transform: translateY(0);
  opacity: 1;
}
/*************
汎用
*************/
/* ボイストック枠 */
.VoiStock_btn {
  display: block;
  max-width: 400px;
  margin: 32px auto 16px;
}
.VoiStock_btn.comingSoon {
  pointer-events: none;
}
.qr_wrap {
  display: none;
}
.VoiStock_btn p.comingSoon {
  background: rgba(160, 35, 31, 0.9);
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  border-radius: 100vmax;
}
@media (min-width: 751px) {
  .qr_wrap {
    padding: 16px;
    margin: 32px auto 16px;
    /*border: 2px solid var(--primary-color);*/
    border: 3px solid #b9312c;
    background-color: #e04844;
    display: flex;
    gap: 16px;
    border-radius: 10px;
    max-width: 480px;
    align-items: center;
    color: #ffffff;
  }
  .qr_text {
    flex: 1;
  }
  .qr_text_wrap {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .qr_text_hd {
    font-weight: bold;
    margin-bottom: 6px;
    font-size: 20px;
    color: #e04844;
    /*background-color: var(--primary-color);*/
    background-color: #ffffff;
    padding: 4px 12px;
    border-radius: 40px;
    text-align: center;
  }
  .qr_text p {
    text-align: left;
  }
  .qr_img {
    width: 100px;
    position: relative;
    padding: 4px;
    /*border: 2px solid var(--primary-color);*/
    border: 2px solid #b9312c;
    border-radius: 8px;
    background-color: #fff;
  }
  .qr_img .comingSoon {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }
}
/* アコーディオン */
.acc_body {
  display: none;
}
.acc_btn {
  font-weight: bold;
  width: fit-content;
  margin: 32px auto 0;
  color: var(--text-color);
  position: relative;
  padding-right: 28px;
  cursor: pointer;
  transition: all 0.3s;
}
.acc_btn span {
  position: absolute;
  background-color: #fff;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.acc_btn span::before,
.acc_btn span::after {
  content: "";
  /*background-color: var(--primary-color);*/
  background-color: #a0231f;
  position: absolute;
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: transform 0.3s;
}
.acc_btn span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
.acc_btn.open span::before {
  transform: translate(-50%, -50%);
}
/* ご注意事項アコーディオン */
.caution_acc .acc_btn {
  padding: 4px 40px 6px 20px;
  border-radius: 30px;
  /*background-color: var(--primary-color);*/
  background-color: #a0231f;
  color: #fff;
}
.caution_acc .acc_btn span {
  right: 10px;
}
.caution_acc .acc_body {
  padding: 10px;
  /*border-radius: 8px;*/
  border-radius: 0px;
  margin-top: 16px;
  /*border: 2px solid var(--primary-color);*/
  border: 2px solid #601513;
}
.caution_head {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 4px;
}
.text_list + .caution_head {
  margin-top: 8px;
}
@media (min-width: 751px) {
  .caution_acc .acc_body {
    padding: 20px;
    border-radius: 0px;
  }
}
.back_to_top.show {
  display: block;
  pointer-events: auto;
  opacity: 1;
}
.back_to_top {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: -15px;
  bottom: -15px;
  width: 120px;
  z-index: 1000;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
  transition: all 0.5s;
}
.back_to_top.show::after {
  content: "";
  position: absolute;
  top: 41px;
  right: 33px;
  display: block;
  width: 34px;
  height: 34px;
  background: url(../img/topbtn-txt.webp) no-repeat center / cover;
  margin-inline: 10px;
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
〇〇〇〇
*************/
@media (min-width: 751px) {
}
/*************
終了処理
*************/

.red_box {
  font-weight: bold;
  border: 2px solid var(--red-color);
  color: var(--red-color);
  font-size: 18px;
  text-align: center;
  padding: 8px;
  margin: 16px auto 0;
  max-width: 800px;
  width: calc(100% - 40px);
  background-color: #fff;
}
.VoiStock_btn.sign-off-btn {
  pointer-events: none;
  position: relative;
}
.sign-off {
  background-color: rgba(255, 255, 255, 0.8);
  color: #ee0000;
  border: #ee0000 2px solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  padding: 16px 0;
}
@media (min-width: 751px) {
  /* 終了処理 QR枠用 */
  .sign-off-pc {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ee0000;
    border: #ee0000 2px solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
  }
}

/*************
footer
*************/
/*その他の推し旅プラン*/
.info_wrap {
  margin: 0 auto;
  padding: 8px 40px 20px;
  position: relative;
  background-color: #fff;
}
.oshitabi_btn {
  display: block;
  border: 4px solid #000;
  background-color: #fff;
  max-width: 740px;
  margin: 32px auto 0;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  border-radius: 10px;
  position: relative;
  padding: 10px 30px 10px 5px;
  font-size: 18px;
  transition: all 0.3s;
}
.oshitabi_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  height: 12px;
  width: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.oshitabi_btn:hover {
  background-color: var(--primary-color);
  color: #fff;
  border: 4px solid var(--primary-color);
}
.oshitabi_btn:hover::after {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
.credit {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
}

.footer_container {
  position: relative;
  z-index: 100;
  background-color: #fff;
  padding-top: 1px;
}
@media (min-width: 751px) {
  .info_wrap {
    margin: 0 auto;
    padding: 8px 20px 100px;
  }
  .oshitabi_btn {
    padding: 15px;
    font-size: 20px;
  }
}

/*************
メディアクエリ
*************/
@media (min-width: 751px) {
  .sp {
    display: none;
  }
}
@media (max-width: 750px) {
  .pc {
    display: none;
  }
}

/*************
	2025/12/09
*************/

.contents01 {
  font-family: "Zen Maru Gothic", sans-serif;
  overflow: hidden;
}

.posiRe {
  position: relative;
}

.contBg01 {
  background-image: url("../img/cont_bg01.webp");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  padding-bottom: 50px;
}
.contBg02 {
  background-image: url("../img/cont_bg02.webp");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  padding-bottom: 60px;
}
.mainDay01 {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: -50px;
}
.mainBox01 {
  margin-top: 30px;
  position: relative;
}
.mainBoxIn01 {
  text-align: center;
  color: #a0231f;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 900;
  width: 100%;
  height: 224px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0px;
  top: 40px;
}

.ancBlock01 {
  padding: 0px 12px;
  background-image: url("../img/anc_navi_bg01.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0px;
}
.ancBlock01 li {
  width: 100%;
  text-align: left;
}
.ancBlock01 li a {
  display: inline-block;
  line-height: 0px;
}

.ancBlock01 li img {
  width: 300px;
  height: auto;
}
.ancBlock01 li:nth-child(2n) {
  text-align: right;
}
.contPd_0_15 {
  padding: 0px 15px;
}
.cont01Text01 {
  margin: -30px auto 10px;
}
.contBox01 {
  position: relative;
  background-color: #ffffff;
  padding: 25px 15px 30px;
  color: #601513;
}

/*----------------*/

.cont01Deco01 {
  width: 37px;
  position: absolute;
  left: 60px;
  top: -16px;
}
.cont01Deco02 {
  width: 49px;
  position: absolute;
  right: -5px;
  top: 83px;
}

.cont02Deco01 {
  width: 74px;
  position: absolute;
  left: 25px;
  top: -35px;
}
.cont02Deco02 {
  width: 28px;
  position: absolute;
  right: 22px;
  top: 45px;
}

.cont03Deco01 {
  width: 50px;
  position: absolute;
  left: -10px;
  top: 74px;
}
.cont03Deco02 {
  width: 42px;
  position: absolute;
  right: 74px;
  top: -18px;
}

.cont04Deco01 {
  width: 74px;
  position: absolute;
  left: 25px;
  top: -40px;
}
.cont04Deco02 {
  width: 29px;
  position: absolute;
  right: 17px;
  top: 56px;
}

.twinkle01 {
  animation: twinkle 3s infinite 0s;
}

.twinkle02 {
  animation: twinkle 3s infinite 0.6s;
}

.twinkle03 {
  animation: twinkle 3s infinite 0.8s;
}

@keyframes twinkle {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*------------------*/

.cont01Text02 {
  text-align: center;
  color: #601513;
  font-size: 17px;
  line-height: 1.6em;
  font-weight: 900;
}
.cont01Text02 .p01 {
  color: #e04844;
}
.cont01Text02 p span {
  display: inline-block;
  background-image: url("../img/cont01_text_line01.webp");
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 13px;
}
.cont01Box01 {
  background-color: #ffe2e6;
  border-radius: 12px;
  margin-top: 35px;
  padding: 28px 14px 15px;
  position: relative;
}

.cont01Ribbon01 {
  background-image: url("../img/cont01_ribbon01.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  width: 200px;
  height: 30px;
  color: #ffffff;
  font-size: 17px;
  line-height: 1em;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.cont01Day01 {
  text-align: center;
  color: #e04844;
  font-size: 21px;
  line-height: 1em;
}
.cont01Day01 .s01 {
  font-size: 11px;
}
.cont01Day01 .s02 {
  display: inline-block;
}
.dayAr01 {
  width: 15px;
  height: auto;
}
.cont01Flex01 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}
.cont01Flex01 li {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 15px;
  text-align: center;
  background-color: #ffffff;
}
.cont01Flex01 li .p01 {
  color: #e04844;
  font-size: 20px;
  line-height: 1.4em;
}
.cont01Flex01 li .p02 {
  color: #601513;
  font-size: 18px;
  line-height: 1.45em;
  font-weight: bold;
}

.box02 .cont01Ribbon01 {
  background-image: url("../img/cont01_ribbon02.webp");
}
.box02 .cont01Day01 {
  color: #a0231f;
}
.box02 .cont01Flex01 li .p01 {
  color: #a0231f;
}
.text_list {
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 500;
}
.text_list a:link {
  color: #e04844;
  text-decoration: underline;
}
.text_list a:visited {
  color: #e04844;
  text-decoration: underline;
}
.text_list a:hover {
  color: #e04844;
  text-decoration: none;
}
.text_list a:active {
  color: #e04844;
  text-decoration: none;
}

.contText01 {
  color: #601513;
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 900;
  text-align: center;
}
.contText01 .s01 {
  color: #e04844;
}
.contImgWrap01 {
  margin: 24px auto 20px;
}
.contText02 {
  font-size: 12px;
  line-height: 1.3em;
  font-weight: 500;
  text-align: right;
}

.step .acc_btn span::before,
.step .acc_btn span::after {
  background-color: #e04844;
}
.caution_acc.step .acc_btn {
  background-color: #e04844;
}
.caution_acc.step .acc_body {
  border: none;
  background-color: #ffe2e6;
}

.stepAr01 {
  text-align: center;
  margin: 10px auto;
}
.stepAr01 img {
  width: 54px;
  height: auto;
  margin: auto;
}
.stepFlex01 {
  display: flex;
  gap: 15px;
}
.stepFlex01 .box01 {
  background-color: #e04844;
  padding: 8px 10px 6px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.stepFlex01 .box01 p {
  color: #ffffff;
  font-size: 14px;
  line-height: 1em;
}

.stepFlex01 .box02 {
  color: #601513;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: bold;
}
.contText03 {
  font-size: 14px;
  line-height: 1.6em;
  font-weight: bold;
  color: #601513;
}
.text_list {
  color: #601513;
}
.contText04 {
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 500;
  color: #601513;
}
.contText04 a {
  color: #e04844;
  text-decoration: underline;
}
.contText05 {
  margin: -10px auto 15px;
  text-align: center;
}
.contText05 .s01 {
  color: #e04844;
  font-size: 17px;
  line-height: 1.35em;
  font-weight: 900;
}
.contText05 .s02 {
  color: #601513;
  font-size: 14px;
  line-height: 1.35em;
  font-weight: 900;
}
.contDl01 {
  margin-bottom: 20px;
}
.contDl01 dt {
  background-color: #e04844;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  height: 32px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.4em;
  font-weight: 900;
}
.contDl01 dd {
  text-align: center;
  margin-top: 7px;
}
.contDl01 dd .p01 {
  font-size: 20px;
  line-height: 1.2em;
  font-weight: 900;
}
.contDl01 dd .p02 {
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
}

/*--------------------*/

.contH201 {
}

.contH301 {
  margin-bottom: 14px;
}
.contH301 img {
  width: auto;
  height: 26px;
}
.cont05Box01 {
  background-color: #ffffff;
  padding: 24px 20px;
  color: #601513;
  font-size: 14px;
  line-height: 1.7em;
  font-weight: bold;
}
.cont05Flex01 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 4.8%;
  margin: 30px auto auto;
}
.cont05Flex01 li {
  width: 47.6%;
}
.contName01 {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 3px 8px;
  width: 120px;
  height: 32px;
  background-color: #601513;
  border-radius: 50px;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.1em;
  font-weight: bold;
  margin: 8px auto auto;
}

.cont05Box02 {
  margin-top: 40px;
}
.cont05Box03 .box01 {
  background-color: #a0231f;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 4px 10px;
  height: 72px;
  color: #ffffff;
}
.cont05Box03 .box01 .p01 {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 900;
}
.cont05Box03 .box01 .p02 {
  font-size: 22px;
  line-height: 1.2em;
  font-weight: 900;
}

.cont05Box03 .box02 {
  background-color: #ffffff;
  padding: 15px;
}
.cont05Text01 {
  border-left: 3px solid #a0231f;
  padding-left: 12px;
  font-size: 15px;
  line-height: 1.6em;
  font-weight: bold;
  color: #601513;
}
.cont05Btn01 {
  margin-top: 20px;
  text-align: center;
}
.cont05Btn01 img {
  width: 240px;
  height: auto;
  margin: auto;
}

.cont05Btn01 .p01 {
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 500;
  margin-top: 5px;
}

@media (min-width: 751px) {
  .contBg01 {
    background-image: url("../img/cont_bg01_pc.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-bottom: 0px;
  }
  .contBg01In {
    background-image: url("../img/cont_bg02_pc02.webp");
    background-repeat: repeat;
    background-position: center top;
    background-size: 50px auto;
    padding-bottom: 70px;
  }

  .contBg02 {
    background-image: url("../img/cont_bg02_pc.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 1570px;
    padding-bottom: 0px;
  }
  .contBg02In {
    background-image: url("../img/cont_bg02_pc02.webp");
    background-repeat: repeat;
    background-position: center top;
    background-size: 50px auto;
    padding-bottom: 70px;
  }

  /*----------------------*/

  .mainPcBlock {
    background-image: url("../img/main_img01_bg.webp");
    background-repeat: no-repeat;
    background-position: center top 40px;
    padding-top: 45px;
  }
  .mainTit01 {
    width: 926px;
    margin: auto;
  }
  .mainDay01 {
    position: relative;
    left: 0px;
    bottom: 0px;
  }
  .mainBox01 {
    width: 570px;
    margin: auto;
  }
  .mainBoxIn01 {
    font-size: 18px;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
  }

  .ancBlock01 {
    width: 615px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 12px;
    background-image: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 2%;
  }
  .ancBlock01 li {
    width: 49%;
    text-align: left;
  }
  .w720 {
    width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  .h2Pc01 {
    width: 468px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .cont01Text01 {
    margin: -30px auto 10px;
    width: 450px;
  }
  .contBox01 {
    position: relative;
    background-color: #ffffff;
    padding: 25px 50px 40px;
    color: #601513;
  }
  .cont01Box01 {
    background-color: #ffe2e6;
    border-radius: 12px;
    margin-top: 35px;
    padding: 28px 14px 15px;
    position: relative;
  }
  .cont01Box01 {
    background-color: #ffe2e6;
    border-radius: 12px;
    margin-top: 35px;
    padding: 28px 30px 30px;
    position: relative;
  }

  /*----------------*/

  .cont01Deco01 {
    width: 37px;
    position: absolute;
    left: 170px;
    top: -16px;
  }
  .cont01Deco02 {
    width: 49px;
    position: absolute;
    right: 34px;
    top: 80px;
  }

  .cont02Deco01 {
    width: 74px;
    position: absolute;
    left: 152px;
    top: -35px;
  }
  .cont02Deco02 {
    width: 28px;
    position: absolute;
    right: 150px;
    top: 88px;
  }

  .cont03Deco01 {
    width: 50px;
    position: absolute;
    left: 70px;
    top: 74px;
  }
  .cont03Deco02 {
    width: 42px;
    position: absolute;
    right: 100px;
    top: -18px;
  }

  .cont04Deco01 {
    width: 74px;
    position: absolute;
    left: 90px;
    top: -40px;
  }
  .cont04Deco02 {
    width: 29px;
    position: absolute;
    right: 120px;
    top: 56px;
  }

  /*------------------*/

  .contImgWrap01 {
    margin: 24px auto 20px;
    width: 360px;
  }
  .stepFlex01 .box01 {
    background-color: #e04844;
    padding: 8px 10px 6px;
    box-sizing: border-box;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  .stepFlex01 {
    align-items: center;
  }
  .contH201 {
    width: 352px;
    margin-left: auto;
    margin-right: auto;
  }

  .cont05Flex01 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 2%;
    margin: 30px auto auto;
  }
  .cont05Flex01 li {
    width: 23.5%;
  }
  .contName01 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    padding: 3px 8px;
    width: 120px;
    height: 32px;
    background-color: #601513;
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.1em;
    font-weight: bold;
    margin: 8px auto auto;
  }
  .cont05Box03 .box02 {
    background-color: #ffffff;
    padding: 30px 156px;
  }
}

/*---*/
