@charset "utf-8";

@import url(https://fonts.googleapis.com/css?family=Lato:400,700);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/*------------------------------------------------------------
    デフォルトスタイル
------------------------------------------------------------*/
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, font, 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 {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}

article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
    display: block;
}
 
ol, ul { list-style: none;}

blockquote, q { quotes: none;}
 
:focus { outline: 0;}
 
ins { text-decoration: none;}
 
del { text-decoration: line-through;}

a{
	color: #000000;
	text-decoration: none;
	transition: 0.3s all ease-out;
}

a:hover{
	color:#FFB238;
	text-decoration:none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}

*, *::before, *::after {
	box-sizing: border-box;
}

figure {
	margin: 0;
	padding: 0;
}


/*------------------------------------------------------------
    汎用スタイル
------------------------------------------------------------*/

.clear { clear: both;}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.fl { float: left;}
.fr { float: right;}
.txt-c { text-align: center;}
.txt-l { text-align: left;}
.txt-r { text-align: right;}
.red { color: #F00;}
.mk-ye { background: linear-gradient(transparent 60%, #ffff66 60%);}
.fs11 {	font-size: 1.1rem;}

/*------------------------------------------------------------
    レイアウト
------------------------------------------------------------*/

html {font-size: 62.5%;}

body {
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    line-height: 1.75;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
	text-size-adjust: 100%;
   	width: 100%;
	position: relative;
	font-size: 1.6rem;
	color: #333333;
}

.wrapper {
	overflow: hidden;
	position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;  /* 背景カラー */
  z-index: 9999;  /* 一番手前に */
  pointer-events: none;  /* 他の要素にアクセス可能にするためにポインターイベントは無効に */
  opacity: 0;  /* 初期値では非表示 */
  -webkit-transition: opacity .8s ease;  /* アニメーション時間は 0.8秒 */
 -ms- transition: opacity .8s ease;
 -moz- transition: opacity .8s ease;
  transition: opacity .8s ease;
}
 
 
/*body要素に.fadeoutセレクタがある場合には、レイヤーが表示されるようにopacityを１に設定します。*/
 
body.fadeout::after {
  opacity: 1;
}
 
 
/*お好みで、.fadeoutセレクタ以下の他の要素にもアニメーション用のCSSを定義します*/
/*DEMOではページ遷移時にarticle要素のスケールもアニメーションさせています*/
 
body.fadeout article{
  -webkit-transform:scale(1.2);
  transform:scale(1.2);
}

/* Loading背景画面設定　*/
#splash {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#FFFFFF;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:260px;
}

#splash02 {
/*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background:#51bfe6;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo02 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loadingship 1s infinite alternate;
}

@keyframes loadingship {
  0%, 100%   {transform: rotate(2deg) translate(-50%, -50%) ;}
  50%  {transform: rotate(-2deg) translate(-50%, -50%);}
}

/* Loading アイコンの大きさ設定　*/
#splash_logo02 img {
	width: 260px;
}

.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:-80px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:1px;
    /*テキストの形状*/
	color: #FFF;
	font-size: 16px;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	background:url(../img/scroll.png) no-repeat 0 0;
	background-size: contain;
	z-index: 2;
	/*border-radius: 50%;
	background:#eee;
	*/
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#FFF;
}

.boat-body {
  -webkit-animation: bg-move 20s ease-out forwards;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align:center;
  background: #51bfe6 url(../img/island.png) repeat-x 100% -460px;
  color: #FFF;
  background-size: 780px;
}
.boat {
	-webkit-animation: rock-boat 3s ease-in-out infinite;
}
.boat::after {
	-webkit-animation: steam 4s 2s infinite;
}

@-webkit-keyframes rock-boat {
	50%  { -webkit-transform: rotate(-5deg) translateY(-10px); }
}

@-webkit-keyframes steam {
	40%,
	60%  { opacity: .8; }
	100% { -webkit-transform: translate(-15%, -35%) rotateZ(20deg); }
}

@-webkit-keyframes bg-move {
	0%   { background-position:  100% -560px; }
	100% { background-position: -350% -460px; }
}

@-webkit-keyframes mike-move {
	100% { left: 12%; }
}

@-webkit-keyframes mike-float {
	50% { -webkit-transform: rotateZ(5deg) translateY(-5px); }
}

#loading {
    width: 100vw;
    height: 100vh;
    background: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}
 
#loading_barWrap {
    width: 30vw;
    height: calc(1rem + 5px);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
 
#loading_bar {
    width: 0;
    height: 5px;
    background: #000;
    transition-duration: 1s;
}
 
.text {
    text-align: center;
}
 
.loadingNone {
    animation: loadingAnime 1s forwards;
}
 
@keyframes loadingAnime {
    0% {
        opacity: 1;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        display: none;
    }
}

/* fadeUpをするアイコンの動き */
.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*------------------------------------------------------------
    ヘッダー
------------------------------------------------------------*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}

.header_inner {
	width: 100%;
	padding: 20px 15px;
	margin: 0 auto;
}

.header_inner .logo {
	width: 250px;
}

/*========= ナビゲーションのためのCSS ===============*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	top: 0;
	width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	z-index:3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #51bfe6;
    /*丸のスタート位置と形状*/
	transform: scale(0);/*scaleをはじめは0に*/
    top:calc(50% - 50px);/*50%から円の半径を引いた値*/
    left:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
#g-nav .inner {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    -webkit-box-pack:justify;
    -webkit-justify-content:space-between;
    -ms-flex-pack:justify;
    justify-content:space-between;
}


/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav-list > ul > li{
	text-align: center; 
	list-style: none;
	margin-bottom: 20px;
	width: calc((100% - 40px) / 3);
}


#g-nav-list > ul > li > a{
	color: #FFF;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	line-height: 1.2;
	position: relative;
}

#g-nav li a .navi-icon {
	display: block;
}

#g-nav li a:hover {
	opacity: 0.7;
}

#g-nav.panelactive ul li a .navi-icon {
	width: 160px;
	margin: 0 auto 15px;
}

#g-nav-list .inner {
	max-width: 1000px;
}

.fa-arrow-circle-right {
	padding-left: 5px;
}

.t-list {
	color: #FFF;
	font-size: 12px;
	text-align: left;
	width: 140px;
	margin: auto;
}

.t-list li {
  list-style-type: initial;
  margin-left: 2em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
	top:20px;
	right: 20px;
	background:#DBB82E;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
	z-index: 9999;/*ボタンを最前面に*/
}
	
/*×に変化*/	
.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;
}

.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%;
}

@media (max-width: 767px) {
	.openbtn {
		top: 10px;
		right: 10px;
		width: 40px;
		height: 40px;
	}
	.openbtn span {
		left: 11px;
		height: 2px;
	}
	.openbtn span:nth-of-type(1) {
		top: 11px;
	}
	.openbtn span:nth-of-type(2) {
		top: 19px;
	}
	.openbtn span:nth-of-type(3) {
		top: 27px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 14px;
		left: 14px;
	}
	.openbtn.active span:nth-of-type(3) {
		top: 26px;
		left: 14px;
	}
	#g-nav .inner {
		position: inherit;
		top: inherit;
		left: inherit;
		transform: none;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		padding-top: 90px;
	}
	/*
	.header {
		z-index: 999;
	}
	.header_inner {
		z-index: 9998;
		background: #FFF;
		position: relative;
	}
	*/
	#g-nav-list > ul > li {
		width: 100%;
		text-align: left;
		border-bottom: 1px dotted #fff;
	}
	#g-nav.panelactive ul li a .navi-icon {
		width: 25px;
		margin: 0 10px 0 0;
		display: inline-block;
	}
	#g-nav-list > ul > li > a {
		font-size: 14px;
	}
	.t-list {
		font-size: 11px;
		width: 100%;
		padding-bottom: 20px;
	}

}

/*------------------------------------------------------------
    トップイメージ
------------------------------------------------------------*/

.u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
    transition: .8s;
    transform: translateY(0);
    opacity: 1;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
}
/*------------------------------------------------------------
    IFRAME
------------------------------------------------------------*/

.iframe-wrapper {
	position: relative;
	width: 100%;
	padding: calc(600 / 670 * 100%) 0 0;
}

.iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.youtube {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}

.youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/*------------------------------------------------------------
    フッター
------------------------------------------------------------*/

.footer {
	background: #99682e;
	padding:60px 0 20px;
}

.footer-inner {
	width: 100%;
	max-width: 1200px;
	padding: 0 15px;
	text-align: center;
	margin: auto;
}

.f-logo {
	display: inline-block;
	width: 300px;
	margin: auto;
}

.copy {
	margin-top: 20px;
    font-size: 1.2rem;
	line-height: 1;
	color: #FFF;
}

small {
	display: block;
	font-weight: normal;
    font-size: 1.0rem;
    padding: 5px 0 0;
	color: #666;
	text-align: center;
}

/*------------------------------------------------------------
    コンテンツ
------------------------------------------------------------*/

.main {
	display: block;
	/*background-color: #84bed3;*/
	background-color: #51bfe6;
	position: relative;
	z-index: 1;
	transition: opacity .3s linear 0s;
}

.sec_map {
	position: relative;
	width: 100%;
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
}

.sec_map.allmap {
	padding: 80px 0 120px;
}


.map_area {
	position: relative;
	z-index: 1;
}


.builderList {
  position: absolute;
  width: 1440px;
  max-width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto !important;
  margin-right: auto !important;
  z-index: 3;
}


.builderItem {
	position: absolute;
}

.builderItem a {
	display: block;
	cursor: pointer;
}

.builderItem a:hover {
	opacity: 0.7;
}

.builder_img {
	position: relative;
}

.item_lib01 {
  width: 15%;
  left: 56.958333%;
  top: 30%;
}

.item_lib02 {
  width: 15%;
  left: 76.5%;
  top: 29.4%;
}

.item_lib03 {
  width: 15%;
  left: 49.5%;
  top: 16%;
}

.item_daiwa01 {
  width: 15%;
  left: 36.5%;
  top: 28.5%;
}

.item_daiwa02 {
  width: 14%;
  left: 34.4%;
  top: 13.5%;
}

.item_tanigawa01 {
  width: 15%;
  left: 49.5%;
  top: 44.5%;
}

.item_tanigawa02 {
  width: 15%;
  left: 32.5%;
  top: 46.5%;
}

.item_tanigawa03 {
  width: 14%;
  left: 14.5%;
  top: 45%;
}

.item_nihonhouse01 {
  width: 15%;
  left: 69.3%;
  top: 44.5%;
}

.item_nihonhouse02 {
  width: 15%;
  left: 78%;
  top: 60%;
}

.item_nihonhouse03 {
  width: 14%;
  left: 49%;
  top: 61%;
}

.item_sekisui01 {
  width: 14%;
  left: 18.3%;
  top: 48%;
}

.item_lohouse01 {
  width: 15%;
  left: 69.3%;
  top: 44.5%;
}


/*wood*/
.wood .item_tanigawa01 {
  width: 13%;
  left: 64%;
  top: 16.5%;
}

.wood .item_tanigawa02 {
  width: 14%;
  left: 40%;
  top: 38.5%;
}

.wood .item_tanigawa03 {
  width: 13%;
  left: 22.5%;
  top: 29.5%;
}

.wood .item_nihonhouse01 {
  width: 13%;
  left: 73%;
  top: 44.5%;
}

.wood .item_nihonhouse02 {
  width: 14%;
  left: 63.5%;
  top: 62%;
}

.wood .item_nihonhouse03 {
  width: 12%;
  left: 59%;
  top: 44%;
}

.wood .item_nihonhouse04 {
  width: 13%;
  left: 54%;
  top: 80%;
}

.town-point__pin {
  position: absolute;
  top: 0;
  left: 50%;
  margin: auto;
  cursor: pointer;
  transform: translate3d(-50%, -140%, 0);
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  z-index: 1;
  width: 60%;
  box-shadow: 0px 4px 3px -4px rgb(0 0 0 / 50%);
}

.town-point__pin.new::before {
  content: "NEW";
  display: inline-block;
  background: #F00;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  padding: 2px 7px;
  position: absolute;
  top: -33%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
}


.item_sekisui01 .town-point__pin {
	width: 45%;
}


.town-point__pin:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17.3px 10px 0 10px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
}

.town-point__pin img {
	vertical-align: text-top;
}




.inner {
	width: 100%;
	max-width: 1440px;
	padding: 0 15px;
	overflow: hidden;
	margin: auto;
}

.ttl-wrap {
	margin-bottom: 60px;
}

.h2ttl {
	font-size: 2.4rem;
}

.lead-wrap {
	width: 100%;
}

.lead-wrap .text {
	color: #FFF;
	font-size: 14px;
}

.index-lead {
	padding: 120px 0 220px;
	position: relative;
}

.index-lead .h2ttl,
.map-info .h2ttl {
	text-align: center;
	color: #FFF;
}

.sec_buid {
	background: #f4bd45;
	padding: 120px 0;
}

.sec_buid .h2ttl {
	text-align: center;
	color: #FFF;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 10s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 13s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 16s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 23s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}



.teikei {
	width: 100%;
	max-width: 900px;
	margin: 40px auto 0;
}

.teikei ul{
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
}

.teikei ul li {
	width: calc((100% - 60px) / 3);
	background: #FFF;
	margin-bottom: 35px;
	border-radius: 5px;
}

.teikei ul li:not(:nth-child(3n)) {
	margin-right: 20px;
}

.teikei-wrap {
	display: block;
	width: 100%;
	height: 100%;
	padding-bottom: 20px;
	text-align: center;
	border-radius: inherit;
}

.teikei-wrap figure{
	border-radius: inherit;
	border: 5px solid #FFF;
}

.teikei-img img {
	height:150px;
    object-fit: cover;
	border-radius: 5px 5px 0 0;
}

.teikei-cont .maker-logo {
	margin: 20px 20px 0 20px;
}

.teikei-cont .maker-name {
	margin: 15px 20px 5px;
	font-size: 1.3rem;
	font-weight: bold;
}

.teikei-wrap:hover .maker-name {
	color: #000;
}

.maker-disc {
  display: inline-block;
  padding: .5em 1.2em;
  margin-top: 20px;
  min-width: 175px;
  font-size: 1.6rem;
  line-height: 1.3;
  background-color: #51bfe6;
  color: #FFF;
  border-radius: 50px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: 0.3s all ease;
}

.maker-disc.btn-gr {
	background-color:#5cb85c;
}

.maker-disc + .maker-disc {
	margin-top: 10px;
}


.maker-disc a {
	color: #FFF;
	transition: 0.3s all ease-out;
}

.maker-disc:hover {
	background-color: #f4bd45;
}

/*
.teikei-wrap:hover .maker-disc {
	background-color: #f4bd45;
}
*/

.under_line{
overflow:hidden;
position:relative;
margin-top: -8px;
}

.under_line::before{ 
content:'';
font-family:'shape divider from ShapeDividers.com';
position: absolute;
z-index: 3;
pointer-events: none;
background-repeat: no-repeat;
bottom: -0.1vw;
left: -0.1vw;
right: -0.1vw;
top: -0.1vw; 
background-size: 100% 90px;
background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg preserveAspectRatio="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><g fill="%23ffffff"><path d="M0 0v11s177 85 500 85 500-84 500-84V0z" opacity=".3"/><path d="M0-1s177 90 500 90 500-89 500-89z" opacity=".5"/><path d="M0 0v13s177 62 500 62 500-61 500-61V0z"/></g></svg>'); 
}


.center_kumadon01 {
	position: absolute;
	top: 29%;
	left: 67.4%;
	width: 6%;
	animation: walk01 4s infinite alternate ease-in-out;
}

.center_kumadon01::before {
	content: "";
	display: inline-block;
	width: 100px;
	height: 85px;
	position: absolute;
	right: -85px;
	top: -42px;
	background: url(../img/center/kumadon01_fukudasi.png) no-repeat 0 0;
	background-size: contain;
	opacity: 0;
}


.center_kumadon01.active::before {
	opacity: 1;
	animation: baunce .15s alternate ease-in-out;
}

@keyframes baunce{
  from {
    transform: rotateY(-180deg);
  }
  to {
    transform: rotateY(0);
  }
}

.info-kumadon {
  position: absolute;
  top: 84%;
  left: 4%;
  width: 35%;
  animation: map-kuma 4s ease-in infinite alternate both;
  z-index: 5;
}

.goto {
  position: absolute;
  top: 97%;
  right: 4%;
  animation: map-kuma 4s ease-in infinite alternate both;
  z-index: 5;
}

/* solid011 */
.button_solid011 a {
    background: #6bb6ff;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 12px 5px;
    color: #FFF;
    transition: 0.3s ease-in-out;
	font-size: 0.7em;
    font-weight: 600;
    flex-direction: column;
    border-radius: 8px;
    border-bottom: solid 5px #1d7fde;
	filter: drop-shadow(3px 3px 3px rgba(255,255,255,0.6));
}
.button_solid011 a span {
    background: #FFFF00;
    width: 80%;
    text-align: center;
    position: absolute;
    top: -15px;
    filter: drop-shadow(0px 1px 2px #aaa);
    padding: 3px 0;
    font-size: 0.8rem;
    color: #2b7fde;
    border-radius: 5px;
}
.button_solid011 a span:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top: 5px solid #ffffff;
}
.button_solid011 a:hover {
    border-bottom: solid 2px #1d7fde;
    transform: translateY(3px);
}

@keyframes map-kuma{
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(5px);
  }
}

@keyframes walk01{
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(20px);
  }
}

.link01 {
  position: absolute;
  top: 35.8%;
  left: 47%;
  width: 20.50%;
}

.link01 a:hover{
	opacity: 0.8;
}

.center_kumadon02 {
	position: absolute;
	top: 58%;
	left: 45%;
	width: 7%;
}

.center_kumadon02 .kumadon02_fuki {
	top: -62%;
	left: 66%;
	position: absolute;
	animation:pikupiku 1s ease-in infinite alternate both;
	
}

@keyframes pikupiku{
  0% {
    transform: scale(1,1);
  }
  100% {
    transform: scale(1.1,1.1);
  }
}



.center_ship {
	position: absolute;
	left: -0.5%;
	top: 61%;
	width: 15%;
	transition: 5s ease-in all;
}

.center_ship.active {
	transform: translateY(200%);
}

.cloud_l01 {
  position: absolute;
  left: 2%;
  top: 10%;
  width: 14%;
  animation:cloud01 4s ease-in infinite alternate both;
  z-index: 3;
}

.cloud_r01 {
  position: absolute;
  right: 0%;
  top: -1%;
  width: 13%;
  animation:cloud01 5s ease-in infinite alternate both;
  z-index: 3;
}

.cloud_r02 {
  position: absolute;
  right: -9%;
  top: 44%;
  width: 10%;
  animation: cloud02 4s ease-in infinite alternate both;
}


@keyframes cloud01{
  0% {
    transform:translate(2px,5px);
  }
  100% {
    transform:translate(-2px,0px);
  }
}

.cloud_l02 {
  position: absolute;
  left: 13%;
  top: 74%;
  width: 11%;
  animation: cloud02 3s ease-in infinite alternate both;
}

@keyframes cloud02{
  0% {
    transform:translate(2px,15px);
  }
  100% {
    transform:translate(-2px,0px);
  }
}

.ship_l01 {
  position: absolute;
  left: -9%;
  top: 16%;
  width: 7%;
  animation:shipl01 15s ease-in infinite alternate both;
}

.ship_r01 {
  position: absolute;
  right: -9%;
  top: 16%;
  width: 7%;
  animation:shipl01 15s ease-in infinite alternate both;
}


@keyframes shipl01{
  0% {
    transform:translate(-2px,0px);
  }
  100% {
    transform:translate(80px,15px);
	
  }
}

.human-wrap .human {
	position: absolute;
	z-index: 4;
}



.human::before {
	content: "";
	display: inline-block;
	width: 120px;
	height: 46px;
	position: absolute;
	background-size: contain;
	opacity: 0;
	z-index: 1;
}

.center .human01 {
  top: 9.2%;
  right: 24.5%;
  width: 7%;
}
.center .human01::before {
  left: 19%;
  top: -48px;
  background: url(../img/center/fuki-human01.png) no-repeat 0 0;
}

.center .human02 {
  top: 13.2%;
  right: 18.5%;
  width: 3%;
}
.center .human02::before {
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human02.png) no-repeat 0 0;
}

.center .human03 {
  top: 4.2%;
  left: 40.5%;
  width: 2.7%;
}
.center .human03::before {
  left: 55%;
  top: -49px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human03.png) no-repeat 0 0;
}

.center .human04 {
  top: 50.4%;
  right: 23%;
  width: 3.2%;
}
.center .human04::before {
  left: 30%;
  top: -42px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human04.png) no-repeat 0 0;
}

.center .human05 {
  top: 53%;
  right: 19%;
  width: 4.8%;
}
.center .human05::before {
  left: 19%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human05.png) no-repeat 0 0;
}

.center .human06 {
  top: 42.4%;
  right: 18.5%;
  width: 3.1%;
}
.center .human06::before {
  left: 69%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human06.png) no-repeat 0 0;
}

.center .human07 {
  top: 33.3%;
  right: 11%;
  width: 2.9%;
}
.center .human07::before {
  left: 39%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human07.png) no-repeat 0 0;
}

.center .human08 {
  top: 76.3%;
  right: 28.7%;
  width: 3.4%;
}
.center .human08::before {
  left: 39%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human08.png) no-repeat 0 0;
}

.center .human09 {
  top: 75.1%;
  right: 34.4%;
  width: 4.9%;
}
.center .human09::before {
  left: 39%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human09.png) no-repeat 0 0;
}

.center .human10 {
  top: 80.8%;
  right: 47.4%;
  width: 3.9%;
}
.center .human10::before {
  left: 39%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human10.png) no-repeat 0 0;
}

.center .human11 {
  top: 80.1%;
  right: 42.4%;
  width: 5.5%;
}
.center .human11::before {
  left: 69%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human11.png) no-repeat 0 0;
}

.center .human12 {
  top: 23.6%;
  right: 38.4%;
  width: 6.1%;
}
.center .human12::before {
  left: 52%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human12.png) no-repeat 0 0;
}

.center .human13 {
  top: 32.6%;
  right: 68.6%;
  width: 16.1%;
}
.center .human13::before {
  left: 26%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/center/fuki-human13.png) no-repeat 0 0;
}

/* EUPOPE */
.europe .human01 {
  top: 24.2%;
  right: 81%;
  width: 8.2%;
}
.europe .human01::before {
  left: 19%;
  top: -48px;
  transform: translateX(-50%);
  background: url(../img/fuki-human01.png) no-repeat 0 0;
}

.europe .human02 {
  top: 55.2%;
  right: 70.6%;
  width: 10.5%;
}
.europe .human02::before {
  left: 32%;
  top: -48px;
  transform: translateX(-50%);
  background: url(../img/fuki-human02.png) no-repeat 0 0;
}

.europe .human03 {
  top: 52.5%;
  right: 2%;
  width: 3.8%;
}
.europe .human03::before {
  left: 70%;
  top: -48px;
  transform: translateX(-50%);
  background: url(../img/fuki-human03.png) no-repeat 0 0;
}

.europe .human04 {
  top: 78.5%;
  right: 62%;
  width: 13.5%;
}
.europe .human04::before {
  left: 56%;
  top: -48px;
  transform: translateX(-50%);
  background: url(../img/fuki-human04.png) no-repeat 0 0;
}

.europe .human05 {
  top: 73.7%;
  right: 30.2%;
  width: 9.5%;
}
.europe .human05::before {
  left: 31%;
  top: -36px;
  transform: translateX(-50%);
  background: url(../img/fuki-human05.png) no-repeat 0 0;
}

/* wood */


.human-wood .human01 {
  top: 19.2%;
  left: 21%;
  width: 3.8%;
}
.human-wood .human01::before {
  left: 56%;
  top: -48px;
  transform: translateX(-50%);
  background: url(../img/wood/fuki-human01.png) no-repeat 0 0;
}

.human-wood .human02 {
  top: 29.7%;
  right: 17%;
  width: 3.9%;
}
.human-wood .human02::before {
  left: 52%;
  top: -10px;
  transform: translateX(-50%);
  background: url(../img/wood/fuki-human02.png) no-repeat 0 0;
}

.human-wood .human03 {
  top: 56.6%;
  left: 39.3%;
  width: 2.26%;
}
.human-wood .human03::before {
  left: 32%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/wood/fuki-human03.png) no-repeat 0 0;
}

.human-wood .human04 {
  top: 65.3%;
  left: 38.8%;
  width: 4.1%;
}
.human-wood .human04::before {
  left: 38%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/wood/fuki-human04.png) no-repeat 0 0;
}

.human-wood .human05 {
  top: 66%;
  left: 44.8%;
  width: 6.3%;
}
.human-wood .human05::before {
  left: 61%;
  top: -50px;
  transform: translateX(-50%);
  background: url(../img/wood/fuki-human05.png) no-repeat 0 0;
}

.human.active::before {
	opacity: 1;
}




.center-map {
  position: absolute;
  top: 62.5%;
  left: 24.5%;
  width: 19%;
}

.item_center {
  width: 22%;
  /* height: 6.201389%; */
  left: 24%;
  top: 26%;
}

.item_europe {
  position: absolute;
  top: -2%;
  left: 1%;
  width: 23%;
}

.item_wood {
  position: absolute;
  top: 30%;
  right: 22%;
  width: 23%;
  /* bottom: 3%;*/
}

.island-info {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
}

.island-info .info-img {
	width: 430px;
	margin-right: 40px;
}

.island-info .lead-wrap {
	flex: 1;
}

.island-info .lead-wrap .button {
	margin-top: 40px;
}

.btn,
a.btn,
button.btn {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 5px;
}

a.btn-gradient {
  -webkit-transform: skew(-15deg);
  transform: skew(-15deg);
  color: #fff;
  border-radius: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#2af598), to(#009efd));
  background-image: -webkit-linear-gradient(left, #2af598 0%, #009efd 100%);
  background-image: linear-gradient(90deg, #2af598 0%, #009efd 100%);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

a.btn-gradient:hover {
  -webkit-transform: skew(0);
  transform: skew(0);
  color: #fff;
  -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
  box-shadow: 0 2px 3px rgba(0, 0, 0, .1);
}

.map-info {
	padding: 40px 0 120px;
}

.island-cont {
  background: #FFF;
  border-radius: 240px 15px 100px 15px / 15px 200px 15px 185px;
  border: 6px solid #9cd6e5;
  padding: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  transform: skew(-10deg);
}

.island-contents {
	transform: skew(10deg);
}

.island-contents {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -webkit-align-items:center;
    -ms-flex-align:center;
    align-items:center;
}

.island-contents .text {
	flex: 1;
}

.island-contents .s-map {
	width: 250px;
	margin-left: 40px;
    flex-shrink: 0;
}

.heading07 {
  position: relative;
  padding-top: 50px;
  padding-left: 20px;
  font-size: 26px;
  border-bottom: 2px solid #333;
  margin-bottom: 20px;
}

.heading07 span {
	position: relative;
	z-index: 2;
}

.heading07::before {
	content: attr(data-en);
	position: absolute;
	transform: rotate(-5deg);
	top: -40px;
	left: 0;
	color: rgba(224,66,114,0.4);
	font-size: 80px;
	font-weight: 400;
	font-family: luxus-brut, cursive;
	font-style: italic;
	z-index: -1;
}

.setumei-wrap .u-fade-type-up.is-active {
    transform: skew(-10deg);
}

.island-contents .button {
	margin-top: 20px;
}

.gomap {
	position: absolute;
	left: 2%;
	top: 5%;
	width: 200px;
	-webkit-animation: horizontal1 1s ease-in-out infinite alternate;
	z-index: 2;
}

.gomap a{
	display: block;
	-webkit-animation-duration: 1.5s;
	-webkit-animation: vertical 1s ease-in-out infinite alternate;
}

@-webkit-keyframes horizontal1 {
    0% { -webkit-transform:translateX( -3px); }
  100% { -webkit-transform:translateX(  0px); }
}

@-webkit-keyframes vertical {
    0% { -webkit-transform:translateY(-3px); }
  100% { -webkit-transform:translateY(  0px); }
}

.gomap a:hover {
	opacity: 0.7;
}


.sp {
	display: none !important;
}

@media (min-width:2100px){
.under_line::before{
background-size: 100% calc(2vw + 90px);
}
}

.side-bn {
  width: 80px;
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 998;
}

.side-bn .side-contact {
  margin-bottom: 5px;
}
 
.side-bn a:hover {
	opacity: 0.7;
}

.fix-contents {
	display: none;
}




@media (max-width: 1020px) and (min-width: 768px) {
	#css {狭いブラウザとタブレット向け}
}

@media (max-width: 767px) {
	.pc { display: none !important;}
	.sp { display: inherit !important;}
	.teikei ul li:not(:nth-child(3n)) {
		margin-right: 0;
	}
	.teikei ul li {
		width: 100%;
		margin-bottom: 20px;
	}
	.header {
		background: #FFF;
		height: 60px;
	}
	.header_inner {
		padding: 10px 7px;
	}
	.header_inner .logo {
		width: 170px;
	}
	.main {
		margin-top: 60px;
	}
	.index-lead {
		padding: 80px 0 60px;
	}
	.ttl-wrap {
		margin-bottom: 30px;
	}
	.island-info .info-img {
		width: 100px;
		margin-right: 20px;
	}
	.island-info {
		-webkit-box-align:start;
		-webkit-align-items:flex-start;
		-ms-flex-align:start;
		align-items:flex-start;
	}
	.island-info .lead-wrap .button {
		margin-top: 20px;
	}
	.btn, a.btn, button.btn {
		padding: 10px 20px;
		font-size: 12px;
	}
	.footer {
		padding: 30px 0 90px;
	}
	.f-logo {
		width: 200px;
	}
	.fix-contents {
		display: block;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 10;
	}
	.fix-contents-ttl a {
		background: #de0000;
		color: #fff;
		text-align: center;
		font-size: 1.4rem;
		border-radius: 0;
		cursor: pointer;
		width: 100%;
		display: block;
		height: 60px;
		line-height: 60px;
		font-weight: bold;
		letter-spacing: 0.15em;
	}
	.index-lead .h2ttl {
		width: 90%;
		margin: auto;
	}
	.link01 {
		top: 36%;
	}
	.center_kumadon01::before {
		width: 50px;
		height: 43px;
		right: -35px;
		top: -39px;
	}
	.ship_l01 {
		left: -19%;
	}
	.ship_r01 {
		right: -3%;
	}
	.sec_map.allmap {
		padding: 40px 0;
	}
	.sec_buid {
		padding: 60px 0;
	}
	.teikei-wrap figure {
		width: 80%;
		margin: 20px auto 0;
	}
	.teikei-img img {
		object-fit: contain;
	}
	.island-contents {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.setumei-wrap .u-fade-type-up.is-active {
		transform: skew(0);
	}
	.island-contents {
		transform: skew(0);
	}
	.island-cont {
		padding: 20px;
	}
	.island-contents .button {
		text-align: center;
		margin: 20px auto 40px;
	}
	.island-contents .s-map {
		width: inherit;
		margin: auto;
	}
	.reflection{
		display:inline-block !important;
		position:relative;
		overflow:hidden;
		animation: fluffy1 3s ease infinite;
	}
	@keyframes fluffy1 {
		0% { transform:translateY(0) }
		5% { transform:translateY(0) }
		10% { transform:translateY(0) }
		20% { transform:translateY(-2px) }
		25% { transform:translateY(0) }
		30% { transform:translateY(-2px) }
		50% { transform:translateY(0) }
		100% { transform:translateY(0) }
	}
	.reflection:after {
		content:"";
		height:100%;
		width:10px;
		position:absolute;
		top:-180px;
		left:0;
		background-color: #fff;
		opacity:0;
		-webkit-transform: rotate(45deg);
		-webkit-animation: reflection 2s ease-in-out infinite;
	}
	@keyframes reflection {
		0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
		80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
		81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
		100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
	}
	.item_lib03 {
		width: 13%;
		left: 50%;
		top: 14%;
	}
	.item_lib01 {
		width: 14%;
		top: 27.5%;
	}
	.item_lib02 {
		top: 26%;
	}
	.item_nihonhouse02 {
		left: 77%;
		top: 57%;
	}
	.item_nihonhouse01 {
		top: 41%;
	}
	.item_nihonhouse03 {
		width: 13%;
		left: 50%;
		top: 55%;
	}
	.item_tanigawa01 {
		top: 41.5%;
	}
	.item_tanigawa02 {
		top: 43%;
	}
	.item_tanigawa03 {
		left: 15%;
		top: 43%;
	}
	.item_daiwa01 {
		width: 14.5%;
		top: 26%;
	}
	.item_daiwa02 {
		top: 11.5%;
	}
	.item_lohouse01 {
		top: 42.5%;
	}
	.center_ship {
		animation: sp-ship 30s ease 3s infinite;
	}
	.center_ship img{
		animation: sp-ship02 30s ease infinite;
	}
	@keyframes sp-ship {
		0% {
			transform: translateY(0px);
		}
		50% {
			transform: translateY(80px);
		}
		100% {
			transform: translateY(0px);
		}
	}
	#splash_logo02 img {
		width: 100px;
	}
	.boat-body {
		background-size: 490px;
	}
	@-webkit-keyframes bg-move {
		0%   { background-position:  100% -280px; }
		100% { background-position: 3500% -280px; }
	}
	.builder_img {
		transform: perspective(100px) rotateX(-15deg);
		transform-origin: 50% 90% 5px;
	}
	.scrolldown2 {
		bottom: -45px;
	}
	.scrolldown2:after {
		width: 1px;
		height: 30px;
	}
	@keyframes circlemove{
		0%{bottom:25px;}
	}
	.scrolldown2 span {
		bottom: 0;
		font-size: 10px;
	}
	.map-info {
		padding: 30px 0 70px;
	}
	.human::before {
		width: 80px;
		height: 31px;
		background-size: contain !important;
	}
	.center .human01::before {
		left: -53%;
	}
	.human::before {
		top: -31px !important;
	}
	.europe .human05::before {
		top: -20px !important;
	}
	.item_wood {
		right: 17%;
	}
	.side-bn {
		display: none !important;
	}
	.wood .item_nihonhouse04 {
		top: 76%;
	}

	





	



}