@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*======== 全体レイアウト調整 ========*/
body {
  font-family: "MyYuGothicM", MyYuGothicM, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, Meiryo, sans-serif;
  background-color: #f9f6f5;
  color: #2b1d15;
  overflow-y: auto;
}
body.active{
  overflow-y: hidden;
}
#main{
  background: none;
}
/*======== ヘッダーレイアウト ========*/
.header-container-in.hlt-top-menu .header{
  width: 100%;
}
.header-container-in.hlt-top-menu .logo-header img{
  max-height: 40px;
}
.header-in{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 15px;
}
.header-container-in.hlt-top-menu .tagline{
  display: block;
  order: 2;
  font-size: 18px;
  border-left: solid 1px #d3cdc8;
  padding-left: 24px;
  color: #2b1d15;
  font-weight: 700;
}
.header-container-in.hlt-top-menu .logo-header{
  height: 100%;
  order: 1;
}
.header-container-in.hlt-top-menu .add-header-contents{
  order: 3;
  margin-left: auto;
}
.header .menu-btn{
  width: 28px;
  cursor : pointer;
  z-index: 150;
  position: relative;
}
.header .menu-btn .text{
  font-size: 10px;
  margin-top: 8px;
  font-weight: bold;
}
/*---- icon ---- */
.header .menu-btn .menu-trigger,
.header .menu-btn .menu-trigger span {
  transition: all 2s;
  box-sizing: border-box;
}
.header .menu-btn .menu-trigger {
  position: relative;
  width: 28px;
  height: 23px;
}
.header .menu-btn .menu-trigger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #cb3962;
}
.header .menu-btn .menu-trigger span:nth-of-type(1) {
  top: 0;
}
.header .menu-btn .menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.header .menu-btn .menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
/*---- icon  anime---- */
.menu-trigger span:nth-of-type(1) {
  -webkit-animation: menu-bar01 .75s forwards;
  animation: menu-bar01 .75s forwards;
}
@-webkit-keyframes menu-bar01 {
  0% {
    -webkit-transform: translateY(9px) rotate(45deg);
    width: 100%;
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
  }
  50% {
    transform: translateY(9px) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
}
.menu-trigger span:nth-of-type(3) {
  -webkit-animation: menu-bar02 .75s forwards;
  animation: menu-bar02 .75s forwards;
}
@-webkit-keyframes menu-bar02 {
  0% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    width: 100%;
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
    width: 100%;
  }
  50% {
    transform: translateY(-10px) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu-trigger.active span:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 .75s forwards;
  animation: active-menu-bar01 .75s forwards;
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(9px) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(9px) rotate(45deg);
    width: 100%;
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
  }
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-animation: active-menu-bar03 .75s forwards;
  animation: active-menu-bar03 .75s forwards;
}
@-webkit-keyframes active-menu-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-10px) rotate(0);
    width: 100%;
  }
  100% {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    width: 100%;
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
    width: 100%;
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
    width: 100%;
  }
}
/*---- nav ---- */
nav.header-menu{
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 10;
}
nav.header-menu .header-menu_bg{
  position: absolute;
  top: 85px;
  right: 0;
  background: rgba(0,0,0,0.5);
  height: calc(100vh - 85px);
  width: 100%;
}
nav.header-menu ul{
  position: absolute;
  top: 85px;
  right: 0;
  width: 420px;
  height: calc(100vh - 85px);
  padding: 20px;
  background-color: #fff;
  border-top: 1px solid #ddd;
}
nav.header-menu ul li{
  margin-bottom: 10px;
  display: block;
}
nav.header-menu ul li a{
  font-size: 16px;
  font-weight: normal;
  color: #333;
  text-decoration: none;
}
.wp-block-search__label{
  display: none;
}

/*======== 右ナビレイアウト ========*/
.sidebar{
  background: none;
}
.sidebar h2,
.sidebar h3{
  background-color: #b79d64;
  color: #fff;
}
.widget-entry-card{
  font-size: 14px
}
.widget-entry-cards .a-wrap{
  border-bottom: dashed 1px #ecdcbc;
}
.entry-card-thumb,
.widget-entry-card-thumb,
.related-entry-card-thumb,
.carousel-entry-card-thumb{
  margin-top: 0;
}
.footer{
  margin-top: 0;
  padding: 0;
}
.footer-bottom{
  margin-top: 0;
  padding: 0
}
.copyright{
  margin-top:0;
  padding: 16px;
}

/*======== デフォルトパーツ_オーバーライド ========*/
/*---- 目次 ---- */
.toc {
  background-color: #f4ede8;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border: unset;
  padding: 15px 0 0;
  border-radius: 3px;
  width: 100%;
}
.toc-title {
  font-weight: bold;
  color: #6f6966;
}
.toc-title::after {
  color: #b1a8a4;
}
.toc-content {
  font-size: 14px;
  padding: 15px;
}
.toc .toc-list,
.toc .toc-list ol li{
  border-bottom: 1px dashed #d1cac8;
}
.toc .toc-list li:before,
.toc .toc-list ol li:before{
  content: "";
  width: 8px;
  height: 8px;
  line-height: 18px;
  top: 8px;
}
/*---- アイキャッチ ---- */
.entry-content figcaption {
  font-size: 12px;
}
/*---- リストパーツ ---- */
.entry-content ul{
  list-style: none;
  padding:0;
  margin:0;
}
.entry-content ul li { 
  position: relative;
  margin:0.5em 0;
  padding-left: 20px;
}
.entry-content ul li:before {
  font-family: FontAwesome;
  content: "\f058"; /*アイコン*/
  color:  #B79B64; /* 色 */
  position: absolute;
  left:0;
}
.entry-content ol {
  counter-reset:number;
  list-style-type: none;
  padding:0;
  margin:0;
}
.entry-content ol li { 
  position: relative;
  margin:0.5em 0 !important;
  max-width:500px; /* 横幅 */
  padding: 0 0 0.5em 1.8em;
}
.entry-content ol li:last-child { 
  border:none;
}
.entry-content ol li:before {
  counter-increment: number;
  content: counter(number);
  background-color: #B79B64;
  color: #fff;
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  top: 3px;
}
/*---- テーブルパーツ ---- */
.entry-content table th,
.entry-content table td{ 
  padding: 10px 15px;
  font-size: 14px; 
  word-break : break-all;
}
/*---- モバイル追従パーツ ---- */
.mobile-menu-buttons{
  min-height: 60px;
}

/*======== 記事用パーツリスト ========*/

/*---- 文字パーツ ---- */
.posiCenter {text-align: center;}
.posiLeft {text-align: left;}
.posiRight {text-align: right;}
.sizeXS {font-size: 75%;}
.sizeS {font-size: 88%;}
.sizeM {font-size: 90%;}
.sizeL {font-size: 110%;}
.sizeLL {font-size: 120%;}
.sizeXL {font-size: 130%;}
.sizeXXL {font-size: 140%;}
.color01 {color: #DA3E86;}
.color02 {color: #48B9DC;}
.color03 {color: #C2A893;}
.strong {font-weight: bold;}
.underline{text-decoration: underline;}
.td-line-through{text-decoration: line-through;}

.marker_yellow_thin{
  background: linear-gradient(rgba(0,0,0,0) 60%,#ffdeb9 60%);
}
/*---- H2～H3パーツ ---- */
.article h2 {
  background: none;
  border-bottom: solid 1px #b79b64;
  padding-left: 0;
}
.article h3 {
  border: none;
  border-left: 5px solid #b79b64;
}
.article h4 {
  border: none;
  padding-left: 0;
  color: #b79b64;
}
/*---- リンクパーツ ---- */
.link-icon {
  background: url(https://simple-wifi.jp/column/wp-content/uploads/2022/07/link-icon.png) top right no-repeat;
  padding: 0 10px 0px 0px;
  margin-right: 2px;
}
.anc-link {
  position: relative;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  font-weight: bold;
  padding: 15px 0 15px 30px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin: 30px 0;
}
.anc-link:before {
  font-family: FontAwesome;
  content: "\f0ab";
  font-weight: normal;
  color: #c93f58;
  position: absolute;
  left: 0;
}
/*---- リストパーツ ---- */
.entry-content ul.col3-list{
  display: flex;
  flex-wrap: wrap;
}
.entry-content ul.col3-list li{
  width: 33.333%;
  padding-right: 1em;
}
.entry-content ol{
  padding: 1em;
  border-radius: 0px;
  width: 100%;
}
.entry-content ol li{
  border-bottom:none;
  max-width: 100%;
}
/*---- 定義リストパーツ ---- */
.entry-content .dl-box{
  margin: 30px 0;
}
.entry-content .dl-box dt{
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  font-weight: bold;
}
.entry-content .dl-box dd{
  margin: 0 0 30px 0;
}
/*---- 画像パーツ ---- */
.article-image-type01,
.article-image-type02,
.article-image-type03,
.article-image-type04{
  margin-bottom: 1.5em
}
.article-image-type01{
  text-align: center;
}
.article-image-type02{
  text-align: center;
}
.article-image-type02 figcaption{
  margin: 15px auto 0;
}
.article-image-type03{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.article-image-type03 img{
  width: calc( 50% - 10px);
}
.article-image-type03 img:first-child{
  margin-right: 20px;
}
.article-image-type03 figcaption{
  text-align: center;
  margin: 15px auto 0;
}
.article-image-type-box{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.article-image-type04{
  width: calc( 50% - 10px);
}
.article-image-type04:first-child{
  margin-right: 20px;
}
.article-image-type04 img{
  width: 100%;
}
.article-image-type04 figcaption{
  text-align: center;
}
.gz3{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.gz3 figure{
  width: calc( 33.333% - 10px);
  margin: 0 15px 0 0;
}
.gz3 figure:nth-child(3){
  margin-right: 0;
}
.gz3 figure img{
  width: 100%;
}
/*---- テーブルパーツ ---- */
table tr:nth-of-type(2n+1){
  background-color: #fff;
}
table tr.text-top{
  vertical-align: top;
}
table tr.text-bottom{
  vertical-align: bottom;
}
table th{
  background-color: #f4ede8;
  text-align: left;
  border: 1px #ccc solid;
}
table td{
  border: 1px #ccc solid;
  background-color: #fff;
}
table .gray{
  background-color: #f9f6f5;
}
table .table-img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
table p.closing-text{
  display: none;
}
_area{
  margin: 10px;
}
table .cv_btn_link{
  padding: 8px 2px;
  min-width: auto;
  display: block;
}
table .cv_btn_link:after,table .cv_btn_link .arrow{
  display: none;
}
table .cv_btn_link:before{
  content: "詳細";
  font-size: 14px;
}

/*---- テーブルスクロールパーツ ---- */
.table_scroll{
  overflow-x: scroll;
  overflow-y: scroll;
  margin-bottom: 30px;
}
.table_scroll.pc_scroll_none{
  overflow: hidden;
}
.table_scroll.pc_h_300px{
  height: 300px;
}
.contentsArea .mainContents .table_scroll .table{
  margin-bottom: 15px;
}
.table_scroll .sticky-cell {
  position: sticky;
  top: 0;
  left: 0;
}table .cv_btn
.table_scroll .sticky-cell.first {
  z-index: 100;
}
.table_scroll .table td{
  background-color: #fff;
}
.table_scroll .table.pc_w100{ width: 100%; max-width: 100%; }
.table_scroll .table.pc_w125{ width: 125%; max-width: 125%; }
.table_scroll .table.pc_w150{ width: 150%; max-width: 150%; }
.table_scroll .table.pc_w175{ width: 175%; max-width: 175%; }
.table_scroll .table.pc_w200{ width: 200%; max-width: 200%; }
.table_scroll .table.pc_w225{ width: 225%; max-width: 225%; }
.table_scroll .table.pc_w250{ width: 250%; max-width: 250%; }
.table_scroll .table.pc_w275{ width: 275%; max-width: 275%; }
.table_scroll .table.pc_w300{ width: 300%; max-width: 300%; }

/*---- 比較テーブルパーツ ---- */
.rank-table_warp {
  overflow-x: scroll;
  margin-bottom: 30px;
}
table.rank-table {
  width: 100%;
  max-width: none;
  min-width: 850px;
  margin-bottom: 15px;
  border: none;
  border-collapse: separate;
  white-space: normal;
}
table.rank-table th,
table.rank-table td {
  padding: 10px;
  font-size: 12px;
  line-height: 1.5;
  border-top: none;
  border-left: none;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
table.rank-table th {
  font-weight: bold;
  text-align: center;
  background-color: #f4ede8;
}
table.rank-table th.border-left-none {
  border-left: none!important;
}
table.rank-table tr th:first-child,
table.rank-table tr td:first-child {
  border-left: 1px solid #ccc;
}
table.rank-table tr:first-child th,
table.rank-table tr:first-child td {
  border-top: 2px solid #b79d64;
  background-color: #f4ede8;
  text-align: center;
  height: 50px;
}
table.rank-table tr th.sticky-item,
table.rank-table tr td.sticky-item {
  display: table-cell;
  min-width: 140px;
  width: 140px;
  position: sticky;
  top: 0;
  left: 0;
  background-color: #faf7f4;
  border-right: 2px solid #b79d64;
  z-index: 100;
}
table.rank-table tr:first-child th.sticky-item ,
table.rank-table tr:first-child td.sticky-item {
  background-color: #f4ede8;
}
table.rank-table .sticky-item .rank-nam-warp {
  display: flex;
  align-items: center;
}
table.rank-table .sticky-item [class*="rank-nam_"] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  padding: 5px;
  width: 24px;
  height: 23px;
  border-radius: 20px;
  color: #333;
  font-size: 10px;
  font-weight: bold;
  background-color: #ddd;
}
table.rank-table .sticky-item .rank-nam_01 {
  color: #fff;
  background-color: #d9b813;
}
table.rank-table .sticky-item .rank-nam_02 {
  color: #fff;
  background-color: #8f9095;
}
table.rank-table .sticky-item .rank-nam_03 {
  color: #fff;
  background-color: #c56529;
}
table.rank-table .sticky-item .rank-text {
  width: calc(100% - 30px);
}
table.rank-table tr th.img-item,
table.rank-table tr td.img-item {
  min-width: 120px;
  width: 120px;
}

/*---- PC・SP調整用パーツ ---- */
.pc_only{
  display: block;
}
.sp_only{
  display: none;
}
/*---- 関連記事パーツ ---- */
.ec-relatedPost {
  border: 1px solid #d1cac8;
  margin-bottom: 30px;
  background-color: #f4ede8;
  font-size: 14px;
}
.ec-relatedPost_head {
  position: relative;
  padding: 18px 20px 15px 50px;
  border-bottom: 1px solid #d1cac8;
  margin: 0;
  font-size: 14px;
  line-height: 1.2;
}
.ec-relatedPost_head:before {
  height: 20px;
  width: 20px;
  display: inline-block;
  background: url(https://simple-wifi.jp/column/wp-content/uploads/2022/07/xicons.png.pagespeed.ic_.OfU5Xxw6gm.png) 0 -12px no-repeat;
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
}
.ec-relatedPost_container {
  padding: 0 18px 20px;
}
.ec-relatedPost_list {
  margin: 0;
}
.ec-relatedPost_listItem {
  position: relative;
  padding-left: 20px;
  margin-bottom: .3em;
  list-style-type: none;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
.ec-relatedPost_listItem:before {
  color:#206fb8 !important;
}
.ec-relatedPost_listItem a{
  text-decoration: underline;
}
.ec-relatedPost_listItem a:hover{
  text-decoration: none;
}
/*---- グループパーツ ---- */
.ec-group{
  margin-top: 0;
  margin-bottom: 30px;
  padding: 15px;
  border: 2px solid #c2a893;
  border-radius: 4px;
  background-color: #fff;
}
.ec-group.ec-group-red{
  border-color: #e986b3;
}
.ec-group.ec-group-blue{
  border-color: #48b9dc;
}


/*---- 色背景パーツ ---- */
.bg-color_blue {background-color: #cee1f3;}
.bg-color_red {background-color: #ffe7e7;}


/*---- Youtubeパーツ ---- */
.ec-embedded--youtube{
  margin: 30px 35px;
  text-align: center;
}
/*---- Twitterパーツ ---- */
.ec-embedded--twitter{
  width: 100%;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
}
.ec-embedded--twitter blockquote{
  background: url(https://simple-wifi.jp/column/wp-content/uploads/2022/07/bg_blockquote_twitter.png) no-repeat scroll 20px 20px;
  border-color: #cdecff;
  border-radius: 15px;
  background-color: #fdfeff;
  padding: 32px 0 1.2em 0;
  margin-bottom: : 15px;
  font-size: 12px;
}
.ec-embedded--twitter blockquote::before{
  display:none;
}
.ec-embedded--twitter blockquote::after{
  display:none;
}
.ec-embedded--twitter blockquote p{
  text-align: left;
  font-size: 14px;
  padding: 15px 20px 1em;
}
.ec-embedded--twitter blockquote p:last-child{
  border-top: 1px solid #cdecff;
  padding: 20px 20px 10px 20px;
  font-size: 12px;
}
.ec-embedded--others{
  width: auto;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
}
.ec-embedded--others .others-site::before {
  content: "“";
  line-height: 1.1;
  left: 15px;
  top: 15px;
}
.ec-embedded--others .others-site::after {
  content: "”";
  line-height: 0;
  right: 20px;
  bottom: 55px;
}
.ec-embedded--others .others-site{
  border-color: #ddd;
  border-radius: 15px;
  background-color: #fcfcfc;
  padding: 50px 20px 0;
  margin: 0 auto;
}
.ec-embedded--others .others-site p{
  text-align: left;
  margin-bottom: 1em;
  font-size: 14px;
}
.ec-embedded--others .others-site p:last-child{
  border-top: 1px solid #ddd;
  padding: 10px 20px 10px 20px;
  margin: 50px -20px 0;
  font-size: 12px;
}
.entry-content .ec-embedded--others figcaption {
  margin-top: 15px;
  line-height: 1.6;
}
/*---- トグルパーツ ---- */
.toggle-box{
  width: 100%;
  margin-bottom: 30px;
  line-height: 1.5;
}
.toggle-btn{
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 1em 4em 1em 1.5em;
  font-weight: bold;
  cursor: pointer;
  font-size: 14px;
  box-shadow: 0px 0px 2px 1px #efefef;
  background-color: #fff;
  border-bottom: none;
}
.toggle-btn:before, .toggle-btn:after {
  position: absolute;
  content: '';
  display: inline-block;
  top: 50%;
  right: 1.5em;
  width: 16px;
  height: 16px;
  border-top: 2px solid #999;
}
.toggle-btn:hover{
  opacity: 0.5;
}
.toggle-btn:after {
  transform: rotate(90deg) translate(-8px,8px);
}
.toggle-btn.toggle-btn_on:after {
  display: none;
}
.toggle-con {
  padding: 1.5em;
  background-color: #F9F6F5;
}
.toggle-con table{
  background-color: #fff;
}
/*---- 引用パーツ ---- */
.ref-text{
  color: #999;
  font-size: 12px;
  vertical-align: super;
}
.ref-box{
  border: 1px solid #d1cac8;
  background-color: #f1eae7;
  margin-bottom: 30px;
}
.ref-box .ref-title{
  margin: 0;
  padding: 10px 15px;
  border-bottom: 1px solid #d1cac8;
  font-size: 14px;
  font-weight: bold;
}
.ref-box .ref-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 15px 15px 0 15px;
  margin: 0;
}
.ref-box .ref-list dt{
  font-size: 12px;
  font-weight: bold;
  width: 50px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.ref-box .ref-list dd{
  font-size: 12px;
  width: calc(100% - 50px);
  line-height: 1.75;
  margin: 0;
  padding-left: 15px;
  border-left: 1px solid #ddd;
  margin-bottom: 10px;
}
/*---- タブ切り替えパーツ ---- */
.tab-box{
  width: 100%;
  overflow: hidden;
}
.tab-box .tab-group{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
.tab-box .tab-group .tab-btn{
  list-style-type: none;
  width: calc(33.333% - 7px);
  padding: 10px;
  background: #f4ede8;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  margin: 10px 10px 0 0;
}
.tab-box .tab-group .tab-btn:before{
  display: none;
}
.tab-box .tab-group .tab-btn:nth-child(3n){
  margin-right: 0;
}
.tab-box .tab-group .tab-btn:hover{
  background: #D3CDC8;
}
.tab-box .tab-group .tab-btn.is-active{
  background: #B79B64;
  color: #fff;
  font-weight: bold;
}
.tab-box .tab-group .tab-btn.is-active:hover{
  background: #B79B64;
}
.panel-group{
  width: 100%;
  margin: 10px 0 30px 0;
  padding: 15px;
  border: 1px solid #eee;
  background-color: #ffffff;
}
.tab-box .panel-group .panel{
  display: none;
}
.tab-box .panel-group .panel.is-show{
  display: block;
}
/*---- 余白調整パーツ ---- */
.topm5 {margin-top: 5px!important}
.topm10 {margin-top: 10px!important}
.topm15 {margin-top: 15px!important}
.topm20 {margin-top: 20px!important}
.topm25 {margin-top: 25px!important}
.topm30 {margin-top: 30px!important}
.topm40 {margin-top: 40px!important}
.topm50 {margin-top: 50px!important}
.topm60 {margin-top: 60px!important}
.topm90 {margin-top: 90px!important}
.topm10 {margin-top: 10px!important}
.topm15 {margin-top: 15px!important}
.topm20 {margin-top: 20px!important}
.topm25 {margin-top: 25px!important}
.topm30 {margin-top: 30px!important}
.topm40 {margin-top: 40px!important}
.topm50 {margin-top: 50px!important}
.topm60 {margin-top: 60px!important}
.topm90 {margin-top: 90px!important}
.btmMg0 {margin-bottom: 0px!important}
.btmMg5 {margin-bottom: 5px!important}
.btmMg10 {margin-bottom: 10px!important}
.btmMg15 {margin-bottom: 15px!important}
.btmMg20 {margin-bottom: 20px!important}
.btmMg25 {margin-bottom: 25px!important}
.btmMg30 {margin-bottom: 30px!important}
.btmMg35 {margin-bottom: 35px!important}
.btmMg40 {margin-bottom: 40px!important}
.btmMg45 {margin-bottom: 45px!important}
.btmMg50 {margin-bottom: 50px!important}
.btmMg55 {margin-bottom: 55px!important}
.leftm5 {margin-left: 5px!important;}
.leftm10 {margin-left: 10px!important;}
.leftm15 {margin-left: 15px!important;}
.leftm20 {margin-left: 20px!important;}
.leftm30 {margin-left: 30px!important;}
.rightm5 {margin-right: 5px!important;}
.rightm10 {margin-right: 10px!important;}
.rightm15 {margin-right: 15px!important;}
.rightm20 {margin-right: 20px!important;}
.rightm30 {margin-right: 30px!important;}

/*======== CVパーツ ========*/

p.closing-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 10px 0;
}
.closing-text:before{
  content:"";
  -moz-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
  display: inline-block;
  border-style: solid;
  border-width: 25px 4px 0 4px;
  border-color: #f39335 transparent transparent transparent;
  margin: 0 0.5em 0 0;
}
.closing-text:after{
  content:"";
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  display: inline-block;
  border-style: solid;
  border-width: 25px 4px 0 4px;
  border-color: #f39335 transparent transparent transparent;
  margin: 0 0 0 0.5em;
}
.closing-text .text{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.closing-text .point{
  font-size: 18px;
  color: #f39335;
}
.cv_btn_area{
  margin: 30px 0;
  text-align: center;
}
.cv_btn_link{
  border-radius: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
  background-color: #333;
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 250% auto;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  min-width: 350px;
  font-size: 14px;
  transition: background-position .3s ease;
}
.cv_btn_link:hover{
  background-position: 0 0;
  transition: all .28s ease;
  color: #fff;
}
.cv_btn_link::after{
  display: block;
  width: 15px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  height: 6px;
  position: absolute;
  right: 5%;
  top: 38%;
  transform: skew(45deg);
  transition: all .28s ease;
}
.cv_btn_link:hover::after{
  right: 2%;
}
/*---- 商材管理 ---- */
.cv_btn_link.cv-link_simple-wifi{ background-image: linear-gradient(300deg,#c82d58,#c82d58 50%,#ad2925 0,#ad2925);}
.cv_btn_link.cv-link_au-hikari_nn { background-image: linear-gradient(300deg,#EB5505,#EB5505 50%,#9f3902 0,#9f3902);}
.cv_btn_link.cv-link_kashimo { background-image: linear-gradient(300deg,#009aff,#009aff 50%,#0366a7 0,#0366a7);}
.cv_btn_link.cv-link_tokutoku-bb { background-image: linear-gradient(300deg,#f48907,#f48907 50%,#a95e04 0,#a95e04);}
.cv_btn_link.cv-link_biglobe-wimax5g { background-image: linear-gradient(300deg,#008cd7,#008cd7 50%,#0366a7 0,#0366a7);}
.cv_btn_link.cv-link_shibarinashi { background-image: linear-gradient(300deg,#df0073,#df0073 50%,#a8075a 0,#a8075a);}
.cv_btn_link.cv-link_dokoyorimo-wifi { background-image: linear-gradient(300deg,#050102,#050102 50%,#6d6c6c 0,#6d6c6c);}
.cv_btn_link.cv-link_docomo-hikari-gmo { background-image: linear-gradient(300deg,#d00e31,#d00e31 50%,#90061f 0,#90061f);}
.cv_btn_link.cv-link_docomo-hikari_wiz { background-image: linear-gradient(300deg,#d00e31,#d00e31 50%,#90061f 0,#90061f);}
.cv_btn_link.cv-link_softbank-hikari_next { background-image: linear-gradient(300deg,#f1b500,#f1b500 50%,#927a30 0,#927a30);}
.cv_btn_link.cv-link_au-hikari_gmo { background-image: linear-gradient(300deg,#ec5506,#ec5506 50%,#983907 0,#983907);}
.cv_btn_link.cv-link_nuro-hikari { background-image: linear-gradient(300deg,#050102,#050102 50%,#6d6c6c 0,#6d6c6c);}
.cv_btn_link.cv-link_docomo_home-5g_itx { background-image: linear-gradient(300deg,#cc0033,#cc0033 50%,#8f0427 0,#8f0427);}
.cv_btn_link.cv-link_mobareco-air { background-image: linear-gradient(300deg,#00a0e9,#00a0e9 50%,#048ecd 0,#048ecd);}
.cv_btn_link.cv-link_shibararenai-wifi { background-image: linear-gradient(300deg,#5457ed,#5457ed 50%,#383bdb 0,#383bdb);}
.cv_btn_link.cv-link_broad-wimax { background-image: linear-gradient(300deg,#038cd1,#038cd1 50%,#0172ab 0,#0172ab);}
.cv_btn_link.cv-link_uq-wimax { background-image: linear-gradient(300deg,#038cd1,#038cd1 50%,#0172ab 0,#0172ab);}
.cv_btn_link.cv-link_wifi-rental { background-image: linear-gradient(300deg,#9ec634,#9ec634 50%,#768e37 0,#768e37);}
.cv_btn_link.cv-link_wifi-tokyo { background-image: linear-gradient(300deg,#e60012,#e60012 50%,#b0202b 0,#b0202b);}
.cv_btn_link.cv-link_rental-wifi { background-image: linear-gradient(300deg,#0e589d,#0e589d 50%,#002e5c 0,#002e5c);}
.cv_btn_link.cv-link_biglobe-hikari { background-image: linear-gradient(300deg,#008cd6,#008cd6 50%,#2934ab 0,#2934ab);}
.cv_btn_link.cv-link_cmf-hikari { background-image: linear-gradient(300deg,#f76b1f,#f76b1f 50%,#a14a1b 0,#a14a1b);}
.cv_btn_link.cv-link_pikara-hikari { background-image: linear-gradient(300deg,#01b0f1,#01b0f1 50%,#018bbe 0,#018bbe);}
.cv_btn_link.cv-link_sonet-hikari { background-image: linear-gradient(300deg,#ee3689,#ee3689 50%,#a1215b 0,#a1215b);}
.cv_btn_link.cv-link_softbank-air { background-image: linear-gradient(300deg,#2a94e6,#2a94e6 50%,#0053b6 0,#0053b6);}
.cv_btn_link.cv-link_eo-hikari { background-image: linear-gradient(300deg,#00979f,#00979f 50%,#0d6970 0,#0d6970);}
.cv_btn_link.cv-link_mugen-wifi {background-image: linear-gradient(300deg,#1b1310,#1b1310 50%,#6d6c6c 0,#6d6c6c);}
.cv_btn_link.cv-link_air-wi-fi {background-image: linear-gradient(300deg,#e41f1a,#e41f1a 50%,#b0202b 0,#b0202b);}
.cv_btn_link.cv-link_cloud-wifi {background-image: linear-gradient(300deg,#e6a126,#e6a126 50%,#b77c12 0,#b77c12);}
.cv_btn_link.cv-link_monster-mobile {background-image: linear-gradient(300deg,#5d94f0,#5d94f0 50%,#4671be 0,#4671be);}
.cv_btn_link.cv-link_kakumei-set {background-image: linear-gradient(300deg,#3fbaec,#3fbaec 50%,#e371a7 0,#e371a7);}
.cv_btn_link.cv-link_donnatokimo-wifi {background-image: linear-gradient(300deg,#00c24b,#00c24b 50%,#007f30 0,#007f30);}
.cv_btn_link.cv-link_frontier-hikari {background-image: linear-gradient(300deg,#007fbb,#007fbb 50%,#00537a 0,#00537a);}
.cv_btn_link.cv-link_mega-egg {background-image: linear-gradient(300deg,#0063c8,#0063c8 50%,#013873 0,#013873);}
.cv_btn_link.cv-link_chatwifi {background-image: linear-gradient(300deg,#276fc5,#276fc5 50%,#133761 0,#133761);}
.cv_btn_link.cv-link_otegaru-hikari {background-image: linear-gradient(300deg,#e83528,#e83528 50%,#871f17 0,#871f17);}
.cv_btn_link.cv-link_rakuten-hikari {background-image: linear-gradient(300deg, #f59600, #e41f1a 50%, #bd7707 0, #bd7707);}
.cv_btn_link.cv-link_biglobe-hikari {background-image: linear-gradient(300deg, #008cd6, #008cd6 50%, #2934ab 0, #2934ab);}
.cv_btn_link.cv-link_eo-hikari_a8 {background-image: linear-gradient(300deg, #00979f, #00979f 50%, #0d6970 0, #0d6970);}
.cv_btn_link.cv-link_docomo-home-5g{background-image: linear-gradient(300deg, #cc0033, #cc0033 50%, #8f0427 0, #8f0427);}
.cv_btn_link.cv-link_docomo-home-5g_gmo{background-image: linear-gradient(300deg, #cc0033, #cc0033 50%, #8f0427 0, #8f0427);}
.cv_btn_link.cv-link_excite-mec-hikari{background-image: linear-gradient(300deg, #121566, #121566 50%, #3c3fa9 0, #3c3fa9);}
.cv_btn_link.cv-link_excite-mec-hikari{background-image: linear-gradient(300deg, #f1b500, #f1b500 50%, #c5980e 0, #c5980e);}
.cv_btn_link.cv-link_softbank-hikari_aun-company{background-image: linear-gradient(300deg, #f1b500, #f1b500 50%, #c5980e 0, #c5980e);}
.cv_btn_link.cv-link_commufa-hikari{background-image: linear-gradient(300deg,#f76b1f,#f76b1f 50%,#a14a1b 0,#a14a1b);}
.cv_btn_link.cv-link_t-com-hikari{background-image: linear-gradient(300deg,#009fe8,#009fe8 50%,#005e8a 0,#005e8a);}
.cv_btn_link.cv-link_hi-ho-lets-wifi{background-image: linear-gradient(300deg,#003e92,#003e92 50%,#001b40 0,#001b40);}
.cv_btn_link.cv-link_bbiq-next{background-image: linear-gradient(300deg,#e22c00,#e22c00 50%,#801900 0,#801900);}
.cv_btn_link.cv-link_zutto-net{background-image: linear-gradient(300deg,#F23C79,#F23C79 50%,#F8A4A1 0,#F8A4A1);}




/*---- 内部リンク管理 ---- */
.cv_btn_link.in-link-gold{ background-image: linear-gradient(300deg,#b79d63,#b79d63 50%,#968357 0,#968357);}
.cv_btn_link.in-link-gray{ background-image: linear-gradient(300deg,#a6a6a6,#a6a6a6 50%,#969696 0,#969696);}

/*---- 端末用CVパーツ ---- */
.cv_point_phone {
  box-shadow: 0 0 20px 0 rgba(105,115,131,.35);
  width: 100%;
  padding: 2em;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #fff;
}
.cv_point_phone .L {
  float: left;
  box-sizing: border-box;
  width: 30%;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: center;
}
.cv_point_phone .L .sim_logo {
    width: 100%;
}
.cv_point_phone img {
  padding: 0px;
  background-color: #fff;
  border-radius: 0px;
  box-shadow: none;
}
.cv_point_phone .R {
  float: right;
  box-sizing: border-box;
  padding-left: 5%;
  width: 69%;
}
.cv_point_phone .title {
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.cv_point_phone p {
  margin: 0;
  line-height: 1.3;
}
.cv_point_phone .closing {
  margin-top: 1.5em;
  float: right;
  padding-left: 5%;
  width: 69%;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.cv_point_phone .closing:before, .cv_point_phone .closing:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: #ddd;
  margin: 0 0.5em;
}
.cv_point_phone .closing-text{
  display: none;
}
.cv_point_phone .m-btn{
  display: inline-block;
  border: solid 1px #ddd;
  margin-top: 0.5em;
  line-height: 0;
}
.cv_point_phone .btn_warp {
  padding-left: 5%;
  width: 69%;
  float: right;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
.cv_point_phone .btn_warp > p {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  display: none;
}
.cv_point_phone .btn_warp>p:nth-child(3n) {
  margin-right: 0;
}
.cv_point_phone .btn_warp>p:nth-child(4n) {
  margin-left: 0;
}
.cv_point_phone .btn_warp .cv_btn_area {
  margin: 8% auto;
}
.cv_point_phone .btn_warp .cv_btn_area .cv_btn_link {
  width: 100%;
}
.cv_point_phone .btn_warp .cv_btn_area .flex-container .flexitem .sim_logo{
    display: block;
}
/*---- 3カラムCVパーツ ---- */
.col3_cv-btn_warp .cv_btn_area .flex-container {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid #ddd;
  margin: 0 auto;
  background-color: #eaeaea;
  line-height: 0;
}
.col3_cv-btn_warp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.col3_cv-btn_warp .cv_btn_link .sim_logo{
  display: block;
  padding: 6px;
}
.col3_cv-btn_warp .cv_btn_link .arrow+img{
  display: none;
}

/* ======= 対話ボックス_体裁 ======= */

.talk-box{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 1.8em;
}
.talk-box .img-area{
  width: 130px;
  padding: 0 15px;
  box-sizing: border-box;
}
.talk-box .text-area{
  background-color: #fff;
  padding: 15px;
  width: calc(100% - 130px);
}

/* ======= Youtube_体裁 ======= */

.youtube-box {
  position: relative;
  width: 600px;
  margin: 0 auto 25px;
  height: 365px;
  overflow: hidden;
}
.youtube-box iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.youtube-box figcaption {
  margin: 8px auto 13px;
  line-height: 1.6;
  text-align: center;
}
.youtube-box .youtube-box_video {
  width:100%;
  height:auto;
  top:0;
  position: relative;
}
.youtube-box .youtube-box_video img {
  width:100%;
  height:auto;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.youtube-box .youtube-box_video::before {
  position: absolute;
  background: url(https://simple-wifi.jp/column/wp-content/uploads/2022/07/youtube_icon_black-1.png);
  content: "";
  background-size: 100%;
  width: 70px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform : translate(-50%,-50%);
  opacity: .90;
  transition:.5s;
  cursor: pointer;
}
.youtube-box .youtube-box_video img:hover{
  cursor: pointer;
  width:100%;
  height:auto;
  box-sizing: border-box;
}
.youtube-box .youtube-box_video:hover::before {
  background: url(https://simple-wifi.jp/column/wp-content/uploads/2022/07/youtube_icon_red.png);
  background-size: 100%;
  transition:.5s;
}

/* ======= サイト間CV管理 ======= */
.moba-cv,.mynavi-cv{
  display: none;
}

/* ======= 光回線　概要ボックス ======= */
.net_beginning_box .closing-text{
  display: none;
}
.net_beginning_box .flex{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  margin: 30px 0;
}
.net_beginning_box .flex > p{
  display: none;
}
.net_beginning_box .flex .set{
  width: 48.8%;
  background-color: #fff;
}
.net_beginning_box .flex .set > p{
  margin-bottom: 0;
}
.net_beginning_box .flex .point{
  border: 3px solid #ffd5d5;
}
.net_beginning_box .flex .camp{
  border: 3px solid #ffeeda;
}
.net_beginning_box .flex .detail{
  padding: 10px;
}
.net_beginning_box .flex .point .title,
.net_beginning_box .flex .camp .title{
  margin: 0;
  padding: 15px;
  text-align: center;
  font-weight: bold;
}
.net_beginning_box .flex .point .title{
  color: #c00;
  background-color: #ffe7e7;
}
.net_beginning_box .flex .camp .title{
  color: #F39335;
  background-color: #fffee7;
}


/* ======= マスターブレイクポイント調整 ======= */
@media screen and (max-width: 834px){
  .header-container-in.hlt-top-menu .header .header-in,
  .header-container-in.hlt-top-menu .header .logo-text{
    display: flex;
  }
}

/* ======= ブレイクポイント調整 ======= */
@media screen and (max-width: 767px){
  /*======== ヘッダーレイアウト ========*/
  .header .menu-btn .text {
    font-size: 8px;
  }
  .header-container-in.hlt-top-menu .header .header-in,
  .header-container-in.hlt-top-menu .header .logo-text{
    display: flex;
  }
  nav.header-menu .header-menu_bg{
    top: 85px;
    height: calc(100vh - 85px);
  }
  nav.header-menu ul{
    top: 110px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: calc(100vh - 200px);
    width: calc(100% - 40px);
  }
  /*======== 記事用パーツリスト ========*/
  /*---- 画像パーツ ----*/
  .caption-width100{width: 100%;}
  .caption-width200{width: 100%;}
  .caption-width300{width: 100%;}
  .caption-width400{width: 100%;}
  .caption-width500{width: 100%;}
  .caption-width600{width: 100%;}
  .caption-width700{width: 100%;}
  .caption-width800{width: 100%;}
  .gz3{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .gz3 figure{
    width: 100%;
    max-width: 450px;
    margin: 0 auto 30px auto;
  }
  /*---- テーブルスクロールパーツ ----*/
  .sp_table_scroll_w750p{
    overflow-x: scroll;
  }
  img.max-width400{
    max-width: 100%;
  }
  .sp_table_scroll_w750p > table{
    width: 750px;
    max-width: 750px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
  }
  .sp_table_scroll_w750p .sticky-cell{
    position: sticky;
    top: 0;
    left: 0;
  }
  .sp_table_scroll_w750p .sticky-cell:before{
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    height: 100%;
    border: 1px solid #ccc;
  }
  .sp_table_scroll_w750p .sticky-cell:after{
    content: "";
    position: absolute;
    top: 0;
    right: -2px;
    height: 100%;
    border: 1px solid #ccc;
  }
  .entry-content .sp_fsize-12p,
  .entry-content table.sp_fsize-12p th,
  .entry-content table.sp_fsize-12p td {
      font-size: 12px;
  }
  /*---- リストパーツ ----*/
  .entry-content ul.col3-list li{
    width: 50%;
  }
  /*---- PC・SP調整用パーツ ----*/
  .pc_only{
    display: none;
  }
  .sp_only{
    display: block;
  }
  /*======== CVパーツ ========*/
  .closing-text:before{
    margin: 0 1em 0 0;
  }
  .closing-text:after{
    margin: 0 0 0 1em;
  }
  .cv_btn_link{
    width: 100%;
    min-width: 100%;
  }
  /*---- 端末型CVパーツ ---- */
  .cv_point_phone {
    padding: 2em 1em;
    margin-bottom: 20px;
  }
  .cv_point_phone .closing {
      width: 100%;
      padding-left: 0;
  }
  .cv_point_phone .btn_warp {
      padding: 0;
      width: 100%;
      float: none;
  }
  .cv_point_phone .btn_warp .cv_btn_area {
      width: 100%;
  }
  .cv_point_phone .btn_warp .col3_cv-btn_warp {
      width: 100%;
  }
  /*---- タブ切り替えパーツ ---- */
  .tab-box .tab-group .tab-btn{
    width: calc(50% - 5px);
  }
  .tab-box .tab-group .tab-btn:nth-child(3n){
    margin-right: 10px;
  }
  .tab-box .tab-group .tab-btn:nth-child(2n){
    margin-right: 0;
  }
  /*---- テーブルCVボタン調整 ---- */
  table .cv_btn_area{
    margin: 10px 0;
  }
  /*---- テーブルスクロール調整 ---- */
  .table_scroll.pc_scroll_none{
    overflow-x: scroll;
    overflow-y: scroll;
  }
  .table_scroll.sp_h_300px{
    height: 300px;
  }
  .table_scroll .table.sp_w100{ width: 100%; max-width: 100%; }
  .table_scroll .table.sp_w125{ width: 125%; max-width: 125%; }
  .table_scroll .table.sp_w150{ width: 150%; max-width: 150%; }
  .table_scroll .table.sp_w175{ width: 175%; max-width: 175%; }
  .table_scroll .table.sp_w200{ width: 200%; max-width: 200%; }
  .table_scroll .table.sp_w225{ width: 225%; max-width: 225%; }
  .table_scroll .table.sp_w250{ width: 250%; max-width: 250%; }
  .table_scroll .table.sp_w275{ width: 275%; max-width: 275%; }
  .table_scroll .table.sp_w300{ width: 300%; max-width: 300%; }
  /* ======= 対話ボックス_体裁 ======= */
  .talk-box .img-area{
    width: 25%;
    padding: 0 10px;
  }
  .talk-box .text-area{
    width: 75%;
    padding: 15px;
  }
  .youtube-box {
    width: 100%;
    height: 200px;
  }



}

