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

グリッサンドコーポレートサイトcss
2025/5/1

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

/*========= 基本 ===============*/

@import url('https://fonts.googleapis.com/css?family=Roboto:300,400');

@font-face {
  font-family: 'NotoSansJP';
  src: url("../font/NotoSansJP-VariableFont_wght.ttf");
}

* {
  font-family: 'Roboto', 'Hiragino Kaku Gothic ProN', 'NotoSansJP', sans-serif, Meiryo;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  transition: all 0.4s;
}

a:hover {
  text-decoration: none;
}

/* 見出し */
h1 {
  font-size: 42px;
  font-weight: 300;
}

h1 span {
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
}

/*========= コンテンツ ===============*/

/* 画面全体 */
html {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  height: 100%;
}

.outLine {
  overflow-x: clip;
}

/* ヘッダー */
header {
  position: sticky;
  top: 4px;
  width: 100%;
  padding: 0 0 8px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.header_logo a {
  display: block;
}

.header_logo a h1 {
  color: #3752e6;
}

header a:hover {
  background-color: #98a8ff;
}

.header_link ul {
  display: flex;
}

.header_link ul li a {
  padding: 10px 20px;
  display: block;
  color: #3752e6;
  font-weight: bold;
/*  font-family: 'Viga';*/
}

header h1 {
  font-size: 20px;
  display: inline-block;
  padding: 10px 20px;
  margin: 0;
  color: #666;
  opacity: 1;
  transition: all 0.4s;
}

header.at-top h1 {
  opacity: 0;
  pointer-events: none
}

header .header_logo h1 span {
  font-weight: bold;
}

header .header_logo h1 span span {
  font-size: 14px;
  font-weight: normal;
}

header .header_logo h1 img {
  width: 30px;
  vertical-align: middle;
}

/* フッター */
footer {
  background-color: #5d5d5d;
  padding: 140px 20px 20px;
  color: #999;
  text-align: right;
}

/* コンテンツ共通 */
.wrap {
  max-width: 1600px;
  margin: 0 auto;
  padding-top: 20px;
}

.listArea {
  padding: 140px 40px 100px;
}

.list_wrap {
  margin-bottom: 260px;
}

.list_wrap ul {
  margin-top: 20px;
}

.h2_gray {
  color: #ddd;
  font-size: 180px;
  border-bottom: 1px solid #ddd;
  line-height: 1.2;
}

.h2_gray span {
  font-size: 40px;
  margin-left: 10px;
}

.text_right {
  text-align: right;
}

@media screen and (max-width:900px) {
  header h1 {
    font-size: 16px;
    border-left: none;
    display: block;
    padding: 10px;
    margin: 0;
  }

  header h1 span {
    display: none;
  }

  .listArea {
    padding: 80px 30px 80px;
  }
  
  .list_wrap {
    margin-bottom: 70px;
  }

  .h2_gray {
    font-size: 100px;
    border-bottom: 1px solid #bbb;
    line-height: 1.2;
  }

  .h2_gray span {
    font-size: 40px;
    margin-left: 10px;
  }
}

@media screen and (max-width:600px) {
  header .header_logo h1 span {
    display: none;
  }
  
  header .header_logo {
    width: 50px;
  }
  
  header .header_link {
    width: calc(100% - 50px);
  }
  
  .header_link ul {
    justify-content: space-around;
  }
  
  .header_link ul li a {
    padding: 15px 5px 5px;
    font-size: 14px;
  }
  
  .h2_gray {
    font-size: 58px;
  }

  .h2_gray span {
    font-size: 24px;
    display: block;
    padding-bottom: 16px;
    margin: 0;
  }
  
  .listArea {
    padding: 140px 15px 100px;
  }
}

/*========= トップ ===============*/
.topArea {
  height: calc(100vh - 68px);
  position: relative;
}

.video_container {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.video_container:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(rgba(255, 255, 255, 0.5) 5%, transparent 20%),
    radial-gradient(rgba(255, 255, 255, 0.5) 5%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}

.video_container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

.topArea_logo {
  padding: 0px 20px 10px;
  width: 100%;
  position: absolute;
  z-index: 10;
  overflow: hidden;
}

.topArea_logo h1 {
  font-size: clamp(16px, 17vw, 300px);
  color: #fff;
  line-height: 1;
  word-wrap: break-word;
  opacity: 0.95;
  font-weight: bold;
}

.topArea_logo h1 div {
  font-size: clamp(12px, 5vw, 88px);
  font-weight: bold;
  padding-left: 2em;
}

.topDescription {
  text-align: center;
  padding: 250px 20px 180px;
}

.topDescription_txt {
  margin-top: 60px;
  font-size: 18px;
}

@media screen and (max-width:900px) {
  .topArea_logo {
    padding: 20px;
  }
}

@media screen and (max-width:600px) {
  .video_container video {
    height: 100%;
  }

  .topDescription img {
    width: 50%;
  }
  
  .topDescription_txt {
    margin-top: 60px;
    font-size: 14px;
  }
}

@media screen and (max-width:1000px) {
  .topArea_logo h1 {
    font-size: 15vw;
  }
}

/*========= 新着情報 ===============*/
.newsList {
  height: 220px;
  overflow-y: scroll;
}

.newsList li {
  border-bottom: 1px solid #bbb;
  padding: 8px 0 12px;
  margin-bottom: 10px;
}

.newsList li small {
  margin-right: 16px;
}

/*========= ブログ ===============*/
.blogList {
  display: flex;
  align-items: stretch;
}

.blogList li {
  width: 33%;
  padding: 20px;
  color: #3752e6;
}

.blogList .blogTxt_date,
.blogList .blogTxt_title {
  color: #3752e6;
}

.blogList a:hover {
  background-color: #e8e8e8;
}

.blogList a * {
  transition: all 0.4s;
}

.blogList a:hover * {
  color: #001cb5;
}

.blogTxt {
  background-color: #fafafa;
  display: block;
  position: relative;
  padding-top: 10px;
}

.blogTxt_date {
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: -14px;
  left: -8px;
  left: -8px;
  color: #555;
}

.blogTxt_img {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.blogTxt_img object {
  position: absolute;
  left: calc(50% - 30px);
  width: 60px;
  top: 17px;
  pointer-events: none;
}

.blogTxt_title {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  display: block;
  color: #555;
  padding: 8px;
}

.blogTxt_category {
  text-align: right;
  margin-top: 5px;
}

.blogTxt_category a::before {
  content: "#";
}

.blogTxt_category a {
  font-size: 12px;
  color: #555;
  padding: 8px;
}

.moreLink {
  text-align: right;
}

.prevnext-nav {
  margin-top: 60px;
}

.prevnext-nav .list-inline {
  display: flex;
  justify-content: space-between;
}

.prevnext-nav .list-inline .pull-left a::before {
  content: "←　";
}

.prevnext-nav .list-inline .pull-right a::after {
  content: "　→";
}

.prevnext-nav .list-inline li a,
.moreLink > a {
  color: #555;
  border-bottom: 1px solid #555;
  padding: 8px;
}

.prevnext-nav .list-inline li a:hover,
.moreLink > a:hover {
  background-color: #e8e8e8;
  color: #001cb5;
}

@media screen and (max-width:1000px) {
  .blogList {
    display: block;
  }

  .blogList li {
    width: 100%;
    padding: 10px;
  }
  
  .blogTxt_img {
    margin-bottom: 10px;
  }
}

/*========= 事業内容 ===============*/
.serviceArea .h2_gray {
  margin-bottom: 0;
  padding-left: 20px;
  border-bottom: none;
}

.divisionsArea {
  padding-bottom: 300px;
}

.serviceArea_background {
  background-color: #eee;
}

.service_contents {
  position: relative;
  display: flex;
}

.service_contents_left {
  padding: 300px 20px 0px;
}

.service_contents_right {
  padding: 300px 20px 0px;
  flex-direction: row-reverse;
}

.service_contents_img {
  width: 40%;
  padding-top: 80px;
}

.service_contents_img img {
  width: 100%;
  filter: grayscale(10%);
  opacity: 0.9;
}

.service_contents_title {
  display: inline-block;
  color: #333;
  font-size: 58px;
  line-height: 1;
}

.service_contents_text {
  color: #333;
  background-color: #eee;
  width: 60%;
}

.service_contents_left .service_contents_text {
  padding: 0px 0px 0px 80px;
}

.service_contents_right .service_contents_text {
  padding: 0px 80px 0px 0px;
}

.service_contents_text h4 {
  margin-bottom: 50px;
  font-size: 30px;
}

.text_indent {
  padding-left:1em;
  text-indent:-1em;
}

.service_contents_descrip {
  margin-bottom: 20px;
}

/* エンジニア紹介 */
.service_engineer {
  padding: 100px 0px 300px 0px;
}

.service_engineer .wrap {
  padding: 0px 20px;
}

.service_engineer h4 {
  display: inline-block;
  color: #333;
  padding: 0;
  font-size: 58px;
  margin-bottom: 0;
}

.service_engineer h4 span {
  font-size: 30px;
}

/* スライドショー */
.swiper_box {
  background-color: #333;
}

.swiper {
  width: 100%;
  height: 460px;
}

.swiper-wrapper {
  padding: 50px 0;
}

.service_slideShow_item {
  width: 500px;
}

.swiper .swiper-slide {
  width: 350px;
}

.service_slideShow_text {
  color: #3752e6;
  padding: 10px 20px;
}

.service_slideShow_container .service_slideShow_item:nth-child(even)
.service_slideShow_text {
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
}

.service_slideShow_text span {
  display: block;
  transition: all 0.4s;
}

.service_slideShow_name {
  margin-bottom: 10px;
  font-size: 30px;
}

.service_slideShow_img {
  width: 100%;
  opacity: 0.5;
  transition: all 0.4s;
}

.service_slideShow_item a:hover .service_slideShow_img {
  opacity: 1;
}

.service_slideShow_item a:hover .service_slideShow_text span {
  color: #617aff;
}

/* マネージャー紹介 */
.service_manager {
  padding: 0px 20px 300px 20px;
}

.service_manager h4 {
  display: inline-block;
  color: #333;
  padding: 0;
  font-size: 58px;
  margin-bottom: 0;
}

.service_manager h4 span {
  font-size: 30px;
}

.manager_box {
  margin-top: 50px;
}

.manager_img_box {
  width: 140px;
  background-color: #fff;
  opacity: 0.7;
}

.manager_img_box img {
  width: 100%;
}

.manager_box_item {
  display: flex;
  margin-bottom: 40px;
  color: #333;
  background-color: #fff;
  padding: 20px;
  box-shadow: 1px 3px 5px #888;
}

.manager_txt {
  padding: 0 20px 20px 40px;
}

.manager_name {
  font-size: 22px;
  font-weight: bold;
}

.manager_intro_theme {
  margin-top: 20px;
  padding-left: 30px;
  text-indent: -16px;
}

@media screen and (max-width:1000px) {
  .service_manager .wrap h4 span {
    display: block;
  }
}

@media screen and (max-width:900px) {
  .service_contents {
    padding: 60px 20px;
    display: block;
  }

  .service_contents_img {
    width: 100%;
  }

  .service_contents_title {
    padding: 0;
    position: relative;
    font-size: 44px;
  }

  .service_contents_text {
    width: 100%;
    margin-top: 20px;
  }

  .service_contents_right .service_contents_text,
  .service_contents_left .service_contents_text {
    padding: 0;
  }

  .service_slideShow_item {
    width: 400px;
    margin-right: 30px;
    position: relative;
  }

  .service_engineer h4 {
    font-size: 44px;
    margin: 0;
  }
  
  .service_slideShow_name {
    font-size: 26px;
  }
}

@media screen and (max-width:700px) {
  .manager_box_item {
    display: block;
  }

  .manager_img_box {
    margin: 0 auto 30px;
  }

  .manager_txt {
    padding: 0;
  }
}

@media screen and (max-width:600px) {
  .swiper {
    height: 380px;
  }
  
  .service_engineer {
    padding: 60px 0px 80px 0px;
  }

  .service_engineer h4 {
    font-size: 34px;
  }

  .service_engineer h4 span {
    font-size: 22px;
  }
  
  .service_slideShow_name {
    font-size: 24px;
  }

  .service_contents_title {
    font-size: 30px;
  }
  
  .service_contents_text h4 {
    font-size: 22px;
  }

  .service_manager {
    padding: 0px 10px 80px 10px;
  }

  .manager_box_item {
    padding: 20px 10px;
  }

  .service_manager h4 {
    font-size: 34px;
  }

  .service_manager h4 span {
    font-size: 22px;
  }
}

@media screen and (max-width:400px) {
  .swiper {
    height: 430px;
  }
}

/*========= 採用情報 ===============*/
.recruitArea {
  background-color: #eee;
}

.recruitArea_background {
  background-color: #ddd;
  padding: 300px 20px 300px;
}

.recruitArea .h2_gray {
  margin-bottom: 0;
  border-bottom: none;
}

.recruit_contents {
  border: 1px solid #ccc;
  padding: 30px 30px 50px;
  margin-bottom: 40px;
  box-shadow: 1px 3px 5px #ccc;
  background-color: #fff;
}

.recruit_contents h3 {
  font-size: 42px;
  color: #0092bf;
  margin-bottom: 20px;
}

.recruit_contents b {
  font-size: 22px;
  display: block;
  margin-bottom: 20px;
}

.recruit_contents_item {
  width: calc(50% - 20px);
}

.recruit_contents_img {
  text-align: center;
}

.recruit_contents_img img {
  width: 150px;
}

.recruit_contents_main {
  padding: 50px 30px 80px;
}

.recruit_contents_main .recruit_contents_img {
  margin-left: 80px;
}

.recruit_contents_flex {
  display: flex;
  justify-content: center;
}

.recruit_contents_tbl th,
.recruit_contents_tbl td {
  padding: 30px;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
}

.recruit_contents_tbl th {
  width: 180px;
}

@media screen and (max-width:900px) {

  .recruitArea_background {
    padding: 100px 10px 100px;
  }

  .recruit_contents_item {
    width: 100%;
  }

  .recruit_contents_flex {
    flex-direction: column-reverse;
  }

  .recruit_contents_flex .recruit_contents_img {
    width: 100%;
    margin-left: 0;
  }

  .recruit_contents_tbl,
  .recruit_contents_tbl tbody,
  .recruit_contents_tbl tr,
  .recruit_contents_tbl th,
  .recruit_contents_tbl td {
    display: block;
  }

  .recruit_contents_tbl tr {
    margin-bottom: 30px;
  }

  .recruit_contents_tbl th,
  .recruit_contents_tbl td {
    padding: 12px;
    border-bottom: none;
  }

  .recruit_contents_tbl th {
    width: 100%;
  }
}

@media screen and (max-width:600px) {
  .recruitArea_title {
    padding: 0 20px;
  }

  .recruit_contents {
    padding: 30px 15px 50px;
  }

  .recruit_contents h3 {
    font-size: 36px;
    margin-top: 20px;
  }
}

/*========= 概要 ===============*/
.aboutArea {
  background-color: #ddd;
}

.aboutArea h2 {
  margin-left: 20px;
  margin-bottom: 0;
  color: #fff;
}

.about_background {
  background-color: #fff;
}

.about_contents {
  padding: 80px 40px 120px;
  color: #333;
}

.about_contents h3 {
  font-size: 36px;
  border-bottom: 1px solid #333;
  line-height: 1.2;
  padding-bottom: 14px;
  margin-bottom: 70px;
}

.about_contents h3 span {
  font-size: 20px;
  display: block;
  color: #666;
}

.about_contents h4 {
  font-size: 20px;
  color: #222;
}

.about_contents_item {
  margin-bottom: 120px;
}

.about_contents_item h4 {
  font-size: 24px;
  margin-bottom: 24px;
}

.about_tbl {
  width: 100%;
}

.about_tbl th,
.about_tbl td {
  padding: 30px;
  border-bottom: 1px solid #999;
  border-top: 1px solid #999;
  vertical-align: top;
  color: #333;
}

.about_tbl th {
  width: 200px;
}

.about_tbl_qualification th {
  width: 340px;
}

.about_text {
  margin-left: 20px;
  margin-bottom: 20px;
}

.career_tbl_box {
  padding-top: 50px;
}

.career_tbl_box .career_tbl_title {
  margin-bottom: 30px;
  font-size: 16px;
  transition: all 1.5s;
  display: inline-block;
  border: 1px solid #999;
  padding: 6px 42px;
  cursor: pointer;
}

.career_tbl_box .career_tbl_title:hover {
  background-color: #999;
}

.career_tbl {
  width: 100%;
}

.career_tbl td {
  padding: 5px 30px;
  border-bottom: none;
  border-top: none;
}

.career_tbl td:first-child {
  width: 160px;
}

@media screen and (max-width:900px) {
  .about_contents {
    padding: 60px 20px 100px;
  }
  .about_tbl th {
    width: 200px;
  }
}

@media screen and (max-width:700px) {
  .career_tbl, .career_tbl * {
    display: block;
  }
  .career_tbl th,
  .career_tbl td {
    padding: 0;
  }
  .career_tbl td:nth-child(2) {
    padding-bottom: 26px;
  }
}

@media screen and (max-width:600px) {
  .about_contents {
    padding: 60px 10px 100px;
  }
  
  .about_tbl, .about_tbl * {
    display: block;
  }

  .about_tbl th {
    border-bottom: none;
    width: 100%;
    padding: 20px 0 0;
  }

  .about_tbl td {
    border-top: none;
    border-bottom: none;
  }

  .about_tbl {
    border-bottom: 1px solid #999;
  }
}

/*========= ブログ画面 ===============*/
.blogArea {
  padding: 20px 40px 100px;
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
}

.blogListArea {
  width: calc(100% - 300px);
  padding-right: 40px;
  padding-bottom: 80px;
}

.blogListTitle {
  color: #bbb;
  margin-top: 20px;
  font-size: 24px;
}

.calendarArea {
  width: 300px;
  padding-left: 40px;
  padding-top: 40px;
}

.calendarArea h2 {
  color: #bbb;
  border-bottom: 1px solid #bbb;
  line-height: 1.2;
  margin-bottom: 20px;
}

.calendarArea table {
  width: 100%;
}

.calendar_wrap {
  margin-bottom: 60px;
}

.calendar_wrap table caption {
  caption-side: top;
  color: #333;
  font-size: 18px;
  font-weight: bold;
}

.calendar_wrap table td,
.calendar_wrap table th {
  text-align: center;
}

.calendar_wrap #prev {
  text-align: left;
}

.calendar_wrap #next {
  text-align: right;
}

.wp-calendar-nav {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.wp-calendar-nav-next {
  text-align: right;
}

.blogPageList li {
  background-color: #fff;
  padding-bottom: 10px;
}

.blogPageList_link {
  display: flex;
  padding: 20px;
  color: #444;
}

.blogPageList_img {
  padding-right: 24px;
  position: relative;
  text-align: center;
}

.blogPageList_img object {
  position: absolute;
  left: 20px;
  width: 60px;
  top: 17px;
}

.blogPageList_title {
  margin: 0;
}

.blogPageList_date {
  font-size: 14px;
}

.blogPageList_txt {
  padding-top: 20px;
  font-size: 18px;
}

.blogPageList_link:hover {
  background-color: #e8e8e8;
}

.blog_categories .categories {
  color: #bbb;
  font-weight: bold;
  font-size: 24px;
}

.cat-item {
  display: inline-block;
}

.cat-item a::before {
  content: "#";
}

.cat-item a {
  font-size: 12px;
  margin-right: 10px;
  color: #555;
  display: inline-block;
  background-color: #e8e8e8;
  padding: 4px 8px;
  font-weight: normal;
}

.cat-item a:hover {
  opacity: 0.5;
}


.blogPageList_category {
  text-align: right;
}

.blogPageList_category a::before {
  content: "#";
}

.blogPageList_category a {
  font-size: 12px;
  margin-right: 10px;
  color: #555;
  display: inline-block;
  background-color: #e8e8e8;
  padding: 4px 8px;
}

.blogPageList_category a:hover {
  opacity: 0.5;
}

.blog_detail h3 {
  font-size: 36px;
  padding: 20px 0;
}

.blog_list_category {
  font-size: 12px;
  color: #555;
  margin-left: 10px;
}

.blog_list_category::before {
  content: "#";
}

.category_area {
  padding-top: 80px;
}

.category_area .blogPageList_category {
  text-align: left;
}

.category_area h2 {
  color: #bbb;
  border-bottom: 1px solid #bbb;
  line-height: 1.2;
  margin-bottom: 20px;
}

.image_area {
  overflow: hidden;
  height: 450px;
  position: relative;
}

.image_area img {
  width: 100%;
  filter: grayscale(90%);
  opacity: 0.8;
  position: relative;
  top: -70px;
}

@media screen and (max-width:900px) {
  .blogArea {
    padding: 80px 30px 80px;
    display: block;
  }

  .blogListArea {
    width: 100%;
    padding-right: 0;
  }

  .calendarArea {
    width: 100%;
    padding-left: 0;
  }
}

/*========= 読み込み中 ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
/*  background: #333;*/
  background: #fff;
  z-index: 9999999;
  color:#333;
  transition: all 2s;
  opacity: 1;
}

/* アニメーションのキーフレームを定義 */
@keyframes fade {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

.splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #777;
  animation: fade 3s infinite;
}

.splash-logo img {
  margin-bottom: 10px;
}

#splash.splashHide {
  opacity: 0;
  pointer-events: none;
}

@keyframes fade2 {
  0%, 50% { opacity: 0; }
  100% { opacity: 1; }
}

.watch + .slideBox {
  transition: all 1.5s;
  transform: translateX(100%);
  width: 100%;
  opacity: 0;
}

.in-view + .slideBox {
  transform: translateX(0);
  opacity: 1;
  animation: fade2 1.5s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

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

ブログ画面　個別記事用レイアウト
2019/09 追加
*************************************/
.blog_detail .b_float{
  overflow:hidden;	/* フロート解除 */
  max-width: 720px;
  margin-bottom:16px;
}

.blog_detail .b_left{
  width: 49%;
  float:left;
  max-width:352px;
}
.blog_detail .b_right{
  width: 49%;
  float:right;
  max-width:352px;
}
.blog_detail .b_float img, .blog_detail .b_single img{
  max-width: 100%;
  height: auto;
}

.blog_detail .b_single{
  margin : 0 auto 16px;
  max-width:550px;
}

/* キャプション */
.blog_detail .b_single img + p , .blog_detail .b_right img + p , .blog_detail .b_left img + p{
  color: #54606c;
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 0;
}

/* 見出し */
.blog_detail h5.b_h5{
  color:#212529;
  border-left:4px solid #2a7dd8;
  margin: 32px 0 16px 0;
  padding-left:16px;
  font-size : 20px;
}
.blog_detail h6.b_h6{
  color:#212529;
  margin-bottom: 16px;
  font-size:16px;
  text-indent: -24px;
  padding-left: 24px;
}
.blog_detail h6.b_h6:before{
  content: '';
  display:inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  top: 3px;
  background-color: #2a7dd8;
  margin-right: 8px;
}
/* テーブル */
.blog_detail .b_table{
  margin-bottom: 16px;
}
.blog_detail .b_table .center{
  text-align: center;
}
.blog_detail .b_table .left{
  text-align: left;
}
.blog_detail .b_table .right{
  text-align: right;
}
.blog_detail .b_table th{
  border: 1px solid #a3a3a3;
  background-color: #b0c4de;
  text-align:center !important; 
  white-space: nowrap;
  padding: 8px; 
}
.blog_detail .b_table td{
  border: 1px solid #a3a3a3;
  padding: 8px; 
}
/* リスト */
.blog_detail .b_ul {
  margin-bottom: 16px;

}
.blog_detail .b_ul li {
  margin-bottom: 8px;
  text-indent: -23px;
  padding-left: 23px;
}
.blog_detail .b_ul li:before {
  content: '';
  display:inline-block;
  border-radius: 50%;
  background: #95b4d6 url(../img/list_icon.png) no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  position:relative;
  top: 3px;
  margin-right: 5px;
}
.blog_detail .b_ol {
  padding-left: 0px; /* デフォルト設定リセット */
  margin-bottom: 16px;
  list-style-type: none;
  counter-reset: num;
}
.blog_detail .b_ol li {
  margin-bottom: 8px;
  padding-left: 23px;
  position: relative;
}
.blog_detail .b_ol li:before {
  counter-increment: num;
  content: counter(num);
  display:inline-block;
  border-radius: 50%;
  background-color: #95b4d6;
  color: #fff;
  font-weight : bold;
  text-align:center;
  width: 18px;
  height: 18px;
  position:absolute;
  left:0;
  top:2px;
  font-size: 11px;
  line-height:18px;
}


.blog_detail a.b_link:before{
  content: '';
  display:inline-block;
  background: url(../img/link_icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 14px;
  height: 14px;
  position:relative;
  top: 2px;
  margin-right: 3px;
}
.blog_detail a.b_link[target*="_blank"]:after{
  content: '';
  display:inline-block;
  background: url(../img/target_icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  position:relative;
  top: 2px;
  margin-left: 4px;
}
/* フレーム	 */
.blog_detail .b_frame{
  border: 1px dashed rgba(42, 42, 42, 0.4);
  background-color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  padding: 20px;
}
/* フレーム内の末尾の要素のマージンリセット */
.blog_detail .b_frame > *:last-child, 
.blog_detail .b_frame > *:last-child  > *:last-child,
.blog_detail .b_frame > *:last-child  > *:last-child > *:last-child{
  margin-bottom: 0;
}
.blog_detail .b_frame > *:first-child {
  margin-top: 0;
}
/* フレーム	: ポイント */
.blog_detail .b_point{
  position:relative;
  border: 1px dashed rgba(42, 42, 42, 0.4);
  background-color: rgba(255, 255, 255, 0.4);
  margin: 32px 0 16px;
  padding: 30px 20px 20px;
}
.blog_detail .b_point > *:last-child, 
.blog_detail .b_point > *:last-child  > *:last-child,
.blog_detail .b_point > *:last-child  > *:last-child > *:last-child{
  margin-bottom: 0;
}

.blog_detail .b_point > span:first-child + h5.b_h5{
  margin-top: 0;
}

.blog_detail .b_point .point_title{
  display: inline-block;
  background-color: #95b4d6;
  color: #fff;
  position: absolute;
  top: -15px;
  left: 20px;
  height: 30px;
  padding: 0 10px;
  font-size: 14px;
  line-height: 30px;
}
.blog_detail .b_point .point_title:before{
  content: '';
  display:inline-block;
  background: url(../img/point_icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 16px;
  height: 16px;
  position:relative;
  top: 3px;
  margin-right: 5px;
}
/* 引用 */
.blog_detail .b_quote{
  border: 1px solid #c2c7cd ;
  margin-bottom: 16px;
  position: relative;
  padding: 40px 50px;
}
.blog_detail .b_quote > *:last-child,
.blog_detail .b_quote > *:last-child > *:last-child,
.blog_detail .b_quote > *:last-child > *:last-child > *:last-child{
  margin-bottom: 0;
}
.blog_detail .b_quote:before{
  content: '';
  display:inline-block;
  background: url(../img/quote_start_icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  color: #95b4d6;
  width: 30px;
  height: 29px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.blog_detail .b_quote:after{
  content: '';
  display:inline-block;
  background: url(../img/quote_end_icon.png) no-repeat;
  background-size: contain;
  background-position: center;
  color: #95b4d6;
  width: 30px;
  height: 29px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
/* コード用 */
.blog_detail .b_source{
  color:#77828c;
  margin-bottom: 16px;
  font-size:14px;
}
.blog_detail .b_code{
  border: 1px dashed rgba(17, 50, 86, 0.3);
  background-color: rgba(229, 229, 229, 0.3);
  margin-bottom: 16px;
  position:relative;
  padding: 40px 20px 20px;
  overflow-x: scroll;
}
.blog_detail .b_code .code_title{
  display: inline-block;
  background-color: #95b4d6;
  color: #fff;
  text-align: center;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 80px;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
}
.blog_detail .b_code .code_title:after{
  content: '';
  border-top: 30px solid #95b4d6;
  border-right: 25px solid transparent;
  position: absolute;
  top: 0px;
  left: 80px;
  width: 0;
  height: 0px;
}
.blog_detail .b_code code{
  white-space: pre;/* コード表示で長英数字をアバウトな位置で改行させない */
}

@media screen and (max-width: 1216px) {

  /* テーブル */
  .blog_detail .b_table{
    display: block;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

@media screen and (max-width:1023px) {
  .blog_detail .b_float{
    max-width:initial;
    margin-bottom:0;
  }
  .blog_detail .b_left,.blog_detail .b_right{
    width:auto;
    float:none;
    max-width:initial;
    margin-right:0;
    margin-bottom:16px;
  }

  .blog_detail .b_single{
    max-width: initial;
  }

  /* コード用フレーム	 */
  .blog_detail .b_code{
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width:720px) {
  .blog_detail h6.b_h6:before{
    width: 14px;
    height: 14px;
    top: 2px;
  }



  /* フレーム */
  .blog_detail .b_quote{
    padding: 40px 45px;
  }

  .blog_detail .b_quote:before{
    top: 8px;
    left: 8px;
  }
  .blog_detail .b_quote:after{
    bottom: 8px;
    right: 8px;
  }

}
@media screen and (max-width:540px) {
  /* キャプション */
  .blog_detail .b_single img + p{
    font-size: 12px;
  }
  .blog_detail .b_right img + p , .blog_detail .b_left img + p{
    font-size: 12px;
  }
  /* 見出し */
  .blog_detail h5.b_h5{
    font-size : 18px;
    padding-left:12px;
  }
  .blog_detail h6.b_h6{
    font-size:14px;
    text-indent: -22px;
    padding-left: 22px;
  }
  .blog_detail h6.b_h6:before{
    width: 14px;
    height: 14px;
    top: 2px;
  }

  /* リスト */
  .blog_detail .b_ul li {
    text-indent: -20px;
    padding-left: 20px;
  }
  .blog_detail .b_ul li:before {
    width: 16px;
    height: 16px;
    margin-right: 4px;
  }


  .blog_detail .b_ol li:before {
    width: 16px;
    height: 16px;
    bottom: 1px;
    margin-right: 4px;
    font-size: 10px;
    line-height:16px;
  }

  /* リンク ここから */
  .blog_detail a.b_link{

  }
  .blog_detail a.b_link:before{
    width: 12px;
    height: 12px;
    top: 1px;
    margin-right: 2px;
  }
  .blog_detail a.b_link[target*="_blank"]:after{
    width: 14px;
    height: 14px;
    top: 1px;
    margin-left: 3px;
  }

  /* フレーム	 */
  .blog_detail .b_frame{
    padding: 15px;
  }

  .blog_detail .b_point{
    padding: 25px 15px 15px;

  }

  .blog_detail .b_point .point_title{
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 12px;
  }
  .blog_detail .b_point .point_title:before{
    width: 14px;
    height: 14px;
    top: 2px;
    margin-right: 3px;
  }
  .blog_detail .b_quote{
    padding: 38px 32px;
  }

  .blog_detail .b_quote:before{
    position: absolute;
    top: 6px;
    left: 6px;
  }
  .blog_detail .b_quote:after{
    position: absolute;
    bottom: 6px;
    right: 6px;
  }
  .blog_detail .b_source{
    font-size:12px;
  }
  /* コード用フレーム	 */
  .blog_detail .b_code{
    padding: 35px 15px 15px;
  }

  .blog_detail .b_code .code_title{
    font-size: 12px;
  }
}

/* ブログ  罫線 */
.blog_detail .b_hr{
  border:0;
  border-bottom: 1px dashed rgba(42, 42, 42, 0.3);
  margin:1rem 0;
}


/* ブログ 長い半角英数文字投稿時の折り返し対応 */
.blog_detail .b_break{
  word-break : break-all;
}
.blog_detail .b_nowrap{
  white-space: nowrap;
}
/* ブログ 余白用パーツ */
.blog_detail .b_mt1{
  margin-top: 1rem !important;	
}
.blog_detail .b_mt2{
  margin-top: 2rem !important;	
}
.blog_detail .b_mt3{
  margin-top: 3rem !important;	
}
.blog_detail .b_mb1{
  margin-bottom: 1rem !important;	
}
.blog_detail .b_mb2{
  margin-bottom: 2rem !important;	
}
.blog_detail .b_mb3{
  margin-bottom: 3rem !important;	
}

.blog_detail .b_mr1{
  margin-right: 1rem !important;	
}
.blog_detail .b_mr2{
  margin-right: 2rem !important;	
}
.blog_detail .b_ml1{
  margin-left: 1rem !important;	
}

.blog_detail .b_ml2{
  margin-left: 2rem !important;	
}