@charset "utf-8";

/*全端末共通
----------------------------------------------------------------------------------------------------*/
/*全体設定
----------------------------------------------------------------------------------------------------*/
body{
    color: black;
    font-size: 16px;
    line-height: 2;
}
.navver{
    background-color: #fff;
}
h2{
    background-color: #5eaaf2;
    color: #fff;
    border-radius: 30px;
    margin: 10px 10px;
}
h4{
   border-bottom: solid #cce4ff;
   position: relative; 
   font-size: 25px;
}
h4::after{
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #5472cd;
    bottom: -3px;
    width: 20%;
}
h5{
    position: relative;/*相対位置*/
    padding-left: 1.2em;/*アイコン分のスペース*/
    color: #7b6459;/*文字色*/
    font-size: 23px;
}
h5::before{
    font-family: "Font Awesome 5 Free";
    content: "\f1b0";/*アイコンのユニコード*/
    font-weight: 900;
    position: absolute;/*絶対位置*/
    font-size: 23px;/*サイズ*/
    left: auto;/*アイコンの位置*/
    top: 0;/*アイコンの位置*/
    color: #ff938b; /*アイコン色*/
}
h3{
    background-color: #81f8ca;
    color: #fff;
    border-radius: 30px;
    margin: 10px 30px;
    font-size: 25px;
}
/*お知らせ*/
/*Newアイコン*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
    font-size: 18px;
}
/*見出しを含まないお知らせブロック*/
#new dl {
	padding: 0 30px;
  font-size: 17px;
}
/*日付設定*/
#new dt {
	float: left;
	width: 20em;		/*幅*/
	letter-spacing: 0.1em;
  font-size: 17px;
}
/*記事設定*/
#new dd {
	padding-left: 7em;
    border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
    font-size: 17px;
}
/*PC
-----------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 641px) {
    .sm-nav{
        display: none;
    }
    
    
/*メイン
----------------------------------------------------------------------*/

.content {
    background-color: #fff;
    color: black;
    top: auto;
    text-align: center;
    height: 100%;
    width: 50%;
    padding-top: 14vh;
    min-height: 100ch;
    margin: auto;
    z-index: 100;
  }

    
    /*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
	background:#333;
	color:#fff;
	text-align: center;
}
/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #fff;
	padding:20px 35px;
	transition:all .3s;
    font-size: 18px;
}

nav ul li li a{
	padding:10px 35px;
}

nav ul li a:hover{
	color:#5eaaf2;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
    border-right:2px solid #999;
    transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
    border-top: 2px solid #fff;
    border-right:2px solid #fff;
    transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
    /*形状を指定*/
	background:#28BFE7;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#3577CA;
}


/*==3階層目*/

/*3階層目の位置*/
nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
}

nav li.has-child ul ul li a:hover,
nav li.has-child ul ul li a:active{
	background:#448ED3;
}


/*==768px以下の形状*/

@media screen and (max-width:768px){
	nav{
		padding: 0;
	}
	
	nav ul{
		display: block;
	}
	
	nav li.has-child ul,
	nav li.has-child ul ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
}
	
nav ul li a{
	border-bottom:1px solid #ccc;
}

/*矢印の位置と向き*/

nav ul li.has-child::before{
	left:20px;	
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
	left:20px;
}
    
nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}
/*h1*/
h1{
    text-align: center;
}
}

@media screen and (max-width:640px) {
    .pc-nav{
        display: none;
    }
    /*メニューバー
---------------------------------------------------------------------------*/
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#999;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}

footer{
    text-align: center;
    background-color: #333;
    font-size: 14px;
    color: #fff;
}

small a{
    color: #28BFE7;
}
/*ボタン
-----------------------------------------------------------------------------*/
/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn--orange {
    color: #fff;
    background-color: #eb6100;
  }
  
  a.btn--orange:hover {
    color: #fff;
    background: #f56500;
  }
  
  a.btn-c {
    font-size: 2rem;
    position: relative;
    padding: 1.5rem 3rem 1.5rem 2rem;
  }
  
  a.btn-c i.fa {
    margin-right: 1rem;
  }

  a.btn-border {
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;

    -webkit-transform-style: preserve-3d;

    transform-style: preserve-3d;
  }

  a.btn-border::before{
    position: absolute;
    top: 0;
    left: 0;

    width: 15px;
    height: 100%;

    content: '';
  }

/*SNSアイコン
-------------------------------------------------------------------------------*/
    
    /* ボタン全体 */
.flowbtn8{
    border-radius:50%;
    position:relative;
    display:inline-block;
    width:50px;
    height:50px;
    font-size:30px;
    text-decoration:none;
    transition:.5s;
    }
    /* ボタンマウスホバー時のテキスト指定 */
    .flowbtn8:hover{
    color:#fff!important;
    }
    /* アイコンをど真ん中に */
    .flowbtn8 i{
    position:absolute;
    top:50%;
    left:50%;
    -ms-transform:translate(-50%,-50%);
    -webkit-transform:translate(-50%,-50%);
    transform:translate(-50%,-50%);
    }
    /* Twitter */
    .flowbtn8.fl_tw2{
    border:solid 1px #55acee;
    color:#55acee;
    }
    /* Twitterマウスホバー時 */
    .flowbtn8.fl_tw2:hover{
    border:solid 1px #55acee;
    background:#55acee;
    }
    /* Instagram */
    .flowbtn8.insta_btn2 {
    border:solid 1px #c6529a;
    color:#c6529a;
    font-size:35px;
    }
    /* Instagramマウスホバー時 */
    .flowbtn8.insta_btn2:hover{
    border:solid 1px #c6529a;
    background:#c6529a;
    }
    /* Facebook */
    .flowbtn8.fl_fb2{
    border:solid 1px #3b5998;
    color:#3b5998;
    }
    /* Facebookマウスホバー時 */
    .flowbtn8.fl_fb2:hover{
    border:solid 1px #3b5998;
    background:#3b5998;
    }
    /* Feedly */
    .flowbtn8.fl_fd2{
    border:solid 1px #6cc655;
    color:#6cc655;
    font-size:28px;
    }
    /* Feedlyマウスホバー時 */
    .flowbtn8.fl_fd2:hover{
    border:solid 1px #6cc655;
    background:#6cc655;
    }
    /* Pocket */
    .flowbtn8.fl_pk2{
    border:solid 1px #ef3f56;
    color:#ef3f56;
    font-size:32px;
    }
    /* Pocketマウスホバー時 */
    .flowbtn8.fl_pk2:hover{
    border:solid 1px #ef3f56;
    background:#ef3f56;
    }
    /* はてブ */
    .flowbtn8.fl_hb2{
    border:solid 1px #1ba5dc;
    color:#1ba5dc;
    font-size:25px;
    }
    /* はてブマウスホバー時 */
    .flowbtn8.fl_hb2:hover{
    border:solid 1px #1ba5dc;
    background:#1ba5dc;
    }
    /* YouTube */
    .flowbtn8.fl_yu2{
    border:solid 1px #fc0d1c;
    color:#fc0d1c;
    font-size:28px;	
    }
    /* YouTubeマウスホバー時 */
    .flowbtn8.fl_yu2:hover{
    border:solid 1px #fc0d1c;
    background:#fc0d1c;
    }
    /* LINE */
    .flowbtn8.fl_li2{
    border:solid 1px #00c300;
    color:#00c300;
    font-size:35px;
    }
    /* LINEマウスホバー時 */
    .flowbtn8.fl_li2:hover{
    border:solid 1px #00c300;
    background:#00c300;
    }
    /* お問い合わせ */
    .flowbtn8.fl_ma2{
    border:solid 1px #f3981d;
    color:#f3981d;	
    font-size:28px;
    }
    /* お問い合わせマウスホバー時 */
    .flowbtn8.fl_ma2:hover{
    border:solid 1px #f3981d;
    background:#f3981d;
    }
    /* ulタグの内側余白を０にする */
    ul.snsbtniti{
    padding:0!important;
    list-style: none;    
    }
    /* ボタン全体の位置 */
    .snsbtniti{
    display:flex;
    flex-flow:row wrap;
    justify-content:space-around;
    }
    /* ボタン同士の余白 */
    .snsbtniti li{
    flex:0 0 50%;
    text-align:center!important;
    }
    /* ボタン全体 */
.flowbtn11{
    font-family:'Verdana',sans-serif;	
    border-radius:4px;
    position:relative;
    display:inline-block;
    width:90%;
    font-size:20px;
    color:#fff!important;
    text-decoration:none;
    margin-bottom:5px;
    }
    /* Twitter */
    .fl_tw1{
    background:#55acee;
    }
    /* Instagramアイコン位置 */
    .insta_btn11 .fa-instagram{
    position:relative;
    z-index:1;	
    }
    /* Instagram紫グラデ背景色 */
    .insta_btn11{
    background:-webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background:linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    overflow:hidden;
    }
    /* Instagramオレンジグラデ背景色 */
    .insta_btn11:before{
    content: '';
    position:absolute;
    top:17px;
    left:-75px;
    width:100%;
    height:100%;
    background:-webkit-radial-gradient(#ffdb2c 5%, rgba(255, 105, 34, 0.65) 45%, rgba(255, 88, 96, 0) 80%);
    background:radial-gradient(#ffdb2c 5%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 80%);
    }
    /* Facebook */
    .fl_fb1{
    background:#3b5998;
    }
    /* Feedly */
    .fl_fd1{
    background:#6cc655;
    }
    /* Pocket */
    .fl_pk1{
    background:#ef3f56;
    }
    /* はてブ */
    .fl_hb1{
    background:#1ba5dc;
    }
    /* YouTube */
    .fl_yu1{
    background:#fc0d1c;
    }
    /* LINE */
    .fl_li1{
    background:#00c300;
    }
    /* お問い合わせメール */
    .fl_ma1{
    background:#f3981d;
    }
    /* プロフィール */
    .fl_pf11{
    background:#555;
    }
    /* アイコンボタンホバー時 */
    .flowbtn11:hover span{
    -webkit-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    transform: rotateX(360deg);
    text-decoration:none;
    }
    /* ボタン内テキスト調整 */
    .flowbtn11 span{
    font-size:14px;	
    position:relative;
    left:8px;
    bottom:2px;
    transition:.6s;	
    display:inline-block;	
    }
    /* ulタグの内側余白を０にする */
    ul.snsbtniti2{
    padding:0!important;
    }
    /* アイコンボタンの位置調整 */
    .snsbtniti2{
    display:flex;
    flex-flow:row wrap;
    }
    /* アイコンボタン同士の余白調整 */
    .snsbtniti2 li{
    flex:0 0 48%;
    text-align:center!important;
    }
/*背景
------------------------------------------------------------------------------------------*/
@media screen and (min-width:641px) {
body {
    background: radial-gradient(1.5em 6.28571em at 1.95em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 55%, rgba(255, 255, 255, 0) 55%) 0 0, radial-gradient(1.5em 6.28571em at -0.45em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 55%, rgba(255, 255, 255, 0) 55%) 1.5em 5.5em, radial-gradient(2.3em 4.57143em at 2.99em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 55%) 0 0, radial-gradient(2.3em 4.57143em at -0.69em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 55%) 2.3em 4em, radial-gradient(3.5em 6.28571em at 4.55em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 55%, rgba(255, 255, 255, 0) 55%) 0 0, radial-gradient(3.5em 6.28571em at -1.05em, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0.25) 55%, rgba(255, 255, 255, 0) 55%) 3.5em 5.5em, radial-gradient(#15ffa5, #00ced1);
    background-color: mediumspringgreen;
    background-size: 1.5em 11em, 1.5em 11em, 2.3em 8em, 2.3em 8em, 3.5em 11em, 3.5em 11em, 100% 100%;
    background-repeat: repeat;
  }
}