/*基本設定*/
body{background-color:#fff;
    letter-spacing: 0.03em;
    line-height: 1.5em;
    max-width: 960px;
    margin-left:auto;
    margin-right:auto;
    text-align:left;}

  h1{font-family:serif,sans-serif;
     font-weight: bold;
     font-size:40px;
     margin: 0.4em 70px 0.4em 15px;
     padding:0.3em 0.1em;
     letter-spacing:0.1em;}
  
  h2{font-family:serif,sans-serif;
     font-weight:bold;
     margin: 1.5em 40px 0.5em 40px;
     padding: 0.3em 0.5em;
     letter-spacing:2px;
     background-color:#ffd0a8;}
  
  p{font-family:sans-serif;
    margin: 0px 60px 1em 60px;
    word-break:break-word;
   }

  sup{font-size:smaller;}  /*上付き文字 */

    /*リンクの装飾*/
  a{
  position: relative;
  display: inline-block;
  transition: .3s;}
  a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #ee7800;
  transition: .3s;
  transform: translateX(-50%);}
  a:hover::after{
  width: 100%;}
  
  table,th,td{border-style:solid;}
  table{margin: 0 0 0.5em 55px;
        border-collapse:collapse;
        border-width:2px;
        border-color:#000;
        font-size: 14px;
        word-break:break-word;}
  th{background-color:#ccc;
     padding: 2px;
     text-align:left;} /*独自値*/
  td{background-color:#fff;
     padding: 2px;
     text-align:left;} /*独自値*/
  
/*レスポンシブ*/
@media screen and (max-width : 899px ) {
    img{
    max-width: 880px;}
    h1{
     font-size:40px;}
    }

@media screen and (max-width : 480px ) {
    img{
    max-width: 400px;}
    header_img{
    display: none;}
    h1{
    font-size:30px;}
    }

/*疑似ヘッダー*/
.logo{
    margin:0;}

.gnavi__wrap {
   /* display: flex; */
    position: sticky;
    top: 0;
    width: 100%;
    margin: 0 auto;
    z-index:100;}

/* 旧来ロゴ 凍結中 */
    .logo0 {
    margin: 0 10px 0 10px;
    top:0;}

.gnavi__lists {
    display: flex;
    list-syle: none;
    padding-left: 0;}
.gnavi__list {
    width: 12.5%;
    height: 60px;
    background-color: #fab41f;
    position: relative;
    transition: all .3s;
    list-style: none;
    padding-left: 0;}
.gnavi__list:hover {
    background-color: #ffa203;}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;}
.gnavi__list:hover::before {
    background-color: #fff;}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #1b4059;
    font-size: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;}
.gnavi__list:hover a {
    color: #fff;}
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 60px;}
.gnavi__list:hover .dropdown__lists {
    display: block;}/*Gナビメニューにホバーしたら表示*/
.dropdown__list {
    background-color: #ffb943;
    height: 60px;
    transition: all .3s;
    position: relative;
    list-style: none;
    padding-left: 0;
    left: -40px;}
/*.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ffb943;
    position: absolute;
    top: 0;
    }*/

.dropdown__list:hover {
    background-color: #fcb439;}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;}
.dropdown__list a::before {
    content: '';
    display: block;
    text-decoration: none;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);}

  /* 旧ヘッダー */
    header{
      display: flex;
      width:100%;
      height:120px;
      justify-content: space-between;
      align-items: center;
      background: #fff;
      }
  /* 旧ロゴ */
    .logo0 {
      margin: 0 10px 0 10px;
      }
  /*ヘッダーページ間リンクの表枠*/
    .menu{
      display: block;
      list-style-type: disc;
      margin-block-start: 1em;
      margin-block-end: 1em;
      margin-inline-start: 0px;
      margin-inline-end: 20px;
      }
  /*ページ間リンク内容*/
    .menu_item{
      list-style:none;
      display:inline-block;
      }


  
  /* ここから下がハンバーガーメニューに関するCSS */
  /* チェックボックスを非表示にする */
    .drawer_hidden {
      display: none;
      }

  /* ハンバーガーアイコンの設置スペース */
    .drawer_open {
      display: flex; /*画面の定位置*/
      height: 60px;
      width: 60px;
      justify-content: center;
      align-items: center;
      position:fixed;
      top:60px;
      right:10px;
      z-index: 100; /* 重なり順を一番上にする */
      cursor: pointer;
   
      }
  /* ハンバーガーメニューのアイコン */
    .drawer_open span,
    .drawer_open span:before,
    .drawer_open span:after {
      content: '';
      display: block;
      height: 3px;
      width: 25px;
      border-radius: 3px;
      background: #333;
      transition: 0.5s;
      position: absolute;
      }
  /* 三本線の一番上の棒の位置調整 */
    .drawer_open span:before {
      bottom: 8px;
      }
  /* 三本線の一番下の棒の位置調整 */
    .drawer_open span:after {
      top: 8px;
      }
  /* アイコンがクリックされたら真ん中の線を透明にする */
    #drawer_input:checked ~ .drawer_open span {
      background: #ffffff00;
      }
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
    #drawer_input:checked ~ .drawer_open span::before {
      bottom: 0;
      transform: rotate(45deg);
      }
    #drawer_input:checked ~ .drawer_open span::after {
      top: 0;
      transform: rotate(-45deg);
      }
  /* メニューのデザイン*/
    .nav_content {
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 100%; /* メニューを画面の外に飛ばす */
      z-index: 99;
      background: #fff;
      transition: .5s;
      margin:0 0 0 100%;
      }
  /* メニュー黒ポチを消す */
    .nav_list {
      list-style: none;
      margin-block-start: 7em;
      margin-block-end: 1em;
      margin-inline-start: 0px;
      margin-inline-end: 0px;
      padding-inline-start: 40px;
      }
  /* アイコンがクリックされたらメニューを表示 */
    #drawer_input:checked ~ .nav_content {
      left: -300px;/* メニューを画面に入れる */
      }

/*語句集*/
.word:visited {
    color: #1e50a2;
    text-decoration: underline;}
.word:hover , .word:active {
		background-color: #1e50a2 ;
		color: #fff ;
		text-decoration: none;
	    }
  
  /*出典*/
    .site-notes{
      margin: 0 70px 1em 0;
      }
  
  /*青点線ボックス*/
    .box6 {
      padding: 1.5em 3em;
      margin: 2em;
      background: #f0f7ff;
      border: dashed 2px #5b8bd0; /*点線*/
      }
    .box6 p {
      margin: 0; 
      padding: 0;
      }
  
  

  
    .balloon {
      margin-bottom: 2em;
      position: relative;
      }
    .balloon:before,.balloon:after {
      clear: both;
      content: "";
      display: block;
      }
    .balloon figure {
      width: 60px;
      height: 60px;
      }
    .balloon-image-left {
      float: left;
      margin-right: 15px;
      }
    .balloon-image-right {
      float: right;
      margin-left: 15px;
      }
    .balloon figure img {
      width: 100%;
      height: 100%;
      border: 1px solid #aaa;
      border-radius: 50%;
      margin: 0;
      }
    .balloon-image-description {
      padding: 10px 0 0;
      font-size: 10px;
      text-align: center;
      }
    .balloon-text-right,.balloon-text-left {
      position: relative;
      padding: 10px;
      border: 1px solid;
      border-radius: 10px;
      max-width: -webkit-calc(100% - 120px);
      max-width: calc(100% - 120px);
      display: inline-block;
      }
      
    .balloon-text-left {
       background-color: #ccc;
      }
    .balloon-text-right {
       background-color: #fff;
      }
    .balloon-text-right {
      border-color: #ccc	;
      }
    .balloon-text-left {
      border-color: #ccc;
      }
    .balloon-text-right {
      float: left;
      }
    .balloon-text-left {
      float: right;
      }
    .balloon p {
      margin: 0 0 20px;
      }
    .balloon p:last-child {
      margin-bottom: 0;
      }
  /* 三角部分 */
    .balloon-text-right:before {
      position: absolute;
      content: '';
      border: 10px solid transparent;
      border-right: 10px solid #ccc;
      top: 15px;
      left: -20px;
      }
    .balloon-text-right:after {
      position: absolute;
      content: '';
      border: 10px solid transparent;
      border-right: 10px solid #fff;
      top: 15px;
      left: -19px;
      }
    .balloon-text-left:before {
      position: absolute;
      content: '';
      border: 10px solid transparent;
      border-left: 10px solid #aaa;
      top: 15px;
      right: -20px;
      }
    .balloon-text-left:after {
      position: absolute;
      content: '';
      border: 10px solid transparent;
      border-left: 10px solid #ccc;
      top: 15px;
      right: -19px;
      }
  
      /* 上に戻るボタン */
.pagetop {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}

.pagetop:hover {
	color: #fff !important;
	background-color: #ed702b;
	text-decoration: none;
}
/*fukidashi*/
/*吹き出し  アイコン  左寄せ*/
.fukidashi1 {
  width: 95%;
  margin: 12px 14px;
  overflow: hidden;
}

.fukidashi1 .icon {
  float: left;
  margin-right: -70px;
  width: 70px;

}

.fukidashi1 .icon .wphg{
  width: 70px;
  height: 70px;
}

.fukidashi1 .icon img{
  width: 100%;
  height: auto;
  border: solid 3px #b2d99a;
  /*0%：四角  10%～:角丸  50%:円*/
  border-radius: 30%;
}

.fukidashi1 .iconfont {
  padding-top:7px;
  font-size:10px;
  text-align:center
}

.fukidashi1 .bubble {
  display: inline-block;
  position: relative; 
  margin: 25px 20px 0 95px;
  padding: 13px;
  border-radius: 25px;
  background: #b2d99a;
  max-width: 500px;
}

.fukidashi1 .bubble:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px; 
  left: -14px;
  border-style: solid;
  border-width: 0 24px 17px 0;
  border-color: transparent #b2d99a;
}


/*吹き出し  アイコン  右寄せ*/
.fukidashi2 {
  width: 97%;
  margin: 12px 14px ;
  overflow: hidden;
  display:flex;
  justify-content: flex-start;
}

.fukidashi2{
  justify-content:flex-end;
}

.fukidashi2 .icon {
  display: inline-block;
  order:2 !important;
  margin-left: -70px;
  margin-right: 10px;
  width: 70px;
}

.fukidashi2 .icon img{
  width: 70px;
  height: 70px;
  border: solid 3px #b2d99a;
  /*0%：四角  10%～:角丸  50%:円*/
  border-radius: 30%;
}

.fukidashi2 .icon .wphg{
  width: 70px;
  height: 70px;
}

.fukidashi2 .iconfont {
  padding-top:7px;
  font-size:10px;
  text-align:center
}

.fukidashi2 .bubble {
  float: left;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin: 25px 90px 30px 20px;
  padding: 13px;
  border-radius: 25px;
  background: #b2d99a;
  max-width: 500px;
}

.fukidashi2 .bubble:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 13px; 
  right: -15px;
  border-style: solid;
  border-width: 17px 19px 0 0;
  border-color: #b2d99a transparent;
}
/*footer*/
footer{background-color:#f0f0f0;}

#footer-inner {
    border-top: 1px solid #aaaaaa;
    padding: 20px 0;

    .footer{font-size:20px;
            font-family:ヒラギノ角ゴ Pro W3;}

    .box0 {
  width: 400px;                /* 横幅を200pxに指定 */
  height: 400px;               /* 横幅を200pxに指定 */
  border: 1px solid #000;      /* わかりやすくボーダーを引く */
  overflow-y: scroll;/* 縦方向にスクロール可能にする */
        
}

    .ftitle {
    box-sizing: border-box;
    padding-bottom: 15px;
        font-size:20px;
        color:#fd7e00;
}

    .record {
    width: 45%;
    min-width: 400px;
    box-sizing: border-box;
    background-color: #FDF5E6;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
        marigin-bottom:20px;
        
}

    .m-activity-and-browser {
    background-color: #FDF5E6;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    box-sizing: border-box;
    padding: 30px 3.5%;
}

    .box10{
        width: 400px;                /* 横幅を200pxに指定 */
  height: 400px;               /* 横幅を200pxに指定 */
  border: 1px solid #000; }


  .explain {
    clear:both;
  }
  .box30 {
    margin: 2em 0.5em;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
    float: left;
    width: 30%;
  }
  .box30 .box-title {
    font-size: 1.2em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .box30 p {
    padding: 15px 20px;
    margin: 0;
  }
  .box30 img {
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
  }
  .box31 {
    margin: 1em 0.5em;
    background: #f1f1f1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
  }
  .box31 .box-title {
    font-size: 1.2em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .box31 p {
    padding: 15px 20px;
    margin: 0;
    text-align: left;
  }
  .box31 img {
    width:auto;
    height:auto;
    max-width:100%;
    max-height:100%;
  }
  @media screen and (max-width: 800px) {
    .box30 {
      margin: 2em 0.5em;
      background: #f1f1f1;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
      float: left;
      width: 45%;
    }
  }
  .kazyo ul {
    padding: 0;
  }
  .kazyo ul li, ol li {
    color: #404040;
    border-left: solid 6px #FFCCCC;/*左側の線*/
    border-bottom: solid 2px #dadada;/*下に灰色線*/
    background: whitesmoke;
    margin-bottom: 5px;/*下のバーとの余白*/
    line-height: 1.5;
    padding: 0.5em;
    list-style-type: none!important;/*ポチ消す*/
    font-weight: bold;
    width: 60%;
    float: right;
  }
  figure {
    float: left;
    margin: 0 15px 15px 0;
    width: 35%;
  }
  figure img {
    max-width: 100%;
  }
  
  @media screen and (max-width: 800px) {
    figure {
      float: none;
      width: 80%;
      text-align: center;
    }
    .kazyo ul li, ol li {
      float: none;
      width: 100%;
    }
  }
  .waku {
    clear:both;
  }
  
.box26 {
  position: relative;
  margin: 2em 4em;
  padding: 0.5em 1em;
  border: solid 3px #FFCCCC;
  border-radius: 8px;
  clear:both;
}
.box26 .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  font-size: 19px;
  background: #FFF;
  color: #e44497;
  font-weight: bold;
}
.box26 p {
  margin: 0; 
  padding: 0;
}
/* 上に戻るボタン */
.pagetop {
	color: #fff;
	background-color: rgba(0,0,0,0.3);
	text-decoration: none;
	display: none;
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	font-size: 1.5rem;
	width: 3.3rem;
	height: 3.3rem;
	line-height: 3.3rem;
	border-radius: 3.3rem;
	text-align: center;
	cursor: pointer;
}
