﻿@charset "UTF-8";

/* 基本色 */
:root {
	--main-color: #5D9AB2;
	--accent-color: #BF6A7A;
	--dark-main-color: #2B5566;
    --text-bright-color:#fff;
    --icon-color: #fff;
    --icon-bk-color: #ddd;
    --large-width: 1000px;
}


/* 基本設定： ページ全体 */
body {
    margin: 0;
	font-family: 'メイリオ',
	'Hiragino Kaku Gothic Pro', 
	sans-serif;
}


/* コンテンツA： ヒーローイメージ */
.conA {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80vh;
    min-height: 450px;
    background-image: url(img/koala.jpg);
    background-position: center;
    background-size: cover;
    color: #fff;
    color: var(--text-bright-color);
    text-align:center;
	
}

.conA.compact {
	height: 450px;
	min-height: 0;
	background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(img/koala.jpg);
}

.conA h1 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 5vw;
}

.conA p {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 10px;
    
}

.conA img {
    width: 10%;
}

@media (min-width: 768px) {
	.conA h1 {
		font-size: 38px;
	}

	.conA p {
		font-size: 20px;
	}
}

/*コンテンツB概要*/
.conB {
    background-color: #ddd;
}
.conB .container{
    padding-top: 30px;
    padding-bottom: 20px;
   
}

.conB .text{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
    text-align: center;
}

.conB h2{
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 20px;
}

.conB p{
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    
}

.conB .icon {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 40px;
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
    background-color: #ddd;
    background-color: var(--icon-bk-color);
    color: #fff;
    color: var(--icon-color);
}

@media (min-width: 768px) {
	.conB .container{
		display: flex;
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
	}

	.conB .text {
		flex: 1;
	}
}

.conA a{
    display: inline-block;
    margin-top: 20px;
    padding: 5px 30px;
    border: solid 3px currentColor;
    border-radius: 6px;
    background-color: #BF6A7A;
    background-color: var(--accent-color);
    color: #fff;
    color: var(--text-bright-color);
    font-size: 12px;
    text-decoration: none;
}

.conA a:hover{
    background-image: linear-gradient(
    rgba(255,255,255,0.2),
        rgba(255,255,255,0.2)
    );
    /* ヘッダー */
header {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: rgba(255,255,255,0.9);
}


/* ヘッダーA: サイト名 */

header{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color:  rgba(255,255,255,0.9);
 }
    
.headA {
	display: inline-block;
	line-height: 70px;
	padding-left: 20px;
	padding-right: 20px;
	background-color: #5D9AB2;
	background-color: var(--main-color);
	color: #fff;
	color: var(--text-bright-color);
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-decoration: none;
}

}