 body,
 html {
     margin: 0;
     padding: 0;
     width: 100%;
     height: 100%;
     font-family: sans-serif;
     background-color: #f5f3f3;
 }
 
 @media screen and (max-width: 768px) {
     body,
     html {
         font-size: 16px;
     }
 }
 
 @media screen and (min-width: 769px) {
     body,
     html {
         font-size: 20px;
     }
 }
 
 @media screen and (max-width: 768px) {
     #header {
         font-size: 1em;
         top: 0px;
         width: 100%;
         line-height: 1.4em;
         background-color: #FFF;
         color: rgb(112, 109, 109);
     }
     .header_text {
         width: 90%;
         padding-top: 20px;
         padding-bottom: 1px;
         text-align: center;
     }
 }
 
 @media screen and (min-width: 769px) {
     #header {
         font-size: 1.2em;
         top: 0px;
         width: 100%;
         line-height: 1.4em;
         background-color: #FFF;
         color: rgb(112, 109, 109);
     }
     .header_text {
         width: 90%;
         padding-top: 20px;
         padding-bottom: 5px;
         text-align: center;
     }
 }
 
 @media screen and (max-width: 768px) {
     .logo {
         margin-top: 5px;
         height: 50px;
         width: auto;
     }
 }
 
 @media screen and (min-width: 769px) {
     .logo {
         margin-top: 5px;
         height: 80px;
         width: auto;
     }
 }
 
 #quetion {
     padding-left: 5px;
     padding-top: 10px;
     font-size: 1.3em;
     font-weight: bold;
 }
 
 #answer {
     padding-left: 5px;
     font-size: 1em;
 }
 
 @media screen and (max-width: 768px) {
     #parent {
         overflow: auto;
         border-radius: 5px;
         padding: 10px;
         background-color: #FFF;
         margin: 0 auto;
         width: 95%;
     }
 }
 
 @media screen and (min-width: 769px) {
     #parent {
         overflow: auto;
         border-radius: 5px;
         padding: 10px;
         background-color: #FFF;
         margin: 0 auto;
         width: 70%;
         max-width: 800px;
     }
 }
 
 @media screen and (max-width: 768px) {
     .parent {
         border-radius: 5px;
         padding: 10px;
         background-color: #FFF;
         margin: 0 auto;
         width: 95%;
     }
 }
 
 @media screen and (min-width: 769px) {
     .parent {
         border-radius: 5px;
         padding: 10px;
         background-color: #FFF;
         margin: 0 auto;
         width: 70%;
         max-width: 800px;
     }
 }
 
 #dic_top {
     margin-left: 10px;
     cursor: pointer;
     width: fit-content;
     text-align: center;
     font-size: 1em;
     padding: 10px 10px;
     color: #FFF;
     border-radius: 5px;
     font-weight: bold;
     box-shadow: 0px 2px 2px 1px #bebebe;
     border: 2px solid #ff1493;
     background-color: #ff1493;
 }
 
 .dic_link {
     text-decoration: none;
 }
 
 #footer {
     position: fixed;
     bottom: 0;
     text-align: center;
     font-size: 0.9em;
     width: 100%;
     color: rgb(92, 91, 91);
     background-color: rgb(214, 216, 217);
 }
 
 .footer_logo {
     vertical-align: middle;
     height: 40px;
     width: auto;
 }
 /*　ハンバーガーボタン　*/
 
 .hamburger {
     cursor: pointer;
     display: block;
     position: fixed;
     z-index: 13;
     right: 5px;
     top: 5px;
     width: 42px;
     height: 42px;
     cursor: pointer;
     text-align: center;
 }
 
 .hamburger span {
     display: block;
     position: absolute;
     width: 30px;
     height: 2px;
     left: 6px;
     background: #b75f5f;
     -webkit-transition: 0.5s ease-in-out;
     -moz-transition: 0.5s ease-in-out;
     transition: 0.5s ease-in-out;
 }
 
 .hamburger span:nth-child(1) {
     top: 10px;
 }
 
 .hamburger span:nth-child(2) {
     top: 20px;
 }
 
 .hamburger span:nth-child(3) {
     top: 30px;
 }
 
 @media (min-width: 769px) {
     .hamburger {
         display: block;
         position: fixed;
         z-index: 13;
         right: 13px;
         top: 12px;
         width: 42px;
         height: 42px;
         cursor: pointer;
         text-align: center;
     }
     .hamburger span {
         display: block;
         position: absolute;
         width: 30px;
         height: 2px;
         left: 6px;
         background: #b75f5f;
         -webkit-transition: 0.5s ease-in-out;
         -moz-transition: 0.5s ease-in-out;
         transition: 0.5s ease-in-out;
     }
     .hamburger span:nth-child(1) {
         top: 10px;
     }
     .hamburger span:nth-child(2) {
         top: 20px;
     }
     .hamburger span:nth-child(3) {
         top: 30px;
     }
 }
 /* ナビ開いてる時のボタン */
 
 .hamburger.active span:nth-child(1) {
     top: 16px;
     left: 6px;
     -webkit-transform: rotate(315deg);
     -moz-transform: rotate(315deg);
     transform: rotate(315deg);
 }
 
 .hamburger.active span:nth-child(2),
 .hamburger.active span:nth-child(3) {
     top: 16px;
     -webkit-transform: rotate(-315deg);
     -moz-transform: rotate(-315deg);
     transform: rotate(-315deg);
 }
 
 nav.globalMenuSp {
     position: fixed;
     z-index: 12;
     top: 0;
     left: 0;
     color: #000;
     background: #fff;
     text-align: center;
     transform: translateX(100%);
     transition: all 0.6s;
     width: 100%;
     overflow-y: scroll;
 }
 
 .globalMenuSp::-webkit-scrollbar {
     display: none;
 }
 
 nav.globalMenuSp ul {
     background: rgb(160, 159, 159);
     margin: 0 auto;
     padding: 0;
     width: 100%;
 }
 
 nav.globalMenuSp ul li {
     list-style-type: none;
     padding: 0;
     width: 100%;
     height: auto;
     border-bottom: 1px solid #fff;
 }
 
 nav.globalMenuSp ul li:last-child {
     padding-bottom: 0;
     border-bottom: none;
 }
 
 nav.globalMenuSp ul li:hover {
     background: #b0b0b0;
 }
 /* このクラスを、jQueryで付与・削除する */
 
 nav.globalMenuSp.active {
     transform: translateX(0%);
 }
 /* アコーディオン */
 
 .contents_menu {
     font-size: 1em;
     display: none;
     text-decoration: none;
 }
 
 .list-item {
     height: 60px;
 }
 
 .menu-title {
     color: #fff;
     font-size: 1.1em;
     height: 50px;
     padding-top: 18px;
     padding-bottom: 4px;
     font-weight: 600;
     font-family: sans-serif;
 }
 
 @media (min-width: 769px) {
     .list-item {
         height: 60px;
     }
     .menu-title {
         height: 50px;
         padding-top: 20px;
         padding-bottom: 20px;
     }
 }
 
 .cencept_pa {
     width: 100%;
     text-align: center;
     display: inline-block;
 }
 
 .cencept_pa .concept {
     color: #fff;
     font-weight: bold;
     font-size: 16px;
     text-align: left;
     width: 98%;
     padding-left: 7px;
     padding-right: 7px;
     display: inline-block;
 }
 
 @media (min-width: 769px) {
     .cencept_pa .concept {
         width: 50%;
         text-align: left;
         display: inline-block;
     }
 }
 
 .list_link {
     font-size: 1.1em;
     font-weight: 700;
     color: #fff;
 }
 
 .list_link:hover {
     color: #fff;
 }
 
 .list_link:visited {
     color: #fff;
 }
 
 .latest_title {
     font-size: 1em;
     display: flex;
     align-items: center;
     vertical-align: middle;
 }
 
 .latest_img {
     height: 20px;
     width: auto;
 }
 
 #latest_list {
     font-size: 1em;
     color: #4f697e;
 }
 
 #latest_list:hover {
     color: #4f697e;
 }
 
 #latest_list:visited {
     color: #4f697e;
 }
 
 .lis {
     text-decoration: none;
 }
 
 .lis:hover {
     color: #fff;
 }
 
 .lis:visited {
     color: #fff;
 }