@charset "utf-8";
.main-contents {
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    letter-spacing: 0.07em;
    margin: 0 auto;
    max-width: 100%;
}
.main-contents * {
    box-sizing: border-box;
}
.main-contents a, .main-contents a:focus {
    outline: none;
}
.main-contents a {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.main-contents img {
    vertical-align: bottom;
}
.main-contents .d_sp {
    display: none !important;
}
.main-contents h1, 
.main-contents h2, 
.main-contents h3, 
.main-contents h4, 
.main-contents h5, 
.main-contents h6 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 1.0em;
    font-weight: normal;
}
/* page common */
.contents-nav,
.breadcrumb,
.global-footer {
  position: relative;
  z-index: 1;
}
.global-footer {
  background: #fff;
}
.contents-nav {
    margin-top: 0;
}
/* font */
.main-contents .serif {
    font-family: "Noto Serif JP", serif;
}
.basker {
  font-family: "Libre Baskerville", serif;
}
.main-contents .barlow {
    font-family: 'Barlow', sans-serif;
}
.main-contents .zenold {
    font-family: "Zen Old Mincho", serif;
}
.main-contents .notoserif {
    font-family: "Noto Serif JP", serif;
}
.main-contents .encode {
    font-family: "Encode Sans Expanded", sans-serif;
}
.main-contents .yumin {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
/* cont common
 * ************************************************** */
.main-contents section {
    position: relative;
    width: 100%;
}
.main-contents .cont_wrap {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-contents .cont_wrap_c {
    align-items: center;
}
.main-contents .sec_cont, .main-contents .img_area {
    position: relative;
}
.main-contents .sec_cont::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
}
.main-contents .img_area .img_catch,
.main-contents .img_area .img_catchL,
.main-contents .img_area .img_item {
    position: absolute;
    z-index: 2;
}
.main-contents .img_area .img_catch {
    z-index: 4;
}
.main-contents .intro_store {
    font-size: 1.4rem;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}
.main-contents .intro_item li {
    font-size: 1.1rem;
    margin-bottom: 0.7em;
    letter-spacing: 0.02em;
    line-height: 1.4;
}
.main-contents .link_check {
    width: 160px;
    position: absolute;
    z-index: 4;
}
.main-contents .open-modal {
    cursor: pointer;
}
.main-contents .link_check:hover {
    animation: link_check_ani 0.4s ease forwards;
    cursor: pointer;
}
@keyframes link_check_ani {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(8px,0);
    }
}
/* modal */
.main-contents .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: rgba(79, 79, 79, 0.5);
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.main-contents .modal.active {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
.main-contents .modal-content {
    position: relative;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    max-height: 92vh;
    overflow-y: scroll;
}
.main-contents .modal.active .modal-content {
    animation: fadeInScale 0.4s ease forwards;
}
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
.main-contents .modal .modal_info_floor {
    display: block;
    margin-bottom: 3px;
    padding: 0.5em 0.3em 0.7em;
    width: 90px;
    text-align: center;
    font-size: 1rem;
    line-height: 1;
    color: #fff;
    background: #000;
    font-weight: bold;
}
.main-contents .modal .modal_info_store a {
    font-size: 1.5rem;
    line-height: 1.5;
    border-bottom: 1px solid #000;
}
.main-contents .modal .modal_info_store a:hover {
    color: #bd9545;
    border-bottom: none;
}
.main-contents .img_box {
    overflow: hidden;
}
.main-contents .img_box img {
    transition: .4s all;
}
.main-contents .img_box img:hover {
    transform: scale(1.08,1.08);
    transition: .4 all;
}
/* slider */
.main-contents .slick-slide {
    position: relative;
}
.dots-class button {
    display: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.dots-class {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.dots-class li {
    width: 10px;
    height: 10px;
    background-color: #b3b3b3;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color .5s ease;
}
.dots-class li.slick-active {
    background-color: #666666;
}
.dots-class li:hover {
    background-color: #666666;
}
/* スクロールCSS */
.main-contents .fade-in {
    opacity: 0;
}
.main-contents .fade-in-up {
    transform: translate(0, 80px);
}
.main-contents .fade-in-down {
    transform: translate(0, -80px);
}
.main-contents .fade-in-left {
    transform: translate(-80px, 0);
}
.main-contents .fade-in-right {
    transform: translate(80px, 0);
}
.main-contents .scroll-in {
    animation: fadeIn 0.8s ease;
    animation-fill-mode: forwards;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* mv
 * ************************************************** */
.main-contents #mv {
    width: 100%;
    position: relative;
}
.main-contents #mv .mv_ani01,
.main-contents #mv .mv_ani02,
.main-contents #mv .mv_ani03,
.main-contents #mv .mv_ani04 {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.main-contents #mv .is-mv-active {
  opacity: 1;
}
/* mv_ani01 */
.main-contents #mv .mv_ani01 {
    width: 100%;
    height: 666px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}
.main-contents #mv .mv_ani01 .mv_ani01_logo {
    width: 81px;
    transition: all 1s;
    transform: translate(0,18px);
}
.main-contents #mv .mv_ani01.is-mv-active .mv_ani01_logo {
    transform: translate(0,0);
}
/* mv_ani02
 * ************************************************** */
.main-contents #mv .mv_ani02 {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-left: 25px;
}
.main-contents #mv .mv_ani02 .mv_ani02_inner {
  margin: 60px auto 0;
  width: 878px;
  aspect-ratio: 878 / 540;
  position: relative;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo {
  position: absolute;
  width: 31.891%;
  box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.25);
  opacity: 0;
  will-change: opacity;
  transform: translateZ(0);
}
.main-contents #mv .mv_ani02 .mv_ani02_photo.is-show {
  opacity: 1;
  transition: opacity 100ms linear;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo01 {
  transform: rotate(4deg);
  top: 2.2%;
  left: 33%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo02 {
  transform: rotate(-1.6deg);
  top: 14.444%;
  left: 0%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo03 {
  transform: rotate(7.11deg);
  top: 4.63%;
  left: 55.467%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo04 {
  transform: rotate(-1.6deg);
  top: 22.037%;
  left: 15.945%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo05 {
  transform: rotate(-4.8deg);
  top: 20.370%;
  left: 64.465%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo06 {
  transform: rotate(1.8deg);
  top: 0%;
  left: 10.023%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo07 {
  transform: rotate(1deg);
  top: 24.074%;
  left: 54.442%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo08 {
  transform: rotate(6deg);
  top: 12.593%;
  left: 43.736%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo09 {
  transform: rotate(-1deg);
  top: 13%;
  left: 18%;
}
.main-contents #mv .mv_ani02 .mv_ani02_photo10 {
  transform: rotate(-5deg);
  top: 18.148%;
  left: 33.03%;
}
/* mv_ani03 */
.main-contents #mv .mv_ani03 {
    position: relative;
    z-index: 2;
}
.main-contents #mv .mv_ani03 .mv_ani03_inner {
    margin: 0 auto;
    width: 1218px;
    max-width: 92%;
    position: relative;
}
.main-contents #mv .mv_ani03 .mv_ani03_osampo,
.main-contents #mv .mv_ani03 .mv_ani03_effortless,
.main-contents #mv .mv_ani03 .mv_ani03_moment,
.main-contents #mv .mv_ani03 .mv_ani03_lead {
  opacity: 0;
}
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_osampo,
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_effortless,
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_moment,
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_lead {
  animation: mv_ani03_ani 0.8s both;
}
/* 各delay（mv_ani03がactiveになった瞬間からカウント開始） */
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_osampo { animation-delay: 0.0s; }
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_effortless { animation-delay: 0.6s; }
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_moment { animation-delay: 0.6s; }
.main-contents #mv .mv_ani03.is-mv-active .mv_ani03_lead { animation-delay: 1s; }

@keyframes mv_ani03_ani {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.main-contents #mv .mv_ani03 .mv_ani03_osampo {
    margin: 65px auto 560px;
    width: 340px;
}
.main-contents #mv .mv_ani03 .mv_ani03_effortless {
    width: 29.557%;
    position: absolute;
    top: 260px;
    left: 0;
}
.main-contents #mv .mv_ani03 .mv_ani03_moment {
    width: 29.31%;
    position: absolute;
    top: 260px;
    right: 0;
}
.main-contents #mv .mv_ani03 .mv_ani03_lead {
    text-align: center;
}
.main-contents #mv .mv_ani03 .mv_ani03_lead_logo {
    margin: 25px auto 0;
    width: 60px;
}
/* mv_ani04 */
.main-contents #mv .mv_ani04 {
    width: 100%;
    position: absolute;
    top: 88px;
    left: 0;
}
.main-contents #mv .mv_ani04 .mv_slider_img {
    width: 330px;
    flex: 0 0 auto;
}

/* sec_gnavi
 * ************************************************** */
.main-contents #sec_gnavi {
    padding: 30px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
.main-contents #sec_gnavi ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 118px;
}
.main-contents #sec_gnavi ul li a:hover {
    display: block;
    animation: gnavi_ani 0.4s ease forwards;
}
.main-contents #sec_gnavi ul li a img {
    width: auto;
    height: 30px;
}
@keyframes gnavi_ani {
    0% {
        transform: translate(0,0);
    }
    100% {
        transform: translate(8px,0);
    }
}

/* sec_effortless
 * ************************************************** */
.main-contents #sec_effortless {
    margin: 0 auto;
    padding-top: 100px;
    width: 1122px;
    max-width: 100%;
}
.main-contents #sec_effortless .effortless_ttl {
    margin: 0 auto 72px;
    width: 53.476%;
}
.main-contents #sec_effortless .img_catch_tate {
    width: 18px;
}
.main-contents #sec_effortless .img_catch_yoko img {
    width: auto;
    height: 20px;
}
/* effortless_modal */
.main-contents #sec_effortless .modal-content {
    background: #E5E400;
    background: linear-gradient(45deg,rgba(252, 252, 229, 1) 0%, rgba(251, 253, 252, 1) 100%);
    padding: 70px;
    width: 840px;
    max-width: 90%;
}
.main-contents #sec_effortless .modal-content::after {
    content: '';
    display: block;
    width: 20px;
    height: 354px;
    background: url("../img/effortless_modal_logo.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 30px;
    left: 30px;
}
.main-contents #sec_effortless .modal-content .close-btn {
    width: 17px;
    height: 17px;
    background: url("../img/effortless_modal_close.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 20px;
    right: 20px;
}
.main-contents #sec_effortless .modal_img_area {
    width: 54.645%;
}
.main-contents #sec_effortless .modal_img_area .modal_slider {
    width: 100%;
    margin-bottom: 0;
}
.main-contents #sec_effortless .modal_txt_area {
    width: 39.617%;
}
.main-contents #sec_effortless .modal_txt_area .modal_intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.main-contents #sec_effortless .modal_location {
    margin-top: 60px;
    font-size: 1rem;
    letter-spacing: 0;
    text-align: right;
}
/* effortless_cont01 */
.main-contents #sec_effortless #effortless_cont01 {
    width: 74.51%;
    margin: 0 auto;
}
.main-contents #sec_effortless #effortless_cont01 .img_area {
    width: 59.809%;
}
.main-contents #sec_effortless #effortless_cont01 .img_area .link_check {
    bottom: 20%;
    right: -27%;
}
.main-contents #sec_effortless #effortless_cont01 .img_area .img_catchL {
    top: 7.857%;
    right: -14%;
    width: 268px;
}
.main-contents #sec_effortless #effortless_cont01 .img_area .img_catch {
    top: 19.286%;
    left: 21%;
}
.main-contents #sec_effortless #effortless_cont01 .txt_area {
    width: 35.885%;
}
/* effortless_cont02 */
.main-contents #sec_effortless #effortless_cont02 {
    width: 52.585%;
    margin: -15px 12.745% 110px auto;
    flex-direction: row-reverse;
    z-index: 2;
}
.main-contents #sec_effortless #effortless_cont02 .img_area {
    width: 74%;
}
.main-contents #sec_effortless #effortless_cont02 .img_area .link_check {
    bottom: 22.222%;
    right: -12.727%;
}
.main-contents #sec_effortless #effortless_cont02 .img_area .img_catch {
    top: -14.815%;
    right: 13.636%;
}
.main-contents #sec_effortless #effortless_cont02 .txt_area {
    width: 140px;
    position: absolute;
    bottom: 80px;
    right: 78.814%;
}
.main-contents #sec_effortless #effortless_cont02 .txt_area * {
    text-align: right;
}
/* effortless_cont03 */
.main-contents #sec_effortless .effortless_cont0304_wrap {
    margin: 0 auto 100px;
    width: 800px;
    max-width: 92%;
}
.main-contents #sec_effortless #effortless_cont03 {
    width: 37.5%;
    flex-direction: column-reverse;
    margin: 15px 0 0 6.25%;
}
.main-contents #sec_effortless #effortless_cont03::before {
    content: '';
    display: block;
    background: url("../img/effortless_cont03_bg.webp") no-repeat 0 0 / contain;
    width: 190%;
    height: 433px;
    position: absolute;
    top: -170px;
    left: -25%;
}
.main-contents #sec_effortless #effortless_cont03 .img_area {
    width: 100%;
}
.main-contents #sec_effortless #effortless_cont03 .img_area .link_check {
    top: 4.667%;
    left: -21.667%;
}
.main-contents #sec_effortless #effortless_cont03 .img_area .img_catch {
    top: 20%;
    left: 10%;
}
.main-contents #sec_effortless #effortless_cont03 .txt_area {
    margin-bottom: 30px;
    width: 100%;
}
/* effortless_cont04 */
.main-contents #sec_effortless #effortless_cont04 {
    width: 37.5%;
}
.main-contents #sec_effortless #effortless_cont04::before {
    content: '';
    display: block;
    background: url("../img/effortless_cont04_bg.webp") no-repeat 0 0 / contain;
    width: 95%;
    height: 217px;
    position: absolute;
    bottom: -68px;
    right: -18.333%;
}
.main-contents #sec_effortless #effortless_cont04 .img_area {
    width: 100%;
    margin-bottom: 30px;
}
.main-contents #sec_effortless #effortless_cont04 .img_area .link_check {
    bottom: -6px;
    right: -7.667%;
}
.main-contents #sec_effortless #effortless_cont04 .img_area .img_catch {
    top: 6.333%;
    right: 13.333%;
}
.main-contents #sec_effortless #effortless_cont04 .txt_area {
    width: 100%;
}
/* effortless_cont05 */
.main-contents #sec_effortless .effortless_cont0506_wrap {
    margin: 0 auto 8px;
    width: 910px;
    max-width: 92%;
}
.main-contents #sec_effortless #effortless_cont05 {
    width: 32.967%;
    margin: 15px 0 0 6.25%;
}
.main-contents #sec_effortless #effortless_cont05::before {
    content: '';
    display: block;
    background: url("../img/effortless_cont05_bg.webp") no-repeat 0 0 / contain;
    width: 91.667%;
    height: 297px;
    position: absolute;
    bottom: -110px;
    left: -20%;
}
.main-contents #sec_effortless #effortless_cont05 .img_area {
    width: 100%;
}
.main-contents #sec_effortless #effortless_cont05 .img_area .link_check {
    top: 78.333%;
    right: -180px;
}
.main-contents #sec_effortless #effortless_cont05 .img_area .img_catchL {
    bottom: -16.667%;
    right: 3.333%;
    width: 71.667%;
}
.main-contents #sec_effortless #effortless_cont05 .img_area .img_catch {
    top: 11%;
    right: -16.667%;
}
.main-contents #sec_effortless #effortless_cont05 .txt_area {
    width: 190px;
    position: absolute;
    top: 46.667%;
    right: -210px;
}
/* effortless_cont06 */
.main-contents #sec_effortless #effortless_cont06 {
    width: 32.967%;
    margin: 260px 0 0 6.25%;
}
.main-contents #sec_effortless #effortless_cont06::before {
    content: '';
    display: block;
    background: url("../img/effortless_cont06_bg.webp") no-repeat 0 0 / contain;
    width: 86.667%;
    height: 260px;
    position: absolute;
    top: -56px;
    left: -18.667%;
}
.main-contents #sec_effortless #effortless_cont06 .img_area {
    width: 100%;
}
.main-contents #sec_effortless #effortless_cont06 .img_area .link_check {
    bottom: 4.167%;
    left: -42%;
}
.main-contents #sec_effortless #effortless_cont06 .img_area .img_catch {
    top: 8.333%;
    left: 7.333%;
}
.main-contents #sec_effortless #effortless_cont06 .txt_area {
    width: 190px;
    position: absolute;
    bottom: 13.333%;
    left: -210px;
}
.main-contents #sec_effortless #effortless_cont06 .txt_area * {
    text-align: right;
}
/* effortless_cont07 */
.main-contents #sec_effortless .effortless_cont0708_wrap {
    margin: 0 auto 300px;
    width: 790px;
    max-width: 75%;
}
.main-contents #sec_effortless #effortless_cont07 {
    width: 37.975%;
}
.main-contents #sec_effortless #effortless_cont07::before {
    content: '';
    display: block;
    background: url("../img/effortless_cont07_bg.webp") no-repeat 0 0 / contain;
    width: 296.667%;
    height: 200px;
    position: absolute;
    bottom: 30px;
    left: 22%;
}
.main-contents #sec_effortless #effortless_cont07 .img_area {
    width: 100%;
    margin-bottom: 25px;
}
.main-contents #sec_effortless #effortless_cont07 .img_area .link_check {
    bottom: -265px;
    left: 0;
}
.main-contents #sec_effortless #effortless_cont07 .img_area .img_catch {
    top: 17.5%;
    right: 8.333%;
}
.main-contents #sec_effortless #effortless_cont07 .txt_area {
    width: 100%;
}
/* effortless_cont08 */
.main-contents #sec_effortless #effortless_cont08 {
    width: 37.975%;
    margin: 200px 13.291% 0 0;
}
.main-contents #sec_effortless #effortless_cont08 .img_area {
    width: 100%;
}
.main-contents #sec_effortless #effortless_cont08 .img_area .link_check {
    bottom: 264px;
    right: -61.333%;
}
.main-contents #sec_effortless #effortless_cont08 .img_area .img_catch {
    top: 48.333%;
    right: 6.667%;
}
.main-contents #sec_effortless #effortless_cont08 .txt_area {
    width: 180px;
    position: absolute;
    right: -205px;
    bottom: 325px;
}
/* effortless_bagshoes ------- */
.main-contents #effortless_bagshoes {
    margin: 0 auto;
    width: 968px;
    max-width: 92%;
}
.main-contents #effortless_bagshoes .effortless_bagshoes_ttl {
    margin: 0 auto 65px;
    width: 62.603%;
}
.main-contents #effortless_bagshoes .link_bagshoes_check {
    margin-top: 25px;
    padding: 10px 12px;
    width: 130px;
    border-radius: 30px;
    font-size: 1.3rem;
    line-height: 1;
    font-weight: bold;
    color: #fff;
    border: 1px solid #e4607e;
    background: url("../img/effortless_bagshoes_check_arrow.webp") no-repeat right 9px top 50% / 14px #e4607e;
    cursor: pointer;
    transition: all 0.3s ease;
}
.main-contents #effortless_bagshoes .link_bagshoes_check:hover {
    color: #e4607e;
    background: url("../img/effortless_bagshoes_check_arrow_on.webp") no-repeat right 9px top 50% / 14px #fff;
}
/* effortless_bag_cont01 */
.main-contents #effortless_bagshoes #effortless_bag_cont01 {
    margin: 0 auto 55px;
    width: 85.744%;
    flex-direction: row-reverse;
}
.main-contents #effortless_bagshoes #effortless_bag_cont01 .img_area {
    width: 74.699%;
}
.main-contents #effortless_bagshoes #effortless_bag_cont01 .img_area .effortless_bag_ttl {
    width: 32.258%;
    position: absolute;
    top: 24.194%;
    left: -29.032%;
    z-index: 1;
}
.main-contents #effortless_bagshoes #effortless_bag_cont01 .img_area .img_catch {
    top: -5.161%;
    right: 12.903%;
}
.main-contents #effortless_bagshoes #effortless_bag_cont01 .txt_area {
    width: 19.277%;
    padding-top: 360px;
}
/* effortless_bagshoes_cont_wrap */
.main-contents #effortless_bagshoes .effortless_bagshoes_cont_wrap {
    margin: 0 auto;
    width: 968px;
    max-width: 100%;
}
.main-contents #effortless_bagshoes .effortless_bagshoes_cont_wrap .effortless_bagshoes_cont {
    width: 26.86%;
}
.main-contents #effortless_bagshoes .effortless_bagshoes_cont_wrap .effortless_bagshoes_cont .img_catch {
    position: relative;
    margin: 20px auto 25px;
}
.main-contents #effortless_bagshoes .effortless_bagshoes_cont_wrap .effortless_bagshoes_cont .txt_area {
    width: 80.769%;
    margin: 0 auto;
}
.main-contents #effortless_bagshoes .effortless_bagshoes_cont .img_catch img {
    height: auto;
    width: 100%;
}
.main-contents #effortless_bagshoes .effortless_shoes_cont .img_catch img {
    height: auto;
    width: 210px;
}
/* effortless_shoes */
.main-contents #effortless_bagshoes .effortless_shoes_ttl {
    width: 23.14%;
    margin: 200px auto 40px;
}
.main-contents #effortless_bagshoes .img_catch {
    text-align: center;
}
/* effortless_shoes_cont04 */
.main-contents #effortless_bagshoes #effortless_shoes_cont04 {
    margin: 170px auto 100px;
    width: 650px;
    max-width: 92%;
}
.main-contents #effortless_bagshoes #effortless_shoes_cont04 .img_area {
    width: 70.769%;
}
.main-contents #effortless_bagshoes #effortless_shoes_cont04 .txt_area {
    width: 24.615%;
}
.main-contents #effortless_bagshoes #effortless_shoes_cont04 .img_area .img_catch {
    top: 85.217%;
    right: -13.043%;
}

/* sec_moment
 * ************************************************** */
.main-contents #sec_moment {
    margin: 0 auto;
    width: 1022px;
    max-width: 92%;
}
.main-contents #sec_moment .moment_ttl {
    width: 48.141%;
    margin-bottom: 25px;
}
.main-contents #sec_moment .link_check {
    position: relative;
}
.main-contents #sec_moment .img_catch_tate {
    width: 20px;
}
.main-contents #sec_moment .img_catch_yoko img {
    width: auto;
    height: 20px;
}
/* moment_cont01 */
.main-contents #sec_moment #moment_cont01 {
    margin: 0 auto 110px 9.687%;
    width: 62.622%;
    justify-content: flex-start;
}
.main-contents #sec_moment #moment_cont01 .img_area .img_catch01 {
    top: 43.25%;
    right: 16.406%;
}
.main-contents #sec_moment #moment_cont01 .img_area .img_catch02 {
    bottom: 10%;
    left: 11.875%;
}
.main-contents #sec_moment #moment_cont01 .txt_area {
    padding: 42px 10px 24px 30px;
    width: 266px;
    position: absolute;
    bottom: 9.5%;
    right: -266px;
    background: #f1f4f5;
}
.main-contents #sec_moment #moment_cont01 .link_check {
    margin-top: 40px;
}
/* moment_cont02 */
.main-contents #sec_moment #moment_cont02 {
    margin: 0 auto 90px;
    width: 650px;
    max-width: 100%;
}
.main-contents #sec_moment #moment_cont02 .img_area {
    position: absolute;
    top: -48px;
    right: 4.385%;
    width: 290px;
}
.main-contents #sec_moment #moment_cont02 .img_area .img_catch {
    top: 6.789%;
    left: -51.724%;
}
.main-contents #sec_moment #moment_cont02 .txt_area {
    width: 100%;
    height: 354px;
    background: url("../img/moment_cont02_bg.webp") no-repeat 50% 50% / contain;
    padding: 75px 0 0 28px;
}
.main-contents #sec_moment #moment_cont02 .link_check {
    margin-top: 50px;
}
/* moment_cont03 */
.main-contents #sec_moment .moment_cont0304_wrap {
    margin: 0 auto 240px;
    width: 93.346%;
}
.main-contents #sec_moment #moment_cont03 {
    width: 31.447%;
}
.main-contents #sec_moment #moment_cont03 .img_area .img_catch {
    bottom: 2.833%;
    left: 6%;
}
.main-contents #sec_moment #moment_cont03 .txt_area {
    padding: 75px 30px 100px 145px;
    position: absolute;
    top: -6.667%;
    right: -173px;
    background: #f1f4f5;
    z-index: -1;
}
.main-contents #sec_moment #moment_cont03 .link_check {
    position: absolute;
    top: 194px;
    right: -135px;
}
/* moment_cont04 */
.main-contents #sec_moment #moment_cont04 {
    width: 31.447%;
}
.main-contents #sec_moment #moment_cont04 .img_area .img_catch {
    bottom: 12%;
    right: 10%;
}
.main-contents #sec_moment #moment_cont04 .txt_area {
    padding: 35px 60px 100px 20px;
    position: absolute;
    bottom: -8.333%;
    left: -260px;
    background: #f1f4f5;
    z-index: -1;
}
.main-contents #sec_moment #moment_cont04 .txt_area .intro_store,
.main-contents #sec_moment #moment_cont04 .txt_area .intro_item li {
    text-align: right;
}
.main-contents #sec_moment #moment_cont04 .link_check {
    position: absolute;
    bottom: -12px;
    left: -145px;
}
/* moment_modal */
.main-contents #sec_moment .modal-content {
    background: #f1f4f5;
    padding: 60px 80px 80px 60px;
    width: 880px;
    max-width: 90%;
}
.main-contents #sec_moment .modal-content::after {
    content: '';
    display: block;
    width: 68px;
    height: 486px;
    background: url("../img/moment_modal_logo.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: 20px;
    right: 15px;
}
.main-contents #sec_moment .modal-content .close-btn {
    width: 17px;
    height: 17px;
    background: url("../img/effortless_modal_close.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 20px;
    right: 20px;
}
.main-contents #sec_moment .modal_img_area {
    width: 54.645%;
}
.main-contents #sec_moment .modal_img_area .modal_slider {
    width: 100%;
    margin-bottom: 0;
}
.main-contents #sec_moment .modal_txt_area {
    width: 39.617%;
}
.main-contents #sec_moment .modal_txt_area .modal_intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* sec_suit
 * ************************************************** */
.main-contents #sec_suit {
    margin: 0 auto;
    width: 1026px;
    max-width: 92%;
}
.main-contents #sec_suit .suit_main {
    margin-bottom: 80px;
    width: 1526px;
    max-width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.main-contents #sec_suit .suit_main img {
    width: calc(100% * 1 / 3);
}
.main-contents #sec_suit .suit_ttl {
    margin: 0 auto 70px;
    width: 53.411%;
}
.main-contents #sec_suit .link_check {
    margin-top: 25px;
    position: relative;
}
.main-contents #sec_suit .txt_area_oneitem {
    border: 1px solid #000;
    padding: 30px 25px;
    position: relative;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_ttl {
    position: absolute;
    top: -32px;
    left: -16px;
    width: 164px;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont_img {
    width: 59.155%;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont_txt {
    width: 36%;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont {
    align-items: center;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont:not(:last-child) {
    margin-bottom: 20px;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont_txt .oneitem_cont_txt_store {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont_txt .oneitem_cont_txt_item {
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: 0;
}
.main-contents #sec_suit .txt_area_oneitem .oneitem_cont_txt .link_check {
    width: 126px;
    margin-top: 15px;
}
.main-contents #sec_suit .img_catch_tate {
    width: 20px;
}
.main-contents #sec_suit .img_catch_yoko img {
    width: auto;
    height: 20px;
}
/* suit_modal */
.main-contents #sec_suit .modal-content {
    background: #f9f3ef;
    padding: 60px 60px 85px 60px;
    width: 840px;
    max-width: 90%;
}
.main-contents #sec_suit .modal-content::after {
    content: '';
    display: block;
    width: 511px;
    height: 27px;
    background: url("../img/suit_modal_logo.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.main-contents #sec_suit .modal-content .close-btn {
    width: 17px;
    height: 17px;
    background: url("../img/effortless_modal_close.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 20px;
    right: 20px;
}
.main-contents #sec_suit .modal_img_area {
    width: 54.645%;
}
.main-contents #sec_suit .modal_img_area .modal_slider {
    width: 100%;
    margin-bottom: 0;
}
.main-contents #sec_suit .modal_txt_area {
    width: 39.617%;
}
.main-contents #sec_suit .modal_txt_area .modal_intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}
.main-contents #sec_suit .modal_txt_area .modal_oneitem_ttl {
    width: 130px;
    margin-bottom: 10px;
}
.main-contents #sec_suit .modal_txt_area .modal_oneitem_catch {
    font-weight: 700;
    margin-bottom: 3px;
    letter-spacing: 0.05em;
}
/* suit_cont01 */
.main-contents #sec_suit #suit_cont01 {
    margin: 0 auto 100px;
    width: 81.384%;
    align-items: flex-end;
}
.main-contents #sec_suit #suit_cont01 .img_area {
    width: 46.108%;
}
.main-contents #sec_suit #suit_cont01 .img_area .img_catch {
    top: 16.286%;
    right: 20.779%;
}
.main-contents #sec_suit #suit_cont01 .txt_area {
    width: 49.102%;
}
.main-contents #sec_suit #suit_cont01 .txt_area_oneitem {
    margin-top: 80px;
}
/* suit_cont02 */
.main-contents #sec_suit #suit_cont02 {
    margin: 0 auto 120px 0;
    width: 80.312%;
    flex-direction: row-reverse;
    align-items: center;
}
.main-contents #sec_suit #suit_cont02 .img_area {
    width: 46.723%;
}
.main-contents #sec_suit #suit_cont02 .img_area .img_catch {
    bottom: 16%;
    right: 13.506%;
}
.main-contents #sec_suit #suit_cont02 .txt_area {
    width: 47.33%;
}
.main-contents #sec_suit #suit_cont02 .txt_area .txt_area_intro {
    position: absolute;
    top: 15%;
    right: -210px;
    width: 170px;
}
.main-contents #sec_suit #suit_cont02 .txt_area_oneitem .oneitem_cont_img {
    width: 61.5%;
}
.main-contents #sec_suit #suit_cont02 .txt_area_oneitem .oneitem_cont_txt {
    width: 34%;
}
/* suit_cont03 */
.main-contents #sec_suit #suit_cont03 {
    margin: 0 auto 120px;
    width: 81.871%;
}
.main-contents #sec_suit #suit_cont03 .img_area {
    width: 45.188%;
}
.main-contents #sec_suit #suit_cont03 .img_area .img_catch {
    top: 12.857%;
    right: 16.623%;
}
.main-contents #sec_suit #suit_cont03 .txt_area {
    padding-top: 10px;
    width: 50.469%;
}
.main-contents #sec_suit #suit_cont03 .txt_area_oneitem {
    margin-top: 65px;
}
.main-contents #sec_suit #suit_cont03 .txt_area_oneitem .oneitem_cont_img {
    width: 56%;
}
.main-contents #sec_suit #suit_cont03 .txt_area_oneitem .oneitem_cont_txt {
    width: 39%;
}

/* sec_true
 * ************************************************** */
.main-contents #sec_true {
    margin: 0 auto;
    padding-top: 60px;
    width: 1024px;
    max-width: 92%;
}
.main-contents #sec_true .true_ttl {
    margin-left: 3.613%;
    width: 37.5%;
    z-index: 2;
    position: relative;
}
.main-contents #sec_true .link_check {
    width: 235px;
}
.main-contents #sec_true .txt_area_intro {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-contents #sec_true .txt_area_intro li {
    margin-top: 16px;
}
.main-contents #sec_true .txt_area_intro li .intro_inner {
    border-bottom: 1px solid #000;
    padding-bottom: 0.3em;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: fit-content;
}
.main-contents #sec_true .txt_area_intro li.intro_shop {
    margin-right: 30px;
}
.main-contents #sec_true .txt_area_intro li.intro_price {
    width: 100%;
}
.main-contents #sec_true .txt_area_intro li .intro_ttl {
    font-weight: 500;
    font-size: 1.1rem;
    margin-right: 12px;
    line-height: 1.5;
    letter-spacing: 0;
}
.main-contents #sec_true .txt_area_intro li .intro_txt {
    font-size: 1.2rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
}
.main-contents #sec_true .txt_area_intro li.intro_shop .intro_txt {
    font-weight: 600;
}
.main-contents #sec_true .txt_area .link_check {
    position: relative;
    margin-top: 26px;
}
/* true_modal */
.main-contents #sec_true .modal-content {
    background: rgba(255,255,255,0.9);
    padding: 48px 48px 64px;
    width: 780px;
    max-width: 90%;
    border: 1px solid #ccc;
}
.main-contents #sec_true .modal-content .close-btn {
    width: 120px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: calc(50% - 60px);
    line-height: 1;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    padding: 10px;
}
.main-contents #sec_true .true_modal_cont {
    border: 1px solid #000;
}
.main-contents #sec_true .true_modal_cont .modal_info {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}
.main-contents #sec_true .true_modal_cont .modal_info li {
    padding: 18px 20px 5px 10px;
    border-right: 1px solid #000;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.main-contents #sec_true .true_modal_cont .modal_info li.true_modal_info_item {
    width: 100%;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    border-right: none;
}
.main-contents #sec_true .true_modal_cont .modal_info li .modal_info_ttl {
    font-size: 1.1rem;
    margin-right: 10px;
    line-height: 1.9;
}
.main-contents #sec_true .true_modal_cont .modal_info li .modal_info_txt {
    font-size: 1.4rem;
    margin-right: 10px;
    line-height: 1.4;
    font-weight: 500;
}
.main-contents #sec_true .true_modal_cont .modal_info li.true_modal_info_shop .modal_info_txt a  {
    font-weight: 900;
    text-decoration: underline;
}
.main-contents #sec_true .true_modal_cont .modal_info li.true_modal_info_shop .modal_info_txt .modal_info_txt_note  {
    font-size: 1rem;
    margin-left: 8px;
}
.main-contents #sec_true .true_modal_cont .true_modal_main  {
    padding: 25px;
}
.main-contents #sec_true .true_modal_cont .true_modal_main .modal_img_area {
    width: 34.375%;
}
.main-contents #sec_true .true_modal_cont .true_modal_main .modal_txt_area {
    width: 62.5%;
}
.main-contents #sec_true .modal_img_area {
    width: 34.483%;
}
.main-contents #sec_true .modal_img_area .modal_slider {
    width: 100%;
    margin-bottom: 0;
}
.main-contents #sec_true .modal_txt_area {
    width: 62.696%;
}
.main-contents #sec_true .modal_txt_area .modal_intro {
    font-size: 1.1rem;
}
/* true_cont01 */
.main-contents #sec_true #true_cont01 {
    margin: -185px auto 100px;
    width: 87.891%;
}
.main-contents #sec_true #true_cont01 .img_area .img_catch {
    width: 38px;
    top: 15.222%;
    right: 11.667%;
}
.main-contents #sec_true #true_cont01 .img_area .link_check {
    top: 26.444%;
    left: -2%;
}
/* true_cont02 */
.main-contents #sec_true #true_cont02 {
    margin: 0 auto 85px;
    width: 68.359%;
}
.main-contents #sec_true #true_cont02 .img_area .img_catch {
    width: 16px;
    top: 10.25%;
    right: 7.857%;
}
.main-contents #sec_true #true_cont02 .img_area .link_check {
    top: 58.75%;
    right: -17.857%;
}
/* true_cont03 */
.main-contents #sec_true .true_cont0304_wrap {
    position: relative;
}
.main-contents #sec_true #true_cont03 {
    width: 52.734%;
    z-index: 2;
    margin-bottom: 260px;
}
.main-contents #sec_true #true_cont03 .img_area .img_catch {
    width: 34px;
    top: 15.873%;
    right: 14.444%;
}
/* true_cont04 */
.main-contents #sec_true #true_cont04 {
    width: 52.734%;
    position: absolute;
    top: 200px;
    right: 0;
}
.main-contents #sec_true #true_cont04 .img_area .img_catch {
    width: 178px;
    top: 11.905%;
    left: 15.926%;
}
.main-contents #sec_true #true_cont04 .link_check {
    margin: 0 0 0 auto;
}
/* true_cont05 */
.main-contents #sec_true #true_cont05 {
    margin: 0 auto 160px;
    width: 68.359%;
}
.main-contents #sec_true #true_cont05 .img_area .img_catch {
    width: 16px;
    top: 7.111%;
    right: 11.429%;
}
.main-contents #sec_true #true_cont05 .img_area .link_check {
    top: 47.778%;
    right: -17.714%;
}
/* true_cont06 */
.main-contents #sec_true .true_cont0607_wrap {
    position: relative;
}
.main-contents #sec_true #true_cont06 {
    margin: 0 0 200px auto;
    width: 52.734%;
    z-index: 2;
}
.main-contents #sec_true #true_cont06 .img_area .img_catch {
    width: 33px;
    top: 10.053%;
    left: 5.556%;
}
.main-contents #sec_true #true_cont06 .txt_area {
    width: 76.852%;
    margin-left: auto;
}
/* true_cont07 */
.main-contents #sec_true #true_cont07 {
    width: 52.734%;
    position: absolute;
    top: 200px;
    left: 0;
}
.main-contents #sec_true #true_cont07 .img_area .img_catch {
    width: 34px;
    top: 12.169%;
    left: 5.556%;
}
/* true_cont08 */
.main-contents #sec_true #true_cont08 {
    margin-bottom: 100px;
    width: 68.359%;
}
.main-contents #sec_true #true_cont08 .img_area .img_catch {
    width: 16px;
    top: 28.889%;
    right: 11.857%;
}
/* true_cont09 */
.main-contents #sec_true #true_cont09 {
    margin: 0 0 100px auto;
    width: 68.359%;
}
.main-contents #sec_true #true_cont09 .img_area .img_catch {
    width: 16px;
    top: 12.857%;
    left: 8.857%;
}
/* true_cont10 */
.main-contents #sec_true .true_cont1011_wrap {
    position: relative;
}
.main-contents #sec_true #true_cont10 {
    margin-bottom: 280px;
    width: 52.734%;
}
.main-contents #sec_true #true_cont10 .img_area .img_catch {
    width: 34px;
    top: 11.64%;
    right: 25.556%;
}
/* true_cont11 */
.main-contents #sec_true #true_cont11 {
    width: 52.734%;
    position: absolute;
    top: 200px;
    right: 0;
}
.main-contents #sec_true #true_cont11 .img_area .img_catch {
    width: 34px;
    top: 11.111%;
    right: 7.407%;
}
/* true_cont12 */
.main-contents #sec_true .true_cont1213_wrap {
    position: relative;
}
.main-contents #sec_true #true_cont12 {
    margin-bottom: 280px;
    width: 52.734%;
}
.main-contents #sec_true #true_cont12 .img_area .img_catch {
    width: 161px;
    top: 9.524%;
    right: 8.889%;
}
.main-contents #sec_true #true_cont12 .txt_area {
    width: 84%;
}
/* true_cont13 */
.main-contents #sec_true #true_cont13 {
    width: 52.734%;
    position: absolute;
    top: 200px;
    right: 0;
}
.main-contents #sec_true #true_cont13 .img_area .img_catch {
    width: 178px;
    bottom: 10%;
    left: 8.333%;
}
/* true_cont14 */
.main-contents #sec_true #true_cont14 {
    margin: 0 auto 200px;
    width: 68.359%;
}
.main-contents #sec_true #true_cont14 .img_area .img_catch {
    width: 17px;
    top: 32.558%;
    left: 6%;
}
.main-contents #sec_true #true_cont14 .img_area .link_check {
    bottom: 1.163%;
    right: -15.714%;
}
/* true_cont15 */
.main-contents #sec_true #true_cont15 {
    margin: 0 0 120px auto;
    width: 68.359%;
}
.main-contents #sec_true #true_cont15 .img_area .img_catch {
    width: 16px;
    top: 9.25%;
    left: 8.571%;
}
.main-contents #sec_true #true_cont15 .img_area .link_check {
    top: 54%;
    left: -18.286%;
}

/* sec_brand
 * ************************************************** */
.main-contents #sec_brand {
    margin: 0 auto 150px;
    width: 1024px;
    max-width: 100%;
    border-bottom: double 4px #000;
    padding-bottom: 40px;
}
.main-contents #sec_brand .brand_ttl {
    margin-bottom: 46px;
}
.main-contents #sec_brand .brand_cont {
    padding: 0 8.984%;
}
.main-contents #sec_brand .brand_cont .brand_name {
    margin-bottom: 30px;
    width: 57.738%;
}
.main-contents #sec_brand .brand_cont .img_catch {
    position: absolute;
    bottom: 2.759%;
    left: 1.905%;
    width: 21px;
}
.main-contents #sec_brand .brand_cont .txt_area .txt_area_intro {
    font-size: 1.2rem;
    margin: 12px 0 40px;
    letter-spacing: 0.03em;
    line-height: 1.6;
}
.main-contents #sec_brand .brand_cont .txt_area .link_check {
    width: 235px;
    position: relative;
}
/* brand_modal */
.main-contents .brand_modal .modal-content {
    border: 1px solid #cccccc;
    background: rgba(255,255,255,0.9);
    padding: 50px 70px;
    width: 780px;
    max-width: 90%;
}
.main-contents .brand_modal .modal-content .close-btn {
    width: 17px;
    height: 17px;
    background: url("../img/effortless_modal_close.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 20px;
    right: 20px;
}
.main-contents .brand_modal .modal-content .brand_modal_ttl {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 20px;
}
.main-contents .brand_modal .modal-content .modal_img_area {
    width: 400px;
    max-width: 100%;
    margin: 0 auto 25px;
}
.main-contents .brand_modal .modal_txt_area .modal_intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* sec_gourmet
 * ************************************************** */
.main-contents #sec_gourmet {
    margin: 0 auto 95px;
    padding: 95px 0 130px;
    width: 1300px;
    max-width: 100%;
    border-top: 3px solid #231815;
    border-bottom: 1px solid #231815;
}
.main-contents #sec_gourmet::before {
    display: block;
    content: '';
    width: 100%;
    height: 1px;
    background: #231815;
    position: absolute;
    top: 8px;
    left: 0;
}
.main-contents #sec_gourmet .gourmet_cont {
    margin: 0 auto;
    width: 1024px;
    max-width: 92%;
}
.main-contents #sec_gourmet .gourmet_ttl {
    margin: 0 auto 60px;
    width: 47.363%;
}
.main-contents #sec_gourmet .gourmet_name {
    position: absolute;
}
.main-contents #sec_gourmet .link_check {
    width: 143px;
}
/* gourmet_modal */
.main-contents #sec_gourmet .modal-content {
    border: 1px solid #cccccc;
    background: url("../img/gourmet_modal_bg.webp") repeat 0 0 / 2px #fff;
    padding: 50px 70px;
    width: 560px;
    max-width: 90%;
}
.main-contents #sec_gourmet .modal-content .close-btn {
    width: 17px;
    height: 17px;
    background: url("../img/effortless_modal_close.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 20px;
    right: 20px;
}
.main-contents #sec_gourmet .modal-content .modal_img_area {
    margin-bottom: 15px;
}
.main-contents #sec_gourmet .modal_txt_area .modal_intro {
    margin-bottom: 30px;
    font-size: 1.1rem;
}
/* gourmet_cont01 */
.main-contents #sec_gourmet #gourmet_cont01 {
    margin: 0 auto 145px;
    width: 68.359%;
}
.main-contents #sec_gourmet #gourmet_cont01::before {
    display: block;
    content: '';
    width: 156px;
    height: 158px;
    background: url("../img/gourmet_deco01.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: -182px;
    left: -50px;
}
.main-contents #sec_gourmet #gourmet_cont01::after {
    display: block;
    content: '';
    width: 183px;
    height: 119px;
    background: url("../img/gourmet_deco02.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: -113px;
    right: -156px;
}
.main-contents #sec_gourmet #gourmet_cont01 .gourmet_name {
    width: 135px;
    bottom: -58px;
    left: -3.6%;
}
.main-contents #sec_gourmet #gourmet_cont01 .img_catch {
    width: 37px;
    bottom: 12.5%;
    right: 6%;
}
.main-contents #sec_gourmet #gourmet_cont01 .link_check {
    bottom: -7.5%;
    right: -1.857%;
}
.main-contents #sec_gourmet #modal-48 .modal-content::before {
    display: block;
    content: '';
    width: 103px;
    height: 90px;
    background: url("../img/gourmet_deco02.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: 40px;
    right: 40px;
}
/* gourmet_cont02 */
.main-contents #sec_gourmet #gourmet_cont02 {
    margin-left: 6.152%;
    width: 44.434%;
}
.main-contents #sec_gourmet #gourmet_cont02 .gourmet_name {
    width: 215px;
    bottom: -66px;
    left: -6.593%;
}
.main-contents #sec_gourmet #gourmet_cont02 .img_catch {
    width: 16px;
    bottom: 18.444%;
    left: -5.714%;
}
.main-contents #sec_gourmet #gourmet_cont02 .link_check {
    bottom: -7.111%;
    right: 8.791%;
}
.main-contents #sec_gourmet #modal-49 .modal-content::before {
    display: block;
    content: '';
    width: 122px;
    height: 123px;
    background: url("../img/gourmet_deco01.webp") no-repeat 0 0 / contain;
    position: absolute;
    top: 260px;
    right: 40px;
}
.main-contents #sec_gourmet #modal-49 .modal-content .modal_img_area {
    margin: 0 auto 30px;
    width: 80.476%;
}
/* gourmet_cont03 */
.main-contents #sec_gourmet #gourmet_cont03 {
    margin-top: 178px;
    width: 39.063%;
}
.main-contents #sec_gourmet #gourmet_cont03::before {
    display: block;
    content: '';
    width: 239px;
    height: 26px;
    background: url("../img/gourmet_deco03.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: 38px;
    left: -100%;
}
.main-contents #sec_gourmet #gourmet_cont03 .gourmet_name {
    width: 117px;
    bottom: -44px;
    left: -8.5%;
}
.main-contents #sec_gourmet #gourmet_cont03 .img_catch {
    width: 15px;
    top: 23.667%;
    right: 4.25%;
}
.main-contents #sec_gourmet #gourmet_cont03 .link_check {
    bottom: -9.667%;
    right: 10.5%;
}
.main-contents #sec_gourmet #modal-50 .modal-content::before {
    display: block;
    content: '';
    width: 179px;
    height: 20px;
    background: url("../img/gourmet_deco03.webp") no-repeat 0 0 / contain;
    position: absolute;
    bottom: 48px;
    right: 55px;
}
.main-contents #sec_gourmet #modal-50 .modal-content .modal_img_area {
    margin: 0 auto;
    width: 71.429%;
}

/* sec_information
 * ************************************************** */
.main-contents #sec_information {
    margin: 0 auto;
    width: 1024px;
    max-width: 92%;
    padding-bottom: 100px;
}
.main-contents #sec_information .information_ttl {
    margin: 0 auto 90px;
    width: 44.922%;
}
.main-contents #sec_information .information_list {
    margin: 0 auto;
    width: 940px;
    max-width: 100%;
}
.main-contents #sec_information .information_list .information_cont {
    margin-bottom: 120px;
    width: 42.553%;
    position: relative;
}
.main-contents #sec_information .information_list .information_cont:nth-child(odd)::after {
    content: '';
    display: block;
    width: 1px;
    height: calc( 100% - 30px);
    border-right: 1px dotted #231815;
    position: absolute;
    bottom: 0;
    right: -17.5%;
}
.main-contents #sec_information .information_list #information_cont02::after {
    content: '';
    display: block;
    width: 940px;
    height: 1px;
    border-bottom: 1px dotted #231815;
    position: absolute;
    bottom: -70px;
    right: 0;
}
.main-contents #sec_information .information_list .information_cont .information_cont_ttl {
    margin: 0 auto 20px;
    width: 70%;
}
.main-contents #sec_information .information_list .information_cont .cont_img {
    margin: 0 auto 30px;
    width: 70%;
}
.main-contents #sec_information .information_list .information_cont .floor_wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    margin-bottom: 10px;
}
.main-contents #sec_information .information_list .information_cont .floor_wrap .information_floor {
    margin-right: 15px;
    padding: 6px 0;
    width: 90px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
    border-top: 1px solid #231815;
    border-bottom: 1px solid #231815;
}
.main-contents #sec_information .information_list .information_cont .floor_wrap .information_open {
    padding: 7px 20px 5px;
    width: 170px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    background: #a0141a;
    letter-spacing: 0.03em;
}
.main-contents #sec_information .information_list .information_cont .information_name {
    font-size: 1.4rem;
    text-decoration: underline;
    margin-bottom: 6px;
}
.main-contents #sec_information .information_list .information_cont .information_intro {
    font-size: 1.1rem;
}
.main-contents #sec_information .information_bnr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 110px;
}
.main-contents #sec_information .information_bnr a {
    display: block;
    width: 48.828%;
}
.main-contents #sec_information .information_bnr .bnr_campaign {
    width: 78.125%;
    margin-bottom: 70px;
}
.main-contents #sec_information .information_bnr .bnr_newmood {
    margin-right: 2.344%;
}

/* notes
 * ************************************************** */
.main-contents .notes .notes_inner p {
    color: #666666;
    font-size: 1.2rem;
}


@media screen and (max-width: 1050px) {
    .main-contents #sec_true #true_cont05 .img_area .img_catch {
        top: 40px;
    }
    .main-contents #sec_true #true_cont05 .img_area .link_check {
        top: auto;
        bottom: 40px;
    }
    .main-contents #sec_true #true_cont15 .img_area .img_catch {
        top: 40px;
    }
    .main-contents #sec_true #true_cont15 .img_area .link_check {
        top: 410px;
    }
}
@media screen and (max-width: 1023px) {
    .main-contents #sec_moment #moment_cont04 .txt_area {
        padding: 25px 60px 100px 15px;
        bottom: -28.333%;
        left: -250px;
    }
    .main-contents #sec_suit #suit_cont02 .txt_area .txt_area_intro {
        right: -190px;
    }
    .main-contents #sec_true #true_cont01 {
        margin-top: -160px;
    }
    .main-contents #sec_true #true_cont01 .img_area .link_check {
        top: 30.444%;
    }
    .main-contents #sec_true #true_cont01 .img_area .img_catch {
        top: 12.222%;
        right: 10%;
    }
    .main-contents #sec_moment #moment_cont04 .link_check {
        bottom: -20%;
    }
    .main-contents #sec_true #true_cont02 .img_area .img_catch {
        top: 40px;
    }
    .main-contents #sec_true #true_cont02 .img_area .link_check {
        top: 410px;
    }
    .main-contents #sec_true #true_cont04 .link_check {
        margin: 30px 0 0 auto;
    }
    .main-contents #sec_true #true_cont15 .img_area .link_check {
        top: auto;
        bottom: 30px;
    }
    .main-contents #sec_gourmet #gourmet_cont02 .link_check {
        bottom: -13%;
    }
    .main-contents #sec_information .information_list #information_cont02::after {
        width: 92vw;
        right: 0;
    }
    
}
@media screen and (max-width: 900px) {
    .main-contents .link_check {
        transform: scale(0.9);
        transform-origin: left;
    }
    .main-contents .img_catch {
        transform: scale(0.95);
    }
    .main-contents #sec_effortless #effortless_cont05 .img_area .img_catch {
        top: 6%;
    }
    .main-contents #sec_effortless #effortless_cont08 {
        margin-right: 16%;
    }
    .main-contents #effortless_bagshoes #effortless_bag_cont01 .txt_area {
        padding-top: 280px;
    }
    .main-contents #sec_true #true_cont10 .txt_area {
        width: 86%;
    }
    .main-contents #sec_true #true_cont15 {
        margin: 0 0 150px auto;
    }
    .main-contents #sec_gourmet #gourmet_cont01::before {
        left: -20%;
    }
}
































