@charset "UTF-8";

html{
	font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

a{
    transition: .3s;
    display: block;
    position: relative;
}


@font-face {
  font-family: 'mincho';
  src: url("../font/ZenOldMincho-Black.ttf");
}

body{
    font-feature-settings: "palt";
    font-family: 'mincho', sans-serif;
    line-height: 1.5em;
    letter-spacing: .1em;
    color: #505050;
    position: relative;
}
.body__inner{
    overflow: hidden!important;
}

.only-pc{
    display: block!important;
}
.only-sp{
    display: none!important;
}
p{
    font-size: max(14px,1.8rem);
    line-height: 1.5em;
    color: #505050;
    letter-spacing: 0.1em;
}
img{
    /* max-width: max-content; */
    width: 100%;
    display: block;
    margin: auto;
}
.mt30 {margin-top: 30px;}
.mt20 {margin-top: 20px;}
.mt10 {margin-top: 10px;}
.pt30 {padding-top: 30px;}
.pt20 {padding-top: 20px;}
.pt10 {padding-top: 10px;}

@media screen and (max-width:1260px) {
    html {font-size: .8vw;}
}

@media only screen and (min-width:750px){
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media only screen and (max-width:750px){
    html {font-size:1.65vw;}

    .only-pc{
        display: none!important;
    }
    .only-sp{
        display: block!important;
    }
}

/*-----------------------------------------------

	mv

-----------------------------------------------*/
#mv{
    padding: 0;
}
.mv__ttl.--pc{
    display: none;
}
.mv__ttl.--tablet{
    display: none;
}
.mv__ttl.--sp{
    display: none;
}

@media only screen and (min-width:1441px){
    .mv__ttl.--pc{
        display: block;
    }
}
@media only screen and (min-width:751px) and (max-width:1440px){
    .mv__ttl.--tablet{
        display: block;
    }
}
@media only screen and (max-width:750px){
    .mv__ttl.--sp{
        display: block;
    }
}


/*-----------------------------------------------

	header

-----------------------------------------------*/
#header {
    position: absolute;
    width: 100%;
    transition: top 0.3s;
    z-index: 9;
}

#header.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: white; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.header__list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #6e2727;
}
.header__list li{
    width: 25%;
}
.header__list li:nth-child(3){
    border: 1px solid #c6b578;
    border-width: 0 1px;
}
.header__list li a{
    padding: 2rem 1rem 4rem;
    font-size: max(12px,2.4rem);
    color: #fff;
    background-color: #6e2727;
    line-height: 1.2em;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    text-align: center;
    position: relative;
    transition: .3s;
}
#header.header-fixed li a {
    padding: 2rem 1rem 5rem;
    font-size: max(12px,2rem);
}
#header.header-fixed li:first-child a {
    padding: 1.5rem 1rem 2rem;
}
.header__list li:not(:first-child) a::after{
    content: "";
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 1rem;
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.header__list li a img{
    max-width: max-content;
}

@media only screen and (min-width:751px){
    .header__list li:hover a::after{
        bottom: 2.1rem;
    }
}

.header__list li:first-child a{
    background-color: #3b0f08;
    padding: 3rem 1rem;
}
.header__list li a small{
    font-size: max(10px,1.2rem);
    color: #fde040;
    line-height: 1.2;
}
#header.header-fixed li a small {
    display: none;
}

@media only screen and (max-width:750px){
    .header__list li{
        width: 50%;
        border: 1px solid #c6b578!important;
    }
    .header__list li:nth-child(1){
        border-width: 0 1px 1px 0!important;
        width: 100%;
    }
    .header__list li:nth-child(2){
        border-width: 0 0 1px 0!important;
    }
    .header__list li:nth-child(3){
        border-width: 0 1px 0 !important;
    }
    .header__list li:nth-child(4){
        border-width: 0!important;
    }
    #header.header-fixed li a {
        padding: 1rem 1rem 3rem;
        height: 10rem;
    }
    .header__list li a img {
        width: 50%;
    }
}


/*-----------------------------------------------

	section

-----------------------------------------------*/
section{
    padding: 10rem 4%;
}
.inner{
    max-width: 1100px;
    margin: auto;
}
section h2{
    font-size: max(24px,4.8rem);
    line-height: 1em;
    text-align: center;
    font-weight: bold;
    color: #333;
    margin: 0 0 8rem;
}
section h2 small{
    font-size: max(12px,2rem);
    display: block;
}
section h2 span{
    position: relative;
}
section h2 span::before,section h2 span::after {
    position: absolute;
    content: "";
    background-image: url("../img/ttl_img_01.svg");
    background-repeat: no-repeat;
    top: 50%;
    width: 264px;
    height: auto;
    aspect-ratio: 300/19;
}
section h2 span::before {
    left: -3rem;
    transform: translate(-100%,-50%);
}
section h2 span::after {
    right: -3rem;
    transform: translate(100%,-50%);
}
section h2 small{
    font-size: max(14px,2rem);
    color: #9f8940;
}

@media only screen and (max-width:750px){
    section{
        padding: 8rem 4%;
    }
    section h2{
        margin: 0 0 4rem;
    }
    section h2 span::before,section h2 span::after {
        width: 70%;
    }
}


/*-----------------------------------------------

	past

-----------------------------------------------*/
#past{
    background-image: url("../img/past_bg.jpg");
    /* background-size: contain; */
    background-repeat: repeat;
    background-position: center;
    padding-top: 23rem;
}
.past__table{
    width: 100%;
    min-width: 850px;;
}
.past__table thead th{
    padding: 2rem;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: max(14px,1.6rem);
    background-color: #931c1c;
}
.past__table thead th:not(:first-child){
    border-left: 1px solid #c6b578;
}
.past__table tbody td{
    padding: 1rem 2rem;
    color: #333;
    background-color: #fff;
    line-height: 1.5em;
}
.past__table tbody tr:nth-child(2n) td{
    background-color: #eee;
}
.past__table tbody td:nth-child(1){
    color: #fff;
    font-size: max(12px,1.4rem);
    text-align: center;
    width: 15rem;
    min-width: 100px;
}
.past__table tbody td:nth-child(1) b{
    background-color: #931c1c;
    padding: 1rem;
    display: inline-block;
    width: 100%;
}
.past__table tbody td:not(:first-child){
    border-left: 1px solid #ddd;
}
.past__table tbody td:nth-child(2){
    font-size: max(18px,2.2rem);
    color: #931c1c;
    width: 20%;
}
.past__table tbody td:nth-child(3){
    font-size: max(16px,1.8rem);
}
.past__table tbody td:nth-child(3) small{
    font-size: max(12px,1.4rem);
    width: 45%;
}
.past__table tbody td:nth-child(4){
    font-size: max(12px,1.4rem);
    width: 25%;
    min-width: 200px;
}

@media only screen and (max-width:750px){
#past{
    padding-top: 32rem;
}
}

@media only screen and (max-width:355px){
#past{
    padding-top: 38rem;
}
}

/*-----------------------------------------------

	message

-----------------------------------------------*/
#message{
    background-image: url("../img/message_bg.jpg");
    /* background-size: contain; */
    background-repeat: repeat;
    background-position: center;
}
.message__flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
}
.message__flex img{
    width: 41%;
    min-width: 150px;
    margin: 0;
}
#message h3{
    font-size: max(18px,3.2rem);
    line-height: 1.5em;
    margin: 0 0 4rem;
}
#message p{
    font-size: max(14px,1.6rem);
    line-height: 1.5em;
    margin: 0 0 4rem;
}

@media only screen and (max-width:750px){
    .message__flex{
        flex-direction: column-reverse;
        align-items: center;
        gap: 4rem;
    }
}

/*-----------------------------------------------

	history

-----------------------------------------------*/
#history{
    padding: 0;
    background-image: url("../img/history_bg.jpg");
    /* background-size: contain; */
    background-repeat: repeat;
    background-position: center;
}
#history h2{
    color: #fff;
    background-image: url("../img/history_ttl_bg.jpg");
    /* background-size: contain; */
    background-repeat: repeat;
    background-position: center;
    padding: 6rem 4% 4rem;
    margin: 0;
}
#history h2 small{
    color: #fde040;
}
.history__link-list{
    display: flex;
    justify-content: space-between;
    background-color: #6e2727;
    flex-wrap: wrap;
    overflow: hidden;
}
.history__link-list li{
    width: calc(100% / 6);
    position: relative;
}
.history__link-list li:not(:last-child)::before{
    content: "";
    width: 1px;
    height: 120%;
    display: block;
    background-color: #c6b578;
    position: absolute;
    top: -10%;
    right: 0%;
    transform: rotate(-30deg);
    z-index: 1;
}
.history__link-list a{
    font-size: max(16px,2.4rem);
    color: #fff;
    display: block;
    text-align: center;
    flex-direction: column;
    width: 100%;
    padding: 2rem 1rem 4rem;
    line-height: 1em;
    transition: .3s;
    /* clip-path: polygon(0 0, 80% 0%, 100% 100%, 20% 100%); */
}
/* .history__link-list li:first-child a{
   clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}
.history__link-list li:last-child a{
   clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%);
}
@media only screen and (min-width:751px){
    .history__link-list a:hover{
        background-color: #931c1c;
    }
} */


.history__link-list li a::after{
    content: "";
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 1rem;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.history__link-list a span{
    font-size: max(12px,1.6rem);
}
.history__link-list a small{
    font-size: max(12px,1.4rem);
    color: #fde040;
    display: block;
}


.history__wrapper{
    padding: 10rem 0 10rem 4%;
}
.history__content {
    display: flex;
    gap: 4rem;
}



.history__side-list {
    background-color: #6e2727;
    transition: .3s;
}

.history__side-list a{
    color: #fff;
    font-size: max(13px,1.6rem);
    padding: 20px;
    position: relative;
    transition: .3s;
}
.history__side-list__item.--active a{
    background-color: #931c1c;
}
.history__side-list a::after{
    content: "";
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.5rem;
    height: .75rem;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%) rotate(-90deg);
    transition: .3s;
}


.history__explan{
    background-color: rgba(255,255,255,.5);
    /* background-color: #4a1e16; */
    padding: 5rem;
    margin: 0 0 5rem;
}
.history__explan p{
    /* color: #fff; */
}


.history__content .history__era:not(:nth-child(2)) {
    margin-top: -2rem;
}

.history__ttl-flex{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}
.history__ttl-flex h3{
    font-size: max(20px,3.6rem);
    line-height: 1.5em;
    color: #723232;
}
.history__ttl-flex h3 small{
    font-size: max(16px,2.8rem);
}





/* history__table */
.history__table {
    width: 100%;
    position: relative;
    --table-width: 100%
}
.history__table::before {
    position: absolute;
    content: "";
    background: #723232 no-repeat;
    width: 2px;
    height: 100%;
    left: 60%;
    top: 0;
    transform: translateX(-50%);
}
div.history__content > div.history__era:last-of-type .history__table::before {
    height: 90%;
}
.history__table > tbody > tr {
    border-top: 3rem solid transparent;
    border-bottom: 3rem solid transparent;
}

.history__table > tbody > tr:first-of-type td {
    padding-top: 6rem;
    vertical-align: top;
}
.history__table > tbody > tr:last-of-type td {
    padding-bottom: 10rem;
}
.history__table--l {
    width: 60%;
    vertical-align: baseline;
    position: relative;
}
.history__table--head {
    display: flex;
    align-items: center;
    position: relative;
}
.history__table .history__table--head-line {
    content: "";
    flex-grow: 1;
    background-color: #777777;
    height: 2px;
    position: relative;
}

.history__table .history__table--head-line::before,
.history__table .history__table--head-line::after {
    position: absolute;
    background: #723232;
    content: "";
    width: 14px;
    aspect-ratio: 1/1;
    top: 50%;
    z-index: 1;
}
.history__table .history__table--head-line::before {
    left: 0;
    transform: translate(0,-50%) rotate(45deg);
}
.history__table .history__table--head-line::after {
    right: 0;
    transform: translate(50%,-50%) rotate(45deg);
}
.history__table--r .history__table--head {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap:calc(var(--table-width) * 0.04);
}
.history__table--r > *:not(.history__table--head) {
    margin-left: calc(var(--table-width) * 0.25);
}
.history__table--r  .history__table--head-line {
    width: calc(var(--table-width) * 0.22);
    flex-grow: 0;
}
.history__table--r .history__table--head-line::before {
    left: 0;
    transform: translate(-50%,-50%) rotate(45deg);
}

.history__table--r {
    width: 40%;
    vertical-align: top;
}
.history__table--l .date {
    color: #723232;
    font-size: max(20px, 3.6rem);
    line-height: 1;
    margin: 0 0.5em .75rem 0;
    width: fit-content;
    position: relative;
    min-width: 5.5em;
}
.history__table--l .date span {
    font-size: max(16px, 1.8rem);
}
.history__table--l .date-accentuate {
    font-size:5rem;
    color: #fff;
}
.history__table--l .date-accentuate span {
    font-size:2.4rem;
}
.history__table--l .history_accentuate li {
    font-size: 3rem;
}
.history__table--l .history__table--bullet {
    font-size: max(16px, 2.4rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.history__table .history__table--bullet li {
    position: relative;
    padding-left: .9em;
    line-height: 1.2;
    letter-spacing: 0;
}
.history__table .history__table--bullet li::before {
    position: absolute;
    content: "◆";
    font-size: 65%;
    left: 0;
    top: .325em;
    color: #723232;
}
.history__table--r .date {
    font-size: max(16px, 2.4rem);
    line-height: 1.4;
    margin-bottom: 0.75rem;
    width: fit-content;
    position: relative;
} 
.history__table--r .date span {
    font-size: max(12px, 1.4rem);
}
.history__table--r .history__table--bullet {
    font-size: max(16px, 1.8rem);
}
.history__table--r .history__table--image {
    background-color: #4a1e16;
    padding: 1.5rem;
    max-width: 270px;
    margin-bottom: 2rem;
    position: relative;
    cursor: pointer;
}
.history__table--r .history__table--image::after {
    position: absolute;
    content: "";
    background: url("../img/zoom-icon.svg") center / contain no-repeat ;
    width: 4rem;
    min-width: 30px;
    height: auto;
    aspect-ratio: 1/1;
    top: 2rem;
    right: 2rem;
}
.history__table--r .history__table--image img {
    aspect-ratio: 84/59;
    object-fit: cover;
}
.history__table--r:has(> ul.history__table--bullet) > .history__table--image {
    margin-top: 2rem; 
    cursor: pointer;
    }
.history__table--r .history__table--image > .modal-caption {
    font-size: max(12px, 1.4rem);
    color: #fff;
    padding-top: 1.5rem;
    line-height: 1.2;
}
tr:has(td.history__table--l:empty) td.history__table--r {
    padding-bottom: 1rem;
    }
tr.centurial {
    position: relative;
    border-top: 3rem solid transparent;
    border-bottom: 3rem solid transparent;
}
tr.centurial::after {
    position: absolute;
    background: #723232;
    content: "1700";
    color: #fff;
    font-size: max(16px, 2.8rem);
    width: 12rem;
    aspect-ratio: 1/1;
    top: 50%;
    left: 60%;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
tr.centurial.centurial1700 {
    border-top: 4rem solid transparent;
    border-bottom: 6rem solid transparent;
}
tr.centurial.centurial1800 {
    border-top: 7rem solid transparent;
    border-bottom: 7rem solid transparent;
}
tr.centurial.centurial1800::after {
    content: "1800";
}
tr.centurial.centurial1900::after {
    content: "1900";
    top: .2em;
}
.centurial-r .history__table--r .history__table--head {
    position: relative;
}
.centurial-r .history__table--r .history__table--head::after {
    position: absolute;
    background: #723232;
    content: "1600";
    color: #fff;
    font-size: max(16px, 2.8rem);
    width: 12rem;
    aspect-ratio: 1/1;
    top: 50%;
    left: 0;
    z-index: 1;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}
.centurial-r.centurial2000 .history__table--r .history__table--head::after {
    content: "2000";
}
.history__table > tbody > tr.centurial.centurialend > td {
    padding-top: 10rem;
    padding-bottom: 20rem;
}
tr.centurial.centurialend::after {
    content: "";
    background-position: center bottom;
    background-repeat: no-repeat;
    background-image: url("../img/history_ttl_end.png");
    background-size: contain;
    width: min(300px,26vw);
    min-width: 160px;
    top: 70%;
}
/* modal */
.modal-overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 10;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    padding: 2rem;
    background: white;
    max-width: 600px;
    overflow: auto;
    text-align: center;
    position: relative;
    opacity: 0;
    visibility: hidden;
}
.modal-overlay.active .modal-content {
    opacity: 1;
    visibility: visible;
}

.modal-content img {
    max-width: 100%;
    height: auto;
}
.image-modal {
    position: relative;
}
.modal-close {
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 4rem;
    min-width: 30px;
    height: auto;
    aspect-ratio: 1/1;
}
@-moz-document url-prefix() {
    tr.centurial.centurial1900::after {
        top: 1em;
    }
}


    .history__box.--side{
        z-index: 1;
    }

@media only screen and (min-width:1401px){
    .history__box.--main{
        width: 100%;
    }
    .history__box.--side{
        width: 0;
    }
}
@media only screen and (min-width:751px){
    .history__box.--main{
        width: calc(100% - 150px);
    }
    .history__box.--side{
        width: 150px;
    }

    .history__side-list {
        position: fixed;
        right: -150px;
        top: 50%;
        transform: translateY(-50%);
        width: 150px;
    }
    .history__side-list.--active {
        right: 0;
    }

    .history__side-list li:not(:last-child){
        border-bottom: 1px solid #c6b578;
    }
    .history__side-list a:hover{
        background-color: #931c1c;
    }
    .history__link-list li:hover a::after{
        bottom: 1.6rem;
    }
}
    
@media only screen and (max-width:750px){
    
    .history__wrapper{
        padding: 10rem 4%;
    }

    .history__box.--side {
        width: 100%;
        position: fixed;
        bottom: -200px;
        left: 0;
        transition: .3s;
    }
    .history__box.--side:has(.history__side-list.--active) {
        bottom: 0;
    }
    .history__side-list {
        display: flex;
        flex-wrap: wrap;
    }
    .history__side-list li{
        width: calc(100% / 3);
        border: 1px solid #c6b578;
        border-width: 0;
    }
    .history__side-list li:nth-child(1),
    .history__side-list li:nth-child(2){
        border-width: 0 1px 1px 0;
    }
    .history__side-list li:nth-child(3){
        border-width: 0 0 1px 0;
    }
    .history__side-list li:nth-child(4),
    .history__side-list li:nth-child(5){
        border-width: 0 1px 0 0;
    }
    .history__side-list a {
        padding: 3rem 2rem;
    }


    .history__link-list li{
        width: calc(100% / 2);
        border-bottom: 1px solid #c6b578;
    }
    .history__link-list li:nth-child(2n-1){
        border-right: 1px solid #c6b578;
    }
    .history__link-list li::before{
        display: none!important;
    }
    .history__ttl-flex{
        display: flex;
        align-items: flex-start;
        justify-content: center;
        margin-bottom: 2rem;
    }
    .history__ttl-flex > h3:first-of-type {
        width: 60%;
    }
    .history__ttl-flex > h3:last-of-type {
        width: 40%;
    }
    .history__ttl-flex h3{
        font-size: min(20px,4vw);
        line-height: 1.5em;
        color: #723232;
    }
    .history__ttl-flex h3 small{
        font-size: min(18px,3.8vw);
    }

    .history__table--l .history__table--bullet {
        font-size: 14px;
    }
    .history__table--l .date {
        font-size: 24px;
    }
    .history__table--l .date span {
        letter-spacing: -0.05em;
    }
.history__table .history__table--head-line::before,
.history__table .history__table--head-line::after {
    width: 8px;
}
.history__table--r > *:not(.history__table--head) {
    margin-left: calc(var(--table-width) * 0.22);
}
.history__table--r  .history__table--head-line {
    width: calc(var(--table-width) * 0.20);
    flex-grow: 0;
}
.history__table--r .history__table--head {
    padding-top: 5px;
    gap: calc(var(--table-width) * 0.06);
}
.centurial-r .history__table--r .history__table--head {
    padding: 0;
}
.history__table--r .date {
    font-size: 14px;
    margin-bottom: 0;
    letter-spacing: 0;
}
.history__table--r .date span {
    font-size: 12px;
    letter-spacing: 0;
}
.history__table--r .history__table--bullet {
    font-size: 12px;
}
.history__table--r .history__table--image > .modal-caption {
    font-size: 12px;
    line-height: 1.1;
}
tr.centurial::after {
    width: 6.5rem;
    font-size: 12px;
    letter-spacing: -0.01em;
}
.centurial-r .history__table--r .history__table--head::after  {
    width: 6.5rem;
    font-size: 12px;
    letter-spacing: -0.01em;
    font-size: 3vw;
}

.modal-content {
    max-width: 90%;
}

}

@media only screen and (max-width:557px){
    .--1926{
        margin: -8px 0 0;
    }
}

@media only screen and (max-width:450px){
.history__table--r .date {
    font-size: 12px;
    letter-spacing: -0.08em;
}
.history__table--r .date span {
    font-size: 11px;
    letter-spacing: -0.1em;
}
}


/*-----------------------------------------------

	totop

-----------------------------------------------*/
.totop{
    display: block;
    text-align: center;
    color: #fff;
    background-color: #6e2727;
    font-size: max(14px,1.6rem);
    padding: 5rem 4% 3rem;
    position: relative;
}
.totop::after{
    content: "";
    background-image: url("../img/arrow_white.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 2rem;
    height: 1rem;
    position: absolute;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    transition: .3s;
}
@media only screen and (min-width:751px){
    .totop:hover::after{
        top: 2.1rem;
    }
}

/*-----------------------------------------------

	footer

-----------------------------------------------*/
.footer__logo{
    background-color: #931c1c;
    padding: 2.5rem 4% 4rem;
}
.footer__logo a{
    max-width: 258px;
    width: 15%;
    min-width: 150px;
    margin: auto;
    position: relative;
}
.footer__copy{
    font-size: max(12px,1.4rem);
    text-align: center;
    padding: 2rem 4%;
}



.history_accentuate-box {
    width: 100%;
    top: -41px;
}
.history_accentuate-item {
    flex-wrap: wrap;
    width: 65%;
    background-color: #931c1c;
    padding: 15px;color: #fff;
    margin-right: 30px;
}
.history_accentuate-item .history_accentuate li::before {
    color: #fff;
}
.sp{
    display: none!important;
}

@media only screen and (max-width:750px){
    .history__table--l .history_accentuate li {
        font-size: 20px;
    }
    .date-accentuate {
        font-size: 32px;
    }
    .history__table--l .date-accentuate span {
        font-size: max(16px, 1.8rem);
    }
    .history_accentuate-box {
        top: -64px;
    }
}
@media only screen and (max-width:500px) {
    .history__table--l .history_accentuate li {
        font-size: 14px;
    }
    .history_accentuate-item {
        margin-right: 15px;
    }
    .history_accentuate-item {
        padding: 8px;
    }
    .history__table--l .date {
        margin: 0 0 0.75rem;
    }
}
@media only screen and (max-width:400px) {
    .sp{
        display: block!important;
    }
}













