@charset "UTF-8";

html {
	font-size: 62.5%;
	scrollbar-gutter: stable;
}

body {
    font-family: "HiraMinPro-W3", "Ryumin Regular KL", "typesquare", "Hiragino Mincho ProN", "MS Mincho", serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	color: #3e3a39;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	opacity: 1;
	overflow-x: hidden;
}
body.fadeIn {
    opacity: 1;
    transition: opacity .8s ease;
}


/* 大枠 */
.wrapper {
	position: relative;
	width: 100%;
	min-width: 320px;
}
@media screen and ( max-width:768px ) {
    .wrapper {
    }
}


h1, h2, h3, h4, h5, h6 { 
	font-feature-settings: 'palt' 1;
	letter-spacing: 0.1em;
}

/* Link Reset */
a,
a:hover,
a:focus,
a:active{
	text-decoration: none;
}

.cntr { text-align: center;}
.lft { text-align: left;}
.rgt { text-align: right;}

.pcOnly { display: block;}
.spOnly { display: none;}

.lsFix01 {letter-spacing: -0.03em;}
.lsFix02 {letter-spacing: -0.05em;}

@media screen and ( min-width:768px ) {
  /* TOOLS */
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
@media screen and ( max-width:768px ) {
  /* TOOLS */
    a[href^="tel:"] {
        pointer-events: auto;
		text-decoration: none;
    }
    .pcOnly { display: none;}
    .spOnly { display: block;}
}


/* CLEAR FIX */
.clear { clear:both; }
.clearFix { overflow:hidden; }
.clearFix:after { display:block; clear:both; height:0; visibility:hidden; content:"."; zoom:1; }  

/* FLEX BOX */
.flexBox { display:flex; flex-wrap:wrap; justify-content:space-between; }
.flexBox.center { justify-content:center; }
.flexBox.noWrap { flex-wrap:no-wrap; }
.flexBox.noSpace { justify-content:flex-start; }
.flexBox > * { flex-grow:0; flex-shrink:1; }





/******************************************************
 HEADER
******************************************************/
header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 30px 20px 20px;
    box-sizing: border-box;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 10;
}
header .logoBox {
	width: 380px;
    z-index: 1001;
}

@media screen and (max-width: 768px){
	header {
		padding: 10px 0 10px 10px;
	}
	header .logoBox {
		width: 60%;
		max-width: 240px;
	}
}






/******************************************************
 Hamburger Icon / etc
******************************************************/
body.menuOpen {
    overflow: hidden;
    height: 100vh;
}

/* Hamburger Icon */
.menuBtn {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    position: fixed;
    right: 30px;
    top: 20px;
    cursor: pointer;
    z-index: 1001;
}
.menuBtn span {
    width: 24px;
    height: 1px;
    background: #000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: .3s;
}
.menuBtn span:nth-child(1){top: 16px;}
.menuBtn span:nth-child(2){top: 24px;}
.menuBtn span:nth-child(3){top: 32px;}

@media screen and ( max-width:768px ) {
	.menuBtn {
		width: 42px;
		height: 42px;
		right: 15px;
		top: 15px;
	}
	.menuBtn span:nth-child(1){top: 14px;}
	.menuBtn span:nth-child(2){top: 21px;}
	.menuBtn span:nth-child(3){top: 28px;}
}

/* Icon動き */
.menuBtn span {
    transition:
        top .3s ease,
        transform .3s ease,
        opacity .3s ease;
}
.menuBtn.active span:nth-child(1){
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
}
.menuBtn.active span:nth-child(2){
    opacity: 0;
}
.menuBtn.active span:nth-child(3){
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
}
@media screen and ( max-width:768px ) {
	.menuBtn.active span:nth-child(1){
		top: 21px;
	}
	.menuBtn.active span:nth-child(3){
		top: 21px;
	}
}


/* open */
.globalMenu {
    width: 100%;
    height: 100vh;
    background: #796a63;
    position: fixed;
    left: 0;
    top: -100vh;
    z-index: 999;
    transition: .4s ease;
    overflow-y: auto;
}
.globalMenu.active {
    top:0;
}
@media screen and ( max-width:768px ) {
	.globalMenu {
		width: 100%;
		height: 100dvh;
	}
}





/******************************************************
 grobal menu
******************************************************/
.menuNav {
    width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	margin-bottom: 20px;
	padding: 100px 0 0;
}
@media screen and ( max-width:768px ) {
	.menuNav {
		width: 90%;
		padding: 50px 0 0;
	}
}

/* Main Button */
.menuList {
    font-size: 18px;
	color: #fff;
    text-align: center;
    letter-spacing: 0em;
	margin-bottom: 50px;
}
.menuList a {
    display: block;
    padding: 15px 20px;
    transition:	background-color .3s ease, padding-left .3s ease;
}
.menuList a:hover{
    background:rgba(255,255,255,.05);
    padding-left: 30px;
	color: inherit;
}
.menuList a img {
    vertical-align: middle;
}
.menuList li {
	border-bottom: 1px solid#b3b3b3;
}
.menuList li .linkIcon {
	height: 16px;
	margin: 0 -5px 0 10px;
}
.menuBtnArea {
	margin: 0 auto;
}
@media screen and ( max-width:768px ) {
	.menuList {
		font-size: 4.6vw;
	}
}

/* Sub Button */
.submenu a {
	display: block;
	width: 100%;
	max-width: 480px;
	font-size: 18px;
	color: #333333;
	text-align: center;
	background-color: #fff;
	border: 1px solid #84715c;
	border-radius: 50px;
	margin-bottom: 25px;
	padding: 15px 20px;
	transition: opacity .3s ease;
}
.submenu a:hover{
    opacity: .60;
}
.submenu2 a {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 480px;
	min-height: 80px;
	font-family: "Hiragino Kaku Gothic Std W5", "Shingo M", "typesquare", sans-serif;
	color: #fff;
	text-align: center;
	border-radius: 50px;
	margin-bottom: 25px;
	padding: 10px 20px;
	text-shadow: 0 1px 1px rgba(0,0,0,.35);
	background: #000;
	box-sizing: border-box;
	transition: opacity .3s ease;
}
.submenu2 a:hover{
    opacity: .60;
}

.cvBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.cvBtn > * + * {
    margin-top:2px;
}
.cvBtn span {
    font-size: 15px;
    line-height:1;
    margin-top:2px;
}
.cvBtn strong {
	font-size: 24px;
    font-weight: normal;
    line-height:1.15;
}
@media screen and ( max-width:768px ) {
	.submenu a {
		max-width: 100%;
		font-size: 4.4vw;
		margin-bottom: 18px;
	}
	.submenu2 a {
		max-width: 100%;
		margin-bottom: 18px;
	}
	.cvBtn span {
		font-size: 3vw;
	}
	.cvBtn strong {
		font-size: 5vw;
	}
}


/* Icon */
.extLink{
    position:relative;
}
.extLink::after{
    content:"";
    position:absolute;
    right:22px;
    top:50%;
    width:20px;
    height:20px;
    transform:translateY(-50%);
    background:url("/content/dam/31sumai/mfr/B2417/img/common/link_outarrow.svg") no-repeat center center;
    background-size:contain;
    pointer-events:none;
}



/******************************************************
 conversion
******************************************************/
/* CV Menu */
.cvMenu {
    width: 100%;
    height: 100vh;
    background: #796a63;
    position: fixed;
    bottom: -100vh;
    left: 0;
    z-index: 999;
    transition:.4s ease;
    overflow-y: auto;
}
.cvMenu.active {
    bottom: 0;
}
.cvMenu.active .cvClose {
    display:block;
}
.cvMenuInner {
    width: 100%;
	max-width: 1100px;
	margin: 0 auto;
    padding: 160px 40px 0;
}
.cvMenuBtnArea {
    width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
@media screen and ( max-width:768px ) {
	.cvMenu {
		width: 100%;
		height: 100dvh;
	}
	.cvMenuInner {
		padding: 80px 20px 20px;
	}
	.cvMenuBtnArea {
		max-width: auto;
	}
}

.cvBtnOff {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	max-width: 480px;
	min-height: 80px;
	font-family: "Hiragino Kaku Gothic Std W5", "Shingo M", "typesquare", sans-serif;
	color: rgba(255,255,255,.75);
	text-align: center;
	border-radius: 50px;
	margin-bottom: 25px;
	padding: 10px 20px;
	background: #948882;
	box-sizing: border-box;
}
.cvTxt {
    font-size: 18px;
	color: #fff;
    text-align: center;
    letter-spacing: 0em;
	margin: 20px auto 30px;
}
@media screen and (max-width:768px){
	.cvBtnOff {
		max-width: auto;
		margin-bottom: 18px;
	}
	.cvTxt {
		font-size: 3.6vw;
	}
}


/* Merit */
.meritCtnr {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}
.meritBox {
	display: flex;
	flex-direction: column;
	width: 260px;
	border: 1px solid rgba(255,255,255,.85);
	background: transparent;
	box-sizing: border-box;
}
.meritNo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 10px;
	font-size: 18px;
	font-weight: normal;
	color: #8e7e76;
	background: #fff;
	line-height: 1;
	letter-spacing: .08em;
}
.meritNo span {
	font-size: 20px;
}
.meritNo strong {
	font-size: 150%;
	margin-left: 6px;
	line-height: .85;
}
.meritTxt {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
	padding: 18px;
	font-size: 15px;
	line-height: 1.5;
	color: #fff;
	background: #8e7e76;
	text-align: center;
	box-sizing: border-box;
}
@media screen and (max-width:768px){
	.meritCtnr {
		display: block;
	}
	.meritBox {
		width: 100%;
		margin-bottom: 20px;
	}
	.meritBox:last-child {
		margin-bottom: 0;
	}
	.meritNo span {
		font-size: 5vw;
	}
	.meritNo strong {
		font-size: 7vw;
	}
	.meritTxt {
		font-size: 3.6vw;
		padding: 20px 18px;
	}
}


/* CV Button */
.cv-button {
    position:relative;
	min-width: 400px;
	height: 72px;
	font-size: 20px;
	font-family: "Hiragino Kaku Gothic Std W5", "Shingo M", "typesquare", sans-serif;
	background-color: #8e7e76;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	z-index: 998;
	transition: transform .3s ease;
}
.cv-button:hover {
    transform: translateY(-6px);
}
.cv-button a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 0 60px 0 20px;
	color:#fff;
	text-decoration: none;
    transition: opacity .3s ease;
}
.cv-button a:hover{
    opacity: .75;
}
.cv-button::after{
	content: "▲";
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	color: #fff;
	background: rgba(0,0,0,.12);
	border-left: 1px solid rgba(255,255,255,.15);
}
@media screen and ( max-width:768px ) {
	.cv-button {
		width: 100%;
		font-size: 4.5vw;
		border-radius: 0;
	}
	.cv-button:hover {
		transform: translateY(0);
	}
	.cv-button a {
		padding: 25px 15px;
	}
}

/* CV Button / 表示・非表示 */
.cvFixed {
    position: fixed;
    right: 0;
    bottom: -120px;
    transition: .5s ease;
    z-index: 90;
}
.cvFixed.active {
    bottom: 80px;
}
@media screen and ( max-width:768px ) {
	.cvFixed {
		width: 100%;
	}
	.cvFixed.active {
		bottom: 0;
	}
}

/* CV Menu / close */
.cvClose {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 85px;
    right: 25px;
	display:none;
}
.cvClose span {
    width: 28px;
    height: 2px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
}
.cvClose span:first-child {transform: translate(-50%, -50%) rotate(45deg);}
.cvClose span:last-child {transform: translate(-50%, -50%) rotate(-45deg);}
.cvClose:hover {
    cursor: pointer;
    opacity: .7;
}
@media screen and ( max-width:768px ) {
	.cvClose {
		position: fixed;
		width: 42px;
		height: 42px;
		background: rgba(255,255,255,.3);
		border-radius: 10px;
		box-shadow: 0 2px 8px rgba(0,0,0,.2);
		top: auto;
		right: auto;
	    bottom: 20px;
		left: 50%;
	    transform: translateX(-50%);
	    z-index: 1000;
	}
	.cvClose span {
		background: #fff;
	}
}




/******************************************************
 FOOTER
******************************************************/
/* 問合せ帯 */
.inqContainer {
    width: 100%;
	color: #fff;
	text-align: center;
	line-height: 1.4em;
	background: #796a63;
	padding: 40px 0 46px;
}
.inqContainer .head {
	font-size: 16px;
	font-weight: normal;
}
.inqContainer .phone {
	font-size: 46px;
	font-weight: 500;
	padding: 20px 0;
}
.inqContainer .phone a img {
    vertical-align: middle;
}
.inqContainer .freeIcon {
	height: 32px;
	margin: -5px 10px 0 0;
}
.inqContainer .store-hours {
	font-size: 14px;
}
@media screen and ( max-width:768px ) {
	.inqContainer {
		padding: 30px 0;
	}
	.inqContainer .head {
		font-size: 4vw;
	}
	.inqContainer .phone {
		font-size: 8vw;
	}
	.inqContainer .freeIcon {
		height: 3vh;
	}
	.inqContainer .store-hours {
		font-size: 2.8vw;
	}
}






/******************************************************
 Second Contents MainVisual
******************************************************/
.SecondMainVisual {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}
.SecondMainVisual .scndMv_inner {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
}
.SecondMainVisual .scndMvPhoto {
	width: 100%;
	height: 100%;
	margin: 0;
}
.SecondMainVisual .scndMvPhoto img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}
.SecondMainVisual .scndMvTxtBx {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 1000px;
	text-align: center;
	color: #fff;
	letter-spacing: 0.8em;
	transform: translate(-50%,-50%);
	display: block;
	z-index: 5;
}
.SecondMainVisual .scndMvTxtBx p {
    font-size: 56px;
	font-family: "Prelude Pro Medium", "Century Gothic", "Futura", "typesquare", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: normal;
    line-height: 1.4em;
	margin-bottom: 40px;
}
.SecondMainVisual .scndMvTxtBx h2 {
    font-size: 36px;
    line-height: 1em;
}
@media screen and (max-width:768px){
	.SecondMainVisual {
		height: 100vh;
		min-height: 640px;
	}
	.SecondMainVisual .scndMvTxtBx {
		width: 90%;
	}
	.SecondMainVisual .scndMvTxtBx p {
		font-size: 8vw;
		margin-bottom: 30px;
	}
	.SecondMainVisual .scndMvTxtBx h2 {
		font-size: 5vw;
	}
}




/******************************************************
 catchphrase
******************************************************/
.SecondCatchBar {
	width: 100%;
	background: #7895b2;
	padding: 60px 0 50px;
}
.SecondCatchBar .scndCatch_inner {
	max-width: 1200px;
	font-family: "A1 Gothic M", "HiraKakuStd-W5", "typesquare", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	text-align: center;
	color: #fff;
	margin: 0 auto;
}
.SecondCatchBar .scndCatch_inner h3 {
	font-size: 36px;
	line-height: 1.5em;
	font-weight: normal;
	margin-bottom: 8px;
}
.SecondCatchBar .scndCatch_inner p {
	font-size: 14px;
}
@media screen and ( max-width:768px ) {
	.SecondCatchBar {
		padding: 40px 0 36px;
	}
	.SecondCatchBar .scndCatch_inner {
		max-width: 100%;
	}
	.SecondCatchBar .scndCatch_inner h3 {
		font-size: 5.8vw;
		margin-bottom: 5px;
	}
	.SecondCatchBar .scndCatch_inner p {
		font-size: 3vw;
	}
}





/******************************************************
 text
******************************************************/
.contentsTtl {
    font-size: 26px;
	font-family: "Prelude Pro Medium", "Century Gothic", "Futura", "typesquare", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: normal;
    line-height: 1em;
    text-align: center;
	color: #7895b2;
	letter-spacing: 0.3em;
	margin-bottom: 20px;
}
.contentsTtlSub {
    font-size: 18px;
    line-height: 1.4em;
    text-align: center;
	color: #7895b2;
	letter-spacing: .08em;
	margin-bottom: 50px;
}
@media screen and (max-width: 768px){
	.contentsTtl {
		font-size: 5.4vw;
		margin-bottom: 20px;
	}
	.contentsTtlSub {
		font-size: 4.2vw;
		margin-bottom: 30px;
	}
}


.pageCaption {
	width: 90%;
	max-width: 1600px;
    font-size: 12px;
	color: #333333;
    text-align: justify;
    letter-spacing: 0em;
	margin: 80px auto 120px;
}
.imgAlt {
	position: relative;
}
.imgCaption,
.imgCaption000 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 12px;
	font-family: "リュウミン R-KL", "HiraMinPro-W3", "typesquare", "Hiragino Mincho ProN", "MS Mincho", serif;
    text-align: right;
    letter-spacing: 0em;
    padding: 0 10px 10px 0;
    z-index: 20;
}
.imgCaption {
	color: #fff;
	text-shadow: rgba(0,0,0,0.8) 0px 0px 7px;
}
.imgCaption000 {
	color: #000;
}
.imgCapOutside {
	font-size: 12px;
    line-height: 1.5em;
	padding-top: 8px;
}
@media screen and (max-width: 768px){
	.pageCaption {
		width: 94%;
		font-size: 3vw;
		margin-bottom: 100px;
	}
    .imgCaption,
    .imgCaption000 {
        font-size: 2vw;
        line-height: 1em;
        padding: 0 5px 5px 0;
    }
    .imgCapOutside {
        font-size: 2vw;
    }
}



/******************************************************
 汎用ボタン
******************************************************/
.btnArea {
	text-align: center;
}

/* 共通 */
.btnLink {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 300px;
	height: 50px;
	border-radius: 50px;
	font-size: 16px;
	line-height: 1;
	color: #796a63;
	font-family: "Hiragino Kaku Gothic Std W5", "Shingo M", "typesquare", sans-serif;
	text-decoration: none;
	box-sizing: border-box;
	transition:
		background-color .3s ease,
		color .3s ease,
		transform .25s ease,
		box-shadow .25s ease;
}

/* ブラウン */
.btnLinkBrown {
	color: #7f6f67;
	border: 1px solid #7f6f67;
	background: #fff;
}
.btnLinkBrown::after {
	content: "";
	position: absolute;
	top: -1px;
	right: -1px;
	width: 50px;
	height: 50px;
	background: #7f6f67;
	border-radius: 50%;
}
.btnLinkBrown::before {
	content: "";
	position: absolute;
	right: 21px;
	top: 50%;
	width: 8px;
	height: 8px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateY(-50%) rotate(45deg);
	z-index: 2;
}
.btnLinkBrown:hover {
	background: #7f6f67;
	color: #fff;
	box-shadow: 0 5px 15px rgba(0,0,0,.15);
	transform: translateY(2px);
}
.btnLinkBrown:hover::after {
	background: #6f6058;
}
@media screen and (max-width:768px){
	.btnLink {
		width: 280px;
		height: 48px;
		font-size: 4vw;
	}
	.btnLinkBrown::after {
		width: 48px;
		height: 48px;
	}
}




/******************************************************
 Google Map
******************************************************/
.mapBlock {
	padding: 0;
}
.mapInner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
.mapInner iframe {
	display: block;
	width: 100%;
	height: 800px;
	border: 0;
}
@media screen and (max-width:768px){
	.mapBlock {
		padding: 0 0 60px;
	}
	.mapInner {
		width: 94%;
	}
	.mapInner iframe {
		height: 75vw;
		min-height: 320px;
	}
}



/******************************************************
 spacer
******************************************************/
/* Margin top */
.pc-mt10 { margin-top: 10px; }
.pc-mt15 { margin-top: 15px; }
.pc-mt20 { margin-top: 20px; }
.pc-mt25 { margin-top: 25px; }
.pc-mt30 { margin-top: 30px; }
.pc-mt40 { margin-top: 40px; }
.pc-mt50 { margin-top: 50px; }
.pc-mt60 { margin-top: 60px; }
.pc-mt70 { margin-top: 70px; }
.pc-mt80 { margin-top: 80px; }
.pc-mt90 { margin-top: 90px; }
.pc-mt100 { margin-top: 100px; }
.pc-mt120 { margin-top: 120px; }
@media screen and (max-width: 767px){
    .pc-mt10, .pc-mt15, .pc-mt20, .pc-mt25, .pc-mt30, .pc-mt40, .pc-mt50, .pc-mt60, .pc-mt70, .pc-mt80, .pc-mt90, .pc-mt100, .pc-mt120 {
		margin-top: 0px;
	}
    .sp-mt10 { margin-top: 10px; }
    .sp-mt15 { margin-top: 15px; }
    .sp-mt20 { margin-top: 20px; }
    .sp-mt25 { margin-top: 25px; }
    .sp-mt30 { margin-top: 30px; }
    .sp-mt35 { margin-top: 35px; }
    .sp-mt40 { margin-top: 40px; }
    .sp-mt45 { margin-top: 45px; }
    .sp-mt50 { margin-top: 50px; }
    .sp-mt60 { margin-top: 60px; }
    .sp-mt70 { margin-top: 70px; }
    .sp-mt80 { margin-top: 80px; }
}

/* Margin bottom */
.pc-mb10 { margin-bottom: 10px; }
.pc-mb15 { margin-bottom: 15px; }
.pc-mb20 { margin-bottom: 20px; }
.pc-mb25 { margin-bottom: 25px; }
.pc-mb30 { margin-bottom: 30px; }
.pc-mb40 { margin-bottom: 40px; }
.pc-mb50 { margin-bottom: 50px; }
.pc-mb60 { margin-bottom: 60px; }
.pc-mb70 { margin-bottom: 70px; }
.pc-mb80 { margin-bottom: 80px; }
.pc-mb90 { margin-bottom: 90px; }
.pc-mb100 { margin-bottom: 100px; }
.pc-mb120 { margin-bottom: 120px; }
@media screen and (max-width: 767px){
    .pc-mb10, .pc-mb15, .pc-mb20, .pc-mb25, .pc-mb30, .pc-mb40, .pc-mb50, .pc-mb60, .pc-mb70, .pc-mb80, .pc-mb90, .pc-mb100, .pc-mb120 {
		margin-bottom: 0px;
	}
    .sp-mb10 { margin-bottom: 10px; }
    .sp-mb15 { margin-bottom: 15px; }
    .sp-mb20 { margin-bottom: 20px; }
    .sp-mb25 { margin-bottom: 25px; }
    .sp-mb30 { margin-bottom: 30px; }
    .sp-mb35 { margin-bottom: 35px; }
    .sp-mb40 { margin-bottom: 40px; }
    .sp-mb45 { margin-bottom: 45px; }
    .sp-mb50 { margin-bottom: 50px; }
    .sp-mb60 { margin-bottom: 60px; }
    .sp-mb70 { margin-bottom: 70px; }
    .sp-mb80 { margin-bottom: 80px; }
}
