﻿@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600;900&&display=swap");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font: inherit; font-size: 100%; vertical-align: baseline; }

html { line-height: 1; }
ol, ul { list-style: none; }
table { border-collapse: collapse; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; vertical-align: middle; }
q, blockquote { quotes: none; }
q:before, q:after, blockquote:before, blockquote:after { content: ""; content: none; }
a img { border: none; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary { display: block; }
html { overflow: auto; scroll-behavior: smooth; }
body { 
	overflow: hidden;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	color: #333333;
	font-size: 100%;
	line-height: 160%;
}

a {color: #fff;text-decoration: none;}
img {max-width: 100%;height: auto;width /***/: auto;margin: 0;padding: 0;vertical-align: bottom;}
.clear {clear: both;}
strong {font-weight: bold;}
.sp{display:none;}

/* ヘッダー
=========================================================================================== */
.head{
	width: 100%;
	background:#FFF;
	border-bottom: 1px solid #CCC;
    position: relative;
    z-index: 1;
}
.head .cont{
	max-width: 1000px;
	margin: 0 auto;
	padding: 5px 0;
	display: block;
	overflow: hidden;
}
.head .cont img{
    height: 55px;
    margin: 1% 0;
}
.petal-area{
  position: relative;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  background: url(../img/main.png) center / cover no-repeat;
  aspect-ratio: 1918 / 1356;
}

.petal{
  position: absolute;
  top: -40px;
  left: 0;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}
/* タイトル
=========================================================================================== */
#title{
	width: 100%;
    margin: 5% auto 2% auto;
    position: relative;
}
#title .main{
    width: 80%;
    margin: 0 auto;
    position: relative;
}
#title .main-img{
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    opacity: 0;
    z-index: 1;
}
#title .line{
    position: absolute;
    opacity: 0;
}
#title .line img {
  width: 100%;
  height: auto;
  display: block;
}
#title .line1{
    top:0;
    left: -3%;
    width: 26.2%;
    height: auto;
}
#title .line2{
    top:-2%;
    left: 57%;
    width: 1.7%;
    height: auto;
}
#title .line3{
    top:1%;
    left: 93%;
    width: 1.7%;
    height: auto;
}
#title .line4{
    top:25%;
    left: 0%;
    width: 1.7%;
    height: auto;
}
#title .line5{
    top:30%;
    left: 72%;
    width: 26.9%;
    height: auto;
}
#title .line6{
    top:55%;
    left: -3%;
    width: 12.8%;
    height: auto;
}
#title .line7{
    top:53%;
    left: 93%;
    width: 8.7%;
    height: auto;
}
#title .line8{
    top:80%;
    left: 0%;
    width: 7%;
    height: auto;
}
#title .line9{
    top:67%;
    left: 89%;
    width: 1.7%;
    height: auto;
}
#title.is-active .line1{
    animation: LineLtoR 0.5s ease forwards;
    animation-delay: 0;
}
#title.is-active .line2{
    animation: LineTtoB 0.5s ease forwards;
    animation-delay: 0.5s;
}
#title.is-active .line3{
    animation: LineTtoB 0.5s ease forwards;
    animation-delay: 0.3s;
}
#title.is-active .line4{
    animation: LineBtoT 0.5s ease forwards;
    animation-delay: 0.7s;
}
#title.is-active .line5{
    animation: LineRtoL 0.5s ease forwards;
    animation-delay: 0.1s;
}
#title.is-active .line6{
    animation: LineLtoR 0.5s ease forwards;
    animation-delay: 0.2s;
}
#title.is-active .line7{
    animation: LineRBtoLT 0.5s ease forwards;
    animation-delay: 0.8s;
}
#title.is-active .line8{
    animation: LineLBtoRT 0.5s ease forwards;
    animation-delay: 0.4s;
}
#title.is-active .line9{
    animation: LineBtoT 0.5s ease forwards;
    animation-delay: 0.6s;
}
#title.is-active .main-img{
    animation: mainImg 3.1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes LineLtoR {
0% {
    opacity: 0;
    transform: translateX(-30%); 
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes LineRtoL {
0% {
    opacity: 0;
    transform: translateX(30%); 
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
@keyframes LineTtoB {
0% {
    opacity: 0;
    transform: translateY(-30%); 
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes LineBtoT {
0% {
    opacity: 0;
    transform: translateY(30%); 
}
100% {
    opacity: 1;
    transform: translateY(0);
}
}
@keyframes LineRBtoLT {
0% {
    opacity: 0;
    transform: translateX(30%) translateY(30%); 
}
100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes LineLBtoRT {
0% {
    opacity: 0;
    transform: translateX(-30%) translateY(30%); 
}
100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes LineRBtoLT {
0% {
    opacity: 0;
    transform: translateX(30%) translateY(30%); 
}
100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
}
@keyframes mainImg {
0% {
    opacity: 0;
}
100% {
    opacity: 1;
}
}

#title .menu ul{
    width: 80%;
    margin: 0 auto;
    padding: 5% 0 5% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#title .menu ul li{
    width: 32%;
    margin-right: 1%;
}
#title .menu ul li:last-child{
    margin-right: 0%;
}



/* カテゴリー
======================================================== */
.cate{
    width: 80%;
    margin: 5% auto;
}
.cate#fashion{
    background: url(../img/back-fashion1.png) no-repeat;
    background-size: 100%;
}
.cate#fashion .end{
    aspect-ratio: 1510 / 65;
    background: url(../img/back-fashion2.png) no-repeat bottom;
    background-size: 100% 100% ;
}
.cate#life{
    background: url(../img/back-life1.png) no-repeat;
    background-size: 100%;
}
.cate#life .end{
    aspect-ratio: 1510 / 65;
    background: url(../img/back-life2.png) no-repeat;
    background-size: 100% 100% ;
}
.cate#service{
    background: url(../img/back-service1.png) no-repeat;
    background-size: 100%;
}
.cate#service .end{
    aspect-ratio: 1510 / 65;
    background: url(../img/back-service2.png) no-repeat;
    background-size: 100% 100% ;
}
.cate .cont{
    width: 80%;
    margin: 0 auto;
    padding: 3% 0 0 0;
}
.cate h3{
    margin: 0 auto 0 auto;
    padding: 10% 0 0 0;
    opacity: 0;
}
.cate h3.is-active{
    animation: inTx3 0.5s ease forwards;
}
@keyframes inTx3 {
0% {
    opacity: 0;
    transform: translateX(30%); 
}
100% {
    opacity: 1;
    transform: translateX(0);
}
}
.cate ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
}
.cate ul li{
    width: 48%;
    text-align: center;
    margin: 8% 0 0 0;
    opacity: 0;
}
.cate ul li.is-active{
    animation: inTx1 0.6s ease forwards;
}
.cate ul li img{
    width: 100%;
    height: 350px;
    object-fit: contain;
}
@media screen and (max-width: 1550px) {
.cate ul li img{
    height: 300px;
}
}
@media screen and (max-width: 1100px) {
.cate ul li img{
    height: 200px;
}
}
@media screen and (max-width: 768px) {
.cate ul li img{
    height: 75px;
}
}

@keyframes inTx1 {
0% {
    opacity: 0;
    transform: scaleX(0) scaleY(0);
}
50% {
    opacity: 1;
    transform: scaleX(1.2) scaleY(1.2);
}
100% {
    opacity: 1;
    transform: scaleX(1) scaleY(1);
}
}
/* バナー
======================================================== */
.banner{
    text-align: center;
    padding: 0 0 5% 0;
    border-bottom:  1px solid #333;
}
.banner ul {
    width: 80%;
    margin: 0 auto;
}
.banner ul li{
    margin-bottom: 5%;
}
.banner ul li:first-child{
    width: 75%;
    margin: 2% auto 6% auto;
}
.banner p{
    font-size: calc(8 *(100vw/768));
    line-height: 1.8;
}

/* ページトップ
======================================================== */
#page-top {
    position: fixed;
    bottom: 6%;
    right: 20px;
    z-index: 1;
    border: 2px solid #FFF;
    text-align: center;
    font-weight: bold;
    padding: 0.5em 1em ;
    background: #00b7e7;
    border-radius: 5px;
    filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.5));    
}


/* フッター
=========================================================================================== */
footer{
    width: 100%;
    margin: 0 auto;
	padding: 8px 0;
	font-size: 10px;
    background:#FFF;
	color:#333;
	text-align:center;
	clear:both;
    border-bottom:  1px solid #333;
}

ul.ft_menu { width:1000px; text-align:center; margin:40px auto; }
ul.ft_menu li { font-size:1.5em; margin:20px 1em; display:inline; }
ul.ft_menu li a { color:#333; display: inline-block; }

.copyright{
    width: 100%;
    margin: 0 auto;
	padding: 8px 0;
	font-size: 10px;
    background:#FFF;
	color:#333;
	text-align:center;
	clear:both;  
}
.copyright .tx{margin: 1em 0;}
.copyright .link{
    width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin:40px auto;padding-bottom: 40px}
.copyright .link a:nth-child(1) img{height: 50px;}
.copyright .link a:nth-child(2) img{height: 35px;}

/*===============================================
●style.css 画面の横幅が1000pxまで
===============================================*/
@media screen and (max-width: 1000px) {
.head .cont{
	width: 98%;
	margin: 0 auto;
	padding: 5px 0;
	display: block;
	overflow: hidden;
}
.head .cont img{
    height: 40px;
}

/* タイトル
=========================================================================================== */
#title{
	width: 100%;
    margin: 5% auto 2% auto;
    position: relative;
}
#title .main{
    width: 90%;
    margin: 0 auto;
    position: relative;
}
#title .main-img{
    position: relative;
    opacity: 0;
    z-index: 1;
}


#page-top {
    font-size: 80%;
    padding: 0.2em 1em ;
    bottom: 2%;
    
}

/* タイトル
=========================================================================================== */



/* フッター
=========================================================================================== */
footer{
    width: 100%;
    margin: 0 auto;
	padding: 8px 0;
	font-size: 10px;
    background:#FFF;
	color:#333;
	text-align:center;
	clear:both;
    border-bottom:  1px solid #333;
}
ul.ft_menu { width:95%; text-align:center; margin:2% auto; }
ul.ft_menu li { font-size:1.2em; margin:3%; display:block; text-align:center; width:100%; }
	
.copyright .link{
    width: 95%;
    flex-wrap: wrap;
}
.copyright .link a:nth-child(1) img{height: auto;width: 65%;margin-bottom: 10%;}
.copyright .link a:nth-child(2) img{height: auto;width: 70%;}

/* ボトム
======================================================== */
.bottom p{
    font-size: 50%;
}
}
/*===============================================
●tablet.css 画面の横幅が768pxまで
===============================================*/
@media screen and (max-width: 768px) {

.sp{display:block;}
.pc{display: none;}
	
}
/*===============================================
●smart.css  画面の横幅が640pxまで
===============================================*/
@media screen and (max-width:640px) {
.head .cont img{
	height: 25px;	
}
	
}



