@charset "utf-8";
/* CSS Document */
body {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic";
  color: #333333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;
  text-align: justify;
}
a {
  color: #90b5a8;
  text-decoration: none;
}
a:hover {
  color: #948172;
}
::selection {
  background-color: #e7d5bc;
}
::-moz-selection {
  background-color: #e7d5bc;
}
body, #mainvisual .inner, header, footer, nav {
  min-width: 1200px;
}



/*============================================================================

	header

============================================================================*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  z-index: 9999;
  transition: ease-in-out 0.3s;
}
.header.isSmall .header_inner {
  padding: 2px 6%;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 6%;
  position: relative;
  transition: ease-in-out 0.3s;
}
.logo{
	margin-right: auto;
}
.logo h1, .logo h1 img {
  width: 335px;
  height: 72px;
}
header .sns_icon {
  z-index: 10;
	margin-right: 20px;
}
header .sns_icon ul {
  justify-content: flex-end;
}
.sns_icon ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_icon li {
  margin: 0 15px;
}
.sns_icon img {
  width: 33px;
  height: 33px;
}
.sns_icon li:nth-child(2) img {
  width: 38px;
  height: 32px;
}
/* ここから下がハンバーガーメニューに関するCSS */
/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}
/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 90px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100; /* 重なり順を一番上にする */
  cursor: pointer;
}
/* ハンバーガーメニューのアイコン */
.drawer_open span, .drawer_open span:before, .drawer_open span:after {
  content: '';
  display: block;
  height: 6px;
  width: 50px;
  border-radius: 3px;
  background: #826955;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 15px;
}
/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 15px;
}
/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #fff;
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 100%;
  z-index: 99;
  background: #ab9583;
  transition: .5s;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* メニュー黒ポチを消す */
.nav_list01 {
  list-style: none;
  margin-right: 60px;
}
.nav_list01 a {
  color: #fff;
  letter-spacing: 2px;
}
.nav_list01 li {
  margin-bottom: 20px;
}
.nav_list01 li a:hover {
  color: #826955;
}
.nav_list02 a {
  display: table;
  width: 199px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
/*  background: #d5a25b;*/
	background: #81b597;
  transition: ease-in-out 0.3s;
}
.nav_list02 li {
  margin-bottom: 15px;
}
.nav_list02 li:nth-child(2) a {
/*  background: #81b597;*/
	background: #7cafb4;
}
.nav_list02 li:nth-child(3) a {
/*  background: #7cafb4;*/
	background: #d5a25b;
}
.nav_list02 li:nth-child(4) a {
  background: #e8a792;
}
.nav_list02 a:hover {
  background: #826955 !important;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0; /* メニューを画面に入れる */
}
/*============================================================================

	#mainvisual

============================================================================*/
/* 下層ページのメインビジュアルの高さ、背景画像（トップページの高さはtop.css参照） */
#mainvisual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 154px 6% 0;
  box-sizing: border-box;
}
.mv_img {
  width: 50%;
  margin-right: 4%;
}
.mv_title {
  width: 40%;
  font-size: 5vw;
  font-family: kremlin-pro-expanded, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #8a7a6d;
}
.mv_catch {
  width: 40%;
}
.mv_img img, .mv_catch img {
  width: 100%;
  height: auto;
}
.mv_catch img {}
/*==================================================================

	#contents

==================================================================*/
main {
  display: block;
}
#contents {
  position: relative;
  padding-top: 70px;
}
#contents::after {
  display: block;
  clear: both;
  content: "";
}
/*==================================================================

	.breadcrumb（ぱんくずリスト）

==================================================================*/
.breadcrumbs {
  margin-bottom: 15px;
  font-size: 12px;
}
.breadcrumbs li:first-child {
  list-style: none;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs li {
  float: left;
  margin-right: 5px;
  padding-left: 0px;
  margin-bottom: 15px;
}
.breadcrumbs li:after {
  font-family: FontAwesome;
  content: ">";
  padding-left: 10px;
}
.breadcrumbs li:last-child:after {
  content: "";
}
/*============================================================================

	$footer

============================================================================*/
footer {
  position: relative;
  width: 100%;
  background: #f8f1e6;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.footer_contents {
  display: flex;
  align-items: center;
  padding: 200px 0;
  width: 1200px;
  margin: auto;
}
footer .logo, footer .logo img {
  width: 203px;
  height: 163px;
  margin-right: 120px;
}
.footer_link01 {
  margin-right: 50px;
}
.footer_link01 li {
  margin-bottom: 10px;
}
.footer_link01 li:last-child, .footer_link02 li:last-child {
  margin-bottom: 0;
}
.footer_link01 a {
  color: #333;
  letter-spacing: 2px;
}
.footer_link01 a:hover {
  color: #826955;
}
.footer_link02 a {
  display: table;
  width: 199px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
/*  background: #d5a25b;*/
	background: #81b597;
  transition: ease-in-out 0.3s;
}
.footer_link02 li {
  margin-bottom: 15px;
}
.footer_link02 li:nth-child(2) a {
/*  background: #81b597;*/
	background: #7cafb4;
}
.footer_link02 li:nth-child(3) a {
/*  background: #7cafb4;*/
	background: #d5a25b;
}
.footer_link02 li:nth-child(4) a {
/*  background: #e8a792;*/
	background: #d5a25b;
}
.footer_link02 a:hover {
  background: #826955 !important;
}
.footer_sns {
  margin-left: auto;
  width: 250px;
  text-align: center;
}
.footer_sns dt {
  font-size: 18px;
  font-family: kremlin-pro-expanded, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #7a6757;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.footer_sns li {
  margin: 0 10px;
}
.footer_sns li a {
  background: #fff;
  width: 87px;
  height: 87px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  transition: ease-in-out 0.3s;
  justify-content: center;
}
.footer_sns li a:hover {
  background: #dfd4c3;
}
.copy {
  text-align: center;
  color: #fff;
  font-size: 14px;
  background: #ab9583;
  line-height: 72px;
}
.sp_only {
  display: none;
}
/*==================================================================

	タイトル

==================================================================*/
.title01 {
  position: relative;
  text-align: center;
  font-family: kremlin-pro-expanded, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #8a7a6d;
  font-size: 60px;
  letter-spacing: 2px;
  line-height: 1.4;
  padding: 0 0 20px;
  margin-bottom: 65px
}
.title01:after {
  background: url("../images/h2_bg.png");
  width: 171px;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
}
.title02 {
  text-align: center;
  font-size: 26px;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 30px;
}
.title03 {
  font-size: 22px;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}
/*==================================================================

	共通

==================================================================*/
.box1 {
  position: relative;
  width: 1200px;
  margin: 0 auto;
}
#link01, #link02, #link03, #link04, #link05, #link06, #link07, #link08, #link09 {
  padding-top: 100px;
  margin-top: -100px;
}
.center_text {
  text-align: center;
  line-height: 2.8;
  letter-spacing: 2px;
  margin-bottom: 63px;
}
.center_text .text_com01 {
  color: #4d9ea6;
}
.center_text .text_com02 {
  color: #a08155;
  font-size: 14px;
}
ul.shop_links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 95px;
}
ul.shop_links li {
  width: 32%;
	margin: 0 2%;
}
ul.shop_links a {
  display: block;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 2px;
  padding: 26px 0;
  text-align: center;
  border-radius: 10px;
  transition: ease-in-out 0.3s;
  position: relative;
}
ul.shop_links a:hover {
  background: #725a47 !important;
}
ul.shop_links a:after {
  content: "→";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  opacity: 0.8;
  transform: rotate(-45deg);
}
ul.shop_links li:nth-child(1) a {
/*  background: #e3b370;*/
	background: #94c3a8;
}
ul.shop_links li:nth-child(2) a {
/*  background: #94c3a8;*/
	background: #90c0c5;
}
ul.shop_links li:nth-child(3) a {
  background: #90c0c5;
}

.btn_01 a {
  display: inline-block;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
	background: #94c3a8;
  font-size: 18px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 2px;
  padding: 26px 30px;
  text-align: center;
  border-radius: 10px;
  transition: ease-in-out 0.3s;
  position: relative;
}
.btn_01 a:hover {
  background: #725a47 !important;
}

.item_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.item_box .text {
  width: 48%;
  line-height: 2.2;
  letter-spacing: 2px;
}
.item_box .item_img {
  width: 48%;
}
.item_box .item_img img {
  width: 100%;
  height: auto;
}
.point_box {
  background: #f3ebe2;
  border-radius: 50px;
  padding: 50px 50px 30px;
  margin-bottom: 160px;
}
.point_box p {
  margin-bottom: 20px;
}
/*==================================================================

	.top_news

==================================================================*/
.top_news {
  padding: 130px 0 180px;
}
.news_list li, .news_list dl {
  border-bottom: 1px solid #ece0d7;
  padding: 30px 100px;
}
.news_list li:first-child {
  border-top: 1px solid #ece0d7;
}
.news_list dl dt {
  font-size: 18px;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
	padding-top: 30px;
  color: #688175;
}
.news_list li a {
  color: #333;
}
.news_list li a:hover {
  color: #ece0d7;
}
.news_list span {
  margin-right: 80px;
}
/*==================================================================

	.top_concept

==================================================================*/
.top_concept {
  margin-bottom: 155px;
}
/*==================================================================

	.top_feature

==================================================================*/
.top_feature {
  margin-bottom: 170px;
}
.feature_list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.feature_list dl dt {
  width: 51%;
}
.feature_list dl:nth-child(odd) dt {
  order: 2;
}
.feature_list dl dt img {
  width: 100%;
}
.feature_list dl dd {
  width: 45%;
}
.feature_list dl dd p {
  width: 95%;
  padding-left: 5px;
  box-sizing: border-box;
  letter-spacing: 2.5px;
  line-height: 2.5;
}
.feature_list h3 {
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 40px;
}
.feature_list h3 span {
  display: table;
  position: relative;
  padding: 0 5px 6px;
  margin-bottom: 15px;
  color: #908168;
  z-index: 1;
}
.feature_list dl:nth-child(2) h3 span {
  color: #5d7d6c;
}
.feature_list dl:nth-child(3) h3 span {
  color: #64807f;
}
.feature_list dl:nth-child(4) h3 span {
  color: #957263;
}
.feature_list h3 span:after {
  background: #f8f1e7;
  width: 100%;
  height: 23px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: -1;
  border-radius: 50px;
}
.feature_list dl:nth-child(2) h3 span:after {
  background: #e9f5ef;
}
.feature_list dl:nth-child(3) h3 span:after {
  background: #e8f4f5;
}
.feature_list dl:nth-child(4) h3 span:after {
  background: #faf0ec;
}
/*==================================================================

	.top_links

==================================================================*/
.top_links {
  background: #e5efe7;
  padding: 140px 0;
}
.top_links_items {
  padding-top: 50px;
}
.top_links_items_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  font-family: maru-maru-gothic-blr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 60px;
}
.top_links_items_wrap .item01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background: #c1a172;
  border-radius: 40px;
  text-align: center;
  color: #fff;
  width: 421px;
  height: 332px;
  padding: 80px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.top_links_items_wrap .item01 p {
  width: 100%;
  height: auto;
}
.top_links_items_wrap:nth-child(2) .item01 {
  order: 2;
  background: #74a7aa;
}
.top_links_items_wrap .item02 {
  position: relative;
  width: 715px;
  z-index: 1;
  padding: 150px 0;
}
.top_links_items_wrap .item02 ul {
  display: flex;
}
.top_links_items_wrap .item02 li {
  margin-right: 17px;
}
.top_links_items_wrap .item02 li a {
  display: table;
  background: #e3b370;
  color: #fff;
  text-align: center;
  width: 191px;
  height: 191px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 1.4;
  padding-top: 100px;
  box-sizing: border-box;
  position: relative;
  transition: ease-in-out 0.3s;
}
.top_links_items_wrap:nth-child(1) .item02 ul li{
	width: 40%;
}
.top_links_items_wrap:nth-child(1) .item02 ul li a{
	display: block;
	width: 100%;
	border-radius: 30px;
}
.top_links_items_wrap .item02 li a span{
	display: block;
	font-size: 14px;
	line-height: 1.2;
}
	
.top_links_items_wrap .item02 li:nth-child(2) a,.top_links_items_wrap .item02 li.minne a {
  background: #94c3a8;
}
.top_links_items_wrap .item02 li:nth-child(3) a,.top_links_items_wrap .item02 li.creema a {
  background: #90c0c5;
}
.top_links_items_wrap .item02 li a:before {
  background: url("../images/link_icon01.svg") no-repeat center;
  width: 45px;
  height: 37px;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
}
.top_links_items_wrap .item02 li:nth-child(2) a:before {
  background: url("../images/link_icon03.svg") no-repeat center;
  width: 38px;
  height: 32px;
  top: 55px;
}
.top_links_items_wrap .item02 li:nth-child(3) a:before {
  background: url("../images/link_icon02.svg") no-repeat center;
  width: 29px;
  height: 41px;
  top: 48px;
}
.top_links_items_wrap .item02 li a:hover {
  background: #725a47 !important;
}
.top_links_items_wrap .item02:before {
  background: #fff;
  border-radius: 50px;
  width: 930px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
}
.top_links_items_wrap:nth-child(2) .item02 {
  padding-left: 110px;
  box-sizing: border-box;
}
.top_links_items_wrap:nth-child(2) .item02:before {
  left: 0;
  right: auto;
}
.top_links_items_wrap:nth-child(2) .item02 li:nth-child(1) a:before {
  background: url("../images/link_icon04.png") no-repeat center;
  background-size: 100% 100%;
  width: 24px;
  height: 24px;
  top: 58px;
}
.top_links_items_wrap:nth-child(2) .item02 li:nth-child(2) a:before {
  background: url("../images/link_icon05.png") no-repeat center;
  background-size: 100% 100%;
  width: 34px;
  height: 34px;
}
.top_links_items_wrap:nth-child(2) .item02 li:nth-child(3) a:before {
  background: url("../images/link_icon06.png") no-repeat center;
  background-size: 100% 100%;
  width: 32px;
  height: 25px;
  top: 55px;
}
.top_links_items_wrap .more {
  height: 55px;
}
.top_links_items_wrap .more a {
  display: table;
  background: #fff;
  width: 222px;
  height: 55px;
  line-height: 55px;
  color: #806c4e;
  border-radius: 50px;
  font-size: 18px;
  transition: ease-in-out 0.3s;
}
.top_links_items_wrap .more a:hover {
  background: #725a47 !important;
  color: #fff;
}
/*==================================================================

	$about

==================================================================*/
.profile {
  background: #e9f2f3;
  padding: 130px 0 230px;
}
.profile_box {
  background: #fff;
  border-radius: 50px;
  padding: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.profile_box .text {
  width: 55%;
}
.profile_box .text p {
  margin-bottom: 30px;
}
.profile_box ul {
  display: flex;
  width: 40%;
}
.profile_box li {
  margin-right: 17px;
}
.profile_box li a {
  display: table;
  color: #fff;
  text-align: center;
  width: 191px;
  height: 191px;
  border-radius: 100%;
  font-size: 20px;
  line-height: 1.4;
  padding-top: 100px;
  box-sizing: border-box;
  position: relative;
  transition: ease-in-out 0.3s;
}
.profile_box li:nth-child(1) a {
  background: #94c3a8;
}
.profile_box li:nth-child(2) a {
  background: #90c0c5;
}
.profile_box li a:before {
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  margin: auto;
  content: "";
}
.profile_box li a:hover {
  background: #725a47 !important;
}
.profile_box:before {
  background: #fff;
  border-radius: 50px;
  width: 930px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
}
.profile_box li:nth-child(1) a:before {
  background: url("../images/link_icon05.png") no-repeat center;
  background-size: 100% 100%;
  width: 34px;
  height: 34px;
}
.profile_box li:nth-child(2) a:before {
  background: url("../images/link_icon06.png") no-repeat center;
  background-size: 100% 100%;
  width: 32px;
  height: 25px;
  top: 55px;
}
.profile_box .btn a {
  display: table;
  background: #e3b370;
  padding: 20px 40px;
  color: #fff;
  border-radius: 50px;
  font-size: 18px;
  transition: ease-in-out 0.3s;
}
.profile_box .btn a:hover {
  background: #725a47 !important;
}
/*==================================================================

	$works

==================================================================*/
.works_list dl {
  margin-bottom: 50px;
}
.works_list dt {
  float: left;
  width: 50%;
  height: 588px;
  background-size: cover;
}
.works_list dt.work01 {
  background: url(../images/work_img01.png) no-repeat center;
  background-size: cover;
}
.works_list dt.work02 {
  background: url(../images/work_img02.png) no-repeat center;
  background-size: cover;
}
.works_list dt.work03 {
  background: url(../images/work_img03.png) no-repeat center;
  background-size: cover;
}
.works_list dt.work05 {
  background: url(../images/work_img04.png) no-repeat center;
  background-size: cover;
}
.works_list dt.work06 {
  background: url(../images/work_img05.png) no-repeat center;
  background-size: cover;
}
.works_list dt.work04 {}
.works_list dl:nth-child(even) dt {
  float: right;
}
.works_list dd {
  width: 50%;
  padding-left: 40px;
  float: right;
  box-sizing: border-box;
}
.works_list dl:nth-child(even) dd {
  float: left;
  padding-left: 0;
  padding-right: 40px;
}
.works_list dd .text {
  width: 600px;
  float: left;
  padding-top: 68px;
}
.works_list dl:nth-child(even) dd .text {
  float: right;
}
.works_list dd .text h3.tit02 {
  display: block;
  text-align: left !important;
  font-size: 24px !important;
  margin-bottom: 30px;
}
.works_list dd .text p {
  line-height: 2.2;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.works_list dd .text ul {
  display: -webkit-flex;
  display: flex;
  /*	  -webkit-justify-content: space-between;
  justify-content: space-between;*/
  flex-wrap: wrap;
  padding-top: 20px;
}
.works_list dd .text ul li {
  width: 30%;
  margin-right: 2%;
  margin-bottom: 10px;
}
.works_list dd .text ul li a {
  display: block;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  position: relative;
  transition: ease-in-out 0.3s;
}
.works_list dd .text ul li.creema a {
  background: #9ac3c6;
}
.works_list dd .text ul li.minne a {
  background: #e8a792;
}
.works_list dd .text ul li.line a {
  background: #9dbbac;
}
.works_list dd .text ul li.base a {
  background: #e3b370;
}
.works_list dd .text ul li a:hover {
  background: #948172;
}
/*==================================================================

	$shop

==================================================================*/
.precautions {
  background: #f1d6cd;
  padding: 100px 0 180px;
}
.precautions_box {
  background: #fff;
  border-radius: 50px;
  padding: 80px;
  box-sizing: border-box;
}
.precautions_box .item {
  margin-bottom: 50px;
}
.precautions_box h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.list li {
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  padding-left: 30px;
}
.list li:before {
  background: url(../images/reef2.png) no-repeat;
  width: 12px;
  height: 13px;
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
}

/*==================================================================

	アニメーション

==================================================================*/

.target,.target2{
	opacity: 0;
}
.fadeIn_on{
animation-name:fadeIn;
animation-duration:1s; 
}

.fadeIn_on2{
	animation-name:fadeIn;
animation-duration:3s; 
}