@charset "UTF-8";
/* CSS Document */

/*//////////　リセット　//////////*/

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
body {
    line-height:1;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
}
ins {
    background-color:#fff;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#fff;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:2px solid #e5e7f2;
    margin:0.5em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}





/*//////////　共通　//////////*/

html { 
    font-size: 62.5%; 
}

body { 
    background: #f2f3f7;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1.6rem; 
    color: #000000;
}	

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.notPC {
    display: none;
}

.notSP {
    display: inline-block;
}

@media screen and (max-width: 768px) {
    .notPC {
        display: inline-block;
    }
    .notSP {
        display: none;
    }
}

.nav {
	position: absolute;
	top: 1rem;
	right: 7rem;
	z-index: 10;
}

.wrapper {
	width: 100%;
	max-width: 440px;
	min-height: 100vh;
	margin: 0 auto;
	padding-bottom: 12rem;
	position: relative;
	background: #f2f3f7;
	border-left: 3px solid #ffffff;
	border-right:  3px solid #ffffff;
}

@media screen and (max-width: 440px) {
	.wrapper {
			border-left: none;
			border-right: none;
		}
}

.main {
	position: relative;
	overflow: hidden;
}

.section {
	padding: 6rem 0;	
}

.block {
	margin-top: 4rem;
}

.container {
	padding: 0 5%;
}

.color-fashion {
	background-color: #e50012;
}

.color-visual {
	background-color: #e50012;
}

.heading {
	font-size: 3.6rem;
    font-weight: bold;
	color: #e50012;
    text-align: center;
	margin-bottom: 4rem;
	letter-spacing: 0.1em;
}

.sub-heading {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 1rem;
}

.sub-heading span {
	display: inline-block;
	border-top: 2px solid #000000; 
	border-bottom: 2px solid #000000; 
	padding: 1rem 0;
}

.bg-red .heading {
	color: #ffffff;
}

.bg-red .sub-heading span {
	border-top: 2px solid #ffffff; 
	border-bottom: 2px solid #ffffff; 
}

.title {
	font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 2rem;
}

.title .medal {
	width: 50%;
	display: block;
	margin: 0 auto;
}

.sub-title {
	font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    border-left: 3px solid #e50012;
    padding: 0.5em 0 0.5em 0.5em;
	margin-bottom: 2rem;
}

 h3.title span {
	position: relative
}

 h3.title span::before {
	content: '';
	display: inline-block;
	width: 1rem;
	height: 1rem;
	background-color: #e50012;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -2rem;
}

.text {
	line-height: 1.5;
}

.text-red {
	color: #e50012 !important;
}

.text-black {
	color: #000000 !important;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.text-link {
    position: relative;
    transition: all 0.3s;
    color: #000000;
	margin-right: 20px;
}

.text-link::after {
    content: '';
    border: 0;
    border-top: solid 2px #e50012;
    border-right: solid 2px #e50012;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(45deg);
}

.text-link:hover {
    color: #e50012;
}

.note {
	font-size: 1.3rem;
	line-height: 1.25;
	text-indent: -1em;
    padding-left: 1em;
    text-align: left;
}

.bg-gray {
	background-color: #e5e7f2;
}

.bg-red {
	background-color: #e50012;
}

.bg-black {
	background-color: #000000;
}

.bg-white {
	background-color: #ffffff;
}

.mincho {
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}

.radius {
	border-radius: 10px;
    overflow: hidden;
}
/*
.card {
	background: #f2f3f7;
	background: #ffffff;
	border-radius: 10px;
	box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
	overflow: hidden;
}
*/
.icon-red {
	display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #e50012;
    color: #ffffff;
    font-weight: bold;
	margin-bottom: 0.5em;
}

.icon-pdf {
	font-size: 1.4rem;
    font-weight: bold;
    padding: 0.1em 0.2em;
    background-color: #e70011;
    margin-left: 1rem;
    border-radius: 3px;
}

.icon-category {
	display: inline-block;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-weight: bold;
	margin-bottom: 1em;
}

.mark-red {
	background-color: #e70011;
    padding: 0.2em;
    font-size: 1.125em;
    font-weight: bold;
    color: #ffffff;
	font-style: normal;
}

.cta {
	margin-top: 4rem;
    text-align: center;
	font-weight: bold;
}

.cta.col-1 .button:nth-child(n+1) {
	margin-top: 2rem;
}

.col-2 {
	display: flex;
    justify-content: space-between;
} 

.col-2 .box {
	width: calc((100% - 10px) / 2);
} 

/* .button */
.button {
    display: inline-block;
    width: 280px;
    text-align: center;
    text-decoration: none;
    line-height: 60px;
    outline: none;
    color: #ffffff;
	border-radius: 30px;
    background-color: #e50012;
    position: relative;
    transition: color 0.5s ease;
	overflow: hidden;
}

.button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.button::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
	border-radius: 30px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.button span {
	position: relative;
}

.button:active {
  transform: scale(0.95);
}

.button.icon-window {
	position: relative
}

.button.icon-window::after {
	content: "";
    display: inline-block;
    width: 18px;
    height: 16px;
    background-image: url(../images/icon_window_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
}

.button.white {
    color: #000000;
    background-color: #ffffff;
}

.button.white::before {
    background: #fff000;
}

.button.white.icon-window::after {
    background-image: url(../images/icon_window_black.png);
}

.button.black {
    background-color: #000000;
}

.button.black::before {
    background: #e50012;
}

.button.square {
	border-radius: 10px;
}

.button small {
	font-size: 1.2rem;
    display: block;
    margin-top: 0.5em;
}

.button.pdf {
	flex-direction: row;;
}

.button.anker::after{
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(135deg); 
}

.button.disable {
	pointer-events: none;
    background-image: linear-gradient(to top, #cccccc 0%, #cccccc 80%, #cccccc 100%);
	border: none;
	color: #ffffff;
}

.mv .button-anker.disable {
	pointer-events: none;
    background-color: #cccccc;
}





/* .number-list */
ol.number-list {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
	text-align: left;
	font-weight: bold;
	line-height: 1.25;
}

ol.number-list li {
	margin-bottom: 10px;
	position: relative;
	display: flex;
	align-items: center;
	counter-increment: mycounter;
}

ol.number-list li:before {
	content: counter(mycounter, decimal-leading-zero);
	counter-increment: my-counter;
	background-color: #000000;
	color: #ffffff;
	display: block;
	line-height: 40px;
	margin-right: 10px;
	text-align: center;
	height: 40px;
	width: 40px;
	border-radius: 50%;
	font-family: Arial, Helvetica, sans-serif;
	flex-shrink: 0;
}

.bg-red ol.number-list li:before {
	background-color: #fff000;
	color: #e50012;
}




/*//////////　.mv　//////////*/

.mv {
	height: 100vh;
	background-image: url(../images/bg_mv_ms2026_mode.jpg);
	background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.mv .block {
	text-align: center;
	color: #ffffff;
}

.mv .date {
	font-size: 2.2rem;
	font-weight: bold;
}

.mv .time {
	font-weight: bold;
	margin-top: 1rem;
}

.mv .address {
	font-size: 2.2rem;
	font-weight: bold;
	margin-top: 1rem;
}

.mv .cta {
	color: #ffffff;
}

.mv .button-anker {
	width: 100%;
	max-width: 280px;
	height: 60px;
	border-radius: 30px; 
	font-size: 1.8rem;
	font-weight: bold;
	color: #ffffff;
	background-color: #000000;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.3s;
	box-shadow: 0 0 20px 0 #e50012;
	margin: 1rem auto 0;
}

.mv .button-anker:hover {
	box-shadow: none;
	transform: translateY(3px);
}

.mv .button-anker::after{
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(135deg); 
}

/*　下層ページ　*/
.subpage .main .mv {
	background-image: none;
	background-color: #e60012;
    max-height: 500px;
	position: relative;
}

.subpage .main .mv.bg-ms2026-sub {
	background-image: url(../images/img_ms2026_sub.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.subpage .main .mv .logo_ms2026 {
	position: absolute;
	top: 3rem;
	left: 2rem;
	width: 200px;
}

.subpage .main .mv .mv__inner {
	text-align: center;
    color: #fff;
}

.subpage .main .mv .mv__inner .logo_mode_japonism_white {
	width: 200px;
}

.subpage .main .mv .mv__inner h1 {
	font-size: clamp(4.2rem, calc(4rem + 0.625vw), 4.8rem);
	font-weight: bold;
	margin: 2rem 0;
}

.subpage .main .mv .mv__inner .text {
	font-size: 1.8rem;
}





/*//////////　.intoro　//////////*/

.intoro.section {
	padding: 4rem 0;
	/*display: flex;
	justify-content: center;*/
	text-align: center;
}

.bg-ms2026 {
    background-image: url(../images/img_ms2026.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
}

.intoro .mincho {
	font-size: 1.8rem;
	font-weight: bold;
	color: #ffffff;
	line-height: 3;
	/*writing-mode: vertical-rl;*/
	letter-spacing: 0.1em
}





/*//////////　.special-guest　//////////*/

.special-guest {
	margin-bottom: 6rem;
}

.special-guest.bg-red {
	color: #ffffff;
}

.special-guest-list {
	padding: 6rem 0;
}

.special-guest-list__item {
	padding: 3rem 0;
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.special-guest-list__item:first-of-type {
	padding-top: 0;
}

.special-guest-list__item:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}

.special-guest-info.text {
	font-size: 1.4rem;
}





/*//////////　.apply　//////////*/

.text-anker {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 6rem;
	margin-top: -20px;
}

.text-anker a {
	margin: 0 15px;
	padding: 20px 0;
	position: relative;
	transition: all 0.3s;
	color: #000000;
}

.text-anker a::after{
    content: '';
    border: 0;
    border-top: solid 2px #e50012;
    border-right: solid 2px #e50012;
    display: inline-block;
    width: 10px;
    height: 10px;
    position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(135deg);
	bottom: 0;
}

.text-anker a:hover {
	color: #e50012;
}

.apply__admission.container {
	padding: 6rem 5%;
	color: #ffffff;
}

.apply__viewing.container {
	padding: 6rem 5% 0;
}

.apply__admission h3.title span::before {
	background-color: #ffffff;
}

.apply__viewing h3.title span::before {
	background-color: #000000;
}

.apply__admission .sub-title {
	border-left: 3px solid #ffffff;
}
.apply__viewing .sub-title {
	border-left: 3px solid #000000;
}

.apply-list {
	margin-top: 6rem;
	text-align: center;
}

.apply-list__item {
	padding: 6rem 0;
	border-bottom: 2px dotted #000000;
}

.bg-red .apply-list__item {
	border-bottom: 2px dotted #ffffff;
}

.apply-list__item:first-of-type {
	padding-top: 0;
}

.apply-list__item:last-of-type {
	padding-bottom: 0;
	border-bottom: none;
}

.apply-list__item .title {
	line-height: 1.25;
	border-bottom: 4px solid #000000;
    padding-bottom: 0.2em;
    display: inline-block;
}

.bg-red .apply-list__item .title {
	border-bottom: 4px solid #ffffff;
}

.apply-list__item .detail {
	margin-top: 2rem;
}

.special-tour .title {
	position:relative;
	margin-top: 30px
}

.special-tour .title::before {
	content: '★★★';
	font-size: 2rem;
    letter-spacing: 0.1em;
	color: #fff000;
	position:absolute;
	top:-30px;
	left:0;
	right:0;
}





/*//////////　.time-table　//////////*/

.table {
	width: 100%;
    line-height: 1.5;
    text-align: center;
    border: 4px solid #e5e7f2;
}

.table th,
.table td {
	display: block;
    padding: 1em;
}

.table th {
    font-weight: bold;
    background-color: #e5e7f2;
}

.time-detail {
	display: flex;
    flex-wrap: wrap;
    line-height: 1.5;
	text-align: left;
    margin: 0 auto;
	font-size: 1.5rem;
	font-weight: bold;
}

.time-detail dt {
	width: 45%;
}

.time-detail dd {
	width: 55%;
	margin-bottom: 1rem;
}





/*//////////　.area-map　//////////*/

/*　下層ページ　*/
.subpage .area-map.section {
    padding-top: 12rem;
}





/*//////////　.sponsor　//////////*/

.sponsor .card {
	padding: 2rem;
}

.sponsor-list {
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
    padding-left: 1em;
}

.sponsor-list li {
	/*margin-right: clamp(4rem, calc(3.8rem + 0.625vw), 4.5rem);*/
	width: 45%;
    line-height: 1.5;
    list-style: square;
    text-indent: -0.25em;
}

.sponsor-list li::marker {
	color: #e60012;
}

.sponsor-list li>span {
	vertical-align: -0.15em;
}

.kyosan .sponsor-list li {
	width: 100%;
}





/*//////////　.about　//////////*/

.about {
	background-image: url(../images/bg_about_ms2026_mode.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-color: #040407;
    color: #ffffff;
	margin: 6rem 0;
}

.about .heading {
	color: #ffffff;
}





/*//////////　.overview　//////////*/

.overview .overview-detail  {
	padding: 2rem;
}

.overview .overview-detail dl {
	line-height: 1.5;
}

.overview .overview-detail dt {
	font-weight: bold;
}

.overview .overview-detail dd {
	padding-bottom: 1em;
    border-bottom: 2px solid #e5e7f2;
    margin-bottom: 1em;
}

.overview .overview-detail dd:last-child {
	padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.overview .overview-detail dd ul {
	list-style: disc;
    padding-left: 1em;
}

.overview .overview-detail dd ul li {
	margin-bottom: 0.5rem;
}

.overview .overview-detail dd ul li:last-child {
	margin-bottom: 0;
}





/*//////////　.works　//////////*/
.works-number {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

/*
.works .group-link {
	margin: 4rem 0;
}

.works .group:nth-child(n+1) {
	margin-top: 8rem;
}
*/

.works .unit .text {
	padding: 2rem;
	font-size: 1.4rem;
}

.works .unit .title {
	font-size: 1.4rem;
    text-align: left;
    margin-bottom: 1rem;
}

.works .unit .department {
	font-size: 1.2rem;
    font-weight: bold;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 2px solid #e5e7f2;
}

.works .unit .member {
	font-size: 1.2rem;
}


.works .unit .other {
	text-align: center;
    padding: 0.5em;
    margin-top: 1rem;
	background-color: #e5e7f2;
}




/* pagination */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 4rem 0 2rem;
}
.pagination-item-link {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	overflow: hidden;
	background: #f2f3f7;
	border: solid 1px #8f9092;
	font-size: 14px;
	color: #000000;
	font-weight: bold;
	transition: all 0.15s linear;
}

.pagination-item-link.prev,
.pagination-item-link.next {
	background: #e5e7f2;
}

.pagination-item-link.active {
	background: #e50012;
	color: #ffffff;
	pointer-events: none;
}
.pagination-item-link:not(.active):hover {
	background: #e50012;
	color: #ffffff;
}
.pagination > * + * {
	margin-left: 1rem;
}

.dli-chevron-left {
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(25%) rotate(-135deg);
	transition: all 0.15s linear;
}

.dli-chevron-right {
	display: inline-block;
	vertical-align: middle;
	color: #000000;
	line-height: 1;
	width: 10px;
	height: 10px;
	border: 2px solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	transform: translateX(-25%) rotate(45deg);
	transition: all 0.15s linear;
}

.pagination-item-link.prev:not(.active):hover .dli-chevron-left,
.pagination-item-link.next:not(.active):hover .dli-chevron-right {
	  color: #ffffff;
}





/*//////////　.category　//////////*/

 .category-fashion h3.title span::before {
	background-color: #e50012;
}

 .category-visual h3.title span::before {
	background-color: #e50012;
}

.category .slide .title {
	font-size: 1.4rem;
	font-weight: normal;
    text-align: left;
    margin-bottom: 0;
    line-height: 1.5;
    color: #000000;
}





/*//////////　.footer　//////////*/

.footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: #000000;
    padding: 1rem;
}

.copyright {
	font-size: 1.2rem;
    text-align: center;
    color: #ffffff;
}





/*//////////　PC　//////////*/

.pc .mv {
	background-image: none;
	width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

@media screen and (max-width: 1080px) {
	.pc .mv {
		display: none;
		}
}

.pc .pc-left {
	background-image: url(../images/bg_pc_mode_left.jpg);
	background-size: cover;
	background-position: top right;
	position: fixed;
	top: 0;
	left: 0;
    width: calc((100vw - 440px) / 2);
	height: 100vh;
}

.pc .pc-right {
	background-image: url(../images/bg_pc_mode_right.jpg);
	background-size: cover;
	position: fixed;
	top: 0;
	right: 0;
    width: calc((100vw - 440px) / 2);
	height: 100vh;
}





/*//////////　.qr　//////////*/

.qr .main .mv {
	max-height: none;
}

.qr .main .mv .logo_ms2026 {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
}

.qr .main .mv .mv__inner h1 {
	font-size: 3.6rem;
}
.qr .wrapper {
	padding-bottom: 0;
}

.qrcode-box {
	width: 50%;
    margin: 2rem auto;
    padding: 5%;
    background-color: #ffffff;
}





