/*基本設定*/
body{background-color:#ffffff;
    letter-spacing: 0.03em;
    line-height: 1.5em;
     max-width: 960px;
    margin-left:auto;
    margin-right:auto;
     }
  
  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 70px 0.5em 30px;
     padding: 0.3em 0.5em;
     letter-spacing:2px;
     background-color:#FFD3A7;}
  
  p{font-family:sans-serif;
    margin: 0px 70px 1em 60px;
   }

  /* ここから下がハンバーガーメニューに関する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;/* メニューを画面に入れる */
      }
  
  sup{font-size:smaller;}  /*上付き文字 */
/*画像の大きさ指定*/
.red {width:400px;
         height:233px;}

/*セクション*/


.content{
    marigin:5px 15px;
    padding:2.5px;}

/*レスポンシブ*/
@media screen and (max-width : 899px ) {
img{
    max-width: 880px;
    }
body{
    margin: 0 30px;
    }
    h1{
     font-size:40px;
}

}

    
@media screen and (max-width : 480px ) {
img{
    max-width: 400px;
    }
header_img
    {
    display: none;
    }
    h1{
     font-size:25px;
}
}


 /*リンクの装飾*/
            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%;
}

/*動く写真*/
.slider {
  width: 80%px;
  height: 80%px;
  display: flex;
  overflow: hidden;
  margin: 0 auto;
}
.slider > :first-child {
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 20s;
  animation-duration: 20s;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes scroll {
0% {
  margin-left: 0;
}

20% {
  margin-left: -100%;
}

25% {
  margin-left: -100%;
}

45% {
  margin-left: -200%;
}

50% {
  margin-left: -200%;
}

70% {
  margin-left: -300%;
}

75% {
  margin-left: -300%;
}

95% {
  margin-left: -400%;
}

100% {
  margin-left: -400%;
}
}
  
  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;}
  th{background-color:#ccc;
     padding: 2px;
     text-align:center;}
  td{background-color:#fff;
     padding: 2px;
     text-align:right;}
/*下線*/
hr {
    border: none;
    border-top: 2px dotted green;}

/*文字下線ハイライト*/
.highlight {
    background: linear-gradient(transparent 60%, #ffff00
 0%);
    line-height: 1.0em;
}
/*サイト紹介　各ページについて*/
	.contents-outer section {
		display : flex ;
		flex-wrap : wrap ;
		justify-content : center ;
		margin : 50px 0 50px 2.5% ;
		text-align : center ;
		width : 100% ;
	}
	.contents-outer section a {
		//height : 250px ;
		margin : 50px 2.5% ;
	}
	.contents {
		border-radius : 15px ;
		box-shadow : 5px 5px 1px 0.5px rgba( 150 , 150 , 150 , .2 ) ;
		//height : 300px ;
		width : 250px ;
	}
	.co1 {
		border : 2.5px solid #fc7cf4 ;/*ピンク*/
	}
	.co2 {
		border : 2.5px solid #0d05fa ;/*青*/
	}
	.contents:hover .p1 {
		color : #aaaaaa ;
		text-decoration : underline ;
	}
	.contents img {
		border-radius : 15px 15px 0 0 ;
	}
	.co1 img {
		border-bottom : 2.5px dotted #fc7cf4 ;/*ピンク*/
	}
	.co2 img {
		border-bottom : 2.5px dotted #0d05fa ;/*青*/
	}
	.co1 span {
		color : #fc7cf4 ;/*ピンク*/
	}
	.co2 span {
		color : #0d05fa ;/*紺*/
	}
	.con-text {
		border-radius : 0 0 15px 15px ;
		padding : 0 5px 10px ;
	}
	.con-text span {
		font-size : 25px ;
		font-weight : bold ;
		line-height : 1 ;
		padding-top : 10px ;
	}
	.con-text .p1 {
		line-height : 1.5 ;
		margin : 0 ;
	}

　/*語句集*/
            	.dictionary {
		border-bottom : 1px solid #e0e0e0 ;
		border-top : 1px solid #e0e0e0 ;
	}
	.dictionary dl {
		font-size : 15px ;
		border-bottom : 1px solid #e0e0e0 ;
		border-top : 1px solid #e0e0e0 ;
		margin : 0 ;
		padding : 50px 10px ;
	}
	.dictionary dt {
		color : #e60033 ;
	}
	.dictionary dd {
		color : #000000 ;
	}

  /*脚注*/
    .site-notes{
      margin: 0 70px 1em 60px;
      }
  
  /*青点線ボックス*/
    .box6 {
      padding: 1.5em 3em;
      margin: 2em;
      background: #f0f7ff;
      border: dashed 2px #5b8bd0; /*点線*/
        display:inline-block;
      }
    .box6 p {
      margin: 0; 
      padding: 0;
      }
  
  /* 方眼紙模様に必須のスタイル */
  .box {
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                      linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center;
      background-color:#f0f8ff;
      border-color:#4dacff;
      width:80%;
  /* 以下任意のスタイル */
    padding: 20px;
  }
  
/*新しいヘッダー*/
.gnavi__wrap {
    position: sticky;
  top: 0;
    width: 100%;
    margin: 0 auto;
    z-index:100;
}

.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);
}
        /*次へ・戻るボタン2つを囲う箱*/
    .backnext{
      margin:0 10px 20px 10px;
      }
  /*戻るボタン*/
   .left-column {
      float: left;
      width: 50%; /* 要素の幅を50%に定義 */
      background-color: #fcf8e0; /* 視覚化のための背景色 */
      }
  /* 次へボタン */
    .right-column {
      float: right;
      width: 45%; /* 要素の幅を50%に定義 */
      background-color: #fcf8e0; /* 視覚化のための背景色 */
      }
  
    .btn-flat-logo {
      position: relative;
      display: inline-block;
      font-weight: bold;
      padding: 2em 8em;
      text-decoration: none;
      color: #fcf8e0;
      background: #9977ff;
      transition: .4s;
      }
    .btn-flat-logo:hover {
      background: #1ec7bb;
      }
  
  /* ボタンのアニメーション */
    .btn-animation-02 {
      display: inline-block;
      width: 200px;
      text-align: center;
      background-color: #ff6699;
      border: 2px solid #ff6699;
      font-size: 16px;
      color: #ff6699;
      text-decoration: none;
      font-weight: bold;
      padding: 10px 24px;
      border-radius: 4px;
      position: relative;
      }
    .btn-animation-02 span {
      position: relative;
      z-index: 1;
      }
    .btn-animation-02::before,
    .btn-animation-02::after {
      content: "";
      display: block;
      background-color: #fcf8e0;
      width: 50%;
      height: 100%;
      position: absolute;
      top: 0;
      transition: .2s;
      }
    .btn-animation-02::before {
      left: 0;
      }
    .btn-animation-02::after {
      right: 0;
      }
    .btn-animation-02:hover:before,
    .btn-animation-02:hover:after {
      width: 0;
      background-color: #fcf8e0;
      }
    .btn-animation-02:hover {
      color: #fcf8e0;
      }
    
    /*アンダーライン*/
    .under {
      border-bottom: dotted 2px #87CEFA;
    }
  
  /*無印吹き出し*/
    .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;
    }
    .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: #ffd3a7;
    border-color: #ffd3a7;
    float: right;}     
    .balloon-text-right {
    background-color: #fab41f;
    border-color: #fab41f;
    float: left;}

  .balloon p {
  margin: 0 0 20px;
      max-width:500px;
  }
  .balloon p:last-child {
  margin-bottom: 0;
  }
  /* 三角部分 */
  .balloon-text-right:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #fab41f;
  top: 15px;
  left: -20px;
  }
  .balloon-text-right:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-right: 10px solid #fab41f;
  top: 15px;
  left: -19px;
  }
  .balloon-text-left:before {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #ffd3a7;
  top: 15px;
  right: -20px;
  }
  .balloon-text-left:after {
  position: absolute;
  content: '';
  border: 10px solid transparent;
  border-left: 10px solid #ffd3a7;
  top: 15px;
  right: -19px;
  }

    /*新しいレスポンシブ対応の吹き出し*/
    /*吹き出し  アイコン  左寄せ*/
.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: #FDF5E6;
  max-width: 500px;
    border-color:#FDF5E6;
    border-solid:2px;
    border-style:solid;
}

.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 #FDF5E6;
}


/*吹き出し  アイコン  右寄せ*/
.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: #fab41f;
  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: #fab41f transparent;
}

                #wrapper {
    margin: 30px 10% 0;
}
    
  /*3吹き出し本体 */
  .balloon3{
      top:-30px;
      display: inline-block;
      position: relative;
      padding: 20px;
      border-radius: 10px;
      color: #000000;
      background-color: rgb(234, 166, 202);
      margin-left: 110px;          /* 左に余白を設ける */
    }
    /*3画像 - 絶対配置で左上に配置 */
    .balloon3 .icon{
      position: absolute;
      left: -110px;
      top: 0;
    }
    /*3三角アイコン */
    .balloon3::before{
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      left: -15px;
      top: 20px;
      border-right: 15px solid rgb(234, 166, 202);
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
    }
  
    /*4吹き出し本体 */
    .balloon4{
        top: -40px;
        float: right;
      position: relative;
      padding: 20px;
      border-radius: 10px;
      color: #000000;
      background-color: rgb(186, 173, 244);
      margin-left: 80px; 
         max-width: -webkit-calc(100% - 80px);
  max-width: calc(100% - 80px);
  display: inline-block;/* 右に余白を設ける */
    }
    /*4画像 - 絶対配置で右上に配置 */
    .balloon4 .icon{
      position: absolute;
      right: -110px;
      top: 0;
        float: right;
    }
    /*4三角アイコン */
    .balloon4::before{
      content: '';
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      right: -15px;
      top: 20px;
      border-left: 15px solid rgb(186, 173, 244);
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
    }
  
    /* 018 */
.button018 a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 225px;
    padding: 10px 0px 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.button018 a:before, .button018 a:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
}
.button018 a:before {
  width: 0.5rem;
  height: 0.5rem;
  left: 1.1rem;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  z-index: 2;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.button018 a:after {
  left: 0;
  background: #FBB161;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 4rem;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.button018 a span {
  position: relative;
  transition: all 0.3s;
  z-index: 3;
}


.button018 a:hover:before {
  left: 2rem;
}
.button018 a:hover:after {
  right: 0;
  width: 100%;
}


.box15 {
    padding: 10px;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
    hspace:30px;
    width:80%;
    marigin-left:30px;
}
.box15 p {
    margin: 0; 
    padding: 0;
}

/*ヘッダー設定*/
.header {
    display: flex;
    width:100%;
    height:120px;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    }
  
  .logo {
    margin: 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;
    }


        /*次へのリンク*/
        .link-content{
            text-align:center;
        
        }
        .link-content a {
            line-height: 1;
            color:#ee7800;
        }
        .link-content a :visited{
            color:#ee7800;
            }

          /* ここから下がハンバーガーメニューに関する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;/* メニューを画面に入れる */
      }
  


/* 上に戻るボタン */
.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; }
    }
.popup ul{
  display: flex;
}

.chart ul {
  display: flex;
  }
  .chart li {
  list-style: none;
  }

.box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #000000;/*文字色*/
    background: #FFF;
    border: solid 3px #6091d3;/*線*/
    border-radius: 10px;/*角の丸み*/
}
.box2 p {
    margin: 1em; 
    padding: 1em;
}

.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;
}

body{background-color:#ffffff;
  letter-spacing: 0.03em;
  line-height: 1.5em;
  max-width: 960px;
  margin-left:auto;
  margin-right:auto;
  text-align: center;
  }
  }
  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 70px 0.5em 30px;
  padding: 0.3em 0.5em;
  letter-spacing:2px;
  background-color:#FFD3A7;}
  p{font-family:sans-serif;
  margin: 0px 70px 1em 60px;
  }
  @media screen and (max-width : 899px ) {
  img{
  max-width: 880px;
  }
  body{
  margin: 0 30px;
  }
  h1{
  font-size:40px;
  }
  }
  
  @media screen and (max-width : 480px ) {
  img{
  max-width: 400px;
  }
  header_img
  {
  display: none;
  }
  h1{
  font-size:25px;
  
  }
  }
  
  .quizzes-container {
  width: 400px;
  margin: 50px auto;
  }
  .quiz-container {
  border-bottom:1px solid black;
  padding-bottom: 20px;
  }
  .btn {
  margin-top: 20px;
  font-family: serif;
  background-color: white;
  }
  #score-container {
  border: 1px solid black;
  height: 50px;
  }
  .btn-score {
  display: block;
  margin: 20px auto;
  font-family: serif;
  background-color: white;
  }

  .inner-block {
    position: relative;
    width: calc(100% - 60px);
    margin: 0 auto;
    max-width: 1000px;
  }
   
  .quiz {
    min-height: 100vh;
    padding: 100px 0;
    background: #fff5db;
  }
   
  .quiz-content {
    border: 1px solid #222;
    background-color: rgba(#fff, 0.4);
    box-shadow: 2px 2px 4px rgba($color: #000, $alpha: 0.1);
    position: relative;
  }

 
.quiz-question-number {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  border-bottom: 1px solid #222;
  padding: 20px;
}
.quiz-question {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    padding: 30px 200px 0px;
  }
  .quiz-question {
    font-size: 32px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
    padding: 30px 200px 0px;
  }
  .quiz-answer {
    li {
      label {
        &::after {
          position: absolute;
          text-align: center;
          font-size: 20px;
          font-weight: bold;
          content: "";
          width: 60px;
          height: 40px;
          display: flex;
          align-items: center;
          justify-content: center;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto;
          z-index: 1;
          pointer-events: none;
          border-right: 1px solid #000;
        }
      &:nth-child(1)::after {
        content: "A";
      }
      &:nth-child(2)::after {
        content: "B";
      }
      &:nth-child(3)::after {
        content: "C";
      }
      &:nth-child(4)::after {
        content: "D";
      }
    }
  }

  .box2 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    color: #000000;/*文字色*/
    background: #fff;
    border: solid 3px #fab41f;/*線*/
    border-radius: 10px;/*角の丸み*/
    display-inline:block;
    }
    .box2 p {
    margin: 0;
    padding: 0;
    }
    .future{font-family:serif,sans-serif;
    font-weight: bold;
    font-size:20px;}
    .highlight {
    background: linear-gradient(transparent 60%, #ffff00 0%);
    line-height: 1.0em;}