*,
 :after,
 :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
html {
    margin-top: 0 !important;
}
body {
    background-color: #FFFFFF;
    /* font-family: YakuHanJP,"游ゴシック",YuGothic,"ヒラギノ角ゴ  ProN W3",Hiragino Kaku Gothic ProN,"メイリオ",Meiryo,sans-serif; */
}
body.fixed {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}
h1,h2,h3,h4,h5,h6{
display:inline;
margin:0;
padding:0;
font-size:1em;
font-weight:normal;
}


a {
    text-decoration: none;
    color: #292929;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    margin: 0;
}
@media (min-width: 769px) {
    [sp]{
        display: none !important;
    }
}
@media (max-width: 768px) {
    [pc]{
        display: none !important;
    }
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 8.125vw;
    background-image: url(../assets/images/header_bg.png);
    background-size: 105% 125%;
    background-position: center;
}
header .logo {
    display: flex;
    align-items: center;
    padding-left: 3.125vw;
    cursor: pointer;
}
header .logo img {
    display: block;
    width: 15.8vw;
}
header .logo .logo_text {
    display: flex;
    flex-direction: column;
    margin-left: 0.9375vw;
}
header .logo .logo_text .top {
    font-family: UDShinGoPr6-Light;
    font-weight: normal;
    font-size: 0.76vw;
    line-height: 1.5vw;
    color: #231815;
    letter-spacing: 0.02em;
}
header .logo .logo_text .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}
header .logo .logo_text .bottom .brand {
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 1.56vw;
    line-height: 1.6vw;
    color: #231815;
    display: flex;
    flex-direction: column;
}
header .logo .logo_text .bottom .name {
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 3.47vw;
    line-height: 3.2vw;
    letter-spacing: -0.02em;
    color: #231815;
}
header .nav {
    display: flex;
    align-items: center;
    margin-right: 1.56vw;
}
header .nav .menu_item {
    font-family: KaiminSoStd-Heavy;
    font-size: 1.75vw;
    line-height: 3.1vw;
    color: #000000;
    margin: 1vw;
    padding: 5px 0;
    cursor: pointer;
    position: relative;
}
header .nav .menu_item.active {
    border-bottom: 2.83px solid #C30D23;
}
header .nav .menu_item:hover {
    border-bottom: 2.83px solid #C30D23;
}
header .nav_menu {
    cursor: pointer;
    margin-right: 7.5vw;
    width: 10vw;
    height: 10vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    z-index: 1000;
}
header .nav_menu.open {
    background-color: transparent;
    position: fixed;
    right: 0;
    /* top: 5vw;
    margin-right: 0; */
}
header .nav_menu > div {
    width: 7vw;
    height: 1vw;
    border-radius: 0.5vw;
    background-color: #505050;
    margin: 0.4vw 0;
    transition: 0.4s;
}
header .nav_menu.open .line1 {
    -webkit-transform: rotate(-45deg) translate(-1.2vw, 1vw);
    transform: rotate(-45deg) translate(-1.2vw, 1vw);
}
header .nav_menu.open .line2 {
    opacity: 0;
}
header .nav_menu.open .line3 {
    -webkit-transform: rotate(45deg) translate(-1.4vw, -1.4vw);
    transform: rotate(45deg) translate(-1.4vw, -1.4vw);
}
header .menu_area {
    display: flex;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-color: white;
    /* transition: 0.4s; */
    
    flex-direction: column;
    align-items: center;
    padding-top: 20vw;
    transform: translateY(-100%);
}
header .menu_area.show {
    transform: none;
}
header .menu_area .menu_item {
    font-family: KaiminSoStd-Heavy;
    font-size: 5vw;
    line-height: 10vw;
    position: relative;
    width: 60%;
    text-align: center;
}
header .menu_area .menu_item:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #000000;
    transition: 1s;
}
header .menu_area.show .menu_item:after {
    width: 100%;
}


footer {
    margin-top: 1.56vw;
}
footer .footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    width: 90%;
}
footer .footer_content .nav {
    display: flex;
}
footer .footer_content .nav > div {
    display: flex;
    align-items: center;
}
footer .footer_content .nav .menu_item {
    font-family: KozGoPro-Medium;
    font-size: 1vw;
    line-height: 1.83vw;
    color: #666464;
    margin-right: 1vw;
    cursor: pointer;
    border-bottom: 1px solid transparent;
}
footer .footer_content .nav .menu_item:hover {
    border-bottom: 1px solid #C30D23;
}
footer .footer_content .google_analytics {
    display: flex;
    align-items: flex-end;
}
footer .footer_content .google_analytics img {
    width: 1.82vw;
    display: block;
    margin-right: 0.6vw;
}
footer .footer_content .google_analytics span {
    font-family: KozGoPro-Medium;
    font-weight: normal;
    font-size: 1.05vw;
    line-height: 1.82vw;
    color: #666464;
}
footer .copyright {
    position: relative;
    margin-top: 0.8vw;
}
footer .copyright img {
    width: 100%;
    display: block;
}
footer .copyright .item {
    position: absolute;
    right: 5%;
    bottom: 1.875vw;
    font-family: KozGoPro-Light;
    font-size: 1.18vw;
    line-height: 2.07vw;
    color: #000000;
}
footer .copyright.second .item {
    color: #ffffff;
}

.slider {
    width: 100%;
    margin-bottom: 5.2vw !important;
}
.slider .slider_item {
    width: 100vw;
    height: 48vw;
    display: flex;
    align-items: center;
    outline: none;
}
.slider .slider_item img {
    width: 100%;
    display: block;
}
.slider .slick-dots {
    bottom: -2.6vw;
    transform: translateY(50%);
}
.slider .slick-dots li {
    margin: 0 0.4vw;
}
.slider .slick-dots li button:before {
    content: '';
    width: 1vw;
    height: 1vw;
    border: 1px solid #54C3F1;
    border-radius: 50%;
    opacity: 1;
    background-color: transparent;
}
.slider .slick-dots li.slick-active button:before {
    background-color: #54C3F1;
}

.section_title {
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 2.1vw;
    letter-spacing: -0.12em;
    line-height: 3.65vw;
    text-align: center;
    color: #000;
    margin-bottom: 1.875vw;
    display: inline-block;
    position: relative;
}
.section_title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    border-bottom: 2.83px solid #C30D23;
}
.section_description {
    font-family: UDShinGoPr6-Regular;
    font-weight: normal;
    font-size: 1.56vw;
    line-height: 2.3vw;
    color: #231815;
    text-align: center;
    margin-bottom: 10px;
}
.section_content {
    margin-top: 15px;
    display: flex;
}
.section_spec {
    position: absolute;
}
.section_spec img {
    width: 100%;
    display: block;
}

.container {
    position: relative;
    min-height: 50vw;
}
.container img.bg {
    position: absolute;
}
.container .bg.item_1 {
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.section_header {
    width: 100%;
    position: relative;
}
.section_header img {
    width: 100%;
    display: block;
}
.section_header .header_text {
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 5.21vw;
    letter-spacing: -0.12em;
    line-height: 9.1vw;
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}

.page_description {
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 2.5vw;
    letter-spacing: -0.25vw;
    line-height: 2.58vw;
    text-align: left;
    color: #231815;
    margin: auto 5.44vw;
}

.section_news {
    text-align: center;
    padding-top: 1vw;
}
.section_news .section_content {
    width: 55%;
    margin: auto;
    min-height: 15vw;
    flex-direction: column;
}
.section_news .section_content .news_item {
    font-family: UDShinGoPr6-Regular;
    font-weight: normal;
    font-size: 1.56vw;
    line-height: 2.3vw;
    text-align: left;
    color: #231815;
}
.section_news .section_content .news_item:hover {
    text-decoration: underline;
}

.section_gift {
    text-align: center;
    padding-top: 1vw;
    position: relative;
}
.section_gift .section_spec {
    width: 15.8vw;
    top: 0;
    right: 5vw;
    transform: translateY(-25%);
}
.section_gift .section_content {
    flex-direction: row;
    justify-content: space-around;
    justify-content: space-evenly;
}
.section_gift .section_content .gift_item {
    width: 27vw;
}
.section_gift .section_content .gift_item .gift_image {
    height: 22vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section_gift .section_content .gift_item .gift_image img {
    max-width: 125%;
    max-height: 100%;
}
.section_gift .section_content .gift_item.item_2 .gift_image img {
    height: 95%;
}
.section_gift .section_content .gift_item .gift_text {
    text-align: center;
    font-family: DFKaiShoStd-W12;
    font-weight: normal;
    font-size: 2.9vw;
    line-height: 5.1vw;
    color: #231815;
    position: relative;
    transform: translateY(-50%);
}
.section_gift .section_content .gift_item.item_1 .gift_text img {
    width: 18.75vw;
}
.section_gift .section_content .gift_item.item_2 .gift_text img {
    width: 16.35vw;
}
.section_gift .section_content .gift_item.item_3 .gift_text img {
    width: 18vw;
}
.section_gift .section_content .gift_item .gift_text .big {
    font-family: KsoSennin;
    font-weight: normal;
    font-size: 6.75vw;
    letter-spacing: -0.06em;
    color: #1e63af;
}
.section_gift .section_content .gift_item.item_2 .gift_text .big {
    color: #F39C15;
}
.section_gift .section_content .gift_item.item_3 .gift_text .big {
    color: #BD6099;
}
.section_gift .section_content .gift_item .gift_text .recommand {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: translateY(70%);
}

.section_order {
    text-align: center;
    padding-top: 1vw;
    position: relative;
}
.section_order .section_spec {
    width: 11vw;
    bottom: 0;
    left: 2.5vw;
}
.section_order .section_content {
    display: flex;
    flex-direction: column;
}
.section_order .section_content .order_list {
    display: flex;
    justify-content: space-around;
    justify-content: space-evenly;
}
.section_order .section_content .order_list .order_item {
    width: 24vw;
}
.section_order .section_content .order_list .order_item .item_photo {
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_order .section_content .order_list .order_item .item_photo img {
    max-width: 125%;
    max-height: 100%;
}
.section_order .section_content .order_text {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-1vw);
}
.section_order .section_content .order_text img {
    width: 16vw;
    display: block;
}
.section_order .section_content .order_text > div {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.section_order .section_content .order_text span {
    font-family: KaiminSoStd-Heavy;
    font-weight: normal;
    font-size: 5.7vw;
    letter-spacing: -0.2em;
    line-height: 6.5vw;
    color: #231815;
    white-space: nowrap;
}
.section_order .section_content .order_text span.big {
    font-family: KsoSennin;
    font-weight: normal;
    font-size: 9.2vw;
    letter-spacing: -0.12em;
    line-height: 8.1vw;
    color: #231815;
    margin: auto -1.5vw;
}
.section_order .section_content .order_text span.vertical {
    font-family: KaiminSoStd-Heavy;
    font-weight: normal;
    font-size: 2.24vw;
    line-height: 2.2vw;
    letter-spacing: 0em;
    writing-mode: vertical-rl;
}

.section_link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
    margin-top: 1vw;
}
.section_link .link_item {
    width: 42.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
.section_link .link_item.nav_link {
    font-family: DFKaiShoStd-W12;
    font-size: 2.6vw;
    line-height: 4.17vw;
    letter-spacing: -0.4vw;
    color: #231815;
    background-image: url(../assets/images/nav_link_bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 2.6vw 0;
    margin-bottom: 3.65vw;
    cursor: pointer;
}
.section_link .link_item.ref_link {
    font-family: RyuminPro-Heavy;
    font-size: 2.12vw;
    line-height: 2.5vw;
    height: 6vw;
    letter-spacing: -0.16vw;
    color: #FFFFFF;
    text-align: center;

    background: linear-gradient(To Right, #00a8de 0.04%, #008dc8 100%);
    padding: 0.95vw 0;
    margin-bottom: 1.05vw;
    cursor: pointer;
    position: relative;
}
.section_link .link_item.ref_link img {
    position: absolute;
    display: block;
    left: 2.96vw;
    transform: translateX(-50%);
}
.section_link .link_item.ref_link.item_1 img {
    width: 3.63vw;
}
.section_link .link_item.ref_link.item_2 img {
    width: 3.75vw;
}
.section_link .link_item.ref_link.item_3 img {
    width: 4.69vw;
}
.section_link .link_item.ref_link.item_4 img {
    width: 3.8vw;
}

.menu {
    position: relative;
}
.menu .menu_title {
    display: flex;
    margin: auto 5.44vw;
    margin-top: 2vw;
    align-items: center;
}
.menu .menu_title .title_text {
    font-family: KaiminSoStd-Heavy;
    font-weight: normal;
    font-size: 3.5vw;
    line-height: 5.4vw;
    letter-spacing: -0.6vw;
    color: #000000;
    margin-left: 2vw;
}

.menu .menu_item_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    justify-content: space-evenly;
    margin-top: 3vw;
    align-items: flex-start;
}
.menu .menu_item_list .menu_item {
    width: 44.6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3vw;
}
.menu .menu_item_list .menu_item .item_photo {
    width: 57.5%;
}
.menu .menu_item_list .menu_item.big .item_photo {
    width: 65.5%;
}
.menu .menu_item_list .menu_item .item_photo img {
    width: 100%;
    display: block;
}
.menu .menu_item_list .menu_item.big .item_photo img {
    width: 105%;
    transform: translateX(-5%);
}
.menu .menu_item_list .menu_item .item_text {
    width: 41.6%;
}
.menu .menu_item_list .menu_item.big .item_text {
    width: 33.6%;
}
.menu .menu_item_list .menu_item .item_text .item_title {
    font-family: UDShinGoPr6-DeBold;
    font-weight: normal;
    font-size: 2vw;
    line-height: 2.18vw;
    text-align: left;
    color: #231815;
}
.menu .menu_item_list .menu_item .item_text .item_detail {
    font-family: UDShinGoPr6-Light;
    font-weight: normal;
    font-size: 1.25vw;
    letter-spacing: -0.09vw;
    line-height: 2.14vw;
    text-align: left;
    color: #231815;
    margin-top: 0.5vw;
}
.menu .menu_item_list .menu_result {
    width: 44.6vw;
    display: flex;
    flex-direction: column;
    padding: 1.5vw 1.5vw 2vw !important;
    margin-bottom: auto;
    background-image: url(../assets/images/order/bg_result.png) !important;
    background-size: 1000px 480px;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 1.2vw;
}
.menu .menu_item_list .menu_result .result_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu .menu_item_list .menu_result .result_item div {
    font-family: UDShinGoPr6-DeBold;
    font-weight: normal;
    font-size: 2vw;
    letter-spacing: -0.1vw;
    line-height: 2.84vw;
    color: #fff;
}
.menu .menu_item_list .menu_result .result_item span {
    font-size: 1.03vw;
    line-height: 1.87vw;
    color: #fff;
}
.menu .menu_item_list .menu_result .result_spec {
    font-family: UDShinGoPr6-Light;
    font-weight: normal;
    font-size: 1.33vw;
    letter-spacing: 0.02em;
    line-height: 2.29vw;
    color: #fff;
}

.menu_link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42.8vw;
    height: 5.52vw;
    background: linear-gradient(#00a8de 0.04%, #008dc8 100%);
    margin: auto 5.44vw;
    margin-top: 6.67vw;
    position: relative;
    cursor: pointer;

    font-family: RyuminPro-Heavy;
    font-weight: normal;
    font-size: 2.12vw;
    line-height: 3.7vw;
    color: #fff;
}
.menu_link img {
    position: absolute;
    transform: translateX(-50%);
    width: 3.65vw;
    left: 2.96vw;
}


@media(max-width: 768px) {
    header {
        height: 14.4vw;
    }
    header .logo {
        padding-left: 7.5vw;
    }
    header .logo img {
        width: 28vw;
    }
    header .logo .logo_text {
        margin-left: 0.5vw;
    }
    header .logo .logo_text .top {
        font-size: 1.34vw;
        line-height: 2.68vw;
    }
    header .logo .logo_text .bottom {
        margin-top: 0.1vw;
    }
    header .logo .logo_text .bottom .brand {
        font-size: 2.77vw;
        line-height: 2.84vw;
    }
    header .logo .logo_text .bottom .name {
        font-size: 6.17vw;
        line-height: 6vw;
    }

    footer {
        margin-top: 4vw;
    }
    footer .footer_content {
        flex-direction: column;
    }
    footer .footer_content .nav {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3vw;
    }
    footer .footer_content .nav .menu_item {
        font-size: 2.78vw;
        line-height: 4.63vw;
        margin: auto 1.5vw;
    }
    footer .footer_content .google_analytics {
        align-items: center;
        margin-bottom: 1.85vw;
    }
    footer .footer_content .google_analytics img {
        width: 4vw;
        margin-right: 1.42vw;
    }
    footer .footer_content .google_analytics span {
        font-size: 2.78vw;
        line-height: 4.63vw;
    }
    footer .copyright {
        margin-top: 0;
    }
    footer .copyright img {
        height: 12.2vw;
    }
    footer .copyright.second img {
        height: 19.54vw;
    }
    footer .copyright .item {
        font-size: 2.1vw;
        line-height: 3.675vw;
        right: 15%;
        bottom: 3.3vw;
    }

    .slider {
        margin-bottom: 10vw !important;
    }
    .slider .slider_item {
        height: 59.26vw;
    }
    .slider .slick-dots {
        bottom: -5vw;
    }
    .slider .slick-dots li {
        margin: 0 0.67vw;
    }
    .slider .slick-dots li button:before {
        width: 1.77vw;
        height: 1.77vw;
    }

    .section_title {
        font-size: 7.4vw;
        line-height: 13vw;
        margin-bottom: 4.25vw;
    }
    .section_description {
        font-size: 3.7vw;
        line-height: 5.55vw;
        width: 85%;
        margin: auto;
        margin-bottom: 3.7vw;
    }
    .section_content {
        margin-top: 1vw;
    }

    .page_description {
        font-size: 3.7vw;
        line-height: 5.56vw;
        text-align: center;
        width: 85%;
        margin: auto;
    }    

    .section_header img {
        height: 19.54vw;
    }
    .section_header .header_text {
        font-size: 7.4vw;
        line-height: 12.96vw;
    }

    .section_news .section_content {
        min-height: 30vw;
        width: 70%;
    }
    .section_news .section_content .news_item {
        font-size: 3.7vw;
        line-height: 5.55vw;
    }

    .section_gift .section_spec {
        width: 16.75vw;
        right: auto;
        left: 15vw;
    }
    .section_gift .section_content {
        flex-direction: column;
        align-items: center;
    }
    .section_gift .section_content .gift_item {
        width: 70vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .section_gift .section_content .gift_item.item_2 {
        flex-direction: row;
    }
    .section_gift .section_content .gift_item .gift_image {
        height: 34vw;
    }
    .section_gift .section_content .gift_item .gift_image img {
        max-width: 100%;
    }
    .section_gift .section_content .gift_item .gift_text {
        transform: none;
    }
    .section_gift .section_content .gift_item.item_1 .gift_text img {
        width: 33.9vw;
        display: block;
    }
    .section_gift .section_content .gift_item.item_2 .gift_text img {
        width: 23.7vw;
        display: block;
    }
    .section_gift .section_content .gift_item.item_3 .gift_text img {
        width: 27vw;
        display: block;
    }

    .section_order .section_spec {
        width: 14.25vw;
        bottom: auto;
        left: auto;
        right: 14vw;
        top: 17.5vw;
    }
    .section_order .section_content {
        flex-direction: column-reverse;
        width: 70%;
        margin: auto;
    }
    .section_order .section_content .order_list {
        position: relative;
        width: 100%;
        padding-top: 80%;
    }
    .section_order .section_content .order_list .order_item {
        position: absolute;
    }
    .section_order .section_content .order_list .order_item.item_3 {
        width: 35vw;
        top: 0;
        right: 4.5vw;
    }
    .section_order .section_content .order_list .order_item.item_1 {
        width: 30vw;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }
    .section_order .section_content .order_list .order_item.item_2 {
        width: 48.6vw;
        bottom: 0;
        right: -4vw;
    }
    .section_order .section_content .order_list .order_item .item_photo {
        height: auto;
    }
    .section_order .section_content .order_list .order_item .item_photo img {
        width: 100%;
        display: block;
    }
    .section_order .section_content .order_text {
        justify-content: flex-start;
        margin-bottom: 2vw;
    }
    .section_order .section_content .order_text img {
        width: 40vw;
        display: block;
    }

    .section_link {
        margin-top: 18vw;
        width: 85%;
    }
    .section_link .link_item {
        width: 100%;
    }
    .section_link .link_item.nav_link {
        font-size: 4.22vw;
        line-height: 8vw;
        letter-spacing: 0.2vw;
        padding: 3.6vw 0;
        margin-bottom: 1.4vw;
    }
    .section_link .link_item.ref_link {
        font-size: 3.43vw;
        line-height: 4vw;
        height: 10vw;
        padding: 1.5vw 0;
        margin-bottom: 1.4vw;
    }
    .section_link .link_item.ref_link img {
        left: 4.8vw;
    }
    .section_link .link_item.ref_link.item_1 img {
        width: 5.9vw;
    }
    .section_link .link_item.ref_link.item_2 img {
        width: 6.08vw;
    }
    .section_link .link_item.ref_link.item_3 img {
        width: 7.6vw;
    }
    .section_link .link_item.ref_link.item_4 img {
        width: 6.16vw;
    }

    .menu .menu_title {
        width: 85%;
        margin: auto;
        margin-top: 17vw;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    .menu .menu_title .title_text {
        font-size: 5.56vw;
        letter-spacing: 0.05vw;
        line-height: 6.94vw;
        text-align: left;
        color: #231815;
        margin-left: 0;
    }

    .menu .menu_item_list {
        width: 85%;
        margin: auto;
        margin-top: 13.6vw;
        justify-content: center;
    }
    .menu .menu_item_list .menu_item {
        width: 100%;
        flex-direction: column;
        margin-bottom: 7.5vw;
    }
    .menu .menu_item_list .menu_item .item_photo {
        width: 80%;
    }
    .menu .menu_item_list .menu_item .item_photo img {
        transform: none;
    }
    .menu .menu_item_list .menu_item.big .item_photo img {
        width: 100%;
        transform: none;
    }
    .menu .menu_item_list .menu_item .item_text {
        width: 100%;
        margin-top: 1vw;
    }
    .menu .menu_item_list .menu_item.big .item_text {
        width: 100%;
    }
    .menu .menu_item_list .menu_item .item_text .item_title {
        font-size: 5.56vw;
        line-height: 3.87vw;
    }
    .menu .menu_item_list .menu_item .item_text .item_detail {
        font-size: 3.7vw;
        letter-spacing: -0.09vw;
        line-height: 5.56vw;
        margin-top: 2vw;
    }
    .menu .menu_item_list .menu_result {
        margin: auto;
        width: 100%;
        padding: 2vw 2vw 4vw !important;
        border-radius: 2vw;
    }
    .menu .menu_item_list .menu_result .result_item div {
        font-size: 3vw;
        line-height: 5vw;
        letter-spacing: -0.2vw;
    }
    .menu .menu_item_list .menu_result .result_item span {
        font-size: 3vw;
        line-height: 5vw;
    }
    .menu .menu_item_list .menu_result .result_spec {
        font-size: 2.68vw;
        line-height: 5.56vw;
        letter-spacing: -0.4vw;
    }
    .menu_link {
        width: 85vw;
        height: 8.96vw;
        margin: auto;
        margin-top: 84vw;
        font-size: 3.42vw;
        line-height: 6vw;
    }
    .menu_link img {
        width: 5.9vw;
        left: 4.8vw;
    }
}

.item_title p{
	display:inline;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    header .logo .logo_text .top {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 300;
    }
    header .logo .logo_text .bottom .brand {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    header .logo .logo_text .bottom .name {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    header .nav .menu_item {
        font-family: 'Noto Serif JP', serif;
    }
    header .menu_area .menu_item {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
    }
    footer .footer_content .nav .menu_item {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
    }
    footer .footer_content .google_analytics span {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 500;
    }
    footer .copyright .item {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 100;
    }
    .section_title {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    .section_description {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
    }
    .section_header .header_text {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    .page_description {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    .section_news .section_content .news_item {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
    }
    .section_gift .section_content .gift_item .gift_text {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    .section_order .section_content .order_text span {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
    }
    .section_order .section_content .order_text span.vertical {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
    }
    .section_link .link_item.nav_link {
        font-family: 'Noto Serif JP', serif;
        font-weight: bolder;
    }
    .section_link .link_item.ref_link {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
    }
    .menu .menu_title .title_text {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
        letter-spacing: -0.2vw;
    }
    .menu .menu_item_list .menu_item .item_text .item_title {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
    }
    .menu .menu_item_list .menu_item .item_text .item_detail {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 300;
    }
    .menu .menu_item_list .menu_result .result_item div {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
    }
    .menu .menu_item_list .menu_result .result_spec {
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 300;
    }
    .menu_link {
        font-family: 'Noto Serif JP', serif;
        font-weight: bold;
    }
}