@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-dark-blue: #10218B;
  --color-blue: #276FC9;
  --color-light-blue: #B8E1FA;
  --color-yellow: #FFF700;
  --color-yellow2: #FFE93E;
  --color-red: #E50012;
  --color-red2: #FF0000;
  --color-gray: #707070;
  --color-green: #1DB541;
}

/*!
utility
------------------------------
*/
.pc {
  display: block;
}

img.pc,
span.pc,
br.pc {
  display: inline;
}

.sp,
img.sp,
span.sp,
br.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }

  img.sp,
span.sp,
br.sp {
    display: inline;
  }

  .pc,
img.pc,
span.pc,
br.pc {
    display: none;
  }
}
.visuallyHidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.cRed {
  color: var(--color-red2);
}

/*!
layout > inner
------------------------------
*/

.inner {
  margin: 0 auto;
  width: 96%;
  max-width: 1240px;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 100%;
  }
}
/*!
common
------------------------------
*/
/* PC表示時TEL無効 */
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
#contents .mainSection {
  width: 100%;
  min-width: 1240px;
  margin: 0 auto;
}

#contents .headSection .innerBlock {
  width: 1240px;
  padding: 0 20px;
  box-sizing: border-box;
}

#contents .headSection .title h1 {
  font-size: 23px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2em;
}

#contents .headSection .title h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background-color: #B8E1FA;
  padding: 0.75em 0 0.7em;
}

.mainSection *,
.mainSection *::before,
.mainSection *::after {
  box-sizing: border-box;
}

.mainSection img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.mainSection a {
  transition: 0.2s;
}
.contentBody {
  position: relative;
  padding: 160px 0 150px;
  margin-bottom: 20px;
}
#pagetopBlock {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
#pagetopBlock.show {
  opacity: 1;
  visibility: visible;
}
@media screen and (min-width: 768px) {
  .mainSection a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 767px) {
  #contents .mainSection {
    min-width: 100%;
  }

  #contents .headSection .innerBlock {
    width: 100%;
    padding: 0 15px;
  }

  #contents .headSection .title h1 {
    width: 100%;
    margin-top: 15px;
    padding-left: 0;
    font-size: 16px;
  }

  #contents .headSection .title h2 {
    width: 100vw;
    margin: 15px 0 0 calc(50% - 50vw);
    padding-left: 0;
    font-size: 15px;
  }

  #contents {
    overflow: hidden;
  }

  .contentBody {
    padding: 28vw 0 40vw;
    margin-bottom: 10vw;
  }

  .mainSection img[src$=".svg"] {
    width: 100%;
  }

  #contents .detailSection {
    width: 100%;
  }

  #contents .share_title {
    font-size: 30px;
  }
  #footer #pagetopBlock {
    bottom: 22.66vw !important;
  }
}
/* list */
.mainSection .list > li {
  position: relative;
  line-height: 1.5;
  padding-left: 1em;
}

.mainSection .list > li::before {
  content: "・";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.mainSection .list2 > li {
  position: relative;
  line-height: 1.5;
  padding-left: 1em;
}

.mainSection .list2 > li::before {
  content: "-";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.mainSection .listNote > li {
  position: relative;
  line-height: 1.5;
  padding-left: 1em;
}

.mainSection .listNote > li::before {
  content: "※";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.mainSection .listNote2 > li {
  position: relative;
  line-height: 1.5;
  /* padding-left: 3em;
  text-indent: -3em; */
}

img.iconBlank {
  vertical-align: middle;
  display: inline-block;
  margin-left: 5px;
  transform: translateY(-3px);
}

/*!
mv
------------------------------
*/
.mv {
  background-color: var(--color-light-blue);
  background-image: url("/ec/campaign/spring2025-cb/images/bg-mv-pc.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  text-align: center;
}

.mv img {
  width: 1240px;
  max-width: 100%;
}

.mvButtonArea {
  position: absolute;
  top:0;
  bottom: initial;
  left: 0;
  width: 100%;
  background-color: var(--color-yellow);
  padding: 15px 0;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  text-align: center;
  transition: all .5s;
}

.mvButtonArea.fixed {
  width: 100%;
  position: fixed;
  top: initial;
  bottom: 0;
  left: 0;
  z-index: 998;
  animation: fadeIn forwards 0.5s;
}

.mvButtonArea.absolute {
  position: absolute;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mvButton {
  display: inline-block;
  width: 480px;
  max-width: 100%;
  border-radius: 100vh;
  position: relative;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
  transition: 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

.mvButton > span {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.mvButton::after {
  content: "";
  width: 207px;
  aspect-ratio: 207/174;
  background: url("/ec/campaign/spring2025-cb/images/mv-btn-pop.png") no-repeat center center/cover;
  position: absolute;
  top: -60px;
  right: calc(100% - 30px);
}

@media screen and (min-width: 768px) {
  a.mvButton:hover {
    opacity: 1;
    transform: translateY(-4px);
    box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.7);
  }
}
@media screen and (max-width: 767px) {
  .mv {
    background-image: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .mvButtonArea {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 5.2vw 0;
  }

  .mvButtonArea.fixed {
    width: 100vw;
  }

  .mvButton {
    width: 77.72vw;
  }

  .mvButton::after {
    width: 31.77vw;
    top: -20.84vw;
    right: calc(100% - 20.83vw);
  }
}

.pageLead {
  font-size: 26px;
  line-height: 1.66;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 50px;
  border: 3px solid #000;
  padding: 18px 18px
}

.pageNav {
  margin-bottom: 70px;
}

.pageMenu {
  background-color: var(--color-dark-blue);
  color: #fff;
  display: grid;
  grid-template-columns: 24% 24% 29% auto;
}

.pageMenu > li {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

.pageMenu > li:not(:first-child) {
  border-left: 3px solid #fff;
}

.pageMenu > li > a {
  height: 100%;
  display: block;
  color: #fff;
  padding: 0.6em 0.2em 0.95em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pageMenu > li > a:hover {
  text-decoration: none;
}

.pageMenu > li > a > span {
  position: relative;
}

.pageMenu > li > a > span::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .pageLead {
    font-size: 3.64vw;
    line-height: 1.66;
    margin-bottom: 5.2vw;
    padding: 12px 10px;
  }

  .pageNav {
    margin-bottom: 13.02vw;
  }

  .pageMenu {
    border: 1px solid var(--color-gray);
    grid-template-columns: repeat(2, 1fr);
  }

  .pageMenu > li {
    font-size: 4vw;
  }

  .pageMenu > li:not(:nth-last-child(-n+2)) {
    border-bottom: 1px solid #fff;
  }

  .pageMenu > li:nth-child(odd) {
    border-left: none;
  }

  .pageMenu > li:not(:first-child) {
    border-width: 1px;
  }

  .pageMenu > li > a {
    min-height: 15.62vw;
  }

  .pageMenu > li > a > span::before {
    border-width: 5px 7px 0 7px;
  }
}
/*!
cospa
------------------------------
*/
.cospa {
  margin-bottom: 90px;
}

.cospaTitle {
  width: 96%;
  margin: 0 auto;
}

.cospaLead {
  width: 90%;
  text-align: center;
  margin: 15px auto 80px;
}

.pageMenuSub {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 auto;
}

.pageMenuSub > li {
  font-size: 16px;
  color: #fff;
  line-height: 1.3;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.pageMenuSub > li a {
  height: 100%;
  color: #fff;
  padding: 0.75em 0.5em 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pageMenuSub > li a:hover {
  text-decoration: none;
}

.pageMenuSub > li.typeSmallOffice a,
.target .useList > li.typeSmallOffice {
  background-color: var(--color-dark-blue);
}

.pageMenuSub > li.typeRetailFood a,
.target .useList > li.typeRetailFood {
  color: #000;
  background-color: var(--color-yellow2);
}

.pageMenuSub > li.typeTelework a,
.target .useList > li.typeTelework {
  background-color: var(--color-red);
}

.pageMenuSub > li.typeStudy a,
.target .useList > li.typeStudy {
  background-color: var(--color-green);
}

.cospaIll {
  width: 64%;
  margin: 25px auto 0;
  text-align: center;
}

.boxItem {
  border: 10px solid #000;
  background-color: var(--color-yellow2);
  padding: 70px 0 95px;
  position: relative;
}

.boxItem::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/ec/campaign/spring2025-cb/images/bg-box.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
}

.boxItem:not(:first-of-type) {
  margin-top: 100px;
}

.boxItemInner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.boxItem .boxTitle {
  max-width: 570px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.boxItem .boxTitle > span {
  display: block;
}

.boxItemImg {
  text-align: center;
  margin: -20px 0 25px;
}

.boxItemImg img {
  display: inline-block;
  height: 470px;
}

.whiteBoxes {
  max-width: 1100px;
  margin: 0 auto 70px;
}

.whiteBox {
  background-color: #fff;
  border: 8px solid #000;
  position: relative;
  padding: 30px 40px;
}

.boxItem3 .whiteBox1 {
  padding-left: 20px;
}

.boxItem4 .whiteBox {
  padding-left: 25px;
}

.whiteBox:not(:first-of-type) {
  margin-top: 55px;
}

.whiteBox::before {
  content: "";
  width: 50px;
  aspect-ratio: 65/58;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-shippo-pc.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: calc(100% - 2px);
  right: 270px;
}

.whiteBox::after {
  content: "";
  width: 90%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.whiteBoxHead {
  padding-right: 25%;
}

.boxItem1 .whiteBox2 .whiteBoxHead {
  padding-right: 22%;
}

.boxItem1 .whiteBox3 .whiteBoxHead {
  padding-right: 28%;
}

.boxItem2 .whiteBoxHead {
  padding-right: 17%;
}

.boxItem3 .whiteBoxHead {
  padding-right: 18%;
}

.boxItem4 .whiteBox1 .whiteBoxHead {
  padding-right: 18%;
}

.boxItem4 .whiteBox2 .whiteBoxHead {
  padding-right: 35%;
}

.boxItem4 .whiteBox3 .whiteBoxHead {
  padding-right: 35%;
}

.whiteBox .text1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 0.4em;
}

.whiteBox .text1 p {
  line-height: 1.375;
}

.whiteBox .text2 {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 0.8em;
}

.whiteBox .text3 {
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 0.9em;
  border-top: 4px solid #000;
}

.whiteBox .text3 > span {
  display: inline-block;
  background-color: #EA1313;
  color: #fff;
  border: 4px solid #000;
  border-top: none;
  padding: 0.2em 0.5em 0.1em;
}

.whiteBox .text4 {
  font-size: 21px;
}

.whiteBox .text4 p {
  line-height: 1.4;
}

.whiteBox .text4.mradj {
  margin-right: -2em;
}

.whiteBox .ill {
  position: relative;
}

.whiteBox .ill::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
}

.boxItem1 .whiteBox1 .ill::before {
  width: 170px;
  aspect-ratio: 210/265;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill1.png");
  right: 55px;
}

.boxItem1 .whiteBox2 .ill::before {
  width: 180px;
  aspect-ratio: 228/270;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill2.png");
  right: -24px;
}

.boxItem1 .whiteBox3 .ill::before {
  width: 260px;
  aspect-ratio: 325/255;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill3.png");
  right: -22px;
  bottom: calc(100% + 5px);
}

.boxItem2 .whiteBox1 .ill::before {
  width: 95px;
  aspect-ratio: 121/265;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill4.png");
  right: 35px;
}

.boxItem2 .whiteBox2 .ill::before {
  width: 135px;
  aspect-ratio: 168/264;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill5.png");
  right: 8px;
}

.boxItem3 .whiteBox1 .ill::before {
  width: 254px;
  aspect-ratio: 317/263;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill6.png");
  right: -40px;
  bottom: calc(100% - 14px);
}

.boxItem4 .whiteBox1 .ill::before {
  width: 250px;
  aspect-ratio: 310/239;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill7.png");
  right: -40px;
  bottom: calc(100% + 8px);
}

.boxItem4 .whiteBox2 .ill::before,
.boxItem4 .whiteBox3 .ill::before {
  width: 305px;
  aspect-ratio: 383/229;
  background-image: url("/ec/campaign/spring2025-cb/images/white-box-ill8.png");
  bottom: calc(100% + 13px);
}

.recommendTitleWrap {
  padding-bottom: 22px;
  background-image: url("/ec/campaign/spring2025-cb/images/recommend-title-line-pc.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 14px;
  margin-bottom: 16px;
}

.recommendTitle {
  width: 170px;
  margin: 0 auto;
}

.bannerList {
  max-width: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
}

.bannerList > li {
  border-radius: 16px;
  box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.5);
}

.bannerList > li a {
  display: block;
}
.bannerList > li img {
  height: 105px;
}
@media screen and (max-width: 767px) {
  .cospa {
    margin-bottom: 7.81vw;
  }

  .cospaLead {
    width: 85.94vw;
    margin: 2.6vw auto 10.41vw;
  }

  .pageMenuSub {
    grid-template-columns: repeat(4, auto);
  }

  .pageMenuSub {
    width: 94%;
    gap: 2.08vw;
  }

  .pageMenuSub > li {
    font-size: 3.12vw;
    border-radius: 2.08vw;
  }

  .cospaIll {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    text-align: right;
  }

  .cospaIll img {
    width: 97%;
  }

  .boxItems {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .boxItem {
    padding: 6.51vw 7.81vw 10.41vw;
    border-left: none;
    border-right: none;
    border-width: 5px;
  }

  .boxItem:not(:first-of-type) {
    margin-top: 15.62vw;
  }

  .boxItem .boxTitle {
    width: auto;
    height: 11.71vw;
    text-align: center;
  }

  .boxItemImg {
    margin: -1vw auto 5.2vw;
  }

  .boxItemImg img {
    height: auto;
  }

  .boxItem .boxTitle > span,
  #contents .boxItem .boxTitle img {
    width: auto;
    height: 100%;
  }

  .boxItem1 .boxItemImg {
    width: 79.68vw;
  }

  .boxItem2 .boxItemImg {
    width: 72.91vw;
  }

  .boxItem3 .boxItemImg {
    width: 73.43vw;
  }

  .boxItem4 .boxItemImg {
    width: 73.69vw;
  }

  .whiteBoxes {
    margin: 0 auto 13.02vw;
  }

  .whiteBox {
    border-width: 0.6vw;
    padding: 3.9vw 3.2vw;
  }

  .boxItem3 .whiteBox1 {
    padding-left: 3.2vw;
    padding-right: 2.2vw;
  }

  .boxItem4 .whiteBox {
    padding-left: 3.2vw;
  }

  .whiteBox:not(:first-of-type) {
    margin-top: 9.11vw;
  }

  .whiteBox::before {
    width: 8.33vw;
    aspect-ratio: 32/28;
    right: 24.73vw;
    background-image: url("/ec/campaign/spring2025-cb/images/white-box-shippo-sp.svg");
    top: calc(100% - 1vw);
  }

  .whiteBox .text1 {
    font-size: 4.16vw;
  }

  .whiteBox .text2 {
    font-size: 3.12vw;
    margin-bottom: 0.5em;
  }

  .whiteBox .text3 {
    font-size: 3.12vw;
    border-width: 2px;
  }

  .whiteBox .text3 > span {
    border-width: 2px;
  }

  .whiteBox .text4 {
    font-size: 3.12vw;
  }

  .boxItem1 .whiteBox1 .whiteBoxHead {
    padding-right: 17%;
  }

  .boxItem1 .whiteBox2 .whiteBoxHead {
    padding-right: 26%;
  }

  .boxItem1 .whiteBox3 .whiteBoxHead {
    padding-right: 36%;
  }

  .boxItem2 .whiteBox1 .whiteBoxHead {
    padding-right: 22%;
  }

  .boxItem2 .whiteBox2 .whiteBoxHead {
    padding-right: 24%;
  }

  .boxItem4 .whiteBox1 .whiteBoxHead {
    padding-right: 23%;
  }

  .boxItem4 .whiteBox2 .whiteBoxHead {
    padding-right: 38%;
  }

  .boxItem1 .whiteBox1 .ill::before {
    width: 20.05vw;
    right: 0;
  }

  .boxItem1 .whiteBox2 .ill::before {
    width: 22.91vw;
    right: -2.09vw;
  }

  .boxItem1 .whiteBox3 .ill::before {
    width: 31.51vw;
    right: -2.09vw;
  }

  .boxItem2 .whiteBox1 .ill::before {
    width: 12.23vw;
    right: 0;
  }

  .boxItem2 .whiteBox2 .ill::before {
    width: 16.92vw;
    right: -0.79vw;
  }

  .boxItem3 .whiteBox1 .ill::before {
    width: 28.64vw;
    right: -3.2vw;
    right: -2.2vw;
    bottom: calc(100% - 1.56vw);
  }

  .boxItem4 .whiteBox1 .ill::before {
    width: 29.16vw;
    right: -3.2vw;
    bottom: calc(100% + 1.3vw);
  }

  .boxItem4 .whiteBox2 .ill::before,
  .boxItem4 .whiteBox3 .ill::before {
    width: 40.62vw;
    right: -2.61vw;
    bottom: calc(100% + 0.52vw);
  }

  .recommend {
    width: 78%;
    margin: 0 auto;
  }

  .recommendTitle {
    width: 27.6vw;
  }

  .recommendTitleWrap {
    padding-bottom: 7.81vw;
    background-size: auto 4.68vw;
    margin-bottom: 5.2vw;
    background-image: url("/ec/campaign/spring2025-cb/images/recommend-title-line-sp.svg");
  }

  .bannerList {
    flex-direction: column;
    align-items: center;
    gap: 5.2vw;
  }

  .bannerList > li img {
    height: auto;
  }

  .bannerList > li.banner1 {
    width: 84.8%;
  }

  .bannerList > li.banner2 {
    width: 100%;
  }

  .bannerList > li.banner3 {
    width: 100%;
  }

  .bannerList > li.banner4 {
    width: 76%;
  }

}
/*!
target
------------------------------
*/
.target {
  background-color: var(--color-light-blue);
  position: relative;
  padding: 140px 0;
}

.target::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/ec/campaign/spring2025-cb/images/bg-radiation.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.75;
}

.target::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("/ec/campaign/spring2025-cb/images/bg-dots-light-blue.png");
  background-repeat: repeat;
  background-position: top left;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}

.targetInner {
  position: relative;
  z-index: 2;
}

.targetTitle {
  width: 910px;
  max-width: 73%;
  margin: 0 auto 20px;
}

.targetSubTitle {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.targetSubTitle:before,
.targetSubTitle:after {
  content: "";
  height: 5px;
  flex-grow: 1;
  background-color: #000;
}

.targetSubTitle:before {
  margin-right: 1.5em;
}

.targetSubTitle:after {
  margin-left: 1.5em;
}

.targetSubTitle > span {
  position: relative;
}

.targetSubTitle > span::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 5px;
  left: -5px;
}

.targetSubTitle > span > span {
  width: 425px;
  max-width: 100%;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  padding: 0.3em 0.5em 0.1em;
  background-color: var(--color-yellow2);
  border: 3px solid #000;
  display: block;
  position: relative;
  z-index: 2;
}

.cbBox {
  position: relative;
}

.cbBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 8px;
  left: -8px;
}

.cbBoxInner {
  border: 3px solid #000;
  background-color: #fff;
  position: relative;
  z-index: 2;
}

.cbBoxCol2 {
  display: grid;
  grid-template-columns: repeat(2, 50%);
}

.colItem {
  display: flex;
  flex-direction: column;
  padding-bottom: 50px;
  background-color: rgba(255, 226, 1, 0.24);
}

.colItemLeft {
  background-color: rgba(232, 60, 60, 0.24);
}

.colItemRight {
  background-color: rgba(141, 200, 237, 0.4);
}

.cbBoxHead {
  height: 280px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
  padding: 50px 25px;
  text-align: center;
  margin-bottom: 40px;
}

.colItem .cbBoxHead {
  height: 280px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 100%;
  padding: 50px 80px 0;
  text-align: center;
  margin-bottom: 40px;
}

.printer .colItemLeft .cbBoxHead {
  background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-red-pc.svg");
}

.printer .colItemRight .cbBoxHead {
  background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-blue-pc.svg");
}

.scanner .cbBoxHead {
  margin-bottom: 25px;
  background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-yellow-pc.svg");
}

.cbBoxCatch {
  margin-bottom: 8px;
}

.cbBoxCatch img {
  height: 70px;
}

.scanner .cbBoxTitle img {
  height: 130px;
}

.colItemLeft .cbBoxTitle img {
  height: 60px;
}

.colItemLeft .cbBoxTitle img {
  height: 55px;
}

.cbBoxBody {
  flex: 1;
}

.scanner .cbBoxBody {
  width: 96%;
  margin: 0 auto;
}

.cbBoxListInnerLeft,
.cbBoxListInnerRight {
  max-width: 95%;
  margin: 0 auto;
}

.cbBoxList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin: 0px auto;
}

.cbBoxBodyCol2 .cbBoxBodyLeft .cbBoxList,
.cbBoxList.cbBoxListCol2.cbBoxList {
  max-width: 100%;
}

.cbBoxList.cbBoxListCol2 {
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.cbBoxList > li {
  background-color: #fff;
  padding: 25px 14px 15px;
  min-width: 0;
}

.cbBoxList > li > * {
  min-width: 0;
}

.cbBoxNote {
  margin-top: 1em;
  font-size: 14px;
  text-indent: -3em;
  padding-left: 3em;
  text-align: left;
}

.cbBoxList .icon {
  width: 70px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto 8px;
}

.colItemLeft .cbBoxList .icon {
  background-color: #E83C3C;
}

.colItemRight .cbBoxList .icon {
  background-color: #187ABE;
}

.cbBoxList .icon > span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.cbBoxList .icon > span .em {
  font-size: 1.75em;
  line-height: 1;
  transform: translateY(0.2em);
  display: inline-block;
}

.cbBoxList .text1 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.printer .cbBoxList .text1 .small {
  font-size: 0.85em;
}

.cbBoxList .photo {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.scanner .cbBoxList .photo img {
  width: 130px;
}

.cbBoxList .use {
  margin-bottom: 16px;
}

.cbBoxList .text2 {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: 30px 0 10px;
}

.cbBoxList .type {
  margin-bottom: 50px;
}

.useList {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
}

.useList > li {
  width: 135px;
  max-width: 100%;
  font-size: 14px;
  /* font-weight: bold; */
  color: #fff;
  line-height: 1.3;
  text-align: center;
  padding: 0.8em 0.5em;
  background-color: #10228B;
  border-radius: 8px;
}

.detail {
  width: 160px;
  max-width: 100%;
  margin: 0 auto;
}

.amount {
  width: 100%;
  border: 3px solid #E20100;
  text-align: center;
  margin: 0 auto 10px;
}

.amountHead {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background-color: #E20100;
  padding: 0.1em 0.2em;
}

.amountBody {
  padding: 0.2em 0.2em 0.1em;
}

.amountYen {
  font-size: 14px;
  color: #E20100;
  line-height: 1;
  text-align: center;
}

.amountYen .em {
  font-size: 2em;
  font-weight: bold;
}

a.amountLink {
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #363636;
  padding: 0.45em 0.5em 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  margin: 0 auto;
}

a.amountLink:hover {
  text-decoration: none;
}

.cbBoxButtonArea {
  padding: 25px 0 30px;
}

a.cbBoxButton {
  display: block;
  width: 455px;
  max-width: 90%;
  font-size: 26px;
  font-weight: bold;
  color: #000;
  line-height: 1.3;
  padding: 0.4em 1em 0.2em;
  border-radius: 100vh;
  background-color: var(--color-yellow2);
  text-align: center;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.33);
  margin: 0 auto;
}

a.cbBoxButton:hover {
  text-decoration: none;
}

.cbBoxBodyCol2 {
  display: flex;
  justify-content: space-between;
}

.cbBoxBodyCol2 .cbBoxBodyLeft {
  width: 50%;
}

.cbBoxBodyCol2 .cbBoxBodyRight {
  width: 48%;
}

.scanner {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .target {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 10.41vw 0;
  }

  .target::before {
    content: none;
  }

  .target::after {
    background-size: 8.33vw auto;
  }

  .targetSubTitle {
    width: 78%;
    justify-content: center;
    margin: 0 auto 7.81vw;
  }

  .scanner .targetSubTitle {
    margin-bottom: 5.2vw;
  }

  .targetSubTitle::before,
  .targetSubTitle::after {
      height: 0.78vw;
    }

  .targetSubTitle::before {
    margin-right: 0.5em;
  }

  .targetSubTitle::after {
    margin-left: 0.5em;
  }

  .targetSubTitle > span::before {
    top: 2px;
    left: -2px;
  }

  .targetSubTitle > span > span {
    width: 57.29vw;
    font-size: 5.2vw;
    padding: 0.15em 0.5em 0.05em;
  }

  .cbBoxCol2 {
    grid-template-columns: 1fr;
  }

  .cbBox {
    width: 78%;
    margin: 0 auto;
  }

  .cbBox::before {
    top: 3px;
    left: -3px;
  }

  .colItem {
    padding-bottom: 3.9vw;
  }

  .colItem .cbBoxHead {
    height: 39.06vw;
    padding: 5.2vw 5.2vw 10vw;
  }

  .cbBoxCatch {
    margin: 0 auto;
  }

  .cbBoxCatch img,
  .colItemLeft .cbBoxTitle img,
  .colItemLeft .cbBoxTitle img,
  .scanner .cbBoxTitle img {
    height: auto;
  }

  .colItemLeft .cbBoxCatch {
    width: 46.87vw;
  }

  .colItemRight .cbBoxCatch {
    width: 41.66vw;
  }

  .cbBoxListInnerLeft,
  .cbBoxListInnerRight,
  .cbBoxList,
  .cbBoxBodyCol2 .cbBoxBodyLeft .cbBoxList,
  .cbBoxList.cbBoxListCol2.cbBoxList {
    max-width: 91%;
  }

  .cbBoxListInnerLeft .cbBoxList,
  .cbBoxListInnerRight .cbBoxList {
    max-width: 100%;
  }

  .cbBoxList,
  .cbBoxBodyCol2 .cbBoxBodyLeft .cbBoxList,
  .cbBoxList.cbBoxListCol2.cbBoxList {
    grid-template-columns: 1fr;
    row-gap: 9.11vw;
  }

  .scanner .cbBoxList {
    row-gap: 3.9vw;
  }

  .cbBoxBodyCol2 {
    flex-direction: column;
    row-gap: 3.9vw;
  }

  .cbBoxBodyCol2 .cbBoxBodyLeft, .cbBoxBodyCol2 .cbBoxBodyRight {
    width: 100%;
  }

  .cbBoxList > li {
    padding: 5.2vw 3.9vw 3.9vw;
  }

  .cbBoxNote {
    font-size: 3.125vw;
    text-align: left;
  }

  .targetTitle {
    max-width: 77%;
    margin: 0 auto 2.6vw;
  }

  .printer .colItemLeft .cbBoxHead {
    background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-red-sp.svg");
  }

  .printer .colItemRight .cbBoxHead {
    background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-blue-sp.svg");
  }

  .scanner .cbBoxHead {
    margin-bottom: 5.2vw;
    background-image: url("/ec/campaign/spring2025-cb/images/bg-box-head-yellow-sp.svg");
  }

  .cbBoxBody {
    flex: 0 1 auto;
  }

  .scanner .cbBoxBody {
    width: 100%;
  }

  .cbBoxList .icon {
    width: 13.54vw;
    margin: -10.42vw auto 3.9vw;
  }

  .cbBoxList .icon > span {
    font-size: 3.12vw;
  }

  .cbBoxList .icon > span .em {
    font-size: 1.5em;
  }

  .cbBoxList .text1 {
    font-size: 3.64vw;
    margin-bottom: 1.56vw;
  }

  .printer .cbBoxList .text1 {
    font-size: 4.16vw;
  }

  .printer .cbBoxList .text1 .small {
    font-size: 0.9em;
  }

  .printer .photo {
    width: 35.15vw;
    margin: 0 auto;
  }

  .scanner .photo {
    width: 41.66vw;
    margin: 0 auto;
  }

  .cbBoxList .text2 {
    font-size: 3.64vw;
    margin: 3.9vw 0 1.3vw;
  }

  .cbBoxList .type {
    margin-bottom: 5.2vw;
  }

  .useList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.56vw;
  }

  .useList > li {
    width: auto;
    font-size: 3.12vw;
    border-radius: 2.08vw;
  }

  .detail {
    width: 100%;
  }

  .amount {
    margin: 0 auto 1.56vw;
  }

  a.amountLink {
    font-size: 3.64vw;
  }

  .amountHead {
    font-size: 3.12vw;
  }

  .amountYen {
    font-size: 3.9vw;
  }

  .cbBoxButtonArea {
    padding: 3.9vw 0 5.2vw;
  }

  a.cbBoxButton {
    font-size: 4.16vw;
  }

  .scanner {
    margin-top: 6.51vw;
  }

  .cbBoxTitle {
    margin: 0 auto;
  }

  .scanner .cbBoxTitle {
    width: 59.89vw;
  }

  .outlineLogoImg {
    width: 96%;
  }
}
/*!
outline
------------------------------
*/
.outline {
  margin: 120px 0 80px;
}

.contentBox {
  max-width: 1150px;
  margin: 0 auto;
  border: 3px solid #000;
  position: relative;
}

.contentBox::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 5px;
  left: -8px;
}

.contentBoxInner {
  position: relative;
  z-index: 2;
}

.contentBoxTitle {
  font-size: 29px;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  background-color: var(--color-yellow2);
  padding: 0.3em 0.5em 0.1em;
  border-bottom: 3px solid #000;
}

.contentBoxBody {
  padding: 50px 30px;
  background-color: #fff;
}

.outlineText {
  font-size: 22px;
  line-height: 1.3;
  max-width: 560px;
  margin: 0 auto 16px;
}

.outlineTitle {
  font-size: 29px;
  font-weight: bold;
  color: var(--color-dark-blue);
  line-height: 1.3;
  text-align: center;
  margin-bottom: 15px;
}

.defBoxText {
  font-size: 19px;
  font-weight: bold;
  color: var(--color-dark-blue);
  line-height: 1.3;
  display: inline-block;
  border: 2px solid currentColor;
  padding: 0.25em 0.8em 0.08em;
  margin-bottom: 10px;
}

.outlineDefWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 55px;
}

.defText {
  font-size: 26px;
}

.outlinePop {
  width: 425px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto 15px;
}

.lineUp {
  margin-bottom: 40px;
}

.lineUpTitleSub {
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 15px;
  display: block;
}

.lineUpTitle {
  display: block;
  width: 160px;
  max-width: 100%;
  margin: 0 auto 20px;
}

.outlineLogoImgWrap {
  width: 700px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.outlineLogoImg {
  display: inline-block;
  border: 4px solid #000;
}

.stepTitle {
  font-size: 29px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.stepImg {
  text-align: center;
  margin-bottom: 30px;
}

.stepItems {
  max-width: 84%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 auto;
}

.stepItemTitle {
  border-bottom: 5px solid #000;
  display: flex;
  align-items: flex-end;
}

.stepItemIcon {
  flex-shrink: 0;
  width: 105px;
  max-width: 100%;
  display: inline-block;
  background-color: #000;
  padding: 1em 0.8em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepItemText {
  flex: 1;
  font-size: 22px;
  line-height: 1.4;
  padding-left: 1.4em;
}

.stepItemBody {
  padding-top: 25px;
}

.stepItemInner {
  max-width: 700px;
  margin: 0 auto;
}

.stepItemInnerL {
  max-width: 720px;
  margin: 0 auto;
}

.stepListOrder {
  list-style: none;
}

.stepListOrder > li {
  font-size: 19px;
  line-height: 1.75;
  padding-left: 1.4em;
  text-indent: -1.4em;
  position: relative;
}

.stepListOrder > li .stepNum {
  display: inline-block;
  position: absolute;
  width: 1em;
  height: 1em;
  top: 0;
  left: 0;
}

.stepListOrder > li > * {
  text-indent: 0;
}

.stepListOrder > li:not(:first-child) {
  margin-top: 25px;
}

.stepListOrder > li .text {
  font-size: 16px;
  text-indent: 0;
  margin: 0.7em 0;
}

.stepListOrder > li .textS {
  font-size: 14px;
  line-height: 1.75;
  margin: 1em 0;
}

.stepListOrder .textLine {
  padding-bottom: 0.05em;
  position: relative;
  text-decoration: underline;
  text-decoration-color: var(--color-gray);
  text-underline-offset: 0.3em;
}

.stepListOrder .textLine1 {
  margin-bottom: 15px;
  display: inline-block;
}

.stepItemText2 {
  font-size: 16px;
  line-height: 1.8;
}

.stepItemText3 {
  font-size: 22px;
  line-height: 1.3;
  margin: 1em 0;
}

.stepItemText4 {
  font-size: 19px;
  line-height: 1.5;
  margin: 1em 0;
}

.receiptList {
  display: flex;
  gap: 15px;
}

.stepImgCaption {
  font-size: 19px;
  line-height: 1.4;
  margin-bottom: 10px;
}

.stepImgCaption .small {
  font-size: 0.8em;
}

.receiptList .stepImgCaption {
  text-align: center;
}

.beforeAfter {
  display: flex;
  align-items: center;
  gap: 15px;
}

.stepItemImgs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stepItemImgWrap {
  margin-bottom: 30px;
}

.qrImg {
  text-align: center;
  margin-bottom: 25px;
}

.stepItemCaution {
  font-size: 30px;
  font-weight: bold;
  color: #EA1313;
  text-align: center;
}

.stepItemCaution p {
  line-height: 1.2;
}

.stepItemBody .stepItemInner > *:first-child,
.stepItemBody .stepItemInnerL > *:first-child {
  margin-top: 0;
}

.stepItemBody .stepItemInner > *:last-child,
.stepItemBody .stepItemInnerL > *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .outline {
    margin: 7.81vw 0 13.02vw;
  }

  .contentBox {
    width: 94%;
  }

  .contentBoxTitle {
    font-size: 6.25vw;
  }

  .contentBoxBody {
    padding: 6.51vw 3.9vw 10.41vw;
  }

  .outlineText {
    font-size: 4.68vw;
    margin-bottom: 5.2vw;
  }

  .outlineTitle {
    font-size: 5.46vw;
    margin-bottom: 3.9vw;
  }

  .defBoxText {
    font-size: 3.38vw;
    border-width: 1px;
    margin-bottom: 1.3vw;
  }

  .outlineDefWrap {
    align-items: flex-start;
    margin-bottom: 11.71vw;
  }

  .defText {
    font-size: 3.65vw;
  }

  .outlinePop {
    width: 67.7vw;
    margin: 0 auto 2.6vw;
  }

  .lineUpTitleSub {
    font-size: 4.68vw;
    margin-bottom: 3.9vw;
  }

  .lineUpTitle {
    width: 35.15vw;
    margin: 0 auto 3.9vw;
  }

  .lineUp {
    margin-bottom: 7.81vw;
  }

  .stepItems {
    max-width: 100%;
    gap: 10.41vw;
  }

  .stepTitle {
    font-size: 6.25vw;
    margin-bottom: 5.2vw;
  }

  .stepImg {
    margin: 0 -1.5vw 15.62vw;
  }

  .stepItemText {
    font-size: 4.68vw;
    padding-left: 0.38em;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .stepItemText p {
    line-height: 1.11;
  }

  .stepItemTitle {
    align-items: stretch;
    border-width: 3px;
  }

  .stepItemIcon {
    width: 16.4vw;
  }

  .stepItemBody {
    padding-top: 6.51vw;
  }

  .stepListOrder > li {
    font-size: 4.16vw;
  }

  .stepListOrder .textLine1 {
    margin-bottom: 2.6vw;
  }

  .stepListOrder > li .text {
    font-size: 3.64vw;
    line-height: 1.14;
  }

  .stepItemIcon {
    padding: 0.6em 0.5em;
  }

  .stepImgCaption {
    font-size: 3.64vw;
    margin-bottom: 1.82vw;
  }

  .receiptList > li img {
    height: 22.91vw;
  }

  .stepItemImgs {
    width: 69.7vw;
    gap: 6.51vw;
  }

  .stepListOrder > li .textS {
    font-size: 3.12vw;
    line-height: 1.16;
  }

  .beforeAfter {
    gap: 1.04vw;
    flex-shrink: 0;
  }

  .beforeAfter .arrow {
    width: 1.56vw;
    flex-shrink: 0;
  }

  .inkImg {
    width: 44.79vw;
  }

  .stepItemImgWrap {
    margin-bottom: 7.81vw;
  }

  .stepItemText3 {
    font-size: 4.16vw;
  }

  .stepItemText4 {
    font-size: 3.12vw;
    line-height: 1.14;
  }

  .applyButton {
    display: block;
  }

  .applyButtonWrap {
    margin-top: 7.81vw;
  }

  .stepItemCaution {
    font-size: 5.2vw;
    line-height: 1.2;
  }
}
/*!
howto
------------------------------
*/
.howtoStepImg {
  text-align: center;
  margin-bottom: 55px;
}

.howtoStepImg > span {
  display: inline-block;
  position: relative;
}

.howtoStepImg > span::before {
  content: "";
  width: 135px;
  aspect-ratio: 170/132;
  background-image: url("/ec/campaign/spring2025-cb/images/cashback-step-img-pop.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: calc(100% - 12px);
}

.howto .lineUp {
  margin-top: 40px;
}

.howto .contentBoxBody {
  padding-top: 70px;
}

@media screen and (max-width: 767px) {
  .howto .contentBoxBody {
    padding-top: 6.51vw;
  }

  .howtoStepImg > span::before {
    content: none;
  }

  .howtoStepImg {
    margin-bottom: 10.41vw;
  }

  .howto .stepItemText4 {
    font-size: 4.16vw;
    line-height: 1.375;
  }

  .howto .lineUp {
    margin-top: 7.81vw;
  }
}
/*!
qa
------------------------------
*/
.qa {
  padding: 50px 0 55px;
}

.qaInner {
  max-width: 700px;
  margin: 0 auto;
}

.qaTitle {
  width: 90px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}

.qaTitleSub {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin: 25px 0 20px;
}

.qaItems {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.qaItem {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qaItem dt,
.qaItem dd {
  display: flex;
  gap: 12px;
}

.qaItem dt .text,
.qaItem dd .text {
  font-size: 15px;
  line-height: 1.3;
}

.qaItem dt .text.singleLine,
.qaItem dd .text.singleLine {
  display: flex;
  align-items: center;
}

.qaItem dt {
  font-weight: normal;
}

.qaItem dt .icon,
.qaItem dd .icon {
  width: 27px;
  text-align: center;
  flex-shrink: 0;
}

.qaItem dd .icon {
  transform: translateX(-2px);
}

@media screen and (max-width: 767px) {
  .qa {
    padding: 11.71vw 0;
  }

  .qaTitle {
    margin-bottom: 7.81vw;
  }

  .qaItem dt .icon,
  .qaItem dd .icon {
      width: 9.89vw;
    }

  .qaItem dd .icon {
    transform: translateX(-0.52vw);
  }

  .qaTitleSub {
    font-size: 6.25vw;
    margin: 7.81vw 0;
  }

  .qaItems {
    width: 82%;
    margin: 0 auto;
    gap: 6.51vw;
  }

  .qaItem dt .text,
  .qaItem dd .text {
      font-size: 3.12vw;
      line-height: 1.33;
    }

  .qaItem {
    gap: 3.9vw;
  }
}
/*!
info
------------------------------
*/
.infoInner {
  max-width: 960px;
  margin: 0 auto;
}

.infoItem:not(:first-of-type) {
  margin-top: 40px;
}

.infoTitle {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 0.2em;
  border-bottom: 6px solid currentColor;
}

.infoContent {
  padding-top: 30px;
}

.infoText {
  font-size: 19px;
  line-height: 1.5;
}

.infoText p + p {
  margin-top: 1em;
}

.infoTextTitle {
  font-weight: normal;
  margin-top: 1em;
}

.infoBox {
  border: 2px solid var(--color-dark-blue);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 30px;
}

.infoBoxTitle {
  font-size: 34px;
  font-weight: bold;
  color: var(--color-dark-blue);
  line-height: 1.2;
  margin-bottom: 16px;
}

.infoBoxTel {
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  color: var(--color-dark-blue);
  margin-bottom: 25px;
}

.infoBoxTel a {
  color: var(--color-dark-blue);
}

.infoBoxTel > span {
  display: inline-block;
  padding-left: 1.6em;
  position: relative;
}

.infoBoxTel > span::before {
  content: "";
  width: 1.12em;
  height: 1.12em;
  background-image: url("/ec/campaign/spring2025-cb/images/icon-tel.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -0.08em;
  left: 0;
}

.infoDateItem {
  font-size: 16px;
  line-height: 1.3;
}

.infoDateItem:not(:first-of-type) {
  margin-top: 0.75em;
}

@media screen and (max-width: 767px) {
  .infoInner {
    width: 82%;
    margin: 0 auto;
  }

  .infoTitle {
    font-size: 4.42vw;
    border-width: 3px;
  }

  .infoContent {
    padding-top: 3.9vw;
  }

  .infoText {
    font-size: 3.12vw;
  }

  .infoItem:not(:first-of-type) {
    margin-top: 10.41vw;
  }

  .infoBox {
    margin: 5.2vw 0 10.41vw;
    padding: 5.2vw;
  }

  .infoBoxTitle {
    font-size: 4.16vw;
    margin-bottom: 3.9vw;
  }

  .infoBoxTel {
    font-size: 6.77vw;
    margin-bottom: 3.9vw;
  }

  .infoBoxTel > span::before {
    width: 1.35em;
    height: 1.35em;
    top: -0.2em;
  }

  .infoDateItem {
    font-size: 3.12vw;
  }
}