@charset "utf-8";
/* CSS Document */



/*========= ベースのcss ===============*/



body, th, td, h1, h2, h3, h4, h5, h6, pre, input, textarea, option, div, p, dt, dd, li, address {
    font-family: YuMincho,Yu Mincho,serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    color: #111;
}


img {
width: 100%;
}

* {
    box-sizing: border-box;
}










/*========= ハンバーガーメニュー ===============*/


/*ボタン全体の形状*/
.openbtn{
    /*はじめは非表示に*/
	display: none;
    /*ボタンの位置*/
	position:fixed;
	top:10px;
	right: 10px;
	z-index: 999;
    /*ボタンの形状*/
	background:#666;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタンのアイコン設定*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
  from {
    opacity: 0;
	transform: translateY(-100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


/*========= ヘッダーナビゲーションのためのCSS ===============*/

/*==ヘッダーの形状*/
#header{
	height: 70px;
	width:100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background:#f1dcdc;
	color:#fff;
	text-align: center;
	padding: 20px;
}

/*.doneクラスがついたヘッダー*/
#header.dnone {
	opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
	opacity: 1;/*不透明にして出現*/
}


/*==ヘッダーのテキストナビゲーションの形状*/
#g-navi ul{
	list-style: none;
	display: flex;
	justify-content: center;
}

#g-navi ul li a{
	display: block;
	text-decoration: none;
	color: #666;
	padding:10px;
}

#g-navi ul li.current a,
#g-navi ul li a:hover{
	color:#fff;	
}

/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
	top: 0;
    left: 0;
	z-index: -1000;
    /*高さと幅*/  
	width:100%;
	height: 100vh;
    /*天地中央＆テキスト中央揃え*/  
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
	transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
	opacity: 1;/*不透明に*/
	z-index:3;/*最前面に*/
	background:#eee;
}

#header.dnone.panelactive #g-navi ul{
	display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition:all 0.3s;
}









/*アランチャロゴ*/
.logo {
    width: 100px;
}


.item-list-item {
	display: block;
	flex-grow: 0;
	border-right: 1px solid #3E5565;
	border-bottom: 1px solid #3E5565;
	z-index: 999999;
}

@media screen and (min-width: 1791px) {
.item-list-item {
	width: 16.66666%;
}
}

@media screen and (max-width: 1790px) {
.item-list-item {
	width: 20%;
}
}

@media screen and (max-width: 1440px) {
.item-list-item {
	width: 25%;
}
}

@media screen and (max-width: 1090px) {
.item-list-item {
	width: 33.3333333333%;
}
}

@media screen and (max-width: 767px) {
.item-list-item {
	width: 50%;
}
}

@media screen and (max-width: 480px) {
.item-list-item {
	width: 100%;
}
}
.item-figure {
	display: flex;
	flex-direction: column-reverse;
	align-items: stretch;
}
.item-figure-img {
	height: auto;
	border-top: 1px solid #3E5565;
	-o-object-fit: cover;
	object-fit: cover;
	flex-grow: 1;
	line-height: 0;
	box-sizing: border-box;
}
.item-figure-figcaption {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 244px;
	padding: 25px;
	border-top: 1px solid #3E5565;
	border-bottom: 1px solid #3E5565;
	margin: -1px 0 -1px;
	box-sizing: border-box;
}

    
 
    
    
.manufacture_items {
	display: flex;
	flex-wrap: wrap;
}
    
    
     .manufacture_title {
    text-align: center;
    font-size: 2em;
    line-height: 2;
    border-top: solid 1px;
    border-left: solid 1px;
    border-right: solid 1px;
} 
/*イントロ*/

video {
    width: 100%;
}


section#intro_mov {
	display: flex;
}
.left_mov {
	width: 50%;

}
.left_mov_bg {
	width: 100%;

	background: url('https://aranciato.com/iroma/img/shohin/2021ss/210201-02-v1.mp4') no-repeat;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.left_mov_img {
}
.right_mov {
	width: 50%;
	height: 100vh;
}
.right_mov_bg {
	width: 100%;
	height: 100%;
	position: relative;
}
.right_mov_img {
}

@media screen and (max-width: 740px) {
section#intro_mov {
	flex-direction: column-reverse;
}
.right_mov {
	width: 100%;
    height: auto;
}
.left_mov {
	width: 100%;
    height: auto;
}
}
/* video */
.left_mov_bg {
	width: 100%;
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.left_mov_bg::after {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(16, 57, 75, .3);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}
    
    .intro_logo {
    position: absolute;
  top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 50%;
}
    

    
#intro_txt {
	display: block;
	width: 50%;
	margin: 100px auto;
}
.intro_txt_wrap {
	display: flex;
}
    
    
  .intro_txt_txt h3 {
    font-size: 1.8rem;
    margin: 1em 0;
    letter-spacing: 0.5em;
    line-height: 2;
}  
    
    
.intro_txt_txt p {
    font-size: 1.4em;
    text-align: justify;
    line-height: 3;
}


@media screen and (max-width: 740px) {
#intro_txt {
	flex-direction: column-reverse;
 
}
    #intro_txt {
    width: 80%;
}
    
    .intro_txt_txt p {
    font-size: 1.3em;
    line-height: 2;
}
    
}
/*ここから各セクション*/

/*コーディネート*/

.cdn_wrap {
	display: flex;
	margin: 10em auto;
}

@media screen and (min-width: 1791px) {
}

@media screen and (max-width: 1790px) {
}

@media screen and (max-width: 1360px) {
.cdn_wrap {
	margin: 14em 0;
}
}

@media screen and (max-width: 1090px) {
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 480px) {
}
.cdn_left {
	position: relative;
}
.cdn_left h2 {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    position: absolute;
    text-align: center;
    top: 12%;
    left: 3.5%;
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 1.6em;
}
    
.cdn_left h4 {
    font-size: 1.2em;
    margin: 1em 1em;
    line-height: 1.7;
}  
    
    
    
    
    
    
.cdn_img_left {
	width: 80%;
	margin: 10%;
}
.cdn_img_right {
}
/*コーディネート使用アイテム*/
.cdn_right_item_list {
	font-size: 0.8rem;
	line-height: 1.5;
	margin: 0.5em;
}

    .cdn_right_item_list li span {
    font-weight: 800;
    margin-right: 0.5em;
    border-bottom: solid 1px;
}
@media screen and (max-width: 740px) {
.cdn_wrap {
	flex-direction: column-reverse;
}
.cdn_left h2 {
    /* writing-mode: horizontal-tb; */
    -webkit-writing-mode: inherit;
    -ms-writing-mode: tb-rl;
    position: inherit;
    text-align: center;
    top: auto;
    left: auto;
    font-weight: 700;
    letter-spacing: 0.25em;
    font-size: 1.6em;
    margin: 100px auto 50px;
	padding: 0 2em:
}

.cdn_img_left {
    width: 100%;
    margin: auto;
}    
    
    
}

/*アイテム一覧*/
.figcaption-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}


.figcaption-description {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: justify;
}



@media screen and (min-width:482px) and ( max-width:740px) {
    /*　画面サイズが768pxから1024pxまではここを読み込む　*/
	
.figcaption-description {
    font-size: 0.8rem;
    line-height: 1.5;
    text-align: justify;
}
	
	}
	
	/*==================================================
ページトップ
===================================*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#942D2F;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



footer {
    margin: 200px auto 100px;
    text-align: center;
    font-size: 0.7rem;
}

