/********************************
    common
 ********************************/

* {
    box-sizing: border-box;
}
.btn {
    position: relative;
    background-color: rgba(0, 0, 102, 0.7);
    border-radius: 30px;
    display: block;
    width: 80%;
    margin: 0 5%;
    padding: .5rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid #fff;
    color: #FFF;
}
.btn:before {
    content: "";
    position: absolute;
    top: 53%;
    right: 20px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    margin-top: -5px;
}
.line_image{
    width: 100%;
}
h3 img {
    margin-bottom: 6px;
    width: 100px;
    height: 43px;
}
.takeout h3 img {
    height: 56px;
}
.country-tax h3 img {
    height: 34px;
}
.policy h3 img {
    height: 26px;
}
.contact h3 img {
    width: 50px;
    height: 50px;
}
h3 {
    margin-bottom: 1rem;
}


body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.5rem;
}
.is-mobile {
    display: block;
}
.is-pc {
    display: none;
}

@media screen and (min-width: 1024px) {
    h3 img {
        margin-bottom: 6px;
        width: 150px;
        height: 66px;
    }
    .takeout h3 img {
        height: 84px;
    }
    .country-tax h3 img {
        height: 52px;
    }
    .policy h3 img {
        height: 40px;
    }
    .contact h3 img {
        width: 78px;
        height: 80px;
    }
    h3 {
        font-size: 40px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    .is-mobile {
        display: none;
    }
    .is-pc {
        display: block;
    }
}
/********************************
    header
 ********************************/
.head {
    height: 50px;
    padding: 5px 10px;
    background-image: url("../img/top/head_back.png");
    position: sticky;
    top: 0;
    z-index: 101;
    background-repeat-x: repeat;
    background-repeat-y: no-repeat;
}
.head_logo {
    width: 149px;
    height: 40px;
}

@media screen and (min-width: 1024px) {
    .head {
        height: 120px;
        background-image: url("../img/top/head_back@2x.png");
        background-size: contain;
        padding: 20px 40px;
    }
    .head_logo {
        width: 298px;
        height: 80px;
    }
}
/*============
nav
=============*/
nav {
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    background: #000066;
    /*overflow-x: hidden;*/
    /*overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    /*transition: all .5s;*/
    z-index: 3;
    opacity: 1;
}
nav.open  {
    left: 0;
    opacity: 1;
}
nav .inner {
    padding: 25px;
}
nav .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav .inner ul li {
    position: relative;
    margin: 0;
}
nav .inner ul li a {
    display: block;
    color: white;
    font-size: 14px;
    padding: 1em;
    text-decoration: none;
    transition-duration: 0.2s;
}
nav .inner ul li a:hover {
    background: #e4e4e4;
}
@media screen and (min-width: 1024px) {
    nav {
        display: block;
        position: absolute;
        left: 484px;
        top: 9px;
        background-color: inherit;
        width: inherit;
        transition: none;
    }
    nav .inner ul {
        display: flex;
    }
    nav .inner ul li a {
        font-size: 16px;
        white-space: nowrap;
    }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
    display: block;
    position: absolute;
    top: 5px;
    right: 15px;
    width: 40px;
    height: 40px;
    transition: all .5s;
    cursor: pointer;
    z-index: 3;
}
.toggle_btn span {
    display: block;
    position: absolute;
    left: 10px;
    width: 20px;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 4px;
    transition: all .5s;
}
.toggle_btn span:nth-child(1) {
    top: 18px;
}
.toggle_btn span:nth-child(2) {
    top: 24px;
}
.toggle_btn span:nth-child(3) {
    top: 30px;
}
.open.toggle_btn span {
    background-color: #fff;
}
.open.toggle_btn span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
}
.open.toggle_btn span:nth-child(2) {
    opacity: 0;
}
.open.toggle_btn span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(315deg);
    transform: translateY(-5px) rotate(315deg);
}
@media screen and (min-width: 1024px) {
    .toggle_btn {
        display: none;
    }
}

/********************************
    Section
 ********************************/
section {
    position: relative;
}
.section_content {
    padding: 20px;
    height: 100%;
    max-width: 1366px;
    margin: 0 auto;
    clear: both;
    overflow: auto;
    padding-top: 3rem;
}
h3 {
    text-align: center;
}
@media screen and (min-width: 1024px) {
    .section_content {
        padding-top: 5rem;
    }
}

/********************************
    Hero Section
 ********************************/
.hero {
    position: relative;
    margin-top: -13px;
    height: 500px;
}
.hero .section_content {
    padding: 0;
}
.hero_back {
    position: absolute;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}
.hero_back01 {
    background-image: url("../img/top/hero_back.jpg");
}
.hero_back02 {
    background-image: url("../img/top/hero_back_2.jpg");
    display: none;
}
.hero_back .section_content{
    position: relative;
    text-align: inherit;
}
.hero_map {
    width: 253px;
    height: 200px;
    z-index: 1;
    position: absolute;
}
.line_wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 37px;
    background-image: url("../img/top/hero_wave.png");
    background-size: contain;
    background-position: bottom;
    background-repeat-y: no-repeat;
}
.hero .btn {
    margin: 0 auto;
    top: 400px;
}
@media screen and (min-width: 1024px) {
    .hero {
        height: 670px;
    }
    .hero .section_content{
        text-align: inherit;
    }
    .hero_map {
        width: 490px;
        height: 388px;
    }
    .hero .btn {
        width: 300px;
        top: 50px;
        float: right;
    }
    .line_wave {
        height: 135px;
        background-image: url("../img/top/hero_wave@2x.png");
    }
}
/********************************
    Shop Section
 ********************************/
#shop {
    text-align: center;
}
#shop .section_content {
    max-width: 1024px;
}
.shop {
    background-image: url("../img/top/pattern01.jpg");
}
.shop .btn {
    background-color: #3399CC;
    border: 0;
    font-size: 16px;
    padding: 13px 0;
}
.shop_banners {
    margin: 0 auto;
}
.shop_banners .btn{
    margin: 0 auto;
}
.shop_banner {
    margin: 10px auto;
    padding: 0 10px;
}
.shop_images {
    display: block;
    margin: 20px auto;
    width: 100%;
}
@media screen and (min-width: 1024px) {
    .shop_banners {
        float: right;
    }
    .shop_images {
        float: left;
        width: inherit;
    }
    .shop_images img {
        width: 450px;
        height: 450px;
    }
}

/********************************
    News Section
 ********************************/
#news {
    background-image: url("../img/top/pattern02.jpg");
}
#news .section_content {
    max-width: 1024px;
}
.taikeimaru {
    background-image: url("../img/top/taikeimaru.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 137px;
}
.news_topics {
    list-style: none;
    text-align: left;
    padding: 0;
}
.news_topics .topic {
    margin: 10px auto;
}
.news p {
    text-align: left;
}
.social {
    text-align: center;
    margin: 20px auto;
}
.social a {
    margin: 10px;
}
.movie img {
    margin: 10px auto;
    max-width: 100%;
}
@media screen and (min-width: 1024px) {
    .taikeimaru{
        background-image: url("../img/top/taikeimaru_large.jpg");
        height: 500px;
    }
    .news_content {
        float: left;
    }
    .movie {
        float: right;
    }
}

/********************************
    Takeout Section
 ********************************/
#takeout {
    background-image: url("../img/top/pattern01.jpg");
    text-align: center;
}
#takeout p{
    text-align: left;
}
.funamori {
    background-image: url("../img/top/funamori@2x.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 137px;
}
.takeout_banner {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
}
@media screen and (min-width: 1024px) {
    #takeout p{
        text-align: center;
    }
    .funamori {
        background-image: url("../img/top/funamori_large.jpg");
        height: 500px;
    }
    .takeout_banner {
        max-width: 1024px;
    }
}

/********************************
    Country Tax Section
 ********************************/
.country-tax {
    background-image: url("../img/top/pattern02.jpg");
}
.country-tax .section_content{
    overflow: visible;
    max-width: 100%;
    padding: 5rem 0 20px;
}
.goods {
    text-align: center;
}

.goods .box {
    background-color: #FFF;
    color: black;
    margin: 0 15px 20px;
}
.goods .box img{
    width: 100%;
}
.goods .box h4 {
    width:100%;
    height: 4rem;
    padding-bottom: 10px;
    padding: 0 15px;
}
.goods .box p {
    margin: 0;
}
.goods .box .btn {
    background-color: #3399CC;
    border: 0;
    font-size: 16px;
    padding: 13px 0;
    margin: 0 auto 15px;
}
.slick-prev {
    left: 0 !important;
    z-index: 10;
}
.slick-next {
    right: 0 !important;
}
.slick-prev, .slick-next {
    width: 60px !important;
    height: 60px !important;
}
.slick-prev:before, .slick-next:before {
    font-size: 55px !important;
    opacity: 1 !important;
    color: #000066 !important;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .5 !important;
    color: #000066 !important;
}
/********************************
    Geo Park Section
 ********************************/
#geo-park {
    background-image: url("../img/top/pattern01.jpg");
}
#geo-park .section_content {
    text-align: center;
}
#geo-park .section_content a {

}
#geo-park .section_content img {
    width: 100%;
    margin: 0 0 20px;
}
@media screen and (min-width: 1024px) {
    #geo-park .section_content {
        padding-bottom: 110px;
    }
    #geo-park .section_content img {
        width: 470px;
        margin: 0 10px 20px;
    }
}
/********************************
    Policy Section
 ********************************/
#policy {
    background-color: #000066;
    color: #FFFFFF;
}
#policy .section_content {
    max-width: 1024px;
}
.policy p {
    text-align: left;
}
.policy p.caption {
    text-align: center;
    font-size: 20px;
}
.policy .box {
    background-color: #E6EDF1;
    color: black;
    padding: 20px;
    margin-bottom: 20px;
}
.policy .box h4 {
    width:100%;
    /*height:100%;*/
    padding-bottom: 10px;
    margin: 0;
    text-align: center;
    font-size: 20px;
}
.policy .box p {
    margin: 0;
}
.policy .box h4:after {
    content:"";
    display:block;
    height:3px;
    width:100%;
    margin: 10px 0;
    background:radial-gradient(ellipse, #3399CC 20px, rgba(230, 237, 241, 1) 140px)
}
@media screen and (min-width: 1024px) {
    .policy p {
        text-align: center;
    }
    .policy .box p {
        text-align: left;
    }
    .policy .boxes {
        margin: 0 -15px;
    }
    .policy .box {
        width: 300px;
        height: 310px;
        float: left;
        margin: 15px;
    }
}
/********************************
    Contact Section
 ********************************/
.contact {
    background-color: #000033;
    color: #FFFFFF;
}
.company {
    text-align: left;
}
.company .detail {
    margin-top: 30px;
}
.company dl {
    margin: 0 0 1rem 1rem;
}
.company img {
    margin: 0 auto;
}
.company img.photo {
    width: 335px;
    height: 335px;
    display: block;
    margin: 0 auto;
}
.company .tel {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 4px;
}
.company .mail {
    font-size: 24px;
}
.company .tel img, .company .mail img {
    margin-right: .4rem;
    vertical-align: top;
}
.history dt{
    margin-bottom: 1rem;
}
.history dl {
    margin: 0 0 1rem 1rem;
}
.history-event {
    border-bottom: 1px solid white;
}
.history-event:first-child {
    border-top: 1px solid white;
}
@media screen and (min-width: 1024px) {
    .company {
        display: flex;
        max-width: 960px;
    }
    .company img.photo {
        width: 450px;
        height: 450px;
        margin-right: 40px;
    }
    .company .detail {
        margin-top: 0;
    }
    .history {
        margin: 50px auto 0;
        max-width: 960px;
    }
    .history-event {
        display: flex;
        border: none;
    }
    .history-year {
        padding-right: 1rem;
    }
    .history-detail {
        border-left: 1px solid white;
        padding-left: 1rem;

    }
}

/********************************
    Foot
 ********************************/
.foot {
    background-color: #000033;
    color: #FFFFFF;
    text-align: center;
    position: relative;
    height: 90px;
}

.foot a {
    text-decoration: none;
    color: white;
}
.page_top {
    position: fixed;
    right: 0;
    bottom: 0;
    display: block;
}
.page_top img{
    width: 60px;
}
@media screen and (min-width: 1024px) {
    .page_top img{
        width: 100px;
    }
}

/********************************
    About Okuchi-Aji Page
 ********************************/

#about-okuchi-aji .main{
    background-image: url(../img/okuchi-aji/pattern.png);
}
#about-okuchi-aji .hero {
    height: 100px;
}
#about-okuchi-aji .hero_back {
    background-image: url(../img/okuchi-aji/head@2x.png);
}
#about-okuchi-aji .hero_back h1 {
    line-height: 100px;
    color: white;
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    margin-left: 30px;
    filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.7));
}
#about-okuchi-aji section:not(.contact) .section_content {
    padding: 0 0 60px;
    line-height: 32px;
    overflow: hidden;
}
#about-okuchi-aji section:not(.contact) .section_content .detail {
    padding: 0 20px;
}
#about-okuchi-aji section:not(.contact) .section_content p {
    margin-bottom: 36px;
}
#about-okuchi-aji section:not(.contact) .section_content .image {
}
#about-okuchi-aji section:not(.contact) .section_content .image .image-image {
    width: 100vw;
    width: 100%;
    height: 248px;
    background-size: cover;
    background-position: center center;
}
#about-okuchi-aji section:not(.contact) .section_content .image.image01 .image-image {
    background-image: url(../img/okuchi-aji/image01@2x.png);
}
#about-okuchi-aji section:not(.contact) .section_content .image.image02 .image-image {
    background-image: url(../img/okuchi-aji/image02@2x.png);
}
#about-okuchi-aji section:not(.contact) .section_content .image.image03 .image-image {
    background-image: url(../img/okuchi-aji/image03@2x.png);
}
#about-okuchi-aji section:not(.contact) .section_content .image.image04 .image-image {
    background-image: url(../img/okuchi-aji/image04@2x.png);
}
#about-okuchi-aji section:not(.contact) .section_content .image.image05 .image-image {
    background-image: url(../img/okuchi-aji/image05@2x.png);
}
#about-okuchi-aji section:not(.contact) .section_content h4 {
    font-size: 20px;
    font-weight: normal;
}
#about-okuchi-aji section:not(.contact) .section_content h5 {
    font-size: 16px;
    font-weight: normal;
    background:linear-gradient(transparent 60%, #CCCCFF 60%);
    display: inline-block;
    margin: 10px 0;
}

#about-okuchi-aji .detail__cook .icon {
    margin: 0 auto;
    display: block;
}
#about-okuchi-aji .detail__cook.cook01 .icon {
    height: 84px;
}
#about-okuchi-aji .detail__cook.cook02 .icon {
    height: 129px;
}
#about-okuchi-aji .detail__cook.cook03 .icon {
    height: 97px;
}
@media screen and (min-width: 1024px) {
    #about-okuchi-aji .hero {
        height: 300px;
    }
    #about-okuchi-aji .hero_back h1 {
        line-height: 300px;
        margin-left: 253px;
        font-size: 42px;
    }
    #about-okuchi-aji section:not(.contact) .section_content {
        margin-top: 70px;
    }
    #about-okuchi-aji section:not(.contact) .section_content h4 {
        margin-top: 0;
    }
    #about-okuchi-aji section:not(.contact) .section_content .image {
        margin-top: 0;
        background: none;
        width: 48%;
        float: left;
    }
    #about-okuchi-aji section:not(.contact) .section_content .image .image-image {
        background-image: url(../img/okuchi-aji/image01@2x.png);
        background-size: cover;
        background-position: right;
        width: 100%;
        height: 600px;
        position: relative;
    }
    #about-okuchi-aji section:not(.contact) .section_content .image.image02,
    #about-okuchi-aji section:not(.contact) .section_content .image.image04
    {
        float: right;
    }
    #about-okuchi-aji section:not(.contact) .section_content .detail.detail02,
    #about-okuchi-aji section:not(.contact) .section_content .detail.detail04
    {
        float: left;
    }
    #about-okuchi-aji section:not(.contact) .section_content .image.image02 .image-image,
    #about-okuchi-aji section:not(.contact) .section_content .image.image04 .image-image {
        background-position: left;
    }
    #about-okuchi-aji section:not(.contact) .section_content .detail {
        width: 50%;
        float: right;
    }
    #about-okuchi-aji section:not(.contact) .section_content .detail.detail05 {
        padding-bottom: 140px;
    }
    #about-okuchi-aji section:not(.contact) .section_content h4 {
        font-size: 36px;
    }
    #about-okuchi-aji section:not(.contact) .section_content h5 {
        font-size: 24px;
        clear: both;
    }
    #about-okuchi-aji .detail__cook {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    #about-okuchi-aji .icon {
        width: 150px;
        display: block;
    }
    #about-okuchi-aji .detail__paragraph {

    }
}

/********************************
    Privacy Policy Page
 ********************************/

#privacy-policy .main{
    background-image: url(../img/okuchi-aji/pattern.png);
}
#privacy-policy .hero {
    height: 100px;
}
#privacy-policy .hero_back {
    background-image: url(../img/privacy-policy/head@2x.png);
}
#privacy-policy .section_content {
    padding-bottom: 0;
}
#privacy-policy h2 {
    font-size: 18px;
}
#privacy-policy p, #privacy-policy li {
    font-size: 14px;
    line-height: 22px;
}
#privacy-policy ol, #privacy-policy ul {
    padding-left: 1rem;
}
#privacy-policy li {
    padding-left: .6rem;
}
#privacy-policy li > ol, #privacy-policy li > ul {
    padding-left: 0;
}
#privacy-policy p, #privacy-policy li > ol > li{
    list-style-type:none;
    list-style-position:inside;
    counter-increment: cnt;
}
#privacy-policy p, #privacy-policy li > ol > li:before{
    display: marker;
    content: "(" counter(cnt) ") ";
    padding-right: .6rem;
}
#privacy-policy .hero_back h1 {
    line-height: 100px;
    color: white;
    margin: 0;
    font-size: 20px;
    font-weight: normal;
    margin-left: 30px;
    filter: drop-shadow(1px 1px 10px rgba(0, 0, 0, 0.7));
}
@media screen and (min-width: 1024px) {
    #privacy-policy .hero {
        height: 300px;
    }

    #privacy-policy .hero_back h1 {
        line-height: 300px;
        margin-left: 253px;
        font-size: 42px;
    }
}