/* Common */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
*,
html,
body {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

a {
    text-decoration: none;
}

.p-jwo {
    font-family: "Noto Serif JP", serif;
    line-height: 1.8;
    overflow: hidden;
}
.p-jwo ul li, .p-jwo ol li {
    list-style-type: none;
}

.wcm {
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .wcm {
        width: 100%;
        padding: 0 15px;
    }
}

.c-objImage {
    position: relative;
}
.c-objImage:before {
    content: "";
    display: block;
    padding-top: 66.25%;
}
.c-objImage img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
}

.c-btn01 {
    display: block;
    max-width: 280px;
    width: 100%;
    text-align: center;
    color: #775B14;
    border: 1px solid #775B14;
    font-weight: 300;
    padding: 20px 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 0.03em;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .c-btn01 {
        padding: 15px 10px;
        font-size: 14px;
    }
}
.c-btn01:after {
    content: "";
    width: 30px;
    height: 1px;
    background: #775B14;
    position: absolute;
    top: 50%;
    right: -13px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.c-btn01:hover {
    background: #E8E0CA;
}
.c-btn01:hover:after {
    right: -18px;
}

.c-ttl01 {
    text-align: center;
    letter-spacing: 0.15em;
}
.c-ttl01__ja {
    color: #D35D62;
    font-size: 55px;
    line-height: 1;
    margin-bottom: 25px;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .c-ttl01__ja {
        font-size: 35px;
        margin-bottom: 10px;
    }
}
.c-ttl01__en {
    font-size: 20px;
    color: rgba(200, 22, 29, 0.6);
    text-transform: uppercase;
}
@media screen and (max-width: 767px) {
    .c-ttl01__en {
        font-size: 12px;
    }
}
.c-ttl01__en span {
    padding: 0 35px;
    position: relative;
}
.c-ttl01__en span:before {
    content: "";
    width: 21px;
    height: 1px;
    background: rgba(200, 22, 29, 0.6);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
.c-ttl01__en span:after {
    content: "";
    width: 21px;
    height: 1px;
    background: rgba(200, 22, 29, 0.6);
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.c-ttl02 {
    text-align: center;
    font-size: 26px;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #F5E6C0;
    padding-bottom: 19px;
    margin-bottom: 25px;
    position: relative;
}
.c-ttl02:after {
    content: "";
    width: 38px;
    height: 1px;
    background: #F5E6C0;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.c-txt-base {
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 500;
    line-height: 1.78;
}
@media screen and (max-width: 767px) {
    .c-txt-base {
        font-size: 15px;
        line-height: 1.73;
    }
}

.only-pc {
    display: block;
}
@media screen and (max-width: 767px) {
    .only-pc {
        display: none;
    }
}

.only-sp {
    display: none;
}
@media screen and (max-width: 767px) {
    .only-sp {
        display: block;
    }
}

/* Header
========================================================*/
.l-header {
    background: #C8161D;
    color: #fff;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9995;
}
@media screen and (max-width: 767px) {
    .l-header {
        height: 70px;
    }
}
.l-header__inner {
    max-width: 1286px;
    width: 95%;
    margin: 0 auto;
    padding: 4px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .l-header__inner {
        padding: 20px 0;
    }
}
.l-header__logo {
    width: 176px;
    margin: 0 !important;
}
@media screen and (max-width: 767px) {
    .l-header__logo {
        width: 178px;
    }
}
.l-header__logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.l-header__toggle {
    display: none;
}
@media screen and (max-width: 767px) {
    .l-header__toggle {
        position: absolute;
        z-index: 1001;
        top: 25px;
        right: 15px;
        display: block;
        -webkit-box-sizing: content-box;
                box-sizing: content-box;
        width: 33px;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        border: 0;
        outline: 0;
    }
}
.l-header__toggle .header-toggle-bar {
    background-color: #fff;
    display: block;
    width: 100%;
    height: 1px;
    border: 0;
    -webkit-transition: background-color 0.35s ease, transform 0.35s ease;
    -webkit-transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
    transition: background-color 0.35s ease, -webkit-transform 0.35s ease;
    transition: background-color 0.35s ease, transform 0.35s ease;
    transition: background-color 0.35s ease, transform 0.35s ease, -webkit-transform 0.35s ease;
}
.l-header__toggle .header-toggle-bar + .header-toggle-bar {
    margin-top: 8px;
}
.l-header__toggle.toggle_active .header-toggle-bar {
    background-color: #C8161D;
}
.l-header__toggle.toggle_active .top {
    -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
    transform: translateY(11px) translateX(0) rotate(45deg);
}
.l-header__toggle.toggle_active .middle {
    opacity: 0;
}
.l-header__toggle.toggle_active .bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    margin-left: 0;
}
.l-header__list {
    width: calc(100% - 176px);
    padding-left: 20px;
}
@media screen and (max-width: 767px) {
    .l-header__list {
        padding-left: 0;
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 70%;
        overflow: auto;
        background-color: #fff;
        z-index: 1000;
        -webkit-transform: none;
        transform: none;
        padding: 60px 20px;
    }
}
.l-header__list.is_open {
    display: block;
}
.l-header__list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
@media screen and (max-width: 767px) {
    .l-header__list ul {
        display: block;
    }
}
.l-header__list ul li {
    margin: 0 20px;
}
@media screen and (max-width: 1100px) {
    .l-header__list ul li {
        margin: 0 10px;
    }
}
@media screen and (max-width: 767px) {
    .l-header__list ul li {
        margin: 0;
        border-bottom: 1px dashed #FFD0D0;
    }
}
.l-header__list ul li a {
    padding: 11px 0;
    display: block;
    color: #fff;
    letter-spacing: 0.05em;
    font-weight: 500;
}
@media screen and (max-width: 1100px) {
    .l-header__list ul li a {
        font-size: 13px;
        padding: 13px 0;
    }
}
@media screen and (max-width: 850px) {
    .l-header__list ul li a {
        font-size: 11px;
        padding: 15px 0;
    }
}
@media screen and (max-width: 767px) {
    .l-header__list ul li a {
        color: #C8161D;
        font-size: 16px;
    }
}
.l-header__list ul li a:hover {
    opacity: 0.65;
}

/* Content
========================================================*/
.p-jwo #container {
    padding-top: 60px;
}
@media screen and (max-width: 767px) {
    .p-jwo #container {
        padding-top: 70px;
    }
}

/* Visual */
.p-jwoVisual {
    min-height: 709px;
    background: url("../images/jwo2026/mv.jpg") no-repeat center;
    background-size: cover;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual {
        height: 100vh;
        min-height: 750px;
        background: url("../images/jwo2026/mv-sp.jpg") no-repeat center;
        background-size: cover;
    }
}
.p-jwoVisual:after {
    content: "";
    width: 60%;
    height: 520px;
    background: url("../images/jwo2026/mv-rose.png") no-repeat center;
    background-size: contain;
    position: absolute;
    left: -120px;
    bottom: -220px;
    z-index: 99
}
@media screen and (max-width: 767px) {
    .p-jwoVisual:after {
       height: 350px;
        width: 100%;
        left: -35%;
        bottom: 13%;
        z-index: 0;
    }
}
.p-jwoVisual:before {
    content: "";
    width: 100%;
    height: 45px;
    background: url("../images/jwo2026/mv-border.jpg") no-repeat bottom center;
    background-size: cover;
    position: absolute;
    left: 0;
    bottom: -45px;
    z-index: 98;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual:before {
        height: 24px;
        bottom: -12px;
    }
}
.p-jwoVisual__cont {
    padding-top: 74px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-shadow: 0 0 9px rgba(255, 255, 255, 0.45);
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__cont {
        padding-top: 0;
    }
}
.p-jwoVisual__cont .wcm {
    max-width: 1140px;
    padding-left: 240px;
    position: relative;
    z-index: 9;
}
@media screen and (max-width: 950px) {
    .p-jwoVisual__cont .wcm {
        padding-left: 170px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__cont .wcm {
        padding: 90px 15px 0;
        max-width: 100%;
    }
}
.p-jwoVisual__lbl {
    position: absolute;
    width: 207px;
    top: 0;
    left: 6px;
}
@media screen and (max-width: 950px) {
    .p-jwoVisual__lbl {
        width: 17.7%;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__lbl {
        width: 138px;
        height: 143px;
        top: 13px;
        left: unset;
        right: 10%;
    }
}
.p-jwoVisual__lbl img {
    display: block;
    width: 100%;
}
.p-jwoVisual__subtxt {
    font-size: 30px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__subtxt {
        font-size: 28px;
    }
}
.p-jwoVisual__subtxt strong {
    font-size: 36px;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__subtxt strong {
        font-size: 28px;
    }
}
.p-jwoVisual__head {
    font-size: 89px;
    margin-top: -19px;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
@media screen and (max-width: 1268px) {
    .p-jwoVisual__head {
        font-size: 6.5vw;
        margin-top: 0;
    }
}
@media screen and (max-width: 950px) {
    .p-jwoVisual__head {
        white-space: unset;
        line-height: 1.3;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__head {
        font-size: 47px;
        margin-top: 5px;
    }
}
.p-jwoVisual__head strong {
    font-size: 58px;
    line-height: 1;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__head strong {
        font-size: 32px;
        display: block;
        line-height: 1.625;
    }
}
.p-jwoVisual__subhead {
    font-size: 82px;
    letter-spacing: 0.07em;
    margin: -10px 0 7px;
}
@media screen and (max-width: 1268px) {
    .p-jwoVisual__subhead {
        font-size: 6vw;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__subhead {
        font-size: 47px;
        margin-bottom: 0;
    }
}
.p-jwoVisual__date {
    max-width: 421px;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__date {
        max-width: 250px;
    }
}
.p-jwoVisual__date img {
    display: block;
    width: 100%;
}
.p-jwoVisual__txt {
    max-width: 421px;
    margin-top: 9px;
    width: 100%;
    color: #FFD0D0;
    text-align: center;
    font-size: 20px;
    letter-spacing: 0.05em;
    font-weight: 500;
    padding: 3px 0;
    border-top: 1px solid #FFD0D0;
    border-bottom: 1px solid #FFD0D0;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__txt {
        max-width: 250px;
        font-size: 13px;
    }
}
.p-jwoVisual__image {
    max-width: 700px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: -3px;
}
@media screen and (max-width: 767px) {
    .p-jwoVisual__image {
    	z-index: 9;
    }
}
.p-jwoVisual__image img {
    width: 100%;
    height: auto; /* ←これで縦に縮めないようにする */
    object-fit: contain; /* ←トリミング防止 */
    display: block;
  }

@media screen and (max-width: 767px) {
    .p-jwoVisual__image img {
    	max-width: auto;
        margin-left: auto;
    }
}
.p-jwoVisual__image span{
	background: rgba(255,255,255,0.8);
	padding: 5px 10px;
	font-size: 12px;
	line-height: 1;
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 2;
}
@media screen and (max-width: 767px) {
	.p-jwoVisual__image span{
		font-size: 10px;
		bottom: 20px;
	}
}
/* Intro */
.p-jwoIntro {
    margin: 150px 0 148px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro {
        margin: 60px 0 55px;
    }
}
.p-jwoIntro__cont {
    padding-top: 173px;
    position: relative;
    z-index: 9;
}
.p-jwoIntro__cont h3 {
    font-size: 30px;
    line-height: 1.67;
    letter-spacing: 0.05em;
    color: #C8161D;
    font-weight: 600;
    padding-bottom: 22px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__cont h3 {
        font-size: 24px;
        letter-spacing: 0;
        line-height: 1.43;
        background: #fff;
        width: 100%;
        max-width: 272px;
        padding: 15px 10px;
    }
}
.p-jwoIntro__cont h3:before {
    content: "";
    width: 31px;
    height: 1px;
    background: #C8161D;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__cont h3:before {
        left: 15px;
    }
}
.p-jwoIntro__cont div.text {
    max-width: 466px;
    background: #fff;
    padding: 23px 20px 2vw 0;
    margin-bottom: 48px;
    letter-spacing: 0.03em;
    line-height: 2.25;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__cont div.text {
        max-width: 100%;
        padding: 25px 0 0 10px;
        font-size: 14px;
        margin-bottom: 40px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__cont .c-btn01 {
        margin-left: 35px;
    }
}
.p-jwoIntro__image {
    width: 55%;
    max-width: 870px;
    position: absolute;
    top: 0;
    right: 75px;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__image {
        width: calc(100% - 70px);
        max-width: 346px;
        right: 0;
    }
}
.p-jwoIntro__image:before {
    content: "";
    width: 556px;
    height: 73px;
    background: url("../images/jwo2026/txt-thanks.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -40px;
    top: -40px;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__image:before {
        width: 282px;
        right: -15px;
    }
}
.p-jwoIntro__image:after {
    content: "";
    width: 370px;
    height: 122px;
    background: url("../images/jwo2026/icon-rose.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -35px;
    bottom: -65px;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .p-jwoIntro__image:after {
        width: 140px;
        height: 45px;
        bottom: -18px;
        right: 10px;
    }
}

/* Summary */
.p-jwoSummary {
    padding: 150px 0 190px;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-jwoSummary {
        padding: 80px 0;
    }
}
.p-jwoSummary:before {
    content: "";
    width: 720px;
    height: 100%;
    background: url("../images/jwo2026/bg-summary-left.png") no-repeat left center;
    background-size: contain;
    position: absolute;
    left: -24%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
    .p-jwoSummary:before {
        left: -44%;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSummary:before {
        background: url("../images/jwo2026/bg-sum-left.png") no-repeat left center;
        background-size: cover;
        width: 100%;
        left: -83%;
        top: 0;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        background-position: right top;
    }
}
.p-jwoSummary:after {
    content: "";
    width: 720px;
    height: 100%;
    background: url("../images/jwo2026/bg-summary-right.png") no-repeat right center;
    background-size: contain;
    position: absolute;
    right: -24%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
    .p-jwoSummary:after {
        right: -44%;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSummary:after {
        width: 100%;
        background: url("../images/jwo2026/bg-sum-right.png") no-repeat right center;
        background-size: cover;
        top: 0;
        -webkit-transform: translateY(0);
                transform: translateY(0);
        right: -83%;
        background-position: top left;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSummary .wcm {
        padding: 0 44px;
    }
}
.p-jwoSummary__cont {
    max-width: 700px;
    width: 100%;
    margin: 81px auto 0;
}
@media screen and (max-width: 767px) {
    .p-jwoSummary__cont {
        max-width: 100%;
        margin-top: 15px;
    }
}
.p-jwoSummary__cont table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .p-jwoSummary__cont table {
        font-size: 15px;
        letter-spacing: 0;
    }
}
.p-jwoSummary__cont table tr {
    background: url("../images/jwo2026/border-summary.png") no-repeat left bottom;
    background-size: contain;
}
.p-jwoSummary__cont table th {
    width: 144px;
    padding: 25px 10px;
    font-weight: 900;
    color: #C8161D;
    vertical-align: top;
    text-align: left;
}
@media screen and (max-width: 767px) {
    .p-jwoSummary__cont table th {
        width: 100%;
        display: block;
        padding: 10px 0 2px;
    }
}
.p-jwoSummary__cont table td {
    width: calc(100% - 116px);
    padding: 25px 0;
    font-weight: 500;
}
@media screen and (max-width: 767px) {
    .p-jwoSummary__cont table td {
        width: 100%;
        display: block;
        padding: 0 0 10px;
    }
}

/* Goods */
.p-jwoGoods {
    margin: 160px 0;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods {
        margin: 60px 0;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoGoods .wcm {
        padding: 0 30px;
    }
}
.p-jwoGoods .c-txt-base {
    text-align: center;
    margin: 45px 0 59px;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods .c-txt-base {
        margin: 15px 0 20px;
        text-align: left;
    }
}
.p-jwoGoods__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__cont {
        display: block;
    }
}
.p-jwoGoods__item {
    width: calc(33.33% - 23.33px);
    margin-bottom: 72px;
    margin-right: 35px;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
}
.p-jwoGoods__item:nth-child(3n) {
    margin-right: 0;
}
.p-jwoGoods__item__image {
    margin-bottom: 8px;
    border-radius: 5px;
    height: 320px;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(237, 234, 225, 0.56);
    box-shadow: 0px 0px 10px 0px rgba(237, 234, 225, 0.56);
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__image {
        height: auto;
    }
}
.p-jwoGoods__item__image img {
    display: block;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__image img {
        width: 80%;
        margin: 0 auto;
    }
}
.p-jwoGoods__item__cont .lbl {
    font-size: 13px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    color: #fff;
    background: #C8161D;
    border-radius: 2px;
    padding: 6px 10px;
}
.p-jwoGoods__item__cont .ttl {
    font-size: 18px;
    font-weight: 900;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__cont .ttl {
        font-size: 17px;
    }
}
/*.p-jwoGoods__item__cont .txt-price {*/
    border-bottom: 1px solid #222222;
    padding-bottom: 7px;
    margin-bottom: 10px;
    font-size: 19px;
    font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__cont .txt-price {
        font-size: 18px;
    }
}
.p-jwoGoods__item__cont .txt-price span {
    font-size: 13px;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__cont .txt-price span {
        font-size: 12px;
    }
}
.p-jwoGoods__item__cont .txt-desc {
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
    .p-jwoGoods__item__cont .txt-desc {
        font-size: 14px;
        color: #4B4B4B;
    }
}
.p-jwoGoods__item__cont .txt-size {
    color: #aaa;
}

/* History */
.p-jwoHistory {
    background: #982F32;
    -webkit-box-shadow: 0px 0px 26px 0px rgba(51, 38, 5, 0.68);
    box-shadow: 0px 0px 26px 0px rgba(51, 38, 5, 0.68);
    padding: 65px 0 150px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory {
        padding: 20px 0 65px;
    }
}
.p-jwoHistory::before {
    content: "";
    width: 100%;
    height: 45px;
    background: url("../images/jwo2026/border-history.png") no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: -30px;
}
.p-jwoHistory .wcm {
    max-width: 1000px;
    position: relative;
    padding-top: 105px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory .wcm {
        padding: 60px 20px 0;
    }
}
.p-jwoHistory .wcm:before {
    content: "";
    width: 36%;
    height: 360px;
    background: url("../images/jwo2026/ribbon01.png") no-repeat center;
    background-size: contain;
    position: absolute;
    left: -180px;
    top: 0;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory .wcm:before {
        width: 94px;
        height: 94px;
        left: 10px;
    }
}
.p-jwoHistory .wcm:after {
    content: "";
    width: 36%;
    height: 360px;
    background: url("../images/jwo2026/ribbon02.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -180px;
    top: 0;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory .wcm:after {
        width: 94px;
        height: 94px;
        right: 10px;
    }
}
.p-jwoHistory .c-ttl01 {
    margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory .c-ttl01 {
        margin-bottom: 55px;
    }
}
.p-jwoHistory .c-ttl01__ja {
    color: #fff;
}
.p-jwoHistory .c-ttl01__en {
    color: rgba(255, 255, 255, 0.6);
}
.p-jwoHistory .c-ttl01__en span:before, .p-jwoHistory .c-ttl01__en span:after {
    background: rgba(255, 255, 255, 0.6);
}
.p-jwoHistory .c-txt-base {
    max-width: 802px;
    width: 100%;
    color: #fff;
    margin: 0 auto 160px;
}
.p-jwoHistory .c-txt-base p + p {
    margin-top: 30px;
}
.p-jwoHistory__mvp {
    max-width: 888px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto 140px;
    background: #fff;
    padding: 48px 45px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(100, 44, 47, 0.7);
    box-shadow: 0px 0px 16px 0px rgba(100, 44, 47, 0.7);
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp {
        max-width: 100%;
        padding: 25px;
        display: block;
        margin-bottom: 50px;
    }
}
.p-jwoHistory__mvp:before {
    content: "";
    width: 34%;
    height: 230px;
    background: url("../images/jwo2026/icon-history-left.png") no-repeat center;
    background-size: contain;
    position: absolute;
    left: -7%;
    top: -17%;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp:before {
        height: 120px;
        width: 149px;
        top: -4%;
        left: -4%;
    }
}
.p-jwoHistory__mvp:after {
    content: "";
    width: 34%;
    height: 230px;
    background: url("../images/jwo2026/icon-history-right.png") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -7%;
    bottom: -16%;
    z-index: 9;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp:after {
        height: 120px;
        width: 149px;
        bottom: -5%;
        right: -4%;
    }
}
.p-jwoHistory__mvp__cont {
    width: 50%;
    padding-right: 40px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__cont {
        width: 100%;
        padding-right: 0;
    }
}
.p-jwoHistory__mvp__cont img {
    max-width: 90px;
    margin: 0 auto 15px;
    display: block;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__cont img {
        width: 64px;
        margin-bottom: 8px;
    }
}
.p-jwoHistory__mvp__ttl {
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #775B14;
    text-align: center;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__ttl {
        font-size: 14px;
    }
}
.p-jwoHistory__mvp__ttl p {
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__ttl p {
        font-size: 16px;
    }
}
.p-jwoHistory__mvp__head {
    font-size: 26px;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__head {
        font-size: 22px;
        margin-bottom: 4px;
    }
}
.p-jwoHistory__mvp__txt {
    letter-spacing: 0.05em;
    line-height: 1.875;
    padding-right: 37px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__txt {
        padding-right: 0;
        font-size: 14px;
    }
}
.p-jwoHistory__mvp__thumb {
    position: relative;
    z-index: 2;
    width: 50%;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__mvp__thumb {
        width: 100%;
        margin-top: 15px;
    }
}
.p-jwoHistory__mvp__thumb .c-objImage:before {
    padding-top: 100%;
}
.p-jwoHistory__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__list {
        display: block;
    }
}
.p-jwoHistory__item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 23.33px);
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px 0px rgb(100, 44, 47);
    box-shadow: 0px 0px 10px 0px rgb(100, 44, 47);
    padding: 25px 30px 30px;
    margin-right: 35px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
    position: relative;
}
.p-jwoHistory__item .inside {
    display: flex;
    flex-direction: column;
    flex: 1;
}
@media screen and (max-width: 1024px) {
    .p-jwoHistory__item {
        padding: 25px 20px 30px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        flex-direction: row;
        padding: 15px 10px 30px;
        margin-bottom: 25px;
        -webkit-box-shadow: 0px 0px 10px 0px rgba(100, 44, 47, 0.7);
        box-shadow: 0px 0px 10px 0px rgba(100, 44, 47, 0.7);
    }
}
.p-jwoHistory__item:after {
    content: "";
    width: 33%;
    height: 103px;
    background: url("../images/jwo2026/ribbon03.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -10%;
    bottom: -7%;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item:after {
        width: 49px;
        height: 49px;
        bottom: -15px;
        right: -10px;
    }
}
.p-jwoHistory__item:nth-child(3n) {
    margin: 0;
}
.p-jwoHistory__item.second .p-jwoHistory__item__head{
	margin-bottom: 26px
}
@media screen and (max-width: 767px) {
	.p-jwoHistory__item.second .p-jwoHistory__item__head{
		margin-bottom: 3px
	}
}
.p-jwoHistory__item-link{
	margin-top: 12px;
}
.p-jwoHistory__mvp__link{
	text-align: right;
	margin-top: 35px;
	padding-right: 37px;
}
@media screen and (max-width: 767px) {
	.p-jwoHistory__item-link{
	margin-top: 0;
		position: absolute;
		left: 48px;
		bottom: 10px;
}
	.p-jwoHistory__mvp__link{
		padding-right: 0;
		margin-top: 15px;
		text-align: center;
	}
}
.p-jwoHistory__item-link a,
.p-jwoHistory__mvp__link a{
	color: #775B14;
	font-size: 14px;
	padding-right: 10px;
	position: relative;
}
@media screen and (max-width: 767px) {
	.p-jwoHistory__item-link a{
		font-size: 12px;
		padding-right: 5px;
	}
}
.p-jwoHistory__item-link a:before,
.p-jwoHistory__mvp__link a:before{
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
	margin-top: -4px;
  width: 6px;
  height: 6px;
  border-left: 1px solid  #775B14;
  border-top: 1px solid  #775B14;
  -moz-transform: rotate(135deg) translateY(-50%);
  -webkit-transform: rotate(135deg) translateY(-50%);
  -ms-transform: rotate(135deg) translateY(-50%);
  transform: rotate(135deg) translateY(-50%);
}
.p-jwoHistory__item-link a:hover,
.p-jwoHistory__mvp__link a:hover{
	opacity: .65
}
.p-jwoHistory__mvp__link.u-pc{
	display: block
}
.p-jwoHistory__mvp__link.u-sp{
	display: none
}
@media screen and (max-width: 767px) {
	.p-jwoHistory__mvp__link.u-pc{
	display: none
}
.p-jwoHistory__mvp__link.u-sp{
	display: block
}
}
.p-jwoHistory__item .lbl {
    max-width: 54px;
    width: 100%;
    display: block;
    margin: 0 auto 5px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item .lbl {
        width: 41px;
    }
}
.p-jwoHistory__item .txt-year {
    font-size: 14px;
    color: #775B14;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item .txt-year {
        font-size: 12px;
    }
}
.p-jwoHistory__item__head {
    flex: 1;
    color: #775B14;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 3px;
}
@media screen and (max-width: 1024px) {
    .p-jwoHistory__item__head {
        font-size: 16px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item__head {
        font-size: 13.5px;
    }
}
.p-jwoHistory__item__ttl {
    font-size: 22px;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item__ttl {
        font-size: 18px;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item .inside {
        width: 52%;
        padding-right: 10px;
    }
}
.p-jwoHistory__item .c-objImage {
    height: 240px;
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item .c-objImage {
        width: 48%;
        height: 100%;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoHistory__item .c-objImage:before {
        padding-top: 100%;
    }
}

/* Course */
.p-jwoCourse {
    margin: 150px 0 80px;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse {
        margin: 90px 0 40px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoCourse .wcm {
        padding: 0 25px;
    }
}
.p-jwoCourse__intro {
    margin: 75px 0 60px;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__intro {
        margin: 30px -25px 40px;
    }
}
.p-jwoCourse__intro .c-objImage {
    height: 480px;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__intro .c-objImage {
        height: 360px;
    }
}
@media screen and (max-width: 460px) {
    .p-jwoCourse__intro .c-objImage {
        height: 180px;
    }
}
.p-jwoCourse__intro p {
    text-align: center;
    margin: 24px auto 0;
    max-width: 830px;
    width: 100%;
    padding: 5px;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 600;
    background: #F2CACB;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__intro p {
        width: unset;
        margin: 15px 25px 0;
        padding: 15px 35px;
        font-size: 16px;
        line-height: 1.43;
        text-align: left;
    }
}
.p-jwoCourse__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.p-jwoCourse__item {
    width: calc(33.33% - 20px);
    margin-right: 30px;
    margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item {
        width: calc(50% - 6px);
        margin: 0 0 30px;
    }
}
@media screen and (min-width: 767px) {
    .p-jwoCourse__item:nth-child(3n) {
        margin-right: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item:nth-child(2n) {
        margin-left: 6px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item:nth-child(2n+1) {
        margin-right: 6px;
    }
}
.p-jwoCourse__item a {
    display: block;
}
.p-jwoCourse__item a:hover .p-jwoCourse__item__link {
    opacity: 0.65;
}
.p-jwoCourse__item a:hover .p-jwoCourse__item__link span:after {
    right: -5px;
}
.p-jwoCourse__item__no {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #C8161D;
    margin-bottom: 15px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__no {
        font-size: 15px;
        margin-bottom: 7px;
    }
}
.p-jwoCourse__item__no:before {
    content: "";
    width: 28%;
    height: 1px;
    background: #C8161D;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__no:before {
        width: 20%;
    }
}
.p-jwoCourse__item__no:after {
    content: "";
    width: 28%;
    height: 1px;
    background: #C8161D;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__no:after {
        width: 20%;
    }
}
.p-jwoCourse__item__thumb {
    margin-bottom: 20px;
    background: #F5F3ED;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__thumb {
        margin-bottom: 15px;
    }
}
.p-jwoCourse__item__thumb .c-objImage {
    height: 472px;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__thumb .c-objImage {
        height: 235px;
    }
}
.p-jwoCourse__item__thumb .c-objImage img {
    -o-object-fit: contain;
       object-fit: contain;
}
.p-jwoCourse__item__txt {
    color: #222;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .p-jwoCourse__item__txt {
        display: none;
    }
}
.p-jwoCourse__item__link {
    text-align: center;
    color: #C8161D;
    font-size: 14px;
    font-weight: 600;
}
.p-jwoCourse__item__link span {
    position: relative;
    padding-right: 15px;
}
.p-jwoCourse__item__link span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 34%;
    width: 6px;
    height: 6px;
    border-left: 1px solid #C8161D;
    border-top: 1px solid #C8161D;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Access */
.p-jwoAccess {
    margin-bottom: 195px;
}
@media screen and (max-width: 767px) {
    .p-jwoAccess {
        margin-bottom: 65px;
    }
}
.p-jwoAccess .c-ttl01 {
    margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
    .p-jwoAccess .c-ttl01 {
        margin-bottom: 15px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoAccess .wcm {
        padding: 0 25px;
        text-align: center;
    }
}
.p-jwoAccess__cont iframe {
    display: block;
    width: 100%;
    height: 480px;
}
@media screen and (max-width: 767px) {
    .p-jwoAccess__cont iframe {
        height: 250px;
    }
}
.p-jwoAccess__cont p {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
    .p-jwoAccess__cont p {
        font-size: 16px;
        margin-top: 15px;
    }
}
.p-jwoAccess__cont .txt-note-access{
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: #909090;
	margin-top: 0;
}
@media screen and (max-width: 767px) {
	.p-jwoAccess__cont .txt-note-access{
		font-size: 10px;
	}
}
.p-jwoAccess__cont p a {
    color: #222222;
}
.p-jwoAccess__cont .c-btn01 {
    margin: 30px auto 0;
}
@media screen and (max-width: 767px) {
    .p-jwoAccess__cont .c-btn01 {
        margin-top: 20px;
    }
}

/* Sponsor */
.p-jwoSponsor {
    padding-top: 110px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor {
        padding-top: 80px;
    }
}
.p-jwoSponsor:before {
    content: "";
    width: 100%;
    height: 45px;
    background: url("../images/jwo2026/border-sponsor.png") no-repeat bottom center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: -25px;
    z-index: 98;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor:before {
        height: 24px;
        top: -12px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor .wcm {
        padding: 0 25px;
    }
}
.p-jwoSponsor .c-ttl01 {
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor .c-ttl01 {
        margin-bottom: 28px;
    }
}
.p-jwoSponsor .c-ttl01__ja{
	line-height: 1.4
}
.p-jwoSponsor__box + .p-jwoSponsor__box {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__box + .p-jwoSponsor__box {
        margin-top: 25px;
    }
}
.p-jwoSponsor__head {
    margin-bottom: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    color: #535353;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__head {
        font-size: 16px;
        margin-bottom: 7px;
    }
}
.p-jwoSponsor__head:before {
    content: "";
    width: 43%;
    height: 1px;
    background: #535353;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__head:before {
        width: 35%;
    }
}
.p-jwoSponsor__head:after {
    content: "";
    width: 43%;
    height: 1px;
    background: #535353;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__head:after {
        width: 35%;
    }
}
.p-jwoSponsor__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.p-jwoSponsor__list li {
    width: 50%;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__list li {
        padding: 0 5px;
    	margin-bottom: 10px;
    }
}
.p-jwoSponsor__list li img {
    display: block;
    max-width: 450px;
    margin: 0 auto;
    width: 100%;
}
.p-jwoSponsor__list.style2 li {
    width: 33.33%;
}
.p-jwoSponsor__list.style2 li img {
    max-width: 320px;
}
.p-jwoSponsor__list.style3 li {
    width: 25%;
}
.p-jwoSponsor__list.style3 li img {
    max-width: 230px;
}
.p-jwoSponsor__name ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.p-jwoSponsor__name ul li {
    width: 33.33%;
    font-size: 18px;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__name ul li {
        width: 50%;
       
        font-size: 11px;
    }
}
.p-jwoSponsor__name ul li + li {
    margin-top: 3px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__name ul li + li {
        margin-top: 0;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__name ul li:nth-child(2n) {
        padding-left: 10px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSponsor__name ul li:nth-child(2n+1) {
        padding-right: 10px;
    }
}
.p-jwoSponsor__name ul li a {
    color: #000;
}
/* Sponsorship */
.p-jwoSponsorship {
    margin: 170px 0 210px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship {
        margin: 100px 0 130px;
    }
}
.p-jwoSponsorship .c-ttl01 {
    margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .c-ttl01 {
        margin-bottom: 10px;
    }
}
.p-jwoSponsorship .c-txt-base {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .c-txt-base {
        text-align: left;
        font-size: 15px;
    }
}
.p-jwoSponsorship .c-txt-base p {
    line-height: 2.25;
    letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .c-txt-base p {
        line-height: 1.73;
    }
}
.p-jwoSponsorship .c-txt-base p + p {
    margin-top: 25px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .c-txt-base p + p {
        margin-top: 20px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .wcm {
        padding: 0 25px;
    }
}
.p-jwoSponsorship .c-btn01 {
    margin: 0 auto 65px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship .c-btn01 {
        margin-bottom: 45px;
    }
}
.p-jwoSponsorship__txt {
    text-align: center;
    letter-spacing: 0.03em;
    font-size: 20px;
    font-weight: 600;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__txt {
        font-size: 16px;
    }
}
.p-jwoSponsorship__txt span {
    font-size: 40px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__txt span {
        font-size: 31px;
    }
}
.p-jwoSponsorship__txt small {
    font-size: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__txt small {
        font-size: 12px;
    }
}
.p-jwoSponsorship__cont {
    max-width: 685px;
    width: 100%;
    margin: 0 auto;
}
.p-jwoSponsorship__cont table {
    width: 100%;
    border-collapse: collapse;
    letter-spacing: 0.05em;
}
.p-jwoSponsorship__cont table th {
    padding: 22px 0;
    border-bottom: 1px solid #C8161D;
    text-align: left;
    color: #C8161D;
    font-size: 18px;
    font-weight: 900;
    vertical-align: top;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont table th {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        padding: 10px 0 0;
        border-bottom: none;
    }
}
.p-jwoSponsorship__cont table td {
    padding: 22px 0;
    border-bottom: 1px solid #C8161D;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont table td {
        display: block;
        width: 100%;
        padding: 0 0 10px;
        font-size: 15px;
    }
}
.p-jwoSponsorship__cont table td ol {
    padding-left: 25px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont table td ol {
        padding-left: 110px;
        margin-top: -26px;
    }
}
.p-jwoSponsorship__cont table td ol li {
    padding-left: 10px;
    position: relative;
}
.p-jwoSponsorship__cont table td ol li:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #222222;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 12px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont__head {
        font-size: 17px;
    }
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont__subhead {
        font-size: 15px;
        padding-left: 5px;
    }
}
.p-jwoSponsorship__cont__subhead span {
    font-size: 13px;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__cont__subhead span {
        font-size: 12px;
    }
}
.p-jwoSponsorship__note {
    max-width: 685px;
    width: 100%;
    margin: 20px auto 0;
    font-size: 14px;
    letter-spacing: 0.03em;
    color: #5C5C5C;
}
@media screen and (max-width: 767px) {
    .p-jwoSponsorship__note {
        max-width: 100%;
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Ticket */
.p-jwoTicket {
    margin-bottom: 170px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket {
        margin-bottom: 85px;
    }
}
.p-jwoTicket .c-ttl01 {
    margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket .wcm {
        padding: 0 25px;
    }
}
.p-jwoTicket__cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 957px;
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont {
        display: block;
    }
}
.p-jwoTicket__cont__image {
    width: 334px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont__image {
        width: 100%;
        margin-bottom: 40px;
    }
}
.p-jwoTicket__cont__image img {
    width: 100%;
}
.p-jwoTicket__cont__desc {
    width: calc(100% - 334px);
    padding-left: 65px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont__desc {
        width: 100%;
        padding-left: 0;
    }
}
.p-jwoTicket__cont__desc p {
    letter-spacing: 0.03em;
    line-height: 2.25;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont__desc p {
        font-size: 15px;
        line-height: 1.73;
    }
}
.p-jwoTicket__cont__desc p + p {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont__desc p + p {
        margin-top: 30px;
    }
}
.p-jwoTicket__cont__desc .c-btn01 {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    .p-jwoTicket__cont__desc .c-btn01 {
        margin: 15px auto 0;
    }
}

.l-footer__inner {
    padding: 40px 0;
    background: #FFFCF4;
    -webkit-box-shadow: 0px 0px 9px 0px rgba(177, 177, 177, 0.29);
    box-shadow: 0px 0px 9px 0px rgba(177, 177, 177, 0.29);
}
@media screen and (max-width: 767px) {
    .l-footer__inner {
        padding: 34px 0 39px;
    }
}
.l-footer__inner .wcm {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
@media screen and (max-width: 767px) {
    .l-footer__inner .wcm {
        display: block;
        padding: 0 25px;
    }
}
.l-footer__logo {
    width: 240px;
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        margin-bottom: 24px;
    }
}
.l-footer__cont {
    width: 315px;
    margin-left: auto;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
    .l-footer__cont {
        width: 100%;
    }
}
.l-footer__cont p {
    font-size: 14px;
    line-height: 1.7;
}
@media screen and (max-width: 767px) {
    .l-footer__cont p {
        line-height: 1.5;
    }
}
.l-footer__cont p a {
    color: #332605;
}
.l-footer__cont small {
    display: block;
    font-size: 12px;
    line-height: 1;
    margin-top: 4px;
    color: #000000;
}
.l-footer__cont small pre {
    display: inline-block;
}
.l-footer__copyright {
    padding: 6px 0;
    background: #C8161D;
}
.l-footer__copyright p {
    font-size: 10px;
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
    .l-footer__copyright p {
        text-align: center;
    }
}
@keyframes top-op {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes top-op-rev {
  from {
    display: block;
    opacity: 1;
    z-index: 9998;
  }
  to {
    display: none;
    opacity: 0;
    z-index: -1;
  }
}
@keyframes top-op-logo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(180px);
  }
}
@keyframes slide-left-sp {
  0% {
    transform: translateX(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(80px);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-180px);
  }
}
@keyframes slide-right-sp {
  0% {
    transform: translateX(0);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-80px);
  }
}
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background: url(../images/jwo2026/item_left@2x.png), url(../images/jwo2026/item_right@2x.png), #fff;
  background-position: center left, center right;
  background-size: contain;
  background-repeat: no-repeat;
  animation-duration: 1.3s;
  animation-delay: 5.6s;
  animation-fill-mode: forwards;
  animation-name: top-op-rev;
  z-index: 9998;
}
@media (max-width: 767px) {
  .c-loading {
    background-size: 35% 100%;
  }
}
.c-loading__list {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14.5rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 750px;
  height: 350px;
}
@media (max-width: 1024px) {
  .c-loading__list {
    gap: 8.6rem;
  }
}
@media (max-width: 767px) {
  .c-loading__list {
    gap: 4rem;
    width: 100%;
    height: 240px;
  }
}
.c-loading__items.left {
  opacity: 1;
  animation-duration: 1.4s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  animation-name: slide-left;
}
@media (max-width: 600px) {
  .c-loading__items.left {
    text-align: center;
    animation-name: slide-left-sp;
  }
}
.c-loading__items.left h2 {
  text-align: center;
  padding-bottom: 2rem;
  font-size: 1.5rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .c-loading__items.left h2 {
    padding-bottom: 1rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}
.c-loading__items.left img {
  width: auto;
  height: 250px;
  padding-bottom: 2.8rem;
}
@media (max-width: 767px) {
  .c-loading__items.left img {
    height: 100px;
    padding-bottom: 1rem;
  }
}
.c-loading__items.right {
  opacity: 1;
  animation-duration: 1.4s;
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
  animation-name: slide-right;
}
@media (max-width: 600px) {
  .c-loading__items.right {
    text-align: center;
    animation-name: slide-right-sp;
  }
}
.c-loading__items.right h2 {
  text-align: center;
  padding-bottom: 2rem;
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  .c-loading__items.right h2 {
    padding-bottom: 1rem;
    font-size: 1rem;
    white-space: nowrap;
  }
}
.c-loading__items.right img {
  width: auto;
  height: 250px;
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .c-loading__items.right img {
    height: 100px;
    padding-bottom: 1rem;
  }
}
.c-loading__items--cross img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  opacity: 1;
  animation-duration: 0.5s;
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
  animation-name: top-op-rev;
}
@media (max-width: 767px) {
  .c-loading__items--cross img {
    width: 50px;
    height: 50px;
  }
}
.c-loading__logo {
  position: fixed;
  width: 360px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-duration: 1s;
  animation-delay: 3.2s;
  animation-fill-mode: forwards;
  animation-name: top-op;
  opacity: 0;
}
@media (max-width: 600px) {
  .c-loading__logo {
    width: calc(100% - 80px);
  }
}
.c-loading__logo img {
  width: 100%;
}
.post-password-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 80vh;
    padding: 5rem 0;
}
.post-password-form p:first-of-type {
    margin-bottom: 20px;
}
.post-password-form p label {
    margin-right: 20px;
}
.post-password-form p input {
    padding: .5rem;
    border: 1px solid #333;
}
.post-password-form p input:last-of-type {
    padding: .2rem 1.2rem;
    cursor: pointer;
}
.product-gallery .slick-slider {
    margin-bottom: 0;
}
.product-gallery .slick-prev, .slick-next {
    font-size: 0;
    color: transparent;
    z-index: 1;
    border-top: 2px solid #ccc;
    border-right: 2px solid #ccc;
    transform: rotate(45deg);
}
.product-gallery .slick-prev {
    transform: rotate(-135deg);
    left: 5px;
}
.product-gallery .slick-next {
    right: 5px;
}
.product-gallery .slick-prev:before, .slick-next:before {
    display: none;
}




.btn-detail {
    position: relative;
    display: inline-block;
    padding: 16px 75px;
    border: 1px solid #7a6e48;
    color: #7a6e48;
    text-decoration: none;
    font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
    font-size: 16px;
    text-align: center;
    overflow: visible;
    margin-top: 30px; /* 上だけ30pxのマージン */
  }
  
  .btn-text {
    position: relative;
    z-index: 1;
  }
  
  .btn-line {
    position: absolute;
    right: -10px; /* ← はみ出し幅を小さめに */
    top: 50%;
    transform: translateY(-50%);
    width: 30px;  /* ← 線の長さも少し短く */
    height: 1px;
    background-color: #7a6e48;
    z-index: 0;
  }

  .course-info {
    background-color: #F2CACB; /* 青みのある背景に変更 */
    padding: 10px 15px;
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-top: 30px; /* ← 上に余白を追加 */
    display: inline-block;
  }

  .notice {
    font-size: 18px;
    color: #d35d62;
    margin-bottom: 10px;
  }
  
  .address {
    font-size: 16px;
    color: #000;
  }


  .p-jwoVisual__credit {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 12px;
    color: #333333;
    background-color: rgba(255, 255, 255, 0.6); /* 半透明白背景で読みやすく */
    padding: 4px 8px;
    border-radius: 0px;
    z-index: 10;
  }

 /* スマホ以外では改行しない */
.sp-br {
    display: none;
  }
.notice-area {
   text-align: center; /* 任意：中央揃え */
}
  /* スマホの時だけ改行を表示 */
  @media screen and (max-width: 768px) {
    .sp-br {
      display: block;
      height: 0;
    }
    
    .notice,
    .address {
      margin: 0.5em 0;
      font-size: 1em;
    }
  }

  /* 共通（PC/スマホ問わず）で .notice にフォントサイズ18pxを指定 */
.notice {
    font-size: 18px;
    color: #d35d62; /* 元の色指定も残す */
    margin-bottom: 10px;
  }