﻿body{
  background-color: lightyellow;
}
.header {
  height: 50px;
  background-color: #00acc1;
}
.footer{
  height: 30px;
  background: #00acc1;
  color: #fff;
  clear: both;
}
.main-contents, .right-navi {
  height: 9000px;
}
.main-contents {
  background-color: white;
  color: #00000;
  float: left; /**left */
  width: 68%;
}
.right-navi {
  background-color: #ffffff; /*#00acc1*/
  color: #000;
  float: right; /**right**/
  width: 30%;
}
.main{
  width: 100%;
  float: right; /*right*/
}
/***************************************/
@media screen and (max-width: 600px){  /*****600px**Ipad*/
  .main, .left-navi,.main-contents, .right-navi{
  width: 100%;
  }
}
/*****************************************************************************************/
/*************************<p>「負けたことがある」というのが、いつか大きな財産になる。</p>***/
/********https://www.webcreatorbox.com/tech/css3-animation-colour*********************************/
body {
  background-color: #e74c3c;
  animation: bg-color 10s infinite;
  -webkit-animation: bg-color 10s infinite;
}
@-webkit-keyframes bg-color {
  0% { background-color: #FFFF00; }
  20% { background-color: #00acc1; }
  40% { background-color: #ffffff; }
  60% { background-color: #00acc1; }
  80% { background-color: #ffffff; }
  100% { background-color:##00acc1; }
}
@keyframes bg-color {
  0% { background-color: #FFFF00; }
  20% { background-color: #3AB717; }
  40% { background-color: #ffffff; }
  60% { background-color: #FFFF00; }
  80% { background-color: #00acc1; }
  100% { background-color: #ffffff; }
}



/***************************************************************************/
/******No-1 Flex * item ***********https://encycolorpedia.jp/83cdc8*****************************/
/***********************************************/
 .item {
  border-radius: 10px; /*10px*/
  background: #00acc1; /*edf 写真枠色16進*/
  padding: 10px; /*15px*/
  margin: 5px; /*5px*/
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
video {
  max-width: 100%;
  height: auto; /*auto*/
}
p {
  text-align: left;
}

@media ( min-width : 600px ){ /***400px*/
    .flexbox {
    display: flex;
    flex-wrap: wrap;
    }
  .item {
    width: 24%;/*25%*/
  }
}
/*******************************************************************/
/***************************************************************************/
/****** No-2 Flex a-item ************https://encycolorpedia.jp/83cdc8*****************************/
/***********************************************/
 
/**********************************************/
/****************https://www.webcreatorbox.com/tech/css-tips20*************************************************/
/*****************************************************************/
li {
  padding: 5px;
  border-top: 1px dotted #999;
  list-style: none;
}
ul li:first-child {
  border: none;
}

body {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Meiryo,"メイリオ",Helvetica,Sans-Serif;
}
/*****************************************************************/
/*******************************************************************/
@media screen and (max-width: 600px){ /***600px *****900pxでipadはIphoneと同様になる******/
  .main, .left-navi,.main-contents, .right-navi{
  width: 100%;
  }
}
/*******************************************************************/


/*******************************************************************/
/**************追加　log ****ok*********/
.iimg{
 width: 80%; /*****100%****/
    left: 15; /***右から********/
  right: 5;
  margin: auto;
}
/**************************************/
/*******************************************************************/
/********************** Youtube Background *********************************************/
/*******************************************************************/
html, xxxx {
                font-family: 'Lato', sans-serif;
                color: #1d1d1d;
                padding: 0px;
                margin: 0px;
            }
            body { height: 40vh; }

            .example-marquee {
                position: relative;
            }

            .content {
                display: table;
                width: 50%;
                min-height: 25vh; /*********高さ巾************/
                z-index: 2;
                position: relative;
            }

            .content .inner {
                display: table-cell;
                vertical-align: middle;
                text-align: center;
                padding-left: 56px;  /****36px**変化なし**/
                padding-right: 26px;　/*******36px*変化なし***/
            }

            .content .inner h1 {
                font-size: 32px;
                color: white;
                text-shadow: 0px 1px 3px rgba(0,0,0,0.5);
            }
/****************************************************************************/
/**********************https://cotodama.co/youtube_side/****N0-2***No-2**** ok ********************************/
/************************************* CSS先頭に********************************************************/
.wwrap{
  margin-bottom: 1.5rem;  /*1.5em */
text-align: left;
  margin: 10; /** 0 ****/
  padding: 0;/*****/
}
.yyoutube {
  position: relative; /*****relative ***/
  height: 0;
  margin-bottom: 20px; /**20px**/
  padding-bottom: 56.25%; /***56.25% */
  overflow: hidden;
}
.yyoutube iframe {
  position: absolute;
  top: 610; /***上から***/
  right: 15%; /**10%**動画右へ*/
  width: 67%; /*90%**/
  height: 67%; /**80%**/
}
.wwrap iimg{    /**** wwrap iimg**ok**/
  width: 10%; /*****100%****/
  position: absolute;
  left: 20;
  right: 30;
  margin: auto;
}


}
 
/* ココから下がPC表示（600px以上）のレイアウト */
@media screen and (min-width: 600px) {
  .ffloat-right{
    float: right;
    width: 49.5%; /******49.5% ******/
  }
  .ffloat-left{
    float:left; /*left*/
    width: 49.5%; /******49.5% ******/
  }
  .wwrap:after{
    display: block;
    clear: both;
    content: "";
  }
}

/*******************************************************************/
/*************************************/
/************https://cotodama.co/flexbox_responsive/***flex* OK ************************/
/*********************************************/
.flex{
  max-width: 800px; /**600px*/
  margin: 0 auto; /**0**/
}
img{
  max-width: 100%; /**100%**/
  display: block;
  margin: 0 auto;
}
@media screen and (min-width:600px) {
  .flex{
    display:flex;
    flex-wrap:nowrap;
    justify-content:space-between;
  }
  .item+.item{
    margin-left:-1em; /****1em **文字と写真間*****/
  }
}
/*****************************************************************/
/****************************2020.01.04 ***************************************/
.kyoutube {
  position: relative;
  height: 0;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.kyoutube iframe {
  position: absolute;
  top: 0;
  right: 15;
  width: 97%;
  height: 100%; /*100%*/
}
.kcontainer img{
  max-width: 85%;/*95%*/
}
 
/* ココから下がPC表示（600px以上）のレイアウト */
@media screen and (min-width: 600px) {
  .kcontainer{
    display: flex;
    margin-bottom: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .kitem{
    flex-basis: 49.5%;
  }
}
/*********************************************************/
/***********************************footer WAVE********** oK ********************************/
/****** https://deshinon.com/2019/03/03/koseiteki-dokusouteki-footer-css/ :****/
/******************************************************************************/
@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");

body {
  font-family: Lato, sans-serif;
}

footer {
  width:94.3vw; /**100vw*94.3vw**ok*/
  position:fixed;
  bottom:0px
}
footer div {
  background-color:#4478e3;
  margin: -5px 0px 0px 0px;
  padding:0px;
  color: #000;
  text-align:center;
}
svg {
  width:100%;
}
.arrow {
  stroke-width: .0px; /** 3px *矢印*/
  stroke:yellow;
}
.topball {
  animation: ball 1.5s ease-in-out;
  animation-iteration-count:infinite;
  animation-direction: alternate;
  animation-delay: 0.3s;
  cursor:pointer;
}

.wave {
  animation: wave 3s linear;
  animation-iteration-count:infinite;
  fill: #4478e3;
}
.drop {
  fill: transparent;
  animation: drop 5s ease infinite normal;
  stroke: #4478e3;
  stroke-width:0.5;
  opacity:.6; 
  transform: translateY(80%);
}
.drop1 {
  transform-origin: 20px 3px;
}
.drop2 {
  animation-delay: 3s;
  animation-duration:3s;
  transform-origin: 25px 3px;
}
.drop3 {
  animation-delay: -2s;
  animation-duration:3.4s;
  transform-origin: 16px 3px;
}
.gooeff {
    filter: url(#goo);
}
#wave2 {
  animation-duration:5s;
  animation-direction: reverse;
  opacity: .6
}
#wave3 {
  animation-duration: 7s;
  opacity:.3;
}
@keyframes drop {
  0% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  80% {
    transform: translateY(80%); 
    opacity:.6; 
  }
  90% { 
    transform: translateY(10%) ; 
    opacity:.6; 
  }
  100% { 
    transform: translateY(0%) scale(1.5);  
    stroke-width:0.2;
    opacity:0; 
  }
}
@keyframes wave {
  to {transform: translateX(-100%);}
}
@keyframes ball {
  to {transform: translateY(20%);}

/****************************************************************************/
/**********************************/
/******************************/
/****** Font Awesome 5 ***CSS ここだけでok *****/

}.my-gray {color: gray}
.my-skyblue {color: skyblue}
.my-blue {color: #00acc1}
.my-orange {color: #fecb81}
.my-red {color: #ff0000}
.my-red2 {color: #d685b0}
.my-green {color: #b3d3ac}
}
/***************************************************************************************/
/***************************************************/
/*************** FontAwesome *****https://kirari-yums.net/2019/01/20/post-6388/****/
/******************https://fontawesome.com/v4.7.0/*********************************/
@media screen and (max-width: 600px){
/*H3見出し*/
h3{
    border-bottom: 2px solid #a61919;  /*下線太さ 種類 色*/
    border-left: transparent;  /*左線を透明*/
    color: #a61919; /*文字色*/
}

h3:before{
    color: #ffffff;  /*アイコンの色*/
    font-family:"Font Awesome 5 Free";
    content:"\f0a7";  /*アイコンのコード*/
    font-weight:900;  /*アイコンの種類*/
    margin-right:15px;  /*アイコン右の余白*/
}
/***************************************************/
/********** Font Awesome5 Color ******************/
/**************************************************/
@media screen and (max-width: 600px){
.my-gray {color: gray}
.my-skyblue {color: skyblue}
.my-orange {color: #fecb81}
.my-gray {color: green}
/***********************************************/
/*************** 見出し*************************/
/***************Font Awesome 5 *****************/
@media screen and (max-width: 600px){
h3 {
  position: relative;
  color: white; /****文字色***********************/
  background: #14d7e5;
  line-height: 1.5; /** 見出しの高さ****/
  padding: 0.25em 0.5em;  /** 文字の横からマージン****/
  margin: 2em 0 0.5em; /****2***********************/
  border-radius: 0 5px 5px 5px;
}

h3:after {
  /*タブ*/
  position: absolute;
  font-family: "Font Awesome 5 Free",'Quicksand','Avenir','Arial',sans-serif;
  content: '\f00c Check';
  background: #2196F3; /********#2196F3******************/
  color: #fff;
  left: 0px;
  bottom: 100%; /******タブの位置******/
  border-radius: 5px 5px 0 0;
  padding: 3px 7px 1px; /******3*****7******1**********/
  font-size: 0.8em; /****タブの文字サイズ***/
  line-height: 1;
  letter-spacing: 0.01em /****タブ文字の間隔***/
}

/***********************************/

/**********************************/

/**************************************/


