@charset "utf-8";

.pc {
    display: block;
}

.sp {
    display: none;
}

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

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
}

/*body*/

body {
    background-color: #161825;
    color: #fff;
    font-family: "Noto Sans Japanese", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    line-height: 1.5;
}

.inner {
    width: 960px;
    margin: 0 auto;
}


.invisible {
    transition: opacity 0.5s ease;
    opacity: 0.0;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #000;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    opacity: 0.8;
}

input:hover,
a:hover img {
    outline: 0;
    opacity: 0.8;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

#canvas {
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    pointer-events: none;
    opacity: 1;
}

/* ----------------------------------------------------------
loading
---------------------------------------------------------- */

.loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0px;
    left: 0px;
    background: #161825;
    z-index: 9999;
}

.loaded {
    opacity: 0;
    display: none;
}

.loader,
.loader:before,
.loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: load7 1.8s infinite ease-in-out;
    animation: load7 1.8s infinite ease-in-out;
}

.loader {
    color: #c0a25b;
    font-size: 10px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.loader:before,
.loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.loader:after {
    left: 3.5em;
}

@-webkit-keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes load7 {

    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }

    40% {
        box-shadow: 0 2.5em 0 0;
    }
}


/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    width: 100%;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header .inner {
    width: 90%;
}

.header_layout {
    position: relative;
    padding: 10px;
}

input[type="checkbox"]:checked~#sidebarMenu {
    transform: translateX(65vw);
}

#sidebarMenu {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 35vw;
    transform: translateX(100vw);
    transition: transform 250ms ease-in-out;
    background: linear-gradient(to right, #234163, #1b1f31);
    z-index: 200;
    overflow: scroll;
}

.sidebarMenuInner {
    margin: 0;
    padding-top: 100px;
    padding-bottom: 100px;
}

.sidebarMenuInner li {
    width: 100%;
}

.sidebarMenuInner li a {
    color: #fff;
    font-size: 2rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    display: block;
    padding: 12px 30px;
    border-bottom: 1px solid #c0a25b;
}

.sidebarMenuInner li:first-of-type a {
    border-top: 1px solid #c0a25b;
}

.sidebarMenuInner li a:hover {
    background-color: #c0a25b;
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}

.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    height: 100%;
    width: 100%;
    top: 27px;
    right: 10px;
    height: 45px;
    width: 115px;
    z-index: 300;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: #fff;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 21px;
    width: 75%;
}

.diagonal.part-1 {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    float: right;
    width: 50%;
}

.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: right;
    margin-top: 21px;
}

input[type=checkbox]:checked~.sidebarIconToggle>.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(135deg);
    margin-top: 21px;
    width: 50%;
}

input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: rotate(-135deg);
    margin-top: -23px;
    width: 50%;
}

/* ----------------------------------------------------------
mv
---------------------------------------------------------- */

.mv {
    padding-top: 100px;
    background: url(../images/mv_bg.jpg) center top 0 / 1900px no-repeat;
}

.mv_box {
    padding-top: 300px;
}

.mv_img {
    text-align: center;
}

.mv_logo {
    text-align: center;
    padding-bottom: 100px;
}

/* ----------------------------------------------------------
sec01
---------------------------------------------------------- */

.sec01 {
    padding-bottom: 195px;
}

.sec01_box01 {
    background: url(../images/sec01_bg.png) center top 0 / 3000px no-repeat;
    height: 1200px;
    margin-top: -250px;
    position: relative;
}

.sec01_title {
    font-size: 4.2rem;
    text-align: center;
    padding-top: 320px;
}

.sec01_text01 {
    font-size: 2.1rem;
    margin: 120px auto 0;
    width: 680px;
}

.sec01_bar {
    width: 1px;
    height: 230px;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -140px;
    margin: 0 auto;
}

.sec01_text02 {
    font-size: 2.4rem;
    text-align: center;
    margin-top: 200px;
}

.sec01_notes {
    border: 1px solid #abacac;
    width: 760px;
    margin: 50px auto 0;
    padding: 10px 20px;
}

.sec01_note {
    color: #abacac;
    font-size: 1.6rem;
}

/* ----------------------------------------------------------
sec02
---------------------------------------------------------- */

.sec02 {
    padding-top: 100px;
}

.sec02_box {
    background: linear-gradient(to right, #234163, #1b1f31);
    border: 1px solid #c0a25b;
    position: relative;
    margin-top: 295px;
    padding-bottom: 85px;

}

.sec02 .inner .sec02_box:first-of-type {
    margin-top: 0px;

}

.left_top01 {
    background-color: #c0a25b;
    width: 80px;
    height: 1px;
    position: absolute;
    top: -1px;
    left: -80px;
}

.left_top02 {
    background-color: #c0a25b;
    width: 1px;
    height: 80px;
    position: absolute;
    top: -80px;
    left: -1px;
}

.right_top01 {
    background-color: #c0a25b;
    width: 80px;
    height: 1px;
    position: absolute;
    top: -1px;
    right: -80px;
}

.right_top02 {
    background-color: #c0a25b;
    width: 1px;
    height: 80px;
    position: absolute;
    top: -80px;
    right: -1px;
}

.left_bottom01 {
    background-color: #c0a25b;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: -80px;
}

.left_bottom02 {
    background-color: #c0a25b;
    width: 1px;
    height: 80px;
    position: absolute;
    bottom: -80px;
    left: -1px;
}

.right_bottom01 {
    background-color: #c0a25b;
    width: 80px;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: -80px;
}

.right_bottom02 {
    background-color: #c0a25b;
    width: 1px;
    height: 80px;
    position: absolute;
    bottom: -80px;
    right: -1px;
}

.sec02_title {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -90px;
}

.sec02_title img {
    width: 80%;
}


.sec02_store {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 130px;
}

.sec02_store h3 {
    color: #c0a25b;
    font-size: 4.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    padding: 0 20px;
}

.sec02_store div {
    width: 170px;
    height: 1px;
    background-color: #c0a25b;
}

.sec02_ramen {
    color: #c0a25b;
    font-size: 3.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
}

.sec02_ramen span {
    font-size: 2.8rem;
}

.sec02_img {
    text-align: center;
    margin-top: 40px;
}

.sec02_img img {
    width: 90%;
}

.sec02_contents {
    width: 900px;
    margin: 100px auto 0;
    padding: 65px 0 30px;
    border-top: 1px solid #abacac;
    border-bottom: 1px solid #abacac;
    position: relative;
}

.sec02_contents div {
    width: 1px;
    height: 115px;
    background-color: #c0a25b;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: -75px;
}

.sec02_contents_title {
    color: #abacac;
    font-size: 2.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
}

.sec02_contents_text {
    color: #abacac;
    font-size: 2.1rem;
    margin-top: 40px;
}

.btn {
    text-align: center;
    margin-top: 85px;
}

.btn a {
    color: #fff;
    font-size: 3.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    width: 645px;
    border: 1px solid #161825;
    padding: 10px 0;
    margin: 0 auto;
    background: url(../images/btn_arrow.png) right 30px top 27px / 53px no-repeat #a18044;
    display: block;
}

/* ----------------------------------------------------------
sec03
---------------------------------------------------------- */

.sec03_title {
    font-size: 4.2rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    margin-top: 400px;
}

.sec03_store {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.sec03_store h3 {
    color: #c0a25b;
    font-size: 3.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    padding: 0 20px;
}

.sec03_store div {
    width: 170px;
    height: 1px;
    background-color: #c0a25b;
}

.sec03_name {
    color: #c0a25b;
    font-size: 3.4rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
}

.sec03_name span {
    font-size: 2.4rem;
}

.sec03_text {
    font-size: 2.1rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 60px;
}

.sec03_box {
    margin-bottom: 45px;
    height: 500px;
}

.sec03_box01 {
    background: url(../images/sec03_img01.png), linear-gradient(to right, #234163, #1b1f31);
    background-repeat: no-repeat;
    background-size: contain;

}

.sec03_box03 {
    background: url(../images/sec03_img03.png), linear-gradient(to right, #234163, #1b1f31);
    background-repeat: no-repeat;
    background-size: contain;

}

.sec03_box05 {
    background: url(../images/sec03_img05.png), linear-gradient(to right, #234163, #1b1f31);
    background-repeat: no-repeat;
    background-size: contain;

}

.sec03_box02 {
    background: url(../images/sec03_img02.png), linear-gradient(to right, #234163, #1b1f31);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;

}

.sec03_box04 {
    background: url(../images/sec03_img04.png), linear-gradient(to right, #234163, #1b1f31);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;

}

.sec03_box01 .sec03_contents,
.sec03_box03 .sec03_contents,
.sec03_box05 .sec03_contents {
    padding: 30px 20px 30px 430px;
}

.sec03_box02 .sec03_contents,
.sec03_box04 .sec03_contents {
    padding: 15px 20px;
    width: 510px;
}

.sec03_add {
    color: #abacac;
    font-size: 1.6rem;
    padding-bottom: 20px;
    border-bottom: 1px solid #abacac;
    margin-bottom: 20px;
}

.sec03_career {
    color: #abacac;
    font-size: 1.6rem;
}

.sec03_contents_title {
    color: #abacac;
    font-size: 2.1rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
}

.sec03_contents_text {
    color: #abacac;
    font-size: 1.6rem;
    margin-top: 5px;
}

.sec03_ramen_box {
    background: linear-gradient(to right, #234163, #1b1f31);
    border: 1px solid #c0a25b;
    position: relative;
    margin-top: 295px;
    padding-bottom: 85px;
}

.sec03_ramen_title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.sec03_ramen_title h2 {
    font-size: 3.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    padding: 0 10px;
}

.sec03_ramen_box .sec03_store h3 {
    font-size: 4.8rem;
}

.sec03_ramen {
    color: #c0a25b;
    font-size: 3.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    margin-top: 10px;
}

.sec03_ramen span {
    font-size: 2.8rem;
}

.sec03_img {
    text-align: center;
    margin-top: 50px;
}

.sec03_img img {
    width: 90%;
}

.sec03_ramen_text {
    color: #abacac;
    font-size: 2.1rem;
    text-align: center;
    margin-top: 75px;
}

/* ----------------------------------------------------------
sec04
---------------------------------------------------------- */

.sec04 .inner {
    margin-top: 650px;
}


.sec05 .inner,
.sec06 .inner,
.sec07 .inner,
.sec08 .inner {
    margin-top: 250px;
}

.sec04 .inner,
.sec05 .inner,
.sec06 .inner,
.sec07 .inner,
.sec08 .inner {
    background: linear-gradient(to right, #234163, #1b1f31);
    border: 1px solid #c0a25b;
    position: relative;
    padding: 80px 40px;
    box-sizing: border-box;
}

.sec04_title,
.sec05_title,
.sec06_title,
.sec07_title,
.sec08_title {
    font-size: 8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #abacac;
    border-bottom: 1px solid #abacac;
}

.sec05_title,
.sec06_title {
    margin-bottom: 80px;
}

.sec04_btn_list {
    width: 880px;
    margin: 100px auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.sec04_btn,
.sec04_btn {
    width: 22%;
}

.sec08_btn {
    width: 17%;
}

.sec04_btn_list .sec04_btn:nth-of-type(2) {
    animation-delay: 0.2s;
}

.sec04_btn_list .sec04_btn:nth-of-type(3) {
    animation-delay: 0.4s;
}

.sec04_btn_list .sec04_btn:nth-of-type(4) {
    animation-delay: 0.6s;
}

.sec04_btn_list .sec04_btn:nth-of-type(5) {
    animation-delay: 0.8s;
}

.sec04_btn_list .sec04_btn:nth-of-type(6) {
    animation-delay: 1.0s;
}

.sec04_btn_list .sec04_btn:nth-of-type(7) {
    animation-delay: 1.2s;
}

.sec04_btn_list .sec04_btn:nth-of-type(8) {
    animation-delay: 1.4s;
}

.sec07_btn_list .sec07_btn:nth-of-type(2) {
    animation-delay: 0.2s;
}

.sec08_btn_list .sec08_btn:nth-of-type(2) {
    animation-delay: 0.2s;
}

.sec08_btn_list .sec08_btn:nth-of-type(3) {
    animation-delay: 0.4s;
}

.sec08_btn_list .sec08_btn:nth-of-type(4) {
    animation-delay: 0.6s;
}

.sec08_btn_list .sec08_btn:nth-of-type(5) {
    animation-delay: 0.8s;
}

.sec08_btn_list .sec08_btn:nth-of-type(6) {
    animation-delay: 1.0s;
}

.sec08_btn_list .sec08_btn:nth-of-type(7) {
    animation-delay: 1.2s;
}

.sec08_btn_list .sec08_btn:nth-of-type(8) {
    animation-delay: 1.4s;
}

.sec08_btn_list .sec08_btn:nth-of-type(9) {
    animation-delay: 1.6s;
}

.sec04_btn {
    margin-bottom: 40px;
}

.sec07_btn_list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.sec07_btn_list .sec07_btn:first-of-type {
    margin-right: 50px;
}

.sec08_btn_list {
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.sec08_btn {
    margin-right: 20px;
    margin-bottom: 40px;
}

.sec04_btn a,
.sec04_btn a img,
.sec07_btn a,
.sec07_btn a img,
.sec08_btn a,
.sec08_btn a img {
    transition: all 0.5s;
}

.sec04_btn a:hover,
.sec04_btn a:hover img,
.sec07_btn a:hover,
.sec07_btn a:hover img,
.sec08_btn a:hover,
.sec08_btn a:hover img {
    opacity: 1;
    transform: translate(0, -25px);
}

.sec04_notes,
.sec08_notes {
    color: #abacac;
    text-align: center;
    font-size: 1.6rem;
}

.center_line {
    width: 1px;
    height: 240px;
    background-color: #fff;
    margin: 80px auto;
}

.sec04_box,
.sec05_box,
.sec06_box,
.sec07_box,
.sec08_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sec04_img,
.sec05_img,
.sec06_img,
.sec07_img,
.sec08_img {

    width: 42%;
    margin-bottom: 100px;
}

.sec04_contents,
.sec05_contents,
.sec06_contents,
.sec07_contents,
.sec08_contents {
    width: 55%;
}

.sec04_inciting,
.sec05_inciting,
.sec06_inciting,
.sec07_inciting,
.sec08_inciting {
    font-size: 2.1rem;
    margin-bottom: 30px;
}

.sec04_store,
.sec05_store,
.sec06_store,
.sec07_store,
.sec08_store {
    color: #abacac;
    font-size: 2.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    margin-top: 25px;

}

.sec04_ramen,
.sec05_ramen,
.sec06_ramen,
.sec07_ramen,
.sec08_ramen {
    color: #abacac;
    font-size: 2.8rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    margin-top: 5px;

}

.sec04_ramen span {
    font-size: 1.8rem;
}

.sec04_text,
.sec05_text,
.sec06_text,
.sec07_text,
.sec08_text {
    color: #abacac;
    font-size: 2.1rem;
    margin-top: 20px;
}

.btn_s {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 100px;
}

.btn_s a {
    color: #fff;
    font-size: 2.1rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    width: 340px;
    border: 1px solid #161825;
    padding: 7px 0;
    margin: 0 auto;
    background: url(../images/btn_arrow.png) right 20px top 17px / 30px no-repeat #a18044;
    display: block;
}

.sec04_img.img_last,
.sec05_img.img_last,
.sec06_img.img_last,
.sec07_img.img_last,
.sec08_img.img_last,
.btn_s.btn_s_last {
    margin-bottom: 0;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.ramen_link {
    margin-top: 215px;
}

.ramen_link li {
    margin-bottom: 35px;
}

.ramen_link li a {
    color: #c0a25b;
    font-size: 3.2rem;
    font-family: "Sawarabi Mincho", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho",
        "MS 明朝", serif;
    text-align: center;
    background: linear-gradient(to right, #234163, #1b1f31);
    border: 1px solid #c0a25b;
    padding: 10px 0;
    display: block;

}

.ramen_link li a:hover {
    opacity: 1;
    color: #fff;
    background: #c0a25b;
}

.sns {
    display: flex;
    justify-content: center;
    margin-top: 55px;
}

.sns li {
    margin-right: 30px;
}

.sns li:last-of-type {
    margin-right: 0;
}

.footer_menu {
    display: flex;
    justify-content: center;
    margin-top: 55px;
    margin-bottom: 50px;
}

.footer_menu li {
    padding-right: 15px;
    border-right: 1px solid #fff;
    margin-right: 15px;
}

.footer_menu li:last-of-type {
    padding-right: 0;
    border-right: none;
    margin-right: 0;
}

.footer_menu li a {
    color: #fff;
    font-size: 1.4rem;
}

.footer_menu li a:hover {
    opacity: 1;
    text-decoration: underline;
}

footer {
    background-color: #000;
}

.copyright {
    text-align: center;
    font-size: 1.2rem;
    padding: 10px 0;
}

@media only screen and (max-width: 767px) {

    /* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

    /*body*/

    body {
        font-size: 1.4rem;
    }

    .inner {
        width: 95%;
        margin: 0 auto;
    }

    .loader {
        top: 40%;
    }

    #canvas {
        opacity: 0.8;
    }


    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header {
        width: 100%;
        position: fixed;
        width: 100%;
        z-index: 100;
    }

    .header .inner {
        width: 95%;
    }

    .header_logo img {
        width: 20%;
    }

    .header_layout {
        position: relative;
        padding: 10px;
    }

    input[type="checkbox"]:checked~#sidebarMenu {
        transform: translateX(40vw);
    }

    #sidebarMenu {
        width: 60vw;
        transform: translateX(100vw);
    }

    .sidebarMenuInner {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .sidebarMenuInner li a {
        font-size: 2.1rem;
        padding: 2% 5%;
    }

    input[type=checkbox] {
        transition: all 0.3s;
        box-sizing: border-box;
        display: none;
    }

    .sidebarIconToggle {
        top: 15px;
        right: 10px;
        height: 33px;
        width: 85px;
        z-index: 300;
    }

    .horizontal {
        margin-top: 15px;
        width: 75%;
    }

    .diagonal.part-1 {
        width: 50%;
    }

    .diagonal.part-2 {
        margin-top: 15px;
    }

    input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-1 {
        margin-top: 15px;
        width: 50%;
    }

    input[type=checkbox]:checked~.sidebarIconToggle>.diagonal.part-2 {
        margin-top: -17px;
        width: 50%;
    }

    /* ----------------------------------------------------------
mv
---------------------------------------------------------- */

    .mv {
        padding-top: 10%;
        background: url(../images/mv_bg.jpg) center top -30px / cover no-repeat;
    }

    .mv_box {
        padding-top: 35%;
    }

    .mv_img img {
        width: 70%;
    }

    .mv_logo img {
        width: 30%;
    }

    .mv_logo {
        padding-bottom: 18%;
    }

    /* ----------------------------------------------------------
sec01
---------------------------------------------------------- */

    .sec01 {
        padding-bottom: 20%;
    }

    .sec01_box01 {
        background: url(../images/sec01_bg_sp.png) center top 0 / 100% 100% no-repeat;
        height: auto;
        margin-top: -20%;
        padding-bottom: 20%;
    }

    .sec01_title {
        font-size: 2.4rem;
        padding-top: 20%;
    }

    .sec01_text01 {
        font-size: 1.6rem;
        margin-top: 12%;
        margin: 12% auto 0;
        width: 100%;
    }

    .sec01_bar {
        height: 100px;
        bottom: -20%;
    }

    .sec01_text02 {
        font-size: 1.8rem;
        margin-top: 55%;
    }

    .sec01_notes {
        width: 100%;
        margin: 5% auto 0;
        padding: 1% 2%;
        box-sizing: border-box
    }

    .sec01_note {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
sec02
---------------------------------------------------------- */

    .sec02 {
        padding-top: 10%
    }

    .sec02_box {
        margin-top: 30%;
        padding: 0 3% 8%;

    }

    .left_top01 {
        width: 2.5vw;
        left: -2.5vw;
    }

    .left_top02 {
        height: 50px;
        top: -50px;
    }

    .right_top01 {
        width: 2.5vw;
        right: -2.5vw;
    }

    .right_top02 {
        height: 50px;
        top: -50px;
    }

    .left_bottom01 {
        width: 2.5vw;
        left: -2.5vw;
    }

    .left_bottom02 {
        height: 50px;
        bottom: -50px;
    }

    .right_bottom01 {
        width: 2.5vw;
        right: -2.5vw;
    }

    .right_bottom02 {
        height: 50px;
        bottom: -50px;
    }

    .sec02_title {
        top: -5.5%;
    }

    .sec02_title img {
        width: 90%;
    }


    .sec02_store {
        margin-top: 11%;
    }

    .sec02_store h3 {
        font-size: 7vw;
        padding: 0 2%;
    }

    .sec02_store div {
        display: none;
    }

    .sec02_ramen {
        font-size: 6vw;
    }

    .sec02_ramen span {
        font-size: 2.1rem;
    }

    .sec02_img {
        margin-top: 4%;
    }

    .sec02_img img {
        width: 100%;
    }

    .sec02_contents {
        width: 100%;
        margin: 10% auto 0;
        padding: 6% 0 3%;
    }

    .sec02_contents div {
        height: 20%;
        top: -14%;
    }

    .sec02_contents_title {
        font-size: 1.8rem;
    }

    .sec02_contents_text {
        font-size: 1.6rem;
        margin-top: 4%;
    }

    .btn {
        margin-top: 8%;
    }

    .btn a {
        font-size: 2.1rem;
        width: 80%;
        padding: 1% 0;
        background: url(../images/btn_arrow.png) right 20px top 13px / 30px no-repeat #a18044;
    }

    /* ----------------------------------------------------------
sec03
---------------------------------------------------------- */

    .sec03_title {
        font-size: 6vw;
        margin-top: 40%;
    }

    .sec03_store {
        margin-top: 5%;
    }

    .sec03_store h3 {
        font-size: 8vw;
        padding: 0 2%;
    }

    .sec03_store div {
        display: none;
    }

    .sec03_name {
        font-size: 6vw;
    }

    .sec03_name span {
        font-size: 4vw;
    }

    .sec03_text {
        font-size: 1.6rem;
        margin-top: 2%;
        margin-bottom: 6%;
    }

    .sec03_box {
        margin-bottom: 4%;
        height: auto;
    }

    .sec03_box01,
    .sec03_box02,
    .sec03_box03,
    .sec03_box04,
    .sec03_box05 {
        background: linear-gradient(to right, #234163, #1b1f31);

    }

    .sec03_box01 .sec03_contents,
    .sec03_box03 .sec03_contents,
    .sec03_box05 .sec03_contents {
        padding: 2%;
        box-sizing: border-box;
    }

    .sec03_box02 .sec03_contents,
    .sec03_box04 .sec03_contents {
        padding: 2%;
        width: 100%;
        box-sizing: border-box;
    }

    .sec03_add {
        font-size: 1.4rem;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }

    .sec03_career {
        font-size: 1.4rem;
    }

    .sec03_contents_title {
        font-size: 1.8rem;
    }

    .sec03_contents_text {
        font-size: 1.4rem;
        margin-top: 2%;
    }

    .sec03_ramen_box {
        margin-top: 30%;
        padding: 0 3% 8%;
    }

    .sec03_ramen_title {
        margin-top: 6%;
    }

    .sec03_ramen_title h2 {
        font-size: 6vw;
        padding: 0 1%;
    }

    .sec03_ramen_box .sec03_store h3 {
        font-size: 7vw;
    }

    .sec03_ramen {
        font-size: 6vw;
        margin-top: 1%;
    }

    .sec03_ramen span {
        font-size: 4vw;
    }

    .sec03_img {
        margin-top: 5%;
    }

    .sec03_img img {
        width: 100%;
    }

    .sec03_ramen_text {
        font-size: 1.6rem;
        margin-top: 7%;
    }

    /* ----------------------------------------------------------
sec04
---------------------------------------------------------- */

    .sec04 .inner {
        margin-top: 65%;
    }


    .sec05 .inner,
    .sec06 .inner,
    .sec07 .inner,
    .sec08 .inner {
        margin-top: 25%;
    }

    .sec04 .inner,
    .sec05 .inner,
    .sec06 .inner,
    .sec07 .inner,
    .sec08 .inner {
        padding: 8% 4%;
    }

    .sec04_title,
    .sec05_title,
    .sec06_title,
    .sec07_title,
    .sec08_title {
        font-size: 7vw;
        padding: 1% 0;
    }

    .sec05_title,
    .sec06_title {
        margin-bottom: 8%;
    }

    .sec04_btn_list {
        width: 100%;
        margin: 10% auto 0;
    }

    .sec04_btn {
        margin-bottom: 4%;
        width: 31%;
    }

    .sec04_btn img {
        width: 100%;
    }

    .sec07_btn {
        width: 31%;
    }

    .sec07_btn_list {
        margin-top: 10%;
    }

    .sec07_btn_list .sec07_btn:first-of-type {
        margin-right: 3.5%;
    }

    .sec08_btn_list {
        margin-top: 10%;
    }

    .sec08_btn {
        width: 31%;
        margin-right: 2%;
        margin-bottom: 4%;
    }

    .sec04_notes,
    .sec08_notes {
        font-size: 1.4rem;
    }

    .center_line {
        height: 20vw;
        margin: 8% auto;
    }

    .sec04_box,
    .sec05_box,
    .sec06_box,
    .sec07_box,
    .sec08_box {
        flex-direction: column;
    }

    .sec04_img,
    .sec05_img,
    .sec06_img,
    .sec07_img,
    .sec08_img {
        width: 100%;
        margin-bottom: 5%;
    }

    .sec04_contents,
    .sec05_contents,
    .sec06_contents,
    .sec07_contents,
    .sec08_contents {
        width: 100%;
    }

    .sec04_label,
    .sec05_label,
    .sec06_label,
    .sec07_label,
    .sec08_label {
        margin-bottom: 5%;
    }

    .sec04_inciting,
    .sec05_inciting,
    .sec06_inciting,
    .sec07_inciting,
    .sec08_inciting {
        font-size: 1.6rem;
        margin-bottom: 3%;
    }

    .sec04_store,
    .sec05_store,
    .sec06_store,
    .sec07_store,
    .sec08_store {
        font-size: 1.8rem;
        margin-top: 2%;

    }

    .sec04_ramen,
    .sec05_ramen,
    .sec06_ramen,
    .sec07_ramen,
    .sec08_ramen {
        font-size: 1.8rem;
        margin-top: 5px;

    }

    .sec04_ramen span {
        font-size: 1.4rem;
    }

    .sec04_text,
    .sec05_text,
    .sec06_text,
    .sec07_text,
    .sec08_text {
        font-size: 1.6rem;
        margin-top: 2%;
    }

    .btn_s {
        margin-top: 4%;
        margin-bottom: 15%;
    }

    .btn_s a {
        font-size: 2.1rem;
        width: 70%;
        padding: 1% 0;
        background: url(../images/btn_arrow.png) right 15px top 14px / 30px no-repeat #a18044;
    }

    .sec04_img.img_last,
    .sec05_img.img_last,
    .sec06_img.img_last,
    .sec07_img.img_last,
    .sec08_img.img_last,
    .btn_s.btn_s_last {
        margin-bottom: 0;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .ramen_link {
        margin-top: 20%;
    }

    .ramen_link li {
        margin-bottom: 4%;
    }

    .ramen_link li a {
        font-size: 1.8rem;
        padding: 1%;

    }

    .sns {
        margin-top: 5%;
    }

    .sns li {
        width: 10%;
        margin-right: 3%;
    }

    .footer_menu {
        flex-direction: column;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .footer_menu li {
        text-align: center;
        padding-right: 0;
        border-right: none;
        margin-right: 0;
    }

    .footer_menu li a {
        font-size: 1.2rem;
    }

    .copyright {
        font-size: 1.2rem;
        padding: 1% 0;
    }

    /* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}