.gray-box-shadow {
  box-shadow: 0px 0px 8px 8px rgba(0,0,0,0.1);
}
.white-box-shadow {
  text-shadow: -1px 1px 30px rgba(255, 255, 255, 1);
}
/* Set common width - height */
.w-10 {
  width: 10%;
}
.w-20 {
  width: 20%;
}
.w-25 {
  width: 25%;
}
.w-30 {
  width: 30%;
}
.w-32 {
  width: 32%;
}
.w-35 {
  width: 35%;
}
.w-40 {
  width: 40%;
}
.w-43 {
  width: 43%
}
.w-45 {
  width: 45%;
}
.w-50 {
  width: 50%;
}
.w-57 {
  width: 57%
}
.w-60 {
  width: 60%;
}
.w-65 {
  width: 65%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-100 {
  width: 100%;
}
.min-w-50 {
  min-width: 50%;
}
.min-w-60 {
  min-width: 60%;
}
.min-w-300p {
  min-width: 300px;
}
.min-h-auto {
  min-height: auto !important;
}

.h-10 {
  height: 10%;
}
.h-20 {
  height: 20%;
}
.h-30 {
  height: 30%;
}
.h-32 {
  height: 32%;
}
.h-35 {
  height: 35%;
}
.h-40 {
  height: 40%;
}
.h-43 {
  height: 43%
}
.h-45 {
  height: 45%;
}
.h-50 {
  height: 50%;
}
.h-57 {
  height: 57%
}
.h-60 {
  height: 60%;
}
.h-65 {
  height: 65%;
}
.h-70 {
  height: 70%;
}
.h-80 {
  height: 80%;
}
.h-90 {
  height: 90%;
}
.h-100 {
  height: 100%;
}


/* Common overflow */
.overflow-visible {
  overflow: visible;
}
.overflow-hidden {
  overflow: hidden;
}
/* Set common margin */
.m-0 {
  margin: 0 !important;
}
.mb-5p {
  margin-bottom: 5px;
}
.ml-5p {
  margin-left: 5px;
}
.ml-1 {
  margin-left: 10px;
}
.mb-05 {
  margin-bottom: 5px;
}
.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}
.mb-5 {
  margin-bottom: 50px;
}
.mb-6 {
  margin-bottom: 60px;
}
.mb-7 {
  margin-bottom: 70px;
}
.mb-8 {
  margin-bottom: 80px;
}
.mb-9 {
  margin-bottom: 90px;
}
.mb-10 {
  margin-bottom: 100px;
}
.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}
.mt-5 {
  margin-top: 50px;
}
.mt-6 {
  margin-top: 60px;
}
.mt-7 {
  margin-top: 70px;
}
.mt-8 {
  margin-top: 80px;
}
.mt-9 {
  margin-top: 90px;
}
.mt-10 {
  margin-top: 100px;
}
.mr-5p {
  margin-right: 5px;
}
.mr-1 {
  margin-right: 10px;
}
.mr-2 {
  margin-right: 20px;
}
.mr-3 {
  margin-right: 30px;
}
.mr-4 {
  margin-right: 40px;
}
.mr-5 {
  margin-right: 50px;
}
.mr-6 {
  margin-right: 60px;
}
.mr-7 {
  margin-right: 70px;
}
.mr-8 {
  margin-right: 80px;
}
.mr-9 {
  margin-right: 90px;
}
.mr-10 {
  margin-right: 100px;
}

/* Set common display */
.d-none {
  display: none !important;
}
/* Set common flex and grid*/
.flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-direction-column {
  flex-direction: column !important;
}
.flex-flow-column {
  flex-flow: column;
}
.flex-gap-1r {
  gap: 1rem;
}
.flex-gap-10p {
  gap: 10px;
}
.align-item-center {
  align-content: center;
}
.justify-content-sp-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.align-items-center {
  align-items: center;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-space-around {
  justify-content: space-around;
}
.justify-content-space-between {
  justify-content: space-between;
}
.justify-content-flex-end {
  justify-content: flex-end;
}
.justify-content-flex-start {
  justify-content: flex-start;
}
.grid {
  display: grid;
}
.inline-gird {
  display: inline-grid;
}
.grid-1x {
  grid-template-areas: '1fr';
}
.grid-2x {
  grid-template-areas: '1fr 1fr';
}
.grid-3x {
  grid-template-areas:'1fr 1fr 1fr';
}
.grid-4x {
  grid-template-areas:'1fr 1fr 1fr 1fr';
}
.grid-auto-rows-1fr {
  grid-auto-rows: 1fr;
}
.grid-auto-columns-1fr {
  grid-auto-columns: 1fr;
}
.grid-col-span-2 {
  grid-column: 1 / span 2
}
.grid-col-span-3 {
  grid-column: 1 / span 3
}
.flex-1 {
  flex: 1;
}
.flex-10pc {
  flex: 10%;
}
.flex-20pc {
  flex: 20%;
}
.flex-30pc {
  flex: 30%;
}
.flex-40pc {
  flex: 40%;
}
.flex-50pc {
  flex: 50%;
}
.flex-60pc {
  flex: 60%;
}
.flex-70pc {
  flex: 70%;
}
.flex-80pc {
  flex: 80%;
}
.flex-90pc {
  flex: 90%;
}
.flex-100pc {
  flex: 100%;
}
.gap-5p {
  gap: 5px;
}
.gap-10p {
  gap: 10px;
}
.gap-20p {
  gap: 20px;
}
.gap-30p {
  gap: 30px;
}
.gap-40p {
  gap: 40px;
}
.gap-50p {
  gap: 50px;
}
.c-gap-5p {
  column-gap: 5px;
}
.c-gap-10p {
  column-gap: 10px;
}
.c-gap-20p {
  column-gap: 20px;
}
.c-gap-30p {
  column-gap: 30px;
}
.r-gap-5p {
  row-gap: 5px;
}
.r-gap-10p {
  row-gap: 10px;
}
.r-gap-20p {
  row-gap: 20px;
}
.r-gap-30p {
  row-gap: 30px;
}
.r-gap-40p {
  row-gap: 40px;
}
.r-gap-50p {
  row-gap: 50px;
}
/* Set common letter-spacing */
.letter-sp-1p {
  letter-spacing: 1px;
}
.letter-sp-2p {
  letter-spacing: 2px;
}
.letter-sp-3p {
  letter-spacing: 3px;
}
.text-red {
  color: red;
}
.text-orange-800 {
  color: rgb(236 69 13);
}
.text-orange-600 {
  color: rgb(225 103 90);
}
.text-orange-500 {
  color: rgb(242 127 25);
}
.text-yellow-500 {
  color: rgb(255 254 3);
}
.text-blue-200 {
  color: rgb(11 91 172);
}
.text-brown-400 {
  color: #755e4f;
}
.bg-yellow-300 {
  background-color: #f6f4b6;
}
.bg-orange-200 {
  background-color: rgb(255 243 197);
}
.bg-orange-600 {
  background-color: #f6931f;
}
.bg-gray-100 {
  background-color: #F6F6F6;
}
.bg-gray-200 {
  background-color: #f3f3f3;
}
.bg-gray-300 {
  background-color: #e1e1e1 !important;
}
.bg-blue-200 {
  background-color: rgb(176 213 225);
}
.bg-blue-400 {
  background-color: rgb(38 164 219);
}
.bg-blue-600 {
  background-color: rgb(52 126 171);
}
.bg-brown-400 {
  background-color: #755e4f;
}
.bg-green-300 {
  background-color: #9ec535;
}
.bg-green-600 {
  background-color: #27c755;
}
.bg-green-400 {
  background-color: rgb(45 186 143);
}
.bg-green-500 {
  background-color: #00a980;
}
.bg-green-800 {
  background-color: rgb(41 124 83);
}

.bg-pink-200 {
  background-color: rgb(244 199 193);
}
.bg-pink-400 {
  background-color: rgb(240 95 133);
}
.bg-pink-600 {
  background-color: rgb(194 72 98);
}
.bg-blue-500 {
  background-color: #0292c5;
}
.bg-blue-800 {
  background-color: rgb(11 91 172);
}
.bg-pink-800 {
  background-color: rgb(185 24 72);
}
.bg-yellow-600 {
  background-color: #ffdf73;
}
.bg-orange-800 {
  background-color: rgb(236 69 13);
}
.bg-blue-800:hover {
  background-color: rgb(3, 61, 119);
}
.bg-green-800-hover:hover {
  background-color: rgb(34, 105, 78);
}
.bg-pink-800-hover:hover {
  background-color: rgb(129, 21, 49)
}
.bg-orange-800-hover:hover {
  background-color: rgb(217, 58, 5)
}
.bg-white {
  background-color: white;
}
.bg-gray-800 {
  background-color: rgb(51 51 51);
}
.pc-shipping-base {
  background-image: url(/images/index/pc_shippingbase_b2x.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.txtC {
  text-align: center;
}
.text-white {
  color: white !important;
}
.text-pink-600 {
  color: #d04e69;
}
.text-blue-600 {
  color: #3379a5;
}
.text-green-200 {
  color: #6a9849;
}
.d-inline-block {
  display: inline-block;
}
.d-block {
  display: block;
}
.over-f-hidden {
  overflow: hidden;
}
/* Common font */
.fs-10 {
  font-size: 10px;
}
.fs-12 {
  font-size: 12px;
}
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.fs-22 {
  font-size: 22px;
}
.fs-24 {
  font-size: 24px;
}
.fs-30 {
  font-size: 30px;
}
.fs-36 {
  font-size: 36px;
}
.fs-40 {
  font-size: 40px;
}
.fs-45 {
  font-size: 45px;
}
.fs-50 {
  font-size: 50px;
}
.fs-3p6r {
  font-size: 3.6rem;
}
.fs-2r {
  font-size: 2rem;
}
.fs-1p1r {
  font-size: 1.1rem;
}
.fs-1p6r {
  font-size: 1.6rem;
}
.fs-1p4r {
  font-size: 1.4rem;
}
.fs-2p56r {
  font-size: 2.56rem;
}
.fs-1p76r {
  font-size: 1.76rem;
}
.fs-3r {
  font-size: 3rem;
}
.bold {
  font-weight: bold;
}

/* Common padding */
.p-05 {
  padding: 5px;
}
.p-1 {
  padding: 10px;
}
.p-15p {
  padding: 15px;
}
.p-2 {
  padding: 20px;
}
.p-3 {
  padding: 30px;
}
.p-4 {
  padding: 40px;
}
.p-5 {
  padding: 50px;
}
.p-1p5vw {
  padding: 1.5vw;
}
.pt-0 {
  padding-top: 0;
}
.pt-05 {
  padding-top: 5px;
}
.pt-1 {
  padding-top: 10px !important;
}
.pt-2 {
  padding-top: 20px;
}
.pt-25p {
  padding-top: 25px;
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}
.pt-5 {
  padding-top: 50px;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-05 {
  padding-bottom: 5px;
}
.pb-1 {
  padding-bottom: 10px !important;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-4 {
  padding-bottom: 40px;
}
.pb-5 {
  padding-bottom: 50px;
}
.pl-05 {
  padding-left: 5px;
}
.pl-1 {
  padding-left: 10px;
}
.pl-2 {
  padding-left: 20px;
}
.pl-3 {
  padding-left: 30px;
}
.pl-4 {
  padding-left: 40px;
}
.pl-5 {
  padding-left: 50px;
}
.pl-8 {
  padding-left: 80px;
}

.pr-1 {
  padding-right: 10px;
}
.pr-2 {
  padding-right: 20px;
}
.pr-3 {
  padding-right: 30px;
}
.pr-4 {
  padding-right: 40px;
}
.pr-5 {
  padding-right: 50px;
}
.pr-8 {
  padding-right: 80px;
}
.lh-normal {
  line-height: normal;
}
.border {
  border: solid;
}
.border-c-tran {
  border-color: transparent;
}
.border-c-orange-500 {
  border-color: rgb(242 127 25);
}
.border-c-blue-200 {
  border-color: rgb(11 91 172);
}
.border-c-brown-500 {
  border-color: #755e4f;
}
.border-c-green-100 {
  border-color: rgb(120, 163, 80);
}
.border-c-green-200 {
  border-color: rgb(106, 152, 73);
}
.border-c-green-300 {
  border-color: rgb(89, 140, 64);
}
.border-c-green-400 {
  border-color: rgb(78, 127, 64);
}
.border-c-green-500 {
  border-color: rgb(67, 116, 63);
}
.border-w-1 {
  border-width: 1px;
}
.radius-05 {
  border-radius: 5px;
}
.radius-1 {
  border-radius: 10px;
}
.radius-2 {
  border-radius: 20px;
}
.radius-3 {
  border-radius: 30px;
}
.radius-4 {
  border-radius: 40px;
}
.radius-5 {
  border-radius: 50px;
}
/* Set common position */
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.top-0 {
  top: 0;
}
.top--15p {
  top: -15px;
}
.top--20p {
  top: -20px;
}
.top--25p {
  top: -25px;
}
.top-calc-50pc-13p {
  top: calc(50% - 13px);
}
.top-calc-50pc-10p {
  top: calc(50% - 10px);
}
.top-calc-50pc-15p {
  top: calc(50% - 15px);
}

.left-0 {
  left: 0;
}
.left--25p {
  left: -25px;
}

.right--35p {
  right: -35px;
}
.right--27p {
  right: -27px;
}
.right--19p {
  right: -19px;
}
.right-calc-50pc-10p {
  right: calc(50% - 10px);
}

/* Arrow style */
.arrow-right::before {
  content: "";
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  right: 15px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #FFE;
  top: 48%;
  transform: translateY(-50%) rotate(45deg);
}
.triangle {
  transition: .3s;
  border-style: solid;
  width: 0;
  height: 0;
  line-height: 0;

}
.triangle.right {
  border-width: 10px 25px 10px 0;
}
.triangle.top {
  border-width: 0 10px 15px
}
.triangle.right.border-green-300 {
  border-color: transparent transparent #9ec535 transparent;
  border-color: transparent #9ec535 transparent transparent;
}
.triangle.top.border-green-300 {
  border-color: transparent transparent #9ec535;
  border-color: transparent transparent #9ec535 transparent;

}

.right-acute-triangle-before:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 100%;
  border-top: 5rem solid #755e4f;
  border-right: solid transparent 2rem;
}
.square-before-list:before {
  content: "";
  position: absolute;
  top: 49%;
  transform: translateY(-50%);
  left: 0;
  width: 1rem;
  height: 1rem;
}
.right-equilateral-triangle-before::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -1.5rem;
  border: 1.5rem solid transparent;
  border-left: 1.5rem solid #f3f3f3;
}

.square-green.square-before-list:before {
  background-color: #00a980;
}
.square-blue.square-before-list:before {
  background-color: #0292c5;
}



.text-blue-200.arrow-right::before {
  border-top: solid 1px rgb(11 91 172);
  border-right: solid 1px rgb(11 91 172);
}
.a-link {
  transition: 0.5s;
}
.a-link::before {
  transition: 0.5s;
}
.a-link:hover {
  background-color: rgb(11 91 172);
  color: white;
  font-weight: bold;
  transition: 0.5s;
}
.a-link:hover::before {
  border-top: solid 1px #fff;
  border-right: solid 1px #FFE;
  transition: 0.5s;
}
.main__sns {
  background: none;
}
.main__Banner {
  background-color: #EDF7E3;
}
.main__rankingListItemSectionTh,
.main__buyingGuideListInstruction {
  font-size: 1.4rem;
}
.right{
  transform: rotate(360deg)!important;
  -webkit-transform: rotate(360deg)!important;
}
.par-step{
  height: 135px;
  background-image: url('/images/pc_price.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
/*.par-step-sp{*/
/*  max-height: 88px;*/
/*  background-image: url('/images/sp_period.png');*/
/*  background-repeat: no-repeat;*/
/*  background-position: top;*/
/*  background-size: cover;*/
/*}*/
.step {
  font-weight: bold;
  padding-top: 35px;
  text-align: center;
  width: 25%;
}

p.title-step {
  color: white;
}
.top-text {
  color: white;
  text-align: center;
  padding-top: 13px;
}
.step-sp {
  padding-top: 10px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  width: 25%;
}

p.title-step-sp {
  color: white;
}

.top-text-sp {
  font-size: 12px;
  color: white;
  text-align: center;
  padding-top: 2px;
}
.arrow-right-img {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #c0272d;
  right: -13px;
  bottom: -3px;
}
.arrow-left-img {
  position: absolute;
  width: 0;
  left: -12px;
  bottom: -3px;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 16px solid #c0272d;
}

.pad-img{
  color: white;
  text-align: center;
  margin: 0px 12px;
  position: relative;
  padding: 0px;
  background: #c0272d;
}
.w-50-im{
  border-left:1px solid ;
  border-right:1px solid ;
  width: 50%;
  margin-top: 10px;
  padding-bottom: 15px;
}
.step2-sp{
  border-left: 1px solid ;
}
.step3-sp{
  border-right: 1px solid ;
}
.step-sp.step1-sp {
  background: #aad35d;
}

.step-sp.step2-sp {
  background: #92c94f;
}

.step-sp.step3-sp {
  background: #7bbf41;
}

.step4-sp.step-sp {
  background: #63b533;
}
.lh-1{
  line-height: 1.0rem;
}
.base_section h1.title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.base_section h1.title span {
  background-image: linear-gradient(to right, #a0d15b, #a0d15b 9px, transparent 9px, transparent 20px);
  background-size: 14px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 2px;
}

.base_section h1.top_title {
  font-size: 33px;
}
.period_area.wnuro .trip {
  display: none;
}

/* Footer for wnuro */
.wnuro_wrap footer img {
  width: 100%;
}
.wnuro_wrap .mainFooter__row03InfoIsms img {
  width: 132px;
  margin-left: 29px;
  padding-top: 1px;
}
.wnuro_wrap .mainFooter__row03InfoBanner img {
  width: 190px;
}
.wnuro_wrap .mainFooter__row03MenuItem a {
  color: #333;
  text-decoration: none;
}
.wnuro_wrap .detail_contents {
  padding: 10px 10px 10px 10px;
}
.wnuro_wrap .detail_contents.checked {
  padding: 10px 10px 40px 10px;
}
.wnuro_wrap #entry .detail_image .modal_button02 {
  background: #f00;
}
.wnuro_wrap footer {
  margin-top: -10px;
  background: #9CC535;
}
.wnuro_wrap .mainFooter__row02Right {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .base_section h1.title {
    font-size: 22px;
    line-height: 1.5;
  }
  .base_section h1.top_title {
    font-size: 22px;
  }
  .sp-bg-gray-300 {
    background-color: #e1e1e1 !important;
  }
  #entry .period_day.wnuro .select_day input.sp-bg-gray-300 {
    background-color: #e1e1e1 !important;
  }
  .three-row p:first-child{
    font-size: 16px !important;
  }
  .sp-w-100 {
    width: 100%;
  }
}
.three-row p:first-child{
  font-size: 20px;
  text-align: center;
  color: #b8de85;
  margin-bottom: 10px;
  font-weight: bold;
}
