@charset "utf-8";
/* CSS Document */

html {
  font-size: 10px;
}
body {
  font-family: "FOT-TsukuARdGothic Std", sans-serif;
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
	display: none;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.ffft {
	font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
	font-family: "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ffyg {
	font-family:"游ゴシック";
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}
.sec-padding {
	padding: 10rem 0;
}
.sec-ttl h4 {
	font-size: 30px;
	text-align: center;
	position: relative;
}
.sec-ttl h4 span {
	font-weight: normal;
	font-size: 20px;
	color: #5E4724;
}
.sec-ttl h4::before {
	content: "";
	width: 120px;
	height: 100px;
	background: url("../img/sec_ttl-bg.png");
	background-size: cover;
	position: absolute;
	top:-50px;
	left: 50%;
	transform: translate(-50%);
	z-index: -1;
}
.sec-ttl {
	width: 100%;
	position: relative;
	padding: 5rem 0;
}
.sec-ttl::before {
	content: "";
	width: 280px;
	height: 280px;
	background: url("../img/deco01.png");
	background-size: cover;
	position: absolute;
	left: 20rem;
	top:-5rem;
}
.sec-ttl::after {
	content: "";
	width: 280px;
	height: 150px;
	background: url("../img/deco02.png");
	background-size: cover;
	position: absolute;
	right: 20rem;
	top:0;
}

@media screen and (max-width:1280px) {
	.sec-ttl::before {
		position: absolute;
		left: 10rem;
		top:-5rem;
	}
	.sec-ttl::after {
		position: absolute;
		right: 10rem;
		top:0;
	}
}

/*ヘッダー*/
#header {
	background: #fff;
}
#header h1 {
	max-width: 400px;
	margin: auto;
}
/*グローバルメニュー*/
.g-nav {
	width: 100%;
	padding:1rem 0;
}
.g-nav.fixed{
	position: fixed;/*fixedを設定して固定*/
  z-index: 999;/*最前面へ*/
  top:0;/*位置指定*/
  left:0;/*位置指定*/
	padding: 2rem 0;
	background: #fff;
}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	width: 60%;
	margin: auto;
}
@media screen and (max-width: 1280px){
	nav{
		width: 80%;
		margin: auto;
	}
}
/*ナビゲーションを横並びに*/
nav ul{
	justify-content: space-between;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	color: #674A28;
	transition:all .3s;
	text-align: center;
	font-size: 20px;
}

nav ul li a:hover{
	color:#7d7d7d;	
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:50%;
	top:7rem;
	transform: translate(-50%);
	z-index: 4;
    /*形状を指定*/
	background:#F9F6EE;
	width:30rem;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}
.has-child li a{
	padding: 1rem;
	font-size: 1.8rem;
}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #333;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#F5999C;
}



/*メインビジュアル*/
.mainvisual {
	height: 80vh;
	background-position: center center;
	background-size: cover;
	position: relative;
}
.mv-inner {
	width: 80%;
	margin: auto;
	align-items: center;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.mv-inner .left,
.mv-inner .right {
	width: 48%;
}
.mv-inner .left h2 {
	font-size: 60px;
	color:rgba(139,118,78,1.00);
	text-shadow: 2px 2px 4px #ccc;
	
}
.mv-inner .left h3 {
	font-size: 36px;
	color: #fff;
	text-shadow: 2px 2px 4px #ccc;
	margin-top: 3rem;
}
.mv-inner .right {
	display: none;
}
@media screen and (max-width:1280px){
	.mv-inner {
		width: 98%;
	}
		.mv-inner .left h2 {
		font-size: 50px;
	}
	.mv-inner .left h3 {
		font-size: 30px;
	}

}

/*お知らせ*/
.info {
	max-width: 1000px;
	margin: 5rem auto;
	padding: 5rem 0;
	box-shadow: 3px 3px 6px #ccc; 
}
.info-container .left {
	width: 25%;
}
.info-container .right {
	width: 75%;
}
.info-container .left h4 {
	font-size: 30px;
	text-align: center;
}
.info-container .left h4 span {
	font-weight: normal;
	font-size: 20px;
	color: #5E4724;
}
.info-container .right dl {
	font-size: 18px;
	width: 95%;
}
.info-container .right dl dt {
	width: 20%;
	border-bottom: 1px solid #ccc;
	text-align: center;
}
.info-container .right dl dd {
	width: 80%;
	border-bottom: 1px solid #ccc;
}


/*------- 感染症対策*-------*/
#covid19 {
	padding: 5rem 0;
}
.accordion-001 {
  max-width: 900px;
	margin: 0 auto;	
}
.accordion-001 summary {
  display: flex;
	flex-direction: column;
  align-items: center;
  position: relative;
  padding: 4rem 0 ;
	text-align: center;
	box-sizing: border-box;
	background: #C9F5FC;
	background-size: cover;
	background-position: center;
	margin: 0 auto;
	font-size: 4rem;
  cursor: pointer;
}
.accordion-001 summary::-webkit-details-marker {
    display: none;
}
.accordion-001 summary::after {
	transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #707070;
    border-right: 3px solid #707070;
    content: '';
    transition: transform .3s;
}
.accordion-001[open] summary::after {
	transform: rotate(225deg);
}
.accordion-open {
    transform: translateY(-10px);
    opacity: 1;
    margin: 0;
    padding: 1em 2em 2em 2em;
    transition: transform .5s, opacity .5s;
	background:  #C9F5FC;
	background-size: cover;
	background-position: center;
}
.accordion-open[open] {
    transform: none;
    opacity: 1;
}
.covid19-flex {
	display: flex;
	justify-content: space-between;
	align-content: center;
	flex-wrap: wrap;
}
.covid19-list {
	width: 30%;
	margin: 0 auto;
	padding: 30px 0;
	text-align: center;
}
.covid19-list img {
	width: 70%;
	margin: 0 auto;
}
.covid19-list span {
	display: inline-block;
	text-align: center;
	padding: 5px 0;
	font-size: 2rem;
}


/*特徴*/
.features-inner {
	margin-top: 15rem;
	flex-direction: column;
	gap:10rem;
	background: url("../img/f-bg.png");
	background-size: cover;
	background-position: center;
	padding-bottom: 15rem;
}
.features-inner .item {
	width: 80%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.features-inner .item .img {
	width: 50%;
}
.features-inner .item .txt {
	width: 45%;
}
.features-inner .item .txt .f-no {
	font-size: 80px;
	color: #9E887E;
	margin-bottom: 20px;
}
.features-inner .item .txt .f-no .f01{
	color: #EF719F;
}
.features-inner .item .txt .f-no .f02{
	color: #64BFEE;
}
.features-inner .item .txt .f-no .f03{
	color: #72E5B0;
}
.features-inner .item .txt .f-no .f04{
	color: #F2C941;
}

.features-inner .item .txt h5 {
	font-size: 32px;
	margin-bottom: 20px;
}
.features-inner .item .txt .f-txt {
	font-size: 20px;
	line-height: 2;
}


@media screen and (max-width: 1280px){
	.features-inner .item {
		width: 95%;
	}
}


/*診療案内*/
#medical {
	
}
.medical-inner {
	padding: 10rem 0;
	background: rgba(248,222,228,0.49);
	position: relative;
}
.medical-inner::before {
	content: "";
	width: 100%;
	height: 60px;
	background: url("../img/medical-bg_top.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	top:-60px;
	left: 50%;
	transform: translate(-50%);
}
.medical-inner::after {
	content: "";
	width: 100%;
	height: 60px;
	background: url("../img/medical-bg_bottom.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	bottom:-60px;
	left: 50%;
	transform: translate(-50%);
}
.med-icon-wrapper {
	width: 1200px;
	margin: 10rem auto 0 auto;
	justify-content:space-between;
	gap: 5rem;
}
.med-icon-wrapper .item {
	width: 25%;
	background: #FCF6EC;
	padding: 30px 0 20px 0;
	position: relative;
	border-radius: 3rem;
}
.med-icon-wrapper .item a {
	display: block;
}
.med-icon {
	width: 150px;
	margin: auto;
}
.med-ttl {
	text-align: center;
	font-size: 24px;
	margin-top: 1rem;
	color: #5E4724;
}
.med-icon-wrapper .item::before {
	content: "→";
	font-size: 30px;
	color: #5E4724;
	position: absolute;
	bottom: 5px;
	right: 10px;
}


/*ご挨拶*/
.greeting-inner {
	width: 70%;
	margin: 10rem auto 0 auto;
	position: relative;
}
.greeting-inner .img {
	width: 45%;
}
.greeting-inner .img img {
	border-radius: 3rem;
}
.greeting-inner .txt {
	width: 55%;
	position: absolute;
	right: 18px;
	top: -5%;
	background: rgba(201,231,235,0.5);
	padding: 8rem 0;
	border-radius: 3rem;
	z-index: -1;
}
.greeting-inner .txt p {
	width: 75%;
	margin: auto;
	font-size: 24px;
	line-height: 2;
	color: #5E4724;
}

@media screen and (max-width: 1280px) {
	.greeting-inner {
		width: 90%;
		margin: 16rem auto 0 auto;
	}
	.greeting-inner .txt {
		position: absolute;
		right: 18px;
		top: -20%;
	}
}

/*フッター*/
#footer {
	margin-top: 10rem;
	padding: 10rem 0 55rem 0;
	position: relative;
}
#footer::before {
	content: "";
	width: 350px;
	height: 305px;
	background: url("../img/foot-deco.png");
	background-size: cover;
	opacity: 0.8;
	position: absolute;
	top: 0;
	left: 0;
}
#footer::after {
	content: "";
	width:100%;
	height: 55rem;
	background: url("../img/foot-bottom.png");
	background-size: cover;
	background-position: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%);
}
.foot-inner {
	width: 70%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.foot-inner .left{
	width: 50%;
}
.foot-inner .right {
	width: 45%;
}
.foot-logo {
	width: 90%;
	margin: auto;
}
.foot-inner .left dl {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	box-sizing: border-box;
	margin-top: 3rem;
	align-items: center;
	font-size: 18px;
}
.foot-inner .left dl dt {
	width: 20%;
	margin-bottom: 16px;
	position: relative;
}
.foot-inner .left dl dt::before {
	content: "●";
	color: #B5DCE6;
	font-size: 20px;
	position: absolute;
	top: 0;
	left: -30px;
}
.foot-inner .left dl dd {
	width: 80%;
	margin-bottom: 16px;
}

.bnrs {
	margin-top: 2rem;
	gap:3rem;
}
.tel-bnr {
	width: 370px;
	padding: 20px 0 10px 0;
	box-shadow: 3px 3px 6px #ccc;
}
.web-bnr {
	width: 220px;
	padding: 20px 0 10px 0;
	background: #87D0E6;
	box-shadow: 3px 3px 6px #ccc;
}
.bnr-ttl {
	width: 90%;
	margin: auto;
	background: #F6F6F1;
	border-radius: 3rem;
	padding: 5px 0;
}
.bnr-ttl p {
	text-align: center;
	font-size: 18px;
}
.tel-bnr a,
.web-bnr a {
	display: block;
	text-align: center;
	font-size: 32px;
	color: #333;
}
.tel-bnr a i {
	color: #87D0E6;
	font-size: 28px;
	margin-right: 5px;
}
.web-bnr a i {
	color: #fff;
	font-size: 28px;
	margin-right: 5px;
}

.foot-inner .right .clinic-img {
	margin-bottom: 3rem;
}
.foot-inner .right .clinic-img img {
	border-radius: 3rem;
}
.foot-inner .right .time-table-memo {
	margin-top: 2rem;
	font-size: 18px;
}
.copy {
	text-align: center;
	font-size: 14px;
	margin-top: 10rem;
}

@media screen and (max-width:1280px){
	#footer {
		padding: 10rem 0 35rem 0;
		position: relative;
	}
	.foot-inner {
		width: 90%;
	}
	#footer::before {
		content: "";
		width: 180px;
		height: 160px;
		background: url("../img/foot-deco.png");
		background-size: cover;
		opacity: 0.8;
		position: absolute;
		top: 0;
		left: 0;
	}
	#footer::after {
		content: "";
		width:100%;
		height: 35rem;
		background: url("../img/foot-bottom.png");
		background-size: cover;
		background-position: center;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translate(-50%);
	}
}



/*-- 下層 --*/
.s-mainvisual {
	height: 50vh;
	background: #FCF2F8;
	position: relative;
} 
.page-ttl {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%);
}
.page-ttl h2 {
	text-align: center;
	font-size: 70px;
	color: #674A28;
}
.page-ttl::before {
	content: "";
	width: 1200px;
	height: 145px;
	background: url("../img/page-ttl_deco.png");
	background-size: cover;
	position: absolute;
	bottom: -170px;
	left: 50%;
	transform: translate(-50%);
}
.s-secttl {
	margin-bottom: 10rem;
}
.s-secttl h4 {
	font-size: 40px;
	text-align: center;
	position: relative;
}
.s-secttl h4::before {
	content: "";
	width: 120px;
	height: 110px;
	background: url("../img/sec_ttl-bg.png");
	background-size: cover;
	position: absolute;
	top:-50px;
	left: 50%;
	transform: translate(-50%);
	z-index: -1;
}

/*院長紹介*/
#doctor {
	margin-bottom: 10rem;
}
.doctor-content {
	position: relative;
}
.doctor-content::before {
	content: "";
	width: 180px;
	height: 143px;
	background: url("../img/doctor-deco01.png");
	background-size: cover;
	position: absolute;
	top:0;
	left:50px;
}
.doctor-content::after {
	content: "";
	width: 300px;
	height: 150px;
	background: url("../img/doctor-deco02.png");
	background-size: cover;
	position: absolute;
	bototm:0;
	right:50px;
}
.doctor-content .inner {
	width: 70%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.doctor-content .inner .txt {
	width: 50%;
}
.doctor-content .inner .img {
	width: 45%;
}
.doctor-txt {
	font-size: 20px;
	line-height: 2;
}
.doctor-name {
	font-size: 36px;
	text-align: right;
	margin-top: 2rem;
}

@media screen and (max-width:1280px){
	.doctor-content .inner {
		width: 90%;
		padding-top: 10rem;
	}
	.doctor-content::before {
		position: absolute;
		top:-50px;
		left:50px;
	}
}


/*- 医院案内 -*/
/*こだわり*/
.commit-top {
	width: 60%;
	margin: auto;
}
.commit-img {
	width: 70%;
	margin: auto;
}
.commit-top  h5 {
	margin-top: 2rem;
	text-align: center;
	color: #9E887E;
	font-size: 40px;
	line-height: 1.5;
}
.commit-wrapper {
	width: 1200px;
	margin: 10rem auto;
	flex-direction: column;
	gap:5rem;
}
.commit-wrapper .item {
	width: 100%;
}
.commit-ttl {
	position: relative;
}
.commit-ttl::before {
	content: "";
	width: 50px;
	height: 50px;
	background: #9E887E;
	position: absolute;
	top: 0;
	left:0;
}
.commit-ttl::after {
	content: "";
	width: 100%;
	height: 1px;
	background: #9E887E;
	position: absolute;
	bottom:10px;
	left: 50%;
	transform: translate(-50%);
}
.commit-ttl h6 {
	font-size: 30px;
	margin-left: 60px;
}
.commit-txt {
	width: 90%;
	margin: 3rem auto;
}
.commit-txt p {
	font-size: 20px;
	line-height: 2;
}

/*選ばれる理由*/
.point-wrapper {
	width: 1200px;
	margin: 5rem auto 0 auto;
	flex-direction: column;
	gap:10rem;
}
.point-wrapper .item {
	justify-content: space-between;
	align-items: center;
}
.point-wrapper .item .txt {
	width: 60%;
}
.point-wrapper .item .img {
	width: 35%;
}
.point-ttl {
	font-size: 28px;
	margin-bottom: 2rem;
}
.point-txt {
	font-size: 18px;
	line-height: 2;
}

/*院内紹介*/
.pics-wrapper {
	width: 1200px;
	margin: 5rem auto;
	justify-content: space-between;
	align-items: flex-start;
}
.pics-wrapper .item {
	width: 22%;
}
.pics-wrapper .item img {
	width: 100%;
} 
.pics-wrapper .item .pic-ttl {
	font-size: 24px;
	margin-top: 10px;
}
.pics-wrapper .item .pic-txt {
	font-size: 18px;
	line-height: 1.5;
	margin-bottom: 5rem;
}


/*- 診療案内 -*/
.bg-pink {
	background: #FBF2F3;
}
.medical-box {
	width: 1200px;
	margin: 18rem auto 10rem auto;
	background: #fff;
	background-image: linear-gradient(-45deg, #FCCDD2 200px, transparent 0),linear-gradient(135deg, #D7E9EF 100px, transparent 0);
	padding: 5rem 0;
}
.medical-box .inner {
	width: 80%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.medical-box .inner .txt {
	width: 50%;
}
.medical-box .inner .txt p {
	font-size: 18px;
	line-height: 2;
}
.medical-box .inner .pic {
	width: 48%;
	margin-top: -100px;
}
.medical-box .inner .pic img {
	width: 100%;
}


/*- 採用情報 -*/
.recruit-top {
	width: 1000px;
	margin: 5rem auto;
}
.recruit-top p {
	text-align: center;
}
.recruit-top .message-b {
	font-size: 30px;
	margin-bottom: 3rem;
}
.recruit-top .message-s {
	font-size: 20px;
	line-height: 2;
}
.rec-detail .wait {
	width: 800px;
	margin: auto;
	border: 1px solid #333;
	padding: 5rem 0;
}
.rec-detail .wait p {
	font-size: 20px;
	text-align: center;
}


/*--- 診療時間・あくせす ---*/
/*診療時間*/
#hours .inner {
	width: 60%;
	margin: auto;
	justify-content: space-between;
}
#hours .inner .txt {
	width: 60%;
}
#hours .inner .txt .hours-logo {
	width: 60%;
	margin: auto;
}
.foot-adress {
	font-size: 20px;
	text-align: center;
	letter-spacing: 2px;
	margin: 2rem auto;
}
#hours .inner .pic {
	width: 38%;
}
.time-table {
	width: 40%;
	margin: 5rem auto 0 auto;
}
.time-table p {
	font-size: 18px;
	margin-top: 5px;
}
@media screen and (max-width:1280px){
	#hours .inner {
	width: 80%;
	margin: auto;
	justify-content: space-between;
}
}

/*アクセス*/
.access-map {
	width: 60%;
	margin: 5rem auto;
}
.access-map iframe {
	width: 100%;
}
.aceess-minittl {
	width: 300px;
	margin: auto;
	padding: 1rem 0;
	border-bottom: 1px solid #874316;
}
.aceess-minittl p {
	font-size: 2.8rem;
	text-align: center;
}
.access-car {
	margin-bottom: 5rem;
}
.access-txt {
	font-size: 2rem;
	text-align: center;
	line-height: 2;
	margin: 1rem auto;
}
.parking-img {
	width: 400px;
	margin: 2rem auto 5rem auto;
}



/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border: 1px solid #874316;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #7d7d7d;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#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);
  }
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
