@charset "utf-8";

/*------------------------------------------------------------
    デフォルトスタイル
------------------------------------------------------------*/
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, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, figure,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
 
ol, ul { list-style: none;}

blockquote, q { quotes: none;}
 
:focus { outline: 0;}
 
ins { text-decoration: none;}
 
del { text-decoration: line-through;}

a {
	color: inherit;
    transition-property: opacity;
	transition-property: all;
    transition-duration: .3s;	
	text-decoration: none;
}

a:hover{
	color: #CE323A;
	text-decoration:none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}

*, *::before, *::after {
	box-sizing: border-box;
}


/*------------------------------------------------------------
    汎用スタイル
------------------------------------------------------------*/

.clear { clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.fl { float: left;}
.fr { float: right;}
.txt-c { text-align: center;}
.txt-l { text-align: left;}
.txt-r { text-align: right;}
.red { color: #F00;}
.mk-ye { background: linear-gradient(transparent 60%, #ffff66 60%);}
.fs11 {	font-size: 1.1rem;}

/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/

html {font-size: 62.5%;}

body {
    font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic';
	text-align: center;
    line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
   	width: 100%;
	position: relative;
	font-size: 1.6rem;
	color: #303030;
}

/*------------------------------------------------------------
    ヘッダー
------------------------------------------------------------*/
 
.header {
	width: 100%;
	overflow: hidden;
}

.header-inner {
	width: 1170px;
	height: 80px;
	margin: 0 auto;
	padding: 10px 0;
}

.head-cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.head-l {
	display: flex;
	align-items: center;
}

.logo {
	margin-right: 30px;
	display: inline-block;
	align-self: center;
}

.logo a {
	display: block;
}

.head-discription {
	font-size: 1.2rem;
	text-align: left;
	color: #999;
}

.head-r {
	flex-shrink: 0
}

.gnav {
	display: flex;
}

.gnav a {
	color: inherit;
}

.gnav .li01 {
	font-size: 1.4rem;
	margin-left: 20px;
}

.gnav .li01:first-child {
	margin-left: 0;
}



/*------------------------------------------------------------
    トップイメージ
------------------------------------------------------------*/

.top-hero {
	width: 100%;
	height: 450px;
	overflow: hidden;
	
	background:url(../img/slide.png) no-repeat scroll center top;
}

.hero-wrap {
}


/*------------------------------------------------------------
    IFRAME
------------------------------------------------------------*/

.iframe-wrapper {
	position: relative;
	width: 50%;
	padding: calc(550 / 400 * 100%) 0 0;
}

.iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.googlemap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
.googlemap iframe,
.googlemap object,
.googlemap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/

footer {
	border-top: 1px solid #CE323A;
}
	
.footer-wrap {
	padding: 45px 0 65px;
}

.ft-inner {
	width: 1170px;
	margin: 0 auto;
	text-align: left;
	display: flex;
	/*justify-content: space-between;*/
}

.ft-l {
	display: flex;
}

.ft-l > div{
	margin-right: 30px;
}

.ft-company {
	width: 270px;
	align-self: center;
}

.ft-l h4,
.ft-r h4 {
	margin-bottom: 5px;
	font-size: 1.8rem;
	color: #707070;
}

.ftnav-wrap nav {
	display: flex;
}

.ftnav {
	margin-right: 20px;
}

.ftnav li {
	margin-bottom: 5px;
	font-size: 1.2rem;
	position: relative;
}

.ftnav li::before {
	content: "\f105";
	font-family: fontawesome;
	display: inline-block;
	margin-right: 3px;	
	transition: all 0.3s ease-in-out;
}

.ftnav li:hover::before {
	color: #CE323A;
}

.ftnav li a {
	color: inherit;
	display: inline-block;
	transition: all 0.3s ease-in-out;
}

.ftnav li a::after {
	content: "";
	display: block;
	width: 0;
	margin: 3px 0 0 0;
	border-bottom: 1px solid #CE323A;
	transition: all 0.3s ease-in-out;
}

.ftnav li a:hover {
	color: #CE323A;
}

.ftnav li a:hover::after {
	width: 100%;
}

.sns-wrap {
	margin-bottom: 10px;
}

.sns-cont {
	display: flex;
}

.sns-cont li {
	display: inline-block;
	margin-right: 15px;
	width: 32px;
	height: 32px;
	flex-shrink: 0;
}

.copy {
	width: 100%;
	height: 30px;
	background: #CE323A;
}

	
small {
	display: block;
	font-weight: normal;
    font-size: 1.2rem;
	color: #fff;
	text-align: center;
	line-height: 30px;
}

/*------------------------------------------------------------
    コンテンツ
------------------------------------------------------------*/

a.square_btn {

    display: inline-block;
    margin-top: 30px;
    padding: 0.7em 1em;
    text-decoration: none;
    color: #67c5ff;
    background: #CE323A;
    border: 1px solid #CE323A;
    border-radius: 5px;
    transition: .4s;
    color: white;
    min-width: 200px;
    text-align: center;

}

a.square_btn:hover {
    background: #FFF;
    color: #CE323A;
	border: 1px solid #CE323A;
}

.sm-wrap,
.pickup-wrap {
	overflow: hidden;
}

.seminar,
.manufacturer,
.news,
.business {
	width: 100%;
	padding: 100px 0;
	position: relative;
}

.manufacturer {
	background: #F8F6F1;
	padding-bottom: 120px;
}

.seminar-wrap::after {
    content: "Seminar";
    font-size: 14rem;
    font-family: "Times New Roman", Times, serif;
    position: absolute;
    left: 0;
    bottom: -124px;
    opacity: 0.1;
    letter-spacing: 0.4rem;
    line-height: 1;
}
.seminar-wrap,
.manufacturer-wrap {
	width: 1170px;
	min-height: 230px;
	margin: 0 auto;
	position:relative;
	display: flex;
}

.manufacturer-wrap {
	flex-direction: row-reverse;
}


.seminar-cont,
.manufacturer-cont {
	text-align: left;
	width: 470px;
	position: relative;
	flex-shrink: 0;
}

.manufacturer-cont::after {
    content: "Manufacturer";
    font-size: 12rem;
    font-family: "Times New Roman", Times, serif;
    position: absolute;
    left: 0;
    bottom: -140px;
    opacity: 0.1;
    letter-spacing: 0.4rem;
    line-height: 1;
}

.h2ttl-b {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 15px;
	color: #707070;
}

.seminar-img {
	position: absolute;
	left: 50%;
	top: 0;
	/*margin-left: 15px;*/
}

.manufacturer-img {
    position: absolute;
    top: 0;
    margin-right: 15px;
    right: 585px;
    width: 990px;
    height: 230px;
    overflow: hidden;
    box-shadow: 0px 5px 10px rgba(0,0,0,0.16);
}

.seminar-tirasi,
.brandlogo {
	display: flex;
}

.seminar-tirasi li,
.brandlogo li {
	margin-right: 10px;
	flex-shrink: 0;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.16);
}

.brandlogo li:first-child {
	margin-left: 0;
}

.pickup {
    width: 100%;
    position: relative;
    z-index: 0;
    border-bottom: 2px solid #CE323A;
    border-top: 2px solid #CE323A;
}
/*
.pickup::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}
*/

.h2ttl {
	color: #707070;
	font-size: 2.8rem;
	display: inline-block;
	margin-bottom: 15px;
	position: relative;
}

/*
.pickup .ttl-box,
.pickup .h2ttl {
	color: #fff;
}
*/

.ttl-j {
	font-size: 1.4rem;
	font-weight: normal;
	position: relative;
}

.ttl-j::before,
.ttl-j::after {
	content: "-";
	display: inline-block;
	margin: 0 3px;
}

.pickup .ttl-j {
	margin-top: -10px;
}

.osusume-wrap .item{
	display: flex;
}

.news-inner,
.business-inner {
	width: 1170px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}

.news-l {
	width: 50%;
}

.news-inner {
	display: flex;
	justify-content: space-between;
}

.news-li {
	font-size: 1.6rem;
	margin-bottom: 15px;
	padding-bottom: 3px;
	border-bottom: 1px solid #707070;
}

.date {
	display: inline-block;
	margin-right: 20px;
}

.business {
	background: #F6F7F9;
	background: #F8F6F1;
}
 
.ul-business {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

.business-li {
	width: 370px;
	min-height: 420px;
	background: #fff;
	box-shadow: 0px 5px 10px rgba(0,0,0,0.16);
}

.jigyo-img {
	height: 160px;
	margin: 20px 20px 10px;
	background: no-repeat scroll 50% 50%;
	background-size: cover;
}
	
.bu01 {
	background-image: url(../img/business01.jpg);
}

.bu02 {
	background-image: url(../img/business02.jpg);
}

.bu03 {
	background-image: url(../img/business03.jpg);
}

.business-cont {
	padding: 0 20px 20px;
}

.business-cont p {
	font-size: 1.4rem;
}

.business-cont .ttl-box {
	text-align: center;
	margin-bottom: 15px;
}

.h3ttl {
	margin-bottom: 10px;
}

.business-cont .h3ttl {
	font-size: 2rem;
	margin-bottom: 0;
	color: #CE323A;
}

.contact-box .h3ttl {
	padding: 0.5em 2em;
	border-top: solid 2px #364e96;
	border-bottom: solid 2px #364e96;
	font-size: 2rem;
	display: inline-block;
	margin-bottom: 40px;
}

.sub-ttl {
    font-size: 1.2rem;
    font-weight: bold;
    color: #707070;
	letter-spacing: 1px;
}

/*swiper*/
    .swiper-container {
      width: 100%;
      height: 100%;
    }
    .swiper-slide {
      text-align: center;
      font-size: 18px;
      background: #fff;
      /* Center slide text vertically */
      display: -webkit-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      -webkit-justify-content: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      -webkit-align-items: center;
      align-items: center;
    }
/*swiper-end*/

.mv {
    height: 352px;
    line-height: 352px;
    color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.mv-maker-list {
    background-image: url(../img/mv-maker-list.jpg);
}

.mv-pop-list {
    background-image: url(../img/mv-pop.jpg);
}

.mv-seminar {
    background-image: url(../img/mv-seminar.jpg);
}

.mv-company {
    background-image: url(../img/mv-company.jpg);
}

.mv-recruit {
    background-image: url(../img/mv-recruit.jpg);
}

.mv-contact {
    background-image: url(../img/mv-contact.jpg);
}

.mv-inner {
}

.mv-title {
    font-size: 7rem;
    font-weight: normal;
    text-align: center;
    line-height: inherit;
    text-shadow: 4px 4px 20px rgba(0, 0, 0, 0.49);
}

	
.contents-wrap {
	width: 100%;
	padding-bottom: 60px;
	position: relative;
}

.contents {
	width: 1170px;
	margin: 0 auto;
}

.pankuzu {
    margin-bottom: 65px;
    color: #808080;
	text-align: left;
}

.pankuzu-list {
    list-style: none;
    font-size: 0px;
    line-height: 32px;
}

.pankuzu-list > li {
	font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    max-width: 400px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.pankuzu-list > li > a {
    color: #808080;
	text-decoration: underline;
	transition: .3s all;
}

.pankuzu-list > li > a:hover {
	text-decoration: none;
}

.pankuzu-list > li::before {
    content: ">";
    margin: 0 1em;
}

.pankuzu-list > li:first-child::before {
    content: "";
	margin: 0;
}
.pankuzu-list > li > a::before {
    content: "";
}

.pankuzu-list > li > a::after {
    content: "";
}

.contents .ttl-box .h2ttl {
	margin-bottom: 68px;
}

.maker-ul,
.pop-ul {
	display: flex;
	flex-wrap: wrap;
}

.pop-ul {
	justify-content: space-between;
}

.maker-li,
.pop-li {
	width: 270px;
	margin-bottom: 30px;
	position: relative;
	margin-right: 30px;
	position: relative;
}

.pop-li {
	margin-right: 0;
}

.maker-li:first-child::before {
	content: "【正規代理店】";
	display: inline-block;
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	color: #FE0000;
}	

.maker-li:nth-child(4n) {
	margin-right: 0;
}

.maker-li figure span,
.pop-li figure span {
	position: relative;
	display: block;
}

.maker-li figure span::before,
.pop-li figure span::before {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	border: 1px solid #000;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s;
}

.maker-li a:hover figure span::before,
.pop-li a:hover figure span::before {
	border-color: #CE323A;
}

.maker-cap {
    line-height: 1.4;
    text-align: center;
    margin-top: 10px;
}

.ul-seminar {
	margin: 0 30px;
}

.li-seminar {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 30px 0;
	margin-bottom: 20px;
}

.seminar-box {
	display: flex;
}

.seminar-box * {
	text-align: left;
}

.seminar-eye {
	margin-right: 30px;
	width: 270px;
	flex-shrink: 0;
}

.s-discription {
	margin-bottom: 20px;
}

.s-discription p {
	color: #777;
	font-size: 1.2rem;
	margin-bottom: 10px;
}

.h4ttl {
	border-bottom: dotted 1px #ccc;
	font-size: 18px;
	margin-bottom: 10px;
}

.seminar-area a.square_btn {
	margin-top: 0;
	margin-right: 10px;
	min-width: 130px;
	padding: 0.5em 1em;
}

.company-wrap {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 76px;
    margin-bottom: 78px;
}

.company-box {
	max-width: 740px;
	margin: 0 auto;
	position: relative;
}

.company-box p {
	margin-bottom: 20px;
}

.company-box .h3ttl,
.recruit-wrap .h3ttl {
	font-size: 2.2rem;
    display: inline-block;
    vertical-align: middle;
    font-weight: normal;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 15px;
    letter-spacing: 8px;
    text-indent: 8px;
    padding-left: 5px;
    padding-right: 5px;
    line-height: 1.4;
    margin-bottom: 34px;
    text-align: center;
}

.u-mincho {
    font-family: 'Noto Serif Japanese', "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: normal;
}

.lead-txt {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 18px;
    line-height: 1.7;
	font-weight: bold;
}

/*
.daihyo {
	min-height: 334px;
	background: url(../img/daihyo.jpg) no-repeat right top scroll;
}
*/

.daihyo-cont {
	width: 100%;
	position: relative;
	text-align: right;
}

.daihyo-cont p {
	margin-bottom: 20px;
	line-height:1.7;
	text-align: left;
}

.daihyo-cont .ttl {
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 30px;
}

.daihyo-name {
    text-align: right;
    line-height: 1.4 !important;
    display: inline-block;
    vertical-align: middle;
}

.daihyo-name span {
    font-size: 16px;
    display: block;
    text-align: left;
    margin-bottom: 4px;
}

.daihyo-name b {
    font-size: 22px;
    display: block;
    font-weight: normal;
    letter-spacing: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.col-head-type1 {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
 
.col-head-type1 th,
.col-head-type1 td {
  border: 1px solid #dbe1e8;  
  padding: 8px;
}
 
.col-head-type1 th {
  background: #F8F6F1;
  text-align: left;
  width: 20%;
}

.pop p {
	margin-bottom: 20px;
}

.bn-pop {
	margin-top: 10px;
	width: 140px;
}
 
@media only screen and (max-width: 800px) {
  .col-head-type1 tr,
  .col-head-type1 th,
  .col-head-type1 td {
    display: block;
    width: auto;
  }
  
  .col-head-type1 tr:first-child {
    border-top: 1px solid #dbe1e8;  
  }
  
  .col-head-type1 th,
  .col-head-type1 td {
    border-top: none;
  }
}

.recruit-box {
	width: 100%;
	margin: 0 auto 78px;
	position: relative;
}

/*左右の矢印の色を変える*/
.slick-prev:before,
.slick-next:before {
    color: #000;
}
/*左右の矢印の位置を変える*/
.slick-next {
    right: 20px;
    z-index: 99;
}
.slick-prev {
     left: 15px;
    z-index: 100;
}
/*スライド数のドットの色を変える*/
.slick-dots li.slick-active button:before,
.slick-dots li button:before {
    color: #fff;
}
/*スライド画像の横幅可変*/
img {
    max-width: 100%;
     height: auto;
}

.adjuvant {
	padding: 80px 0 100px;
	background: url(../img/bg-lg-pickup.jpg) no-repeat center left scroll;
	background-size: cover;
	position: relative;
}

.adjuvant::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	position: absolute;
	left: 0;
	top: 0;
}
	

.adjuvant .ttl-box,
.adjuvant .h2ttl {
	color: #FFF;
}

.slider {
	margin-top: 20px;
}

.form-box {
}

.form-table {
	width: 80%;
	margin: auto;
}

.form-table .td01,
.form-table .td02 {
	padding: 5px;
	text-align: left;
}

.form-table .td01 {
	width: 20%;
}

.form-table .td02 {
	width: 80%;
}

.form-table input,
.form-table textarea {
	width: 100%;
}

.contact-box {
	margin:0 30px 40px;
}

.tel {
    font-size: 2.0rem;
    font-weight: bold;
    color: #B0272D;
}

.inviewfadeup {
	opacity: 0;
	transform: translate(0,60px); 
	-webkit-transform: translate(0,60px); 
	transition: .8s;
}

.fadeon{
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}

.fadein {
    opacity : 0;
    transform : translate(0, 50px);
	transition: .8s;
    }
 
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.business-li.fadein:nth-of-type(2) {
    -moz-transition-delay:200ms;
    -webkit-transition-delay:200ms;
    -o-transition-delay:200ms;
    -ms-transition-delay:200ms;
    }

.business-li.fadein:nth-of-type(3) {
    -moz-transition-delay:400ms;
    -webkit-transition-delay:400ms;
    -o-transition-delay:400ms;
    -ms-transition-delay:400ms;
    }

  #nav-drawer {
    display:none;
  }
  

/*.googlecal { padding-bottom: 75%; }*/  	
/* -------------------------------------------- */
/* ▼スマホ用                               */
/* -------------------------------------------- */
@media all and (max-width: 767px) {
	#nav-drawer {
  position: relative;
  display: inherit;
    position: absolute;
    top: 19px;
    right: 15px;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}

/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 25px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -16px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}

/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 90%;/*右側に隙間を作る*/
    max-width: 300px;/*最大幅*/
    height: 100%;
    background: #F8F6F1;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);/*左に隠しておく*/
}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}

.head-discription {
	display: none;
}

	.header-inner {
    width: auto;
	padding: 10px 15px;
	height: auto;
	max-height: 80px;
	}
	.head-cont {
    display: inherit;
	}
	.logo {
    margin-right: 0px;
	width: 150px;
	}
	.head-discription {
    font-size: 1.1rem;
	}
	.header {
	position: relative;
	}
	.head-r {
	display: none;
	}
	.gnav {
    flex-direction: column;
	padding-top: 10px;
	}
	.gnav .li01 {
    margin-left: 0px;
	border-bottom: 1px solid #e9e9e9;
	}
	.gnav a {
    display: block;
    padding: 10px 0;
	}
	.pickup {
    border-bottom: 1px solid #CE323A;
    border-top: 1px solid #CE323A;
	}
	.seminar, .manufacturer, .news, .business {
    padding: 30px 20px 40px;
	}
	.seminar-wrap, .manufacturer-wrap {
    width: auto;
    flex-direction: column;
	}
	.seminar-cont, .manufacturer-cont {
    width: 100%;
	}
	a.square_btn {
    margin-top: 30px;
    padding: 0.4em 0.5em;
    margin: 20px auto 10px;
	}
	.seminar-tirasi, .brandlogo {
    justify-content: space-between;
	}
	.seminar-tirasi li, .brandlogo li {
    margin-right: 0;
    flex-shrink: 0;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.16);
	}
	.seminar-cont {
	margin-bottom: 20px;
	}
	.seminar-img {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0px;
	}
	.seminar-tirasi li, .brandlogo li {
    margin-right: 0;
    flex-shrink: 1;
    box-shadow: 0px 3px 3px rgba(0,0,0,0.16);
	}
	.seminar-wrap::after {
    font-size: 10rem;
    bottom: -58px;
	}
	.manufacturer-img {
    position: relative;
    top: 0;
    margin-right: 0;
    right: 0;
    width: 120%;
    height: auto;
	}
	.manufacturer-cont::after {
    font-size: 8rem;
    left: -20px;
    bottom: -163px;
	}
	.adjuvant {
    padding: 40px 0 60px;
	}
	.news-inner {
    flex-direction: column;
	}
	.news-inner, .business-inner {
    width: 100%;
	}
	.news-l {
    width: 100%;
	margin-bottom: 20px;
	}
	.cal_wrapper {
		max-width: 960px; /* 最大幅 */
		min-width: 300px; /* 最小幅 */
		margin: 2.0833% auto;
	}
	.googlecal {
		position: relative;
		padding-bottom: 100%; /* 縦横比 */
		height: 0;
	}
	.googlecal iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
	.fadein {
    opacity: 1;
	transform: translate(0, 0);
	}
	.ul-business {
    flex-direction: column;
	}
	.business-li {
    width: 100%;
    margin-bottom: 30px;
	min-height: inherit;
	}
	.footer-wrap {
    padding: 20px 0 30px;
	}
	.ft-inner {
    width: auto;
    flex-direction: column;
	}
	.ft-l {
    flex-direction: column;
	padding: 0 15px;
	}
	.ft-l > div {
    margin-right: 0px;
	}
	.ft-company {
    width: auto;
	margin-top: 10px;
	margin-bottom: 15px;
	align-self: flex-start;
	}
	.ft-r {
		padding: 0 15px;
	}
	.manufacturer-cont {
		margin-bottom: 20px;
	}
	.mv {
    height: 200px;
    line-height: 200px;
	}
	.mv-title {
    font-size: 4rem;
	}
	.pankuzu {
    margin-bottom: 20px;
    margin-left: 10px;
	}
	.contents {
    width: auto;
	}
	.contents .ttl-box .h2ttl {
    margin-bottom: 40px;
	}
	.maker,
	.pop {
		padding: 0 20px;
	}
	.maker-ul,
	.pop-ul {
    justify-content: space-between;
	}
	.maker-li,
	.pop-li {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 0;
	}
	.maker-li:first-child::before,
	.pop-li:first-child::before {
    width: 100%;
	top: -25px;
	}
	.maker-cap {
    font-size: 1.2rem;
	}
	.seminar-box {
    flex-direction: column;
	}
	.seminar-eye {
    margin-right: 0;
    margin-bottom: 10px;
	width: auto;
	}
	.company-wrapper {
		padding: 0 20px;
	}
	.daihyo-cont .ttl {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 20px;
	}
	.company-wrap {
    padding-bottom: 30px;
    margin-bottom: 60px;
	}
	.lead-txt {
    text-align: left;
    font-size: 2.2rem;
    margin-bottom: 5px;
	}
	.recruit-box {
    margin: 0 auto;
    padding: 0 20px;
	}
	.contact-box {
    margin: 0 20px 40px;
	}
	.contact-box p {
		text-align: left;
	}
	.contact-box .h3ttl {
    font-size: 1.6rem;
	}
	.form-table {
    width: 100%;
	}	
	
	
	
	
	
	
}