/*-----------------------------------------------------------------------------------
	ubusuna
	About: A shiny new Blocs website.
	Author: 森田幹彦
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:#FFFFFF;
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */


/* Preloader */

.page-preloader{position: fixed;top: 0;bottom: 0;width: 100%;z-index:100000;background:#FFFFFF url("img/pageload-spinner.gif") no-repeat center center;animation-name: preloader-fade;animation-delay: 2s;animation-duration: 0.5s;animation-fill-mode: both;}
.preloader-complete{animation-delay:0.1s;}
@keyframes preloader-fade {0% {opacity: 1;visibility: visible;}100% {opacity: 0;visibility: hidden;}}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}


/* Sizes */

.bloc-xxl{
	padding:200px 20px;
}
.bloc-lg{
	padding:100px 20px;
}
.bloc-md{
	padding:50px 20px;
}
.bloc-sm{
	padding:20px;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Group Styles */

.bloc-group{
	display:flex;
}
.bloc-tile-2{
	width:50%;
}
.bloc-tile-3{
	width:33.33333333%;
}
.bloc-tile-4{
	width:25%;
}
.bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
	width:100%;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Background Styles */

.bg-center,.bg-l-edge,.bg-r-edge,.bg-t-edge,.bg-b-edge,.bg-tl-edge,.bg-bl-edge,.bg-tr-edge,.bg-br-edge,.bg-repeat{
	-webkit-background-size: auto!important;
	-moz-background-size: auto!important;
	-o-background-size: auto!important;
	background-size: auto!important;
}


/* Video Background Styles */

.video-bg-container, .bloc-video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	right: -50%;
	overflow: hidden;
	transform: translateX(-50%);
	-webkit-transform:translateX(-50%);
}
.bloc-video, .video-bg-container iframe{
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	z-index: 0;
}


/* Background Textures */

.bloc-bg-texture::before{
	content:"";
	background-size: 2px 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	left:0;
	right:0;
}
.texture-fabric::before{
	background: url("img/texture-fabric.png");
}
.texture-pixels::before{
	background: url("img/texture-pixel.gif");
	background-size: 2px 2px;
}
.texture-square::before{
	background: url("img/texture-square.png");
	background-size: 4px 4px;
}
.texture-square-lg::before{
	background: url("img/texture-square-lg.png");
	background-size: 8px 8px;
}
.texture-darken::before{
	background: rgba(0,0,0,0.5);
}
.texture-darken-strong::before{
	background: rgba(0,0,0,0.8);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* = Sticky Nav
-------------------------------------------------------------- */

.sticky-nav.sticky{
	position:fixed;
	top:0;
	z-index:1000;
	box-shadow:0 1px 2px rgba(0,0,0,.3);
	 transition: all .2s ease-out;
}
/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}

/* Nav Special Classes */
.nav-special{
	overflow-y:scroll;
}
.nav-special .site-navigation{
	top:0;
	left:0;
	width:100%;
	position: relative!important;
	max-width: 100%!important;
	z-index: 1000;
}
.nav-special .nav > li{
	width:100%;
	background: none!important;
	border:0!important;
}
.nav-special.collapsing{
	-webkit-transition: none;
	transition: none;
	height:100%!important;
	background: none!important;
}
.nav-special .navbar-nav .dropdown-menu.show{
	position: relative!important;
	transform: none!important;
	float: none;
	width: 100%;
	margin-top: 0;
	background-color: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	border: 0;
}
.nav-special .nav .dropdown-menu .nav-link{
	color:#FFF;
}
.blocsapp-special-menu{
	position: absolute;
	z-index:10000;
}
.nav-special.fullscreen-nav .caret,.nav-special.fullscreen-nav .dropdown-menu .dropdown .caret{
	border-width: 8px;
}
.nav-special .navbar-nav .show>.nav-link{
	color:#FFF;
}

/* Animate Menu Symbol */
.navbar-toggle{
	transition: all .1s linear;
}
.selected-nav{
	opacity: 0;
	transform: scale(0.3);
	transition: all .1s linear;
}


/* Special Menu Close Button */
.close-special-menu{
	position: absolute;
	display: block;
	width: 25px;
	height:25px;
	top:16px;
	right:10px;
	z-index: 10000;
}
.nav-invert .sidebar-nav .close-special-menu{
	left:260px;
}
.close-special-menu .close-icon{
	display: block;
	width:100%;
	height:1px;
	transform: rotate(45deg);
	margin-top:12px;
}
.close-special-menu .close-icon:after{
	content:"";
	display:inherit;
	width:inherit;
	height:inherit;
	background: inherit;
	transform: rotate(90deg);
}
.lock-scroll{
	overflow:hidden;
	transition: background .3s linear;
}
.nav-special::-webkit-scrollbar{
	-webkit-appearance: none;
	width:0;
	height:0;
}
.nav-special .dropdown-menu .dropdown .caret{
	border-top-color: rgba(255,255,255,.8);
	border-right-color: transparent;
	border-bottom-color: transparent;
	border-left-color: transparent;
	margin: 0 0 0 5px;
	float: none;
}
.blocsapp-special-menu .site-navigation.pull-right{
	float:none!important;
}

/* Nav Special Close Button */
.close-special-menu .close-icon{
	background:#fff;
}
.blocsapp-special-menu blocsnav{
	background: #000;
}

/* Side Bar Navigation */
.nav-special.sidebar-nav{
	position: fixed;
	right: -300px;
	top: 0;
	bottom: 0;
	width: 300px;
	z-index: 1000;
	transition: all .2s linear;
}
.nav-invert .nav-special.sidebar-nav{
	right: auto;
	left: -300px;
}
 .nav-special.sidebar-nav .site-navigation{
	margin-top:15px;
	padding-left:15px;
}
.nav-special.sidebar-nav .nav > li a{
	color:rgba(255,255,255,.8);
}
 .nav-special.sidebar-nav .nav > li a:hover{
	color:#FFF;
}
 .open.nav-special.sidebar-nav{
	right: 0;
	transition: all .2s linear;
}
.nav-invert .open.nav-special.sidebar-nav{
	left: 0;
	transition: all .2s linear;
}
.navbar-toggler:focus{
	box-shadow:none;
}
;
	
/* Content Tint */
.content-tint{
	z-index: -1;
	transition: background .2s linear;
}
.content-tint.on{
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background: transparent;
	z-index: 1001;
	background:rgba(0,0,0,.4);
}
.content-tint.on:hover{
	background:rgba(0,0,0,.1);
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}
.btn-wire{
	background:transparent!important;
	border:2px solid transparent;
}
.btn-wire:hover{
	background:transparent!important;
	border:2px solid transparent;
}
.icon-spacer{
	margin-right:5px;
}

/* = Icons
-------------------------------------------------------------- */
.icon-md{
	font-size:30px!important;
}
.icon-xl{
	font-size:100px!important;
}


/* = Text & Icon Styles
-------------------------------------------------------------- */
.sm-shadow{
	text-shadow:0 1px 2px rgba(0,0,0,.3);
}
.text-justify{
	text-align: justify;
}


/* = Cards
-------------------------------------------------------------- */
.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}



.carousel-nav-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

.carousel-caption-center{
	top: 50%;
	bottom: initial;
	transform: translateY(-50%);
}

.carousel-indicators li::marker{
	font-size:0;
}


/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
/* = Lightbox
-------------------------------------------------------------- */

a[data-lightbox]{
	position: relative;
	display: block;
	text-align: center;
}
a[data-lightbox]:hover::before{
	content:"+";
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial;
	font-size:32px;
	line-height: 42px;
	width:50px;
	height:50px;
	margin-left:-25px;
	border-radius: 50%;
	background:rgba(0,0,0,.5);
	color:#FFF;
	font-weight:100;
	z-index: 1;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
}
a[data-lightbox]:hover img{
	opacity: 0.6;
	-webkit-animation-fill-mode: none;
	animation-fill-mode:none;
}
.lightbox-caption{
	padding: 20px;
	color: #FFF;
	background: rgba(0,0,0,.5);
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 0px;
}
.close-lightbox:hover,.next-lightbox:hover, .prev-lightbox:hover{
	background:rgba(0,0,0,.5);
}
.next-lightbox, .prev-lightbox,.close-lightbox{
	position: absolute;
	padding:6px;
	background:rgba(0,0,0,.3);
	line-height:0;
	transition: background .2s ease-in-out;
	border-radius:.25rem;
	border:none;
	z-index:20;
}
.next-lightbox, .prev-lightbox{
	top:45%;
}
.close-lightbox{
	top:20px;
	right:20px;
}
.next-lightbox{
	right:25px;
}
.prev-lightbox{
	left:25px;
}
.lightbox-prev-icon,.lightbox-next-icon,.lightbox-close-icon{
	fill:none;
	stroke: #fff;
	stroke-width: 3px;
	fill-rule: evenodd;
	stroke-linecap:round;
}
.lightbox-close-svg{
	pointer-events:none;
}

/* Hide Object */
.object-hidden{
	display:none;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"Helvetica";
}
.container{
	max-width:1140px;
}
.h1-style{
	font-family:"Lato";
	font-weight:900;
	font-size:110px;
	letter-spacing:px;
}
.img-style{
	width:1140px;
}
.navbar-brand img{
	width:350px;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-3702)!important;
	fill:var(--swatch-var-3702)!important;
}
.p-style{
	font-size:14px;
	letter-spacing:1px;
}
.h1-bloc-1-style{
	font-family:"Lato";
	font-weight:900;
	font-size:149px;
	line-height:140px;
}
.h2-style{
	font-family:"Lato";
	font-weight:900;
	font-size:14px;
	width:100%;
	line-height:27px;
	letter-spacing:2px;
}
.h3-style{
	font-size:20px;
}
.img-amur-style{
	width:55px;
}
.img-3-amur-style{
	width:55px;
}
.img-25674-style{
	width:55px;
}
.h3-reed-style{
	font-size:30px;
}
.navbar-logo{
	text-transform:none;
	text-decoration:none;
	font-size:20px;
}
.link-style{
	width:40.96%;
	padding-top:61px;
	padding-bottom:61px;
	font-weight:bold;
}
.h2-furusho-honten-style{
	font-family:"Lato";
	font-weight:300;
	letter-spacing:5px;
	font-size:28px;
}
.p-bloc-3-style{
	font-size:14px;
}
.img-amuket-black--style{
	width:59px;
}
.h4-style{
	font-size:20px;
}
.img-ubusuna-tl--style{
	width:407px;
}
.p-bloc-10-style{
	font-size:15px;
	line-height:40px;
	font-family:"PT Serif";
}
.p-bloc-33-style{
	font-size:13px;
	width:78.65%;
}
.img-oldlogo--style{
	width:53px;
}
.p-18-style{
	font-size:9px;
}
.p-bloc-1-style{
	letter-spacing:2px;
	font-size:14px;
}
.p-bloc-1-39892-style{
	font-size:11px;
	letter-spacing:1px;
	width:100%;
	line-height:24px;
}
.p-41-style{
	font-size:14px;
	letter-spacing:2px;
}
.p-54-style{
	font-size:12px;
	line-height:24px;
	width:100%;
}
.h3-bloc-51-style{
	font-size:18px;
}
.h3-46-style{
	font-size:18px;
}
.h3--ubusuna-ff-style{
	font-size:18px;
}
.img-43-style{
	width:75px;
}
.blocs-card-width{
	width:25%;
}
.img-gjokkomon5--style{
	width:410px;
}
.img-44-style{
	width:467px;
}
.img-iza-t-2316-whi-style{
	width:483px;
}
.p-bloc-52-style{
	font-size:14px;
	line-height:28px;
	width:100%;
}
.img-bloc-50-style{
	width:483px;
}
.img-cokkomon-tl2--style{
	width:73px;
}
.p-61-style{
	font-size:13px;
	line-height:27px;
}
.p-bloc-54-style{
	font-size:13px;
	line-height:27px;
	width:90.69%;
}
.p-62-style{
	font-size:13px;
	line-height:27px;
}
.h3-bloc-53-style{
	font-size:13px;
}
.h3-susa-2024-style{
	font-size:16px;
}
.card-body-style{
	width:100%;
}
.h3-bloc-50-style{
	width:100%;
	font-size:20px;
	font-family:"PT Serif";
}
.h4-project-style{
	letter-spacing:3px;
	font-size:18px;
	font-family:"Lato";
	font-weight:700;
}
.p-bloc-53-style{
	font-size:12px;
}
.p-48108-style{
	font-size:13px;
	line-height:27px;
}
.p-63-style{
	font-size:13px;
}
.p-56-style{
	font-size:12px;
}
.p-64-style{
	font-size:13px;
	line-height:27px;
	width:90.58%;
}
.h4-art-work-style{
	font-size:18px;
	letter-spacing:3px;
	font-family:"Lato";
	font-weight:700;
}
.h4-ancient-tomb-style{
	font-size:18px;
	letter-spacing:3px;
}
.p-57-style{
	font-size:13px;
	line-height:27px;
}
.img-53-style{
	width:267px;
}
.p-69-style{
	font-size:13px;
	line-height:27px;
}
.h5- ubusuna-ff-style{
	font-size:16px;
}
.h5-bloc-66-style{
	font-size:16px;
}
.h5-7-style{
	font-size:16px;
}
.p-22093-style{
	font-size:13px;
	line-height:27px;
}
.p-39672-style{
	font-size:13px;
	line-height:27px;
}
.bloc-divider-b-fill{
	fill:transparent;
}
.bloc-divider-t-fill{
	fill:transparent;
}
.bloc-divider-t-bloc-50-fill{
	fill:#000000;
}
.container-div-style{
	width:89.59%;
}
.p-bloc-50-style{
	font-size:11px;
	width:100%;
	letter-spacing:2px;
}
.img-monyou-01-edit-style{
	width:106px;
}
.img-44-amur-style{
	width:93px;
}
.p-55-bloc-50-style{
	font-family:Helvetica;
	font-size:14px;
	line-height:30px;
	width:100%;
}
.img-logotype--style{
	width:828px;
}
.h4-bloc-50-style{
	font-family:"Lato";
	font-weight:300;
	font-size:21px;
}
.h4-furusho-honten-style{
	font-family:"PT Serif";
	font-weight:700;
	letter-spacing:7px;
	font-size:21px;
}
.img-bloc-72-style{
	width:239px;
}
.p-bloc-72-style{
	font-size:14px;
	line-height:22px;
}
.h3-服は幸福な手仕事の共創-style{
	font-family:"PT Serif";
	letter-spacing:4px;
	font-size:22px;
	line-height:36px;
}
.img-furulo-style{
	width:164px;
}
.img-58-style{
	width:455px;
}
.h2-日本の服-style{
	font-family:"PT Serif";
	font-size:28px;
}
.p-78-style{
	font-size:14px;
	line-height:26px;
	width:100%;
}
.p-79-style{
	font-size:14px;
	line-height:26px;
	width:91.58%;
}
.img-brand-amul-style{
	width:399px;
}
.img-brand-symb-style{
	width:538px;
}
.p-bloc-79-style{
	font-size:15px;
}
.h2-nagare-style{
	letter-spacing:4px;
	font-size:17px;
	line-height:28px;
}
.h2-haori-style{
	letter-spacing:4px;
	font-size:17px;
	line-height:28px;
}
.p-82-style{
	font-size:12px;
	line-height:24px;
}
.h2-imagination-style{
	font-size:32px;
	font-family:"PT Serif";
	letter-spacing:4px;
}
.img-48-style{
	width:52px;
}
.h5-chokkomon -style{
	letter-spacing:3px;
	font-size:14px;
}
.h3-root-style{
	font-size:32px;
	letter-spacing:3px;
	font-family:"PT Serif";
	font-weight:700;
}
.h3-45-style{
	font-size:28px;
	letter-spacing:4px;
	font-family:"PT Serif";
}
.p-bloc-105-style{
	font-size:12px;
	line-height:22px;
}
.p-96-style{
	font-size:12px;
	line-height:25px;
}
.h2-bloc-106-style{
	font-family:"PT Serif";
	font-size:22px;
}
.p-bloc-106-style{
	font-size:12px;
	line-height:26px;
	width:100%;
}
.p-bloc-104-style{
	font-size:13px;
	line-height:22px;
}
.p-105-style{
	font-size:16px;
}
.img-bloc-105-style{
	width:262px;
}
.p-108-style{
	font-size:13px;
}
.p-109-style{
	font-size:13px;
	line-height:27px;
}
.img-hagure-lo-style{
	width:168px;
}
.img-nagomiya-lo-style{
	width:173px;
}
.h5-木部-大資-style{
	font-size:20px;
}
.h6-style{
	font-size:20px;
}
.h6-gallery-style{
	font-size:15px;
	letter-spacing:3px;
}
.p-bloc-81-style{
	font-size:14px;
	line-height:26px;
}
.p-84-style{
	font-size:12px;
	line-height:22px;
}
.p-84-bloc-81-style{
	font-size:12px;
	line-height:27px;
}
.h6-bloc-81-style{
	font-size:15px;
	font-family:"Lato";
	font-weight:700;
	line-height:22px;
}
.h3-gaito-style{
	width:100%;
	line-height:24px;
}
.img-iza--style{
	width:362px;
}
.img-susa--style{
	width:349px;
}
.h1-collections-style{
	font-size:80px;
}
.img-65-style{
	height:500px;
	width:100px;
}
.img-iza-susa-tl4--style{
	width:569px;
}
.img-32-style{
	width:100px;
}
.img-62-style{
	width:448px;
}
.img-63-style{
	width:268px;
	border-radius:0px 0px 0px 0px;
}
.h3-kasuri-piping-style{
	font-size:16px;
}
.h3---style{
	font-family:"Lato";
	font-weight:700;
	font-size:16px;
}
.p---style{
	font-size:13px;
}
.h3-higo-cotton-style{
	font-family:"Lato";
	font-weight:700;
	font-size:16px;
}
.p-bloc-123-style{
	font-size:13px;
}
.p-bloc-120-style{
	font-size:13px;
	line-height:27px;
}
.p-bloc-122-style{
	font-size:13px;
	line-height:27px;
}
.img-bloc-103-style{
	width:1123px;
}
.p-bloc-98-style{
	font-size:12px;
	line-height:27px;
}
.h3-bloc-98-style{
	font-size:16px;
	font-family:"Lato";
	font-weight:700;
}
.h5-産土の服プロジェクトについて-style{
	font-family:Helvetica;
	font-size:16px;
	line-height:30px;
}
.p-121-style{
	font-size:14px;
	line-height:30px;
}
.p-122-style{
	font-size:14px;
	line-height:30px;
}
.p-bloc-107-style{
	font-size:14px;
}
.h4-株式会社-古荘本店-style{
	font-size:20px;
}
.img-129-style{
	width:516px;
}
.p-70-style{
	font-size:14px;
	line-height:30px;
}
.img-pittiuomo-lo-style{
	width:204px;
}
.h1-design-style{
	font-family:"Lato";
	font-weight:900;
	font-size:140px;
	letter-spacing:5px;
}
.img-bloc-1-39892-style{
	width:100px;
}
.h5-bloc-1-39892-style{
	line-height:35px;
	font-size:13px;
	width:100%;
}
.p-7-style{
	font-size:11px;
	line-height:24px;
	width:100%;
	letter-spacing:1px;
}
.h3-bloc-1-style{
	font-size:13px;
	line-height:25px;
	width:100%;
	letter-spacing:px;
}
.h1-event-style{
	font-size:130px;
	font-family:"Lato";
	font-weight:900;
}
.img-tgc-tl2--style{
	width:170px;
}
.h3-4-style{
	font-size:13px;
	line-height:24px;
	letter-spacing:px;
}
.p-14-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.h1-6-style{
	font-family:"Lato";
	font-weight:900;
	font-size:140px;
}
.img-47-teshigoto-tl--style{
	width:100px;
}
.h3-5-style{
	font-size:13px;
	line-height:24px;
	letter-spacing:px;
}
.img-52-naitiveart-tl--style{
	width:100px;
}
.h3-6-style{
	font-size:13px;
	line-height:24px;
}
.img-57-style{
	width:100px;
}
.h3-9-style{
	font-size:13px;
	line-height:24px;
}
.p-24-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.h1-museum-style{
	font-size:140px;
	font-family:"Lato";
	font-weight:900;
}
.img-61-collection-tl--style{
	width:100px;
}
.h1-fashion-style{
	font-family:"Lato";
	font-weight:900;
	font-size:140px;
}
.img-68-style{
	width:100px;
}
.h1-koryu-style{
	font-family:"Lato";
	font-weight:900;
	font-size:120px;
}
.h3-10-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.img-73-style{
	width:100px;
}
.h3-11-style{
	font-size:13px;
	line-height:25px;
}
.p-32-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.h1-company-style{
	font-family:"Lato";
	font-weight:900;
	font-size:140px;
}
.p-21-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.h3-27396-style{
	font-size:13px;
	line-height:24px;
}
.link-event-style{
	text-decoration:none;
}
.link-design-style{
	text-decoration:none;
}
.link-0-style{
	text-decoration:none;
}
.link-story-style{
	text-decoration:none;
}
.link-fashion-style{
	text-decoration:none;
}
.link-japonix-style{
	text-decoration:none;
}
.link-company-style{
	text-decoration:none;
}
.link-40085-style{
	text-decoration:none;
}
.img-31-ubusuna-tl--style{
	width:50px;
}
.img-30-style{
	width:56px;
}
.img-turanari2--style{
	width:197px;
}
.img-shop-tl-3x-1-style{
	width:100px;
}
.h1-the-shop-style{
	font-family:"Lato";
	font-weight:900;
	font-size:140px;
}
.p-36-style{
	font-size:14px;
	line-height:25px;
	letter-spacing:1px;
}
.p-43886-style{
	font-size:13px;
	line-height:22px;
}
.img-tgc-lo-style{
	width:230px;
}
.link-0-event-style{
	text-decoration:none;
}
.link-shop-style{
	text-decoration:none;
}
.h1-the-storylines-style{
	font-family:"Lato";
	font-weight:900;
	font-size:45px;
}
.text-span-style{
	font-weight:bold;
}
.p-bloc-7-style{
	font-size:12px;
	line-height:20px;
}
.h6-bloc-7-style{
	width:97.92%;
	line-height:22px;
}
.p-bloc-2-style{
	font-size:13px;
}
.p-24-bloc-8-style{
	font-size:14px;
	line-height:27px;
}
.h5-bloc-151-style{
	font-size:17px;
}
.h5-brand-symbol-style{
	font-size:17px;
}
.h4-bloc-106-style{
	font-size:18px;
}
.h5-berand-magazin-style{
	font-size:18px;
}
.h5-booklet-style{
	font-size:18px;
}
.h5-contact-style{
	font-size:18px;
}
.p-135-style{
	font-size:15px;
	line-height:30px;
}
.h5-11-style{
	font-size:20px;
	font-family:"PT Serif";
	letter-spacing:3px;
}
.img-140-style{
	width:499px;
}
.h5-information-style{
	letter-spacing:3px;
}
.h4-14-style{
	font-size:16px;
}
.p-94-style{
	font-size:12px;
	line-height:27px;
}
.p-117-style{
	font-size:14px;
	line-height:30px;
}
.h4-人吉市-住岡郷土玩具製作所-style{
	font-size:18px;
}
.p-158-style{
	font-size:14px;
	line-height:32px;
}
.p-159-style{
	font-size:14px;
	line-height:30px;
}
.h5-人吉市-住岡郷土玩具製作所-style{
	line-height:38px;
}
.p-158-bloc-50-style{
	font-size:12px;
	line-height:28px;
}
.h3-bloc-177-style{
	font-size:22px;
	line-height:30px;
	font-family:"PT Serif";
	letter-spacing:2px;
}
.h6-bloc-177-style{
	line-height:28px;
}
.p-bloc-177-style{
	font-size:12px;
	line-height:28px;
}
.h5-古民家ギャラリー百花堂-style{
	font-size:18px;
}
.h5-住岡郷土玩具製作所-style{
	font-size:18px;
}
.p-185-style{
	font-size:12px;
	line-height:28px;
}
.link-人吉市-住岡郷土玩具製作所-style{
	font-weight:bold;
}
.link-山鹿市-煤竹のボタン-style{
	font-weight:bold;
}
.link-bloc-107-style{
	font-weight:bold;
}
.link-水俣市-浮浪雲工房-style{
	font-weight:bold;
}
.h3-we-designed-style{
	font-size:32px;
	font-family:"PT Serif";
	letter-spacing:2px;
}
.h6-story-style{
	font-family:"Lato";
	font-weight:700;
	font-size:11px;
	letter-spacing:2px;
}
.h6-2024-06-10-style{
	font-size:13px;
}
.p-23566-style{
	font-size:14px;
	line-height:30px;
}
.h6-49-style{
	font-size:22px;
	font-family:"PT Serif";
	letter-spacing:2px;
}
.img-bloc-177-style{
	width:555px;
}
.img-nagomiya-d-style{
	width:558px;
}
.img-168-style{
	width:558px;
}
.img-sumioka-kijiu-style{
	width:557px;
}
.h6-46-style{
	font-size:22px;
	font-family:"PT Serif";
}
.h3-始まりは1900年、パリ万博-style{
	font-size:22px;
	font-family:"PT Serif";
}
.h5-11-bloc-50-style{
	font-size:18px;
	line-height:29px;
}
.h4-私たちの共創の仲間-style{
	font-size:18px;
	line-height:27px;
}
.h2-14-style{
	font-size:38px;
	font-family:"PT Serif";
	letter-spacing:5px;
}
.h5-style{
	font-size:11px;
	font-family:"Lato";
	font-weight:700;
	letter-spacing:5px;
}
.h6-information-style{
	font-size:11px;
	letter-spacing:4px;
}
.link-39082-style{
	text-decoration:none;
}
.h1-10-style{
	font-family:"Lato";
	font-weight:900;
}
.h1-12-style{
	font-family:"Lato";
	font-weight:900;
	font-size:100px;
	line-height:120px;
}
.p-bloc-74-style{
	font-size:11px;
	letter-spacing:3px;
	font-family:"Lato";
	font-weight:700;
}
.p-85-style{
	font-size:11px;
	letter-spacing:2px;
}
.h2-event-style{
	font-family:"PT Serif";
	font-weight:700;
	letter-spacing:4px;
	font-size:34px;
}
.h2-teshigoto-style{
	letter-spacing:4px;
	font-family:"PT Serif";
	font-size:38px;
}
.h2-root-style{
	letter-spacing:4px;
	font-size:38px;
	font-family:"PT Serif";
}
.h2-brand-style{
	letter-spacing:4px;
	font-family:"PT Serif";
	font-size:38px;
}
.h4-24-style{
	font-family:"PT Serif";
	letter-spacing:4px;
	font-size:28px;
}
.h4-8-style{
	font-size:22px;
	font-family:"PT Serif";
	letter-spacing:4px;
}
.h2-concept-style{
	letter-spacing:4px;
	font-size:38px;
	font-family:"PT Serif";
}
.img-46-amur-style{
	width:55px;
}
.img-bloc-7-style{
	height:474px;
}
.h6-18-style{
	line-height:22px;
}
.h6-19-style{
	line-height:22px;
}
.h4-ubusuna-の手仕事-style{
	font-family:"PT Serif";
	letter-spacing:4px;
}
.p-bloc-137-style{
	font-size:14px;
}
.p-123-style{
	font-size:14px;
}
.p-125-style{
	font-size:14px;
}
.h6-bloc-137-style{
	font-size:14px;
}
.img-b00111-style{
	width:1140px;
}
.img-img-33-style{
	width:1140px;
}
.img-b00109-style{
	width:1140px;
}
.img--eg19535-style{
	width:1103px;
}
.img--eg19490-style{
	width:1103px;
}
.p-bloc-156-style{
	font-size:11px;
}
.p-146-style{
	font-size:11px;
}
.p-bloc-152-style{
	font-size:11px;
}
.img-136-style{
	width:146px;
}
.h2-pittit-style{
	font-family:"Lato";
	font-weight:900;
	line-height:38px;
}
.img-eventlogo--style{
	width:228px;
}
.img-bloc-147-style{
	width:37px;
}
.p-bloc-217-style{
	font-size:12px;
	line-height:24px;
	width:90.24%;
}
.p-bloc-150-style{
	font-size:13px;
	width:92.31%;
	line-height:26px;
}
.h5-bloc-150-style{
	width:92.31%;
	font-family:"PT Serif";
	font-size:22px;
	line-height:34px;
}
.h4-bloc-228-style{
	letter-spacing:2px;
	font-size:18px;
}
.h5--the-shop-style{
	width:95.12%;
}
.p-bloc-229-style{
	font-size:13px;
	width:100%;
	line-height:24px;
}
.p-189-style{
	font-size:18px;
}
.h1-hashira-style{
	letter-spacing:2px;
	width:100%;
	font-size:32px;
	line-height:20px;
}
.h1-awai-style{
	letter-spacing:2px;
}
.h1-hitsuji-style{
	letter-spacing:2px;
}
.h4-bloc-224-style{
	letter-spacing:0px;
}
.h6-57-style{
	letter-spacing:2px;
}
.h6-58-style{
	letter-spacing:3px;
}
.h6-60-style{
	letter-spacing:3px;
}
.p-196-style{
	font-size:16px;
	line-height:24px;
	font-family:"PT Serif";
}
.h1-collection-style{
	letter-spacing:5px;
}
.h2-46-style{
	font-family:"PT Serif";
	letter-spacing:10px;
}
.h1-susa-style{
	letter-spacing:10px;
	font-family:"PT Serif";
}
.p-17826-style{
	font-size:14px;
	line-height:26px;
}
.h4-bloc-240-style{
	letter-spacing:2px;
	font-size:21px;
}
.img-203-style{
	width:140px;
}
.h2-collection-style{
	letter-spacing:7px;
	font-family:"Lato";
	font-weight:700;
}
.h3-pick-up-style{
	letter-spacing:3px;
	font-family:"Lato";
	font-weight:700;
}
.h2-jurnal-style{
	letter-spacing:5px;
	font-family:"Lato";
	font-weight:700;
}
.h2-the-shop-style{
	font-family:"Lato";
	font-weight:700;
	letter-spacing:6px;
	width:100%;
}
.h1- branded-by-style{
	letter-spacing:7px;
	font-family:"Lato";
	font-weight:700;
	font-size:16px;
}
.img-244-style{
	width:253px;
}
.p-bloc-42-style{
	font-size:13px;
}
.p-bloc-66-style{
	font-size:13px;
}
.img-bloc-70-style{
	width:370px;
}
.h3-bloc-2-style{
	font-family:"PT Serif";
	font-size:23px;
}
.img-bloc-220-style{
	width:275px;
}
.img-142-style{
	width:164px;
}
.img-logo--style{
	width:343px;
}
.h6-bloc-17-style{
	letter-spacing:1px;
	font-size:18px;
}
.h5-ususumi-style{
	letter-spacing:2px;
	font-size:18px;
}
.h5-bloc-17-style{
	letter-spacing:px;
	font-size:18px;
}
.h5-6-style{
	letter-spacing:2px;
	font-size:18px;
}
.p-bloc-19-style{
	font-size:13px;
	line-height:20px;
}
.h4-sanagi-style{
	letter-spacing:2px;
}
.h2--usuki-style{
	letter-spacing:2px;
}
.p-bloc-18-style{
	font-size:11px;
	line-height:20px;
}
.h3-nigimitama-style{
	letter-spacing:2px;
}
.img-16-style{
	width:69px;
}
.img-15-style{
	width:169px;
}
.h3- web-store-style{
	letter-spacing:2px;
}
.h6-bloc-15-style{
	font-size:18px;
}
.h6-majiwari-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-majiwari｜black-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-10-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-over-vest-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-daichi｜erimoto-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-13-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-kikuchi-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-bloc-16-style{
	letter-spacing:px;
	font-size:17px;
	width:100%;
}
.h6-erimoto- dark-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6--thin-coate-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-mawai-white-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-22-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-23-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-pants-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-sanagi｜idera-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-29-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-dark-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-31-style{
	letter-spacing:2px;
}
.h6-35-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-shirt-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-ckm-stripr-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-ckm-monogram-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-bloc-18-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-over-coat-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-chidori｜idera-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-43-style{
	letter-spacing:1px;
	font-size:18px;
}
.h6-44-style{
	letter-spacing:2px;
	font-size:18px;
}
.h6-jacket-style{
	letter-spacing:2px;
	font-size:18px;
}
.h5-black-style{
	font-size:18px;
	letter-spacing:2px;
}
.h5-bloc-15-style{
	font-size:18px;
}
.h5-8-style{
	font-size:18px;
	letter-spacing:2px;
}
.h5-bloc-16-style{
	font-size:18px;
}
.h5-17-style{
	font-size:18px;
}
.h5-19-style{
	font-size:18px;
}
.h5-21-style{
	font-size:17px;
	width:100%;
}
.h5-sanagii｜idera-style{
	font-size:18px;
}
.h5-33-style{
	font-size:18px;
}
.h5-idera-cut-saw-style{
	font-size:18px;
}
.h5-bloc-18-style{
	font-size:18px;
}
.h5-47-style{
	font-size:18px;
	letter-spacing:px;
}
.p-11-bloc-18-style{
	font-size:11px;
	line-height:20px;
}
.h6-39-style{
	font-family:Helvetica;
	font-weight:700;
	font-size:15px;
	line-height:24px;
}
.h4-博多大丸【九州深発見】-style{
	font-family:Helvetica;
}
.h1-bloc-172-style{
	font-family:"Lato";
	font-weight:900;
}
.h1-5-style{
	letter-spacing:4px;
	font-size:60px;
	font-family:"Roboto";
	font-weight:700;
}
.img-144-style{
	width:169px;
}
.h6-2024-09-10-style{
	font-size:13px;
}
.h6-終了しました-style{
	font-size:12px;
}
.img-221-style{
	width:426px;
}
.h2-2-style{
	letter-spacing:3px;
}
.img-33-style{
	width:395px;
}
.img-253-style{
	width:65px;
}
.h5-erimoto-style{
	font-size:18px;
	letter-spacing:1px;
}
.h5-52-style{
	font-size:18px;
}
.p-bloc-141-style{
	font-size:14px;
}
.img-daima-style{
	width:111px;
}
.img-29-style{
	width:107px;
}
.img-bloc-5-style{
	width:94px;
}
.img-bloc-3-style{
	width:88px;
}
.btn-shop｜iza-style{
	font-weight:bold;
	width:80%;
	min-width:140px;
}
.btn-shop｜susa-style{
	font-weight:bold;
	width:80%;
}
.btn-shop-style{
	width:12.19%;
	font-weight:bold;
}
.p-bloc-44-style{
	font-size:10px;
}
.btn-32-style{
	font-weight:bold;
}
.btn-30-style{
	font-weight:bold;
}
.btn-18-style{
	font-weight:bold;
}
.img-bloc-17-style{
	height:516px;
	width:342px;
}
.carousel-style{
	width:100%;
}
.btn-42-style{
	font-weight:bold;
}
.h5-bloc-39-style{
	font-family:Helvetica;
}
.p-bloc-39-style{
	font-size:13px;
}
.p-31-style{
	font-size:14px;
}
.h3-27457-style{
	font-size:18px;
}
.p-30-style{
	font-size:12px;
	font-family:"Lato";
}
.p-924-style{
	font-size:14px;
}
.h1-ubusunastories-style{
	font-size:32px;
	font-family:"Lato";
	font-weight:900;
}
.h1-ubusunaを着る理由-style{
	font-family:"PT Serif";
}
.h3-郷土愛」地元熊本への思い-style{
	font-family:"PT Serif";
	font-size:20px;
}
.story-tab{
	background-color:#E60012;
	top:5px;
	right:55px;
	left:5px;
	color:#FEFFFF!important;
}
.label-style{
	font-family:"PT Serif";
	font-weight:700;
}
.h5-vol-1-style{
	font-family:"PT Serif";
	font-size:35px;
}
.p-bloc-271-style{
	font-family:"PT Serif";
	line-height:28px;
}
.h2-トータルコンサル株式会社-style{
	font-size:20px;
}
.h3-中島-幸二-style{
	font-size:18px;
}
.h1-地元-熊本への思い-style{
	font-family:"PT Serif";
	font-size:28px;
}
.p-bloc-274-style{
	font-family:"PT Serif";
}
.p-198-style{
	font-family:"PT Serif";
}
.p-199-style{
	font-family:"PT Serif";
}
.p-200-style{
	font-family:"PT Serif";
}
.p-201-style{
	font-family:"PT Serif";
}
.h2-52-style{
	font-family:"PT Serif";
}
.p-203-style{
	font-family:"PT Serif";
}
.p-204-style{
	font-family:"PT Serif";
}
.p-bloc-275-style{
	font-family:"PT Serif";
}
.p-206-style{
	font-family:"PT Serif";
}
.p-11807-style{
	font-family:"PT Serif";
}
.p-bloc-276-style{
	font-family:"PT Serif";
}
.p-bloc-273-style{
	font-family:"PT Serif";
}
.img-taidan2-style{
	width:995px;
}
.p-211-style{
	font-family:"PTSerif-Regular";
}
.h6-bloc-273-style{
	font-family:"PT Serif";
}
.p-222-style{
	font-family:"PTSerif-Regular";
}
.img-taidan1-style{
	width:683px;
}
.p-227-style{
	font-family:"PTSerif-Regular";
}
.img-taidan4-style{
	width:590px;
}
.h3-髙島-将樹さん-style{
	font-size:20px;
}
.h2-bloc-272-style{
	font-size:28px;
	font-family:"PT Serif";
}
.p-195-style{
	font-family:"PT Serif";
}
.p-bloc-272-style{
	font-family:"PT Serif";
}
.p-235-style{
	font-family:"PT Serif";
}
.p-236-style{
	font-family:"PT Serif";
}
.p-237-style{
	font-family:"PT Serif";
}
.p-238-style{
	font-family:"PT Serif";
}
.p-239-style{
	font-size:14px;
}
.p-240-style{
	font-family:"PTSerif-Regular";
}
.p-241-style{
	font-family:"PT Serif";
}
.p-bloc-291-style{
	font-family:"PT Serif";
}
.p-243-style{
	font-family:"PTSerif-Regular";
}
.p-243-bloc-291-style{
	font-size:14px;
}
.p-bloc-281-style{
	font-family:"PT Serif";
}
.h2-bloc-4-style{
	font-family:"PT Serif";
}
.h2-ubusunaウブスナ-style{
	font-family:"PT Serif";
}
.h6-産土の服プロジェクトについて-style{
	font-family:"PT Serif";
}
.link-read-more-style{
	font-weight:bold;
}
.p-177-style{
	font-size:11px;
	line-height:24px;
	letter-spacing:1px;
}
.p-bloc-36-style{
	width:55.49%;
	font-size:15px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-3702:rgba(255,255,255,1.00);
	
	--swatch-var-4847:rgba(255,255,255,0.52);
	
	--swatch-var-2861:#000000;
	
	--swatch-var-6353:rgba(255,255,255,0.00);
	
	--swatch-var-1254:rgba(50,69,0,0.05);
	
	--swatch-var-5038:#FFFF15;
	
	--swatch-var-7391:#F2E300;
	
	--swatch-var-3144:#889515;
	
	--swatch-var-964:rgba(0,0,0,0.37);
	
	--swatch-var-5487:#FF2600;
	
	--swatch-var-1869:rgba(0,0,0,0.7);
	
}


/* Background colour styles */

.bgc-3702{
	background-color:var(--swatch-var-3702);
}
.bgc-7391{
	background-color:var(--swatch-var-7391);
}
.bgc-964{
	background-color:var(--swatch-var-964);
}
.bgc-2861{
	background-color:var(--swatch-var-2861);
}
.bgc-1254{
	background-color:var(--swatch-var-1254);
}

/* Text colour styles */

.tc-3702{
	color:var(--swatch-var-3702)!important;
}
.tc-2861{
	color:var(--swatch-var-2861)!important;
}
.tc-1254{
	color:var(--swatch-var-1254)!important;
}

/* Button colour styles */

.btn-c-3702{
	background:var(--swatch-var-3702);
	color:rgba(0,0,0,.5)!important;
}
.btn-c-3702:hover{
	background:#CCCCCC!important;
	color:rgba(0,0,0,.5)!important;
}
.btn-c-2861{
	background:var(--swatch-var-2861);
	color:#FFFFFF!important;
}
.btn-c-2861:hover{
	background:#000000!important;
	color:#FFFFFF!important;
}

/* Link colour styles */

.ltc-2861{
	color:var(--swatch-var-2861)!important;
}
.ltc-2861:hover{
	color:#000000!important;
}

/* Icon colour styles */

.icon-3702{
	color:var(--swatch-var-3702)!important;
	border-color:var(--swatch-var-3702)!important;
}
.icon-2861{
	color:var(--swatch-var-2861)!important;
	border-color:var(--swatch-var-2861)!important;
}

/* Bloc image backgrounds */

.bg-20240105-Photo-202-202{
	background-image:url("img/20240105_Photo-202%202.jpg");
}
.bg-TGC{
	background-image:url("img/TGC.jpg");
}
.bg-teshigoto{
	background-image:url("img/teshigoto.jpg");
}
.bg-20230214103646-0001{
	background-image:url("img/20230214103646-0001.jpg");
}
.bg-20240106-Photo-154{
	background-image:url("img/20240106_Photo-154.jpg");
}
.bg-IMG-3192-202{
	background-image:url("img/IMG_3192%202.jpg");
}
.bg-20240105-Photo-20222{
	background-image:url("img/20240105_Photo-20222.jpg");
}
.bg-chokkomon3-3x{
	background-image:url("img/chokkomon3@3x.png");
}
.bg-20221227105453-0001-2{
	background-image:url("img/20221227105453-0001-2.jpg");
}
.bg-20230823-kuwahara{
	background-image:url("img/20230823_kuwahara.jpg");
}
.bg-kijiuma{
	background-image:url("img/kijiuma.jpg");
}
.bg-20230803-mizukami15{
	background-image:url("img/20230803_mizukami15.jpg");
}
.bg-20230323-inoue-3{
	background-image:url("img/20230323_inoue-3.jpg");
}
.bg-75R00058-3{
	background-image:url("img/75R00058-3.jpg");
}
.bg-iza-o-2301b--45-22{
	background-image:url("img/iza_o_2301b_-45-22.jpg");
}
.bg-susudakebotan{
	background-image:url("img/susudakebotan.jpg");
}
.bg-20231206-kumamotomomen-7{
	background-image:url("img/20231206_kumamotomomen-7.jpg");
}
.bg--A9A0222-2{
	background-image:url("img/_A9A0222-2.jpg");
}
.bg-20230903-haguregumo-42-2{
	background-image:url("img/20230903_haguregumo-42-2.jpg");
}
.bg-20230927-haguregumo-28{
	background-image:url("img/20230927_haguregumo-28.jpg");
}
.bg-20230928-nagomiya-8{
	background-image:url("img/20230928_nagomiya-8.jpg");
}
.bg-20230927-kibe23{
	background-image:url("img/20230927_kibe23.jpg");
}
.bg-20230928-nagomiya-74{
	background-image:url("img/20230928_nagomiya-74.jpg");
}
.bg-20230803-KM43{
	background-image:url("img/20230803_KM43.jpg");
}
.bg-20230920-noumen-19{
	background-image:url("img/20230920_noumen-19.jpg");
}
.bg-20231021-washi-7{
	background-image:url("img/20231021_washi-7.jpg");
}
.bg-20231227-kyoritsu-2{
	background-image:url("img/20231227_kyoritsu-2.jpg");
}
.bg-20231021-tesukiwashi-62{
	background-image:url("img/20231021_tesukiwashi-62.jpg");
}
.bg-IMG-5256-1-2-2{
	background-image:url("img/IMG_5256-1-2-2.jpg");
}
.bg-tgc-runway{
	background-image:url("img/tgc_runway.jpg");
}
.bg-tgc13{
	background-image:url("img/tgc13.jpg");
}
.bg-tgc12{
	background-image:url("img/tgc12.jpg");
}
.bg-tgc11{
	background-image:url("img/tgc11.jpg");
}
.bg-tgc10{
	background-image:url("img/tgc10.jpg");
}
.bg-tgc09{
	background-image:url("img/tgc09.jpg");
}
.bg-tgc08{
	background-image:url("img/tgc08.jpg");
}
.bg-tgc07{
	background-image:url("img/tgc07.jpg");
}
.bg-tgc06{
	background-image:url("img/tgc06.jpg");
}
.bg-tgc03{
	background-image:url("img/tgc03.jpg");
}
.bg-adobestock-364044787-edit{
	background-image:url("img/adobestock_364044787_edit.jpg");
}
.bg-IMG-3176{
	background-image:url("img/IMG_3176.JPG");
}
.bg-202401120-sumioka-65-20-3{
	background-image:url("img/202401120_sumioka-65%20-3.jpg");
}
.bg-20230928-kijjiguruma{
	background-image:url("img/20230928_kijjiguruma.jpg");
}
.bg-20240105-Photo-106-2{
	background-image:url("img/20240105_Photo-106_2.jpg");
}
.bg-20230928-nagomiya-34-2{
	background-image:url("img/20230928_nagomiya-34-2.jpg");
}
.bg-20231004-haqgure11{
	background-image:url("img/20231004_haqgure11.jpg");
}
.bg-20230512-teshigoto{
	background-image:url("img/20230512_teshigoto.jpg");
}
.bg-B0011168-2{
	background-image:url("img/B0011168-2.jpg");
}
.bg-B0011168-3{
	background-image:url("img/B0011168-3.jpg");
}
.bg--EG19535-2{
	background-image:url("img/_EG19535-2.JPG");
}
.bg--EG19546-2{
	background-image:url("img/_EG19546-2.JPG");
}
.bg--EG19505-2{
	background-image:url("img/_EG19505-2.JPG");
}
.bg--EG19511-2{
	background-image:url("img/_EG19511-2.JPG");
}
.bg-B0010957{
	background-image:url("img/B0010957.jpg");
}
.bg-IMG-068322{
	background-image:url("img/IMG_068322.jpg");
}
.bg-20240705-shop-15-slide{
	background-image:url("img/20240705_shop-15_slide.jpg");
}
.bg-20240929-5Fstudio-321s{
	background-image:url("img/20240929_5Fstudio-321s.jpg");
}


/* = Additional CSS
-------------------------------------------------------------- */
.midashi-under {
	  position:relative;
	  display:block;
}
.midashi-under:before {
	  content:'';
	  position:absolute;
	  bottom:-.6em;
	  display:inline-block;
	  width:60px;
	  height:3px;
	  left:50%;
	  -webkit-transform:translateX(-50%);
	  transform:translateX(-50%);
	  background-color:#e60012;
}



/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.blocs-card-width{
		width:50%;
	}
	.btn-shop｜iza-style{
		width:89.63%;
	}
	.btn-shop-style{
		width:20.16%;
		min-width:140px;
	}
	.h1- branded-by-style{
		font-size:16px;
		letter-spacing:2px;
		font-family:"Lato";
		line-height:1em;
	}
	.p-195-style{
		font-size:14px;
		line-height:19px;
	}
	.h2-トータルコンサル株式会社-style{
		font-size:18px;
	}
	.h3-中島-幸二-style{
		font-size:16px;
	}
	.p-196-style{
		font-size:16px;
		line-height:24px;
	}
	.h1-地元-熊本への思い-style{
		font-family:"PT Serif";
	}
	.p-bloc-274-style{
		font-family:"PT Serif";
	}
	.p-198-style{
		font-family:"PT Serif";
	}
	.p-199-style{
		font-family:"PT Serif";
	}
	.p-200-style{
		font-family:"PT Serif";
	}
	.p-201-style{
		font-family:"PT Serif";
	}
	.h2-52-style{
		font-family:"PT Serif";
	}
	.p-203-style{
		font-family:"PT Serif";
	}
	.p-204-style{
		font-family:"PT Serif";
		font-size:14px;
	}
	.p-bloc-275-style{
		font-family:"PT Serif";
	}
	.p-206-style{
		font-family:"PT Serif";
	}
	.p-11807-style{
		font-family:"PT Serif";
	}
	.p-bloc-276-style{
		font-family:"PT Serif";
	}
	.p-bloc-272-style{
		font-size:14px;
	}
	.p-235-style{
		font-size:14px;
	}
	.p-236-style{
		font-size:14px;
	}
	.p-237-style{
		font-size:14px;
	}
	.p-238-style{
		font-size:14px;
	}
	.p-240-style{
		font-size:14px;
	}
	.p-241-style{
		font-size:14px;
	}
	.p-bloc-291-style{
		font-size:14px;
	}
	.p-243-style{
		font-size:14px;
	}
	.p-bloc-281-style{
		font-size:14px;
	}
	.p-bloc-36-style{
		width:87.87%;
	}
	
}

@media (max-width: 767px){
	.blocs-card-width{
		width:50%;
	}
	.btn-shop-style{
		width:80%;
		min-width:160px;
		max-width:180px;
	}
	.btn-shop｜iza-style{
	}
	.p-bloc-276-style{
		font-family:"PT Serif";
	}
	.p-bloc-271-style{
		font-size:14px;
	}
	.p-232-style{
		font-size:14px;
	}
	.p-bloc-36-style{
		width:88.75%;
		font-size:15px;
	}
	.p-43886-style{
		font-size:12px;
	}
	.sidebar-nav{
		width:230px!important;
	}
	.nav-special.sidebar-nav .nav > li{
		width:80%;
	}
	.nav-invert .sidebar-nav .close-special-menu{
		left:200px;
	}
	
}

@media (max-width: 575px){
	.navbar-logo{
		font-size:18px;
	}
	.blocs-card-width{
		width:100%;
	}
	.p-64-style{
		width:100%;
	}
	.h5-7-style{
		font-size:14px;
	}
	.h5-bloc-66-style{
		font-size:14px;
	}
	.h5- ubusuna-ff-style{
		font-size:14px;
	}
	.img-53-style{
		width:232px;
	}
	.img-44-amur-style{
		width:56px;
	}
	.img-43-style{
		width:91px;
	}
	.p-bloc-50-style{
		font-size:9px;
		font-family:"Lato";
		font-weight:700;
	}
	.img-5-style{
		width:209px;
	}
	.img-7-style{
		width:207px;
	}
	.img-31-style{
		width:223px;
	}
	.p-bloc-8-style{
		font-size:11px;
		line-height:22px;
		width:92.66%;
	}
	.p-6-style{
		font-size:12px;
		line-height:24px;
		width:94.81%;
	}
	.h1-the-storylines-style{
		font-family:"Lato";
		font-size:50px;
	}
	.h6-bloc-1-39892-style{
		font-size:14px;
		line-height:24px;
	}
	.h4-style{
		font-size:15px;
	}
	.img-iza-susa-tl4--style{
		width:210px;
	}
	.img-amur-style{
		width:36px;
	}
	.h5-2-style{
		font-size:16px;
	}
	.h3-we-designed-style{
		font-family:"PT Serif";
		font-weight:300;
		font-size:24px;
		width:100%;
	}
	.link-0-read-style{
		text-decoration:none;
	}
	.h3-reed-style{
		font-size:35px;
	}
	.img-wedesigned-tl--style{
		width:65px;
	}
	.img-teshigoto-tl--style{
		width:65px;
	}
	.h2-style{
		font-size:14px;
		line-height:24px;
	}
	.img-40-style{
		width:36px;
	}
	.img-35-style{
		width:65px;
	}
	.img-3-amur-style{
		width:36px;
	}
	.img-naitiveart-tl--style{
		width:65px;
	}
	.h3-style{
		font-size:14px;
		line-height:24px;
	}
	.img-46-amur-style{
		width:38px;
	}
	.img-pitti-tl--style{
		width:60px;
	}
	.p-bloc-1-style{
		font-size:14px;
		line-height:24px;
	}
	.img-34-style{
		width:36px;
	}
	.img-tgc-tl--style{
		width:100px;
	}
	.h1-bloc-1-style{
		line-height:100px;
		font-size:100px;
	}
	.img-collection-tl--style{
		width:65px;
	}
	.img-59-style{
		width:36px;
	}
	.img-concept-il--style{
		width:65px;
	}
	.img-66-style{
		width:65px;
	}
	.h4-服は幸福な手仕事の共創-style{
		font-family:"PT Sans";
		letter-spacing:px;
		font-size:18px;
		line-height:27px;
	}
	.img-bloc-72-style{
		width:270px;
	}
	.h1-the-shop-style{
		font-size:80px;
	}
	.img-82-style{
		width:65px;
	}
	.h3-14-style{
		font-size:14px;
		line-height:20px;
	}
	.h1-shop-style{
		font-family:"Lato";
		font-weight:900;
		font-size:100px;
	}
	.p-bloc-41-style{
		font-size:12px;
		line-height:21px;
	}
	.img-34-ubusuna-tl--style{
		width:46px;
	}
	.img-35-turanari2--style{
		width:178px;
	}
	.h1-6-design-style{
		font-family:"Lato";
		font-weight:900;
		font-size:80px;
	}
	.h1-10-style{
		font-family:"Lato";
		font-weight:900;
		font-size:100px;
	}
	.h1-12-style{
		font-family:"Lato";
		font-weight:900;
		font-size:100px;
	}
	.h1-14-style{
		font-family:"Lato";
		font-weight:900;
		font-size:100px;
	}
	.h1-16-style{
		font-family:"Lato";
		font-weight:900;
		font-size:80px;
	}
	.h1-20-style{
		font-family:"Lato";
		font-weight:900;
		font-size:65px;
	}
	.h5-産土の服プロジェクトについて-style{
		line-height:32px;
		font-size:16px;
	}
	.img-tgc-lo-style{
		width:197px;
	}
	.h2-ubusunaウブスナ-style{
		font-family:"PT Serif";
		font-size:22px;
	}
	.h5-information-style{
		font-family:"Lato";
		font-weight:700;
		letter-spacing:3px;
	}
	.p-135-style{
		font-size:14px;
		line-height:30px;
	}
	.h5-bloc-151-style{
		font-size:16px;
	}
	.h5-brand-symbol-style{
		font-size:16px;
	}
	.h4-brand-style{
		font-family:"PT Serif";
		font-size:32px;
		letter-spacing:4px;
	}
	.p-135-bloc-50-style{
		font-size:12px;
		line-height:30px;
	}
	.p-bloc-74-style{
		font-size:9px;
		letter-spacing:2px;
	}
	.p-bloc-136-style{
		font-size:12px;
		line-height:30px;
	}
	.h6-手仕事職人との共創の意味-style{
		letter-spacing:2px;
	}
	.h6-産土の服プロジェクトについて-style{
		letter-spacing:2px;
	}
	.p-bloc-151-style{
		font-size:12px;
		line-height:30px;
	}
	.p-143-style{
		font-size:12px;
		line-height:30px;
	}
	.p-bloc-107-style{
		font-size:12px;
		line-height:28px;
	}
	.p-55-bloc-50-style{
		font-size:12px;
		line-height:28px;
	}
	.h4-株式会社-古荘本店-style{
		font-size:16px;
	}
	.h3-18-style{
		font-size:20px;
		line-height:32px;
		font-family:"PT Serif";
	}
	.h4-14-style{
		font-size:14px;
		line-height:30px;
	}
	.p-86-style{
		font-size:12px;
		line-height:27px;
	}
	.p-87-style{
		font-size:12px;
		line-height:27px;
	}
	.p-85-style{
		font-size:9px;
		letter-spacing:2px;
	}
	.h3-服は幸福な手仕事の共創-style{
		font-size:32px;
		line-height:38px;
	}
	.p-94-style{
		font-size:12px;
		line-height:25px;
	}
	.h6-bloc-81-style{
		font-size:15px;
		line-height:22px;
	}
	.p-84-bloc-81-style{
		font-size:12px;
	}
	.h2-nagare-style{
		font-size:18px;
		line-height:28px;
	}
	.h6-bloc-53-style{
		font-size:18px;
		line-height:30px;
	}
	.h6-bloc-88-style{
		font-size:17px;
	}
	.h6-bloc-98-style{
		font-size:17px;
		line-height:28px;
	}
	.p-bloc-81-style{
		font-family:Helvetica;
		font-weight:300;
	}
	.h5-bloc-81-style{
		font-size:16px;
		line-height:26px;
	}
	.p-158-bloc-50-style{
		font-size:12px;
		line-height:26px;
	}
	.h5-人吉市-住岡郷土玩具製作所-style{
		font-size:22px;
		font-family:"PT Serif";
		line-height:35px;
		letter-spacing:3px;
	}
	.h6-bloc-177-style{
		line-height:30px;
	}
	.h5-住岡郷土玩具製作所-style{
		font-size:16px;
		line-height:27px;
	}
	.h5-11-bloc-50-style{
		font-size:16px;
		line-height:30px;
	}
	.p-109-style{
		font-size:12px;
		line-height:28px;
	}
	.h4-私たちの共創の仲間-style{
		font-size:20px;
		letter-spacing:2px;
		font-family:"PT Serif";
		line-height:34px;
	}
	.h3-bloc-108-style{
		font-size:20px;
		line-height:34px;
		font-family:"PT Serif";
	}
	.h2-bloc-106-style{
		font-size:20px;
		line-height:34px;
	}
	.h3-45-style{
		font-size:40px;
	}
	.h5-古民家ギャラリー百花堂-style{
		font-size:16px;
		line-height:27px;
	}
	.h6-46-style{
		line-height:27px;
	}
	.p-163-style{
		font-size:12px;
		line-height:28px;
	}
	.h6-49-style{
		line-height:27px;
	}
	.p-159-style{
		font-size:13px;
		line-height:25px;
	}
	.h6-bloc-106-style{
		line-height:27px;
	}
	.h4-furusho-honten-style{
		font-size:18px;
	}
	.img-48-style{
		width:45px;
	}
	.h6-information-style{
		font-size:11px;
		letter-spacing:2px;
		font-family:"Lato";
		font-weight:700;
	}
	.link-0-design-style{
		text-decoration:none;
	}
	.link-45785-style{
		text-decoration:none;
	}
	.link-35186-style{
		text-decoration:none;
	}
	.link-0-fashion-style{
		text-decoration:none;
	}
	.link-0-japonix-style{
		text-decoration:none;
	}
	.link-0-company-style{
		text-decoration:none;
	}
	.link-0-shop-style{
		text-decoration:none;
	}
	.link-39082-style{
		font-weight:bold;
	}
	.link-4535-style{
		text-decoration:none;
	}
	.img-logotype--style{
		width:201px;
	}
	.navbar-brand img{
		width:200px;
	}
	.link-bloc-0-style{
		width:68.89%;
	}
	.h3-bloc-2-style{
		font-size:14px;
	}
	.img-15-style{
		width:123px;
	}
	.img-244-style{
		width:217px;
	}
	.h2-the-shop-style{
		letter-spacing:4px;
		line-height:32px;
	}
	.h1- branded-by-style{
		letter-spacing:4px;
	}
	.h2-collection-style{
		letter-spacing:7px;
		font-size:24px;
	}
	.h3- web-store-style{
		letter-spacing:1px;
		line-height:20px;
	}
	.h2-1-style{
		letter-spacing:4px;
		font-family:"Lato";
		font-weight:700;
	}
	.p-style{
		font-size:15px;
	}
	.h2-furusho-honten-style{
		line-height:30px;
		font-size:18px;
		font-family:"Lato";
		font-weight:700;
	}
	.h6-bloc-4-style{
		font-size:14px;
	}
	.p-13-style{
		font-size:14px;
		font-family:"PT Serif";
	}
	.h5-bloc-4-style{
		font-size:17px;
		line-height:26px;
		font-family:"PT Serif";
		letter-spacing:1px;
	}
	.img-eventlogo--style{
		width:161px;
	}
	.p-127-style{
		font-size:13px;
	}
	.h1-5-style{
		font-size:60px;
	}
	.img-144-style{
		width:162px;
	}
	.h4-博多大丸【九州深発見】-style{
		font-size:17px;
	}
	.h6-39-style{
		font-size:14px;
	}
	.img-bloc-147-style{
		width:34px;
	}
	.h2-pittit-style{
		line-height:34px;
	}
	.p-bloc-149-style{
		font-size:11px;
		line-height:20px;
	}
	.h6-終了しました-style{
		font-size:12px;
	}
	.img-253-style{
		width:56px;
	}
	.p-bloc-25-style{
		font-size:13px;
		line-height:28px;
	}
	.btn-shop-style{
		width:46.98%;
		min-width:150px;
		max-width:150px;
	}
	.btn-shop｜iza-style{
		min-width:150px;
		width:80%;
	}
	.btn-shop｜susa-style{
		min-width:150px;
	}
	.h3-郷土愛」地元熊本への思い-style{
		font-size:16px;
	}
	.p-bloc-271-style{
		line-height:24px;
		font-size:14px;
	}
	.p-196-style{
		font-size:14px;
	}
	.p-bloc-274-style{
		font-size:14px;
	}
	.p-198-style{
		font-size:14px;
	}
	.p-199-style{
		font-size:14px;
	}
	.p-200-style{
		font-size:14px;
	}
	.p-201-style{
		font-size:14px;
	}
	.p-203-style{
		font-size:14px;
	}
	.p-204-style{
		font-size:14px;
	}
	.p-bloc-275-style{
		font-size:14px;
	}
	.p-206-style{
		font-size:14px;
	}
	.p-11807-style{
		font-size:14px;
	}
	.p-bloc-276-style{
		font-family:"PT Serif";
		font-size:14px;
	}
	.h1-地元-熊本への思い-style{
		font-size:20px;
	}
	.h2-52-style{
		font-size:20px;
	}
	.p-bloc-273-style{
		font-size:14px;
	}
	.h2-トータルコンサル株式会社-style{
		font-size:16px;
	}
	.p-211-style{
		font-size:14px;
	}
	.p-222-style{
		font-size:14px;
	}
	.p-232-style{
		font-size:14px;
	}
	.h2-bloc-272-style{
		font-size:20px;
	}
	.p-bloc-4-style{
		font-size:15px;
	}
	
}

