/** Shopify CDN: Minification failed

Line 20:0 "@charset" must be the first rule in the file
Line 22:0 All "@import" rules must come first

**/
#shopify-section-sidebar-menu,
#shopify-section-announcement,
#shopify-section-header,
#shopify-section-footer{
  display: none !important; 
}
body{
  color: #000; 
} 
.anniversary_body #main
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important; 
}
@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
.noto-sans {
    font-family: "Noto Sans", "Noto Sans JP",serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
}
.noto-sans-jp {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.century-gothic{
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.pc {display: block !important;}
.sp {display: none !important;}
@media screen and (max-width:750px) {
    .pc {display: none !important;}
    .sp {display: block !important;}
}
.spacer {width: 100% !important;}
.bold {font-weight: bold !important;}
.normal {font-weight: normal !important;}



/* Humberger --------------------------------------------------------------------------------- */
@media screen and (min-width: 751px) {
    header::after{
        display:none;
    }
}
#logo {
    width: 130px;
    display: block;
    margin: 0 auto;
    margin-left: -65px;
    padding-top: 7px;
    position: fixed;
    left: 50%;
    z-index: 1;
}
#logo img{
    width: 100%;
}
@media screen and (min-width: 751px) {
    #logo {
        width: 120px;
        margin-left: -60px;
        padding-top: 5px;
    }
}
nav{
    width: 100%;
    height: 60px;
    position: relative;
    background: #ffffff;
}
@media screen and (min-width: 751px) {
    nav{
        display: flex;
    }
}
.drawer{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    height: 60px;
}

.menu ul{
    font-size: 1.2em;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
@media screen and (min-width: 751px) {
    .menu ul{
        font-size: 16px;
        height: 60px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
    }
}
.menu ul li a {
    display:block;
    font-weight:bold;
    padding: 2em;
    border-bottom: 1px solid #CCC;
    color:#000;
    text-decoration:none;
}
@media screen and (min-width: 751px) {
    .menu ul li a{
        list-style-type: none;
        padding: 0 1em;
        border-bottom: none;
    }
}
.menu ul li a:hover{
    background-color:rgba(0,0,0,1);
    color:#888;
}
@media screen and (min-width: 751px) {
    .menu ul li a:hover{
        background-color:transparent;
    }
}
.menu{
    text-align:center;
    background-color:rgba(255,255,255,0.9);
    transition: .5s ease;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    width: 100%;
}
@media screen and (min-width: 751px) {
    .menu{
        width: 100%;
        background-color: transparent;
        margin-top:0;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.menu.open {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
.Toggle {
    display: block;
    position: fixed;
    width: 30px;
    height: 36px;
    cursor: pointer;
    z-index: 3;
    right: 15px;
}
@media screen and (min-width: 751px) {
    .Toggle{
        display: none;
    }
}
.Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 2px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
.Toggle span:nth-child(1) {
    top:8px;
}
.Toggle span:nth-child(2) {
    top: 18px;
}
.Toggle span:nth-child(3) {
    top: 29px;
}
.Toggle.active span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* Page Top --------------------------------------------------------------------------------- */
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background: #aaa;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:12px;
	transition:all 0.5s;
}
#page-top a:hover{
	background: #2b2b2b;
}
#page-top {
	position: fixed;
	right: 10px;
	bottom:40px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: page-top_UpAnime 0.5s forwards;
}
@keyframes page-top_UpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
#page-top.DownMove{
    animation: page-top_DownAnime 0.5s forwards;
}
@keyframes page-top_DownAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(100px);
	}
}
.anchor {
  padding-top: 60px;
  margin-top: 60px;
}



/* button --------------------------------------------------------------------------------- */
.button_01 {
    background-color: #029195;
    border: 3px solid #029195;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_01:hover {
    background-color: #fff;
    color: #029195;
}
.button_02 {
    background-color: #db551c;
    border: 3px solid #db551c;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_02:hover {
    background-color: #fff;
    color: #db551c;
}
.button_03 {
    background-color: #ffb900;
    border: 3px solid #ffb900;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_03:hover {
    background-color: #fff;
    color: #ffb900;
}
.button_04 {
    background-color: #000;
    border: 3px solid #000;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_04:hover {
    background-color: #fff;
    color: #000;
}
/* 20250826 */
.button_05 {
    background-color: #a0a0a0;
    border: 3px solid #a0a0a0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_05:hover {
    background-color: #fff;
    color: #a0a0a0;
}
.button_06 {
    background-color: #774d31;
    border: 3px solid #774d31;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    text-decoration: none;
    transition: .3s;
    padding: 10px 0;
    display: block;
}
.button_06:hover {
    background-color: #fff;
    color: #774d31;
}


/* YouTube --------------------------------------------------------------------------------- */
.youtube_04{
    width: 100%;
    height: 450px;
    /* pointer-events:none; */
}
@media screen and (max-width: 750px) {
    .youtube_04{
        width: 83vw;
        height: calc(83vw* 1.778);
    }
}

/* 20250826 */


/* footer --------------------------------------------------------------------------------- */
.footer_01{
    max-width: 1920px;
    margin: 187px auto 0 auto;
    background-color: #fbf8f3;
}
@media screen and (max-width: 750px) {
    .footer_01{
        margin: 10vw auto 0 auto;
        width: 100%;
    }
}
.footer_02{
    max-width: 1100px;
    margin: 0 auto;
    padding: 110px 0;
}
@media screen and (max-width: 750px) {
    .footer_02{
        width: 90%;
        padding: 10vw 0;
    }
}
.footer_03{
    display: flex;
    list-style-type: none;
    font-size: 24px;
    font-weight: bold;
}
@media screen and (max-width: 750px) {
    .footer_03{
        display:block
    }
}
.footer_03 a{
    color: #000; text-decoration: none;
}
.footer_03 a:hover{
    color: #888;
}
.footer_04{
    padding-right: 60px;
}
@media screen and (max-width: 750px) {
    .footer_04{
        padding-bottom: 3vw;
    }
}
.footer_05{
    margin-top: 88px;
    font-size: 1em;
}
@media screen and (max-width: 750px) {
    .footer_05{
        margin-top: 10vw;
        font-size: 1em;
    }
}
.footer_06{
    color: #3786d7; font-weight: bold;
}
.footer_07{
    margin-top: 35px;
}
.footer_07 a{
    color: #000; text-decoration: none;
}
.footer_07 a:hover{
    color: #888;
}
@media screen and (max-width: 750px) {
    .footer_07{
        margin-top: 3vw;
    }
}
.footer_08{
    margin-top: 25px;
}
.footer_08 a{
    color: #000; text-decoration: none;
}
.footer_08 a:hover{
    color: #888;
}
@media screen and (max-width: 750px) {
    .footer_08{
        margin-top: 3vw;
    }
}
.footer_09{
    font-size: 11px; text-align: right;
}
@media screen and (max-width: 750px) {
    .footer_09{
        font-size: 11px;
        text-align: left;
        margin-top: 10vw;
    }
}
.footer_10{
    max-width: 1920px;
    margin: 0 auto;
    background-color: #fbf8f3;
}
@media screen and (max-width: 750px) {
    .footer_11{
        footer_10: 0 auto;
        width: 100%;
    }
}
.footer_hr {
    margin-top: 10vw;
    height: 2px;
    background-color: #e4e1dc;
    border: none;
    color: #e4e1dc;
}




/* TOP --------------------------------------------------------------------------------- */
.anniversary_01{
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 5;
}
.anniversary_02{
    max-width: 1920px; margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .anniversary_02{
        width: 100%;
    }
}
.anniversary_03{
    max-width: 1920px;
    margin: 60px auto 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_top_background_01_pc.jpg);
    background-size: cover;
    max-height: 1020px;
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 750px) {
    .anniversary_03{
        width: 100%;
        margin: 60px auto 0 auto;
        background-image: url(/cdn/shop/files/75th_anniversary_top_background_01_sp.jpg);
        background-size: cover;
        height: 155vw;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.anniversary_04{
    max-width: 240px;
    margin: 0 auto;
    padding-top: 50px;
}
.anniversary_04 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_04{
        padding-top: 10vw;
        width: 40%;
    }
}
/* 20250826 */
.anniversary_05{
    max-width: 1268px;
    /*max-width: 834px;*/
    margin: 0 auto;
    padding: 0 0 100px 0;
}
.anniversary_05 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_05{
        width: 94%;
        margin-top: -6vw;
    }
}
.anniversary_06{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    list-style: none;
    max-width: 1000px;
}
/* @media screen and (max-width: 1020px) {
    .anniversary_06 {
        margin: 50px 0px 50px 0px;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_06{
        margin: 30px 0;
    }
} */
.anniversary_07{
    width: 250px;
    margin: 0 10px;
    position: relative;
    font-size: 16px;
    text-align: center;
}
.anniversary_07:nth-child(n+1), .anniversary_07:nth-child(n+2).anniversary_07:nth-child(n+3) {
	margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
    .anniversary_07{
        width: 30%; margin: 0 5px;
    }
}
.anniversary_08{
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
}
@media screen and (max-width: 750px) {
    .anniversary_08{
        position: absolute;
        top: 16px;
        right: 3px;
    }
}
/* 20250826 */



.anniversary_09{
    max-width: 1920px;
    margin: 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_top_background_02_pc.jpg);
    background-size: cover;
    max-height: 1101px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
@media screen and (max-width: 750px) {
    .anniversary_09{
        width: 100%;
        margin: 0 auto;
        background-image: url(/cdn/shop/files/75th_anniversary_top_background_02_sp.jpg);
        background-size: cover;
        height: 110vw;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
    }
}
.anniversary_10{
    position: absolute; bottom: 166px;
    right: 100px;
}
@media screen and (max-width: 750px) {
    .anniversary_10{
        position: absolute; bottom: 166px;
        right: 0;
    }
    .anniversary_10 img{
        width: 60%;
    }
}
.anniversary_11{
    position: absolute; bottom: 120px;
    left: 100px;
}
@media screen and (max-width: 750px) {
    .anniversary_11{
        position: absolute; bottom: 120px;
        left: 0;
    }
    .anniversary_11 img{
        width: 60%;
    }
}
.anniversary_12{
    position: absolute; top: 65px;
    right: 100px;
}
@media screen and (max-width: 750px) {
    .anniversary_12{
        position: absolute; top: 65px;
        right: 0;
    }
    .anniversary_12 img{
        width: 60%;
    }
}
.anniversary_13{
    position: absolute; top: 66px;
    left: 100px;
}
@media screen and (max-width: 750px) {
    .anniversary_13{
        position: absolute; top: 66px;
        left: 0;
    }
    .anniversary_13 img{
        width: 60%;
    }
}
.anniversary_14{
    max-width: 1720px;
    margin: 0 auto;
    padding-top: 65px;
}
.anniversary_14 img{
    width: 100%;
}
.anniversary_15{
    max-width: 1720px;
    margin: 0 auto;
    margin-top: 65px;
}
.anniversary_15_2{
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: normal !important;
    line-height: 2.4em;
}
@media screen and (max-width: 750px) {
    .anniversary_15{
        width: 90%;
        font-size: 18px;
        text-align: left;
        margin: 15vw 5% 0 5%;
    }
    .anniversary_15_2{
        text-align: left;
        line-height: 1.8em;
    }
}
.anniversary_16{
    max-width: 1920px;
    max-height: 877px;
    margin: 7vw auto 0 auto;
    display: flex;
}
.anniversary_16 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_16{
        display: block;
        width: 100%;
        height: auto;
        margin-top: 20vw;
    }
}
.anniversary_17{
}
@media screen and (max-width: 750px) {
    .anniversary_17 img{
        width: 100%;
    }
}
.anniversary_18{
    font-size: 50px;
    font-weight: bold;
    margin-top: 10vw;
}
@media screen and (max-width: 750px) {
    .anniversary_18{
        font-size: 10vw;
        text-align: center;
        margin-top: 5vw;
    }
}
.anniversary_19{
    max-width: 490px;
    font-size: 16px;
    font-weight: normal;
    line-height: 2.4em;
    margin-top: 50px;
}
@media screen and (max-width: 750px) {
    .anniversary_19{
        width: 90%;
        font-size: 18px;
        text-align: left;
        margin: 5vw 5% 0 5%;
        line-height: 1.8em;
    }
}
.anniversary_20{
    max-width: 1920px;
    max-height: 877px;
    margin: 90px auto 0 auto;
    display: flex;
}
.anniversary_20 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_20{
        display: block;
        width: 100%;
        height: auto;
        margin-top: 20vw;
    }
}
.anniversary_21{
}
@media screen and (max-width: 750px) {
    .anniversary_21 img{
        width: 100%;
    }
}
.anniversary_22{
    font-size: 50px;
    font-weight: bold;
    margin-top: 10vw;
}
@media screen and (max-width: 750px) {
    .anniversary_22{
        font-size: 10vw;
        text-align: center;
        margin-top: 5vw;
    }
}
.anniversary_23{
    max-width: 480px;
    font-size: 16px;
    font-weight: normal;
    line-height: 2.4em;
    margin-top: 50px;
}
@media screen and (max-width: 750px) {
    .anniversary_23{
        width: 90%;
        font-size: 18px;
        text-align: left;
        margin: 5vw 5% 0 5%;
        line-height: 1.8em;
    }
}
.anniversary_24{
    max-width: 1920px;
    height: 893px;
    margin: 90px auto 0 auto;
    display: flex;
}
.anniversary_24 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_24{
        display: block;
        width: 100%;
        height: auto;
        margin-top: 20vw;
    }
}
.anniversary_25{
    font-size: 50px;
    font-weight: bold;
    margin-top: 7vw;
}
@media screen and (max-width: 750px) {
    .anniversary_25{
        text-align: center;
        margin-top: 5vw;
    }
    .anniversary_25 img{
        width: 50vw;
    }
}
.anniversary_26{
    max-width: 490px;
    font-size: 16px;
    font-weight: normal;
    line-height: 2.4em;
    margin-top: 30px;
}
@media screen and (max-width: 750px) {
    .anniversary_26{
        width: 90%;
        font-size: 18px;
        text-align: left;
        margin: 5vw 5% 0 5%;
        line-height: 1.8em;
    }
}
.anniversary_27{
    max-width: 1920px;
    margin: 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_top_background_03_pc.jpg);
    background-size: cover;
    height: 1120px;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
@media screen and (max-width: 750px) {
    .anniversary_27{
        width: 100%;
        margin: 10vw auto 0 auto;
        background-image: url(/cdn/shop/files/75th_anniversary_top_background_03_sp.jpg);
        background-size: cover;
        height: auto;
        background-repeat: no-repeat;
        background-position: center;
        position: relative;
    }
}
.anniversary_28{
    width: 184px;
    margin: 0 auto;
    padding-top: 92px;
}
@media screen and (max-width: 750px) {
    .anniversary_28{
        width: 25vw;
        margin: 0 auto;
        padding-top: 10vw;
    }
}
.anniversary_29{
    margin: 0 auto;
    padding-top: 30px;
    font-size: 50px;
    text-align: center;
    font-weight: normal;
}
@media screen and (max-width: 750px) {
    .anniversary_29{
        width: 100%;
        margin: 0 auto 7vw auto;
        padding-top: 2vw;
        font-size: 7vw;
    }
}
.anniversary_30{
    max-width: 830px;
    margin: 20px auto;
    padding: 15px;
    background-color: #ffffff;
}
@media screen and (max-width: 750px) {
    .anniversary_30{
        width: 90%;
        margin: 0 5%;
    }
}
.anniversary_31{
    width: 100%;
}
.anniversary_32{
    width: 100%;
    text-align: center;
    line-height: 1.8em;
    font-weight: normal;
    padding-top: 20px;
    font-size: 16px;
}
@media screen and (max-width: 750px) {
    .anniversary_32{
        width: 90%;
        margin: 0 5%;
        text-align: left;
        line-height: 1.8em;
        font-weight: normal;
        padding-top: 5vw;
        font-size: 18px;
    }
}
.anniversary_33{
    width: 250px;
    margin: 50px auto 0 auto;
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_33{
        margin-top: 7vw;
        padding: 0 0 10vw 0;
    }
}
.anniversary_34{
    max-width: 1920px;
    margin: 100px auto 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_top_background_04_pc.jpg);
    background-size: cover;
    height: 776px;
    background-repeat: no-repeat;
    background-position: center 50px;
    position: relative;
}
@media screen and (max-width: 750px) {
    .anniversary_34{
        margin: 12vw auto 0 auto;
        height: auto;
        background-repeat: no-repeat;
        background-position: center 15vw;
        position: relative;
        background-size: 210%;
    }
}
.anniversary_35{
    width: 100%;
    font-size: 46px;
    font-weight: normal;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_35{
        font-size: 7vw;
    }
}
.anniversary_36{
    max-width: 820px;
    margin: 80px auto 0 auto;
}
.anniversary_36 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_36{
        width: 90%;
        margin: 10vw 5% 0 5%;
    }
}
.anniversary_37{
    max-width: 1100px;
    padding: 50px 0;
    margin: 0 auto;
    text-align: left;
    font-weight: normal;
    line-height: 2.4em;
    font-size: 16px;
}
@media screen and (max-width: 750px) {
    .anniversary_37{
        width: 90%;
        margin: 10vw 5%;
        line-height: 1.8em;
        padding-top: 0;
        font-size: 18px;
    }
}
.anniversary_38{
    max-width: 1920px;
    margin: 300px auto 0 auto;
    height: 421px;
    position: relative;
}
@media screen and (max-width: 750px) {
    .anniversary_38{
        margin: -10vw auto 0 auto;
        width: 100%;
        height: auto;
        position: relative;
    }
}
.anniversary_39{
    max-width: 1100px;
    margin: 0 auto;
}
.anniversary_39 img{
    width: 100%;
}



/* ITEM --------------------------------------------------------------------------------- */
.anniversary_40{
    max-width: 1920px;
    margin: 60px auto 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_item_background_01_pc.jpg);
    background-size: cover;
    max-height: 1020px;
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 750px) {
    .anniversary_40{
        width: 100%;
        margin: 60px auto 0 auto;
        background-image: url(/cdn/shop/files/75th_anniversary_item_background_01_sp.jpg);
        background-size: cover;
        height: 155vw;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.anniversary_41{
    margin: 0 auto;
    padding-top: 210px;
    max-width: 310px;
    font-size: min(2.3vw,46px);
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.anniversary_41 img{
    width: 84%;
    margin: 10% 8%;
}
@media screen and (max-width: 750px) {
    .anniversary_41{
        margin: 0 auto;
        padding-top: 8vw;
        font-size: 6.6vw;
        font-weight: 500;
        letter-spacing: 0.1em;
        white-space: nowrap;
        width: 45%;
    }
    .anniversary_41 img{
        width: 84%;
        margin: 6% 8%;
    }
}
/* 20250826 */
.anniversary_42{
    max-width: 885px;
    /* max-width: 826px; */
    margin: 0 auto;
    padding: 150px 0;
}
.anniversary_42 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_42 {
        width: 96%;
        padding: 0;
        margin-top: -5vw;
    }
}

.anniversary_43{
    display: flex;
    justify-content: space-around;
    width: 70%;
    margin: 0 10% 0 21%;
}
@media screen and (max-width: 750px) {
    .anniversary_43{
        display:block;
        width: 100%;
        margin: 0 auto;
    }
}
.anniversary_44{
    color: #00739a;
}
.anniversary_45{
    max-width: 450px;
    margin: 0 auto 20px auto;
    font-size: 46px;
    text-align: center;
        line-height: 1em;
}
@media screen and (max-width: 750px) {
    .anniversary_45{
        max-width: 450px;
        margin: 0 auto 1vw auto;
        font-size: 8vw;
        text-align: center;
        line-height: 1em;
    }
}
/* 20250826 */
.anniversary_46{
    max-width: 1920px;
    margin: 130px auto 0 auto;
}
.anniversary_46 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_46{
        width: 100%;
        margin: 15vw auto 0 auto;
    }
}
.anniversary_47{
    color: #db551c;
}
.anniversary_48{
    font-size: 20px;
}
@media screen and (max-width: 750px) {
    .anniversary_48{
        font-size: 4vw;
    }
}
.anniversary_49{
    margin: 0 auto;
    padding: 15px 0 30px 0;
    background-color: #ffffff;
}
.anniversary_50{
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between; 
    max-width: 1100px;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .anniversary_50{
        max-width: 90%;
        margin: 0 5%;
    }
}
.anniversary_51{
    width: 250px;
    margin: 0 auto 70px auto;
    position: relative;
    font-size: 16px;
    text-align: center;
}
.anniversary_51 p{
    margin-bottom: 15px;
}
@media screen and (max-width: 750px) {
    .anniversary_51{
        width: 40vw;
        margin: 7vw auto;
        position: relative;
        font-size: 16px;
        text-align: center;
    }
}
.anniversary_52{
    max-width: 1100px;
    margin: 30px auto 0 auto;
    font-size: 16px;
    font-weight: normal;
    line-height: 2.4em;
}
@media screen and (max-width: 750px) {
    .anniversary_52{
        width: 90%;
        margin: 0 5%;
        font-size: 18px;
        font-weight: normal;
        line-height: 1.8em;
    }
}
.anniversary_53{
    max-width: 200px;
    margin: 0 auto;
}
.anniversary_53 img{
    width: 100%;
}
.anniversary_54{
    max-width: 650px;
    margin: 0 auto 20px auto;
    font-size: 46px;
    text-align: center;
    line-height: 1.6em;
}
/* 20250826 */
@media screen and (max-width: 750px) {
    .anniversary_54{
        width: 100%;
        margin: 50px auto 20px auto;
        font-size: 6vw;
        text-align: center;
        line-height: 1.6em;
    }
}
.anniversary_55{
    max-width: 250px;
    margin: 0;
}
@media screen and (max-width: 750px) {
    .anniversary_55{
        width: 50vw;
        margin: 5vw auto 0 auto;
    }
    .anniversary_55 img{
        width: 100%;
    }
}
.anniversary_173{
    color: #929292;
}
.anniversary_174{
    color: #774d31;
}
/* 20250826 */

/* slider */
.sliderArea {
    width: 49%;
    max-height: 700px;
    margin: 0 0 2vw 0;
    padding: 0;
}
@media screen and (max-width: 750px) {
    .sliderArea {
        height: 78vw;
    }
}
.slider{
  width:100%;
  margin:0;
}
.border_01{
    border: 2px solid #029195;
}
.border_02{
    border: 2px solid #db551c;
}
.border_03{
    border: 2px solid #ffb900;
}
/* 20250826 */
.border_04{
    border: 2px solid #929292;
}
.border_05{
    border: 2px solid #774d31;
}
/* 20250826 */
.slider img{
	width:100%;
}
.slider .slick-slide{
	height:auto!important;
}
.slider .slick-next{
    right:0!important;
}
.slider .slick-prev{
    left:0!important;
}
.slider .slick-arrow{
    width: initial!important;
    height: initial!important;
    z-index:2!important;
}
.slider .slick-arrow:before{
    font-size: 30px!important;
}
.prev-arrow {
    display: block;
    padding: 15px 0;
    background-color: #000;
    border-radius: 8px;
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
.prev-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1;
}
@media screen and (max-width: 750px) {
    .prev-arrow {
        display: none !important;
    }
}
.prev-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6px solid transparent;
    border-left: 0 solid transparent;
    border-right: 9px solid #000;
    border-bottom: 6px solid transparent;
    box-sizing: border-box;
    z-index: 1;
}
.next-arrow {
    display: block;
    padding: 15px 0;
    background-color: #000;
    border-radius: 8px;
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .next-arrow {
        display: none !important;
    }
}
.next-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    width: 40px;
    height: 40px;
    margin: auto;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.5);
}
.next-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 0;
    height: 0;
    margin: auto;
    border-top: 6px solid transparent;
    border-right: 0 solid transparent;
    border-left: 9px solid #000;
    border-bottom: 6px solid transparent;
    box-sizing: border-box;
}
.slick-dots li button:before{
    font-size: 14px !important;
}
.slick-dots li {
    margin: 0 !important;
}
.slick-dots {
    position: absolute !important;
    bottom: 0px !important;
}
@media screen and (max-width: 750px) {
    .slick-dots {
        position: absolute !important;
        bottom: -5vw !important;
    }
}
.slick-dotted.slick-slider {
    margin-bottom: 0 !important;
}
.slick-dotted.slick-slider {
    margin-bottom: 10px !important;
}
@media screen and (max-width: 750px) {
    .slick-dotted.slick-slider {
        margin-bottom: 2vw !important;
    }
}



/* MILESTONE --------------------------------------------------------------------------------- */
.anniversary_56{
    max-width: 1920px;
    margin: 60px auto 0 auto;
    background-image: url(/cdn/shop/files/75th_anniversary_milestone_background_01_pc.jpg?v=1739344197);
    background-size: cover;
    max-height: 808px;
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 750px) {
    .anniversary_56{
        width: 100%;
        margin: 60px auto 0 auto;
        background-image: url(/cdn/shop/files/milestone_background_01_sp.jpg);
        background-size: cover;
        height: 188vw;
        background-repeat: no-repeat;
        background-position: center;
    }
}
.anniversary_57{
    max-width: 561px;
    margin: 0 auto;
    text-align: center;
}
.anniversary_57 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_57{
        width: 90%;
        margin: 0 auto;
        text-align: center;
    }
}
.anniversary_58{
    margin: 0 auto;
    padding-top: 80px;
    max-width: 1920px;
    font-size: 60px;
    font-weight: normal;
    line-height: 1.2em;
}
.anniversary_58 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_58{
        margin: 0 5%;
        padding-top: 8vw;
        font-size: 10vw;
        font-weight: 500;
        letter-spacing: 0em;
        white-space: nowrap;
        width: 90%;
    }
    .anniversary_58 img{
        width: 100%;
    }
}
.anniversary_59{
    font-size: 100px;
}
@media screen and (max-width: 750px) {
    .anniversary_59{
        font-size: 14vw;
        font-weight: 530;
    }
}
.anniversary_60{
    font-size: 68px;
}
@media screen and (max-width: 750px) {
    .anniversary_60{
        font-size: 10vw;
        font-weight: 500;
    }
}
.anniversary_61{
    margin: 0 auto;
    padding: 1% 0 3% 0;
    width: 100%;
    font-size: 28px;
    font-weight: 550;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
    .anniversary_61{
        margin: 0 5% 5vw 5%;
        padding-top: 3vw;
        font-size: 5vw;
        letter-spacing: 0;
        white-space: nowrap;
        width: 90%;
    }
}
.anniversary_62{
    width: 100%;
    margin: 0 auto;
    padding: 0 0 2.5% 0;
    font-size: min(0.7vw,14px);
    font-weight: normal;
    line-height: 2.4em;
}
@media screen and (max-width: 750px) {
    .anniversary_62{
        width: 90%;
        padding: 0;
        font-size: 4vw;
        line-height: 1.8em;
        text-align: left;
    }
}
.anniversary_63{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    list-style: none;
    border-bottom: 1px solid #e7e7e7;
    margin: 0;
    padding: 40px 0 35px 0;
    width: 100%;
    list-style-type: none;
}
.anniversary_63 li a{
    color: #000;
    text-decoration: none;
}
.anniversary_63 li a:hover{
    color: #888;
}
@media screen and (max-width: 750px) {
    .anniversary_63{
        padding: 20px 0;
    }
}
.anniversary_64{
    width: 120px;
    text-align: center;
    font-size: 18px;
}
@media screen and (max-width: 750px) {
    .anniversary_64{
        max-width: none;
        width: 33%;
        height: 20%;
    }
}
.anniversary_65{
    vertical-align: 3px;
}
.anniversary_65 a{
    color: #000; text-decoration: none;
}
@media screen and (max-width: 750px) {
    .anniversary_65{
        margin-top: 3vw;
        vertical-align: 1vw;
    }
}
.anniversary_66{
    vertical-align: 7px;
}
@media screen and (max-width: 750px) {
}
.anniversary_67{
    max-width: 1920px;
    margin: 118px auto 60px auto;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_67{
        width: 100%;
        margin: 7vw auto 3vw auto;
        text-align: center;
    }
    .anniversary_67 img{
        width: 42%;
    }
}
.anniversary_68, .anniversary_68_2, .anniversary_68_3, .anniversary_68_4{
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 750px) {
    .anniversary_68{
        margin: 10vw auto 0 auto;
        display: block;
    }
    .anniversary_68_2{
        margin: 15vw auto 0 auto;
        display: block;
    }
    .anniversary_68_3{
        margin: 6vw auto 0 auto;
        display: block;
    }
    .anniversary_68_4{
        margin: 0 auto;
        display: block;
    }
}
.anniversary_69{
    width: 50%;
}
@media screen and (max-width: 750px) {
    .anniversary_69{
        width: 90%;
        margin: 0 5%;
    }
}
.anniversary_70{
    margin: 0 7% 0 43%;
    max-width: 450px;
}
@media screen and (max-width: 750px) {
    .anniversary_70{
        width: 90%;
        margin: 0 auto;
    }
}
.anniversary_71, .anniversary_71_2{
    font-size: min(2.1vw,40px);
    margin: 100px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_71{
        font-size: 8vw;
        margin: 6vw 0;
        line-height: 1.2em;
    }
    .anniversary_71_2{
        font-size: 8vw;
        margin: 0 0 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_72{
    font-size: 16px;
    line-height: 2.4em;
}
@media screen and (max-width: 750px) {
    .anniversary_72{
        font-size: 4vw;
        line-height: 1.6em;
    }
}
.anniversary_73, .anniversary_73_2{
    max-width: 372px;
    margin: 23% 0 0 32%;
}
.anniversary_73 img, .anniversary_73_2 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_73{
        width: 100%;
        margin: 22vw  0 0 0;
    }
    .anniversary_73_2{
        width: 100%;
        margin: 17vw  14vw 0 0;
    }
}
.anniversary_74{
    display: flex;
    flex-flow: column;
    width: 0.5%;
}
@media screen and (max-width: 750px) {
    .anniversary_74{
        margin-top: 12vw;
    }
}
.anniversary_75_1 {
    border-left: 2px dotted black;
    width: 2px;
    height: 780px;
    margin-left: 4px;
}
.anniversary_75_2 {
    border-left:11px dotted black;
    width: 11px;
    height: 10px;
    margin: 2px 0;
}
.anniversary_75_3 {
    border-left: 2px dotted black;
    width: 2px;
    height: 600px;
    margin: 0 0 2px 4px;
}
.anniversary_75_4 {
    border-left: 2px dotted black;
    width: 2px;
    height: 490px;
    margin: 0 0 2px 4px;
}
.anniversary_75_5 {
    border-left: 2px dotted black;
    width: 2px;
    height: 550px;
    margin: 0 0 2px 4px;
}
.anniversary_75_6 {
    border-left: 2px dotted black;
    width: 2px;
    height: 720px;
    margin: 0 0 2px 4px;
}
.anniversary_75_7 {
    border-left: 2px dotted black;
    width: 2px;
    height: 220px;
    margin: 0 0 2px 4px;
}
.anniversary_75_8 {
    border-left: 2px dotted black;
    width: 2px;
    height: 50px;
    margin: 0 0 2px 4px;
}
.anniversary_75_9 {
    border-left: 2px dotted black;
    width: 2px;
    height: 670px;
    margin: 0 0 2px 4px;
}
.anniversary_75_10 {
    border-left: 2px dotted black;
    width: 2px;
    height: 750px;
    margin-left: 4px;
}
.anniversary_75_11 {
    border-left: 2px dotted black;
    width: 2px;
    height: 150px;
    margin-left: 4px;
}
@media screen and (max-width: 750px) {
}
.anniversary_76, .anniversary_76_2, .anniversary_76_3{
    width: 49.5%;
}
@media screen and (max-width: 750px) {
    .anniversary_76{
        width: 90%;
        margin: 0 5%;
    }
    .anniversary_76_2{
        width: 100%;
        margin: 0;
    }
    .anniversary_76_3{
        width: 90%;
        margin: 15vw 5% 0 5%;
    }
}
.anniversary_77{
    max-width: 520px;
    margin: 0 0 0 7%
}
.anniversary_77 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_78{
    max-width: 629px;
    margin: 5% 0 0 7%;
}
.anniversary_78 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_78{
        max-width: 90%;
        margin: 10vw 5% 0 5%;
    }
}
.anniversary_79{
    max-width: 801px;
    margin: 50px 0 0 22.6%;
}
.anniversary_79 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_79{
        width: 100%;
        margin: 0;
    }
}
.anniversary_80{
    max-width: 629px;
    margin: 128px 43.2% 0 7%;
}
@media screen and (max-width: 750px) {
    .anniversary_80{
        margin: 0;
        width: 100%;
    }
}
.anniversary_81{
    max-width: 467px;
    margin: 135px 0 0 46%;
}
.anniversary_81 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_81{
        width: 90%;
        margin: 15vw 5% 0 5%;
    }
}
.anniversary_82{
    max-width: 313px;
    margin: 0 0 0 7%
}
.anniversary_82 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_82{
        margin: 0;
        width: 100%;
    }
}
.anniversary_83, .anniversary_83_2{
    width: 49.5%;
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 750px) {
    .anniversary_83{
        width: 60%;
        margin: 15vw auto 0 auto;
    }
    .anniversary_83_2{
        width: 90%;
        margin: 0 5%;
    }
    .anniversary_83_3{
        width: 50%;
        margin: -3vw auto 0 auto;
    }
}
.anniversary_84{
    max-width: 134px;
    margin-top: 240px;
}
.anniversary_84 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_85{
    max-width: 294px;
    margin: 50px 0 0 215px;
}
.anniversary_85 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_84{
    max-width: 134px;
    margin-top: 240px;
}
@media screen and (max-width: 750px) {
}
.anniversary_87{
    max-width: 134px;
    margin-top: -170px;
}
@media screen and (max-width: 750px) {
}
.anniversary_88{
    max-width: 301px;
    margin: -170px 0 0 8.3%;
}
.anniversary_88 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_89{
    width: 50%;
    display: flex;
}
@media screen and (max-width: 750px) {
    .anniversary_89{
        width: 100%;
        display: block;
    }
}
.anniversary_90{
    max-width: 20px;
    margin-top: 90px;
}
.anniversary_90 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_91, .anniversary_91_2{
    font-size: min(2.1vw,40px);
    margin: 160px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_91{
        font-size: 8vw;
        margin: 6vw 0;
    }
    .anniversary_91_2{
        font-size: 8vw;
        margin: 0 0 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_92{
    max-width: 313px;
    margin: 160px 0 0 7%;
}
.anniversary_92 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_92{
        width: 100%;
        margin: 0;
    }
}
.anniversary_93, .anniversary_93_2, .anniversary_93_3{
    background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
    background-size: 103vw;
    background-repeat: no-repeat;
    background-position: center top 60px;
}
@media screen and (max-width: 750px) {
    .anniversary_93{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center top;
        margin-top: -20vw;
        padding-top: 35vw;
    }
    .anniversary_93_2{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center top;
        margin-top: -22vw;
        padding-top: 22vw;
    }
    .anniversary_93_3{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center top;
        margin-top: -20vw;
        padding-top: 22vw;
    }
}
.anniversary_94{
    background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
    background-size: 103vw;
    background-repeat: no-repeat;
    background-position: center bottom 60px;
}
@media screen and (max-width: 750px) {
    .anniversary_94{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center bottom 20vw;
        margin-top: -45vw;
        padding-top: 45vw;
    }
}
.anniversary_95{
    max-width: 294px;
    margin: 40px 0 0 57.3%;
}
.anniversary_95 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_95{
        width: 60%;
        margin: 10vw auto 0 auto
    }
}
.anniversary_96{
    max-width: 629px;
    margin: 90px 43.2% 0 7%;
}
@media screen and (max-width: 750px) {
    .anniversary_96{
        width: 100%;
        margin: 0;
    }
}
.anniversary_97{
    font-size: min(2.1vw,40px);
    margin: 0 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_97{
        font-size: 8vw;
        margin: 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_98, .anniversary_98_2{
    max-width: 1920px;
    margin: 80px auto 60px auto;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_98{
        width: 100%;
        margin: 15vw auto 0 auto;
        text-align: center;
    }
    .anniversary_98 img{
        width: 45%;
    }
    .anniversary_98_2{
        width: 100%;
        margin: 7vw auto 0 auto;
        text-align: center;
    }
    .anniversary_98_2 img{
        width: 45%;
    }
}
.anniversary_99, .anniversary_99_2{
    max-width: 1920px;
    margin: 80px auto 0 auto;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_99{
        width: 100%;
        margin: 15vw auto 20px auto;
        text-align: center;
    }
    .anniversary_99 img{
        width: 45%;
    }
    .anniversary_99_2{
        width: 100%;
        margin: -7vw auto 20px auto;
        text-align: center;
    }
    .anniversary_99_2 img{
        width: 45%;
    }
}
.anniversary_100{
    max-width: 560px;
    margin: 50px 0 0 7%
}
.anniversary_100 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_100{
        margin: 0 auto;
        display: block;
    }
}
.anniversary_101{
    font-size: min(2.1vw,40px);
    margin: 170px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_101{
        font-size: 8vw;
        margin: 6vw 0;
    }
}
.anniversary_102{
    max-width: 25px;
    margin-top: 650px;
}
.anniversary_102 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_103, .anniversary_103_2, .anniversary_103_3{
    max-width: 1920px;
    margin: -70px auto 60px auto;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_103{
        width: 100%;
        margin: 15vw auto 20px auto;
        text-align: center;
    }
    .anniversary_103 img{
        width: 45%;
    }
    .anniversary_103_2{
        width: 100%;
        margin: 5vw auto 20px auto;
        text-align: center;
    }
    .anniversary_103_2 img{
        width: 45%;
    }
    .anniversary_103_3{
        width: 100%;
        margin: 8vw auto 20px auto;
        text-align: center;
    }
    .anniversary_103_3 img{
        width: 45%;
    }
}
.anniversary_104{
    max-width: 338px;
    margin: -20px 0 0 57.3%;
}
.anniversary_104 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_104{
        width: 60%;
        margin: 0 auto
    }
}
.anniversary_105{
    max-width: 629px;
    margin: 200px 43.2% 0 7%;
}
@media screen and (max-width: 750px) {
    .anniversary_105 {
        font-size: 8vw;
        margin: 6vw 0;
    }
}.anniversary_106{
    max-width: 198px;
    margin-top: -40px;
}
.anniversary_106 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_107{
    font-size: min(2.1vw,40px);
    margin: 75px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_107 {
        font-size: 8vw;
        margin: 6vw 0;
    }
}.anniversary_108{
    max-width: 313px;
    margin: 10px 0 0 7%
}
.anniversary_108 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_108{
        margin: 0 auto
    }
}
.anniversary_109, .anniversary_109_2{
    max-width: 396px;
    margin-top: 370px;
}
.anniversary_109 img, .anniversary_109_2 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_109{
        width: 100%;
        margin: 15vw 0 0 5vw;
    }
    .anniversary_109_2{
        width: 100%;
        margin: 20vw 10vw 0 0;
    }
}
.anniversary_110{
    background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
    background-size: 103vw;
    background-repeat: no-repeat;
    background-position: center bottom 220px;
}
@media screen and (max-width: 750px) {
    .anniversary_110{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center bottom 110px;
        margin-top: -45vw;
        padding-top: 45vw;
    }
}
.anniversary_111{
    font-size: 13px;
}
@media screen and (max-width: 750px) {
}
.anniversary_112{
    max-width: 421px;
    margin-top: -100px;
}
.anniversary_112 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_113{
    font-size: min(2.1vw,40px);
    margin: 120px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_113 {
        font-size: 8vw;
        margin: 6vw 0;
    }
}
.anniversary_114{
    max-width: 709px;
    margin: 240px 0 0 7%
}
.anniversary_114 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_114{
        width: 100%;
        margin: 9vw 0 0 0;
    }
}
.anniversary_115{
    max-width: 184px;
    margin-top: 900px;
}
@media screen and (max-width: 750px) {
}
.anniversary_116{
    background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
    background-size: 103vw;
    background-repeat: no-repeat;
    background-position: center top 60px;
}
@media screen and (max-width: 750px) {
    .anniversary_116{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center bottom 110px;
        margin-top: -45vw;
        padding-top: 45vw;
    }
}
.anniversary_117{
    background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
    background-size: 103vw;
    background-repeat: no-repeat;
    background-position: center bottom 60px;
}
@media screen and (max-width: 750px) {
    .anniversary_117{
        background-image: url(/cdn/shop/files/milestone_background_02_pc.jpg?v=1739539308);
        background-size: 150vw;
        background-repeat: no-repeat;
        background-position: center bottom 110px;
        margin-top: -45vw;
        padding-top: 45vw;
    }
}
.anniversary_118{
    max-width: 194px;
    margin-top: 170px
}
.anniversary_118 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_119{
    max-width: 290px;
    margin: 130px 0 0 61%;
}
.anniversary_119 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_119{
        width: 60%;
        margin: -3vw auto 0 auto;
    }
}
.anniversary_120{
    max-width: 312px;
    margin: 0 0 0 7%
}
.anniversary_120 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_120{
        width: 60%;
        margin: 15vw auto 0 auto;
    }
}
.anniversary_121{
    font-size: min(2.1vw,40px);
    margin: 80px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_121 {
        font-size: 8vw;
        margin: 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_122{
    font-size: min(2.1vw,40px);
    margin: 190px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_122 {
        font-size: 8vw;
        margin: 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_123{
    max-width: 560px;
    margin: 70px 0 0 36.8%;
}
.anniversary_123 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_123{
        width: 100%;
        margin: 0;
    }
}
.anniversary_124{
    max-width: 629px;
    margin: 260px 43.1% 0 7%;
}
@media screen and (max-width: 750px) {
    .anniversary_124 {
        font-size: 8vw;
        margin: 0;
    }
}
.anniversary_125{
    max-width: 711px;
    margin: 100px 0 0 0;
}
.anniversary_125 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_125{
        width: 100%;
        margin: 15vw 0 0 0;
    }
}
.anniversary_126{
    max-width: 322px;
    margin: 20px 0 0 57.8%;
}
.anniversary_126 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_126{
        width: 65%;
        margin: 15vw auto 0 auto;
    }
}
.anniversary_127{
    max-width: 311px;
    margin-top: -250px;
}
.anniversary_127 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_128{
    font-size: min(2.1vw,40px);
    margin: 100px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_128 {
        font-size: 8vw;
        margin: 6vw 0;
        line-height: 1.2em;
    }
}
.anniversary_129{
    max-width: 629px;
    margin: 90px 43.1% 0 7%;
}
@media screen and (max-width: 750px) {
    .anniversary_129 {
        font-size: 8vw;
        margin: 6vw 0;
    }
}
.anniversary_130{
    max-width: 25px;
    margin: 220px 0 35px 0;
}
.anniversary_130 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_131{
    font-size: min(2.1vw,40px);
    margin: -240px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_131 {
        font-size: 8vw;
        margin: 6vw 0;
    }
}
.anniversary_132{
    max-width: 356px;
    margin: 120px 0 0 7%
}
.anniversary_132 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_132{
        width: 70%;
        margin: 7vw auto 0 auto;
    }
}
.anniversary_133{
    max-width: 237px;
    margin: -100px 17.8% 0 0;
}
.anniversary_133 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_134{
    max-width: 396px;
    margin: 100px 0 0 48.4%;
}
.anniversary_134 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_134{
        width: 70%;
        margin: 15vw auto 0 auto;
    }
}
.anniversary_135{
    max-width: 112px;
    margin-top: 530px;
    position: relative;
    z-index: -1;
}
.anniversary_135 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_136{
    font-size: min(2.1vw,40px);
    margin: -640px 0 35px 0;
}
@media screen and (max-width: 750px) {
    .anniversary_136 {
        font-size: 8vw;
        margin: 0 0 6vw 0;
    }
}
.anniversary_137{
    max-width: 800px;
    margin: 60px 0 0 0;
}
.anniversary_137 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_137{
        width: 100%;
        margin: 0;
    }
}
.anniversary_138{
    max-width: 10px;
    margin-top: 430px;
}
.anniversary_138 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
}
.anniversary_139{
    max-width: 1920px;
    margin: -80px auto 0 auto;
    background-image: url(/cdn/shop/files/milestone_background_03_pc_4e499759-e168-41d2-9ca3-31e2876be37a.jpg?v=1739537024);
    background-size: cover;
    /* 20250826 */
    max-height: 1280px;
    /* 20250826 */
    background-repeat: no-repeat;
    background-position: center;
}
@media screen and (max-width: 750px) {
    .anniversary_139{
        width: 100%;
        /* 20250826 */
        margin: -12vw auto 0 auto;
        background-image: url(/cdn/shop/files/75th_anniversary_milestone_background_03_sp.jpg);
        background-size: cover;
        height: 210vw;
        background-repeat: no-repeat;
        background-position: center;
        /* 20250826 */
    }
}
.anniversary_140{
    max-width: 230px;
    margin: 0 auto;
    padding-top: 130px;
}
.anniversary_140 img{
    width: 100%;
    margin: 0 auto;
}
@media screen and (max-width: 750px) {
    .anniversary_140{
        padding-top: 25vw;
        width: 40%;
    }
}
.anniversary_141{
    margin: 0 auto;
    padding-top: 20px;
    max-width: 310px;
    font-size: min(2.3vw,42px);
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
@media screen and (max-width: 750px) {
    .anniversary_141{
        margin: 0 auto;
        padding-top: 0;
        font-size: 6.6vw;
        font-weight: 500;
        letter-spacing: 0.1em;
        white-space: nowrap;
        width: 45%;
    }
}

/* 20250826 */
.anniversary_142{
    max-width: 1268px;
    /*max-width: 634px;*/
    margin: -80px auto 10px auto;
    padding: 0;
}
.anniversary_142 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_142 {
        margin: 0 auto 10px auto;
        width: 94%;
    }
}
.anniversary_143{
    width: 250px;
    margin: -20px auto 0 auto;
    padding-bottom: 100px;
    font-size: 16px;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_143{
        margin-top: 7vw;
        padding: 0 0 10vw 0;
    }
}
.anniversary_144{
     width: 100%;
     text-align: center;
}
@media screen and (max-width: 750px) {
}
.anniversary_145{
    max-width: 1920px;
    margin: -130px auto 60px auto;
    padding-top:-70px;
    text-align: center;
}
@media screen and (max-width: 750px) {
    .anniversary_145{
        width: 100%;
        margin: 15vw auto 20px auto;
        text-align: center;
    }
    .anniversary_145 img{
        width: 45%;
    }
}
.anniversary_146{
    width: 40%;
}
.anniversary_148{
    font-size: 26px;
}
@media screen and (max-width: 750px) {
    .anniversary_148{
        font-size: 7vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_149{
        margin-left: 0%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_150{
        display: flex;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_151{
        margin-left: 49%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_152{
        width: 49%;
        margin: 17vw  0 0 0;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_153{
        width: 70%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_154{
        width: 1%;
        margin-top: 12vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_155{
        width: 80%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_156{
        margin-left: 0;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_157{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_158{
        width: 50%;
        margin-top: 25vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_159{
        width: 20vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_160{
        width: 20vw;
        margin-top: 10vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_161{
        width: 1%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_162{
        width: 49%;
        text-align: right;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_163{
        width: 2vw;
        margin-top: 10vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_164{
        width: 100%;
        margin: 12vw 0 0 5vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_165{
        width: 90%;
        margin-left: 10%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_166{
        width: 60%;
        margin-left: 40%;
        margin-top: -5vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_167{
        width: 100%;
        margin: 15vw 10vw 0 0;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_168{
        width: 100%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_169{
        display: flex;
        width: 49%;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_170{
        width: 2vw;
    }
}
@media screen and (max-width: 750px) {
    .anniversary_171{
        width: 50%;
        margin-top: 25vw;
        z-index: -1;
    }
}
.anniversary_172{
    max-width: 521px;
    margin: 60px 0 150px 42%;
}
.anniversary_172 img{
    width: 100%;
}
@media screen and (max-width: 750px) {
    .anniversary_172{
        width: 90%;
        margin: 15vw auto 0 auto;
    }
}
.anniversary_175{
}
@media screen and (max-width: 750px) {
}
.anniversary_176{
}
@media screen and (max-width: 750px) {
}
.anniversary_177{
}
@media screen and (max-width: 750px) {
}
.anniversary_178{
}
@media screen and (max-width: 750px) {
}
.anniversary_179{
}
@media screen and (max-width: 750px) {
}
.anniversary_180{
}
@media screen and (max-width: 750px) {
}

/* anniversary_30にかけられた透明カバーだけを無効化する */
.anniversary_30::before,
.anniversary_30::after {
  pointer-events: none;
}
/* 20250826 */

.anniversary_63 img {
  vertical-align: middle !important; 
}
















