@charset "utf-8";
/* CSS Document */

/* ------------------------------
   ベースデザイン（柔らかい）
------------------------------ */
body {
    margin: 0;
    font-family: "Yu Gothic", "Hiragino Sans", sans-serif;
    background: #fff;
    color: #444;
    line-height: 1.7;
}
/* h1, h2, h3, p, ul, ol, dl, dt, dd { margin: 0; padding: 0; }*/
  a {
    text-decoration: none;
    color: #007acc;
  }
  a:hover {
    text-decoration: underline;
    color: #005ea2;
  }

/* ------------------------------
   ヒーロー画像（幅に合わせて縮む）
------------------------------ */
.hero {
	position: relative;
	overflow: hidden;
}

.hero-img {
	width: 407px;
	height: auto;
	display: block;
	margin: 15px auto;
}

.hero-img2 {
	width: 680px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* 画像の上に文字を重ねる */
.hero-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	text-shadow: 0 3px 8px rgba(0,0,0,0.5);
}

/*フロート*/
.float_kaijyo	{
	overflow:hidden;
}

.float_right	{
	float:right;
	padding:0 50px 0 0;
}


@media (max-width: 600px) {
    .hero-text {
        font-size: 20px;
        bottom: 14px;
        left: 14px;
    }

	.hero-img2 {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	}

.float_right	{
	float:none;
	width:100%;
}

.float_right	{
	display:flex;
	justify-content:center;
	align-items:center;
}

}

/* ------------------------------
   ハンバーガーメニュー（アニメーション付き）
------------------------------ */
.menu-btn {
    position: fixed;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 28px;
    cursor: pointer;
    z-index: 1000;
}

.menu-btn span {
    display: block;
    height: 4px;
    margin-bottom: 6px;
    background: #ddd;
    border-radius: 2px;
    transition: 0.4s;
}

/* メニュー開閉アニメ */
.menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ------------------------------
   スライドメニュー
------------------------------ */
nav {
    position: fixed;
    top: 0;
    right: -260px;
    width: 240px;
    height: 100%;
    background: #fafafa;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    padding-top: 70px;
    transition: 0.4s;
    z-index: 999;
}

nav.open {
    right: 0;
}

nav a {
    display: block;
    padding: 16px 20px;
    color: #444;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

nav a:hover {
    background: #f0f0f0;
}

/* ------------------------------
   WordPress風の柔らかいカードデザイン
------------------------------ */
main {
    max-width: 750px;
    margin: 40px auto;
    padding: 0 16px;
}

.text01	{
	display:block;
	padding:0 20px;
    margin: 30px auto;
}

section {
    background: #fff;
    padding: 26px 36px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.7s ease-out;
}

/* スクロールでふわっと表示 */
section.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    margin-top: 0;
    font-size: 22px;
/*    border-left: 5px solid #7bb8ff;*/
    border-left: 5px solid #a9ceec;
    padding-left: 10px;
    color: #333;
}

ul {
    padding-left: 20px;
}

/* ------------------------------
   フッター
------------------------------ */
footer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin: 40px 0;
}

/* ------------------------------
   フッターサイトマップ
------------------------------ */
footer {
    background: #f5f5f5;
	color: #333;
    padding: 30px 0 20px;
    margin-top: 40px;
}

#footer-sitemap {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 0 16px;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	font-size:14px;
}

#footer-sitemap div {
	flex: 0 0 31%;/* 3カラム */
	display:block;
	/*width: 100px; 横並び要素の横幅 */
	/*height: 100px; 横並び要素の高さ */
}

#footer-sitemap div:last-child {
	flex: 0 0 100%;
	margin: auto;
	box-shadow: 
	inset 0 1px 0 #ffffff,   /* 上側のハイライト */
	inset 0 2px 0 #e0e0e0;   /* 下側のシャドウ */
	margin-top:5px;
	padding-top:5px;
}

#footer-sitemap h3 {
    font-size: 14px;
    margin-bottom: 12px;
    color: #555;
}

#footer-sitemap ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

#footer-sitemap ul li {
    margin-bottom: 6px;
}

#footer-sitemap ul li a {
    color: #337ab7;
    text-decoration: none;
    font-size: 14px;
}

#footer-sitemap ul li a:hover {
    text-decoration: underline;
}

.footer-copy {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding-top: 10px;
}


/*ボタンデザイン*/

.btn-link {
    display: inline-block;
/*    background: #7bb8ff;*/
	background: #a9ceec;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 15px;
}
.btn-link:hover {
	background: #a9ceec;
    text-decoration: none;
}

.info-item {
    margin: 10px 0;
/*    padding-bottom: 20px;*/
    border-top: 1px solid #eee;
}


