@charset "UTF-8";


/* ==========================================================================
   variable
============================================================================= */
:root {
	--main-color: #000000;
	--main-color-orange: #fdd100;
	--main-color-purple: #be6bb5;
}


/* ==========================================================================
   base
============================================================================= */

body {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: zen-kaku-gothic-new;
	font-weight: 300;
	font-size: 16px;
	color: #000;
}

@media all and (-ms-high-contrast:none) {
	body {
	   font-family: zen-kaku-gothic-new;
	}
}

/***アニメーション用の疑似要素　色が下がる***/
body#homePage::after {
  /* 疑似要素のCSSプロパティ*/ 
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #50A57D;
  animation: min-anim 1s forwards;
  animation-delay: .5s;
  transform-origin: bottom;
}

@keyframes min-anim {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}

/***アニメーション用の疑似要素　文字が消える***/
.overlay-image {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-image: url('../images/common/yoshimoto_rubber_common_logo-w.svg');
  background-size: 250px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: fade-out .7s .5s forwards;
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media all and (-ms-high-contrast:none) {
	body {
	   font-family: zen-kaku-gothic-new;
	}
}

@media screen and (min-width: 768px) {
.overlay-image {
    display: block;
}
}



/*フォントの種類*/
.zen_regular { 	font-family: "zen-kaku-gothic-new", sans-serif; font-weight: 400; font-style: normal;}
.zen_bold { font-family: "zen-kaku-gothic-new", sans-serif; font-weight: 700; font-style: normal;}

.fontMincho { 	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; }

.fontMarugo { 	font-family: "HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO","ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro"; }



a:link{ color: #000000; text-decoration: underline; }
a:visited{ color: #000000; text-decoration: underline; }
a:active{ color: #000000; text-decoration: underline; }
a:hover { color: #666666; text-decoration: none; }

a {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover {
    outline : none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);

	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;

	opacity: 0.7;
}


img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover img {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;

	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);

	opacity: 0.7;
}

svg,
a:hover svg {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a[href^="tel:"] { cursor: default; }

ul { list-style-type: none; }

address { font-style: normal; }

.inviewItem {
	opacity: 0;
	transform: translate(0,15px); 
	-webkit-transform: translate(0,15px); 
	transition: 0.7s;
}

.inviewItemLeft {
	opacity: 0;
	transform: translate(15px,0); 
	-webkit-transform: translate(15px,0); 
	transition: 0.7s;
}

.inviewItemFlag {
	opacity: 1.0;
	transform: translate(0,0); 
	-webkit-transform: translate(0,0);
}


/* ==========================================================================
   clearfix
============================================================================= */

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

.cf {
	min-height: 1px;
}

* html .cf {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

/* ==========================================================================
   common
============================================================================= */
.txtLt {text-align: left!important;}
.txtRt {text-align: right!important;}
.txtCt {text-align: center!important;}
.fontSmall {font-size: 0.7rem!important;}
.fontLarge {font-size: 1.4rem!important;}

.bgColorGray { background-color: #e0dcdb;}


/*スマホのみ改行*/
@media only screen and (min-width: 768px){
	br.mbbr {
		display:none!important;
	}
}

/*スマホ・タブレットのみ改行*/
@media only screen and (min-width: 1040px){
	br.mbtbbr {
		display:none!important;
	}
}

/*タブレット以上のみ改行*/
br.tbbr {
	display: none;
}

@media only screen and (min-width: 768px){
	br.tbbr {
		display: inline;
	}
}

/*PC以上のみ改行*/
br.dtbr {
	display: none;
}

@media only screen and (min-width: 1040px){
	br.dtbr {
		display: inline;
	}
}

/*モバイルのみ消す（インライン）*/
.mbNone {
	display: none;
}

@media only screen and (min-width: 768px){
	.mbNone {
		display: inline;
	}
}

/*フォーム*/
select, textarea, [type="text"], [type="password"], [type="datetime"], [type="datetime-local"], [type="date"], [type="month"], [type="time"], [type="week"], [type="number"], [type="email"], [type="url"], [type="search"], [type="tel"], [type="color"], .uneditable-input {
	display: inline-block;
	padding: 0.5em 0.5em;
	width: 50%;
	/*-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;*/
	vertical-align: middle;
	font-size: 90%;

    border: none;
    background-color: #fff;

}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding-right: 25px;
}

input[type="reset"]:focus,
input[type="submit"]:focus {
	outline: 0;
}


/* ==========================================================================
   base
============================================================================= */

body {

}

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

@media screen and (min-width: 580px) {
	.w580 {
		max-width: 580px!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

@media screen and (min-width: 720px) {
	.w720 {
		max-width: 720px!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

@media screen and (min-width: 1040px) {
	.w1040 {
		max-width: 1040px!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

@media screen and (min-width: 1200px) {
	.w1200 {
		max-width: 1200px!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}
}

@media screen and (min-width: 1400px) {
	.w1400 {
		max-width: 1400px!important;
		margin-left: auto!important;
		margin-right: auto!important;
	}
}




/*---------- fixTopBtn ----------*/
a.fixTopBtn {
	z-index: 9999;
	opacity: 0;
	position: fixed;
	bottom: 0;
	right: 25px;
	display: block;
}

a.fixTopBtn::before {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	content: url("../images/common/yoshimoto_rubber_common_up-btn.png");
}

a.fixTopBtn span {
	display: none;
}

@media screen and (min-width: 768px) {
	a.fixTopBtn {
		width: 3rem;
		height: 3rem;
	}

	a.fixTopBtn::before {
        width: 5rem;
	}
}

/*======= header =======*/
header {
	position: relative;
	height: auto;
}

header .headerInner {
	z-index: 800;
	margin: 0 2%;
}

header .logoBox {
	position: relative;
	text-align: center;
	padding: 0rem 0;
    margin-left: 5%;
}

header .logoBox .logo {
	z-index: 999;
	position: relative;
	display: inline-block;
}

header .logoBox .logo img {
    display: none;
	max-width: 150px;
	width: 100%;
}

@media screen and (min-width: 768px) {
header .logoBox {
	padding: 1.5rem 0;
}
    
header .logoBox .logo img {
	display: block;
}
}

@media screen and (min-width: 1040px) {
	header {
		width: 100%;
		margin-bottom: 3rem;
	}

	header .headerInner {
		position: relative;
		text-align: left;
		height: 110px;
	}

	header .logoBox {
		display: block;
		text-align: left;
		padding: 0;
		padding-top: 0.5em;
	}

	header .logoBox .logo img {
		max-width: auto;
		width: auto;
		height: 100px;
	}
}

/*======= navi =======*/
.fixNavi {
	z-index: 9000;
	position: fixed;
	top: 5px;
	right: 5px;
	width: 35px;
	height: 35px;
	display: block;
}

.navBtn {
	z-index: 9999;
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	background-color: none;
	text-align: left;
	width: 100%;
	height: 35px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: left;
	-webkit-justify-content: left;
	-ms-flex-pack: left;
	justify-content: left;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
}

.trigger,
.trigger span {
	display: inline-block;
	-webkit-transition: all .4s;
	transition: all .4s;
	margin-left: 0;
}

.trigger {
	position: relative;
	width: 35px;
	height: 22px;
}

.trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #46484A;
	border-radius: 4px;
}

.trigger span:nth-of-type(1) {
	top: 0;
}

.trigger span:nth-of-type(2) {
	top: 10px;
}

.trigger span:nth-of-type(2)::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 2px;
	background-color: #46484A;
	border-radius: 4px;
	-webkit-transition: all .4s;
	transition: all .4s;
}

.trigger span:nth-of-type(3) {
	bottom: 0;
}

.trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) scale(0);
	transform: translateY(8px) scale(0);
}

.trigger.active span:nth-of-type(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.trigger.active span:nth-of-type(2)::after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) scale(0);
	transform: translateY(-8px) scale(0);
}


/*navMount*/
.navMount {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.95);
	text-align: center;
	padding: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: auto!important;

	-webkit-overflow-scrolling: touch;
	
	opacity: 0;
	visibility: hidden;
	overflow: hidden;

	-webkit-transition: 0.3s;
	-moz-transition: 0.3;
	-o-transition: 0.3s;
	transition: 0.3s;
}
 
.navMount.is-visible {
    z-index: 999;
	opacity: 1.0;
	visibility: visible;
}

.navMount .navInner .menuList li.mobile {
	display: block;
}

.navMount .navInner {
	text-align: center;
	width: 100%;
	padding: 50px 0 0 0;/*固定divの高さ*/
}

.navMount ul {

}

.navMount ul > li {
	display: block;
	width: 94%;
	font-weight: 300;
	margin: 0 3%;
	border-bottom: 1px solid #A8A9AD;
}

.navMount ul > li:first-child {
	border-top: 1px solid #A8A9AD;
}

.navMount ul > li > a {
	display: block;
	padding: 1.5rem 0;
	text-align: center;
	cursor: pointer;
	line-height: 1em;
}

.navMount ul.menuList li:first-child a:link{ color: var(--main-color); text-decoration: none; }
.navMount ul.menuList li:first-child a:visited{ color: var(--main-color); text-decoration: none; }
.navMount ul.menuList li:first-child a:active{ color: var(--main-color); text-decoration: none; }
.navMount ul.menuList li:first-child a:hover { color: var(--main-color); text-decoration: none; }

.navMount ul.menuList > li > a > span {
	position: relative;
	display: inline-block;
	text-align: center;
	color: #000000;
	padding: 0.1em 0 0.3em 0;
	width: 11em;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.navMount ul.menuList > li > a:hover > span,
.navMount ul.menuList > li.active > a > span {
	color: #fff;

	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}




@media screen and (min-width: 1040px) {
	.fixNavi {
		display: none;
	}

	.navMount {
		z-index: 1;
		position: absolute;
		right: 0;
		bottom: 0;
		width: 100%;
		opacity: 1.0;
		visibility: visible;
		background: transparent;
		overflow: hidden!important;
	}

	.navMount .navInner {
		position: relative;
		height: 80px;
		padding: 0;
	}

.navMount .navInner .menuList li.mobile {
	display: none;
}

	.navMount ul.menuList {
		position: absolute;
		right: 0;
		bottom: 0;
		display: inline-block;
		max-width: 900px;
		width: 100%;
		letter-spacing: -.4em;
		text-align: right;
		margin: 0;
	}

    .navMount .navInner ul li.sp{
        display: none;
    }
    
	.navMount ul.menuList > li {
		display: inline-block;
		letter-spacing: normal;
		padding: 0;
		width: auto;
		margin: 0;
		border-top: none!important;
		border-bottom: none;
	}

	.navMount ul.menuList > li {
		text-align: left;
		width: 160px;
	}


	.navMount ul > li:first-child {
		border-top: none;
	}

	.navMount ul > li > a {
		display: block;
		font-size: 16px;
        font-weight: 400;
		padding: 0;
		text-align: center;
		cursor: pointer;
		line-height: 1.2em;
	}

	.navMount ul.menuList > li > a > span {
		width: 100%;
        color: #fff;
	}

	#about .navMount ul.menuList > li > a > span,
	#contact .navMount ul.menuList > li > a > span,
    #business .navMount ul.menuList > li > a > span {
        color: #000;
	}

	.navMount ul.menuList > li > a:hover > span,
	.navMount ul.menuList > li.active > a > span {
		width: 100%;
	}
	
	.navMount ul.menuList > li > a:hover > span > span {
		position: relative;
		animation-name: navBtnAnime;
		animation-duration: 2s;
		animation-timing-function: ease;
		animation-delay: 0s;
		animation-iteration-count: 1;
		animation-direction: alternate;
		animation-fill-mode: none;
		animation-play-state: running;
	}

	@keyframes navBtnAnime {
		0% {
			left: 0em;
		}
	  
		10% {
			left: -0.3em;
		}
	  
		40% {
			left: 0em;
		}
	  }
}


/*======= footer =======*/
footer {
    background-color: #000;
	padding-bottom: 1rem;
    padding-left: 2rem;
}

footer .flexContainer.photoandtxt .txt {
	text-align: left;
}

footer .flexContainer.photoandtxt h2 {
	margin-bottom: 1.5em;
}

footer .flexContainer.photoandtxt p {
	margin-bottom: 2.5em;
}

footer .flexContainer.photoandtxt {
	margin-bottom: 0rem;
}

footer .flexContainer.photoandtxt:last-child {
	margin-bottom: 0;
}

footer .flexContainer.photoandtxt .itemCol2.photo {
	margin-bottom: 0rem;
}

@media screen and (min-width: 768px) {
footer .flexContainer.photoandtxt .itemCol2 {
		width: 100%;
	}

footer .flexContainer.photoandtxt .itemCol2.photo {
	margin-bottom: 2.5rem;
}
}

@media screen and (min-width: 1040px) {
footer .flexContainer.photoandtxt.rev {
		-webkit-flex-direction: row-reverse;
		flex-direction: row-reverse;
	}

footer .flexContainer.photoandtxt .itemCol2.photo {
		width: 40%;
		width: calc(400px);
		margin-bottom: 0;
	}

footer .flexContainer.photoandtxt .itemCol2.txt {
		width: 55%;
		width: calc(100% - 400px);
	}

footer .flexContainer.photoandtxt h2,
footer .flexContainer.photoandtxt p {
		margin-left: 5rem;
	}

footer .flexContainer.photoandtxt.rev h2,
footer .flexContainer.photoandtxt.rev p {
		margin-left: 0;
		margin-right: 5rem;
	}
}


footer .footerLogo {
	text-align: left;
	margin: 0 0 0 1rem;
    color: #fff;
}

footer .footerLogo p.tenmei {
	font-size: 70%;
    font-weight: bold;
    margin-top: 0.2rem;
    margin-bottom: 1.5rem;
}

footer .footerLogo .address {
	text-align: center;
    display: inline-block;
}

footer .footerLogo .address p {
	text-align: left;
	font-size: 70%;
}

footer .footerLogo img {
	max-width: 120px;	
}

footer .footerNav {
    margin-top: 3rem;
    margin-bottom: 2rem;
	font-size: 12px;
}

footer .footerNav ul li {
	display: block;
	font-weight: 300;
	margin: 0 3%;
}

footer .footerNav ul li a {
	display: block;
	padding: 0.1em 0 0.3em 0;
	text-align: left;
	cursor: pointer;
	line-height: 1em;
	font-weight: 800;
}

footer .footerNav ul li a:link{ color: var(--main-color); text-decoration: none; }
footer .footerNav ul li a:visited{ color: var(--main-color); text-decoration: none; }
footer .footerNav ul li a:active{ color: var(--main-color); text-decoration: none; }
footer .footerNav ul li a:hover { color: var(--main-color); text-decoration: none; }

footer .footerNav ul li span {
	position: relative;
	display: inline-block;
	text-align: left;
    color: #fff;
	padding: 0.25em 0;
	line-height: 1;
	width: 11em;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

footer .footerInfo {
	margin: 2rem 0 1.5rem 0;
}

footer .footerInfo ul {
	width: 100%;
	letter-spacing: -.4em;
	text-align: center;
	margin: 0;
}

footer .footerInfo ul li {
	display: inline-block;
	letter-spacing: normal;
	padding:0 0.75rem;
}

footer .footerInfo ul li img {
	max-width: 30px;
}

footer .copyright {
    color: #fff;
	text-align: center;
}

footer .copyright small {
	font-size: 70%;
}

@media screen and (min-width: 768px) {
footer .footerLogo {
	margin: 2rem 0 0rem 0;
	text-align: center;
}

footer .footerLogo img {
	max-width: 180px;	
}

footer .footerNav {
    margin-top: 5rem;
	font-size: 12px;
}

footer .footerNav ul li span {
	text-align: center;
}
footer .footerLogo p.tenmei {
	font-size: 80%;
}

footer .footerNav ul li a {
	text-align: center;
}
}

@media screen and (min-width: 1040px) {
	footer .footerNav ul {
		width: 100%;
		letter-spacing: -.4em;
		text-align: center;
		margin: 0;
	}

	footer .footerNav ul li {
		display: inline-block;
		letter-spacing: normal;
		padding: 0;
		width: 130px;
		margin: 0;
	}

	footer .footerNav ul li a {
		display: block;
		font-size: 14px;
		padding: 0;
	}

	footer .footerNav ul li span,
	footer .footerNav ul li a:hover span {
		width: 100%;
	}
}



/*======= contentCommon =======*/
.flexContainer {
	display: -webkit-flex;
	display: flex;

	-webkit-flex-direction: row;
	flex-direction:         row;

	-webkit-flex-wrap: wrap;
	flex-wrap:         wrap;

	-webkit-justify-content: flex-start;
	justify-content:         flex-start;/*space-around*/
}

.flexContainer .itemCol2,
.flexContainer .itemCol3,
.flexContainer .itemCol4 {
	position: relative;
	display: inline-block;
	width: 100%;
	height: auto;
	margin-bottom: 1rem;
	text-align: center;
}

.flexContainer .itemCol4 {
	width: 50%;
}

.flexContainer .itemCol2:last-child,
.flexContainer .itemCol3:last-child,
.flexContainer .itemCol4:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 768px) {
	.flexContainer {
		/*-webkit-justify-content: space-between;
		justify-content:         space-between;*/
	}

	.flexContainer .itemCol2 {
		width: 50%;
		margin-bottom: 0;
	}

	.flexContainer .itemCol3 {
		width: 33.33333%;
		width: -webkit-calc(99.99999% / 3);
		width: calc(99.99999% / 3);
		margin-bottom: 0;
	}

	.flexContainer .itemCol4 {
		width: 25%;
		margin-bottom: 0;
	}
}


/*メイン見出し*/
.titleMain {
	text-align: center;
}

.titleMain img {
	width: auto;
	height: 115px;
}


.btnLine {
	font-size: 120%;
	text-align: right;
}

.btnLine a {
	text-align: center;
	display: inline-block;
	border: 1px solid #000000;
	border-width: 1px 0 1px 0;
	padding: 0.4em 1em;
	line-height: 1;
}

.btnLine a:link{ color: #000000; text-decoration: none; }
.btnLine a:visited{ color: #000000; text-decoration: none; }
.btnLine a:active{ color: #000000; text-decoration: none; }
.btnLine a:hover { color: #666666; text-decoration: none; }

.btnLine a span.arrow::after {
	content: "＞";
	margin-left: 0.5em;
}





/*ボタン more*/
.btnMore a {
	font-size: 0.9em;
	line-height: 1;
	font-weight: bold;
	border: 1px solid var(--main-color);
	border-radius: 0.5em;
	padding: 0.5em 1em;
	line-height: 1em;
	letter-spacing: 0.1em;
	display: inline-block;
	vertical-align: middle;

	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}

.btnMore a span::after {
	display: inline-block;
	vertical-align: middle;
	font-size: 0.75em;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	content: "\f061";
	margin-left: 0.75em;

}

.btnMore a:hover {
	color: #ffffff;
	background-color: var(--main-color);
}


/*ボタン 四角*/
.btnSquare {
	display: inline-block;
}

.btnSquare a {
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 1;
	color: #ffffff;
	padding: 0.5em 5em;
	background-color: var(--main-color);
}



/*テーブル 基本*/
table.basicTable {
	width: 100%;
	border-collapse:separate;
	border-top: 1px solid #000000;
}

table.basicTable caption{
	font-size: 1rem;
	font-weight: bold;
	text-align: left;
}

table.basicTable tr th,
table.basicTable tr td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding: 0.75em 0;
	border-bottom: 1px solid #000000;
}

table.basicTable tr th { width: 30%; }
table.basicTable tr td { width: 70%; }

table.basicTable p {
	margin-bottom: 1em;
}

@media screen and (min-width: 768px) {
	table.basicTable tr th { width: 18%; }
	table.basicTable tr td { width: 82%; }

}



/*レスポンシブ用マージン*/
.martS { margin-top: 1rem; }
.martM { margin-top: 2rem; }
.martL { margin-top: 3rem; }

.marbS { margin-bottom: 1rem; }
.marbM { margin-bottom: 2rem; }
.marbL { margin-bottom: 3rem; }

@media only screen and (min-width: 768px){
	.martS { margin-top: 2rem; }
	.martM { margin-top: 3rem; }
	.martL { margin-top: 4rem; }

	.marbS { margin-bottom: 2rem; }
	.marbM { margin-bottom: 3rem; }
	.marbL { margin-bottom: 4rem; }
}

@media only screen and (min-width: 900px){
	.martS { margin-top: 5rem; }
	.martM { margin-top: 7rem; }
	.martL { margin-top: 8rem; }

	.marbS { margin-bottom: 5rem; }
	.marbM { margin-bottom: 7rem; }
	.marbL { margin-bottom: 8rem; }
}

/*======= section =======*/
section {
	position: relative;
	line-height: 1.5em;
}

section .sectionInner,
.breadcrumbsInner {
	position: relative;
	margin: 0 1rem;
	box-sizing: border-box;
}

.innerBox,
.innerBox2 {
	margin-left: 1em;
	margin-right: 1em;
}

.txtBoxS {
	max-width: 500px;
	margin: 0 auto;
}

@media screen and (min-width: 768px) {
	section .sectionInner,
	.breadcrumbsInner  {
		margin: 0 5%;
	}

	.innerBox {
		margin-left: 2em;
		margin-right: 2em	
	}
}

hr {
	/*border-top: 1px solid #000000;*/
	margin: 0.5em 0;
}


@media screen and (min-width: 1040px) {

}


/*======= breadcrumbs　パンくずリスト =======*/
.breadcrumbs {
	margin-top: 1rem;
}

.breadcrumbs nav {
	margin-bottom: 2rem;
}

.breadcrumbs nav ol {
	font-size: 0.8rem;
}

.breadcrumbs nav ol li {
	display: inline;
}

.breadcrumbs nav ol li:after {
	content: " > ";
}
.breadcrumbs nav ol li:last-child:after {
	content:"";
}

/*======= title =======*/
.titleArea {

}

.titleArea .titleAreaInner {
	position: relative;
	height: 370px;
	text-align: center;
	background-image: url("");
	background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

#about .titleArea .titleAreaInner {	background-image: url(""); }



.titleArea .titleAreaInner h1 {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.titleArea .titleAreaInner h1 img {
	width: auto;
	height: 160px;
}





/*======= home =======*/


.tatemoji {
	background-image: url("../images/common/yoshimoto_rubber_common_side-logo.svg");
	background-position: top 20% left 9%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: 35px;
}
#business .tatemoji {
	background-image: url("../images/common/yoshimoto_rubber_common_side-service.svg");
}

.tatemoji-company {
	background-image: url("../images/common/yoshimoto_rubber_common_side-company.svg");
	background-position: top 7% right 9%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: 35px;
}

.tatemoji_contact {
	background-image: url("../images/common/yoshimoto_rubber_common_side-contact.svg");
	background-position: top 50% left 9%;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: 35px;
}



.mainVisual .mainVisualInner {
	position: relative;
	height: 300px;
    margin-top: -2rem;
	background-image: url("");
	background-position: center bottom;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    z-index: 500;
}
#about .mainVisual .mainVisualInner {
	background-image: url("../images/about/yoshimoto_rubber_about_top-image.png");
}
#contact .mainVisual .mainVisualInner {
	background-image: url("../images/contact/yoshimoto_rubber_contact_top-image.png");
}
#business .mainVisual .mainVisualInner {
	background-image: url("../images/business/yoshimoto_rubber_business_top-image.png");
}

.mainVisual .mainVisualInner .logo {
	display: inline-block;
	max-width: 130px;
	width: 15%;
	position: absolute;
	top: 40%;
	left: 15%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

@media screen and (min-width: 768px) {
.mainVisual .mainVisualInner {
	height: 800px;
    margin-top: 0rem;
}

.mainVisual .mainVisualInner .logo {
	display: inline-block;
	max-width: 130px;
	width: 50%;
	position: absolute;
	top: 8%;
	left: 20%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
}



/*commonLogo*/
.commonLogo {
    position: fixed;
    z-index: 999;
    mix-blend-mode: difference; 
	top: 4%;
	left: 15%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.commonLogo img {
    width: 80px;
}

@media screen and (min-width: 768px) {
.commonLogo {
    display: none;
}
}


/*homeArea1*/
.homeArea1 {
    margin-top: -2rem;
}

.homeArea1 .pentagon-video {
	position: relative;
    z-index: 500;
    margin-top: 0;
    width: 100%;
    height: 400px;
    clip-path: none;
    border-bottom: solid 8px #50A57D;
  }
 
   /* .homeArea1 .pentagon-video2 {
	position: relative;
    z-index: 400;
    margin-top: -1030px;
    width: 100%;
    height: 1050px;
    clip-path: none;
    border-bottom: none;
  }*/

 .homeArea1 .pentagon-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.homeArea1 img.message {
    z-index: 600;
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
    width: 25%;
}

.homeArea1 .contact_btn  {
    z-index: 800;
    position: absolute;
	bottom: 2%;
	left: 40%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}
#about .homeArea1 .contact_btn,
#business .homeArea1 .contact_btn  {
	bottom: 2%;
	left: 20%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.homeArea1 .contact_btn img  {
    display: none;
    width: 50%;
}

.homeArea1 .contact_btn a img  {
    width: 80%;
}



.homeArea1 img.scroll {
    display: none;
    z-index: 600;
    position: absolute;
	bottom: -65px;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
    width: 40px;
}

@media screen and (min-width: 768px) {
.homeArea1 {
    margin-top: 0rem;
}

    .homeArea1 .pentagon-video {
	position: relative;
    z-index: 500;
    margin-top: -170px;
    width: 100%;
    height: 1200px;
    border-bottom: none;
    filter:drop-shadow(0 25px #50A57D);  
  }
    
    .homeArea1 .pentagon-video video {
    clip-path: polygon(100% 0%, 100% 80%, 50% 100%, 0% 80%, 0% 0%);
    }
    
  /*  .homeArea1 .pentagon-video2 {
	position: relative;
    z-index: 400;
    margin-top: -1030px;
    width: auto;
    height: 1050px;
    clip-path: polygon(100% 0%, 100% 77%, 50% 100%, 0% 77%, 0% 0%);
    border-bottom: none;
  }*/

.homeArea1 img.message {
    width: 10%;
}
    
.homeArea1 img.contact_btn {
    width: 15%;
	left: 15%;
	bottom: 15%;
}

.homeArea1 img.scroll {
    display: block;
}
 
.homeArea1 .contact_btn  {
	bottom: 20%;
	left: 20%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.homeArea1 .contact_btn img  {
    display: block;
    width: 70%;
}
   
    
}



/*homeArea2*/
.homeArea2 {
    background: linear-gradient(180deg, #fff 0rem, #fff 20rem, #AFAFAF 20rem, #AFAFAF 100%);
}

.homeArea2 .sectionInner {
    background-color: #D9D4CF;
    margin-top: -20rem;
    padding-top: 23rem;
}

.homeArea2 .sectionInner .flexContainer {
    padding-bottom: 4rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .title {
    text-align: left;
    border-bottom: solid 1px #50A57D;
    margin-bottom: 2rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .title img {
    position: relative;
    z-index: 600;
    width: 50px;
    margin-top: -1.5rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 h2.midashi {
    position: relative;
    z-index: 700;
    margin: 1rem 0 -1rem 2rem;
    text-align: left;
    font-size: 160%;
    font-weight: 700;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .komidashi {
    margin: 2rem 1rem;
    text-align: justify;
    font-size: 130%;
    line-height: 1.3em;
    font-weight: 700;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei {
    margin: 0 1rem 3rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei p {
    text-align: justify;
    line-height: 1.6em;
    font-weight: 400;
    margin-bottom: 3rem;
    font-size: 80%;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn {
    position: relative;
    width: 180px;
    height: 40px;
    clip-path: polygon(100% 0%, 100% 60%, 90% 100%, 0% 100%, 0% 40%, 10% 0%);
    background-color: #50A57D;
    color: #fff; /* ホバー時の文字色を変更 */
    transition: background-color 1s ease; /* 背景色の変化をゆっくりにする */
    background-position: 300px 0; /* 初期位置を右端に設定 */
    overflow: hidden;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn::after {
  background: #AFAFAF;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(1, 0);
  transform-origin: top left;
  transition: .5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn:hover {
  background-color: #AFAFAF; /* ホバー時の背景色を変更 */
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn:hover::after {
  transform: scale(1, 1);
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn p {
    position: absolute;
    text-align: center;
    width: 100%;
    font-size: 100%;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit-transform: translateY(-50%) translateX(-50%);
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei img {
    width: 300px;
}

.homeArea2 .sectionInner .center-image {
    width: 90%;
    margin-bottom: 6rem;
}

.homeArea2 .sectionInner .sentaku {
    text-align: center;
    font-weight: 400;
    padding-bottom: 2rem;
    font-size: 70%;
}

.homeArea2 .sectionInner .sentaku a {
   text-decoration: none;
}

.homeArea2 .sectionInner .sentaku span {
    color: #50A57D; 
}

@media screen and (min-width: 768px) {
.homeArea2 .sectionInner {
    padding-top: 28rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .title img {
    width: 100px;
    margin-top: -4.5rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 h2.midashi {
    margin: 1rem 0 0 2rem;
}
    
.homeArea2 .sectionInner .flexContainer .itemCol2 .komidashi {
    margin: 3rem 5rem;
    font-size: 160%;
    line-height: 1.6em;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei {
    margin: 0 5rem;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei p {
    line-height: 2em;
    margin-bottom: 5rem;
    font-size: 100%;
}

.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn {
    width: 300px;
    height: 60px;
}
    
.homeArea2 .sectionInner .flexContainer .itemCol2 .setsumei .six_btn p {
    font-size: 120%;
}
    
.homeArea2 .sectionInner .center-image {
    width: 80%;
    margin-bottom: 8rem;
}

.homeArea2 .sectionInner .sentaku {
    font-size: 100%;
}
}



/*homeArea3*/
.homeArea3 {
    padding: 2rem;
    background-color: #AFAFAF;
}

.homeArea3 .sectionInner {
    background-color: #F4F4F3;
    padding: 2rem 0rem;    
}

.homeArea3 .sectionInner h2 img {
    width: 55%;    
}

.homeArea3 .sectionInner p.sitsumon {
    font-size: 80%;
    line-height: 1.5em;
    margin: 1.5rem 2rem;    
    font-weight: 400;
    text-align: justify;
}

.homeArea3 .sectionInner a {
    text-decoration:none;
}

.homeArea3 .sectionInner p.tel {
    font-size: 180%;
    margin-top: 1rem;
    font-weight: bold;
}

.homeArea3 .sectionInner p img {
    display: inline-block;
    width: 40px;
    margin-right: .5rem;
}

.homeArea3 .sectionInner p.uketsuke {
    font-size: 100%;
    margin: 1.5rem 20% 0;
    padding: 0.2rem;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    font-weight: 400;
}

@media screen and (min-width: 768px) {
.homeArea3 {
    padding: 5rem;
}
.homeArea3 .sectionInner {
    padding: 2rem 8rem;    
}

.homeArea3 .sectionInner h2 img {
    width: 40%;    
}

.homeArea3 .sectionInner p.tel {
    font-size: 240%;
}

}

/*======= about =======*/

/*aboutArea1*/
.aboutArea1 {
    background: linear-gradient(180deg, #fff 0rem, #fff 20rem, #AFAFAF 20rem, #AFAFAF 100%);
}

.aboutArea1 .sectionInner {
    background-color: #D9D4CF;
    margin-top: -20rem;
    padding-top: 23rem;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo .title .midashi {
    margin: -4rem 0 3.5rem 0.5rem;
    text-align: justify;
    font-size: 120%;
    padding-left: 0.45em;
    color: #fff;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo {
		width:100%;
		margin-bottom: 0;
    text-align: left;
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo img {
		width: 30%;
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt {
		width: 100%;
    padding: 0 2rem;
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt .title {
	text-align: justify;
    font-size: 130%;
    line-height: 1.6em;
    font-weight: 800;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt .setsumei {
	text-align: justify;
    margin-top: 2rem;
    font-size: 80%;
    line-height: 1.6em;
    font-weight: 400;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt .setsumei span {
    font-size: 150%;
}

.aboutArea1 .image_big {
    margin-top: -3rem;
}

@media screen and (min-width: 768px) {
.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo .title .midashi {
    margin: -3.5rem 0 0;
    text-align: center;
   font-size: 130%; 
    padding-left: 0em;
} 

    
.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo {
		width: 30%;
		width: calc(300px);
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt {
		width: 65%;
		width: calc(100% - 300px);
    padding: 0 5rem;
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt .title {
    font-size: 180%;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo img {
		width: 100%;
	}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.photo .title .midashi {
    margin-top: -10rem;
    font-size: 160%;
}

.aboutArea1 .flexContainer.photoandtxt .itemCol2.txt .setsumei {
    margin-top: 4rem;
    font-size: 100%;
    line-height: 2em;
}

}



/*aboutArea2*/
.aboutArea2 {
    background: linear-gradient(180deg, #AFAFAF 0rem, #AFAFAF 100%);
}

.aboutArea2 .sectionInner {
    background-color: #D9D4CF;
}

.aboutArea2 .sectionInner .title {
    padding-top: 5rem;
}

.aboutArea2 .sectionInner h2.midashi {
    position: relative;
    z-index: 700;
    margin:0rem 1rem 0 0rem;
    text-align: center;
    font-size: 130%;
    font-weight: 700;
}

.aboutArea2 .sectionInner .title {
    display: block;
    position: relative;
    z-index: 600;
    text-align: center;
}
.aboutArea2 .sectionInner .title img {
    position: relative;
    z-index: 600;
    width: 15%;
    margin-top: -3.5rem;
}

.aboutArea2 .sectionInner .syousai {
    padding-top: 2rem;
}

.aboutArea2 .sectionInner table {
    width: 100%;
}

.aboutArea2 .sectionInner table tr {
    border-top: solid 1px #50A57D;
    font-weight: 400;
    font-size: 80%;
    line-height: 1.35em;
}

.aboutArea2 .sectionInner table td.toi {
    width: 25%;
    padding: 1rem;
}

.aboutArea2 .sectionInner table td.kotae {
    width: 70%;
    padding: 1rem;
}

.aboutArea2 .sectionInner table td.kotae iframe {
    width: 100%;
    height: 150px;
    margin-top: 1rem;
}

@media screen and (min-width: 768px) {
.aboutArea2 .sectionInner .syousai {
    padding-top: 5rem;
}
  
.aboutArea2 .sectionInner h2.midashi {
    position: relative;
    z-index: 700;
    margin:0rem 1rem 0 -2rem;
    text-align: left;
    font-size: 130%;
    font-weight: 700;
}  
.aboutArea2 .sectionInner .title {
    position: relative;
    z-index: 600;
    margin-left: 45%;
    text-align: left;
    border-bottom: solid 1px #50A57D;
}
    
.aboutArea2 .sectionInner .title img {
    position: relative;
    z-index: 600;
    width: 100px;
    margin-top: -4rem;
}

.aboutArea2 .sectionInner h2.midashi {
    font-size: 180%;
}
    
.aboutArea2 .sectionInner table tr {
    font-size: 100%;
    line-height: 1.5em;
}
    
.aboutArea2 .sectionInner table td.toi {
    width: 25%;
    padding: 2rem 2rem 2rem 1rem;
}

.aboutArea2 .sectionInner table td.kotae {
    width: 70%;
    padding: 2rem 2rem 2rem 0rem;
}

.aboutArea2 .sectionInner table td.kotae iframe {
    height: 300px;
    margin-top: 2rem;
}

}

/*======= business =======*/

.business_title_common img {
    height: 35px;
}

@media screen and (min-width: 768px) {
.business_title_common img {
    height: 60px;
}
}

/*businessArea1*/
.businessArea1 {
    background: linear-gradient(180deg, #fff 0rem, #fff 20rem, #AFAFAF 20rem, #AFAFAF 100%);
}

.businessArea1 .sectionInner {
    background-color: #D9D4CF;
    margin-top: -20rem;
    padding-top: 23rem;
}

.businessArea1 .sectionInner .business_set {
    padding-bottom: 3rem;
}

.businessArea1 .sectionInner .business_set .title,
.businessArea1 .sectionInner .business_set2 .title {
    text-align: left;
    border-bottom: solid 1px #50A57D;
    display: inline-block;
    margin-bottom: 2rem;
}

.businessArea1 .sectionInner .business_set .title img {
    position: relative;
    z-index: 600;
    width: 30%;
    margin-top: -4.5rem;
}

.businessArea1 .sectionInner .business_set2 .title img {
    position: relative;
    z-index: 600;
    width: 30%;
    margin-top: -3.5rem;
}

.businessArea1 .sectionInner .business_set h2.midashi,
.businessArea1 .sectionInner .business_set2 h2.midashi {
    position: relative;
    z-index: 700;
    margin:0rem 1rem 0 2rem;
    text-align: left;
    font-size: 130%;
    font-weight: 700;
}

.businessArea1 .sectionInner .business_set .honbun {
    position: relative;
    z-index: 700;
    margin:0rem 10%;
    text-align: justify;
    font-size: 80%;
    line-height: 1.6em;
    font-weight: 400;
}


.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou {
    margin: -20px 2% 0 2%;
    background-color: #50A57D;
    padding: 1rem 1rem;
    background-image: url("../images/business/yoshimoto_rubber_business_kado01-left.svg"),url("../images/business/yoshimoto_rubber_business_kado01-right.svg");
	background-position: top left,bottom right;
    background-repeat: no-repeat,no-repeat;
    -webkit-background-size: 10%,10%;
    -moz-background-size: 10%,10%;
    background-size: 10%,10%;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou tr {
    width: 100%;
    color: #fff;
    border-bottom: solid 1px #fff;
}
.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou tr:last-child {
    border-bottom: none;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.number {
    width: 0%;
    font-size: 150%;
    font-weight: 700;
    padding: .3rem;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.toi {
    width: 35%;
    font-size: 90%;
    line-height: 1.4em;
    font-weight: 800;
    padding: 0.3rem;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.kotae {
    width: 80%;
    font-size: 80%;
    line-height: 1.6em;
    padding: 1rem 0 1rem 1rem;
}

.businessArea1 .sectionInner .business_set2 {
    padding: 5rem 0 2rem;;
    margin-top: 2rem;
}

.businessArea1 .sectionInner .business_set2 .image_S {
    display: none;
    text-align: right;
    margin-top: -5rem;
    margin-right: 0%;
}

.businessArea1 .sectionInner .business_set2 .image_S img {
    width: 10%;
}

.businessArea1 .sectionInner .business_set2 .image_L {
    margin-top: 0rem;
    text-align: right;
}

.businessArea1 .sectionInner .business_set2 .honbun {
    margin:2rem;
    text-align: justify;
    font-size: 80%;
    line-height: 1.6em;
    font-weight: 400;
}

@media screen and (min-width: 768px) {

.businessArea1 .sectionInner .business_set .title img,
.businessArea1 .sectionInner .business_set2 .title img {
    position: relative;
    z-index: 600;
    width: 100px;
    margin-top: -4rem;
}

.businessArea1 .sectionInner {
    padding-top: 28rem;
}

.businessArea1 .sectionInner .business_set h2.midashi,
.businessArea1 .sectionInner .business_set2 h2.midashi {
    font-size: 160%;
}

.businessArea1 .sectionInner .business_set .honbun {
    margin:1rem 10% 0rem 40%;
    font-size: 130%;
}
.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou {
    margin: -30px 10% 0 10%;
    padding: 2rem 5rem;
}
 
.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.number {
    width: 10%;
    font-size: 250%;
    padding: 2rem;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.toi {
    width: 30%;
    font-size: 130%;
    padding: 2rem;
}

.businessArea1 .sectionInner .tsuyomi .tsuyomi_hyou td.kotae {
    width: 70%;
    font-size: 100%;
    line-height: 1.8em;
    padding: 2rem;
}
    
.businessArea1 .sectionInner .business_set2 .image_S {
    margin-top: -14rem;
    margin-right: 10%;
    display: block;
}

.businessArea1 .sectionInner .business_set2 .image_S img {
    width: 15%;
}

.businessArea1 .sectionInner .business_set2 {
    padding: 5rem 0;
    margin-top: 8rem;
}  

.businessArea1 .sectionInner .business_set2 .image_L {
    margin-top: 3rem;
}

.businessArea1 .sectionInner .business_set2 .honbun {
    margin:2rem 15% 0rem 30%;
    font-size: 130%;
}
}


/*businessArea2*/
.businessArea2 {
    background-color: #AFAFAF;
}

.businessArea2 .sectionInner {
    background-color: #D9D4CF;
    padding-bottom: 3rem;
}

.businessArea2 .sectionInner .title {
    margin-bottom: 1rem;
}

.businessArea2 .sectionInner .three_r  {
    margin-bottom: 1rem;
}

.businessArea2 .sectionInner .three_r table {
    background-color: #fff;
    margin: auto;
    width: 95%;
}

.businessArea2 .sectionInner .three_r table td.photo {
    width: 28%;
    vertical-align: top;
}

.businessArea2 .sectionInner .three_r table td.text p.lead {
    padding: .5rem 1rem;
    font-size: 100%;
    font-weight: 800;
    color: #50A57D;
    line-height: 1.4em;
}

.businessArea2 .sectionInner .three_r table td.text p.setsumei {
    padding: 0.5rem 1rem;
    font-size: 80%;
    font-weight: 200;
    color: #000;
    line-height: 1.8em;
}

.businessArea2 .sectionInner .nagare {
    padding: 0 2.5%;
    text-align: center;
}

.businessArea2 .sectionInner .nagare video {
    width: 70%;
    margin: 2rem 0 3rem;
}

.businessArea2 .sectionInner .nagare p {
    font-size: 120%;
    font-weight: 700;
    margin-bottom: 1rem;
}

.businessArea2 .sectionInner .nagare .image_hyou {
    background-color: #fff;
    margin: auto;
    padding: .8rem;
}

.businessArea2 .sectionInner .taiou {
    margin: 5rem 0 1rem;
}

.businessArea2 .sectionInner .taiou img {
    height: 70px;
}

.businessArea2 .sectionInner .taiou .right {
    margin-top: -70px;
    text-align: right;
}

.businessArea2 .sectionInner .taiou .top_green {
    background-color: #50A57D;
    font-size: 120%;
    font-weight: 700;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: -70px;
}

.businessArea2 .sectionInner .taiou .top_green p {
    text-align: left;
    display: inline-block;
}

.businessArea2 .sectionInner .taiou .bottom_white {
    background-color: #fff;
    font-size: 80%;
    font-weight: 400;
    line-height: 1.6em;
    text-align: justify;
    padding: 2rem 2rem;
}

@media screen and (min-width: 768px) {
.businessArea2 .sectionInner .title {
    margin-bottom: 4rem;
}

.businessArea2 .sectionInner .three_r  {
    margin-bottom: 3rem;
}

.businessArea2 .sectionInner .three_r table {
    background-color: #fff;
    margin: auto;
    width: 100%;
}

.businessArea2 .sectionInner .nagare video {
    width: 70%;
    margin: 0rem 0 5rem;
}

.businessArea2 .sectionInner .three_r table td.photo {
    width: 18%;
    vertical-align: middle;
}

.businessArea2 .sectionInner .three_r table td.text p.lead {
    padding: 0 2rem;
    margin-bottom: .5rem;
    font-size: 110
}

.businessArea2 .sectionInner .three_r table td.text p.setsumei {
    padding: 0 2rem;
    font-size: 95%;
}

.businessArea2 .sectionInner .nagare {
    margin-top: 3rem;
    padding: 0;
}

.businessArea2 .sectionInner .nagare p {
    font-size: 140%;
    margin-bottom: 1rem;
}

.businessArea2 .sectionInner .nagare .image_hyou {
    padding: 4rem;
}

.businessArea2 .sectionInner .taiou .top_green {
    font-size: 180%;
    margin-top: -130px;
    padding: 2rem 0;
}

.businessArea2 .sectionInner .taiou {
    margin: 5rem 0;
}

.businessArea2 .sectionInner .taiou .bottom_white {
    font-size: 120%;
    padding: 2rem 7rem;
}

.businessArea2 .sectionInner .taiou img {
    height: 130px;
}

.businessArea2 .sectionInner .taiou .right {
    margin-top: -130px;
    text-align: right;
}

}





/*businessArea3*/
.businessArea3 {
    background-color: #AFAFAF;
}

.businessArea3 .sectionInner {
    background-color: #D9D4CF;
    padding-bottom: 3rem;
}

.businessArea3 .sectionInner .hinmoku {
    background: linear-gradient(180deg, #D9D4CF 0rem, #D9D4CF 5rem, #50A57D 5rem, #50A57D 100%);
    padding-bottom: 2rem;
}

.businessArea3 .sectionInner .hinmoku .flexContainer {
    margin-top: 3rem;
}

.businessArea3 .sectionInner .hinmoku .flexContainer .itemCol4 {
    padding: 0 1rem;
}

.businessArea3 .sectionInner .hinmoku .flexContainer .itemCol4 p {
    margin-top: .5rem;
    line-height: 1.2em;
    color: #fff;
    font-size: 90%;
    font-weight: 400;
}

/*businessArea4*/
.businessArea4 {
    background-color: #AFAFAF;
}

.businessArea4 .sectionInner {
    background-color: #D9D4CF;
    padding-top: 2rem;
}

.businessArea4 .sectionInner .group {
    padding: 0 1rem;
    text-align: justify;
    margin-top: 3rem;
    font-size: 80%;
    line-height: 1.6rem
}

.businessArea4 .sectionInner .group p {
    font-weight: 400;
}

.businessArea4 .sectionInner .flexContainer {
    margin-top: 2rem;
}

.businessArea4 .sectionInner .flexContainer .itemCol3 {
    padding: 0 1rem;
}

.businessArea4 .sectionInner .flexContainer .itemCol3 img {
    width: 60%;
}

.businessArea4 .sectionInner .flexContainer .itemCol3 p {
    margin-top: 0.5rem;
    font-size: 90%;
}

.businessArea4 .sectionInner img.kari {
    margin: 2rem 0;
}

@media screen and (min-width: 768px) {
.businessArea4 .sectionInner {
    padding-top: 5rem;
}

.businessArea4 .sectionInner .group {
    text-align: center;
    margin-top: 3rem;
    font-size: 100%;
}

.businessArea4 .sectionInner .flexContainer .itemCol3 img {
    width: 100%;
}

.businessArea4 .sectionInner img.kari {
    margin: 8rem 0;
}

}



/*businessArea5*/
.businessArea5 {
    background-color: #AFAFAF;
}

.businessArea5 .sectionInner {
    background-color: #D9D4CF;
    padding-top: 8rem;
}

.businessArea5 .sectionInner .business_set2 h2.midashi {
    position: relative;
    z-index: 700;
    margin:0rem 1rem 0 2rem;
    text-align: left;
    font-size: 130%;
    font-weight: 700;
}

.businessArea5 .sectionInner .pcnomi {
    display: none;
}

.businessArea5 .sectionInner .business_set2 .title {
    border-bottom: solid 1px #50A57D;
    display: block;
}

.businessArea5 .sectionInner .business_set2 .title img {
    position: relative;
    z-index: 600;
    width: 15%;
    margin-top: -3.5rem;
}

.businessArea5 .sectionInner .itemCol2 {
    text-align: left;
}

.businessArea5 .sectionInner .gazou {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 5rem;
}

.businessArea5 .sectionInner .itemCol2 .business_set2 .choice p {
    padding: .5rem 0 .5rem 1rem;
    font-size: 100%;
    border-bottom: solid 1px #50A57D;
    margin-right: 0%;
}

@media screen and (min-width: 768px) {

.businessArea5 .sectionInner .business_set2 h2.midashi {
    font-size: 160%;
}

.businessArea5 .sectionInner .pcnomi {
    display: block;
}

.businessArea5 .sectionInner .itemCol2 .business_set2 .choice p {
    padding: 1.5rem 0;
    font-size: 110%;
    margin-right: 30%;
}
}


/*======= contact =======*/

/*contactArea1*/
.contactArea1 {
    background: linear-gradient(180deg, #fff 0rem, #fff 20rem, #AFAFAF 20rem, #AFAFAF 100%);
    padding-bottom: 3rem;
}

.contactArea1 .sectionInner {
    background-color: #D9D4CF;
    margin-top: -20rem;
    padding-top: 23rem;
}

.contactArea1 .sectionInner .contact_space {
    background-color: #F4F4F3;
    padding: 2rem 1rem;  
    margin: 0 1rem 3rem;
}

.contactArea1 .sectionInner .contact_space h2 img {
    width: 60%;    
}

.contactArea1 .sectionInner p.sitsumon {
    font-size: 90%;
    margin: 1.5rem 0;
    font-weight: 400;
    text-align: justify;
}

.contactArea1 .sectionInner p img{
    display: inline-block;
    width: 40px;
    margin-right: .5rem;
}
.contactArea1 .sectionInner p.mail {
    font-size: 100%;
    margin-top: 1.5rem;
    font-weight: 600;
    line-height: 1.3em;
    display: inline-block;
    text-align: left;
}

.contactArea1 .sectionInner a {
    text-decoration:none;
}

.contactArea1 .sectionInner p.tel {
    font-size: 180%;
    margin-top: 1rem;
    font-weight: bold;
}

.contactArea1 .sectionInner p.uketsuke {
    font-size: 100%;
    margin: 1.5rem 20% 0;
    padding: 0.2rem;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    font-weight: bold;
}

.contactArea1 .sectionInner .contact_space .partner_comp {
    border-top: solid 1px #afaaa7;
    margin: 0;
    padding: 4rem 0;
}

.contactArea1 .sectionInner .contact_space .partner_comp .title {
    text-align: center;
}

.contactArea1 .sectionInner .contact_space .partner_comp .title p {
    font-size: 130%;
    margin-top: 3rem;
    font-weight: 500;
}

.contactArea1 .sectionInner .contact_space .partner_comp .title img {
    width: 80%;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer {
  margin-top: 3rem;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer .itemCol3 {
  margin-bottom: 2rem;
}

.contactArea1 .sectionInner .contact_space .partner_comp .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* 間隔 */
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer:has(.item:first-child:last-child),
.contactArea1 .sectionInner .contact_space .partner_comp .container:has(.item:first-child:last-child)  {
  justify-content: center; /* 要素1つのとき */
}

.contactArea1 .sectionInner .contact_space .partner_comp .item {
  background: #555656;
  padding: .1rem 1rem;
  border-radius: 20px;
    font-size: 70%;
    font-weight: 600;
    color: #fff;
    line-height: 1.3em;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer .con_syamei {
    margin: .5rem 0;
    font-size: 100%;
    font-weight: 400;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer .itemCol3 img {
    background-color: #fff;
    border: solid 1px #9e9e9f;
    width: 70%;
}

@media screen and (min-width: 768px) {

.contactArea1 .sectionInner {
    background-color: #D9D4CF;
    margin-top: -20rem;
    padding-top: 28rem;
}
 
.contactArea1 .sectionInner p.sitsumon {
    margin: 1.5rem 2rem;
}
   
.contactArea1 .sectionInner .contact_space {
    padding: 2rem 0;  
    margin: 0 1rem 3rem;
}

.contactArea1 .sectionInner .contact_space .partner_comp .title img {
    width: 50%;
}

.contactArea1 .sectionInner .contact_space .partner_comp .title p {
    font-size: 150%;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer .con_syamei {
    font-size: 120%;
}

.contactArea1 .sectionInner .contact_space .partner_comp {
    margin: 4rem 2rem;
}

.contactArea1 .sectionInner p.mail {
    font-size: 120%;
}

.contactArea1 .sectionInner .contact_space h2 img {
    width: 35%;    
}

.contactArea1 .sectionInner p.tel {
    font-size: 280%;
}

.contactArea1 .sectionInner .contact_space .partner_comp .flexContainer .itemCol3 img {
    width: 90%;
}

.contactArea1 .sectionInner p img{
    width: 70px;
}
}
