/*
Theme Name : onTheHammock_theme
Author: onTheHammock LLC.
Author URI: https://onthehammock.com
Description : onTheHammock Original Theme
Version : 1
*/
@charset "UTF-8";

*:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    /* overflow-x: hidden; */
}

body {
    font-size: min(calc(100vw / 76), 18px);
    line-height: 1.8;
    margin: 0;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    letter-spacing: 0.2em;
    /* overflow-x: hidden; */
}

a {
    text-decoration: none;
    color: #172e5c;
}

.textLink_a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #172e5c;
    transition: 0.3s;
}

.textLink_a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 1px;
    background-color: #172e5c;
    transition: 0.3s;
}

.textLink_a:hover::after {
    width: 100%;
}
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    background-color: #172e5c;
    color: white;
    border: 1px solid #172e5c;
    border-radius: 3px;
    transition: 0.3s;
}
a button {
    cursor: pointer;
    border-width: 0;
}

.top_storemap button {
    border: 1px solid #172e5c;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0.2em;
    background: transparent;
    color: #172e5c;
    transition: 0.2s;
}

.top_storemap button:hover {
    background: #172e5c;
    color: #fff;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1);
    border-bottom: solid 3px #17005c;
    margin-top: -3px;
}

.top_storemap button:active {
    border-bottom: solid 2px #17005c;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
    margin-top: -3px;
}

h1 {
    font-size: 200%;
    font-weight: bold;
}

h2 {
    font-size: 150%;
}

h3 {
    font-size: 130%;
}

img {
    max-width: 100%;
    height: auto;
}

#content {
    padding-top: 20px;
    padding-bottom: 20px;
}

#content-wrap {
    background-color: white;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}

#sidebar {
    text-align: center;
}

footer {
    text-align: center;
    background-color: white;
    position: relative;
    z-index: 120;
    padding: 0px 0;
}

footer p {
    padding: 15px 0;
    color: white;
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
}

/* Animation */

.parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 16s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.footer_area {
    background: #172e5c;
    margin-top: -10px;
    margin-bottom: -40px;
}

footer div {
    /*    line-height: 0;*/
}

.footer_logo {
    margin-top: 7vh;
    width: 30vh;
}

.footer_area h6 {
    color: white;
    padding-bottom: 6vh;
    font-size: 80%;
}

footer .menu-menu-container {
    z-index: 10;
    position: relative;
}

footer .menu-menu-container a {
    color: white;
}

footer .menu-menu-container li {
    display: inline-block;
    line-height: 2;
    list-style: none;
    margin: 5px 2vw;
}

footer ul li a {
    color: white;
    display: inline-block;
    position: relative;
    padding-bottom: 5px;
}

footer ul li a::after {
    content: "";
    width: 0%;
    height: 1px;
    display: block;
    background: radial-gradient(#fff, #fff);
    transition: all 0.2s linear;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

footer ul li a:hover::after {
    width: 110%;
}

/*navigation*/

nav {
    display: block;
    z-index: 121;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    animation: show 0.5s linear 0s;
    box-shadow: 1px 0 2px 1px #172e5c;
    backdrop-filter: blur(4px);
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header_logo {
    display: inline-block;
    width: 20%;
    vertical-align: middle;
    margin: 10px 5%;
    margin-right: 10px;
}

.navbar-collapse {
    display: inline-block;
    vertical-align: middle;
    width: 60%;
    text-align: center;
}

.navbar-collapse ul {
    padding-left: 0px;
}

.navbar-collapse ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 1vw;
    font-size: 90%;
}

.navbar-collapse ul li a {
    color: #172e5c;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
}

.navbar-collapse ul li a::after {
    content: "";
    width: 0%;
    height: 1px;
    display: block;
    background: radial-gradient(#172eb2, #172e5c);
    transition: all 0.2s linear;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-collapse ul li a:hover::after {
    width: 110%;
}

.non_underbar a:hover::after {
    width: 0% !important;
}

.non_underbar li a:hover::after {
    width: 70% !important;
}

.navbar-nav ul li {
    display: block;
    transition: all 0.2s linear;
}

.navbar-nav ul li a {
    display: inline-block;
}

.menu > .menu-item {
    display: inline-block;
    padding: 0.5em 0.3em;
}

/* リストの記号を消去 */
.menu-item {
    list-style-type: none;
}

/* サブメニューをabsoluteにするため、親メニューをrelativeに */
.menu-item-has-children {
    position: relative;
}

/* 親メニューにマウスオーバーしたときにカーソルを変更 */
.menu-item-has-children:hover {
    cursor: pointer;
}

/* 子を持つ親メニューにマウスオーバーしたときサブメニューを表示 */
.menu-item-has-children:hover .sub-menu {
    /*  display: block;*/
    opacity: 1;
    top: 100%;
}

/* サブメニューをabsoluteにして親メニューの下に配置。スタイルは適宜調整してください */
.sub-menu {
    opacity: 0;
    /*  display: none;*/
    position: absolute;
    top: -300%;
    left: -60%;
    width: calc(100vw / 6);
    padding: 0;
    transition: all 0.2s linear;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid #172e5c;
    padding: 20px 0;
    font-size: 80% !important;
}

.sub-menu:after,
.sub-menu:before {
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    bottom: 100%;
    left: 40%;
}

.sub-menu:before {
    border-color: rgba(30, 144, 255, 0);
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-left: -11px;
    margin-bottom: 1px;
    border-bottom-color: #172e5c;
}

.sub-menu:after {
    border-color: rgba(247, 221, 51, 0);
    border-top-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 11px;
    border-right-width: 11px;
    margin-left: -11px;
    border-bottom-color: rgba(255, 255, 255, 1);
}

.sub-menu > .menu-item a {
    display: inline-block;
    /* display: block; */
    width: auto;
    height: 100%;
    padding: 0.5em 0;
    font-size: 110%;
}

.menu_inquiry {
    display: inline-block;
    position: absolute;
    background: #172e5c;
    right: 0;
    height: 100%;
    color: #fff;
    transition: 0.5s;
    width: 12%;
    text-align: center;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    font-size: 90%;
}

.menu_inquiry:hover {
    background: rgba(255, 255, 255, 0);
    color: #172e5c;
    border-left: 1px solid #172e5c;
}

.menu_inquiry p {
    font-size: 12px;
    letter-spacing: 0.2em;
}

.cp_fullscreenmenu {
    display: none;
}

#loading {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left:-8%;
    top: 35%;
    text-align: center;
}

#loader-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: #fff;
    z-index: 10000;
}

.load_header {
    color: hsla(0, 0%, 100%, 0.3);
}

@keyframes loading {
    from {
        max-width: 0%;
    }
}

.load_header:before {
    content: url(./images/icon.png);
    position: absolute;
    overflow: hidden;
    color: black;
    max-width: 60%;
    animation: loading 2s linear;
}

#container {
    width: 100%;
    text-align: center;
    display: none;
}

/* fullSlideShow
--------------------------- */
.fullslide_logo {
    position: fixed;
    z-index: 10;
    width: 13%;
    opacity: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.fullslide_news {
    width: 80%;
    background: #fff;
    position: fixed;
    z-index: 10;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #172e5c;
    font-size: 12px;
}

.fullslide_news_title {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: #172e5c;
    color: #fff;
    text-align: center;
    padding: 10px;
    width: 10%;
}

.fullslide_news_btn {
    position: absolute;
    display: inline-block;
    vertical-align: middle;
    right: 0;
    background: #172e5c;
    color: #fff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    width: 12%;
    letter-spacing: 0.2em;
    transition: 0.3s;
    height: 100%;
}

.fullslide_news_btn:hover {
    background: white;
    color: #172e5c;
    border-left: 1px solid #172e5c;
    margin: 0;

    box-shadow: none;
    border-bottom: none;
}

.fullslide_news_text {
    padding: 0px 5px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 83%;
    line-height: 14px;
}

.button_arrow {
    display: inline-block;
    width: 25%;
    position: absolute;
}

.button_arrow::after {
    display: inline-block;
    content: " ";
    width: 25%;
    height: 5px;
    border-bottom: 1px solid #172e5c;
    border-right: 1px solid #172e5c;
    transform: skew(45deg);
    transition: 0.2s;
}

.button_arrow:hover::after {
    width: 35%;
}

.fullSlideShow {
    width: 100%;
    text-align: left;
    position: relative;
    /* overflow: hidden; */
}

.fullSlideShow ul {
    top: 50%;
    left: 50%;
    width: 100%;
    position: fixed;
    /* absolute or fixed */
    /* overflow-x: hidden; */
}

.fullSlideShow ul li {
    top: 0;
    left: 0;
    width: 100%;
    display: none;
    position: absolute;
    background: #000;
}

.fullSlideShow ul li img {
    width: 100%;
    display: block;
    opacity: 0.7;
}

/* SideNavi
------------------------- */
.fullSlideShow .btnPrev,
.fullSlideShow .btnNext {
    margin-top: -25px;
    top: 50%;
    width: 50px;
    height: 50px;
    position: fixed;
    /* absolute or fixed */
    z-index: 105;
}

.fullSlideShow .btnPrev {
    left: 10px;
    background: transparent url(images/btnPrev.png) no-repeat center center;
}

.fullSlideShow .btnNext {
    right: 10px;
    background: transparent url(images/btnNext.png) no-repeat center center;
}

/* PagiNation
--------------------------- */
.pagiNation {
    display: none;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 15px;
    text-align: center;
    position: fixed;
    /* absolute or fixed */
    z-index: 110;
    /* 非表示にする場合は「90」以下に */
    visibility: visible;
    /* 非表示にする場合は「hidden」に */
}

.pagiNation a {
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    display: inline-block;
    overflow: hidden;
    background: #fff;
    opacity: 60%;
}

.pagiNation a.pnActive {
    filter: alpha(opacity=100) !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
}

/* Wrapper
--------------------------- */
#wrapper {
    width: 100%;
    text-align: left;
    background: #fff;
    position: relative;
    z-index: 120;
    overflow-x: hidden;
}

section {
    margin: 10vh 0;
}

.contents {
    padding: 30px 5% 50px 5%;
    text-align: center;
}

.contents p {
}

.contents_half {
    display: inline-block;
    vertical-align: top;
    width: 42vw;
    margin: 10px 0.5vw;
}

.top_img1 {
    width: 100%;
    height: 46vw;
    object-fit: contain;
}

.tate_contents {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    height: calc(100vw / 2.3);
    text-align: left;
    transform: translate(20%, 0%);
}

.tate_contents h3 {
    letter-spacing: 0.5em;
    font-size: 200%;
    line-height: 1.6;
    color: #172e5c;
    margin: 0;
}

.tate_contents p {
    font-size: 109%;
}
.page_defaault_template{
    margin: 0 5vw;
    position: relative;
    display: block;
    padding: 0 0 5vw 0;
    text-align: center;
}
.page_defaault_template p{
    text-align: justify;
}
.page_defaault_template a img{
    margin: 3vw 0;
}
/*top*/
.top_wholesale_part {
    /*        margin:50px 0;*/
    margin-left: -6vw;
    width: 26vw;
    display: inline-block;
    vertical-align: top;
}

.top_part {
    padding: 0 0 0 2vw;
    width: 64.5vw;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}

.top_part p {
    margin: 0;
    margin-bottom: 10px;
}

.top_part_post {
    width: 19vw;
    display: inline-block;
    vertical-align: top;
    margin: 10px 1vw;
}

.top_part_post a {
    transition: 0.3s;
}

.top_part_post a:hover {
    opacity: 0.5;
}

.top_part_post h4 {
    margin: 0 0;
    font-size: 90%;
    letter-spacing: 0.1em;
    padding: 0;
}

.top_part_post h6 {
    margin: 0 0;
    font-size: 85%;
    font-weight: 100;
    letter-spacing: 0em;
    padding: 0 0;
}

.top_part_post h6 span {
    float: right;
    letter-spacing: 0.1em;
}

.top_part_post span a {
    color: #172e5c;
}

.top_part_post img {
    width: 100%;
    height: calc(26vw / 2);
    object-fit: cover;
    /* この一行を追加するだけ！ */
}

.top_map_wrapper {
    width: 110%;
    margin: 5vh -5%;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:3vw 2vw;
}

.top_storemap {
    width: 23vw;
    display: inline-block;
    vertical-align: top;
}

.top_storemap h3 {
    margin: 5px 0;
    color: #172e5c;
    font-size: 115%;
    letter-spacing: 0;
}

.top_storemap p {
    font-size: 75%;
    letter-spacing: 0;
    text-align: left;
    padding: 0 5%;
}

.top_storemap iframe {
    width: 100%;
    height: calc(100vw / 3);
}

.top_storemap a {
    color: black;
}

.top_storemap button {
    font-size: 70%;
    padding: 5px 5%;
    border-radius: 3px;
}

.top_map_magin {
    margin: 0 1vw;
}

.top_freshfish {
    /*    margin: 50px 0;*/
    margin-right: -5vw;
    width: 26vw;
    display: inline-block !important;
    vertical-align: top;
}

.top_freshfish p {
    text-align: left;
    padding-right: 3vw;
    line-height: 1.8;
}

.top_fresh_fish_box {
    width: 47%;
    display: inline-block;
    margin: 1%;
    vertical-align: top;
    position: relative;
}

.top_fresh_fish_box img {
    width: 100%;
    height: calc(100vw / 4.5);
    object-fit: cover;
}
.top_fresh_fish_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    font-size: min(160%, 30px);
    color: white;
    font-weight: 600;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
    width: 80%;
    text-align: center !important;
}

.top_fresh_fish_box h6 {
    position: absolute;
    top: 95%;
    left: 5%;
    -ms-transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-0%, -100%);
    margin: 0;
    padding: 0;
    font-size: 100%;
    color: white;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}
.top_fresh_fish_box2 {
    width: 47%;
    display: inline-block;
    margin: 1%;
    vertical-align: top;
    position: relative;
}

.top_fresh_fish_box2 img {
    width: 100%;
    height: calc(100vw / 3.5);
    object-fit: cover;
}

.top_fresh_fish_box2 p {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    font-size: min(160%, 30px);
    color: white;
    font-weight: 600;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
    width: 80%;
    text-align: center !important;
}

.top_fresh_fish_box2 h6 {
    position: absolute;
    top: 95%;
    left: 5%;
    -ms-transform: translate(-50%, -100%);
    -webkit-transform: translate(-50%, -100%);
    transform: translate(-0%, -100%);
    margin: 0;
    padding: 0;
    font-size: 100%;
    color: white;
    text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.8);
    line-height: 1.7;
}
.top_wholesale_part p {
    text-align: left;
    padding-left: 3vw;
    line-height: 1.8;
}

.top_recruit button {
    width: 90%;
    background: #172e5c;
    padding: 10px;
    color: white;
    font-size: 120%;
    letter-spacing: 2em;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    border-radius: 3px;
}

.top_recruit p {
    font-size: 80%;
    margin-top: 5vh;
}

.top_blog h3 {
    font-size: 220%;
    color: #172e5c;
    letter-spacing: 0.3em;
    font-weight: 400;
}

.page_header {
    margin-top: calc(100vw / 16);
    position: relative;
    width: 100vw;
    height: calc(100vw / 2.2);
    text-align: center;
}

.page_header h1 {
    position: absolute;
    top: 40%;
    left: 51%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    font-size: 380%;
    color: white;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.6);
    letter-spacing: 0.5em;
}

.page_header h3 {
    position: absolute;
    top: 55%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 180%;
    color: white;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.6);
}

.company_header_img {
    background-image: url("./images/company_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.page_content {
    text-align: center;
}

.page_comtent2 {
    padding: 0 5%;
    text-align: center;
}

.page_comtent2 p {
    text-align: left;
}

.page_comtent2 h3 {
    font-size: 200%;
    color: #172e5c;
    letter-spacing: 0.5em;
    margin: 5vh 0;
}

.page_comtent2 h5 {
    font-size: 200%;
    color: #172e5c;
    letter-spacing: 0.2em;
    margin: 5vh 0;
}
.page_comtent2 iframe{
    width: 100%;
    height: 50vw;
}
.page_content button {
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    transition: 0.2s;
    background: white;
    border: 1px solid #172e5c;
    letter-spacing: 0.2em;
    font-size: 95%;
    color: #000;
}

.page_content a button {
    background: #172e5c;
    color: #fff;
    transition: 0.2s;
}

.page_button {
    width: 25%;
    height: calc(25vw / 5);
    padding: 10px 3%;
    border-radius: 2%;
    margin: 0 2vw;
}
.dirt_btn{
    display: flex;
    justify-content: center;
}
.page_button2 {
    width: 18vw;
    height: calc(25vw / 5);
    padding: 10px 2%;
    border-radius: 2%;
    margin: 0 0.5vw;
    font-size: 85%!important;
}
.page_content button:hover {
}

.page_content a button:hover {
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
}

.page_content a button:active {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
}

.company_building img {
    width: 100vw;
    height: calc(100vw / 2.6);
    object-fit: cover;
}

.company_table,
.history_table {
    text-align: left;
    width: 80vw;
    margin: 5vh 10vw;
    line-height: 2;
}
.recruit_table {
    text-align: left;
    width: 100%;
    margin: 5vh 5%;
    line-height: 2;
    font-size: 90%;
}
.recruit_table table{
    border-collapse:collapse;
}

.company_table td:nth-of-type(1),
.history_table td:nth-of-type(1),
.recruit_table td:nth-of-type(1) {
    width: 16vw;
    padding: 0;
    -moz-text-align-last: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    padding: 10px 0;
    vertical-align: top;
}

.company_table td:nth-of-type(2),
.history_table td:nth-of-type(2),
.recruit_table td:nth-of-type(2) {
    padding: 1px 0;
    padding-left: 5vw;
    vertical-align: top;
}

.history_table td:nth-of-type(1) {
    width: 12vw;
}

.recruit_table td:nth-of-type(2) {
    width: 50vw;
}

.history_table td {
    border-bottom: 1px solid #000;
}

.recruit_table td {
    border-bottom: 1px solid #172e5c;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}
.recruit_kindOfWork{
    list-style: none;
    text-align: left;
    margin: 0 20vw;
}
.recruit_kindOfWork li{
    line-height: 3;
}
.recruit_h1{
    text-align: center;
    font-size: 200%;
    color:#172e5c;
}
.recruit_flame{
    border: 1px solid #000;
    padding: 2vw;
    margin: 10vw 5vw;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    text-align: center;
}
.recruit_flame button{
    background-color: #17005c;
    color: #fff;
    width: 80%;
    padding:1vw 2vw;
    font-size: 120%;
    border-radius: 0.3em;
    box-shadow: .2em 0 5px rgba(0, 0, 0, 0.3);
    transition: .2s;
    margin-top: 2vw;
}
.recruit_flame button:hover{
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3);
}
.recruit_flame h4{
    font-size: 150%;
    color: #17005c;
}
.recruit_flexbox{
    display: flex;
    align-items: center;
    gap: 2vw;
}
.recruit_flame p{
    text-align: left;
    line-height: 1.9;
    font-size: 90%;
    letter-spacing: 0;
}
.recruit_flame img{
    width: 40%;
    height: auto;
}
.message_ceo {
    width: 90vw;
    height: calc(100vw / 1.6);
    background-image: url("./images/photo02-min.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    vertical-align: middle;
    padding: 5vw;
    align-items: center;
    display: flex;
    display: -webkit-flex;
}

.message_ceo img {
    display: none;
}

.message_box {
    display: inline-block;
    vertical-align: middle;
    width: 43vw;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2vw;
    margin-left: 47vw;
}

.message_box h3,
.message_sdgs h3,
.message_education h3 {
    text-align: center;
    color: #172e5c;
    letter-spacing: 0.5em;
}

.message_box p {
    font-size: 95%;
    line-height: 1.8;
}

.message_box2 {
    display: inline-block;
    vertical-align: bottom;
    width: 45vw;
    color: white;
    text-align: center;
    padding-top: calc(100vw / 2);
}

.message_box2 h4 {
    font-size: 160%;
    font-weight: 400;
    letter-spacing: 0.5em;
    margin: 0;
    line-height: 1.6;
}

.message_box2 h3 {
    font-size: 320%;
    font-weight: 400;
    letter-spacing: 0.5em;
    margin: 15px 0 30px 0;
}

.flexbox {
    display: flex;
    display: -webkit-flex;
    align-items: center;
}

.flexbox_top {
    display: flex;
    display: -webkit-flex;
    align-items: top;
}

.message_photo2,
.message_photo3 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 50vw;
    height: auto;
}

.message_sdgs,
.message_education {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 40vw;
    height: auto;
    margin: 0 5vw;
}

.message_sdgs p,
.message_education p {
    line-height: 1.8;
    font-size: 95%;
}

.message_photo3 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
}

.message_education {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
}

.sanchoku_header_img {
    background-image: url("./images/sanchoku_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.directstore_news {
    border: 1px solid #172e5c;
    padding: 2vw;
}

.directstore_news_img {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 40vw;
}

.directstore_news_img img {
    width: auto;
    height: 40vw;
    object-fit: cover;
}

.directstore_news_text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 40vw;
    margin-left: 5vw;
}

.directstore_news_text h3 {
    font-size: 200%;
    line-height: 1.8;
    margin: 0;
}

.directstore_news_text h4 {
    font-size: 160%;
    margin: 10px 0;
    color: #172e5c;
    letter-spacing: 0.5em;
}

.directstore_news_text h5 {
    font-size: 120%;
    margin: 30px 0 10px 0;
    text-align: justify;
}

.directstore_info_photo {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 40vw;
}

.directstore_news_img img {
    width: auto;
    height: 40vw;
    object-fit: cover;
}

.directstore_info_text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 45vw;
    margin-left: 5vw;
}

.directstore_info_text td:nth-of-type(1) {
    -moz-text-align-last: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    vertical-align: top;
}

.directstore_info_text td:nth-of-type(2) {
    text-align: left;
    padding-left: 15px;
    vertical-align: top;
}

.page_comtent2 iframe {
    width: 99%;
    margin-top: 50px;
    border: 1px solid #172e5c !important;
}

.directstore_blog {
    display: inline-block;
    width: 20vw;
    margin: 0 0.5vw;
    vertical-align: top;
}

.directstore_blog img {
    width: 100%;
    height: calc(20vw / 1.5);
    object-fit: cover;
}

.directstore_blog h3 {
    font-size: 100%;
    font-weight: 400;
    text-align: left;
    line-height: 1.6;
    margin: 10px 0 5px 0;
    letter-spacing: 0.2em;
}

.directstore_blog p {
    font-size: 70%;
    letter-spacing: 0.1em;
}

.directstore_blog p a {
    float: right;
}

.annotation {
    text-align: center;
    font-size: 80%;
    margin-bottom: 50px;
}

.matsubara_header_img {
    background-image: url("./images/matsubara_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.matsubara_header_img h1 {
    line-height: 1.5 !important;
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 0.8);
}

.matsubara_header_img h3 {
    position: absolute;
    top: 65%;
}

.caska_header_img {
    background-image: url("./images/coaska_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}
.ikegami_header_img {
    background-image: url("./images/ikegami_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}
.ikegami_header_img h3{
    top: 70%;
}
.port_header_img {
    background-image: url("./images/port_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.caska_header_img h1 {
    line-height: 1.5 !important;
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 0.8);
}

.caska_header_img h1 span {
    font-size: 80% !important;
    letter-spacing: 0.2em;
}

.caska_header_img h3 {
    position: absolute;
    top: 65%;
}

.freshfish_header_img {
    background-image: url("./images/freshfish_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.fresh_fish_page {
    font-size: 180%;
}

.processfood_header_img {
    background-image: url("./images/processfood_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.processfood_header_img h1 {
    text-shadow: 0px 2px 9px rgba(0, 0, 0, 0.8);
}

.wholesale_header_img {
    background-image: url("./images/wholefood_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.wholesale_flow_box {
    display: inline-block;
    vertical-align: top;
    width: 47%;
    margin: 1%;
}

.wholesale_flow_box p {
    position: relative;
    z-index: 2;
    margin: 0;
    margin-top: calc(-100vw / 100);
    line-height: 1.6;
    padding: 5px 3vw;
    background: #3568a9;
    color: white;
    text-align: left;
    font-size: 100%;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Noto Sans JP", "Helvetica Neue", HelveticaNeue, YuGothic,
        "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

.recruit_header_img {
    background-image: url("./images/recruit_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.inquery_header_img {
    background-image: url("./images/inquery_header.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 0%;
    background-attachment: fixed;
}

.archive_section {
    padding: calc(100vw / 40) 5vw;
    text-align: center;
}

.archive_section h1 {
    letter-spacing: 0.5em;
    font-weight: 400;
    margin-bottom: calc(100vw / 14);
}

.archive_box {
    display: inline-block;
    width: 19vw;
    margin: 1vw;
    text-align: left;
    vertical-align: top;
}

.archive_box img {
    width: 100%;
    height: calc(18vw / 1.2);
    object-fit: cover;
    border: 1px solid #3568a9;
}

.archive_box h3 {
    font-size: 100%;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 5px 0;
}

.archive_box p {
    font-size: 80%;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.7;
    margin: 5px 0;
}

.archive_box p a {
    float: right;
}

.archive_box_img {
    position: relative;
}

.archive_box_img h5 {
    position: absolute;
    background: rgba(23, 46, 92, 0.9);
    padding: 0px;
    font-size: 80%;
    top: 40%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: #ffffff;
    border-radius: 1px;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "Noto Sans JP", "Helvetica Neue", HelveticaNeue, YuGothic,
        "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
    font-weight: 400;
    width: 50%;
    text-align: center;
    text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
}

.single_content {
    width: 70vw;
    margin-top: calc(100vw / 20);
}

.single_img img {
    width: 50vw;
    height: calc(50vw / 1.5);
    object-fit: cover;
}

.single_content dir {
    text-align: left;
}

.single_content h1 {
    letter-spacing: 0.5em;
    line-height: 1.6;
}

.single_content p {
    margin: 20px 0;
    padding: 0 5vw;
    text-align: left;
}

.single_content h3 {
    font-size: 150%;
}

.sidebar_content {
    margin-top: calc(100vw / 10);
}

.sidebar_content button {
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    transition: 0.2s;
    background: white;
    border: 1px solid #172e5c;
    letter-spacing: 0.2em;
    font-size: 90%;
    padding: 3px 10px;
    border-radius: 2px;
}

.sidebar_content a button {
    background: #172e5c;
    color: #fff;
    transition: 0.2s;
}

.sidebar_content a button:hover {
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
}

.sidebar_content a button:active {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
}

.sidebar_text a {
    color: #172e5c;
    display: inline-block;
    position: relative;
    padding-bottom: 6px;
    font-size: 120%;
    margin: 5px 0;
}

.news_sidebar_text a {
    font-size: 100%;
    text-align: left;
    line-height: 1.8;
}

.news_sidebar_text {
    font-size: 70%;
    text-align: left;
}

.sidebar_box {
    border: 1px solid #172e5c;
    padding: 10px 2vw;
    width: 20vw;
}

.sidebar_box h2 {
    font-size: 120%;
    letter-spacing: 1em;
}

.news_sidebar_box {
    padding: 10px 2vw;
    width: 20vw;
    text-align: center;
}

.news_sidebar_box h2 {
    font-size: 120%;
}

.sidebar_text a::after {
    content: "";
    width: 0%;
    height: 1px;
    display: block;
    background: radial-gradient(#172eb2, #172e5c);
    transition: all 0.2s linear;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sidebar_text a:hover::after {
    width: 110%;
}

.form_label {
    display: block;
    margin: 24px 0;
}

.form_label h4 {
    font-size: 110%;
    vertical-align: top;
    display: inline-block;
    width: 20%;
    margin: 0;
    -moz-text-align-last: justify;
    text-align-last: justify;
    text-justify: inter-ideograph;
    font-weight: 400;
}

.form_label p {
    margin: 0;
    width: 78%;
    vertical-align: top;
    display: inline-block;
}

.form_label span {
    vertical-align: top;
    display: inline-block;
    margin: 0 20px;
}

.form_layout {
    margin: 40px 10vw;
}

.form_layout p {
}

.form_must {
    background: #172e5c;
    color: white;
    text-align: center;
    padding: 2px 10px;
    border-radius: 3px;
}

.form_option {
    color: #172e5c;
    text-align: center;
    padding: 2px 10px;
    border-radius: 3px;
    border: 1px solid #172e5c;
}

.form_layout textarea,
.form_layout input {
    width: 100%;
}

.form_layout select {
    width: 100%;
    height: 30px;
}

.form_layout input {
    height: 3vw;
    width: 40vw;
    border: 1px solid gray;
}
.form_layout textarea {
    width: 40vw;
    border: 1px solid gray;
}

input[type="checkbox"i] {
    display: inline-block;
    margin: 0;
    width: 10vw;
    height: 3vw;
}

input[type="file"i] {
    height: 3vw !important;
    border: none;
}

input[type="submit"i] {
    width: 80%;
    height: 3vw;
    background: #172e5c;
    color: white;
    /* height: calc(100vw / 20); */
    border-width: 0;
    border-radius: 3px;
    margin-top: 40px;
    transition: 0.3s;
    margin-right: 5%;
    margin-left: 5%;
    font-size: 120%;
}

input[type="submit"i]:hover {
    background: white;
    color: #172e5c;
    border: 1px solid #172e5c;
}

.thumbnail_logo {
    border: 1px solid #172e5c;
    width: 100% !important;
    height: calc(20vw / 1.5);
}

.thumbnail_logo img {
    width: 80%;
    height: auto;
    margin-top: calc(20vw / 12);
}

.marginTopminus5 {
    margin-top: -5vh;
}

.marginTopPlus10 {
    margin-top: 10vh !important;
}
.online_shop h4 {
    font-size: 130%;
    margin: 0;
}
.online_shop button {
    background-color: #17005c;
    color: #fff;
    border-radius: 2px;
    font-size: 80%;
    padding: 3px 5px;
    transition: 0.3s;
}
.online_shop button:hover {
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5);
}

.online_shop a button:active {
    box-shadow: 0 0 0px rgba(0, 0, 0, 0.3);
}
.swiper-container {
    margin-top: 5vh;
    overflow-x: hidden;
}
.recruit_sec{
    overflow-x: hidden;
    width: 100vw;
}
.swiper-slide img {
    border: 1px solid #172e5c;
    width: 33vw;
    height: calc(100vw / 5);
    object-fit: cover;
}

.slide2 img {
    border: none !important;
    width: 33vw !important;
    height: calc(100vw / 7) !important;
    object-fit: cover !important;
}

.swiper-slide p {
    text-align: left;
    font-size: 100%;
    font-weight: 500;
    margin: 0 0 10px 0;
    line-height: 1.8;
}

.swiper-slide p a {
    font-weight: 400;
    float: right;
}

.swiper-button-next,
.swiper-button-prev {
    color: white !important;
}
.instagram-item {
    display: inline-block;
    width: 18%;
    height: auto;
    vertical-align: top;
}
.instagram-item img {
    width: 16vw;
    height: 16vw;
    object-fit: cover;
    margin-top: 10px;
}
.instagram-card__comment {
    text-align: justify;
    font-size: 80%;
    color: black;
    line-height: 1.7;
    letter-spacing: 0.1em;
}
.pc_appear {
    display: block;
}

.sp_appear {
    display: none;
}

/* =======================================
    ClearFixElements
======================================= */

.fullSlideShow ul:after {
    content: ".";
    height: 0;
    clear: both;
    display: block;
    visibility: hidden;
}

.fullSlideShow ul {
    display: inline-block;
    overflow: hidden;
}

.visible,
.invisible {
    opacity: 0;
    transition: opacity 1s ease;
}

.visible {
    opacity: 1;
}

.visible.translateY,
.invisible.translateY {
    transform: translateY(100px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateY {
    transform: translateY(0);
}

.visible.translateX,
.invisible.translateX {
    transform: translateX(-80%);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.translateX {
    transform: translateX(0);
}

.visible.translateX2,
.invisible.translateX2 {
    overflow: hidden;

    transform: translateX(80%);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.translateX3 {
    transform: translateX(20%);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.visible.translateX2 {
    transform: translateX(0);
}
.visible.scaleWidth,
.invisible.scaleWidth {
    transform-origin: right bottom;
    transform: scale(0, 1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible.scaleWidth {
    transform: scale(1, 1);
}

.mobile_slider {
    display: none;
}
.catbox {
    margin-top: 10vw;
    padding: 0 10vw;
    text-align: center;
}
.catbox select {
    width: 50% !important;
}
#itempage .field {
    font-size: 150%;
}
.catbox h2 {
    font-size: 200%;
}

.catbox p {
    text-align: left;
    font-size: 110%;
}
.catbox input[type="submit"i] {
    /* margin: 5vw 10%; */
    /* width: 80%; */
}
.back_to_customer_button,
.back_cart_button {
    width: 30% !important;
    background-color: #3568a9 !important;
}
.back_to_delivery_button {
    width: 50% !important;
    background-color: #3568a9 !important;
}
.product_section {
    padding: 5vw;
    position: relative;
}
.product_section h3 {
    text-align: center;
    font-size: 200%;
    color: #172e5c;
    margin-bottom: 3vw;
}
.product_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3vw 3%;
}
.product_box {
    width: 31%;
    text-align: center;
}
.product_box h4 {
    font-size: 120%;
}
.product_box_img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100vw / 4);
    object-fit: cover;
    object-position: center;
    border: 1px solid #172e5c;
}
.product_box a::after {
    display: none;
}
.product_box_img img {
    width: 110%;
    max-width: 105%;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.product_box_img img:hover {
    width: 115%;
    max-width: 115%;
}
.product_box p {
    display: flex;
    justify-content: space-between;
}
.product_box p button {
    font-size: 70%;
    background-color: #172e5c;
    border: 1px solid #172e5c;
    color: #fff;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.3s;
    padding: 0.5vw 1vw;
    line-height: 1;
}
.product_box p button:hover {
    background-color: white;
    border: 1px solid #172e5c;
    color: #172e5c;
}
.list_btn {
    margin-top: 5vw;
    font-size: 130%;
    padding: 1vw 2vw;
    line-height: 1;
    background-color: white;
    border: 1px solid #172e5c;
    color: #172e5c;
    transition: 0.2s;
    font-family: "Noto Serif JP", YuMincho, "Yu Mincho", serif;
    letter-spacing: 0.2em;
}
.list_btn:hover {
    background-color: #172e5c;
    color: white;
}
.shop_btn {
    text-align: center;
    margin-bottom: 5vw;
}
.nomal_section {
    padding: 5vw;
}
.nomal_section h3 {
    text-align: center;
}
.nomal_section table th {
    width: 20%;
}
.nomal_section table td {
    padding: 2vw 0;
}

div.usccart_navi li.usccart_cart,
div.usccart_navi li.usccart_customer,
div.usccart_navi li.usccart_delivery,
div.usccart_navi li.usccart_confirm {
    background-color: #172e5c !important;
    background-image: none !important;
    color: white !important;
}
.send{
    /* display: flex;
    justify-content: center;
    flex-direction: column; */
}
.send input {
    width: 50%;
    height: 100vw/20;
    border-radius: 2px;
    margin: 2vw;
}
.send input[type="button"] {
    background-color:#172e5c;
    border: 1px solid #172e5c;
    transition: 0.3s;
    color: white;
}
.send input[type="button"]:hover {
    background-color: white;
    border: 1px solid #172e5c;
    color: #172e5c;
}
input[type="button"] {
    background-color:#172e5c;
    border: 1px solid #172e5c;
    transition: 0.3s;
    color: white;
    margin: 2vw!important;
    width: auto!important;;
}
input[type="button"]:hover {
    background-color: white;
    border: 1px solid #172e5c;
    color: #172e5c;
}
#itempage .skuform {
    text-align: center;
}
#cart .upbutton {
    padding-right: 0!important;
    text-align: center!important;
}
#cart .upbutton input[type="submit"i]{
    margin:5vw 0;
}
#customer-info td{
    text-align: left;
}

.textaligncenter{
    text-align: center;
}
.delivery_caution{
    text-align: left;
    font-size: 80%;
    color: red;
}
#itempage table.item_option td{
    border-right-width: 0px!important;
    border-bottom-width: 0px!important;
}

#itempage input[type="checkbox"i]{
    margin-right: 5px!important;
	vertical-align:-0.15px;
}
#itempage table.item_option caption{
    margin-bottom: 7px!important;
}
#itempage table.item_option th {
    border-right-width: 0px!important;
    border-bottom-width: 0px!important;
    border-right-color: #fff;
    border-bottom-color: #fff;
    text-align: left;
    background-color: #fff;
}
.itemsubimg{
    margin-top: 5vw;
}
.margin_top{
    margin-top: 5vw;
    display: block;
    width: 100%;
}
.satofuru_banner{
    margin-top: 5vw;
    width: 100%;
    height: auto;
    text-align: center;
}
.banner_area{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 3%;
    justify-content: center;
    margin: 2vw 0;
}
.banner_area a img{
    width: 43vw;
    margin-top: 2vw;
}
/*mobile*/
@media screen and (max-width: 560px) {
    .banner_area{
        margin: 5vw 0;
    }

    .satofuru_banner{
        width: 90vw;
        max-width: 90vw;
        margin: 5vw 0;

    }
    .textaligncenter iframe{
        text-align: center;
        width: 100%!important;
        height: 100vw/4.5!important;
    }
    #itempage{
        text-align: center;
    }
    html {
        /* overflow-x: hidden; */
    }
    body {
        font-size: 12px;
        /* overflow-x: hidden; */
    }

    .pc_appear {
        display: none !important;
    }

    .sp_appear {
        display: block;
    }
    /*オンラインショップ*/
    #customer-info .customer_form input{
        width: 80%!important;
    }
    .catbox{
        text-align: left;
    }
    input.hidden {
        display: none !important;
    }
    .list_btn {
        margin-top: 8vw;
        letter-spacing: 0.1em;
        font-size: 100%;
    }
    .product_section h3 {
        font-size: 150%;
    }
    .product_box {
        width: 100%;
        margin-bottom: 3vw;
    }
    .product_box_img {
        height: calc(100vw / 1.2);
    }
    .product_box p button {
        font-size: 90%;
        padding: 1vw 3vw;
    }
    .catbox {
        margin-top: 70px;
        padding: 0 2vw;
    }
    .catbox h2 {
        font-size: 90%;
    }
    .storycontent {
        padding-bottom: 50px;
    }
    input[type="submit"i] {
        /* height: 30px; */
    }
    #cart_table {
        /* width: 80% !important; */
    }
    #cart_table .thead {
        display: none;
    }
    #cart_table th {
        display: none;
    }
    #cart_table tr,
    #cart_table td {
        display: block;
        width: 100%;
        position: relative;
        border-left: none !important;
        border-right: none !important;
    }
    #cart .quantity::before {
        content: "数量：";
    }
    #cart .subtotal {
    }
    #cart .num,
    #cart .thumbnail,
    #cart td.productname,
    #cart .price,
    #cart .unitprice,
    #cart .quantity,
    #cart .subtotal,
    #cart .action,
    #cart th.aright,
    #cart td.aright,
    #cart th.aright,
    #cart td.aright,
    #cart td {
        width: auto !important;
    }
    #cart_table tfoot th {
        display: block;
        background: #ffffff;
        color: black;
        border-left: none !important;
        border-right: none !important;
    }
    #cart .num::before {
        content: "数量：";
    }
    #info-confirm #confirm_table,
    #confirm_table td {
        font-size: 10px !important;
    }
    .back_to_delivery_button {
        font-size: 10px !important;
    }
    div.usccart_navi li.ucart {
        font-size: 70%;
        letter-spacing: 0;
    }
    .upbutton {
        text-align: left !important;
    }
    #customer-info .customer_form input {
        /* width: 80% !important; */
        display: block;
    }
    .entry input[type="button" i] {
        /* display: block; */
        margin: auto;
        /* margin-top: 5px; */
        width: 50%;
    }

    /*オンラインショップ終了*/
    .instagram-item {
        width: 48%;
    }
    .instagram-item img {
        width: 44vw;
        height: 44vw;
    }
    .navbar {
        display: none !important;
    }

    .cp_fullscreenmenu {
        display: block;
        position: fixed;
        z-index: 125;
        top: 0;
        right: 0;
        left: 0;
        background: #fff;
        height: 60px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }

    .cp_fullscreenmenu img {
        width: 42%;
        margin: calc(40vw / 14) 0 0 30%;
        position: absolute;
        z-index: 1;
    }

    /*menuコンテンツ*/
    .cp_fullscreenmenu .menu {
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        visibility: hidden;
        overflow: hidden;
        width: 100%;
        height: 100%;
        pointer-events: none;
        outline: 1px solid transparent;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        align-items: center;
        justify-content: center;
    }

    .cp_fullscreenmenu .menu > div {
        display: flex;
        overflow: hidden;
        width: 200vw;
        height: 230vw;
        transition: all 0.4s ease;
        -webkit-transform: scale(0);
        transform: scale(0);
        text-align: center;
        color: #172e5c;
        border-radius: 0%;
        background: rgba(255, 255, 255, 0.9);
        flex: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        align-items: center;
        justify-content: center;
    }

    .cp_fullscreenmenu .menu > div > ul {
        display: block;
        max-height: 100vh;
        margin: 0;
        padding: 0 1em;
        list-style: none;
        transition: opacity 0.4s ease;
        opacity: 1;
    }

    .cp_fullscreenmenu .menu > div > ul > li {
        font-size: 100%;
        display: block;
        margin: 1em;
        padding: 0;
        letter-spacing: 0.5em;
    }

    .cp_fullscreenmenu .menu > div > ul > li > a {
        position: relative;
        display: inline;
        cursor: pointer;
        transition: color 0.4s ease;
    }

    .cp_fullscreenmenu .menu > div > ul > li > a:hover {
        color: #e5e5e5;
    }

    .cp_fullscreenmenu .menu > div > ul > li > a:hover:after {
        width: 100%;
    }

    .cp_fullscreenmenu .menu > div > ul > li > a:after {
        position: absolute;
        z-index: 1;
        bottom: -0.15em;
        right: 0;
        width: 0;
        height: 2px;
        content: "";
        transition: width 0.4s ease;
        background: #e5e5e5;
    }

    /*クリックしたらメニューが開閉の動作*/
    .cp_fullscreenmenu .toggle {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        width: 60px;
        height: 50px;
        cursor: pointer;
        opacity: 0;
    }

    .cp_fullscreenmenu .toggle:checked + .hamburger > span {
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .cp_fullscreenmenu .toggle:checked + .hamburger > span:before,
    .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
        top: 0;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
        opacity: 0;
    }

    .cp_fullscreenmenu .toggle:checked ~ .menu {
        visibility: visible;
        pointer-events: auto;
    }

    .cp_fullscreenmenu .toggle:checked ~ .menu > div {
        transition-duration: 0.75s;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .stickarrow {
        width: 15px;
        height: 2px;
        border-bottom: 1px solid #172e5c;
        border-right: 2px solid #172e5c;
        transform: skew(45deg);
        display: inline-block;
    }

    .menu ul li {
        list-style: none;
        text-align: left;
        font-size: 90%;
    }

    .menu ul li a {
        text-decoration: none;
        color: #172e5c;
    }

    .menu ul li ul {
        padding-left: 20px;
    }

    .menu ul li ul li {
        margin: 10px 0;
    }

    .cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    /*ハンバーガー*/
    .cp_fullscreenmenu .hamburger {
        position: absolute;
        z-index: 1;
        top: 0;
        right: 0;
        display: block;
        width: 30px;
        height: 40px;
        padding: 0.5em 1em;
        cursor: pointer;
        transition: box-shadow 0.4s ease;
        border-radius: 0 0.12em 0.12em 0;
        /*        background: rgba(0, 151, 167, 0.7);*/
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        padding-right: 5%;
        padding-top: 10px;
    }

    .cp_fullscreenmenu .hamburger > span {
        position: relative;
        top: 50%;
        display: block;
        width: 100%;
        height: 1px;
        transition: all 0.4s ease;
        background: #172e5c;
    }

    .cp_fullscreenmenu .hamburger > span:before,
    .cp_fullscreenmenu .hamburger > span:after {
        position: absolute;
        z-index: 1;
        top: -10px;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        content: "";
        transition: all 0.4s ease;
        background: inherit;
    }

    .cp_fullscreenmenu .hamburger > span:after {
        top: 10px;
    }

    section {
        margin: 50px 0;
    }

    .load_header:before {
        /*    max-width: 30%;*/
        background-size: 10% auto;
    }

    #loading {
        top: 20%;
        left: -10%;
    }
    .mobile_slider {
        display: block;
        margin-top: 60px;
    }
    .fullSlideShow,.fullSlideShow ul,.fullSlideShow ul li{
        height: 50vh!important;
        margin-top: 60px;
    }
    .fullSlideShow ul li img{
        height: 50vh;
        object-fit: contain;
    }
    .fullslide_logo {
        width: 18%;
        top: 30%;
        left: 45%;
        transform: translate(-30%, -45%);
    }
    
    .fullslide_news {
        width: 99.5%;
        position: absolute;
        bottom: 0px;
        left: 0%;
        transform: translate(0%, 0%);
    }

    .fullslide_news_title {
        display: block;
        padding: 5px;
        width: auto;
    }

    .fullslide_news_text {
        padding: 5px 4%;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        width: 90%;
        line-height: 1.6;
    }
    .fullSlideShow .btnPrev,.fullSlideShow .btnNext{
        display: none;
    }
    .fullslide_news_btn {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        background: #172e5c;
        color: #fff;
        font-size: 80%;
        padding: 5px;
        width: 16%;
        letter-spacing: 0.1em;
        transition: 0.3s;
        margin-right: 1%;
    }

    .contents_half {
        width: 100%;
    }

    .top_img1 {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .tate_contents {
        -ms-writing-mode: tb-rl;
        writing-mode: horizontal-tb;
        height: auto;
        transform: translate(0%, 0%);
    }

    .tate_contents h3 {
        letter-spacing: 0.2em;
        font-size: 120%;
    }

    .tate_contents p {
        font-size: 100%;
    }

    .top_part {
        padding: 0;
        width: 100%;
    }

    .top_part_post {
        width: 100%;
        margin: 10px 0;
    }

    .top_part_post img {
        height: calc(100vw / 2);
    }

    .top_map_wrapper {
        width: 100%;
        margin: 20px 0%;
        padding: 0;
    }

    .top_storemap {
        width: 100%;
        display: inline-block;
        vertical-align: top;
        margin: 20px 0;
    }

    .top_storemap iframe {
        width: 100%;
        height: calc(100vw / 2);
    }

    .top_storemap h3 {
        font-size: 130%;
    }

    .top_storemap p {
        text-align: center;
    }

    .top_sp_tittle {
        width: 40%;
        display: inline-block;
        vertical-align: middle;
    }

    .top_part p {
        width: 56%;
        display: inline-block;
        margin: 0 0 0 2%;
        margin-bottom: 0px;
        vertical-align: middle;
        line-height: 1.6;
        font-size: 90%;
    }

    .top_fresh_fish_box {
        margin-top: 20px;
    }

    .top_fresh_fish_box p {
        font-size: 120%;
        width: 90%;
        text-align: center;
    }
    .top_fresh_fish_box2 {
        margin-top: 20px;
    }

    .top_fresh_fish_box2 p {
        font-size: 120%;
        width: 90%;
        text-align: center;
    }

    .top_wholesale_part {
        width: 100%;
        margin: 0;
    }

    .top_wholesale_part img {
        width: 40%;
        display: inline-block;
        vertical-align: middle;
        margin: 0;
    }

    .top_wholesale_part p {
        width: 55%;
        display: inline-block;
        margin: 0 0 0 2%;
        padding-left: 0;
        vertical-align: middle;
        line-height: 1.6;
        font-size: 90%;
    }

    .top_fresh_fish_box h6 {
        position: relative;
        top: 0%;
        left: 0%;
        -ms-transform: translate(0%, 0%);
        -webkit-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        margin: 0;
        padding: 0;
        color: black;
        text-shadow: none;
        line-height: 1.6;
        font-weight: 400;
        font-size: 80%;
    }

    .top_blog h3 {
        font-size: 130%;
    }

    .swiper-slide img {
        width: 50vw;
        height: calc(100vw / 3);
    }

    .swiper-slide p {
        font-size: 80%;
        font-weight: 400;
        line-height: 1.7;
    }

    .swiper-slide p a {
        font-size: 70%;
    }

    .sp_slider_date {
        font-size: 60%;
        letter-spacing: 0;
    }

    .top_recruit button {
        letter-spacing: 0.5em;
        border-radius: 3px;
    }

    .footer_area ul {
        padding: 0;
    }

    footer .menu-menu-container li {
        line-height: 1.7;
        margin: 5px;
        font-size: 60%;
        letter-spacing: 0;
    }

    .footer_area h6 {
        font-size: 60%;
        letter-spacing: 0.2em;
    }

    .swiper-slide {
        width: 200px;
    }

    .page_header {
        height: 300px;
        background-size: 180%;
    }

    .page_header h1 {
        font-size: 200%;
        top: 45%;
        line-height: 1.5;
        letter-spacing: 0.2em;
    }

    .page_header h3 {
        font-size: 150%;
        top: 55%;
    }
    .ikegami_header_img h3{
        top: 70%;
    }

    .page_button {
        height: auto;
        width: 28%;
        margin: 1vw;
    }

    .company_building img {
        height: calc(100vw / 2);
    }

    .page_comtent2 h3 {
        font-size: 120%;
    }
    .page_comtent2 h5 {
        font-size: 120%;
    }

    .company_table,
    .history_table,
    .recruit_table {
        text-align: left;
        width: 100%;
        margin: 20px 0;
        font-size: 90%;
    }
    .recruit_table td:nth-of-type(1) {
        width: 25% !important;
    }
    .recruit_table td:nth-of-type(2) {
        width: 65%;
    }
    .single_recruit{
        margin: 90px 5vw 2vw 5vw!important;
    }

    .company_table td:nth-of-type(1),
    .history_table td:nth-of-type(1),
    .recruit_table td:nth-of-type(1) {
        width: 18vw;
    }

    .message_box {
        width: 100%;
        padding: 0 5%;
        text-align: justify;
        margin-left: 0;
    }

    .message_ceo {
        height: auto;
        padding: 0 5%;
        background: none;
        width: 90%;
        flex-direction: column-reverse;
    }

    .message_box2 {
        width: 100%;
        color: #172e5c;
        padding: 0;
    }

    .message_box2 h4 {
        font-size: 100%;
    }

    .message_box2 h3 {
        font-size: 140%;
        margin: 10px 0;
    }

    .message_ceo img {
        display: block;
        margin-bottom: 10px;
        height: auto;
        width: 100%;
    }

    .flexbox {
        flex-direction: column;
    }

    .message_photo2,
    .message_photo3 {
        width: 100vw;
    }

    .message_sdgs,
    .message_education {
        width: 90vw;
        text-align: justify;
    }

    .message_education {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 2;
        -webkit-order: 2;
        order: 2;
    }

    .message_photo3 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        order: 1;
    }

    .sanchoku_header_img h3 {
        top: 65%;
    }

    .directstore_news_img {
        width: 80vw;
    }

    .directstore_news_img img {
        width: 100%;
        height: 60vw;
    }

    .directstore_news_text {
        width: 80vw;
    }

    .directstore_news_text h4 {
        font-size: 90%;
    }

    .directstore_news_text h5 {
        margin: 5px;
    }

    .directstore_info_photo,
    .directstore_info_text {
        width: 90vw;
        margin: 0;
    }

    .directstore_blog {
        width: 42vw;
        margin: 0 1vw;
    }

    .directstore_blog img {
        height: calc(100vw / 3);
    }

    .directstore_blog h3 {
        font-size: 90%;
        margin: 5px 0;
    }

    .matsubara_header_img h3 {
        top: 65%;
    }

    .caska_header_img h1 span {
        font-size: 70% !important;
        letter-spacing: 0.1em;
    }

    .caska_header_img h3 {
        top: 65%;
    }
    .recruit_kindOfWork{
        margin: 0;
        padding-inline-start: 0;
    }
    .recruit_flame{
        margin: 5vw 0;
    }
    .recruit_flame h4{
        font-size: 150%!important;
    }
    .recruit_flame img{
        width: 100%;
    }
    .recruit_flame p{
        font-size: 100%;
    }
    .recruit_flexbox{
        flex-direction: column;
    }
    .fresh_fish_page {
        font-size: 120%;
    }

    .form_layout {
        margin: 20px 0vw;
    }
    .form_label h4 {
        font-size: 90%;
        width: 100%;
        text-align: left;
        text-align-last: left;
    }
    .form_label span {
        margin: 0;
        display: inline-block;
    }
    .form_layout textarea,
    .form_layout input {
        width: 100%;
        margin: 0;
        height: 5vw;
    }
    .form_layout textarea{
        height: 35vw;
    }

    .form_layout p {
        width: 100%;
    }
    .form_layout input[type="submit"]{
        height: 8vw;
    }

    .wpcf7-form-control-wrap {
        width: 80%;
    }
    .form_must,
    .form_option {
        margin-top: 5px !important;
        margin-right: 5px !important;
        font-size: 70%;
    }
    .page_comtent2 h4 {
        font-size: 100%;
        letter-spacing: 0.1em;
    }
    .thumbnail_logo {
        height: calc(100vw / 3);
    }
    .thumbnail_logo img {
        width: 130%;
        height: auto;
    }
    .wholesale_vertical_flow {
        width: 80%;
        margin: 0 10%;
    }
    .wholesale_flow_box {
        width: 100%;
    }
    .wholesale_flow_box p {
        margin-top: -5px;
    }
    .flexbox_top {
        flex-direction: column;
    }
    .single_content,
    .news_sidebar_box {
        width: 100%;
    }
    .single_content h1,
    .archive_section h1 {
        font-size: 130%;
        letter-spacing: 0.1em;
    }
    .single_img img {
        width: 100%;
        height: calc(100vw / 1.5);
    }
    .archive_box {
        width: 42vw;
    }
    .archive_box img {
        height: calc(42vw / 1.2);
    }
    .archive_box_img h5 {
        width: 60%;
    }
    .sidebar_box {
        width: 95%;
    }
    .message_box p {
        font-size: 100%;
        line-height: 2;
    }
    .message_sdgs p,
    .message_education p {
        line-height: 2;
        font-size: 100%;
    }
    .dirt_btn{
        flex-wrap: wrap;
        gap:5vw 2vw;
    }
    .dirt_btn a{
    }
    .page_button2{
        width: 30vw;
        height: auto;
        font-size: 80%!important;
        letter-spacing: 0!important;
    }
}

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