@charset "utf-8";
/* CSS Document */

body, html {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
	letter-spacing:0.3rem;
	overflow-x: hidden;
}

html { 
	font-size: 62.5%;
	text-decoration:none;
}

body {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

img {
	width:100%;
	vertical-align:top;
}

a:link,a:visited {
	color:#000;
	text-decoration:none;
}

a:hover {
	opacity:0.7;
}

@media (max-width: 700px) {
	.br {
		display:none;
	}
}



@media (min-width: 701px) {
	.pc {
		display:none;
	}
}

@media (max-width: 700px) {
	.sp {
		display:none;
	}
}

/**/

.fade-up-one {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-up-one.visible {
  opacity: 1;
  transform: translateY(0);
}



/*text animetion*/

.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding:0px;
}

.motion-txt:after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #E73130;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt:after {
  transition-property: transform;
  transition-duration: 0.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}

.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}

/**/


header {
	width:100%;
	background:#E73130;
	height:8rem;
	z-index:1000;
	position:relative;
}

.h-parts {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 12rem;
	margin-top:8rem;
}

@media (max-width: 700px) {
	.h-parts {
		height: 4rem;
	}
}

.h-parts polygon {
	fill: #E73130;
}

.header-inner {
    max-width: 97%;
    height: 100%;
    margin: 0 auto;
    padding: 0rem 0;
    display: flex;
    justify-content: space-between;
	align-items: center;
	position: relative;
	
}

.header-logo {
	width:13rem;
	padding:10rem 0 0 0;
	text-align: left;
	z-index:999
}

@media (max-width: 700px) {
	.header-logo {
		width:8rem;
		padding:4rem 0 0 1rem;
	}
}

.header-logo img {
    width:100%;
}

.header-inner h1 {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	color:#FFF;
	letter-spacing: 0.1em;
	font-size:2.2rem;
}

@media (max-width: 700px) {
	.header-inner h1 {
		display:none;
	}
}

@media (min-width: 1200px) {
    header .header-logo img {
        
    }
}
@media (min-width: 1000px) {
    header .header-logo img {
        
    }
}
@media (min-width: 700px) {
    header .header-logo img {
        
    }
}

.menu-button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
	position: fixed;
	top: 70px;
	right: 40px;
	z-index: 9999;
}

@media (max-width: 700px) {
	.menu-button {
		top: 40px;
		right: 30px;
	}
}

.menu-button span {
	width: 23px;
	height: 2px;
	background-color: #E73130;
	border-radius: 2px;
	transition: all 0.3s ease;
	display: block;
}

/* ×アイコン*/
.menu-button.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}
.menu-button.active span:nth-child(2) {
	opacity: 0;
}
.menu-button.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

/*スクロール後の背景変更*/
.menu-button.scrolled {
	background-color: #E73130;
}
.menu-button.scrolled span {
	background-color: #fff;
}

.main-visual__hashtag {
	position:absolute;
	bottom:0;
}


.fullscreen-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.8);
	display: none;
	z-index: 999;
}

.fullscreen-menu ul {
  display: flex;
  align-items: flex-end; 
  flex-direction: column;
  margin:25rem 0 0 0;
}

.fullscreen-menu li {
	margin:2.5rem 0;
	font-weight:bold;
}

.fullscreen-menu a {
	color: white;
	background:#E73130;
	font-size: 3.0rem;
	text-align:right;
	display:inline;
	padding:1rem 2rem;
	margin:0rem 5rem 0 0;
	text-decoration:none;
}

@media (max-width: 700px) {
	.fullscreen-menu ul {
		margin:20rem 0 0 0;
	}
	.fullscreen-menu li {
		margin:2.0rem 0;
	}
	.fullscreen-menu a {
		font-size: 2.0rem;
		padding:1rem 2rem;
		margin:0rem 2rem 0 0;
	}
}


/**/
.main-tag {
	position:absolute;
	top:40rem;
	left:20rem;
	display: flex;
	align-items: flex-start;
}

@media (max-width: 700px) {
	.main-tag {
		top:28rem;
		left:3rem;
	}
}

.main-tag p {
	white-space: pre;
	writing-mode: vertical-rl;
	display: inline-block;
	font-size:2.5rem;
	font-weight:bold;
	background:#E73130;
	color:#FFF;
	padding:1.5rem 1rem;
	margin:0 3rem 0 0;
}

@media (max-width: 700px) {
	.main-tag p {
		font-size:1.8rem;
		padding:1.5rem 1rem;
		margin:0 1rem 0 0;
		white-space: nowrap;
		display:inline-block;
	}
}

/**/
.main-img {
	width:100vw;
	height:100vh;
	background-image: url('img/main_img.jpg'); /* 背景画像 */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position:fixed;
	top:0;
	left:0;
	overflow-x: hidden;
}

@media (max-width: 700px) {
	.main-img {
		background-image: url('img/main_img_sp.jpg'); /* 背景画像 */
	}
}
/**/

.top-content-wrap {
	width:100%;
	background-color: #ffffff;
	margin: 91.3vh 0 0;
	position:relative;
}

section {
	margin:0 auto;
}

.copy {
	width:80%;
}

.copy h1 {
	width:30rem;
	margin:0 auto;
	padding:6.5rem 0 11rem;
}

@media (max-width: 700px) {
	.copy h1 {
		width:20rem;
		padding:6.5rem 0 5rem;
	}
}

.copy-text {
	display: flex;
    justify-content: center; /* 横方向 */
    align-items: center;     /* 縦方向 */
}

.copy p {
	display: inline-block;
	margin:0 auto;
	text-align:center;
	font-size:1.8rem;
	line-height:2.2;
	font-weight:bold;
	letter-spacing: 0.1em;
	color:#E73130;
	padding:0 0 5.5rem;
}

@media (max-width: 700px) {
	.copy p {
		text-align:left;
		font-size:1.3rem;
	}
}




	



/**/

section {
	padding:6% 0;
}

.section_header {
	margin:0 0 3% 0;
}

@media (max-width: 700px) {
	.section_header {
		margin:15% 0 8% 0;
	}
}

.section_header ,
.section_header p {
	text-align:center;
}

.section_header h1 {
	color: #E73130;
	font-size:3.9rem;
	padding:0;
	margin:0;
}

@media (max-width: 700px) {
	.section_header h1 {
		font-size:3.0rem;
	}
}

.section_header span.en {
	font-size:2.3rem;
	color:#E73130;
}

@media (max-width: 700px) {
	.section_header span.en {
		font-size:1.8rem;
	}
}

.section_header p {
	font-size:1.3rem;
	font-weight:bold;
}

@media (max-width: 700px) {
	.section_header .size-s {
		font-size:1.8rem;
	}
}


/* フェードアップアニメーション */
.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.6s ease-out;
}

.fade-up.active {
	opacity: 1;
	transform: translateY(0);
}


/**/

.about {
	background:#E73130;
	padding:30px 0;
}

.about h1 {
	width:20%;
	min-width:400px;
	text-align:center;
	color:#FFF;
	font-size:1.6rem;
	border-bottom:2px solid #FFF;
	margin:0 auto 20px;
	line-height:1.7;
	padding:20px 0 20px 0;
}

@media (max-width: 700px) {
	.about h1 {
		font-size:1.3rem;
		width:70%;
		min-width: 0;
	}
}

/*後で修正--------------------------------------------------------------------------------------------------------------*/
.about-content {
	display:none;
}

.about-content-inner {
	width:40%;
	margin:0 auto;
}

@media (max-width: 700px) {
	.about-content-inner {
		width:70%;
	}
}

.about-content-inner img {
	width:100%;
	margin-bottom:3rem;
}

.about-content-inner p {
	font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.1em;
	color:#FFF;
}

.about-content-inner .about-mail {
	text-align:center;
	font-size: 1.8rem;
	text-decoration:underline;
	margin:5rem 0 0;
}

.about-content-inner h3 {
	font-size:1.6rem;
	color:#FFF;
}

.about-content-box {
	margin:5rem 0 0;
}

.about-content-box p {
	margin:0 0 3rem 0;
}





.about-more .open-text {
    display: block;
    position: relative;
	z-index: 1;
	color:#ffffff;
}

.about-more .close-text {
   display: none;
    position: relative;
    z-index: 2;
}

@media (max-width: 599px) {
	.about-more .close-text {
		color: #ffffff;
	}
}

.about-more.close .open-text {
    display: none;
}

.about-more.close .close-text {
    display: inline-block;
}

.about-more {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto;
    padding: 1rem 0;
    width: 7rem;
    transition: all .5s;
	z-index: 1;
}

.about-more::after {
    content: "";
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;
    border-radius: 0.5rem;
    transition: all .5s;
    opacity: 0;
}

.about-more:hover::after {
    width: 100%;
    opacity: 1;
}

@media (max-width: 700px) {
    .about-more:hover::after {
    	display: none;
    }
}

.about-more:hover {
    color: #E73130
}

.about-more .arrow {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border: 0;
    border-top: solid 0.2rem #fff;
    border-right: solid 0.2rem #fff;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin: 0.5rem auto;
    transition: all .5s ease;
    position: relative;
    z-index: 2;
}

@media (max-width: 700px) {
  .about-more .arrow {
    border-top: solid 0.2rem #fff !important; /* 赤色 */
    border-right: solid 0.2rem #fff !important;
  }
}

.about-more:hover .arrow {
    border-top: solid 0.2rem #E73130;
    border-right: solid 0.2rem #E73130;
}

.about-more.close .arrow {
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*後で修正--------------------------------------------------------------------------------------------------------------*/

/**/

.products_wrap {
	width:90%;
	max-width:1200px;
	margin:0 auto;
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

.sub_products_wrap {
	width:100%;
}

.products_item {
	width:49%;
	margin-bottom:5%;
}

.products_item h2 {
	font-size:2.2rem;
	margin:4% 0;
}

@media (max-width: 700px) {
	.products_item h2 {
		font-size:1.5rem;
	}
}

.products_item p {
	font-size:1.5rem;
	line-height:1.8;
	text-align:justify;
}

@media (max-width: 700px) {
	.products_item p {
		display:none;
	}
}

.products_item img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.5s ease;
	border-radius:10px;
}

.products_item a:hover img {
	opacity: 0.6;
	display: block;
  width: 100%;
  height: auto;
}

.products_item a {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.products_item .overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #E73130;
  padding: 10px 20px;
  border:2px solid #E73130;
  font-size: 1.6rem;
  font-weight:bold;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2; /* 必ず img より前面に */
}

/* ホバー時にフェードイン */
.products_item:hover .overlay-text {
  opacity: 1;
}

@media (max-width: 700px) {
	.products_item .overlay-text {
		display:none;
	}
}



/**/
.c-parts {
  aspect-ratio: 1920 / 161;
  width: 100%;
  margin-bottom:-3px
}

.c-parts svg {
    width: 100%;
    fill: rgb(231, 49, 48);
}

.map {
	width:100%;
	background:#E73130;
	z-index:0;
	position:relative;
}

.map h1 {
	width:30rem;
	margin:0 auto;
	padding:0.5rem 0 11rem;
}

@media (max-width: 700px) {
	.map h1 {
		width:17rem;
		margin:0 auto;
		padding:0.5rem 0 5rem;
	}
}

.map_illust_text {
	width:65%;
	min-width:1200px;
	max-width:1200px;
	margin:0 auto;
	position:relative;
}

@media screen and (min-width:701px) and ( max-width:1304px) {
	.map_illust_text {
		width:100%;
		min-width:100%;
		max-width:0px;
	}
}

@media (max-width: 700px) {
	.map_illust_text {
		width:100%;
		/*height:600px;*/
		min-width:100%;
		max-width:100%;
		background:#FF0;
	}
}

.map_illust_text h2 ,
.map_illust_bg01 p  {
	color:#FFF;
	font-weight:bold;
	left:50%;
	transform: translateX(-50%);
	line-height:1.8;
	position:absolute;
}

.map_illust_text h2 {
	text-align:center;
	font-size:3.5rem;
}

.map_illust_bg01 p {
	font-size:1.3rem;
	top:30%;
}

@media screen and (min-width:700px) and ( max-width:1304px) {
	.map_illust_text h2 {
		font-size:2.5rem;
		top:3%;
	}
	.map_illust_bg01 p {
		width:100%;
		top:30%;
		font-size:1.2rem;
	}
}

@media (max-width: 700px) {
	.map_illust_text h2 {
		font-size:1.8rem;
		white-space: nowrap;
		top:0%;
	}
	.map_illust_bg01 p {
		top:75%;
		font-size:1.2rem;
	}
}

.map-area {
	width:74%;
	margin:20rem auto 5rem;
}

.map-area iframe {
	height:600px;
}

@media (max-width: 700px) {
	.map-area {
		width:100%;
		height:auto;
		margin:10rem auto 3rem;
	}

	.map-area iframe {
		height:300px;
	}
}

.map_illust_bg02 {
	width:75%;
	min-width:1300px;
	max-width:1300px;
	margin:0 auto;
	position:relative;
}

@media screen and (min-width:700px) and ( max-width:1304px) {
	.map_illust_bg02 {
		width:100%;
		min-width:700px;
		max-width:0px;
	}
}

@media (max-width: 700px) {
	.map_illust_bg02 {
		width:100%;
		min-width: 100% !important;
		max-width: 100%  !important;
		
	}
}

.map_illust_bg02 h2 {
	color:#FFF;
	font-weight:bold;
	left:50%;
	transform: translateX(-50%);
	line-height:1.8;
	position:absolute;
	text-align:center;
	font-size:2.5rem;
	top:35%;
}

@media screen and (min-width:700px) and ( max-width:1304px) {
	.map_illust_bg02 h2 {
		line-height:1.6;
		font-size:1.6rem;
		top:32%;
	}
}

@media (max-width: 700px) {
	.map_illust_bg02 h2 {
		font-size:1.2rem;
		top:33%;
		white-space: nowrap;
	}
}


/**/
.news-inner {
	width:32%;
	margin:0 auto;
	font-size:1.6rem;
}

@media (max-width: 700px) {
	.news-inner {
		width:70%;
	}
}

.news-inner li {
	color:#E73130;
	border-bottom:1px solid #E73130;
	padding:0 0 10rem 0;
	margin:0 0 5rem 0;
}

.news-inner li {
	color:#E73130;
	border-bottom:1px solid #E73130;
	padding:0 0 1.0rem 0;
	margin:0 0 5rem 0;
	font-weight:bold;
}



/**/
.shop-inner {
	width:52%;
	margin:0 auto;
	display:flex;
	justify-content: center;
}

@media (max-width: 700px) {
	.shop-inner {
		width:70%;
		display:block;
	}
}

.shop-left {
	width:30%;
	padding:5% 5% 5% 0;
	border-right:1px solid #E73130;
}

.shop-left h2 {
	font-size:1.8rem;
}

.shop-left li {
	margin:0 0 20px 0;
	font-size:1.6rem;
}

.shop-right {
	width:30%;
	padding:5% 0 5% 5%;
}

.shop-right h2 , .shop-left h2 {
	font-size:1.8rem;
}

.shop-right li , .shop-left li {
	margin:0 0 20px 0;
	font-size:1.6rem;
}

@media (max-width: 700px) {
	.shop-left {
		width:100%;
		border-right:0px;
		border-bottom:1px solid #E73130;
	}
	.shop-right {
		width:100%;
		padding:5% 0 5% 0%;
	}
}

/**/

.instagram {
	margin:0rem 0 0 0;
}

.mg-200 {
	margin-bottom:200px;
}

.instagram_wrap {
	width:62%;
	margin:0 auto;
	display: flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

.instagram .motion-inner {
	padding-bottom:10px;
}

.instagram span.en {
	color:#000000;
}


@media (max-width: 700px) {
	.instagram_wrap {
		width:100%;
	}
}

.instagram_wrap li {
	width:32.5%;
	margin-bottom:1.2%;
	
	position: relative;
    overflow: hidden;
}

.instagram_wrap li::before{
    content: "";
    padding-top: 100%;
    display: block;
}

.instagram_wrap li img{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.instagram h2 {
	color: #E73130;
	font-size:3.2rem;
	text-align:center;
	margin-bottom:15rem;
}

.hushtug-text {
	margin-top:5rem;
}

/**/

.f-logo {
	width:12%;
	margin:0 auto;
}

@media (max-width: 700px) {
	.f-logo {
		width:30%;
		margin:0 auto;
	}
}

.sub .f-logo {
	width:30%;
	margin:10rem auto 0;
}

.copylite {
	font-size:1.5rem;
	font-weight:bold;
	letter-spacing:0;
	text-align:center;
	padding:7rem 0 3rem;
}


/*--------------------------------------*/

.sub-header {
	width: calc(100% - 6rem);
	max-width:120rem;
	margin:0 auto;
	display: flex;
    justify-content: center;
	position:relative;
}

@media (max-width: 700px) {
	.sub-header {
	}
}

.sub-header h1 {
	width:10%;
	min-width: 25rem;
	padding:7rem 0 7rem;
}

@media (max-width: 700px) {
	.sub-header h1 {
		width:50%;
		min-width: 0rem;
	}
}

.sub-header h1 img {
	width:100%;
}

.sub-tag {
	position:absolute;
	top:7rem;
	left:0rem;
	display: flex;
	align-items: flex-start;
}

.sub-tag p {
	writing-mode: vertical-rl;
	font-size:2.0rem;
	font-weight:bold;
	color:#E73130;
	padding:1.5rem 0rem;
	margin:0 1.5rem 0 0;
}

@media (max-width: 700px) {
	.sub-tag {
		top:32rem;
		left: 50%;
		transform: translateX(-50%);
		display:inline-block;
	}
	.sub-tag p {
		writing-mode: horizontal-tb;
		font-size:1.4rem;
		padding:1rem 0rem 0;
		white-space: nowrap;
	}
}

@media (max-width: 600px) {
	.sub-tag {
		top:28rem;
	}
}

.sub-content-wrap {
	width: calc(100% - 6rem);
	max-width:100rem;
	margin:0 auto;
}

.sub-content-box {
	display:flex;
	justify-content:space-between;
	font-weight:bold;
	margin:10rem 0 10rem;
}

@media (max-width: 700px) {
	.sub-content-box {
		display:block;
		margin:10rem 0 10rem;
	}
}

.sub-content-h {
	width:45%;
	font-size:1.8rem;
}

.sub-content-h-small {
	font-size:1.3rem;
}

.sub-content-text {
	width:50%;
	font-size:1.4rem;
	line-height:2.0;
}

@media (max-width: 700px) {
	.sub-content-h {
		width:100%;
		font-size:1.5rem;
		margin-bottom:5rem;
	}
	
	.sub-content-h-small {
		font-size:1.0rem;
	}
	
	.sub-content-text {
		width:100%;
		font-size:1.3rem;
		line-height:2.0;
	}
}

.sub-content-img {
	margin-top:3rem;
}

.sub-content-text p {
	margin-bottom:3rem;
}

.tel {
	font-size:2.4rem;
	border-bottom:2px solid #000;
	display:inline-block;
}

.tel span {
	font-size:1.5rem;
	margin-right:15px;
}


.process-h {
	font-size:2.2rem;
}

.designer {
	border-top:1px solid #000;
	margin:10rem 0 10rem 0;
}

.designer-inner {
	width:90%;
	margin:5rem auto;
	display:flex;
	font-weight:bold;
}

@media (max-width: 700px) {
	.designer-inner {
		width:100%;
		display:block;
	}
}

.designer-inner figure {
	width:30%;
}

@media (max-width: 700px) {
	.designer-inner figure {
		width:100%;
		margin:0 auto;
	}
}

.designer-inner figure img {
	width:100%;
	margin-top:10px;
}

.designer-detail {
	width:65%;
}

@media (max-width: 700px) {
	.designer-detail {
		width:100%;
	}
}

.designer-detail h2 {
	font-size:2.2rem;
}

.designer-detail 
p.designer-name {
	font-size:1.6rem;
	line-height:1.5;
}

.designer-detail p {
	font-size:1.4rem;
	line-height:2.0;
}

@media (max-width: 700px) {
	.designer-detail h2 {
		font-size:1.8rem;
		margin-top:5rem;
	}
	.designer-detail p {
		font-size:1.3rem;
	}
}

.designer-detail span {
	font-size:1.1rem;
}


/**/
.panel {
	margin:200px 0 60px;
}
.panel h2 {
	text-align:center;
	color:#E73130;
	font-size:2.2rem;
	line-height:1.5;
	border-bottom:3px solid #E73130;
	padding:0 0 40px 0;
	margin:100px 0 60px;
}

.panel img {
	border:1px solid #E73130;
}

@media (max-width: 700px) {
	.panel {
		margin:100px 0 60px;
	}
	
	.panel h2 {
		font-size:1.6rem;
		line-height:1.8;
		padding:0 0 20px 0;
		margin:100px 0 40px;
	}
}


/**/

.container2 {
	margin: 30px auto 0;
	width:100%;
}

.slider ,
.slider2 {
	margin-bottom:10px;
}

.slider img ,
.slider2 img {
	height: 600px;     
	object-fit: cover;
	border-radius:10px;
}

.thumbnail ,
.thumbnail2  {
	
}

.thumbnail div:nth-child(2) , .thumbnail div:nth-child(4) {
	
}

.thumbnail2 div:nth-child(2) , .thumbnail2 div:nth-child(4) {
	
}

.thumbnail img ,
.thumbnail2 img {
	height: 150px;    
	object-fit: cover; 
	border-radius:10px;
}

@media (max-width: 700px) {
	.slider img ,
	.slider2 img {
		height: 400px;     
		object-fit: cover; 
	}
	
	.thumbnail img ,
	.thumbnail2 img {
		height: 80px;     
		object-fit: cover; 
	}
}

.thumbnail .slick-slide ,
.thumbnail2 .slick-slide {
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
  margin: 0 0px 0;
}


/* 選択中（メインに表示されている）サムネイルだけ濃く */
.thumbnail .slick-current ,
.thumbnail2 .slick-current {
  opacity: 1 !important;
}





/*フェードイン*/

.fade-in , .fade-in-scrool {
	opacity: 0;
	transition: opacity 1.8s ease-out; 
	transition: opacity 1s ease;
}

.fade-in.visible , .fade-in-scrool.visible {
	opacity: 1;
}









/**/

.container2 {
	margin: 30px auto 0;
	width:100%;
}

.slider ,
.slider2 {
	margin-bottom:10px;
	
	/*margin-left:5px;*/
}

.slider img ,
.slider2 img {
	height: 600px;     
	object-fit: cover;
	border-radius:10px;
	
}

.thumbnail ,
.thumbnail2 {
}

.thumbnail img ,
.thumbnail2 img {
	height: 150px;    
	object-fit: cover; 
	border-radius:10px;
}

@media (max-width: 700px) {
	.slider img ,
	.slider2 img {
		height: 280px;     
		object-fit: cover; 
	}
	
	.thumbnail img ,
	.thumbnail2 img {
		
		height: 80px;     
		object-fit: cover; 
	}
}

.thumbnail .slick-slide ,
.thumbnail2 .slick-slide {
  opacity: 0.6;
  transition: opacity 0.3s;
  cursor: pointer;
  margin: 0 10px 0 0;
}


/* 選択中（メインに表示されている）サムネイルだけ濃く */
.thumbnail .slick-current ,
.thumbnail2 .slick-current {
  opacity: 1 !important;
}





