@charset "UTF-8";


/*------------------------
リセットCSS
------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*モバイル表示*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc-view {
    display: block
}

.sp-view {
    display: none
}

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

    .sp-view {
        display: block;
    }
}

/*------------------------
共通CSS
------------------------*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    font-size: 62.5%;
    min-width: 320px;
    font-weight: 300;
    color: #101010;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

img {
    vertical-align: bottom;
    width: 100%;
    max-width: 100%;
}

.noto-serif-jp {
    font-family: 'Noto Serif JP';
}

.wrapper {
    max-width: 1280px;
    padding: 0 85px;
    margin: 0 auto;
}

p {
    font-size: 1.6rem
}

@media screen and (min-width: 768px) {
    a:hover {
        opacity: .7;
    }

    .sp {
        display: none !important;
    }
}

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

    .wrapper {
        padding: 0 15px;
    }

    p {
        font-size: 1.5rem
    }
}


/*------------------------
ヘッダー
------------------------*/
#header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

#header .header_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    max-width: 1400px;
    padding: 0 60px 18px;
    margin: 0 auto;
}

#header .header_wrap h1 {
    width: 349px;
}

#header .header_wrap .hamburger {
    width: 27px;
    height: 21px;
    position: relative;
}

#header .header_wrap .hamburger span {
    display: block;
    height: 3px;
    background-color: #0F0F0F;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#header .header_wrap .hamburger span:not(:first-child) {
    margin-top: 6px;
}

#header .header_wrap .hamburger span:nth-child(2) {
    position: relative;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

#header .header_wrap .hamburger span:nth-child(2)::before {
    -webkit-transition: all .3s;
    transition: all .3s;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #0F0F0F;
    position: absolute;
    top: 0;
    left: 0;
}

#header .header_wrap ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

#header .header_wrap ul li {
    text-align: center;
}

#header .header_wrap ul li:not(:last-child) {
    margin-right: 40px;
}

#header .header_wrap ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

#header .header_wrap ul li a img {
    width: 45px;
}

#header .header_wrap ul li a p {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 4px;
}

@media screen and (max-width: 1200px) {
    #header .header_wrap {
        padding: 0 60px 20px;
        height: 86px;
    }

    #header .header_wrap h1 {
        width: 190px;
    }

    #header .header_wrap ul li:not(:last-child) {
        margin-right: 20px;
    }

    #header .header_wrap ul li a img {
        width: 30px;
    }

    #header .header_wrap ul li a p {
        font-size: 1.4rem;
    }
}


@media screen and (max-width: 767px) {
    #header {
        position: fixed;
    }

    #header .header_wrap {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: #fff;
        padding: 0 15px;
        height: 65px;
    }

    #header .header_wrap ul {
        opacity: 0;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
        pointer-events: none;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background-image: url(../img/background01.jpg);
        background-size: cover;
        background-position: center;
    }

    #header .header_wrap ul li:not(:last-child) {
        margin-right: 0;
        margin-bottom: 25px;
    }

    #header .header_wrap ul li a img {
        width: 45px;
    }

    #header .header_wrap ul li a p {
        font-size: 1.8rem;
    }

    #header.opened .header_wrap .hamburger span:first-child {
        opacity: 0;
    }

    #header.opened .header_wrap .hamburger span:nth-child(2) {
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    #header.opened .header_wrap .hamburger span:nth-child(2)::before {
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    #header.opened .header_wrap .hamburger span:last-child {
        opacity: 0;
    }

    #header.opened .header_wrap ul {
        opacity: 1;
        pointer-events: auto;
    }
}

@media screen and (min-width: 768px) {
    #header.pre-scrolled {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        position: fixed;
        background-color: #ffffff;
        -webkit-box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
        box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    }

    #header.pre-scrolled .header_wrap {
        max-width: 100%;
        padding: 0 20px 18px;
    }

    #header.transition {
        -webkit-transition: .3s;
        transition: .3s;
    }

    #header.scrolled {
        -webkit-transition: .3s;
        transition: .3s;
        position: fixed;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }
}


/*------------------------
キービジュアル・お知らせ・インスタグラム
------------------------*/
#key_visual {
    background-image: url(../img/background01.jpg);
    background-size: cover;
    padding: 100px 0 100px;
}

#key_visual .key_title {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

#key_visual .mv_img {
    border-radius: 15px
}

#key_visual .key_title h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    width: 420px;
    max-width: 80%;
    padding: calc((42/1400)*100%) calc((60/1400)*100%);
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#key_visual .information {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffffff;
    margin-top: 65px;
}

#key_visual .information .title {
    width: calc((306/1110)*100%);
    font-size: 2.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 140px;
    border-right: 1px solid #ededed
}

#key_visual .information .title .view_all a {
    display: block;
    text-align: center;
    width: 110px;
    padding: 9px 0;
    font-size: 1.4rem;
    border: 1px solid #101010;
    margin: 16px auto 0;
}

#key_visual .information .lists {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

#key_visual .information .lists li:nth-child(2n) {
    background-color: #F2F2F2;
}

#key_visual .information .lists li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 11px 15px 11px 4%;
    font-size: 1.4rem;
    line-height: calc(22/14);
}

#key_visual .information .lists li a p {
    margin-left: 38px;
}

#key_visual .instagram .title {
    width: 185px;
    margin: 30px 0 20px;
}

@media screen and (max-width: 1200px) {
    #key_visual {
        padding-top: 86px;
    }
}

@media screen and (max-width: 767px) {
    #key_visual {
        padding: 65px 0 40px;
    }

    #key_visual .key_title {
        padding: 15px 15px 0;
    }

    #key_visual .key_title h2 {
        width: calc((210/375)*100%);
        padding: calc((20/375)*100%) calc((20/375)*100%);
    }

    #key_visual .information {
        margin-top: 15px;
        display: block;
        position: relative;
    }

    #key_visual .information .title {
        display: block;
        width: 100%;
        font-size: 1.8rem;
        text-align: center;
        padding: 20px 0 12px;
        border-bottom: 1px solid #F2F2F2;
        min-height: auto;
        border-right: none
    }

    #key_visual .information .title .view_all {
        position: absolute;
        left: 50%;
        bottom: -42px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    #key_visual .information .title .view_all a {
        width: 94px;
        padding: 6px 0;
        background-color: #fff;
    }

    #key_visual .information .lists li a {
        font-size: 1.2rem;
        display: block;
        padding: 6px 14px;
    }

    #key_visual .information .lists li a p {
        font-size: 1.4rem;
        margin-left: 0;
    }

    #key_visual .instagram .title {
        margin: 60px 0 15px;
    }
}


/*------------------------
ビワマス
------------------------*/
#biwamasu .introduction {
    background-image: url(../img/background02.jpg);
    background-size: cover;
    padding: 120px 0 100px;
}

#biwamasu .introduction h2 {
    width: 339px;
    margin: 0 auto;
}

#biwamasu .introduction .image {
    max-width: 770px;
    margin: 40px auto 47px;
}

#biwamasu .introduction p {
    text-align: center;
    font-size: 1.8rem;
    line-height: calc(36/18);
}

#biwamasu .introduction p:not(:last-of-type) {
    margin-bottom: 17px;
}

#biwamasu .promotion {
    background: -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(50%, #ffffff), color-stop(50%, #F7FBFF), to(#F7FBFF));
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 50%, #F7FBFF 50%, #F7FBFF 100%);
}

#biwamasu .promotion ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

#biwamasu .promotion ul li {
    padding: calc((86/1400)*100%) calc((100/1400)*100%) calc((98/1400)*100%);
    width: 50%;
}

#biwamasu .promotion ul li h3 {
    margin: 0 auto;
}

#biwamasu .promotion ul li p {
    font-size: 1.6rem;
    line-height: calc(32/16);
}

#biwamasu .promotion ul li .image {
    margin: 0 auto;
}

#biwamasu .promotion ul li:first-child h3 {
    width: calc((271/500)*100%);
}

#biwamasu .promotion ul li:first-child p {
    margin: 32px 0 24px;
}

#biwamasu .promotion ul li:first-child .image {
    width: calc((383/500)*100%);
}

#biwamasu .promotion ul li:last-child h3 {
    width: calc((398/500)*100%);
}

#biwamasu .promotion ul li:last-child .image {
    width: calc((398/500)*100%);
    margin: 35px auto 26px;
}

@media screen and (max-width: 767px) {
    #biwamasu .introduction {
        padding: 40px 0;
    }

    #biwamasu .introduction h2 {
        width: 220px;
    }

    #biwamasu .introduction .image {
        margin: 25px auto 15px;
    }

    #biwamasu .introduction p {
        text-align: left;
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    #biwamasu .introduction p:not(:last-of-type) {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 1000px) {
    #biwamasu .promotion {
        background: none;
    }

    #biwamasu .promotion ul {
        display: block;
    }

    #biwamasu .promotion ul li {
        width: 100%;
        padding: 40px 15px;
    }

    #biwamasu .promotion ul li p {
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    #biwamasu .promotion ul li:first-child h3 {
        width: 186px;
    }

    #biwamasu .promotion ul li:first-child p {
        margin: 20px 0;
    }

    #biwamasu .promotion ul li:first-child .image {
        width: calc((300/375)*100%);
    }

    #biwamasu .promotion ul li:last-child {
        background-color: #F7FBFF;
    }

    #biwamasu .promotion ul li:last-child h3 {
        width: 274px;
    }

    #biwamasu .promotion ul li:last-child .image {
        margin: 25px auto 20px;
        width: calc((300/375)*100%);
    }
}


/*------------------------
召し上がり方
------------------------*/
#recipe h2 {
    padding: 92px 0 136px;
    background-image: url(../img/recipe_titleBg.pc.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 24px;
}

#recipe h2 img {
    display: block;
    width: 589px;
    margin: 0 auto;
}

#recipe .background {
    background-image: url(../img/background03.jpg);
    background-size: cover;
    padding: 95px 0;
}

#recipe .background ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#recipe .background ul li .image {
    width: calc((600/1110)*100%);
    min-width: 460px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-right: calc((46/1110)*100%);
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

#recipe .background ul li .note {
    font-size: 1.3rem;
    position: absolute;
    left: 0;
    bottom: -25px;
}

#recipe .background ul li .subtitle {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #003C62;
    padding: 12px;
}

#recipe .background ul li h3 {
    min-width: 220px;
    margin: calc((28/464)*100%) 0 calc((26/464)*100%);
}

#recipe .background ul li .text {
    font-size: 1.6rem;
    line-height: calc((30/16));
}

#recipe .background ul li:first-child h3 {
    width: calc((276/464)*100%);
}

#recipe .background ul li:nth-child(2) h3 {
    width: calc((325/464)*100%);
}

#recipe .background ul li:last-child h3 {
    width: calc((337/464)*100%);
}

#recipe .background ul li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

#recipe .background ul li:nth-child(2n) .image {
    margin-right: 0;
    margin-left: calc((46/1110)*100%);
}

#recipe .background ul li:not(:last-child) {
    margin-bottom: 55px;
}

#recipe .background .and_so_on {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: calc(32/18);
    margin-top: 82px;
}

#recipe .tsu_ttl {
    margin: 25px 0
}

#recipe .tsu_ttl img {
   max-width: 980px
}

@media screen and (max-width: 1000px) {
    #recipe h2 {
        background-image: url(../img/recipe_titleBg.sp.jpg);
        margin-top: 0;
        padding: calc((36/375)*100%) 0;
    }

    #recipe h2 img {
        width: calc((260/375)*100%);
    }

    #recipe .background {
        padding: 15px 0 40px;
    }

    #recipe .background ul li {
        display: block;
    }

    #recipe .background ul li .image {
        margin-bottom: 26px;
        margin-right: 0;
        width: 100%;
        min-width: auto;
    }

    #recipe .background ul li .note {
        position: relative;
        bottom: 0;
        margin-top: 10px;
    }

    #recipe .background ul li .subtitle {
        font-size: 1.5rem;
        padding: 10px;
    }

    #recipe .background ul li h3 {
        margin: 20px 0;
    }

    #recipe .background ul li .text {
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    #recipe .background ul li:first-child h3 {
        width: 276px;
    }

    #recipe .background ul li:nth-child(2) h3 {
        width: 325px;
    }

    #recipe .background ul li:last-child h3 {
        width: 337px;
    }

    #recipe .background ul li:nth-child(2n) .image {
        margin-left: 0;
    }

    #recipe .background ul li:not(:last-child) {
        margin-bottom: 25px;
    }

    #recipe .background .and_so_on {
        margin-top: 20px;
        font-size: 1.5rem;
        line-height: calc(25/15);
    }
}

@media screen and (max-width: 767px) {
    #recipe .background ul li h3 {
        margin: calc((28/464)*100%) 0 calc((26/464)*100%);
    }

    #recipe .background ul li:first-child h3 {
        width: calc((276/464)*100%);
    }

    #recipe .background ul li:nth-child(2) h3 {
        width: calc((325/464)*100%);
    }

    #recipe .background ul li:last-child h3 {
        width: calc((337/464)*100%);
    }
}


/*------------------------
ご注文
------------------------*/
.syun_cal {
    text-align: center;
    margin: 20px 0 35px;
    font-weight: 600;
    line-height: 1.6;
    font-size: 1.8rem
}
#order {
    background-image: url(../img/background04.pc.jpg);
    background-size: cover;
    background-position: top center;
    padding: 118px 0 128px;
    -webkit-box-shadow: 0px 10px 6px -6px rgba(0, 0, 0, 0.16) inset;
    box-shadow: 0px 10px 6px -6px rgba(0, 0, 0, 0.16) inset;
}

#order h2 {
    width: 333px;
    margin: 0 auto;
}

#order .order_lists .order_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
}

#order .order_lists .order_list .slider {
    max-width: 100%;
    width: 48%;
    min-width: 450px;
    margin-right: calc((45/1110)*100%);
}

#order .order_lists .order_list .slider .mySwiper {
    margin-top: 14px;
}

#order .order_lists .order_list .slider .swiper-slide {
    cursor: pointer;
}

#order .order_lists .order_list .texts {
    width: 52%;
}

#order .order_lists .order_list .texts .box {
    color: #fff;
    font-weight: 600;
    display: inline-block;
    padding: 0 10px;
}

#order .order_lists .order_list .texts .box.dark_blue {
    font-size: 1.6rem;
    background-color: #102288;
    height: 28px;
    line-height: 28px;
}

#order .order_lists .order_list .texts .box.light_blue {
    font-size: 1.5rem;
    background-color: #0E83F0;
    height: 25px;
    line-height: 25px;
    margin: 5px 0
}

#order .order_lists .order_list .texts h3 {
    font-size: 2.3rem;
    font-weight: 600;
    margin-top: 10px;
}

#order .order_lists .order_list .texts .explanation {
    font-size: 1.6rem;
    line-height: calc(26/16);
    margin: 18px 0 7px;
}

#order .order_lists .order_list .texts .details li:nth-child(n+2) {
    border-top: 1px dotted #707070;
    margin-top: 0px;
}

#order .order_lists .order_list .texts .details li .name {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 12px 0 10px;
}

#order .order_lists .order_list .texts .details li .name span {
    font-size: 1.7rem;
    margin-left: 1em;
    color:#317c0a
}

#order .order_lists .order_list .texts .details li .price {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color:red
}

#order .order_lists .order_list .texts .details li .price span {
    font-size: 1.5rem;
}

#order .order_lists .order_list .texts .details li p {
    font-size: 1.5rem;
}

#order .order_lists .order_list .texts .details li p:nth-child(n+2) {
    margin-top: 10px;
}

#order .order_lists .order_list dl.feele_list {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    flex-flow: wrap;
    margin-top: 13px;
    line-height: 1.6
}

#order .order_lists .order_list dl.feele_list dt {
    width: 9em
}

#order .order_lists .order_list dl.feele_list dd {
    width: calc(100% - 9em);
    color:red
}

#order .order_lists .order_list dl.feele_list dd span {
    font-size: 1.5rem;
    
}

#order .order_lists .order_list dl.feele_list dd span.sashimi {
    font-size: 1.5rem;
    font-size: 1.6rem;
    margin-left: 1em;
    color:#317c0a
}


#order .notes {
    background-color: #fff;
    border: 2px solid #BF9667;
    padding: 42px 50px 42px 50px;
    font-weight: 600;
    margin-top: 55px;
}

#order .notes p {
    font-size: 1.8rem;
    line-height: calc(35/18);
}

#order .notes .box {
    width: 157px;
    height: 35px;
    line-height: 35px;
    background-color: #BF9667;
    color: #ffffff;
    font-size: 1.8rem;
    margin: 27px 0 14px;
}

#order .notes ul li {
    font-size: 1.6rem;
    line-height: calc(32/16);
    padding-left: 1em;
    text-indent: -1em;
}

#order .notes ul li .small {
    font-size: 1.4rem;
    font-weight: 300;
}

#order .notes ul li .red {
    color: #D80303;
}

@media screen and (max-width: 767px) {
    #order {
        -webkit-box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.16) inset;
        box-shadow: 0px 4px 4px -4px rgba(0, 0, 0, 0.16) inset;
        background-image: url(../img/background04.sp.jpg);
        padding: 40px 0;
    }

    #order h2 {
        width: calc((190/375)*100%);
    }

    #order .order_lists .order_list .texts {
        width: 100%;
    }

    #order .order_lists .order_list .texts .box.dark_blue {
        font-size: 1.4rem;
        height: 26px;
        line-height: 26px;
    }

    #order .order_lists .order_list .texts .box.light_blue {
        font-size: 1.4rem;
        height: 24px;
        line-height: 24px;
    }

    #order .order_lists .order_list .texts .explanation {
        margin: 20px 0;
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    #order .notes {
        margin-top: 30px;
        padding: 10px 20px;
    }

    #order .notes p {
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    #order .notes .box {
        margin: 20px 0 10px;
    }

    #order .notes ul li {
        font-size: 1.5rem;
        line-height: calc(25/15);
        padding-left: 0em;
        text-indent: 0em;
    }
}

@media screen and (max-width: 1000px) {
    #order .order_lists .order_list {
        margin-top: 35px;
        display: block;
    }

    #order .order_lists .order_list .slider {
        width: 100%;
        min-width: auto;
        margin-right: 0;
    }

    #order .order_lists .order_list .texts {
        margin-top: 30px;
    }
}


/*------------------------
フォーム
------------------------*/


#form {
    font-weight: 600;
    padding-top: 118px;
    padding-bottom: 110px;
}

#form h2 {
    color: #ffffff;
    background-color: #102288;
    height: 40px;
    line-height: 40px;
    font-size: 2rem;
    padding-left: 15px;
}

#form .text {
    font-size: 1.8rem;
    line-height: calc(32/18);
    margin: 32px 0 17px;
}

#form .text span {
    font-size: 1.6rem;
}

#form .item_lists .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #707070;
    padding: 20px;
}

#form .item_lists .item:nth-child(n+2) {
    margin-top: 30px;
}

#form .item_lists .item .image {
    width: 40%;
    margin-right: 40px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

#form .item_lists .item ul {
    margin-top: 6px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width:60%
}

#form .item_lists .item ul li:nth-child(n+2) {
    padding-top: 13px;
    margin-top: 10px;
    border-top: 1px dotted #707070;
}

#form .item_lists .item ul li .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.6rem;
    margin-bottom: 10px;
}

#form .item_lists .item ul li .name .price {
    color:red
}

#form .item_lists .item ul li .name .price span {
    font-size: 1.3rem;
}

#form .item_lists .item ul li .name div {
    margin-right: 30px;
}

#form .item_lists .item ul li .quantity {
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

#form .item_lists .item ul li .quantity input {
    margin: 0 15px;
    padding: 5px 10px;
    text-align: right;
    width: 80px;
    height: 30px;
    line-height: 30px;
    border-radius: 0;
    border: 1px solid #707070;
}

#form .item_lists .item ul li .weight {
    font-size: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 7px
}

.feel_att {
    font-weight: 400;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #102288
}

#form .item_lists .item ul li .weight select {
    margin: 0 15px;
    padding: 5px 10px;
    text-align: right;
    height: 32px;
    line-height: 32px;
    border-radius: 0;
    border: 1px solid #707070;
}


#form button[type="submit"] {
    display: block;
    background-color: #102288;
    color: #ffffff;
    font-size: 2rem;
    width: 200px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 46px auto 0;
}

#form .note {
    margin-top: 65px;
    padding: 23px 30px;
    border: 1px solid #969292;
    max-height: 227px;
    overflow: scroll;
    -webkit-box-shadow: inset 0px 3px 4px 0px rgba(0, 0, 0, 0.16);
    box-shadow: inset 0px 3px 4px 0px rgba(0, 0, 0, 0.16);
}

#form .note p {
    font-weight: 300;
    font-size: 1.6rem;
    line-height: calc(26/16);
}

#form .form_attention {
    font-weight: 400;
    font-size:1.4rem;
    color:red;
    margin-top: 10px
}

@media screen and (max-width: 767px) {
    #form {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    #form h2 {
        padding-left: 10px;
        font-size: 1.6rem;
        height: 28px;
        line-height: 28px;
    }

    #form .text {
        font-size: 1.5rem;
        line-height: calc(25/15);
        margin: 20px 0;
    }

    #form .text span {
        font-size: 1.5rem;
    }

    #form .item_lists .item {
        padding: 10px 10px 20px;
        display: block;
    }

    #form .item_lists .item .image {
        width: 100%;
        margin-right: 0;
    }

    #form .item_lists .item ul {
        margin-top: 20px;
        width: 100%
    }

    #form .item_lists .item ul li:nth-child(n+2) {
        margin-top: 15px;
    }

    #form .item_lists .item ul li .name {
        display: block;
        font-size: 1.5rem;
        line-height: 1.6
    }

    #form .item_lists .item ul li .name .price {
        font-size: 1.5rem;
    }

    #form .item_lists .item ul li .name .price span {
        font-size: 1.3rem;
    }

    #form .item_lists .item ul li .name div {
        margin-right: 0;
    }

    #form .item_lists .item ul li .quantity {
        font-size: 1.5rem;
    }

    #form .item_lists .item ul li .quantity input {
        margin: 0 14px 0 20px;
        width: 76px;
        height: 30px;
        line-height: 30px;
    }

    #form button[type="submit"] {
        margin: 32px auto 0;
        width: 192px;
        height: 46px;
        line-height: 46px;
        font-size: 1.6rem;
    }

    #form .note {
        margin-top: 45px;
        padding: 20px;
    }

    #form .note p {
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    .feel_att {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

}

/*------------------------
ご注文ガイドリンク
------------------------*/
.syopping_info {
    display: flex;
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 40px
}

.syopping_info a {
    background-color: #8d0414;
    color: #fff;
    margin-right: 15px;
    padding: 12px 15px
}

@media screen and (max-width: 767px) {
    .syopping_info {
        display: block;
        font-size: 1.5rem;
        margin-top: 30px
    }

    .syopping_info li {
        margin-bottom: 25px
    }

    .syopping_info a {
        background-color: #8d0414;
        color: #fff;
        margin-right: 0;
        padding: 8px;

    }
}

/*------------------------
フッター
------------------------*/
footer .footer_bg {
    background-image: url(../img/background05.pc.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0 70px;
    text-align: center;
    position: relative;
}

.footer_link {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    margin-bottom: 45px
}

.footer_link li {
    margin: 0 10px
}

.footer_link li a:hover {
    color: #1b3aea;
    opacity: 1
}

footer .footer_bg h2 {
    width: 350px;
    margin: 0 auto 25px;
}

footer .footer_bg p {
    font-size: 1.8rem;
    line-height: calc(26/18);
}

footer .footer_bg .tel {
    margin: 5px 0 0;
}

footer .footer_bg .go_top {
    width: 58px;
    height: 58px;
    background-color: #8B7960;
    border-radius: 5px;
    color: #ffffff;
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 10px;
    cursor: pointer;
}

footer .footer_bg .go_top::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11px 21px 11px;
    border-color: transparent transparent #ffffff transparent;
}

footer .copy_right {
    background-color: #2E2E2E;
    text-align: center;
    color: #ffffff;
    font-size: 1.3rem;
    padding: 12px 0;
}

@media screen and (max-width: 767px) {
    footer .footer_bg {
        padding: 44px 0 36px;
        background-image: url(../img/background05.sp.jpg);
    }

    .footer_link {
        flex-flow: wrap;
        line-height: 1.7;
        font-size: 1.4rem;
        margin-bottom: 40px
    }

    .footer_link li {
        margin: 0 8px
    }

    footer .footer_bg h2 {
        width: 280px;
        margin: 0 auto 25px;
    }

    footer .footer_bg p {
        font-size: 1.5rem;
        line-height: calc(25/15);
    }

    footer .footer_bg .tel {
        margin: 10px 0 0;
    }

    footer .footer_bg .go_top {
        right: 15px;
        width: 46px;
        height: 46px;
        padding-bottom: 6px;
    }

    footer .footer_bg .go_top::before {
        top: 10px;
        border-width: 0 8px 16px 8px;
    }

    footer .copy_right {
        padding: 10px 0;
    }
}


/*Go　To　Top*/
/*リンクの形状*/


#page-top a {
    width: 58px;
    height: 58px;
    background-color: #8B7960;
    border-radius: 5px;
    color: #ffffff;
    position: absolute;
    bottom: 0;
    right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding-bottom: 10px;
    cursor: pointer;
    font-size: 1.2rem !important;
}

#page-top a::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 12px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 11px 18px 11px;
    border-color: transparent transparent #ffffff transparent;
}

#page-top a:hover {
    background: #777;
}

/*リンクを右下に固定*/
#page-top {
    position: fixed;
    right: 10px;
    bottom: 15px;
    z-index: 2;
    /*はじめは非表示*/
    opacity: 0;
    transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*　下に下がる動き　*/

#page-top.DownMove {
    animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(100px);
    }
}


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

    #page-top a {
        right: 0;
        bottom: 0px;
        width: 42px;
        height: 42px;
        padding-bottom: 3px;
        font-size: 1rem !important
    }

    #page-top a::before {
        top: 10px;
        border-width: 0 8px 10px 8px;
    }

    footer .copy_right {
        padding: 10px 0;
    }
}

/********************************************
インスタグラムフィード
********************************************/
/*.insta-area {
  padding: 0 3rem;
  margin-bottom: 40px;
}

.insta-area .insta-link {
  max-width: 184px;
  margin-top: 10px;
    margin-left: 15px
}*/
/********************************************
下階層共通
********************************************/
.bread {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    margin: 15px auto 45px;
    font-size: 1.4rem;
}

.bread a {
    color: #1455d0
}

@media screen and (max-width: 767px) {
    .bread {
        padding: 15px 15px 0;
    }
}

/********************************************
送料
********************************************/

#post #key_visual .key_title h2 {
    top: 50%;
    left: 50%;
    width: auto;
    padding: auto;
    /*width: calc((344/1400)*100%);
  padding: calc((40/1400)*100%) calc((60/1400)*100%);*/
}

#post h3 {
    font-size: 1.8rem;
    font-weight: 600;
    background: #102288;
    color: #fff;
    padding: 10px 10px;
    margin-bottom: 35px
}

#post table {
    font-size: 1.5rem;
    border-collapse: collapse;
    background: #fff;
    width: 100%
}

#post table td,
#post table th {
    padding: 10px 8px;
    border: 1px solid #1c1c1c;
}

#post table th {
    background-color: #2f68d4;
    color: #fff;
    font-weight: 600
}

#post table td {
    text-align: center;
    vertical-align: middle
}

#post table .blank {
    background: #8b8b8b
}

#post table .blank_dark {
    background: #5d5d5d
}

#post .label-pk {
    background: #fff0f2;
    font-weight: 600
}

#post .fee {
    text-align: right
}

#post .day1 {
    background: #ffff97
}

#post .dot-list {
    font-size: 1.6rem;
    background: #fff;
    border: 2px solid #fcb10a;
    margin: 25px 0 0;
    padding: 15px 15px 15px calc(20px + 1.5em);
    list-style: disc
}

#post .dot-list li {
    margin: 5px 0;
    line-height: 1.4
}


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

    #post table td,
    #post table th {
        white-space: nowrap
    }

    .scroll {
        overflow: auto;
        white-space: nowrap;
    }

    .scroll::-webkit-scrollbar {
        height: 5px;
    }

    .scroll::-webkit-scrollbar-track {
        background: #F1F1F1;
    }

    .scroll::-webkit-scrollbar-thumb {
        background: #BCBCBC;
    }
}

@media screen and (max-width: 767px) {
    #post #key_visual .key_title h2 {
        width: calc((202/375)*100%) !important;
        padding: calc((20/375)*100%) calc((15/375)*100%) !important;
        background-color: #fff !important;
        top: calc(50% + 7.5px);
    }

    #post h3 {
        font-size: 1.6rem;
        padding: 8px;
        margin-bottom: 20px
    }

    #post table {
        font-size: 1.4rem;
    }

    #post table td,
    #post table th {
        padding: 8px 6px;
        border: 1px solid #1c1c1c;
    }

    #post table th {
        background-color: #576dea;
        color: #fff;
    }

    #post .dot-list {
        font-size: 1.5rem;
        margin: 20px 0 0;
        padding: 15px 5px 15px calc(10px + 1.2em);
        list-style: disc
    }

    #post .dot-list li {
        margin: 2px 0
    }

}

/********************************************
ショッピングガイド トップ抜粋
********************************************/

.form_att {
    margin-top: 25px;
    font-weight: 400;
    line-height: 1.6;
    border:1px solid #cccccc;
    padding: 40px;
    background: rgba(255, 241, 245, 0.76)
}

.form_att h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color:red;
    margin-bottom: 8px
}

.form_att ul {
    list-style: disc;
    font-size: 1.6rem;
    padding-left: 1.5em;
    margin: 5px 0
}


.top_guide {
    display: flex;
    margin: 50px 0 0 0;
    border:1px solid #cccccc;
    padding: 40px 0;
    background-color: rgba(227, 246, 255, 0.63)
}

.top_guide .left {
    width: 50%;
    padding: 0 20px 0 45px
}

.top_guide .right {
    width: 50%;
     padding: 0 45px 0 20px
}


.top_guide h3 {
    font-size: 2rem;
    border-bottom:3px solid #102288;
    padding-bottom: 10px;
    margin-bottom: 18px;
    margin-top: 20px
}

.top_guide h4 {
    font-size: 1.7rem;
    margin-bottom: 15px;
    margin-top: 20px;
    color:#102288;
}

.top_guide h3:first-of-type {
    margin-top: 0
}


.top_guide p {
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 8px
}

.top_guide p:last-of-type {
    margin-bottom: 0
}

.top_guide ul {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    list-style: disc;
    padding-left: 1.5em
}

.top_guide ul li {
    
}
.top_guide .link {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 15px 0
}
.top_guide a {
 background: #102288;
    color:#fff;
    padding: 8px
}

.top_guide p.att {
    font-weight: 600;
    color:red
}

.top_guide p.indent {
    margin-left: .6em
}

@media screen and (max-width: 767px) {
    
.top_guide {
    display: block;
    margin: 30px 0 0 0;
    padding: 20px 0;
}

.top_guide .left {
    width: 100%;
    padding: 0 20px
}

.top_guide .right {
    width: 100%;
     padding: 20px 20px 0
}


.top_guide h3 {
    font-size: 1.7rem;
    border-bottom:2px solid #102288;
    padding-bottom: 8px;
    margin-bottom: 15px;
    margin-top: 20px
}

.top_guide h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 15px;
}

.top_guide ul,.top_guide p {
    font-size: 1.4rem;
}
}


/********************************************
ショッピングガイド
********************************************/

#guide #key_visual .key_title h2 {
    top: 50%;
    left: 50%;
    width: auto;
    padding: auto;
}

#guide h3 {
    font-size: 1.8rem;
    font-weight: 600;
    background: #102288;
    color: #fff;
    padding: 10px 10px;
    margin-bottom: 35px
}

#guide table {
    font-size: 1.5rem;
    background: #fff;
    border-collapse: collapse
}

#guide table {
    margin-bottom: 45px;
    width: 100%
}

#guide table:last-of-type {
    margin-bottom: 0
}

#guide table h4 {
    font-weight: 600;
    margin-bottom: .3em
}

#guide table th {
    background-color: #e7f4ff;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
    width: 12em
}


#guide table th,
#guide table td {
    padding: 15px 15px;
    border: 1px solid #383838;
    line-height: 1.6;
}

#guide table th,
#guide table td p {
    margin-bottom: .5em
}

#guide table td p.indent {
    margin-left: 1em
}

#guide table .red {
    color: #f00000
}

#guide table strong {
    font-weight: 600
}

#guide table th,
#guide table td ul li {
    margin-bottom: .5em
}

#guide table th,
#guide table td p:last-of-type {
    margin-bottom: 0
}

#guide table td .dot-list {
    list-style: disc;
    padding-left: 1em
}

#guide table td .dot-list li {
    margin-bottom: 0
}


@media screen and (max-width: 767px) {
    #guide #key_visual .key_title h2 {
        width: calc((245/375)*100%) !important;
        padding: calc((15/375)*100%) calc((15/375)*100%) !important;
        background-color: #fff !important;
        top: calc(50% + 7.5px);
    }

    #guide h3 {
        font-size: 1.6rem;
        padding: 8px;
        margin-bottom: 25px
    }

    #guide table {
        font-size: 1.4rem;
    }

    #guide table p {
        font-size: 1.4rem;
    }

    #guide table {
        margin-bottom: 35px;
        border-bottom: 1px solid #383838
    }

    #guide table th,
    #guide table td {
        display: block;
        width: 100%;
        border-bottom: none;
    }

    #guide table th,
    #guide table td {
        padding: 10px 10px;
    }
}

/********************************************
個人情報保護方針
********************************************/

#policy #key_visual .key_title h2 {
    top: 50%;
    left: 50%;
    width: auto;
    padding: auto;
}

p.policy_link {
    font-size: 1.4rem !important;
    margin-top: 10px
}

.policy h3 {
    font-size: 1.8rem;
    font-weight: 600;
    background: #102288;
    color: #fff;
    padding: 10px 10px;
    margin-bottom: 35px
}

.policy h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 25px 0 15px
}

.policy p {
    line-height: 1.6
}

@media screen and (max-width: 767px) {
    #policy #key_visual .key_title h2 {
        width: calc((245/375)*100%) !important;
        padding: calc((15/375)*100%) calc((15/375)*100%) !important;
        background-color: #fff !important;
        top: calc(50% + 7.5px);
    }

    p.policy_link {
        font-size: 1.3rem !important;
        margin-top: 10px
    }
}



/********************************************
お知らせ
********************************************/

#info #key_visual .key_title h2 {
    top: 50%;
    left: 50%;
    width: auto;
    padding: auto;
    width: calc((220/1400)*100%);
    padding: calc((40/1400)*100%) calc((80/1400)*100%);
}

.info_arc_wrap {
    display: flex;
    width: 100%;
    justify-content: space-between
}

.info_arc_wrap .info_right_cont {
    width: 200px
}

.info_arc_wrap .info_right_cont h3 {
    background: #115793;
    color: #fff;
    font-size: 1.6rem;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px
}

.info_arc_wrap .info_right_cont .cat_list {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info_arc_wrap .info_right_cont .cat_list a {
    display: block
}

.info_arc_wrap .info_right_cont .cat_list li {
    background-color: #fff;
    border: 1px solid #115793;
    padding: 15px 10px;
    margin-bottom: 15px
}

.info_arc_wrap .info_right_cont .arc_list {
    font-size: 1.5rem;
}

.info_arc_wrap .info_right_cont .arc_list li {
    margin-bottom: 15px;
    margin-left: 15px
}

.info_arc_wrap .info_left_cont {
    width: calc(100% - 200px);
    padding-right: 60px
}

.info_arc_wrap .info_left_cont .info_list {
    width: 100%;
    font-size: 1.6rem
}

.info_arc_wrap .info_left_cont .info_list li {
    padding: 25px 20px;
    background-color: #fff;
}

.info_arc_wrap .info_left_cont .info_list li:nth-child(2n) {
    background-color: #F2F2F2
}

.info_arc_wrap .info_left_cont .info_list span.date {
    margin-right: 20px
}

.info_arc_wrap .info_left_cont .info_list span.cat {
    background: #000;
    color: #fff;
    font-size: 1.3rem;
    padding: 4px 10px;
    border-radius: 15px;
    margin-right: 6px
}

.info_arc_wrap .info_left_cont .info_list a {
    margin-left: 14px
}

@media screen and (max-width: 767px) {
    #info #key_visual .key_title h2 {
        width: calc((130/375)*100%) !important;
        padding: calc((20/375)*100%) calc((23/375)*100%) !important;
        background-color: #fff !important;
        top: calc(50% + 7.5px);
    }

    .info_arc_wrap {
        display: block;
    }

    .info_arc_wrap .info_right_cont {
        width: 100%;
        margin-top: 30px
    }

    .info_arc_wrap .info_right_cont h3 {
        font-size: 1.5rem;
        padding: 12px 0;
        margin-bottom: 15px
    }

    .info_arc_wrap .info_right_cont .cat_list {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .info_arc_wrap .info_right_cont .cat_list li {
        padding: 10px 10px;
        margin-bottom: 12px
    }

    .info_arc_wrap .info_right_cont .arc_list {
        font-size: 1.4rem;
    }

    .info_arc_wrap .info_right_cont .arc_list li {
        margin-bottom: 12px;
        margin-left: 10px
    }

    .info_arc_wrap .info_left_cont {
        width: 100%;
        padding-right: 0
    }

    .info_arc_wrap .info_left_cont .info_list {
        width: 100%;
        font-size: 1.4rem
    }

    .info_arc_wrap .info_left_cont .info_list li {
        padding: 10px 10px;
        line-height: 1.7
    }


    .info_arc_wrap .info_left_cont .info_list span.date {
        margin-right: 8px;
        font-size: 1.3rem;
        /*display: block*/
    }

    .info_arc_wrap .info_left_cont .info_list span.cat {
        font-size: 1.1rem;
        padding: 3px 8px 4px;
    }

    .info_arc_wrap .info_left_cont .info_list a {
        display: block;
        margin-left: 0
    }

}

/*ページネーション
---------------------------------------------------------------------------*/
.pager {
    margin: 45px auto 0
}

.pager .pagination {
    text-align: center;
}

.pager .pagination {
    padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #115793;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-size: 1.5rem;
    line-height: 0
}


.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #f79348;
    border-radius: 50px;
    opacity: 1
}

/********* ページネーション  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .pager {
        margin: 25px auto 0
    }


    .pager .pagination {
        text-align: center;
    }

    .pager .pagination li {
        display: none;
        font-size: 1.4rem;
    }

    .pager .pagination li.pre,
    .pager .pagination li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .pagination li.pre a,
    .pager .pagination li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .pagination li.pre span::after {
        content: "　前の10件へ";
    }

    .pager .pagination li.next span::before {
        content: "次の10件へ　";
    }
}

/*投稿ページ詳細（共通）
---------------------------------------------------------------------------*/
.info_arc_cont {
    background-color: #fff;
    padding: 60px;
    border-radius: 15px
}

.info_arc_cont .info_ttl {
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    line-height: 1.5;
    border-bottom: 1px dotted gray
}

.info_arc_cont .date {
    font-size: 1.4rem;
    margin-bottom: 12px
}

.info_arc_cont .cat span {
    margin-right: 10px;
    font-size: 1.3rem;
    background: #000;
    border-radius: 30px;
    padding: 5px 13px 4px
}

.info_arc_cont .cat span a {
    color: #fff;
}

.info_arc_cont img {
    width: auto
}

.sng_cont {
    margin-top: 40px
}

.sng_cont p {
    font-size: 1.6rem;
    line-height: 1.9;
    margin-bottom: 1em
}

.sng_cont p:last-of-type {
    margin-bottom: 0
}

.sng_cont h1 {
    font-size: 3.6rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont h3 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont h4 {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont h5 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont h6 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px
}

.sng_cont img {
    margin: 15px 0;
}

.sng_cont a {
    color: #CF0357
}

.sng_cont a:hover {
    color: #ff8000
}

.more-link {
    margin-top: 60px
}

/********* 投稿ページ詳細  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .info_ttl {
        font-size: 1.7rem;
        margin: 0 0 10px 0;
    }

    .info_arc_cont .date {
        font-size: 1.4rem;
        margin-bottom: 4px
    }

    .info_arc_cont .cat span {
        margin-right: 8px;
        font-size: 1.3rem;
        padding: 4px 8px 3px
    }

    .sng_cont {
        margin-top: 20px
    }

    .sng_cont p {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .sng_cont h1 {
        font-size: 3.2rem;
        margin-bottom: 10px
    }

    .sng_cont h2 {
        font-size: 2.8rem;
        margin-bottom: 10px
    }

    .sng_cont h3 {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .sng_cont h4 {
        font-size: 2.0rem;
        margin-bottom: 10px
    }

    .sng_cont h5 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    .sng_cont h6 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 15px
    }

    .sng_cont img {
        margin: 15px 0
    }

    .more-link {
        margin-top: 40px
    }
}


/*---------------------------------------------------------------
 下階層 お問合せ
---------------------------------------------------------------*/
#contact .top_ttl_area {}

#contact .top_cach_area {
    margin-bottom: 45px
}

.form p {
    margin-bottom: 0;
}

.form {
    margin-right: auto;
    margin-left: auto;
    max-width: 880px;
    padding: 0;
    margin-top: 0;
    font-size: 1.6rem
}

.form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    padding: 20px 0 20px;
    border-bottom: 1px dotted #707070;
    font-family: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    -webkit-box-align: baseline;
    align-items: center;
}

.firefox .form__item {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.form__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 235px;
    -webkit-box-align: center;
    align-items: center;
}

.firefox .form__ttl {
    padding-top: 7px;
}

.form__ttl-item {
    margin-right: 12px;
    font-weight: 500;
    font-size: 1.7rem;
}

.form__ttl-cat--red span {
    background-color: #CE0010;
}

.form__ttl-cat--blue span {
    background-color: #4676D3;
}

.form__ttl-cat span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 5px 6px 4px;
    border-radius: 3px;
    color: #fff;
    font-weight: 300;
    font-size: 1.2rem;
    line-height: 1;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.form__data {
    width: calc(100% - 213px);
}

.form__txt {
    display: block;
    padding: 5px 12px;
    width: 100%;
    height: 42px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.8rem;
}

.h-adr {
    width: calc(100% - 213px);
}

.form__post input {
    width: 10em;
    padding: 5px 12px;
    height: 42px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.8rem;
}

.form__add input {
    width: 100%;
    padding: 5px 12px;
    height: 42px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.8rem;
    margin: 10px 0 0 0
}

.form__content {
    display: block;
    padding: 5px 12px;
    width: 100%;
    height: 195px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.8rem;
}

.form-link {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 45px;
    min-width: 200px;
    text-align: center;
    background-color: #0D2350;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    border: none;
    font-family: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.form-link:first-of-type {
    margin-top: 40px;
}

.form-link:hover {
    opacity: 0.8;
}

.submit_fin {
    text-align: center;
}

.submit_fin .fin {
    font-weight: 600;
    font-size: 3.2rem;
    color: #1d22a0;
}

.submit_fin p {
    line-height: 1.7
}

@media screen and (max-width: 767px) {
    #contact .top_cach_area {
        margin-bottom: 15px
    }

    .form p {
        font-size: 1.4rem
    }

    .form__item {
        display: block;
        padding: 18px 10px;
    }

    .form__ttl {
        width: 100%;
    }

    .form__data {
        margin-top: 10px;
        width: 100%;
    }

    .form__txt {
        padding: 5px 6px;
        height: auto;
        font-size: 1.5rem;
    }

    .form__ttl-cat span {
        font-size: 1.1rem
    }

    .h-adr {
        width: 100%;
    }

    .form__post input {
        width: 9em;
        padding: 5px 6px;
        height: auto;
        color: #4A3535;
        font-size: 1.5rem;
        margin-top: 10px;
    }

    .form__add input {
        width: 100%;
        padding: 5px 6px;
        height: auto;
        font-size: 1.5rem;
        margin: 10px 0 0 0
    }

    .form__content {
        padding: 6px 6px;
        height: 125px;
        font-size: 1.5rem;
    }

    .form-link {
        margin-top: 20px !important;
        padding: 5px 35px;
        min-width: 120px;
        font-size: 1.5rem;
    }

    .form-link:first-of-type {
        margin-top: 30px;
    }

    .form-link:hover {
        opacity: 0.8;
    }

    .submit_fin {
        text-align: center;
    }

    .submit_fin .fin {
        font-weight: 600;
        font-size: 3.2rem;
        color: #1d22a0;
    }

    .submit_fin {
        text-align: left;
    }

    .submit_fin .fin {
        text-align: center;
        font-size: 2.5rem;
    }
}

/*---------------------------------------------------------------
 TOP 注文フォーム
---------------------------------------------------------------*/

#form .top_form_wrap {
    background-color: #f5f5f5;
    border-radius: 15px;
    padding: 45px 30px
}

#form .form {
    max-width: 920px;
}

@media screen and (max-width: 767px) {
    #form .top_form_wrap {
        border-radius: 10px;
        padding: 5px 5px 25px
    }


}
