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

header {
	position: static;

	background-color: #007347;
}

.nohero header {
	position: static;
	border-bottom: solid 1px #ddd;
	border-bottom: solid 1px var(--gray-color);
}

/* ヘッダーA: サイト名 */
.headA {
	display: inline-block;
	padding-top:4px;
	padding-left: 20px;
	padding-right: 20px;
height: 60px;
	color: #fff;
	color: var(--text-bright-color);
	font-family: 'Montserrat', sans-serif;
	font-size: 24px;
	text-decoration: none;
}

	header .container {
		display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
display: -webkit-flex; /* Safari6.1以降 */
display: flex;
		-ms-flex-align: center; /*IE10*/
-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-align-items: center; /* Safari6.1以降 */
align-items: center;
		-ms-flex-pack: justify; /*IE10*/
-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-justify-content: center; /* Safari6.1以降 */
justify-content: center;
		max-width: 1000px;
		max-width: var(--large-width);
		margin-left: auto;
		margin-right: auto;
	}

.conA {
	display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
display: -webkit-flex; /* Safari6.1以降 */
display: flex;
	-ms-flex-align: center; /*IE10*/
-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-align-items: center; /* Safari6.1以降 */
align-items: center;
	-ms-flex-pack: justify; /*IE10*/
-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-justify-content: center; /* Safari6.1以降 */
justify-content: center;
	height: 100vh;
	min-height: 450px;
	background-image: url(img/main_arattokimasu.jpg);
	background-position: center;
	background-size: cover;
	color: #fff;
    text-shadow: 1px 1px 3px #000;
	text-align: center;
    margin-bottom: 30px;
}

.conA.compact {
	height: 450px;
	min-height: 0;
	background-image: url(img/main_arattokimasu.jpg);
}

.conA h1{
    color: #007347;
    text-shadow: none;
    letter-spacing: 0;
    background-color: rgba(255,255,255,0.7);
    padding: 10px 20px;
    line-height: 1.4em;
}

.con01{
    padding: 1em;
    box-sizing: border-box;
}

h2{
    color: #007347;
    background:#e9cf3d;
    font-weight: bold;
    padding: 0.2em;
    border-top:1px solid #007347;
    border-bottom:1px solid #007347;
    font-size: 20px;
    text-align: center;
}



/* 円の基本形 */
.maru {
display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
display: -webkit-inline-flex; /* Safari6.1以降 */
display: inline-flex;
  -ms-flex-pack: justify; /*IE10*/
-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-justify-content: center; /* Safari6.1以降 */
justify-content: center;
  -ms-flex-align: center; /*IE10*/
-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-align-items: center; /* Safari6.1以降 */
align-items: center;
  border-radius: 50%;
-ms-flex-flow: column; 
-webkit-flow: column;
flex-flow: column;
  vertical-align: top;
}
/* 円の大きさ */
.size_normal{
  width: 100px;
  height: 100px;
}
/* 文字の大きさ */
.letter3 {
  font-size: 2.5em;
  line-height: 1em;
}
/* 円と文字の色 */
.pink1 {
  color:#fff;
    background: #007347;
  
}

.tokucho{
    margin-bottom: 50px;
}

h3{
    color: #f00;
    font-weight: bold;
    font-size: 20px;
}

.conB .container img{
    max-width: 100%;
}

    .conB .text{
        padding: 1em;
        box-sizing: border-box;
    }

@media (min-width: 768px) {
    
    .conA {
        margin-bottom: 50px;
    }
    
    .con01{
            max-width: 1000px;
        margin: 0 auto 1em;
        
    }
    
    h2{
    max-width: 1000px;
        margin: 0 auto 30px;
        font-size: 28px;
}
    
    .maru{
        float: left;
        margin-right: 30px;
    }
    
    .setsumei{
        display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
display: -webkit-flex; /* Safari6.1以降 */
display: flex;
       -ms-flex-pack: justify; /*IE10*/
-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-justify-content: center; /* Safari6.1以降 */
justify-content: center;
     -ms-flex-align: center; /*IE10*/
-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-align-items: center; /* Safari6.1以降 */
align-items: center;
    }
    
    .tokucho{
        max-width: 800px;
        margin: 0 auto 30px;
        clear: both;
    }
    
    .point{
        max-width: 800px;
        margin: 0 auto 30px;
    }
    
    .left_box{
        width: 60%;
        float: left;
    }
    
    h3{
        font-size: 24px;
    }
    
    .contB .container{
        -ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
    }
    
    .conB .text{
        width: 33%;
    }
    
    


/* 円の基本形 */
.maru {
display: -ms-flexbox; /* IE10 */
display: -webkit-box; /* Android4.3以下、Safari3.1〜6.0 */
display: -webkit-inline-flex; /* Safari6.1以降 */
display: inline-flex;
  -ms-flex-pack: justify; /*IE10*/
-webkit-box-pack: justify; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-justify-content: center; /* Safari6.1以降 */
justify-content: center;
  -ms-flex-align: center; /*IE10*/
-webkit-box-align: center; /* Android4.3以下、Safari3.1〜6.0 */
-webkit-align-items: center; /* Safari6.1以降 */
align-items: center;
  border-radius: 50%;
-ms-flex-flow: column; 
-webkit-flow: column;
flex-flow: column;
  vertical-align: top;
}
/* 円の大きさ */
.size_normal{
  width: 100px;
  height: 100px;
}
/* 文字の大きさ */
.letter3 {
  font-size: 2.5em;
  line-height: 1em;
}
/* 円と文字の色 */
.pink1 {
  color:#fff;
    background: #007347;
  
}    
    
    
}




#tenpo {
    position: fixed;
    bottom: 80px;
    right: 0px;
    font-size: 16px;
}
#tenpo a {
    background: #007347;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    width: 60px;
    padding: 10px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
}
#tenpo a:hover {
    text-decoration: none;
    opacity: 0.8;
}




#card {
    position: fixed;
    bottom: 20px;
    right: 0px;
    font-size: 12px;
    
}
#card a {
    background: #1b3892;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    width: 60px;
    padding: 2px 2px;
    text-align: center;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 1px 1px 2px #999;
}
#card a:hover {
    text-decoration: none;
    opacity: 0.8;
}
    




@media (min-width: 768px) {


#tenpo {
    position: fixed;
    bottom: 140px;
    right: 30px;
    font-size: 22px;
}
#tenpo a {
    background: #007347;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    width: 130px;
    padding: 30px 0;
    text-align: center;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
}
#tenpo a:hover {
    text-decoration: none;
    opacity: 0.8;
}




#card {
    position: fixed;
    bottom: 20px;
    right: 30px;
    font-size: 20px;
    
}
#card a {
    background: #1b3892;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    width: 130px;
    padding: 10px 10px;
    text-align: center;
    display: block;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 1px 1px 2px #999;
}
#card a:hover {
    text-decoration: none;
    opacity: 0.8;
}
    
    }
