@charset "utf-8";

/*******************************************************/
/* ハンバーガー　hamburger スタイルシート*/
/*******************************************************/

/**-----------------------------------------------------
-----レスポンシブ
------------------------------------------------------**/

/*-- pcに対応----------**/
@media screen and (min-width: 750px) {     
}

/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {  
}

/*-- pcは非表示----------**/
@media screen and (min-width: 750px) {
    .pc-no {
        display: none;
    }     
}

/*-- スマホは非表示----------**/
@media screen and (max-width: 750px) {
    .sp-no {
        display: none;
    }
}

/**-----------------------------------------------------
----- 改訂版　全体
------------------------------------------------------**/
html,body{margin:0;
        padding:0;
    
    letter-spacing: 0.05em;
}

body {
	font-family:"メイリオ", Osaka, "ヒラギノ角ゴ Pro W3", sans-serif;	
	background-color:#fff;
    color: #636A6C;
    letter-spacing: 0.2em;
    font-size:16px;
    font-weight:500;
	/**background-image:url('../img/back_spri.gif')**/
    
}

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

div#contens {
    width: 100%;
    height: 100%;
}
div#wrap {
    width: 1200px;
    margin: 0 auto;
    padding-top: 50px;
    text-align: center;
    
}
@media screen and (max-width: 750px) {
    div#wrap {
        width: auto;
        padding:0 5px;
    }
}
/*--top nav ---------**/
div#t-nav {
    margin-bottom:0px;
}
div#t-nav ul {
    list-style: none;
    display: flex; 
    justify-content:space-around;
    width: 850px;
    margin:0 auto;
}
div#t-nav ul li {
    padding-bottom: 20px;
}
div#t-nav ul li.tnav001 {
    background-color:#FFD6D6 ;
    border-radius: 40px 40px 0px 0px; 
}
div#t-nav ul li.tnav002 {
    background-color:#FFE7C2 ;
    border-radius: 40px 40px 0px 0px; 
}
div#t-nav ul li.tnav003 {
    background-color:#E4FFC2 ;
    border-radius: 40px 40px 0px 0px; 
}
div#t-nav ul li.tnav004 {
    background-color:#CAF5F7 ;
    border-radius: 40px 40px 0px 0px; 
}

/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    div#t-nav {
        margin-top:50px;
    }
    div#t-nav ul {
        width: auto;
        padding-left: 0px;  
    }
    div#t-nav ul li.tnav001,div#t-nav ul li.tnav002,div#t-nav ul li.tnav003,div#t-nav ul li.tnav004 {
        border-radius:15px 15px 0px 0px;
    }
}
/*--wrap00～共通 ---------**/

/*--wrap001ピンク ---------**/
div.wrap001 {
    border:30px solid #FFD6D6 ;
    margin-top:0px;
    border-radius: 30px;
    padding-bottom: 30px;
}
/*--wrap002ベージュ ---------**/
div.wrap002 {
    background-color: #FFE7C2;
    margin-top:-20px;
    border-radius: 30px;
    padding-bottom: 30px;
}
/*--wrap003グリーン---------**/
div.wrap003 {
    border:10px solid #E4FFC2 ;
    margin-top:0px;
    border-radius: 30px;
}
/*--wrap004ブルー ---------**/
div.wrap004 {
    border:10px solid #CAF5F7 ;
    margin-top:0px;
    border-radius: 30px;
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    div.wrap001 {
        border:8px solid #FFD6D6 ;
        border-radius: 10px;
    }
    div.wrap002 {
        border-radius: 10px;
        padding: 8px;
    }
}
/****/



img {
	border-style:none;
    max-width: 100%;
    height: auto;   
}

img.imgblock {
    display: block;
}
a {
    text-decoration: none;
}
p,ul{
	line-height:1.5em;
	
}
/*-- pcに対応----------**/
@media screen and (min-width: 750px) {
    ul,dl {
    font-size: 18px;
}   
    
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    ul,dl {
    font-size: 16px;
}   
    
}



/*-- pc電話発信無効----------**/
@media screen and (max-width: 750px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
/**-----------------------------------------------------
-----ハンバーガーここから 
------------------------------------------------------**/
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    z-index: 100;
  }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }
  .header__logo {
    font-size: 1.25rem;
    margin: 0;
  }
  
  /* ハンバーガーボタン */
  .header__trigger {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    z-index: 999;
  }
  .header__trigger > span {
    display: block;
    position: absolute;
    left: 50%;
    width: 30px;
    height: 3px;
    background-color: #E1B7B7;
    transform: translateX(-50%);
  }
  .header__trigger > span:nth-child(1) {
    top: 10px;
  }
  .header__trigger > span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .header__trigger > span:nth-child(3) {
    bottom: 10px;
  }
  .header__trigger.active > span:nth-child(1) {
    transform: translate(-50%, 10px) rotate(-45deg);
    transition: transform 0.3s ease;
  }
  .header__trigger.active > span:nth-child(2) {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header__trigger.active > span:nth-child(3) {
    transform: translate(-50%, -8px) rotate(45deg);
    transition: transform 0.3s ease;
  }
  
  /* ナビゲージョンメニュー */
  .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: scroll;
    transition: all 0.3s ease;
  }
  .gnav.active {
    left: 0;
  }
  
  .gnav__menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 70vw;
    min-height: 100%;
    background-color: white;
    list-style: none;
    padding: 2rem 1rem 2rem;
    margin: 0 0 0 auto;
    
  }
  .gnav__menu img {
    height: 45px;
    
  }
  .gnav__link {
    color: inherit;
  }
  
  /* デザイン調整 */
  body {
    margin: 0;
  }
  * {
    box-sizing: border-box;
  }
  section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50vh;
  }
  section:nth-child(odd) {
    background-color: lightgrey;
  }
/*自作-ハンバーガー用メニュー*/
nav#ham-nav {

} 
nav#ham-nav ul {
    list-style-type: none;
    display: block;
}
/*-- pcに対応----------**/
@media screen and (min-width: 750px) {  
    header.header {
        display: none;
    }   
}

/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    nav#topnav {
        display: none;
    }  
}
/*自作-ハンバーガー用メニュー*/
nav#ham-nav {

} 
nav#ham-nav ul {
    list-style-type: none;
    display: block;
}
/*-- pcに対応----------**/
@media screen and (min-width: 750px) {  
    header.header {
        display: none;
    }   
}

/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    nav#topnav {
        display: none;
    }  
}
/**-----------------------------------------------------
----- ハンバーガーここまで
------------------------------------------------------**/
/**-----------------------------------------------------
----- ヘッダー 
------------------------------------------------------**/

#headtop {
    width: 100%;
    padding-top:40px;
}
#head {
    background-color: #fff;
    width: 1200px;
    margin: 0 auto;
}
#head-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}
#head-wrap .head-con {
    width: 50%;
    text-align: center;
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    #head-wrap {
        display: block;
        margin-bottom: 0px;
    }
    #head-wrap .head-con {
        width: auto;
    }
    #head {
        width: auto;
    }
}


/**-----------------------------------------------------
-----　トップスライド
------------------------------------------------------**/
.fadeslide {
	position: relative;
	width: 550px;
	height: 400px;
	overflow: hidden;
	z-index: 0;
}

.fadeslide div {
	position: absolute;
	top: 50;
    right: 0;
}

.fadeslide div:nth-of-type(1) {
	animation: fadeslide 40s 0s infinite both;
	z-index: 7;
}

.fadeslide div:nth-of-type(2) {
	animation: fadeslide 40s 5s infinite both;
	z-index: 6;
}

.fadeslide div:nth-of-type(3) {
	animation: fadeslide 40s 10s infinite both;
	z-index: 5;
}

.fadeslide div:nth-of-type(4) {
	animation: fadeslide 40s 15s infinite both;
	z-index: 4;
}
.fadeslide div:nth-of-type(5) {
	animation: fadeslide 40s 20s infinite both;
	z-index: 3;
}
.fadeslide div:nth-of-type(6) {
	animation: fadeslide 40s 25s infinite both;
	z-index: 2;
}
.fadeslide div:nth-of-type(7) {
	animation: fadeslide 40s 30s infinite both;
	z-index: 1;
}



@keyframes fadeslide {
	0% {  opacity: 0; }
	5% {  opacity: 1; }
	20% {  opacity: 1; }
	25% {  opacity: 1; }
	35% {  opacity: 0; }
	100% {  opacity: 0; }
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) { 
    .fadeslide {
        width: auto;
        height: 350px;
    } 
}
.head-con .head-con-back {
    background: url(../img/top_img_back.gif) no-repeat;
    background-size: contain;
}
#head-wrap .head-con .head-con01 {
    background: url(../img/010-01.jpg) left no-repeat;
    background-size: contain;
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) { 
    #head, #head-wrap .head-con{
        width: auto;
    }
}

/**-----------------------------------------------------
-----　トップスライドここまで
------------------------------------------------------**/
/*-- ページトップ---------**/

.page_top {
	text-align:right;
	margin-right:20px;
    margin-top: 80px;
}
/*-- テキスト　--------**/
.test-center {
    text-align: center;
    width: 70%;
    margin:0 auto;
    padding-bottom: 50px;
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
    .test-center {
        width: auto;
        padding: 15px;
    }
}
/**-----------------------------------------------------
----- フッター
------------------------------------------------------**/
footer#con-foot {
  border-top: 2px dotted #A5D4F8;
  margin-top: 5px;
  
}
footer#con-foot .footcon {
  width: 600px;
  margin: 0 auto;
}
footer#con-foot .footcon p {
  font-size:;
  width: 600px;
  height: 45px;
  background: url(../img/con_footer_bor.gif)  bottom repeat-x;
  text-align: center;  
}
footer#con-foot img {
  vertical-align: middle;
}
dl.footcondl {
  display:flex;
    flex-wrap: wrap;
    align-items: stretch;
    padding-left: 10px;
    padding-top: 10px;
    font-size: 0.95em;
  
}
dl.footcondl dt {
  width: 12%;
    margin: 0;
    box-sizing: border-box;
    padding:15px 0px 8px 20px;
    
}

dl.footcondl dd {
  width: 87%;
    margin: 0;
    box-sizing: border-box;
    padding: 15px 0px 8px 0px;
    
}
/*-- スマホに対応----------**/
@media screen and (max-width: 750px) {
  footer#con-foot .footcon {
    width: auto;
    text-align: center;
  } 
  footer#con-foot .footcon p {
    width: auto;
    height: 80px;
  } 
  dl.footcondl dd {
    text-align: left;
    padding: 5px;
  }
  dl.footcondl dt {
    text-align: left;
    padding: 5px;
  }
}


/*-- ---------**/
.copyright {
     background-color:#ECF3EC;
    text-align: center;
    font-size: 0.85em;
}

/**-----------------------------------------------------
-----　見出し
------------------------------------------------------**/
h1 {
    margin-top:20px;
    font-size: 1.8em;
    
}
h2 { 
    font-size: 1.8em;
    padding-top:50px;
    margin-top:0px;
    text-align: center;
    
    
}
h3 {
    margin-top:50px;
}


/**-----------------------------------------------------
-----　旧css 
------------------------------------------------------**/
