@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap");
.pc-none {
display: none !important;
}
.header-parent {
position: fixed;
top: 0;
left: 0;
background: white;
z-index: 11;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 101%;
height: 14vw;
max-height: 130px;
transition: all 0ms 300ms;
}
.header-parent img {
width: 26vw;
max-width: 260px;
height: auto;
padding-left: 15px;
}
.header-content-center {
width: 50%;
}
.header-content-center p {
padding: 0% 5%;
font-size: clamp(5px, 2.2vw, 20px);
letter-spacing: 0.4px;
line-height: 1.5;
font-family: 'Noto Sans JP';
}
.header-content-right {
width: 15%;
height: 100%;
background: #bd1821;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.header-hr,
.header-hr::before,
.header-hr::after {
content: '';
height: 0.1vw;
max-height: 2px;
width: 6vw;
max-width: 100px;
background-color: #fff;
position: absolute;
transform-origin: 50% 50%;
}
.header-hr::before {
top: -2vw;
right: 0%;
transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header-hr::after {
top: 2vw;
right: 0%;
transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header-hr.animate {
background-color: #bd1821;
transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-hr.animate::after {
top: 0 !important;
transform: rotate(45deg);
transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.header-hr.animate::before {
top: 0 !important;
transform: rotate(-45deg);
transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.navigation-menu {
width: 100%;
height: max-content;
position: fixed;
background: #bd1821;
z-index: 10;
top: -160vw;
padding: 6vw 0px;
display: flex;
flex-direction: column;
transition: 1s;
transition-timing-function: ease;
box-shadow: 3px 4px 16px #191818a8;
justify-content: space-evenly;
font-family: 'Noto Sans JP';
}
.is-active {
top: 14vw !important;
transition: 1s;
transition-timing-function: ease;
}
.navigation-menu-content {
width: 80%;
margin: auto;
height: max-content;
display: block;
justify-content: space-evenly;
align-items: center;
color: white;
font-size: 20px;
flex-direction: column;
padding-bottom: 3vw;
}
.navigation-menu-content-1 {
letter-spacing: 1px;
text-align: left;
}
.navigation-menu-content-2,
.navigation-menu-content-3 {
display: grid;
flex-direction: row;
width: 100%;
height: max-content;
margin: auto;
grid-template-columns: auto auto;
grid-gap: 3vw;
letter-spacing: 1px;
text-align: center;
justify-items: start;
}
.navigation-menu-content-2 {
padding: 5% 0%;
}
.navigation-menu-content-3 {
padding-top: 5%;
}
.navigation-menu-sub-content {
font-size: clamp(10px, 3vw, 15px);
width: 37vw;
display: flex;
justify-content: flex-start;
align-items: center;
border-left: 1px solid white;
padding-left: 6vw;
line-height: 100%;
}
a.navlink {
text-decoration: none;
color: inherit;
}
a.navlink2 {
color: inherit;
text-decoration: none;
}