/* general */

.cororon {
  background-color: #fff;
  color: #272727;
}

.cororon .inner {
  margin: 0 auto;
}

.cororon img {
  vertical-align: bottom;
  height: auto;
}

@media screen and (min-width: 769px) {
  .pc__only {
    display: inherit;
  }
  .sp__only {
    display: none!important;
  }
  .cororon .inner {
    width: 1000px;
  }
}

@media screen and (max-width: 768px) {
  .pc__only {
    display: none!important;
  }
  .sp__only {
    display: inherit;
  }
  .cororon .inner {
    width: 93.3333333333vw;
  }
  .cororon .inner.min {
    width: 80vw;
  }
  .cororon img {
    width: 100%;
  }
}

/* typography */

.title__02 {
  margin: 0 auto;
  padding: 0;
  border-bottom: none;
}

.title__03 {
  margin: 0 auto;
  padding: 0;
  background: none;
  font-weight: 700;
  letter-spacing: .02em;
}

.title__04 {
  margin: 0 auto;
  padding: 0;
  border: none;
  background: none;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .title__03 {
    font-size: 35px;
  }
}

@media screen and (max-width: 768px) {
  .title__03 {
    font-size: 22px;
  }
}

/* button */

.wrap__button {
  display: flex;
  justify-content: center;
}

.btn__01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background-color: #965a63;
  border-radius: 50vh;
  cursor: pointer;
}

.btn__01._yellow {
  background-color: #bd9649;
}

.btn__01.is-disabled {
  background-color: #ccc;
  cursor: unset;
}

.btn__02 {
  display: block;
  padding: 20px 0 28px;
  color: #413f3f;
  font-size: 22px;
  text-align: center;
  border-radius: 50vh;
  background-color: #ccc;
  border: 2px solid #282828;
  box-shadow: 0px 6px 0px 0px rgb(0 0 0 / 60%);
  cursor: pointer;
}

.btn__02 .btn__inner {
  display: inline-block;
}

.btn__02 .cap {
  color: #fefdf3;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  background-color: #413f3f;
  border-radius: 2px;
  padding: 0 8px;
  margin-bottom: 10px;
  letter-spacing: .2em;
}

.btn__02 strong {
  margin-left: -15px;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.16;
}

.btn__02 strong span {
  display: inline-block;
  position: relative;
  z-index: 5;
}

.btn__02 strong span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 13px;
  width: 100%;
  background-color: #fff8f7;
  z-index: -1;
}

.btn__02._beige {
  background-color: #dac5a6;
}

.btn__02._yellow {
  background-color: #e2d171;
}

.btn__03 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #413f3f;
  color: #fff;
  border-radius: 50vh;
  cursor: pointer;
}

.btn__03::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
}

.btn__04 {
  border: 2px solid #535353;
  border-radius: 50vh;
  text-align: center;
  font-weight: 500;
  color: #535353;
}

@media screen and (min-width: 769px) {
  .btn__01 {
    width: 174px;
    height: 48px;
    font-size: 18px;
    letter-spacing: .06em;
    transition: .2s ease-out;
  }
  .btn__01::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translate(-50%, 0);
  }
  .btn__01.is-disabled::after {
    display: none;
  }
  .btn__01:hover {
    color: #fff;
    opacity: .7;
  }
  .btn__01.is-disabled:hover {
    opacity: 1;
  }
  .btn__02 {
    padding: 20px 0 28px;
    width: 470px;
    font-size: 22px;
    transition: .2s ease-out;
  }
  .btn__02 .cap {
    margin-bottom: 10px;
    padding: 0 8px;
    font-size: 17px;
  }
  .btn__02 strong {
    margin-left: -15px;
    font-size: 25px;
  }
  .btn__02:hover {
    color: unset;
    transform: translate(0, 6px);
    box-shadow: none;
  }
  .btn__03 {
    width: 196px;
    height: 54px;
    font-size: 18px;
    line-height: 1.722;
    transition: .2s ease-out;
  }
  .btn__03:hover {
    color: #fff;
    opacity: .7;
  }
  .btn__04 {
    width: 380px;
    padding: 15px 0;
    font-size: 20px;
    transition: .2s ease-out;
  }
  .btn__04:hover {
    color: initial;
    opacity: .7;
  }
}

@media screen and (max-width: 768px) {
  .btn__01 {
    width: 118px;
    height: 32px;
    font-size: 13px;
    letter-spacing: .06em;
  }
  .btn__01::after {
    content: '';
    position: absolute;
    right: 5px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg) translate(-50%, 0);
  }
  .btn__01.is-disabled::after {
    display: none;
  }
  .btn__02 {
    font-size: 3.73vw;
    padding: 3.73vw 0 4.8vw;
    border: 0.27vw solid #282828;
    box-shadow: 0 0.8vw 0 0 rgb(0 0 0 / 60%);
    width: 82.4vw;
    max-width: 400px;
  }
  .btn__02 .cap {
    font-size: 3.07vw;
    padding: 0 2.13vw;
    margin-bottom: 2.13vw;
  }
  .btn__02 strong {
    font-size: 4.27vw;
  }
  .btn__02 strong span:after {
    height: 3.47vw;
  }
  .btn__03 {
    width: 124px;
    height: 34px;
    font-size: 13px;
  }
  .btn__03::after {
    right: 10px;
    border-width: 6px 4px 0 4px;
  }
  .btn__04 {
    padding: 8px 46px;
    font-size: 13px;
  }
}

/* side banner */

.side__banner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: fixed;
  right: 0;
  z-index: 100;
}

.side__banner a {
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: .075em;
  border-radius: 5px 0 0 5px;
}

.bnr__01 {
  background-color: #8fa6a8;
}

.bnr__02 {
  background-color: #998c8b;
}

@media screen and (min-width: 769px) {
  .side__banner {
    top: 175px;
  }
  .side__banner a {
    padding: 25px 17px;
    font-size: 18px;
    transition: .2s;
  }
  .side__banner a:hover {
    padding-right: 37px;
  }
  .bnr__01 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .side__banner {
    top: 46.6vw;
  }
  .side__banner a {
    padding: 2vw;
    font-size: 13px;
  }
  .bnr__01 {
    margin-bottom: 4vh;
  }
}

/* nav */

.nav__list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .nav__list.col-2>li {
    width: 49.1891891892%;
  }
}

@media screen and (max-width: 768px) {
  .nav__list>li>a {
    justify-content: center;
  }
}

/* product */

.product__list {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}

.product__image {
  display: inline-block;
}

.product__name {
  font-weight: 600;
}

.product__name__sub {
  display: inline-block;
  border: 1px solid #4e5354;
}

.product__list.col-2 {
  align-items: flex-end;
}

@media screen and (min-width: 769px) {
  .product__list.col-2 {
    justify-content: center;
  }
  .product__list.col-2 .product__list__item:nth-child(2n) {
    margin-left: 70px;
  }
  .product__list.col-4 .product__list__item {
    margin-bottom: 40px;
    margin-right: calc((100% - 23% * 4) / 3);
    width: 23%;
  }
  .product__list.col-4 .product__list__item:nth-child(4n) {
    margin-right: 0;
  }
  .product__image {
    margin-bottom: 20px;
  }
  .product__name {
    margin-bottom: 10px;
    font-size: 18px;
  }
  .product__name__sub {
    margin-bottom: 10px;
    padding: 0 10px;
    font-size: 16px;
  }
  .product__price {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .product__list {
    justify-content: space-between;
    margin: 0 auto;
    width: 80%;
  }
  .product__list__item {
    margin-bottom: 35px;
    width: 47.8260869565%;
  }
  .product__name {
    margin: 18px auto 5px;
    font-size: 13px;
  }
  .product__name__sub {
    margin-bottom: 5px;
    padding: 0 6px;
    font-size: 13px;
  }
  .product__price {
    margin-bottom: 5px;
    font-size: 13px;
  }
}

/* mv */

.cororon .mv {
  position: relative;
}

.cororon .mv .title__01 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  padding: 0;
  background-color: transparent;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.cororon .mv .title__01 img {
  height: auto;
}

.cororon .bnr-area {
  text-align: center;
  margin: 60px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.cororon .slick-dots {
  bottom: 20px;
}

.cororon .slick-dots li button:before {
  font-size: 25px;
  color: #fff;
  opacity: 1;
}

.cororon .slick-dots li.slick-active button:before {
  color: #6d6b6b;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .cororon .mv .title__01 img {
    width: 50.9333333333vw;
    vertical-align: bottom;
  }
}

/* intro */

.cororon .intro p {
  font-weight: 500;
  line-height: 1.75;
}

.cororon .intro p:last-child {
  margin-bottom: 0;
}

.anchor_btn.inner {
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anchor_btn a {
  width:300px;
  display:block;
  padding: 18px 10px;
  margin:0 10px;
  font-size: 18px;
  text-align:center;
  color:#fff;
  border-radius:32px;
  position:relative;
}

.anchor_btn a:after{
  content:'';
  width:12px;
  height:12px;
  display:block;
  border-right:3px solid #fff;
  border-bottom:3px solid #fff;
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-70%) rotate(45deg)
}

@media screen and (min-width: 769px){
  .anchor_btn a:hover{
    opacity: 0.7;
    transition: 0.3S opacity ease-in;
  }
}

@media screen and (max-width: 768px){
  .anchor_btn.inner{
    flex-direction: column;
  }

    .anchor_btn a{
        margin:10px 0;
    }

}

@media screen and (min-width: 769px) {
  .cororon .intro {
    padding: 50px 0;
  }
  .cororon .intro p {
    margin-bottom: 30px;
    font-size: 17px;
    letter-spacing: .05em;
  }
  .intro .inner {
    display: flex;
  }
  .intro__logo {
    margin: auto;
    width: 33%;
    text-align: center;
  }
  .intro__text {
    padding-left: 70px;
    width: 67%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .cororon .intro {
    padding: 30px 0;
  }
  .cororon .intro p {
    margin-bottom: 15px;
    font-size: 13px;
    text-align: center;
  }
  .intro__logo {
    display: block;
    margin: 0 auto 25px;
    text-align: center;
    max-width: 169px;
  }
  /* .intro__logo img {
    width: 26.1333333333vw;
    max-width: 169px;
  } */
}

/* nav chapter */

.nav__chapter {
  background-color: #f6e2de;
}

.nav__chapter .nav__title {
  text-align: center;
}

.nav__chapter .nav__list__item>a {
  justify-content: unset;
  position: relative;
  background-color: #fff;
  color: #272727;
  letter-spacing: .06em;
  border-radius: 15px;
  transition: .3s ease;
  font-weight: 600;
}

.nav__chapter .nav__list__item>a:after {
  content: '';
  position: absolute;
  border-style: solid;
  border-width: 11px 8.5px 0 8.5px;
  border-color: #383b3e transparent transparent transparent;
}

@media screen and (min-width: 769px) {
  .nav__chapter {
    padding: 50px 0;
  }
  .nav__chapter .nav__title {
    margin-bottom: 40px;
  }
  .nav__chapter .nav__list {
    margin: 45px auto 0;
    width: 925px;
  }
  .nav__chapter .nav__list__item {
    margin-bottom: 15px;
  }
  .nav__chapter .nav__list__item>a {
    padding: 0 25px 0 30px;
    height: 93px;
    font-size: 23px;
  }
  .nav__chapter .nav__list__item>a:hover {
    opacity: .7;
  }
  .nav__chapter .nav__list__item>a:after {
    right: 35px;
  }
  .nav__chapter .nav__list__item>a .text {
    margin-left: 25px;
  }
}

@media screen and (max-width: 768px) {
  .nav__chapter {
    padding: 20px 0 25px;
  }
  .nav__chapter .nav__title {
    margin-bottom: 12px;
  }
  .nav__chapter .nav__list {
    margin: 35px auto 0;
  }
  .nav__chapter .nav__list__item {
    margin-bottom: 8px;
  }
  .nav__chapter .nav__list__item>a {
    padding: 0 14px;
    height: 75px;
    font-size: 16px;
  }
  .nav__chapter .nav__list__item>a:after {
    right: 14px;
  }
  .nav__chapter .nav__list__item>a img {
    height: 37px;
    width: auto;
  }
  .nav__chapter .nav__list__item>a .text {
    margin-left: 25px;
  }
}

/* cta */

.area__cta {
  background: url(/img/usr/freepage/cororon/bg.png);
}

.area__cta .inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 0 auto;
  background-color: #ffffff;
}

.area__cta .desc {
  text-align: center;
}

.area__cta .period {
  display: inline-block;
  border: 2px solid #545252;
}

.section__cta {
  background: url(/img/usr/freepage/cororon/bg.png);
}

@media screen and (min-width: 769px) {
  .area__cta {
    padding: 55px 0;
  }
  .area__cta .inner {
    padding: 50px 0 50px 57px;
    width: 830px;
    border-radius: 50px;
  }
  .area__cta .title {
    margin-bottom: 18px;
  }
  .area__cta .period {
    margin: 0 auto 20px;
    padding: 0 24px;
    font-size: 20px;
    line-height: 1.85;
  }
  .area__cta .text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .area__cta {
    padding: 35px 0;
  }
  .area__cta .inner {
    position: relative;
    padding: 30px 0 20px 20px;
  }
  .area__cta .desc {
    width: 45%;
  }
  .area__cta .img {
    flex: 1;
  }
  .area__cta .title {
    position: absolute;
    width: 189px;
    top: -15px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .area__cta .period {
    font-size: 13px;
    line-height: 1.85;
    margin: 0 auto 2.67vw;
    border: 0.4vw solid #545252;
  }
  .area__cta .text {
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 2.67vw;
  }
  .area__cta .text br {
    display: none;
  }
}

/* section */

.section__title {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
  .section__title {
    height: 310px;
  }
}

@media screen and (max-width: 768px) {
  .section__title {
    height: 54.8vw;
  }
  .section__title .title__02 img {
    width: 85.2vw;
    max-width: 461px;
  }
}

/* chapter01 */

.section__01 .nav {
  background: url(/img/usr/freepage/cororon/bg_stripe.png);
}

.section__01 .title__03 {
  background-repeat: no-repeat;
  text-align: center;
}

.section__01 .catch {
  font-weight: 700;
  text-align: center;
}

.section__01 .wrap__new {
  background-color: #f1f3f3;
}

.section__01 .wrap__trend {
  background-color: #ece7dd;
}

.section__01 .wrap__new .title__03 {
  background-image: url(/img/usr/freepage/cororon/ttl_chap-01_01.png);
}

.section__01 .wrap__trend .title__03 {
  background-image: url(/img/usr/freepage/cororon/ttl_chap-01_02.png);
}

@media screen and (min-width: 769px) {
  .section__01 .section__title {
    background-image: url(/img/usr/freepage/cororon/bg_chap-01.jpg);
  }
  .section__01 .nav {
    padding: 50px 0;
  }
  .section__01 .section {
    margin-bottom: 70px;
  }
  .section__01 .section:last-child {
    margin-bottom: 0;
  }
  .section__01 .nav__list {
    margin: 0 auto;
    width: 925px;
  }
  .section__01 .title__03 {
    margin-bottom: 20px;
    width: 574px;
    height: 129px;
  }
  .section__01 .title__03 .text {
    display: inline-block;
    margin: 65px auto 0;
    line-height: 1;
  }
  .section__01 .catch {
    margin-bottom: 35px;
    font-size: 24px;
  }
  .section__01 .catch .small {
    font-size: 20px;
  }
  .section__01 .wrap__new {
    padding: 70px 0;
  }
  .section__01 .wrap__trend {
    padding: 40px 0 80px;
  }
  .section__01-03 .catch {
    margin-bottom: 85px;
  }
  .section__01-04 .product__list.col-2 .product__list__item:nth-child(2n) {
    margin-left: 165px;
  }
  .sp-only {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .section__01 .section {
    /*margin-bottom: 50px;*/
  }
  .section__01 .section__title {
    background-image: url(/img/usr/freepage/cororon/sp/bg_chap-01.jpg);
  }
  .section__01 .nav {
    padding: 30px 0 24px;
  }
  .section__01 .nav .nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 94.4vw;
  }
  .section__01 .nav .nav__list__item {
    margin-bottom: 6px;
    width: 45.3333333333vw;
  }
  .section__01 .wrap__new {
    padding: 35px 0;
  }
  .section__01 .wrap__trend {
    padding: 40px 0 35px;
  }
  .section__01 .title__03 {
    margin-bottom: 10px;
    background-size: contain;
    width: 287px;
    height: 65px;
    font-size: 20px;
  }
  .section__01 .title__03 .text {
    display: inline-block;
    margin: 35px auto 0;
    line-height: 1;
  }
  .section__01 .catch {
    margin: 0 auto 35px;
    font-size: 15px;
    width: 80%;
  }
  .section__01 .catch .small {
    font-size: 13px;
  }
  .section__01 .section__01-03, .section__01 .section__01-04 {
    margin-bottom: 0;
  }
}

/* chapter02 */

.section__02 .title__03 {
  background-repeat: no-repeat;
  text-align: center;
}

.section__02 .catch {
  font-weight: 700;
  text-align: center;
}

.section__02__intro {
  background-color: #f6e2de;
}

.section__02 .point__title::before {
  content: '“';
}

.section__02 .point__title::after {
  content: '”';
}

.section__02 .point__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.section__02 .point__list__item {
  position: relative;
  text-align: center;
}

.section__02 .point__list__item::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  width: 303px;
  height: 8px;
  background-image: url(/img/usr/freepage/cororon/line_dot.png);
  transform: translate(-50%, 0);
}

.section__02 .point__list__text {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-weight: 600;
}

.section__02 .concept {
  background-color: #fff;
  background-position: center right;
  background-repeat: no-repeat;
}

.section__02 .wrap__bedding {
  background-color: #f1f3f3;
}

.section__02 .wrap__towel {
  background-color: #ece7dd;
}

.section__02 .title__03 .text {
  display: inline-block;
}

.section__02 .section .tags {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.section__02 .section .tag {
  background-color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}

.section__02 .section .image.bottom {
  position: relative;
}

.section__02 .section .image.bottom::after {
  content: '';
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 100%;
  height: 8px;
  background-image: url(/img/usr/freepage/cororon/line_dot.png);
  background-repeat: repeat-x;
}

@media screen and (min-width: 769px) {
  .section__02 .section {
    margin-bottom: 100px;
  }
  .section__02 .section:last-child {
    margin-bottom: 0;
  }
  .section__02 .section__title {
    background-image: url(/img/usr/freepage/cororon/bg_chap-02.jpg);
  }
  .section__02__intro {
    padding: 60px 0 75px;
  }
  .section__02 .point {
    /* margin-bottom: 32px; */
  }
  .section__02 .point__title {
    margin-bottom: 50px;
  }
  .section__02 .point__list {
    width: 925px;
  }
  .section__02 .point__list__item {
    margin-right: 48px;
    margin-bottom: 68px;
    width: 276px;
  }
  .section__02 .point__list__item:nth-child(3n) {
    margin-right: 0;
  }
  .section__02 .point__list__text {
    margin-top: -10px;
    width: 100%;
    height: 148px;
    font-size: 18px;
    line-height: 1.78;
    letter-spacing: .05em;
  }
  .section__02 .concept {
    padding: 25px 0 50px 60px;
    border-radius: 20px;
    height: 688px;
    background-image: url(/img/usr/freepage/cororon/bg_concept.jpg);
  }
  .section__02 .concept__title {
    margin-bottom: 20px;
  }
  .section__02 .concept__text {
    margin: 0 auto 0 0;
    width: 500px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.75;
    text-align: center;
  }
  .section__02 .concept__text p {
    margin-bottom: 30px;
  }
  .section__02 .concept__text p:last-child {
    margin-bottom: 0;
  }
  .section__02 .wrap__bedding {
    padding: 70px 0 50px;
  }
  .section__02 .wrap__towel {
    padding: 50px 0;
  }
  .section__02 .title__03 {
    width: 925px;
  }
  .section__02-01 .title__03 {
    background-image: url(/img/usr/freepage/cororon/ttl_chap-02_01.png);
    height: 177px;
  }
  .section__02-02 .title__03 {
    background-image: url(/img/usr/freepage/cororon/ttl_chap-02_02.png);
    height: 167px;
  }
  .section__02-03 .title__03 {
    background-image: url(/img/usr/freepage/cororon/ttl_chap-02_03.png);
    height: 145px;
  }
  .section__02-04 .title__03 {
    background-image: url(/img/usr/freepage/cororon/ttl_chap-02_04.png);
    height: 174px;
  }
  .section__02 .title__03 .text {
    margin-top: 60px;
  }
  .section__02 .section .catch {
    margin: -20px auto 15px;
    font-size: 24px;
  }
  .section__02 .section__02-03 .catch {
    margin-top: 10px;
  }
  .section__02 .section .catch .small {
    font-size: 20px;
  }
  .section__02 .section .tags {
    margin-bottom: 35px;
  }
  .section__02 .tag {
    margin: 0 4px;
    padding: 10px 25px;
    font-size: 20px;
  }
  .section__02 .section .image {
    display: flex;
    justify-content: space-between;
  }
  .section__02 .section .image.bottom {
    margin: 20px 0 50px;
  }
  .section__02 .section .image__inner.row-2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .section__02 .section .detail {
    margin: 0 auto 45px;
    width: 720px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .section__02 .section__title {
    background-image: url(/img/usr/freepage/cororon/sp/bg_chap-02.jpg);
  }
  .section__02-01 .title__03 {
    background-image: url(/img/usr/freepage/cororon/sp/ttl_chap-02_01.png);
    background-size: auto 18px;
  }
  .section__02-02 .title__03 {
    background-image: url(/img/usr/freepage/cororon/sp/ttl_chap-02_02.png);
    background-size: auto 23px;
  }
  .section__02-03 .title__03 {
    background-image: url(/img/usr/freepage/cororon/sp/ttl_chap-02_03.png);
    background-size: auto 21px;
  }
  .section__02-04 .title__03 {
    background-image: url(/img/usr/freepage/cororon/sp/ttl_chap-02_04.png);
    background-size: auto 18px;
  }
  .section__02__intro {
    padding: 20px 0 26px;
  }
  .section__02 .point__title {
    margin-bottom: 22px;
  }
  .wrap__bedding .inner,
  .wrap__towel .inner {
    width: 80vw;
  }
  .section__02 .point__list {
    flex-direction: column;
  }
  .section__02 .point__list__item {
    margin-bottom: 30px;
  }
  .section__02 .point__list__text {
    margin: -5px auto 0;
    padding: 15px 0;
    /* width: 228px; */
    width: 100%;
    font-size: 15px;
    line-height: 1.78;
  }
  .section__02 .point__list__item::after {
    bottom: -20px;
    background-size: 50%;
    /* width: 288px; */
    width: 100%;
    height: 4px;
  }
  .point__list__title {
    width: 30%;
  }
  .point__list__title img {
    width: 70px;
  }
  .section__02 .concept {
    margin-top: 15px;
    padding: 15px 20px 65.7333333333%;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.75;
    text-align: center;
    background: url(/img/usr/freepage/cororon/sp/bg_concept.png) bottom center #fff no-repeat;
    background-size: contain;
  }
  .section__02 .concept__title {
    margin-bottom: 10px;
    width: 86px;
  }
  .section__02 .concept__text p {
    margin-bottom: 20px;
  }
  .section__02 .concept__text p:last-child {
    margin-bottom: 0;
  }
  .section__02 .wrap__bedding {
    padding: 25px 0;
  }
  .section__02 .section {
    margin-bottom: 35px;
  }
  .section__02 .section .title__03 {
    margin-bottom: 17px;
    padding-top: 35px;
    background-position: center top;
  }
  .section__02 .section .title__03 .text {
    position: relative;
    padding: 10px;
    border: 2px solid #0d0d0d;
    width: 100%;
    background-color: #fff;
    box-sizing: border-box;
  }
  .section__02 .section .title__03 .text::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid #3d3d3d;
  }
  .section__02 .catch {
    margin-bottom: 13px;
    font-size: 15px;
  }
  .section__02 .catch .small {
    font-size: 13px;
  }
  .section__02 .section .tags {
    margin-bottom: 25px;
  }
  .section__02 .tag {
    margin: 0px 3px;
    padding: 5px 4px;
    font-size: 11px;
  }
  .section__02 .section .image.bottom {
    margin: 2.13333333333vw 0 33px;
  }
  .section__02 .section .image__inner.row-2,
  .section__02 .section .image.bottom {
    display: flex;
    justify-content: space-between;
    align-items:  flex-start;
    margin-top: 10px;
  }
  .section__02 .section .image__inner.row-2 img,
  .section__02 .section .image.bottom img {
    width: 48.5714285714%;
  }
  .section__02 .section .image.bottom::after {
    background-size: 50%;
    height: 4px;
    bottom: -20px;
  }
  .section__02 .section .detail {
    margin: 0 auto 25px;
    /* width: 90.2857142857%; */
    /* width: 80%; */
    font-size: 13px;
    font-weight: 600;
    line-height: 1.75;
  }
  /*.section__02 .section__02-03, */.section__02 .section__02-04 {
    margin-bottom: 0;
  }
  .section__02 .wrap__towel {
    padding: 20px 0 35px;
  }
}

/* chapter03 */

.section__03 .title__03 {
  text-align: center;
}

.section__03 .title__03 .text {
  position: relative;
  display: inline-block;
}

.section__03 .title__03 .text::before, .section__03 .title__03 .text::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 30px;
  height: 47px;
  transform: translate(0, -50%);
}

.section__03 .title__03 .text::before {
  left: -80px;
  background: url(/img/usr/freepage/cororon/mark_01-left.png) no-repeat;
}

.section__03 .title__03 .text::after {
  right: -80px;
  background: url(/img/usr/freepage/cororon/mark_01-right.png) no-repeat;
}

.section__03 .section__sub:last-child {
  margin-bottom: 0;
}

.section__03__intro {
  background-color: #f6e2de;
}

.section__03 .concept {
  background-color: #fff;
  background-position: center right;
  background-repeat: no-repeat;
}

.section__03-01 .section__sub .title__04 {
  margin: 0 auto;
  text-align: center;
  line-height: 1.75;
}

.section__03-01 .section__sub .title__04 span {
  border-bottom: 4px solid #c0dbe5;
}

.section__03-02 .section__sub .detail__text p {
  margin-bottom: 10px;
}

.section__03-02 .section__sub .detail__text ._yellow {
  color: #eebc31;
  font-weight: 700;
}

.section__03-02 .wrap__accordion {
  display: none;
}

.section__03 .accordion__button .button:not(.is-close)::after {
  border-width: 0 6px 8px 6px;
  border-color: #fff transparent #fff transparent;
}

.section__03-01 .inner {
  border: 4px solid #c4dde7;
}

.section__03-02 .inner {
  border: 4px solid #f7ebb1;
}

@media screen and (min-width: 769px) {
  .section__03 {
    margin-bottom: 70px;
  }
  .section__03 .section__title {
    background-image: url(/img/usr/freepage/cororon/bg_chap-03.jpg);
  }
  .section__03 .title__03 {
    margin-bottom: 60px;
    font-weight: 600;
    font-size: 28px;
  }
  .section__03__intro {
    padding: 60px 0 75px;
  }
  .section__03 .concept {
    padding: 25px 0 50px 60px;
    border-radius: 20px;
    height: 688px;
    background-image: url(/img/usr/freepage/cororon/bg_concept.jpg);
  }
  .section__03 .concept__title {
    margin-bottom: 20px;
  }
  .section__03 .concept__text {
    margin: 0 auto 0 0;
    width: 500px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 1.75;
    text-align: center;
  }
  .section__03 .concept__text p {
    margin-bottom: 30px;
  }
  .section__03 .concept__text p:last-child {
    margin-bottom: 0;
  }
  .section__03-01 {
    margin: 50px auto;
  }
  .section__03-01 .inner {
    padding: 70px 50px;
  }
  .section__03-02 .inner {
    padding: 70px 50px;
  }
  .section__03 .section__sub {
    margin-bottom: 30px;
  }
  .section__03-01 .section__sub .title__04 {
    margin-bottom: 50px;
    font-size: 24px;
    letter-spacing: .05em;
  }
  .section__03-02 .section__sub .title__04 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight: 500;
    text-align: center;
  }
  .section__03 .section__sub .detail {
    display: flex;
    justify-content: space-between;
  }
  .section__03 .section__sub .detail__text {
    flex: 1;
    margin-left: 40px;
    font-size: 18px;
    line-height: 1.75;
    letter-spacing: .05em;
  }
  .section__03 .section__sub .detail.reverse .detail__text {
    margin-left: 0;
    margin-right: 40px;
  }
  .section__03-02 .section__sub .detail__text {
    font-size: 18px;
  }
  .section__03-02 .section__sub .detail__text ._yellow {
    font-size: 20px;
  }
  .section__03 .section__sub .detail.reverse {
    flex-direction: row-reverse;
  }
  .section__03-01 .section__sub .detail__text {
    width: 470px;
  }
  .section__03-02 .section__sub .detail__image {
    width: 400px;
  }
  .section__03 .accordion__button {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .section__03-02 .catch {
    margin: 20px auto 50px;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }
}

@media screen and (max-width: 768px) {
  .section__03-01 {
    padding: 22px 0;
  }
  .section__03-02 {
    margin-bottom: 45px;
  }
  .section__03 .section__title {
    background-image: url(/img/usr/freepage/cororon/sp/bg_chap-03.jpg);
  }
  .section__03 .inner {
    padding: 40px 17px;
    width: 90vw;
  }
  .section__03 .concept {
    padding: 15px 20px 65.7333333333%;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.75;
    text-align: center;
    background: url(/img/usr/freepage/cororon/sp/bg_concept.png) bottom center #fff no-repeat;
    background-size: contain;
  }
  .section__03 .concept__title {
    margin-bottom: 10px;
    width: 86px;
  }
  .section__03 .concept__text p {
    margin-bottom: 20px;
  }
  .section__03 .concept__text p:last-child {
    margin-bottom: 0;
  }
  .section__03 .title__03 {
    margin-bottom: 40px;
    font-size: 15px;
  }
  .section__03 .title__03 .text::before, .section__03 .title__03 .text::after {
    width: 15px;
    height: 24px;
    background-size: contain;
  }
  .section__03 .title__03 .text::before {
    left: -20px;
  }
  .section__03 .title__03 .text::after {
    right: -20px;
  }
  .section__03-01 .section__sub .title__04 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.75;
  }
  .section__03 .section__sub .detail__image {
    margin-bottom: 15px;
  }
  .section__03-01 .section__sub .detail__text {
    font-size: 13px;
    line-height: 1.75;
    font-weight: 600;
  }
  .section__03 .section__sub {
    margin-bottom: 45px;
  }
  .section__03 .section__sub:last-child {
    margin-bottom: 0;
  }
  .section__03 .accordion__button {
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .section__03-02 .catch {
    margin: 20px auto;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    font-weight: 600;
  }
  .section__03-02 .section__sub .title__04 {
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
  }
  .section__03-02 .section__sub .detail__text ._yellow {
    font-size: 15px;
  }
  .section__03-02 .section__sub .detail__text {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 600;
  }
}

/* chapter04 */

.section__04 .catch {
  text-align: center;
  font-weight: 500;
  background-color: transparent;
}

.section__04 .catch span {
  position: relative;

}

.section__04 .catch span::before, .section__04 .catch span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 19px;
  height: 38px;
  transform: translate(0, -50%);
}

.section__04 .catch span::before {
  left: -40px;
  background: url(/img/usr/freepage/cororon/mark_02-left.png) no-repeat;
}

.section__04 .catch span::after {
  right: -40px;
  background: url(/img/usr/freepage/cororon/mark_02-right.png) no-repeat;
}

.section__04 .desc {
  text-align: center;
  line-height: 2;
  letter-spacing: .05em;
}

.section__04 .voice .text__body {
  font-weight: 500;
}

.balloon {
  position: relative;
  display: inline-block;
  padding: 13px 0;
  margin-bottom: 32px;
  border-radius: 10px;
  font-weight: 500;
  text-align: center;
  z-index: 0;
}

.balloon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 20px;
  bottom: -20px;
  border-style: solid;
  border-width: 20px 0 30px 21px;
  transform: rotate(190deg);
  z-index: -1;
}

.balloon._orange {
  background-color: #ffdcab;
}

.balloon._orange::after {
  border-color: transparent transparent transparent #ffdcab;
}

.balloon._pink {
  background-color: #ebbcb8;
}

.balloon._pink::after {
  border-color: transparent transparent transparent #ebbcb8;
}

.balloon._green {
  background-color: #c8e5b5;
}

.balloon._green::after {
  border-color: transparent transparent transparent #c8e5b5;
}

.balloon._blue {
  background-color: #b5d4e2;
}

.balloon._blue::after {
  border-color: transparent transparent transparent #b5d4e2;
}

.line__orange {
  border-bottom: 4px solid #ffdcab;
}

.line__pink {
  border-bottom: 4px solid #ebbcb8;
}

.point .point__list__text .line__pink,
.concept .concept__text .line__pink {
  border-bottom: 4px solid #e35f72;
}

.line__green {
  border-bottom: 4px solid #c8e5b5;
}

.line__blue {
  border-bottom: 4px solid #b5d4e2;
}

.section__04 .member__list>li a {
  padding-bottom: 5px;
  border-bottom: 1px solid #272727;
  color: #272727;
  letter-spacing: .05em;
}
.insta-comment-list {
    display: flex;
    flex-wrap: wrap;
}
.insta-comment-list li {
    width: calc((100% - 50px)/2);
    margin-right: 50px;
    margin-bottom: 30px;
    /* display: flex; */
    /* flex-wrap: wrap; */
}
.insta-comment-list li:nth-child(2n) {
    margin-right: 0;
}
.insta-comment-list a {
    font-weight: bold;
}
.insta-comment-list .desc {
    text-align: left;
    min-height: 130px;
}
.insta-comment-list li>* {
    width: 100%;
}
.insta-comment-list .instagram-media {
    margin-bottom: 0!important;
    /* margin-top: auto!important; */
}
@media screen and (min-width: 769px) {
  .section__04 .section__title {
    background-image: url(/img/usr/freepage/cororon/bg_chap-04.jpg);
  }
  .section__04 .inner {
    padding: 70px 0;
  }
  .section__04 .inner-revico {
      margin-bottom: 70px;
  }
  .section__04 .catch {
    margin-bottom: 45px;
    font-size: 28px;
  }
  .section__04 .desc {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .section__04 .voice {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  .section__04 .voice.reverse {
    flex-direction: row-reverse;
  }
  .section__04 .voice__text {
    flex: 1;
    margin-left: 20px;
  }
  .section__04 .voice.reverse .voice__text {
    margin-left: 0;
    margin-right: 20px;
  }
  .balloon {
    width: 270px;
    font-size: 20px;
  }
  .section__04 .voice .text__body {
    font-size: 20px;
    line-height: 1.8;
  }
  .section__04 .voice__member {
    margin-top: 60px;
    text-align: center;
  }
  .section__04 .member__text {
    margin-bottom: 70px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .05em;
    line-height: 1.8;
  }
  .section__04 .member__title {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .05em;
  }
  .section__04 .member__list li {
    margin-bottom: 5px;
    font-size: 16px;
  }
  .insta-comment-more-btn {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .section__04 .inner {
    padding: 20px 0 45px;
  }
  .section__04 .inner-revico {
      margin-bottom: 70px;
  }
  .section__04 .inner-revico .catch {
      margin: 0 20px 30px;
  }
  .section__04 .section__title {
    background-image: url(/img/usr/freepage/cororon/sp/bg_chap-04.jpg);
  }
  .section__04 .catch {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 600;
  }
  .section__04 .catch span::before, .section__04 .catch span::after {
    width: 15px;
    height: 24px;
    background-size: contain;
  }

  .section__04 .catch span::before {
    left: -80px;
  }

  .section__04 .catch span::after {
    right: -30px;
  }
  .section__04 .desc {
    margin: 0 auto 10px;
    line-height: 1.75;
    font-size: 13px;
    width: 80vw;
  }
  .section__04 .voice {
    margin: 0 auto 25px;
    width: 80vw;
  }
  .section__04 .voice__image {
    margin-bottom: 12px;
  }
  .balloon {
    position: relative;
    display: inline-block;
    padding: 5px 15px;
    margin-bottom: 4.53vw;
    border-radius: 2.67vw;
    text-align: center;
    z-index: 0;
    font-size: 14px;
    font-weight: 600;
  }
  .balloon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 5.33vw;
    bottom: -2.93vw;
    border-style: solid;
    border-width: 4.8vw 0 6.67vw 5.33vw;
    transform: rotate( 182deg);
    z-index: -1;
  }
  .section__04 .voice .text__body {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
  }

  .line__orange {
    border-bottom: 2px solid #ffdcab;
  }

  .line__pink {
    border-bottom: 2px solid #ebbcb8;
  }

  .line__green {
    border-bottom: 2px solid #c8e5b5;
  }

  .line__blue {
    border-bottom: 2px solid #b5d4e2;
  }
  .section__04 .voice__member {
    margin: 0 auto;
    text-align: center;
    width: 80vw;
  }
  .section__04 .member__text {
    margin-bottom: 35px;
    font-size: 13px;
  }
  .section__04 .member__title {
    margin-bottom: 10px;
    font-size: 13px;
  }
  .section__04 .member__list {
    display: inline-block;
  }
  .section__04 .member__list li {
    margin-bottom: 10px;
    text-align: left;
    font-size: 13px;
  }
  .section__04 .member__list>li a {
    padding-bottom: 0;
  }
  .insta-comment-list li {
      width: auto;
      margin: 0 0 35px;
  }
  .insta-comment-list .desc {
      width: auto;
      margin-bottom: 20px;
      min-height: auto;
      padding: 0 calc(60 * (100vw / 750)) 0 calc(30 * (100vw / 750));
  }
  .section__04 .catch span {
      width: 100%;
      display: block;
  }
  .section__04 .catch span::before {
      left: -10px;
  }
  .section__04 .catch span::after {
      right: -10px;
  }
  .insta-comment-list {
      /*overflow: hidden;
      height: 50vh;*/
  }
  .insta-comment-more-btn {
      width: 100%;
      height: 30px;
      padding-top: 60px;
      text-align: center;
      line-height: 30px;
      background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 70%);
      cursor: pointer;
      transition: bottom 0.2s;
      margin: -60px 0 50px;
      position: relative;
      cursor: pointer;
  }
  .insta-comment-more-btn.is-active {
      padding-top: 100px;
  }
  .insta-comment-more-btn .is-text {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #413f3f;
      color: #fff;
      border-radius: 50vh;
      cursor: pointer;
      width: 124px;
      height: 34px;
      font-size: 13px;
      margin: auto;
  }
  .insta-comment-more-btn .is-text::after {
      content:"";
      position: absolute;
      top: 0;
      bottom: 0;
      right: 13px;
      margin: auto;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      border-color: #fff transparent transparent transparent;
      transition: .2s all;
  }
  .insta-comment-more-btn.is-active .is-text::after {
      transform: rotate(-180deg);
  }
}

/* chapter05 */

.section__05 {
  background-color: #f6e2de;
}

.section__05 .lead p {
  font-weight: 500;
}

.section__05 .design .catch {
  text-align: center;
}

.section__05 .design .catch span {
  position: relative;
  font-weight: 500;
}

.section__05 .design .catch span::before, .section__05 .design .catch span::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 19px;
  height: 38px;
  transform: translate(0, -50%);
}

.section__05 .design .catch span::before {
  left: -30px;
  background: url(/img/usr/freepage/cororon/mark_02-left.png) no-repeat;
}

.section__05 .design .catch span::after {
  right: -30px;
  background: url(/img/usr/freepage/cororon/mark_02-right.png) no-repeat;
}

.section__05 .design .member {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
  padding: 22px 25px;
  border: 1px solid #d3d3d3;
  background-color: #fff;
}

.section__05 .design .member .txt {
  margin-left: 25px;
}

.section__05 .design .member h3 {
  font-weight: bold;
  font-size: 18px;
  background: none;
  padding: 0;
  margin: 0;
  border: 0;
}

.section__05 .design .member a {
  display: block;
  margin-bottom: .5em;
  color: #c18681;
}

@media screen and (min-width: 769px) {
  .section__05 .section__title {
    background-image: url(/img/usr/freepage/cororon/bg_chap-05.jpg);
  }
  .section__05 .inner {
    padding: 70px 0 115px;
  }
  .section__05 .lead {
    margin: 0 auto 50px;
    width: 720px;
  }
  .section__05 .lead p {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: .04em;
    line-height: 2;
  }
  .section__05 .design {
    margin-bottom: 40px;
  }
  .section__05 .design .catch {
    margin-bottom: 30px;
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .section__05 .inner {
    padding: 22px 0;
  }
  .section__05 .section__title {
    background-image: url(/img/usr/freepage/cororon/sp/bg_chap-05.jpg);
  }
  .section__05 .lead {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .section__05 .lead p {
    font-size: 13px;
    font-weight: 600;
  }
  .section__05 .design .catch span::before, .section__05 .design .catch span::after {
    width: 15px;
    height: 24px;
    background-size: contain;
  }
  .section__05 .design .catch span::before {
    left: -20px;
  }
  .section__05 .design .catch span::after {
    right: -20px;
  }
  .section__05 .design .catch {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .section__05 .design .catch span {
    font-weight: 600;
  }
  .section__05 .design .member {
    justify-content: space-between;
    margin: 0 auto 35px;
    padding: 20px;
  }
  .section__05 .design .member img {
    width: 40%;
  }
  .section__05 .design .member .txt {
    margin-left: 1.5em;
    width: 60%;
  }
  .section__05 .wrap__accordion {
    display: none;
  }
  .section__05 .wrap__button {
    margin-top: 20px;
  }
}

.block-debut-campaign--item-count {
  line-height: 1;
}
.insta_info > img {
  border-radius: 50vh;
}
.block-debut-campaign--set-price strong,
.block-debut-campaign--select-price strong,
.is-disabled .block-debut-campaign--select-item-price {
  color: #b9253a;
}

.debut_campaign #debut_campaign_select ul.block-debut-campaign--select-item li.is-disabled {
  pointer-events: none;
}

/* 送料無料バナー追加 */
#cororon .bnr_campaign {
  margin-top: 50px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .debut_campaign {
    width: 100%;
    padding: 70px 0;
  }
  .es-sale {
    background-image: url("/img/event/yawaraka_2104/pc/bg_blue.png");
  }
  .debut_campaign .block-debut-campaign--body {
    width: 960px;
    margin: 0 auto;
    padding: 45px 0 50px;
    background-color: #ffffff;
    border-radius: 50px;
    background-image: url("/img/event/yawaraka_2104/pc/3set_deco.png");
    background-position: center top;
    background-repeat: no-repeat;
  }
  .es-sale .block-debut-campaign--body {
    background-image: url("/img/event/yawaraka_2104/pc/yawaraka_2set_deco.png");
    background-position: center 40px;
  }
  .debut_campaign h2 {
    text-align: center;
    border: 0;
    margin: 0 0 20px!important;
    padding: 0;
    background: none;
  }
  .debut_campaign h3 {
    text-align: center;
    border: 0;
    margin: 0 0 20px!important;
    padding: 0;
    background: none;
  }
  .debut_campaign .limited-time {
    font-size: 20px;
    text-align: center;
    line-height: 1.75;
    width: 260px;
    margin: 0 auto 20px;
    padding: 3px 0;
    border: 1px solid #413f3f;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 2px 2px 0px 2px #413f3f;
  }
  .debut_campaign .block-debut-campaign--lead {
    font-size: 18px;
    text-align: center;
    line-height: 2.1;
    margin-bottom: 15px;
  }
  .debut_campaign .block-debut-campaign--lead strong {
    font-size: 23px;
    font-weight: bold;
    line-height: 1.6;
  }
  .debut_campaign .debut_campaign_set {}
  .debut_campaign .debut_campaign_set img.prod {
    display: block;
    margin: 0 auto;
  }
  .debut_campaign .debut_campaign_set h3 {}
  .es-sale_select .count, .debut_campaign #debut_campaign_select .count {
    display: none;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item li {
    width: 206px;
    text-align: center;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-desc {
    margin-top: 10px;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-name {
    font-size: 18px;
    line-height: 1.46;
    font-weight: bold;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-price {
    font-size: 17px;
    line-height: 1.52;
  }
  .es-sale_select .block-es--debut-campaign--select-price>div, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price>div {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 30px;
  }
  .es-sale_select .block-es--debut-campaign--select-price span, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price span, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price span {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: underline;
    text-align: center;
    display: block;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-price span.sold {
    color: #b9253a;
    font-size: 35px;
    text-decoration: none;
  }
  .es-sale_select .block-es--debut-campaign--select-price strong, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price strong, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price strong {
    font-size: 57px;
    font-weight: bold;
    line-height: 1.1;
    display: block;
    margin: 0 15px;
  }
  .es-sale_select .block-es--debut-campaign--select-price small, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price small, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price small {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    display: block;
  }
  .es-sale_select .block-es--debut-campaign--select-price.on-set, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price.on-set {
    display: none;
  }
  .es-sale_select .block-es--debut-campaign--select-btn, .debut_campaign .debut_campaign_set .block-debut-campaign--set-btn, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn {
    text-align: center;
    width: 400px;
    margin: 0 auto 50px;
  }
  .es-sale_select .block-es--debut-campaign--select-btn a, .debut_campaign .debut_campaign_set .block-debut-campaign--set-btn a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn a {
    color: #ffffff;
    font-size: 21px;
    text-align: center;
    line-height: 1.5;
    display: block;
    background-color: #313030;
    border-radius: 50px;
    padding: 21px 0 20px;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-btn a:hover {
    opacity: .7;
  }

  .debut_campaign_set .block-debut-campaign--set-btn span.is-disabled {
    color: #ffffff;
    font-size: 21px;
    text-align: center;
    line-height: 1.5;
    display: block;
    background-color: #ccc;
    border-radius: 50px;
    padding: 21px 0 20px;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn a.no-rink {
    pointer-events: none;
  }
  .debut_campaign #debut_campaign_select {}
  .es-sale_select p.select_txt, .debut_campaign #debut_campaign_select p.select_txt {
    font-size: 19px;
    font-weight: bold;
    text-align: center;
    line-height: 2.4;
  }
  .es-sale_select p.select_txt {
    display: none;
  }
  .es-sale_select p.note, .debut_campaign #debut_campaign_select p.note {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .debut_campaign #debut_campaign_select ul.block-debut-campaign--select-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 34px 0 18px;
  }
  .es-sale_select li, .debut_campaign #debut_campaign_select ul.block-debut-campaign--select-item li {
    width: 254px;
    margin: 0 5px;
    cursor: pointer;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .es-sale_select .block-es-sale--select-item-img, .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-img {
    width: 254px;
    height: 254px;
    border: 5px solid #ffffff;
  }
  .es-sale_select .block-es-sale--select-item-img.js-select {
    border-color: #4abdc2;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-img.js-select {
    border-color: #dac5a6;
  }
  .es-sale_select .block-debut-campaign--btn-select, .debut_campaign #debut_campaign_select .block-debut-campaign--btn-select {
    text-align: center;
    position: absolute;
    right: 16px;
    top: 16px;
    padding: 7px 10px 6px;
    color: #fff;
    background-color: #dac5a6;
    border-radius: 50px;
    z-index: 10;
    display: none;
  }
  .es-sale_select .block-debut-campaign--btn-select {
    background-color: #4abdc2;
  }
  .es-sale_select .block-debut-campaign--btn-select.js-active, .debut_campaign #debut_campaign_select .block-debut-campaign--btn-select.js-active {
    display: block;
  }
  .es-sale_select .block-debut-campaign--item-count, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count {
    position: absolute;
    left: 5px;
    top: 217px;
    z-index: 10;
    display: none;
    letter-spacing: -5px;
  }
  .es-sale_select .block-debut-campaign--item-count.js-active, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count.js-active {
    display: block;
  }
  .es-sale_select .block-debut-campaign--item-count button, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count button {
    color: #ffffff;
    width: 32px;
    height: 32px;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #777776;
    letter-spacing: 0;
  }
  .es-sale_select .block-debut-campaign--item-count button:disabled, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count button:disabled {
    opacity: 0.5;
  }
  .es-sale_select .block-debut-campaign--item-count input, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count input {
    color: #ffffff;
    text-align: center;
    width: 32px;
    height: 32px;
    border: 0;
    background-color: #a0a0a0;
    border-radius: 0;
    letter-spacing: 0;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-desc {
    margin-top: 15px;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-name {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.44;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-price {
    font-size: 17px;
    line-height: 1.4;
  }
  .es-sale_select .block-es--debut-campaign--select-btn a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn a {
    color: #ffffff;
    text-align: center;
    background-color: #cccccc;
    pointer-events: none;
  }
  .es-sale_select .block-es--debut-campaign--select-btn.js-active a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn.js-active a {
    background-color: #000000;
    pointer-events: all;
  }
  .debut_campaign .campaign_info {
    width: 650px;
    margin: 76px auto 80px;
  }
  .debut_campaign .campaign_info h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.0;
    margin-bottom: 33px;
  }
  .debut_campaign .campaign_info h3 span {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.0;
    display: inline-block;
    padding: 0 3px;
    margin: 0 5px;
    position: relative;
    z-index: 5;
  }
  .debut_campaign .campaign_info h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15px;
    background-color: #f2e9ce;
    z-index: -1;
  }
  .es-sale .campaign_info h3 span::after {
    background-color: #fed5d5;
  }
  .debut_campaign_period ul {
    display: flex;
    justify-content: space-between;
  }
  .debut_campaign_period ul li {
    font-size: 21px;
    line-height: 1.5;
    font-weight: bold;
    width: 315px;
    text-align: center;
    background-color: #f2e9ce;
    border-radius: 10px;
    padding: 23px 0 35px;
  }
  .es-sale .debut_campaign_period ul li {
    background-color: #d5f2ef;
  }
  .debut_campaign_period ul li h4 {
    color: #ffffff;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.76;
    margin: 0 auto 25px;
    width: 130px;
    border: 0;
    padding: 0;
    background-color: #313030;
    position: relative;
  }
  .debut_campaign_period ul li h4::before, .debut_campaign_period ul li h4::after {
    content: "";
    position: absolute;
    top: 0;
  }
  .debut_campaign_period ul li h4::before {
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 8px;
    border-color: transparent transparent transparent #f2e9ce;
  }
  .debut_campaign_period ul li h4::after {
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 8px 15px 0;
    border-color: transparent #f2e9ce transparent transparent;
  }
  .debut_campaign_precautions ul li {
    font-size: 17px;
    line-height: 1.5625;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 18px;
  }
  .desk {
    margin-bottom: 70px;
  }
  .desk .title {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
  }
  .desk ul.member {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .desk ul.member li {
    flex-basis: 480px;
    display: flex;
    align-items: flex-start;
    margin: 10px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    padding: 22px 25px;
    align-items: center;
  }
  .desk ul li img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ededed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
  }
  .desk ul li .txt {
    margin-left: 25px;
    width: 60%;
  }
  .desk ul li .txt h3 {
    font-weight: bold;
    font-size: 18px;
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
  }
  .desk ul li .txt a {
    margin-bottom: .5em;
    display: block;
    color: #c18681;
  }
  .desk ul li .txt a:hover {
    opacity: .7;
  }
  .cbline::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url("/img/event/yawaraka_2004/pc/cb_line.png") no-repeat;
    transform: rotate(-45deg);
    margin: 0 30px 0 0;
    vertical-align: bottom;
  }
  .cbline::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url("/img/event/yawaraka_2004/pc/cb_line.png") no-repeat;
    transform: rotate(45deg);
    margin: 0 0 0 30px;
    vertical-align: bottom;
  }
  .cbline_rd::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(-45deg);
    margin: 0 30px 0 0;
    vertical-align: bottom;
  }
  .cbline_rd::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(45deg);
    margin: 0 0 0 30px;
    vertical-align: bottom;
  }
  #ce19_instagram {
    margin: 150px auto 110px;
    text-align: center;
  }
  #ce19_instagram .btn_link {
    margin: 20px 0 30px;
  }
  #collaboration_event2019_link {
    margin-bottom: 100px;
  }
  #collaboration_event2019_link {
    margin-top: 50px;
  }
  #ce19_instagram h2, #collaboration_event2019_link h2 {
    font-weight: 500;
    font-size: 28px;
    border: 0;
    padding: 0;
    margin: 0 0 .5em 0;
    color: #1e233b;
  }
  #ce19_instagram h2::before, #collaboration_event2019_link h2::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(-45deg);
    margin: 0 30px 0 0;
    vertical-align: bottom;
  }
  #ce19_instagram h2::after, #collaboration_event2019_link h2::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 40px;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(45deg);
    margin: 0 0 0 30px;
    vertical-align: bottom;
  }
  #ce19_instagram .text_title, #collaboration_event2019_link .text_title {
    padding: 30px 15px 10px;
    line-height: 1.5;
  }
  #ce19_instagram .btn_link, #collaboration_event2019_link a {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 50px;
    border: 1px solid #0ca6af;
    border-radius: 50px;
    background-color: #e9f9fa;
    color: #0ca6af;
    font-size: 15px;
    transition: opacity .3s;
    position: relative;
  }
  #ce19_instagram .btn_link::after, #collaboration_event2019_link a::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid #0ca6af;
    border-right: 1px solid #0ca6af;
    transform: rotate(45deg);
  }
  #ce19_instagram .btn_link:hover {
    opacity: .7;
  }
  .insta_info {
    width: 566px;
    display: flex;
    margin: 30px auto 0;
  }
  .insta_info a {
    font-size: 25px;
    margin: 8px 0;
    display: block;
  }
  .insta_info a span {
    background: linear-gradient(transparent 60%, #cfe3e5 0%);
  }
  .btn_mothers {
    display: block;
    width: 380px;
    margin: 50px auto 0;
    padding: 15px 0;
    border: 2px solid #535353;
    border-radius: 40px;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #535353;
  }
  .bnr_mothers {
    margin: 0 auto;
    text-align: center;
  }
  .about-director {
    background: #f2f1ee;
    margin: 80px auto 0;
    border: 4px solid #1f243c;
  }
  .about-director .flexBox {
    display: flex;
    padding: 60px 70px;
  }
  .about-director figure {
    width: 39.1%;
    margin-right: 6%;
    display: flex;
    align-items: center;
  }
  .about-director .is-detail {
    width: 76%;
  }
  h3.is-who {
    background: none;
    padding: 0;
    margin: 0;
    border: 0;
    margin-bottom: 30px;
  }
  .about-director .is-txt {
    color: #272727;
    margin-bottom: 35px;
    line-height: 1.5;
    font-size: 13px;
  }
  .about-director .is-txt a {
    color: #272727;
  }
  h3.is-who .is-prfs {
    font-size: 16px;
    display: block;
  }
  h3.is-who .is-whoname {
    font-size: 26px;
    display: block;
  }
  h3.is-who .is-bs-txt {
    font-family: Brush Script MT;
    font-size: 28px;
    color: #d2cbbd;
  }
  .aboutiv_Btn {
    display: block;
    width: 290px;
    padding: 10px 0;
    color: #535353;
    border: 2px solid #535353;
    text-align: center;
    border-radius: 30px;
    font-size: 13px;
    font-weight: bold;
  }
  .aboutiv_Btn:hover {
    color: #535353;
    opacity: .7;
  }
  .fixedBtn {
    position: fixed;
    top: 150px;
    right: 0;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 100;
  }
  .fixedBtn li {
    text-align: center;
    margin-bottom: 1px;
    float: left;
  }
  .fixedBtn li a {
    padding: 10px 5px 10px 10px;
    display: flex;
    align-items: center;
    color: #272727;
    border-radius: 5px 0 0 5px;
    background: rgba(237, 215, 65, 0.7);
    transition: .2s;
    width: 60px;
    text-align: left;
    font-size: 13px;
  }
  .fixedBtn li.itemlist a {
    background: rgba(10, 164, 173, 0.7);
    color: #fff;
  }
  .fixedBtn li.active a, .fixedBtn li a:hover {
    width: 80px;
    background: #edd741;
    opacity: 1;
  }
  .fixedBtn li.itemlist.active a, .fixedBtn li.itemlist a:hover {
    background: #0aa4ad;
  }
  .fixedBtn::after {
    content: "";
    display: block;
    clear: both;
  }
  .other_towel {
    width: 1000px;
    margin: 100px auto;
    text-align: center;
  }
  .other_towel h2 {
    font-weight: 500;
    font-size: 28px;
    border: 0;
    padding: 0;
    margin: 0 0 .5em 0;
    color: #1e233b;
  }
  .other_towel h2 span {
    font-weight: 500;
  }
  .other_towel a {
    display: block;
    margin-top: .5em;
  }
}

@media screen and (max-width: 768px) {
  .about-director {
    background: #f2f1ee;
    margin-top: 6.67vw;
    padding: 5.87vw 0;
    color: #272727;
    margin-bottom: 6.67vw;
  }
  .about-director h3 {
    margin-bottom: 2.67vw !important;
  }
  .about-director .flexBox {
    /* padding: 6vw 8%; */
  }
  .about-director .is-detail::after {
    content: "";
    clear: both;
    display: block;
  }
  .about-director figure {
    /*float: right;*/
    /*width: 55%;*/
    margin: 0 auto 2.67vw;
    width: 60%;
  }
  .about-director .is-detail {
    margin: 0 15px;
  }
  h3.is-who .is-prfs {
    display: block;
    font-weight: 100;
    font-size: 3.2vw;
    margin-bottom: 1.87vw;
  }
  h3.is-who .is-whoname {
    display: block;
    font-weight: 100;
    font-size: 4vw;
  }
  h3.is-who .is-bs-txt {
    font-style: italic;
    width: 25%;
    display: inline-block;
    line-height: 1;
  }
  h3.is-who {
    margin: 0 4% 8vw;
    padding: 0;
    background-color: transparent;
  }
  .about-director .is-detail .is-txt {
    color: #272727;
    /* width: 50%; */
  }
  .about-director .is-txt a {
    color: #272727;
  }
  .about-director {
    /* width: 92%; */
    margin: 6.93vw auto 22.67vw;
    border: 1.07vw solid #1f243c;
  }
  .cbline::before {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 8vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(-30deg);
    margin: 0 4vw 0 0;
    vertical-align: bottom;
    background-size: auto 100%;
  }
  .cbline::after {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 8vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(30deg);
    margin: 0 0 0 4vw;
    vertical-align: bottom;
    background-size: auto 100%;
  }
  .cbline_rd::before {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 7vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(-30deg);
    margin: 0 4vw 0 0;
    vertical-align: bottom;
    background-size: auto 100%;
  }
  .cbline_rd::after {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 7vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(30deg);
    margin: 0 0 0 4vw;
    vertical-align: bottom;
    background-size: auto 100%;
  }
  .ce_about-rinen h2 span {
    position: relative;
  }
  .ce_about-rinen h2 span::before, .ce_about-rinen h2 span::after, .about_used_inner_detail>h3 span::before, .about_used_inner_detail>h3 span::after, .rinenseries_item h2 span::before, .rinenseries_item h2 span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .about_used_inner_detail>h3 span::before, .ce_about-rinen h2 span::before, .rinenseries_item h2 span::before {
    left: -2.67vw;
  }
  .about_used_inner_detail>h3 span::before, .about_used_inner_detail>h3 span::after, .rinenseries_item h2 span::before, .rinenseries_item h2 span::after {
    height: 11vw;
  }
  .ce_about-rinen h2 span::after {
    right: -8vw;
  }
  .about_used_inner_detail>h3 span::after, .rinenseries_item h2 span::after {
    right: -2.67vw;
  }
  .ce_about-rinen li figure {
    margin-bottom: 5.33vw;
  }
  #ce19_instagram .btn_link {
    margin: 5.33vw 0 8vw;
  }
  #collaboration_event2019_link {
    margin-bottom: 18.67vw;
  }
  #ce19_instagram, #collaboration_event2019_link {
    /*margin-top: 26.67vw;*/
    text-align: center;
    margin-top: 13.33vw;
    margin-bottom: 10.67vw;
  }
  #ce19_instagram h2, #collaboration_event2019_link h2 {
    font-weight: bold;
    font-size: 4.1vw;
    padding: 0;
    margin: 0 0 .5em 0;
    border: 0;
    color: #1e233b;
  }
  #ce19_instagram h2 span, #collaboration_event2019_link h2 span {
    position: relative;
    display: inline-block;
  }
  #ce19_instagram h2 span::before, #collaboration_event2019_link h2 span::before {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 8vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(-30deg);
    background-size: auto 100%;
    position: absolute;
    left: -5.33vw;
    bottom: 0;
    vertical-align: bottom;
  }
  #ce19_instagram h2 span::after, #collaboration_event2019_link h2 span::after {
    content: "";
    display: inline-block;
    width: 1.33vw;
    height: 8vw;
    background: url(/img/event/yawaraka_2004/pc/cb_line.png) no-repeat;
    transform: rotate(30deg);
    position: absolute;
    background-size: auto 100%;
    bottom: 0;
    right: -5.33vw;
  }
  #ce19_instagram .text_title, #collaboration_event2019_link .text_title {
    padding: 5.33vw 30px 8vw;
    line-height: 1.5;
    font-size: 3.8vw;
  }
  #ce19_instagram .btn_link, #collaboration_event2019_link a {
    display: inline-block;
    margin-top: 10.67vw;
    padding: 3.73vw 13.33vw;
    border: 0.27vw solid #0ca6af;
    border-radius: 13.33vw;
    background-color: #e9f9fa;
    color: #0ca6af;
    font-size: 3.73vw;
    transition: opacity .3s;
    margin: 5% 5% 0;
    position: relative;
  }
  #ce19_instagram .btn_link::after, #collaboration_event2019_link a::after {
    content: "";
    position: absolute;
    right: 5.33vw;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 2.13vw;
    height: 2.13vw;
    border-top: 0.27vw solid #0ca6af;
    border-right: 0.27vw solid #0ca6af;
    transform: rotate(45deg);
  }
  .insta_info a {
    font-size: 21px;
    margin: 8px 0;
    display: block;
  }
  .insta_info a span {
    background: linear-gradient(transparent 60%, #cfe3e5 0%);
  }
  .block-event-page--goods {
    display: none;
  }
  .debut_campaign {
    width: 100%;
    padding: 14.4vw 0;
    background-position: left top;
    background-repeat: repeat;
    background-size: 13.33vw auto;
  }
  .es-sale {
    background-image: url("../../../img/event/yawaraka_2104/pc/bg_blue.png");
  }
  .debut_campaign .block-debut-campaign--body {
    width: 93%;
    margin: 0 auto;
    padding: 9.33vw 30px;
    background-color: #ffffff;
    border-radius: 5.33vw;
  }
  .debut_campaign h2 {
    text-align: center;
    border: 0;
    margin: -14.67vw 0 5.33vw!important;
    padding: 0;
    background: none;
    width: 100%;
  }
  .debut_campaign h2 img {
    width: 71.47vw!important;
  }
  .debut_campaign h3 {
    text-align: center;
    border: 0;
    margin: 0 0 1vw!important;
    padding: 0;
    background: none;
  }
  .debut_campaign h3 img {
    width: 82.4vw!important;
  }
  .debut_campaign .limited-time {
    font-size: 3.47vw;
    text-align: center;
    line-height: 1.75;
    width: 46.93vw;
    margin: 0 auto 5.33vw;
    padding: 0.8vw 0;
    border: 0.27vw solid #413f3f;
    border-radius: 1.33vw;
    background-color: #ffffff;
    box-shadow: 0.53vw 0.53vw 0 0.53vw #413f3f;
  }
  .debut_campaign .block-debut-campaign--lead {
    font-size: 3.47vw;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 4vw;
  }
  .debut_campaign .block-debut-campaign--lead strong {
    font-size: 4.27vw;
    font-weight: bold;
    line-height: 1.48;
  }
  .debut_campaign .debut_campaign_set {}
  .debut_campaign .debut_campaign_set h3 {
    margin-bottom: .2em;
  }
  .es-sale_select .count, .debut_campaign #debut_campaign_select .count {
    display: none;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 4vw;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item li {
    width: 100%;
    text-align: center;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-desc {
    margin-top: 2.67vw;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-name {
    font-size: 3.47vw;
    line-height: 1.46;
    font-weight: bold;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-item-price {
    font-size: 3.2vw;
    line-height: 1.52;
  }
  .es-sale_select .block-es--debut-campaign--select-price>div, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price div {
    display: flex;
    justify-content: center;
    margin-bottom: 5.33vw;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-price {
    align-items: center;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-price div {
    align-items: baseline;
  }
  .es-sale_select .block-es--debut-campaign--select-price span, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price span, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price span {
    font-size: 3.2vw;
    font-weight: bold;
    line-height: 1.5;
    text-decoration: underline;
    text-align: center;
    display: block;
  }
  .es-sale_select .block-es--debut-campaign--select-price strong, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price strong, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price strong {
    font-size: 9.6vw;
    font-weight: bold;
    line-height: 1.1;
    display: block;
    margin: 0 1.33vw;
  }
  .debut_campaign .debut_campaign_set .block-debut-campaign--set-price span.sold {
    color: #b9253a;
    font-size: 5vw;
    text-decoration: none;
  }
  .es-sale_select .block-es--debut-campaign--select-price small, .debut_campaign .debut_campaign_set .block-debut-campaign--set-price small, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price small {
    font-size: 3.47vw;
    font-weight: bold;
    line-height: 1.5;
    display: block;
  }
  .es-sale_select .block-es--debut-campaign--select-price.on-set, .debut_campaign #debut_campaign_select .block-debut-campaign--select-price.on-set {
    display: none;
  }
  .es-sale_select .block-es--debut-campaign--select-btn, .debut_campaign .debut_campaign_set .block-debut-campaign--set-btn, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn {
    text-align: center;
    width: 76.8vw;
    margin: 0 auto 8vw;
  }
  .es-sale_select .block-es--debut-campaign--select-btn a, .debut_campaign .debut_campaign_set .block-debut-campaign--set-btn a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn a {
    color: #ffffff;
    font-size: 4.53vw;
    text-align: center;
    line-height: 1.5;
    display: block;
    background-color: #313030;
    border-radius: 13.33vw;
    padding: 3.73vw 0 3.47vw;
  }
  .debut_campaign_set .block-debut-campaign--set-btn span.is-disabled {
    color: #ffffff;
    font-size: 4.53vw;
    text-align: center;
    line-height: 1.5;
    display: block;
    background-color: #ccc;
    border-radius: 13.33vw;
    padding: 3.73vw 0 3.47vw;
  }
  .debut_campaign #debut_campaign_select {}
  .es-sale_select p.select_txt, .debut_campaign #debut_campaign_select p.select_txt {
    font-size: 3.47vw;
    font-weight: bold;
    text-align: center;
    line-height: 2.4;
  }
  .es-sale_select p.select_txt {
    display: none;
  }
  .es-sale_select p.note, .debut_campaign #debut_campaign_select p.note {
    font-size: 3.2vw;
    text-align: center;
    line-height: 1.5;
  }
  .debut_campaign #debut_campaign_select ul.block-debut-campaign--select-item {
    display: flex;
    /* justify-content: space-between; */
    justify-content: space-around;
    flex-wrap: wrap;
    margin: .6em auto 4.8vw;
    width: 100%;
  }
  .es-sale_select li, .debut_campaign #debut_campaign_select ul.block-debut-campaign--select-item li {
    /* width: 49%; */
    width: 36.25vw;
    cursor: pointer;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .es-sale_select .block-es-sale--select-item-img, .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-img {
    /* width: 42.67vw;
    height: 42.67vw; */
    border: 1.07vw solid #ffffff;
  }
  .es-sale_select .block-es-sale--select-item-img.js-select {
    border-color: #4abdc2;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-img.js-select {
    border-color: #dac5a6;
  }
  .es-sale_select .block-debut-campaign--btn-select, .debut_campaign #debut_campaign_select .block-debut-campaign--btn-select {
    text-align: center;
    position: absolute;
    right: 1.6vw;
    top: 2.13vw;
    padding: 0.53vw 2.67vw 0.27vw;
    color: #fff;
    background-color: #dac5a6;
    border-radius: 13.33vw;
    z-index: 10;
    display: none;
  }
  .es-sale_select .block-debut-campaign--btn-select {
    background-color: #4abdc2;
  }
  .es-sale_select .block-debut-campaign--btn-select.js-active, .debut_campaign #debut_campaign_select .block-debut-campaign--btn-select.js-active {
    display: block;
  }
  .es-sale_select .block-debut-campaign--item-count, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count {
    position: absolute;
    left: 1.07vw;
    /* top: 34.67vw; */
    top: 28.4375vw;
    z-index: 10;
    display: none;
    letter-spacing: -1.33vw;
  }
  .es-sale_select .block-debut-campaign--item-count.js-active, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count.js-active {
    display: block;
  }
  .es-sale_select .block-debut-campaign--item-count button, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count button {
    color: #ffffff;
    width: 6.67vw;
    height: 6.67vw;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #777776;
    letter-spacing: 0;
    border-radius: 0;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--item-count button:disabled {
    opacity: 0.5;
  }
  .es-sale_select .block-debut-campaign--item-count input, .debut_campaign #debut_campaign_select .block-debut-campaign--item-count input {
    color: #ffffff;
    text-align: center;
    width: 6.67vw;
    height: 6.67vw;
    border: 0;
    background-color: #a0a0a0;
    border-radius: 0;
    letter-spacing: 0;
  }
  .es-sale_select .block-debut-campaign--item-count button:disabled, .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-desc {
    margin-top: 2vw;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-name {
    font-size: 3.47vw;
    font-weight: bold;
    line-height: 1.44;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-item-price {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .debut_campaign #debut_campaign_select .block-debut-campaign--select-price {}
  .es-sale_select .block-es--debut-campaign--select-btn a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn a {
    color: #ffffff;
    text-align: center;
    background-color: #cccccc;
    pointer-events: none;
  }
  .es-sale_select .block-es--debut-campaign--select-btn.js-active a, .debut_campaign #debut_campaign_select .block-debut-campaign--select-btn.js-active a {
    background-color: #000000;
    pointer-events: all;
  }
  .debut_campaign .campaign_info {
    /* width: 84.8vw; */
    margin: 13.33vw auto 0;
  }
  .debut_campaign .campaign_info h3 {
    font-size: 4.27vw;
    font-weight: bold;
    line-height: 1.0;
    margin-bottom: 5.33vw!important;
  }
  .debut_campaign .campaign_info h3 span {
    font-size: 4.27vw;
    font-weight: bold;
    line-height: 1.0;
    display: inline-block;
    padding: 0 0.8vw;
    margin: 0 1.33vw;
    position: relative;
    z-index: 5;
  }
  .debut_campaign .campaign_info h3 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4vw;
    background-color: #f2e9ce;
    z-index: -1;
  }
  .es-sale .campaign_info h3 span::after {
    background-color: #fed5d5;
  }
  .debut_campaign .debut_campaign_period ul {
    width: 72.8vw;
    margin: 0 auto;
  }
  .debut_campaign .debut_campaign_period ul li {
    font-size: 4.53vw;
    line-height: 1.5;
    font-weight: bold;
    text-align: center;
    background-color: #f2e9ce;
    border-radius: 2.67vw;
    padding: 5.07vw 0 4.8vw;
    margin-bottom: 5.87vw;
  }
  .es-sale .debut_campaign_period ul li {
    background-color: #d5f2ef;
  }
  .debut_campaign .debut_campaign_period ul li h4 {
    color: #ffffff;
    font-size: 3.47vw;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.76;
    margin: 0 auto 4.53vw;
    padding: 0.53vw 0 0.27vw;
    width: 28.27vw;
    border: 0;
    background-color: #313030;
    position: relative;
  }
  .debut_campaign .debut_campaign_period ul li h4::before, .debut_campaign .debut_campaign_period ul li h4::after {
    content: "";
    position: absolute;
    top: 0;
  }
  .debut_campaign .debut_campaign_period ul li h4::before {
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.33vw 0 3.33vw 1.6vw;
    border-color: transparent transparent transparent #f2e9ce;
  }
  .debut_campaign .debut_campaign_period ul li h4::after {
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 3.33vw 1.6vw 3.33vw 0;
    border-color: transparent #f2e9ce transparent transparent;
  }
  .debut_campaign_precautions ul li {
    font-size: 3.2vw;
    line-height: 1.75;
    text-indent: -1em;
    padding-left: 1em;
    margin-bottom: 4.8vw;
  }
  .imahari .txt {
    padding: 2em;
    margin-bottom: 1.5em;
  }
  .imahari .txt p {
    font-size: 1.08em;
  }
  /* .yl_marker {
    background: linear-gradient(transparent 60%, #f8f4a2 0%);
  } */
  .red_marker {
    background: linear-gradient(transparent 60%, #fed5d5 0%);
  }
  .desk {
    width: 100%;
    margin: 1em auto 50px;
    /* padding: 0 2.66666666667vw; */
  }
  .desk .title {
    margin: 0 auto;
    width: 90%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
  }
  .desk ul.member {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .desk ul.member li {
    flex-basis: 100%;
    display: flex;
    align-items: flex-start;
    margin: 0 auto 10px;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    padding: 20px;
    align-items: center;
  }
  .desk ul li img {
    width: 40% !important;
    height: auto;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    overflow: hidden;
    text-align: center;
    border: 1px solid #ededed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: auto;
  }
  .desk ul li .txt {
    margin-left: 1.5em;
    width: 60%;
  }
  .desk ul li .txt h3 {
    font-weight: bold;
    font-size: 18px;
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    overflow-wrap: break-word;
  }
  .desk ul li .txt a {
    margin-bottom: .2em;
    display: block;
    color: #c18681;
  }
  .other_towel {
    margin-top: 3em;
  }
  .other_towel h2 {
    margin-bottom: .5em !important;
    border: 0;
    padding: 0;
    font-weight: bold;
    font-size: 4.1vw;
    text-align: center;
  }
  .btn_mothers {
    display: block;
    padding: 2.67vw 0;
    color: #535353;
    border: 0.53vw solid #535353;
    text-align: center;
    border-radius: 8vw;
    font-size: 4vw;
    margin: 5.33vw 4vw 0;
  }
  /* .bnr_mothers {
    padding: 0 15px;
  } */
  .es-sale .block-debut-campaign--set-price {
    margin-top: 20px;
  }
  .block-es-sale--select-item {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: .6em auto 4.8vw;
    width: 87.47vw;
  }
  .block-es-sale--select-item li {
    margin-bottom: 4.8vw;
    width: 42.67vw;
    cursor: pointer;
    position: relative;
    text-align: center;
    z-index: 1;
  }
  .block-es-sale--select-item-desc {
    margin-top: 2vw;
  }
  .block-es-sale--select-item-name {
    font-size: 3.47vw;
    font-weight: bold;
    line-height: 1.44;
  }
  .block-es-sale--select-item-price {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .es-campaign_bnr {
    text-align: center;
    width: 100%;
    padding: 9.6vw 0 6.67vw;
    margin-bottom: 8vw;
    background-color: #faf3c1;
    background-image: url("../../../img/event/yawaraka_2104/pc/bg_blue.png");
    background-position: left top;
    background-repeat: repeat;
  }
  .es-campaign_bnr .inner {
    width: 90%;
    margin: 0 auto;
  }
  .es-sale .block-debut-campaign--set-item img {
    width: 82.4vw!important;
  }
  .aboutiv_Btn {
    display: block;
    margin: 20px auto;
    padding: 8px 20px;
    border: 2px solid #535353;
    border-radius: 50vh;
    font-size: 13px;
    text-align: center;
    font-weight: 500;
    color: #535353;
  }
  /* 送料無料バナー追加 */
  #cororon .bnr_campaign {
    margin-top: 20px;
  }
  .cororon .bnr-area {
      margin: 50px 15px;
  }
}

  /* セール価格赤文字 */
  .product__price.price_red_txt {
    color: #f00;
  }

/* ----------202309ver（.ver202309）---------- */
/* ナビ（PC4×4、SP3×3×2）（.layout4column） */
.layout4column .nav__list__btn_ {
    flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
.layout4column .nav__list__ {
    width: 936px;
}
.layout4column .nav__list__btn_ li:nth-child(n + 5) {
  margin-top: 15px;
}
}

@media screen and (max-width: 768px) {
.layout4column .nav__list__btn_ {
    margin: 0 15px;
}
.layout4column .nav__list__btn_ li {
	margin: 0 calc(3 * (100vw / 750)) calc(20 * (100vw / 750));
    width: calc((100% / 3) - calc(6 * (100vw / 750)));
}
}

/* ユーザーレビュー（★、PC2×2）（.layout2column） */
.layout2column .review-main .review-balloon {
  position: relative;
}
.layout2column .review_item .id_b_ {
    order: 3;
}
.layout2column .review_item .id_b_ a {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 192px;
    height: 48px;
    font-size: 18px;
    text-align: center;
    color: #fff;
    margin: 0 auto 10px;
    background: #6e5023;
    border-radius: 24px;
}
.layout2column .review_item .id_b_ a:after {
    content: "";
    position: absolute;
    right: 28px;
    top: 3px;
    bottom: 0;
    margin: auto;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
.layout2column.review {
    width: 595px;
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
}
.layout2column .review_item {
    width: 285px;
	flex-direction: column;
	margin: 0 0 30px;
	padding: 10px;
}
.layout2column .review_item .review-main {
    padding: 50px 0 30px;
}
.layout2column .review_item .usr {
	width: unset;
    order: 2;
	flex-direction: row-reverse;
	margin: -20px 0 15px;
}
.layout2column .review_item .usr .product-name {
    font-size: 15px;
}
.layout2column .review_item .usr .tag {
    font-size: 12px;
}
.layout2column .review_item .usr .usr-data {
    font-size: 14px;
    margin: 0 15px 0 0;
}
.layout2column .review_item .usr .image {
    width: 80px;
	margin: 0 15px 0 0;
}
.layout2column .review-main .review-balloon {
	justify-content: unset;
    padding: 10px;
    width: 100%;
    height: auto;
    background: #fff;
    border-radius: 10px;
}
.layout2column .review-main .review-balloon::before {
	  content: "";
  position: absolute;
	top: -30px;
  left: 10px;
  width: 106px;
  height: 18px;
    background: url(../../../../img/usr/freepage/cororon/2023/bg-review-star.png) no-repeat top center;
}
.layout2column .review-main .review-balloon::after {
	  content: "";
  position: absolute;
	bottom: -20px;
  left: 90px;
  width: 32px;
  height: 23px;
    background: url(../../../../img/usr/freepage/cororon/2023/bg-review-b.png) no-repeat top center;
}
.layout2column .review-main .review-balloon .text {
    font-size: 14px;
    line-height: 20px;
}
 .section-review .layout2column + .note {
    width: 595px;
	 margin: -20px auto 0;
}
.layout2column .review_item .id_b_ a:hover {
    opacity: 0.7;
}

}

@media screen and (max-width: 768px) {
.layout2column .review_item {
    padding: 12.66666666667vw 2.66666666667vw 6.66666666667vw;
}
.layout2column .review-main .review-balloon::before {
	  content: "";
  position: absolute;
	top: -30px;
  left: 10px;
  width: 106px;
  height: 18px;
    background: url(../../../../img/usr/freepage/cororon/2023/bg-review-star.png) no-repeat top center;
    background-size: 100px auto;
}
.layout2column .review_item .id_b_ a {
    width: calc(250 * (100vw / 750));
    height: calc(70 * (100vw / 750));
    font-size: calc(28 * (100vw / 750));
    margin: 15px auto 0;
}
.layout2column .review_item .id_b_ a:after {
    top: 0;
    right: 18px;
}
}

/* add ＆ reset（cororon2022.css） */
.ver202309 .odd_area_ .marker_line,
.ver202309 .even_area_ .marker_line {
    font-weight: 600;
}
.ver202309 .item_point_inner_ ul li h3 {
    font-weight: 600;
    text-decoration: none;
}
.ver202309 .item_detail_ .item_detail_btn_ p.id_s_,
.ver202309 .item_detail_ .item_detail_btn_ p.id_p_ {
    font-weight: 600;
}

/* chapter06 */
@media screen and (min-width: 769px) {
.ver202309 .section__06_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item01.jpg) no-repeat top center;
    background-size: cover;
}
}

@media screen and (max-width: 768px) {
.ver202309 .section__06_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item01_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter07 */
@media screen and (min-width: 769px) {
.ver202309 .section__07_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item02.jpg) no-repeat top center;
    background-size: cover;
}
}

@media screen and (max-width: 768px) {
.ver202309 .section__07_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item02_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter02(reset) */
@media screen and (min-width: 769px) {
.ver202309 .section__02_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item03.jpg) no-repeat top center;
    background-size: cover;
}
}

@media screen and (max-width: 768px) {
.ver202309 .section__02_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item03_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter08 */
@media screen and (min-width: 769px) {
.ver202309 .section__08_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item04.jpg) no-repeat top center;
    background-size: cover;
}
}

@media screen and (max-width: 768px) {
.ver202309 .section__08_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item04_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter03(reset) */
@media screen and (max-width: 768px) {
.ver202309 .section__03_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item05_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter05(reset) */
@media screen and (max-width: 768px) {
.ver202309 .section__05_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item06_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter04(reset) */
@media screen and (max-width: 768px) {
.ver202309 .section__04_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item07_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}

/* chapter01(reset) */
@media screen and (max-width: 768px) {
.ver202309 .section__01_ .section__title {
    background: #f1f3f3 url(../../../../img/usr/freepage/cororon/2023/bg_item08_sp.png) no-repeat top center;
    background-size: calc(750 * (100vw / 750)) calc(400 * (100vw / 750));
}
}
