@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

html, body {
	margin: 0;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: opacity .5s;
}
a:hover {
  opacity: .6;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none!important;
  }
}

/*------------
  common
------------*/

.bg-gray {
  background: #F0F0F0;
}
.bg-green {
  background: #13AB5E;
}
.bg-lightblue {
  background: #E9F4FB;
}
.bg-lightred {
  background: #FBEDF3;
}
.bg-yellow {
  background: #FFFAE6;
}
.bg-dot {
  background: url("../img/common/bg_dot.png") no-repeat center/cover;
}
.bg-dot2 {
  background: url("../img/vol02/bg_dot.png") no-repeat center/cover;
}
.bg-glass {
  position: relative;
  color: #FFFFFF;
  background: url("../img/common/bg_glass.png") no-repeat center/cover;
}
.bg-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  color: #FFFFFF;
  background: url("../img/common/bg_glass_top.png") repeat-x center;
}

.text-white {
  color: #FFFFFF;
}
.text-red {
  color: #FF0000;
}
.text-green {
  color: #13AB5E;
}

.fw-normal {
  font-weight: 400;
}
.fw-mid {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}

.container {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#pal-sec02 .container {
  background: url('../img/vol02/sec02_bg.png') no-repeat top center/contain;
}

.fade,
.fade-delay {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity .5s, transform .5s;
}
.fade.in {
  transform: translateY(0);
  opacity: 1;
}

.pagetop {
  position: fixed;
  z-index: 99;
  bottom: 40px;
  right: 40px;
  width: 80px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 25px;
  }

  .pagetop {
    bottom: 20px;
    right: 20px;
    width: 50px;
  }
}


/*------------
  footer
------------*/

footer {
  min-width: 1200px;
}

@media screen and (max-width: 768px) {
  footer {
    min-width: 1px;
  }
}


/*------------
  index
------------*/

/*
  kv
------------*/

.kv {
  display: flex;
  position: relative;
  width: 100%;
}
.kv-item {
  position: relative;
  width: 50%;
}
.kv-text {
  background: url('../img/vol02/kv_bg.png') no-repeat center/cover;
}
.kv-inner {
  position: relative;
  width: 600px;
  height: 100%;
  margin-left: auto;
}
.kv-catch {
  position: absolute;
  top: 70px;
  left: 0;
  width: 495px;
}
.kv-ttl {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 673px;
}
.kv-vol {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 77px;
}
.kv-vol._vol02 {
  width: 245px;
}
.kv-month {
  position: absolute;
  bottom: 35px;
  right: 45px;
  width: 152px;
}

@media screen and (max-width: 768px) {
  .kv {
    flex-wrap: wrap;
  }
  .kv-item {
    width: 100%;
  }
  .kv-inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px 0;
  }
  .kv-text {
    padding: 0 25px;
  }
  .kv-catch {
    position: relative;
    top: 0;
    width: 80%;
  }
  .kv-ttl {
    position: relative;
    top: 0;
    transform: none;
    width: 100%;
    margin: 20px auto;
  }
  .kv-vol {
    display: inline-block;
    position: relative;
    bottom: 0;
    width: 15%;
    margin-top: auto;
  }
  .kv-month {
    display: inline-block;
    position: relative;
    bottom: 0;
    right: 0;
    width: 20%;
    margin-left: auto;
    text-align: right;
  }
  .kv-image {
    order: 1;
  }
}


/*
  pal-list
------------*/

.pal-list {
  padding: 50px 0;
}
.pal-list h1 {
  text-align: center;
}
.pal-list h1 img {
  width: 81px;
}
.pal-list .list-ankor {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.pal-list .list-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 216px;
  height: 92px;
  text-align: center;
  font-size: 21px;
  line-height: 29px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.pal-list._vol02 .list-btn {
  width: 277px;
  height: 89px;
  padding: 1px;
  font-size: 18px;
  border: 4px solid #000000;
}
.pal-list._vol02 .list-btn p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
}
.pal-list .list-btn._red {
  background: #EA6D80;
}
.pal-list .list-btn._red02 {
  background: #B4414C;
}
.pal-list .list-btn._blue {
  background: #5E66AC;
}
.pal-list .list-btn._lightgreen {
  background: #9AC854;
}
.pal-list .list-btn._pink {
  background: #E65296;
}
.pal-list .list-btn._pink02 {
  background: #D15B9C;
}
.pal-list .list-btn._green {
  background: #13AB5E;
}
.pal-list .list-btn._green02 {
  background: #00AA83;
}
.pal-list .list-btn._orange {
  background: #E84720;
}

@media screen and (max-width: 768px) {
  .pal-list {
    padding: 30px 0;
  }
  .pal-list .list-ankor {
    display: block;
  }
  .pal-list .list-btn {
    width: 80%;
    margin: 0 auto;
  }
  .pal-list .list-btn + .list-btn {
    margin-top: 20px;
  }
}


/*
  pal-sec
------------*/

.pal-sec {
  padding: 80px 0;
}
#pal-vol02-sec03 {
  padding: 160px 0 80px;
}
.pal-sec h1 {
  position: relative;
  margin: 40px auto 25px;
  text-align: center;
  font-size: 55px;
}
.pal-sec h1._blue {
  color: #5E66AC;
}
.pal-sec h1._pink {
  color: #EA6D80;
}
.pal-sec h2 {
  position: relative;
  text-align: center;
  line-height: 27px;
}
.pal-sec h2._vol2 {
  color: #DC76AA;
}
#pal-vol02-sec01 h2::before {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 350px;
  height: 13px;
  background: url('../img/vol02/sec01_ttlbar.png') no-repeat center/contain;
}
.pal-sec .sec-head {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.pal-sec .sec-head._vol02-sec01 {
  width: 857px;
}
.pal-sec .sec-head._vol02-sec02 {
  width: 683px;
}
.pal-sec .sec-icon {
  position: absolute;
}
.pal-sec .sec-icon._vol01-sec01 {
  top: 50%;
  left: calc(100% + 40px);
  transform: translateY(-50%);
  width: 146px;
}
.pal-sec .sec-icon._vol01-sec02 {
  top: 50%;
  right: calc(100% + 25px);
  transform: translateY(-50%);
  width: 146px;
}
.pal-sec .sec-icon._vol02-sec01 {
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1215px;
}
.pal-sec .sec-icon._vol02-sec02 {
  top: 50%;
  left: calc(100% + 25px);
  transform: translateY(-50%);
  width: 195px;
}
.pal-sec .sec-glasshead {
  position: relative;
  width: 527px;
  margin: 0 auto;
}
.pal-sec .sec-glassicon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pal-sec .sec-glassicon._left {
  right: calc(100% + 45px);
  width: 69px;
}
.pal-sec .sec-glassicon._right {
  left: calc(100% + 45px);
  width: 83px;
}
.pal-sec .sec-glassbg {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 955px;
}

@media screen and (max-width: 768px) {
  .pal-sec {
    padding: 40px 0;
  }
  #pal-vol02-sec03 {
    padding: 80px 0 40px;
  }
  .pal-sec h1 {
    font-size: 23px;
  }
  .pal-sec .sec-head._vol02-sec01,
  .pal-sec .sec-head._vol02-sec02 {
    width: 95%;
  }
  .pal-sec .sec-icon {
    display: none;
  }
  .pal-sec .sec-glasshead {
    width: 95%;
  }
  .pal-sec .sec-glassicon {
    display: none;
  }
  .pal-sec .sec-glassbg {
    display: none;
  }
}


/*
  pal-item
------------*/

.pal-item .item-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.pal-item .item-box {
  display: flex;
  flex-direction: column;
  width: 555px;
  margin-top: 50px;
  font-size: 17px;
  line-height: 27px;
}
.pal-item .item-box._wide {
  flex-direction: row;
  width: 100%;
}
.pal-item .item-box._wide + .item-box {
  margin-top: 65px;
}
.pal-item .item-box:nth-of-type(n + 3) {
  margin-top: 65px;
}
.pal-item .item-image {
  height: 351px;
  text-align: center;
}
.pal-item ._wide .item-image {
  width: 58%;
  height: auto;
  padding-right: 30px;
}
.pal-item .item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pal-item .item-ttl {
  margin-top: 20px;
  font-size: 20px;
  line-height: 28px;
}
.pal-item .item-side .item-ttl:first-child {
  margin-top: 0;
}
.pal-item .item-ttl._orange {
  color: #E84720;
}
.pal-item .item-ttl._pink {
  color: #D15B9C;
}
.pal-item .item-ttl small {
  font-size: 17px;
}
.pal-item .item-info {
  margin-top: auto;
  font-size: 20px;
  line-height: 27px;
}
#pal-vol02-sec02.pal-item .item-info {
  margin-top: 10px;
}
.pal-item .item-info small {
  font-size: 18px;
}
.pal-item .item-side {
  position: relative;
  width: calc(42% - 30px);
}
.pal-item .item-icon {
  position: absolute;
  bottom: 25px;
  right: 70px;
  width: 158px;
}
.pal-item .item-bnr {
  margin: 10px auto;
}

@media screen and (max-width: 768px) {
  .pal-item .item-box {
    width: 100%;
    margin-top: 30px;
  }
  .pal-item .item-box._wide {
    flex-direction: column;
  }
  .pal-item .item-image {
    height: 250px;
  }
  .pal-item ._wide .item-image {
    width: 100%;
    padding: 0 0 30px;
  }
  .pal-item .item-side {
    width: 100%;
  }
  .pal-item .item-icon {
    display: none;
  }
}


/*
  pal-gift
------------*/

.pal-gift {
  padding: 160px 0;
}
.pal-gift .gift-border {
  position: relative;
  padding: 1px;
}
.pal-gift .gift-border._red {
  position: relative;
  z-index: 5;
  background:
    linear-gradient(45deg,  transparent 15px, #E65296 15px),
    linear-gradient(135deg, transparent 15px, #E65296 15px),
    linear-gradient(225deg, transparent 15px, #E65296 15px),
    linear-gradient(315deg, transparent 15px, #E65296 15px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.pal-gift .gift-border._blue {
  position: relative;
  z-index: 5;
  background:
    linear-gradient(45deg,  transparent 15px, #3A80C3 15px),
    linear-gradient(135deg, transparent 15px, #3A80C3 15px),
    linear-gradient(225deg, transparent 15px, #3A80C3 15px),
    linear-gradient(315deg, transparent 15px, #3A80C3 15px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.pal-gift .gift-inner._red {
  position: relative;
  background:
    linear-gradient(45deg,  transparent 15px, #FBEDF3 15px),
    linear-gradient(135deg, transparent 15px, #FBEDF3 15px),
    linear-gradient(225deg, transparent 15px, #FBEDF3 15px),
    linear-gradient(315deg, transparent 15px, #FBEDF3 15px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.pal-gift .gift-inner._red::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background: #FBEDF3;
}
.pal-gift .gift-inner._red::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  background: #FBEDF3;
}
.pal-gift .gift-inner._blue {
  position: relative;
  background:
    linear-gradient(45deg,  transparent 15px, #E9F4FB 15px),
    linear-gradient(135deg, transparent 15px, #E9F4FB 15px),
    linear-gradient(225deg, transparent 15px, #E9F4FB 15px),
    linear-gradient(315deg, transparent 15px, #E9F4FB 15px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
.pal-gift .gift-inner._blue::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 100%;
  background: #E9F4FB;
}
.pal-gift .gift-inner._blue::after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 5px;
  background: #E9F4FB;
}
.pal-gift .gift-inner._outer {
  padding: 5px;
}

.pal-gift .gitf-head {
  position: relative;
}
.pal-gift .gift-tag {
  position: absolute;
}
.pal-gift .gift-tag._red {
  top: -60px;
  left: 40px;
  width: 343px;
}
.pal-gift .gift-tag._blue {
  top: -85px;
  right: 40px;
  width: 363px;
}
.pal-gift .gift-ttl {
  position: absolute;
  width: 282px;
}
.pal-gift .gift-ttl._red {
  top: -75px;
  right: 100px;
}
.pal-gift .gift-ttl._blue {
  top: -75px;
  left: 100px;
}
.pal-gift .gift-text {
  position: absolute;
  width: 554px;
  font-size: 17px;
  line-height: 27px;
}
.pal-gift .gift-text._red {
  bottom: 35px;
  right: 25px;
  width: 554px;
}
.pal-gift .gift-text._blue {
  bottom: 35px;
  left: 100px;
  width: 433px;
}
.pal-gift .gift-text h2 {
  font-size: 20px;
  line-height: 35px;
}
.pal-gift .gift-text h3 {
  font-size: 20px;
}
.pal-gift .gift-list {
  display: flex;
  justify-content: space-between;
  padding: 60px 55px;
}
.pal-gift .gift-box {
  display: flex;
  flex-direction: column;
  width: 313px;
  font-size: 17px;
  line-height: 27px;
}
.pal-gift .gift-image {
  height: 290px;
  text-align: center;
}
.pal-gift .gift-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pal-gift .gift-name {
  font-size: 20px;
  line-height: 28px;
}
.pal-gift .gift-name small {
  font-size: 17px;
}
.pal-gift .gift-info {
  margin-top: auto;
  font-size: 20px;
  line-height: 27px;
}
.pal-gift .gift-info small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .pal-gift {
    padding: 80px 0;
  }

  .pal-gift .gift-border._red {
    background:
      linear-gradient(45deg,  transparent 3px, #E65296 3px),
      linear-gradient(135deg, transparent 3px, #E65296 3px),
      linear-gradient(225deg, transparent 3px, #E65296 3px),
      linear-gradient(315deg, transparent 3px, #E65296 3px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
  .pal-gift .gift-border._blue {
    background:
      linear-gradient(45deg,  transparent 3px, #3A80C3 3px),
      linear-gradient(135deg, transparent 3px, #3A80C3 3px),
      linear-gradient(225deg, transparent 3px, #3A80C3 3px),
      linear-gradient(315deg, transparent 3px, #3A80C3 3px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
  .pal-gift .gift-inner._red {
    background:
      linear-gradient(45deg,  transparent 3px, #FBEDF3 3px),
      linear-gradient(135deg, transparent 3px, #FBEDF3 3px),
      linear-gradient(225deg, transparent 3px, #FBEDF3 3px),
      linear-gradient(315deg, transparent 3px, #FBEDF3 3px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }
  .pal-gift .gift-inner._blue {
    background:
      linear-gradient(45deg,  transparent 3px, #E9F4FB 3px),
      linear-gradient(135deg, transparent 3px, #E9F4FB 3px),
      linear-gradient(225deg, transparent 3px, #E9F4FB 3px),
      linear-gradient(315deg, transparent 3px, #E9F4FB 3px);
    background-position: bottom left, top left, top right, bottom right;
    background-size: 50% 50%;
    background-repeat: no-repeat;
  }

  .pal-gift .gift-tag._red {
    width: 50%;
    top: -35px;
    left: 20px;
  }
  .pal-gift .gift-tag._blue {
    width: 50%;
    top: -30px;
    right: 20px;
  }

  .pal-gift .gift-ttl {
    width: 30%;
  }
  .pal-gift .gift-ttl._red {
    top: -30px;
    right: 20px;
  }
  .pal-gift .gift-ttl._blue {
    top: -30px;
    left: 20px;
  }

  .pal-gift .gift-text {
    position: relative;
  }
  .pal-gift .gift-text._red {
    bottom: 0;
    right: 0;
    width: 95%;
    margin: 15px auto;
  }
  .pal-gift .gift-text._blue {
    bottom: 0;
    left: 0;
    width: 95%;
    margin: 15px auto;
  }

  .pal-gift .gift-list {
    flex-wrap: wrap;
    padding: 0 2.5% 30px;
  }
  .pal-gift .gift-box {
    width: 100%;
  }
  .pal-gift .gift-box + .gift-box {
    margin-top: 20px;
  }
}




/*
  pal-shop
------------*/

.pal-shop {
  padding: 120px 0 0;
}
.pal-shop .shop-ttl {
  padding: 20px 25px;
  font-size: 50px;
}
.pal-shop .shop-ttl small {
  padding-left: 20px;
  font-size: 20px;
  vertical-align: bottom;
}
.pal-shop .shop-row {
  display: flex;
  padding: 70px 0;
}
.pal-shop .shop-row + .shop-row {
  border-top: 1px dashed #231815;
}
.pal-shop .shop-box {
  display: flex;
  flex-direction: column;
  width: 347px;
  margin-left: calc(159px / 2);
  font-size: 18px;
  line-height: 27px;

}
.pal-shop .shop-box:first-child {
  margin-left: 0;
}
.pal-shop .shop-box h2 {
  font-size: 20px;
  line-height: 28px;
}
.pal-shop .shop-image {
  width: 100%;
  height: 244px;
  margin-bottom: 20px;
  text-align: center;
}
.pal-shop .shop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pal-shop .shop-info {
  margin-top: auto;
  font-size: 20px;
}
.pal-shop .shop-info hr {
  margin: 10px auto;
  border-top: 1px solid #13AB5E;
}
.pal-shop .shop-info small,
.pal-shop .shop-detail small {
  font-size: 17px;
}
.pal-shop .shop-info span {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .pal-shop {
    padding: 50px 0 30px;
  }
  .pal-shop .shop-ttl {
    text-align: center;
  }
  .pal-shop .shop-ttl small {
    display: block;
    margin-top: 10px;
    padding: 0;
  }
  .pal-shop .shop-row {
    flex-wrap: wrap;
    padding: 0;
  }
  .pal-shop .shop-row + .shop-row {
    border-top: none;
  }
  .pal-shop .shop-box {
    width: 100%;
    margin: 40px auto 0;
  }
  .pal-shop .shop-info {
    margin-top: 10px;
  }
}


/*
  pal-fashion
------------*/

.pal-fashion .fashion-head {
  display: flex;
  position: relative;
}
.pal-fashion .fashion-head h1 {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1085px;
  margin: 0;
  transform: translate(-50%, -50%);
}
.pal-fashion .fashion-logo {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  width: 105%;
}
.pal-fashion .fashion-lead {
  width: 50%;
  padding: 90px 40px 40px;
}
.pal-fashion .fashion-lead._left {
  background: url('../img/vol02/sec03_grad01.png') no-repeat top center/cover;
}
.pal-fashion .fashion-lead._right {
  background: url('../img/vol02/sec03_grad02.png') no-repeat top center/cover;
}
.pal-fashion .fashion-num {
  width: auto;
  height: 42px;
}
.pal-fashion .fashion-num._large {
  height: 70px;
}
.pal-fashion .fashion-num img {
  width: auto;
  height: 100%;
}
.pal-fashion .fashion-image {
  position: relative;
  z-index: 9;
  height: 300px;
  margin: 20px auto 25px;
  text-align: center;
}
.pal-fashion .fashion-image._large {
  height: 700px;
}
.pal-fashion .fashion-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.pal-fashion .fashion-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.pal-fashion .fashion-list + .fashion-list {
  margin-top: 70px;
  border-top: 1px dotted #000000;
}
.pal-fashion .fashion-box {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-top: 70px;
  padding: 0 40px;
  font-size: 17px;
  line-height: 27px;
}
.pal-fashion .fashion-box._pl0 {
  padding-left: 0;
}
.pal-fashion .fashion-box._pr0 {
  padding-right: 0;
}
.pal-fashion .fashion-box._three {
  width: calc(100% / 3);
}
.pal-fashion .fashion-box + .fashion-box {
  border-left: 1px dotted #000000;
}
.pal-fashion .fashion-data {
  position: relative;
  z-index: 9;
  font-size: 17px;
  line-height: 27px;
}
.pal-fashion .fashion-ttl {
  margin-top: 20px;
  font-size: 20px;
  line-height: 28px;
  color: #B4414C;
}
.pal-fashion .fashion-ttl small {
  font-size: 17px;
}
.pal-fashion .fashion-info {
  margin-top: auto;
  font-size: 20px;
  line-height: 27px;
}
.pal-fashion .fashion-info small {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .pal-fashion .fashion-head {
    display: block;
  }
  .pal-fashion .fashion-head h1 {
    width: 95%;
  }
  .pal-fashion .fashion-lead {
    width: 100%;
    padding: 40px 20px 20px;
  }
  .pal-fashion .fashion-logo {
    bottom: 50%;
    transform: translate(-50%, 0);
  }
  .pal-fashion .fashion-list {
    display: block;
  }
  .pal-fashion .fashion-list + .fashion-list {
    margin-top: 30px;
  }
  .pal-fashion .fashion-box {
    width: 100%;
    margin-top: 30px;
    padding: 0;
  }
  .pal-fashion .fashion-box._three {
    width: 100%;
  }
  .pal-fashion .fashion-box + .fashion-box {
    padding-top: 30px;
    border-left: none;
    border-top: 1px dotted #000000;
  }
  .pal-fashion .fashion-image {
    height: 250px;
  }
  .pal-fashion .fashion-image._large {
    height: auto;
  }
}