@charset "utf-8";
/* 共通 */
/* 共通　ベース */
body{
    font-family:"Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	color: #333;
	background: #fff;
	font-size:1rem;
	letter-spacing: 0.2em;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
	margin: 0;
}

h1{
	font-family: "M PLUS Rounded 1c", sans-serif;
  	font-style: normal;
}
h2{
	font-size: 1.8rem;
	color: #595757;
}
p{
	color: #3e3a39;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
	text-decoration: none;
    outline: none;
}

img{
    width: 100%;
    height: auto;
}

#container{
    overflow-x: hidden;
}

.clear-both{
	clear: both;
}


/* header */
/* header ベース */
.hum-btn{
    display: none;
}

/* header logo */
#header{
	position: fixed;
	top:0;
	left: 0;
	background:rgba(255,255,255,0);
	width: 100%;
	height: 200px;
	
	z-index: 99;
}

#header-logo{
	position: fixed;
    top:25px;
    left:200px;
	display:flex;
}

#header-logo h1{
	flex-direction: column;
	margin-top: auto;
	
	font-size: 1.8rem;
	font-weight: 900;
	letter-spacing: 0.2em;
	line-height: 0.9em;
	color: #fff;
}
#header-logo h1 span{
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	color: #fff;
}

/* header main-nav */
#main-nav{
	position: fixed;
    top:60px;
    right:200px;
	z-index: 999;
}

#main-nav ul{
    display: flex;
}

#main-nav ul li{
	font-size: 1rem;
	font-weight: bold;
  	letter-spacing: 0.1em;
    white-space: nowrap;
}

#main-nav ul li a{
    display: block;
    padding:6px 12px;
	
	position: relative;
    /*ボタンの形状*/
	margin: 0 20px 10px 10px;
	color:#fff;
    text-decoration: none;
    outline: none;
    /*はみ出す背景色を隠す*/
 	overflow: hidden;
}
#main-nav ul li a:hover{
	color:#00913a;
}


/* header sub-navi また使うかも？
#sub-navi{
    position: fixed;
    top:0;
    right:0;
    display: flex;
	z-index: 999;
	
    font-size: 0.8rem;
}

#sub-navi li{
    text-align: center;
}
#sub-navi li span{
    display: block;
}

#sub-navi li a{
    color: #fff;
    width:80px;
	height: 70px;
	padding-top: 10px;
	
	display: block;
    transition: all .5s;
}

#sub-navi li img{
    width:35%;
}  

#sub-navi li:first-child a{
     background:#666;
}

#sub-navi li:first-child a:hover{
     background:#888;   
}

#sub-navi li:last-child a{
     background:#0091d1;
}

#sub-navi li:last-child a:hover{
     background:#1e2f98;
}
*/

@media screen and (max-width:1300px) {
/* header */
#header{
	height: 70px;
}

#header-logo{
    top:10px;
    left:10%;
}
	
#sub-navi li a{
	height: 60px;
}

/* humberger */	
.hum-btn{
    display: block;
	position:fixed;
	top:20px;
	right:5%;
	cursor: pointer;
    width: 70px;
    height:70px;
	
	z-index: 9999;
}
	
/*「×」*/	
.hum-btn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 18px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
}

.hum-btn span:nth-of-type(1) {
	top:23px;	
}

.hum-btn span:nth-of-type(2) {
	top:34px;
}

.hum-btn span:nth-of-type(3) {
	top:46px;
}

.hum-btn.active span:nth-of-type(1) {
    top: 25px;
    left: 23px;
    transform: translateY(6px) rotate(-45deg);
    width: 35%;
}

.hum-btn.active span:nth-of-type(2) {
	opacity: 0;
}

.hum-btn.active span:nth-of-type(3){
    top: 37px;
    left: 23px;
    transform: translateY(-6px) rotate(45deg);
    width: 35%;
}

/* list */
#main-nav{
    top: 25px;
    left: 0%;
}
#main-nav ul{
    display: block;
}
}


@media screen and (max-width:750px) {
}


@media screen and (max-width:550px) {
#header-logo h1{
	display: none;
}
	
#sub-navi-fb{
	display: none;
}
}


/* footer */
#footer{
	width: 100%;
	padding: 0;
	
	position:relative;
}
#footer .copy{
    color: #ccc;
	
	position:absolute;
	bottom: 10px;
	left: 30px;
}

/* page-top */
#page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 2;
	
  opacity: 0;
  transform: translateY(100px);
}

#page-top a{
  display: flex;
  justify-content: center;
  align-items:center;
  background:  #0085b5;
  border-radius: 20px 0 0 0;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase; 
  text-decoration: none;
  transition: all 0.3s;
}

#page-top a:hover{
  background: #00913a;
}

#page-top span{
    display: inline-block;
  	width: 13px;
  	height: 13px;
  	border-top:2px solid #fff;
  	border-left: 2px solid #fff;
  	transform: rotate(45deg);
}


@media screen and (max-width:1045px) {
#footer{
    flex-wrap:wrap;
}
	
#footer .footer-r,
#footer .footer-l{
    width:100%;
}
    
#footer .footer-l .footer-contact,
#footer #copyright{
    height: inherit;
    padding: 40px 0;
}
    
#footer .footer-r .map-area h2{
    width:5%;
}
   
#footer .footer-nav{
    text-align: center;
}
    
}

@media screen and (max-width:768px) {
    #footer .footer-r{
        padding:80px 30px;
    }
    
    #footer .footer-r .map-area{
        margin: 0;
    }
    #footer .footer-nav{
        display: none;
    }
    
#footer .footer-r .map-area h2{
    width:100%;
    height: inherit;
    margin: 0 0 30px 0;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

#footer .footer-r .map-address{
        width:48%;
}
    
#footer #page-top{
        width:60px;
        height: 60px;
}
    
}

@media screen and (max-width:560px) {

#footer .footer-r .map-address,  
#footer .footer-r .map-block{
        width:100%;
}
    
#footer .footer-r .map-address{
        margin: 0 0 50px 0;
}
}


/* トップページ */
/* hero-image */
#slider-area{
    width: 80%;
    height: 80vh;
    position: relative;
    margin: 15% 0 0 auto;
    z-index: -1;
}

#slider-area #slider{
    width: 100%;
    height: 80vh;
	object-fit: cover;
}

@media screen and (max-width:750px) {
#slider-area{
    position: relative;
  	width: 100%;
  	min-height: 100vh;
    top: 0;
    left: 0;    
    z-index: -1;
}

#slider-area #slider{
    width:100%;
	min-height: 100vh;
	object-fit: cover;
}
}



/* scrolldown 使うかな？
.scrolldown1{
  	position:absolute;
  	left: 50%;
  	bottom:20px;
  	height:50px;
	z-index: 2;
}

@media screen and (max-width:750px) {
.scrolldown1{
  	bottom:280px;
}
}
*/





/* headline */
#intro{
	position: relative;
}

#intro .headline{
	position: absolute;/*絶対配置*/
	bottom: -150px;
	right: 5%;
	
	z-index: 3;
	
	font-family: 'Abril Fatface', cursive;
	font-family: 'Caveat', cursive;
	font-family: 'Yuji Boku', serif;
	font-family: 'Yuji Mai', serif;
	line-height: 1em;
	
	color: #0091d1;
	
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

#intro .headline h2{
	font-size: 4rem;
	letter-spacing: 0.35em;
}
#intro .headline p{
	font-size: 1.5rem;
	padding-top: 80px;
}

@media screen and (max-width:750px) {
#intro .headline{
	bottom: 350px;
}
	
#intro .headline h2{
	font-size: 3.5rem;
	letter-spacing: 0.3em;
}
#intro .headline p{
	font-size: 1.2rem;
	padding-top: 80px;
}

}


/* ここは最後消してもいいかも */
#slider-area-text{
    position: absolute;
    right: 10%;
    top: 30%;
	
	z-index: 2;	
}
#slider-area-text p{
    font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: bold;
	text-align: center;
	color: #fff;
	font-size: 2rem;
}
#slider-area-text p span{
    font-size: 4rem;
}

@media screen and (max-width:750px) {
#slider-area-text {
	right: 5%;
    top: 20%;
}
#slider-area-text p{
	font-size: 1.5rem;
}
#slider-area-text p span{
	font-size: 3rem;
}
}


/* catch */
#catch{
    position: absolute;
    left: 0;
    bottom: -15%;
    background-color:rgba(0,133,181,0.6);
    width:35%;
    padding: 30px 40px;
	border-radius: 0 50px 50px 0;
	
	z-index: 2;
}
#catch p{
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.6em;
	color: #fff;
}

@media screen and (max-width:1300px) {
#catch p{
	font-size: 1.6rem;
}
}

@media screen and (max-width:750px) {
#catch {
	position:static;
	width: 100%;
}
#catch p{
	font-size: 1.4rem;
}
}


/* news あとで使いたい
#news{
    position: absolute;
    left: 0;
    bottom: -15%;
    background:#fff;
    width:35%;
    z-index: 2;
    padding: 40px;
}

#news h2{
    position: relative;
    font-size:1.2rem;
    margin: 0 0 30px 0;
}
#news h2::before{
    content:'';
    position: absolute;
    width:30px;
    height: 1px;
    background: #0091d1;
    left:0;
    bottom:-5px;
}

#news time{
	padding-right: 20px;
	font-size:0.8rem;
    color: #999;
}

@media screen and (max-width:950px) {

#news li time{
	display: block;
}  
}

@media screen and (max-width:750px) {

#news {
	position:static;
	width: 100%;
}

.news-slider li:last-child {
	border-bottom:none;
}
}
*/

/* message */
#message{
	margin: 100px 0 0 0;
}

.fluid {
    position: relative;
	margin: 0 -200px 0 auto;
}
.message-area{
	font-weight: bold;
	position: absolute;
	top: 140px;
	right: 5%;
    width: 600px;
}

@media screen and (max-width:1000px) {
.fluid {
	top: -50px;
	margin: 0 -150px 0 auto;
}
.message-area{
	top: 100px;
	right: 15px;
	width: 80%;
}
}


@media screen and (max-width:750px) {
.message-area{
	top: 0;
}  
}


/* service */
#service{
	padding: 0 0 50px 0;
}

#service header{
	text-align: center;
    padding: 50px 0 0 0;
}

#service header h2{
    margin: 0;
}
#service header img{
	max-width: 150px;
    margin: 0 0 0 0;   
}

.service-area{
    width: 70%;
	margin: 0 auto;
}


@media screen and (max-width:960px) {
#service{
	margin: 0;
}
#service header{
	width:100%;
}
	
.service-area{
	width:80%;
	padding: 0 10px;
}
}

@media screen and (max-width:750px) {
#service{
	margin: 0 0 100px 0;
}
#service header p{
    padding: 0 50px;  
}
}

@media screen and (max-width:350px) {
#service{
	margin:100px 0;
}
}


/* member */
#member{
	background: #efefef;
	margin: 100px 0 0 0;
	padding: 50px 0;
}

#member header{
	text-align: center;
    padding: 50px 0 0 0;
}

#member header h2{
    margin: 0;
}
#member header img{
	max-width: 150px;
    margin: 0 0 0 0;   
}

.member-area{
	text-align: center;
}

.member-intro{
	width: 750px;
	margin: 80px auto;
}
.member-intro-con{
	width: 345px;
	margin: 0 0 50px 0;
	padding: 0 15px;
	
	float: left;
}
.member-intro-name{
	line-height: 1.6em;
	text-align: center;
}
.member-intro-name span{
	font-size: 1.8rem;
	font-weight: bold;
}
.member-intro-name p{
	width: 250px;
	margin: 0 auto;
	padding: 10px 0;
	border-radius: 20px;
}
.name-b{
	background-color:rgba(0,133,181,0.3);
}
.name-g{
	background-color:rgba(0,145,58,0.3);
}
.member-intro-text{
	padding: 20px 0 0 0;
}

@media screen and (max-width:750px) {
.member-intro{
	max-width: 340px;
	margin: 50px auto;
}
.member-intro-con{
	clear: both;
}
}
@media screen and (max-width:350px) {
#member {
	padding: 50px 15px;
}
.member-area{
	text-align: left;
}
.member-area br{
	display: none;
}
.member-intro{
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.member-intro-con{
	max-width: 100%;
	margin: 0;
	padding: 0;
}
.member-intro-name span{
	font-size: 1.6rem;
}
.member-intro-name p{
	max-width: 100%;
	padding: 10px 0;
	border-radius: 20px;
}
.member-intro-text{
	max-width: 100%;
}
}



/* voice */
#voice{
	margin: 100px 0 0 0;
}

#voice header{
	text-align: center;
    padding: 50px 0 0 0;
}

#voice header h2{
    margin: 0;
}
#voice header img{
	max-width: 150px;
    margin: 0 0 0 0;   
}

.voice-area{
    padding: 40px 80px;
	margin: 0 auto;
    width: 60%;
}

.voice-area ul li{
    display: flex;
    flex-wrap: nowrap;
	padding: 30px 0px;
}
.voice-area ul li:last-child{
	border-bottom: none;
}

.voice-area-con div{
	text-align: left;
	padding: 15px 30px;
	
	width: 100%;
	border-bottom: solid 1px #888;
}
.voice-area-con time{
	font-weight: bold;
}
.voice-area-con a p{
	margin: 5px 0 0 30px;
}
.voice-area-con a p span{
	float: right;
}
.dli-caret-circle-fill-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 1.6em;
  height: 1.6em;
  border: 0.075em solid currentColor;
  background: currentColor;
  border-radius: 50%;
  box-sizing: content-box;
}

.dli-caret-circle-fill-right::before {
  content: '';
  color: #fff;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.5em 0.8em;
  border-left-color: currentColor;
  border-right: 0;
  transform: translateX(15%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width:750px) {
.voice-area{
    width: 80%;
	padding: 0;
}
}

@media screen and (max-width:550px) {
.voice-area{
	width: 100%;
	padding: 0;
}	
}






/* 個別ページ */
/* メンバープロフィール */
#member-profile{
	max-width: 500px;
    margin: 250px auto 0 auto;
	padding: 0 15px;
}
.member-profile-name{
	font-size: 1.8rem;
	line-height: 1.8em;
}
.member-profile-name span{
	font-size: 3rem;
	font-weight: bold;
}
.member-profile-sub p{
	line-height: 1.6em;
	margin: 0;
}
.member-profile-detail{
	margin: 30px 0 0 0;
}

.member-profile-detail li{
    position: relative;
	padding: 10px 0 10px 50px;
  }
.member-b li:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 30px;
    height: 30px;
	background-color:rgba(0,133,181,0.6);
    border-radius: 10px;
  }
.member-b div{
	border-left: solid 2px rgba(0,133,181,0.6);
	margin: 10px 0 0 0;
	padding: 0 0 0 20px;
}
.member-g li:after {
    content: "";
    position: absolute;
    top: 0.5em;
    left: 0;
    width: 30px;
    height: 30px;
	background-color:rgba(0,145,58,0.6);
    border-radius: 10px;
  }
.member-g div{
	border-left: solid 2px rgba(0,145,58,0.6);
	margin: 10px 0 0 0;
	padding: 0 0 0 20px;
}

@media screen and (max-width:750px) {
.member-profile-name{
	font-size: 1.2rem;
	line-height: 1.6em;
}
.member-profile-name span{
	font-size: 2rem;
	font-weight: bold;
}
}


/* コンタクトフォーム（仮） */
#contact-form{
	max-width: 760px;
    margin: 250px auto 0 auto;
	padding: 0 15px;
}
#contact-form h3{
	color: #fff;
	padding: 3px 10px;
	border-radius: 5px;
	background-color:rgba(0,145,58,0.6);
}

table {
  	margin: 0 auto;
	text-align: left;
	padding: 0;
}
.tbl-r02 th {
  padding: 10px;
}
.tbl-r02 td {
  padding: 10px;
}


#contact-form span{
	margin: 0 0 0 10px;
}
.tbl-r02 input, .tbl-r02 textarea{
	border: #ddd 1px solid;
}
.tbl-r02 textarea{
	border: #ddd 1px solid;
	width: 100%;
}
.form-r{
	color: #fff;
	padding: 5px 5px 5px 7px;
	background: #e30118;
}
.form-g{
	color: #fff;
	padding: 5px 5px 5px 7px;
	background: #4e4d4d;
}
.form-send{
	text-align: center;
}
.form-send input{
	padding: 5px 30px;
	background: #666767;
	color: #fff;
	font-size: 1.1rem;
}

.contact-form-sub{
	margin: 50px 0 0 0;
}
.contact-form-sub p{
	margin: 0;
	padding: 5px 0;
}
 
@media screen and (max-width: 640px) {
  .last td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  .tbl-r02 {
    width: 80%;
  }
  .tbl-r02 th,
  .tbl-r02 td {
　　border-bottom: none;
    display: block;
    width: 100%;
  }
}


/* シングルページ（仮） */
#single-form{
	max-width: 760px;
    margin: 250px auto 0 auto;
	padding: 0 15px;
}
#single-form h3{
	color: #fff;
	padding: 3px 10px;
	border-radius: 5px;
	background-color:rgba(0,145,58,0.6);
}







/* message */
.under-top-text-mes{
	margin-top: -80px;
}

.about-area{
    background:#fff;
    padding: 40px 10px;
    width: 70%;
    position: relative;
    top: -70px;
    left: 10%;
    z-index: 2;
}
.about-area-con{
	padding: 0 30px;
	text-align: left;
}
.about-area-con-sub p{
	font-size: 1. 2rem;
	font-weight: bold;
	border-bottom: solid #0091d1 2px;
	
	margin: 0;
	padding: 0;
}
.about-area-con-main{
	text-indent: 1em;
	margin-bottom: 50px;
}


@media screen and (max-width:960px) {	
.about-area{
	width:80%;
	left:7%;
	padding: 50px 20px;
}
}

@media screen and (max-width:750px) {
.about-area{
	left:7%;
}
.about-area-con{
	padding: 0 15px;
}
}

@media screen and (max-width:550px) {
.about-area{
    width:80%;
    left:6%;
}
.about-area-con{
	padding: 0;
}
}




#history{
    position: relative;
    padding:0 70px;
	margin: 100px 0 0 0;
}

#history h2{
    position: absolute;
	top: -80px;
    left: 42%;
    z-index: 2;
	
	font-family: 'Birthstone', cursive;
	font-family: 'Kaushan Script', cursive;
	font-family: 'Libre Barcode 39 Extended Text', cursive;
	font-family: 'Vujahday Script', cursive;
	
	font-size: 5vw;
	color: #0091d1;
}

.history-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    
}

.history-img{
    background:url("../img/top03.jpg") no-repeat center;
    background-size: cover;
    height: 60vh;
    width:48%;
}

.history-content{
    width:45%;
    padding: 150px 0 0 0;
}

@media screen and (max-width:1300px) {
#history{
	margin: 50px 0 0 0;
}
#history h2{
	font-size: 3.5rem;
	top: -40px;
}
}

@media screen and (max-width:750px) {	
#history{
    padding:0 30px;
}	
#history h2 {
    left: 5%;
    top: -100px;
}     
	
.history-img,
.history-content{
	width:100%;
}

.history-img{
	height:50vh;
}

.history-content{
padding:50px 0 0 0;
} 
}

@media screen and (max-width:430px) {
.history-img{
	height:50vh;
}
}


.activity-area{
    background:#fff;
    padding: 40px 80px;
	margin: 0 0 0 auto;
    width: 60%;
	
	position: relative;
    top: -70px;
    right: 10%;
    z-index: 2;
}
.activity-area-con{
	margin: 30px 0;
	padding: 0 30px;
	text-align: left;
	
}
.activity-area-con img{
	width: 50%;
	padding: 0 20px 0 0;
	
	float: left;
}
.activity-area-con-sub{
	font-size: 1.2rem;
	font-weight: bold;

	color: #0091d1;
}
.activity-area-con-sub p{
	margin: 0;
	padding: 0;
	
	border-bottom: solid #0091d1 2px;
}
.activity-area-con-main span{
	font-weight: bold;
	margin: 0;
	padding: 20px 0 0 0;
}




@media screen and (max-width:960px) {	
.activity-area{
	width:80%;
	right:7%;
	padding: 50px 20px;
}
}

@media screen and (max-width:750px) {
}




