@charset "utf-8";
/*
Theme Name: インタナショナルゼネラルフーズ株式会社 Theme
Theme URI: igfoods.co.jp
Description: インタナショナルゼネラルフーズ株式会社 themes
Version: 1.0
Author: mori
*/



/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
	--base-color: #060001;
	--red-color:  #e31d22;
    --gray-color: #efecec;
    
    --oem-color: #192353;

	--font-en:    'Oswald', sans-serif;
}


body {
	position: relative;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
    color: var(--base-color);
    padding-top: 150px;
}
input,
select,
textarea,
radio,
checkbox,
button {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", 'Noto Sans JP', sans-serif;
}

.sp { display: none !important; }

.container {
    width: 100%;
    max-width: 1240px;
	padding: 0 20px;
	margin:auto;
	position: relative;
}

/* off */
.off a {
    cursor: default !important;
    color: #ccc !important;
}


/* nav-line */
.nav-line a:not(.no-line) {
	opacity: 1 !important;
	text-decoration: none !important;
    position: relative;
}
.nav-line a:not(.no-line):after {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 0;
    border-top:solid 1px var(--red-color);
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .3s;
}
.nav-line a:not(.no-line):hover:after {
    transform-origin: left top;
    transform: scale(1, 1);
}

/* nav-color */
.nav-color a {
    color: var(--base-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.nav-color a:hover {
    color: var(--red-color) !important;
}




/*------------------------------------------------------

   header style

-------------------------------------------------------*/
#gb-header {
	width: 100%;
    background: rgba(255,255,255,0.7);
	position: fixed;
	left:0;
	top: 0;
	z-index: 1000;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.header-in {
    height: 150px;
    position:relative;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.site-title {
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 20px;
}
.site-title a {
    color: var(--base-color);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.site-logo {
    display:block;
    width: 96px;
    height: 96px;
    margin-right: 10px;
    background: url("./assets/img/cmn/logo.png") no-repeat center;
    background-size: contain;
}
.site-title-text {
    
}
.site-title-text span {
    display: block;
    line-height: 1;
}
.site-title-text__main {
    font-size: 29px;
    
}
.site-title-text__sub {
    font-size: 23px;
    margin-top: 10px;
}

.main-nav {
    display: flex;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.main-nav__list {
    display: flex;
    align-items: center;
    height: 110px;
}
.main-nav__list >li:not(:first-child) {
    margin-left: 10px;
    padding-left: 10px;
    border-left: solid 1px;
}
.main-nav__list >li a {
    display:block;
    color: var(--base-color);
    text-align: center;
}
.main-nav__list >li a span {
    display:block;
    font-weight: 500;
}
.nav-ja {
    font-size: 20px;
    line-height: 1.3;
}
.nav-en {
    font-size: 17px;
    font-family: var(--font-en);
    line-height: 1;
}

#sp-nav {
    display: none;
}


.scrolled-off #gb-header {
    background: none;
}
.scrolled-off .header-in {
    height: 110px;
}
.scrolled-off .site-title {
    width: 80px;
}
.scrolled-off .site-title a {
    padding-top: 80px;
}



/* ----------------------------
   contets
-------------------------------*/
#contents {
	overflow: hidden;
}

.con {
    padding: 80px 0;
	position:relative;
}

.cmn-title {
    font-size: 48px;
    margin-bottom: 30px;
    text-align: center;
}
.cmn-desc {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 50px;
}

.more {
    text-align: center;
    margin-top: 80px;
}
.more a {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    display: inline-block;
    width: 100%;
    max-width: 980px;
    text-align: center;
    border: solid 1px;
    padding: 10px;
    background: var(--base-color);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.more a:hover {
    color: var(--base-color);
    background: #fff;
}



/*------------------------------------------------
   footer style
--------------------------------------------------*/
#gb-footer {
    margin-top: 40px;
    padding-bottom: 30px;
    text-align: center;
}
.footer-logo {
    margin-bottom: 30px;
}
.copyright {
    font-size: 30px;
}

/* backtotop */
#backtotop {
    color: var(--base-color);
	width: 60px;
    height: 60px;
    background: #fff;
    cursor:pointer;
	visibility: hidden;
	opacity: 0;
    border-radius: 100px;
    border: solid 2px;
	position:fixed;
	right: 10px;
	bottom: 30px;
	z-index: 10;
   -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
#backtotop.show {
	visibility: visible;
	opacity: 1;
	bottom: 50px;
}
#backtotop:hover {
    color: #fff;
    background: var(--red-color);
}
#backtotop:after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    position: absolute;
    top: 22px;
    left: calc(50% - 11px);
}

/* -----------------------------------

media query

------------------------------------- */
@media (max-width: 1440px) {

    body {
        padding-top: 80px;
    }
    .header-in {
        height: 80px;
    }
    .site-logo {
        width: 60px;
        height: 60px;
    }
    .site-title-text__main {
        font-size: 16px;
    }
    .site-title-text__sub {
        font-size: 13px;
    }
    .nav-ja {
        font-size: 17px;
    }

}

@media (max-width: 1000px) {

	body {
        font-size: 13px;
		min-width: 320px;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
    .site-title {
        left: 15px;
    }
    #menu-btn {
        width: 40px;
        height: 15px;
        cursor: pointer;
        position: fixed;
        right: 15px;
        top: 25px;
        z-index: 99999999999999999999999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span {
        width: 100%;
        height: 2px;
        background: var(--base-color);
        position: absolute;
        left: 0;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #menu-btn span.m {
        top: 0;    
    }
    #menu-btn span.b {
        bottom: 0;
    }
    #menu-btn.active span {
        background: #fff;
    }
    #menu-btn.active span.t {
        transform: rotate(25deg);
        top: 7px;
    }
    #menu-btn.active span.b {
        transform: rotate(-25deg);
        bottom: 6px;
    }

    #sp-nav {
        display:block;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 70px 20px;
        overflow: auto;
        opacity: 0;
        visibility: hidden;
        position: fixed;
        left:0;
        top:0;
        z-index: -9999;
       -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    #sp-nav.active {
        opacity: 1;
        visibility: visible;
        background: rgba(0,0,0,0.9);
        z-index: 9999;
    }
    .sp-nav__list >li {
        font-size: 20px; 
        border-bottom: dotted 1px #fff;
    }
    .sp-nav__list >li a {
        display: block;
        padding: 10px;
        color: #fff;

    }

	.con {
		padding: 50px 0;
	}
    .cmn-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .cmn-desc {
        font-size: 14px;
        text-align: left;
        margin-bottom: 30px;
    }

    .more {
        margin-top: 40px;
    }
    .more a {
        font-size: 20px;
    }
    
    .copyright {
        font-size: 12px;
    }

}


@media (max-width: 480px) {

    .site-title {
        left: 10px;
    }
    .site-title-text__main {
        font-size: 11px;
    }
    .site-title-text__sub {
        font-size: 9px;
    }

}

