@charset "utf-8";

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: "Noto Sans JP", ヒラギノ角ゴシック, "Hiragino Sans", Helvetica, sans-serif;
    width: 100%;
    margin: auto !important;
    background: white;
}

header {
    width: 100%;
    margin-bottom: 5px;
    background: #fff;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 10px;
    position: fixed;
    z-index: 99999;
}

.wrapper {
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
  }

  .article {
      width: 100%;
      margin: auto !important;
      background: #fff;
      box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
      overflow: hidden;
        padding: 0 3%;
  }

  @media screen and (min-width: 750px) {
      .wrapper {

          display: flex;
      }

      .article {
          width: calc(68% - 24px);
      }
  }

  .pc {
      display: block;
  }

  .sp {
      display: none;
  }

  @media screen and (max-width: 767px) {
      .article {
          box-shadow: none;
      }

      .pc {
          display: none !important;
      }

      .sp {
          display: block !important;
      }

  }

  img {
      width: 100%;
      object-fit: contain;
      margin: 20px 0px;
  }

  p {
      margin-bottom: 20px;
      line-height: 1.7;
      font-size: 17px;
  }

  @media screen and (max-width:750px){
    p {
        font-size: 15px;
    }
  }

  b {
      font-weight: bold;
  }

  a {
      text-decoration: none;
      color: #000;
  }

  a:hover {
    opacity: 0.7;
  }

  .mark {
    background: linear-gradient(transparent 50%, #fff499 50%);
}

  h2 {
      color: #000;
      background: #f3f3f3;
      font-size: 20px;
      line-height: 1.5;
      font-weight: bold;
      border-left: 6px double #07579a;
      padding: 15px 10px 15px 20px;
      margin: 60px 0 40px;
  }


  h3 {
      padding-bottom: 0.2em;
      background: #ffffff;
      border-bottom: 1px solid #07579a;
      font-size: 18px;
      font-weight: bold;
      margin: 40px 0 20px 0;
      line-height: 1.8rem;
  }

  @media screen and (max-width:750px){
    h2 {
        font-size: 17px;
        padding: 10px;
        margin: 30px 0 20px;
    }
    h3 {
        font-size: 16px;
        margin: 10px 0;
    }
  }

  h4 {
      background-color: #e0efff;
      padding: 15px 16px;
      margin-bottom: 10px;
      margin-top: 40px;
      font-weight: bold;
      font-size: 17px;

  }


  .red {
      color:red;
  }

  .yellow {
      color: #ffd600;
  }

  .pink {
    color:#ff93d6;
  }


  .taC{
      text-align: center;
      margin-bottom: 0px;
      font-size: 15px;
  }

  .back {
      text-align: right;
      margin-bottom: 20px;
      color:#444;
      margin-right: 10px;
  }

  .back a {
      color: #000;
      text-decoration: underline;
  }

  .mini {
    font-size: 10px;
  }

  @media screen and (max-width:750px){
    .mini {
        font-size: 9px;
    }
  }



  /*注釈*/
  .g_k {
      font-size: 10px !important;
      text-align: right;
      margin: 0;
      color: #949494 !important;
  }

  @media screen and (max-width:750px){
    .g_k {
        font-size: 7px !important;
    }
  }

  /*表内注釈*/
  .g_k02 {
    font-size: 10px !important;
    margin: 0;
    color: #949494 !important;
  }


  .mt20 {
    margin-top: 20px;
    font-size: 16px;
}

    .mb5 {
  margin-bottom: 5%;
}



.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    margin: 0 auto;
}

.header_ttl {
    padding: 5px 0;
    margin: 0;
    color: #464c9c;
    font-weight: bold;
    line-height: 1.2;
}

@media screen and (max-width:750px){
    .header_ttl {
        font-size: 15px;
    }
}

.header_menu {
    justify-content: flex-end;
    display: flex;
    width: 65%;
    height: 80%;
    background: #fff;
}

.header_menu_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 33.3%;
    border-left: solid 1px #464c9c;
    color: #464c9c;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

/*ポップアップ*/
#popup {
    display: none; /* label でコントロールするので input は非表示に */
  }

  .popup-open {
    cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
  }

  .popup-overlay {
    display: none; /* input にチェックが入るまでは非表示に */
  }

  #popup:checked ~ .popup-overlay {
    display: block;
    z-index: 99999;
    background-color: #00000070;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
  }

  .popup-window {
    width: 90%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .popup-text {
    margin: 0;
  }

  .popup-text:not(:last-of-type) {
    margin-bottom: 1em
  }

  .popup-close {
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 10px;
  }

/*内容*/
.ttl {
    padding: 30px 0 10px;
    line-height: 1.3;
    text-indent: -0.7em;
}

/*ヘッダー分の余白*/
@media screen and (max-width: 750px){
    .ttl {
        margin-top: 60px;
        padding-left: 10px;
    }
}

.ttl h1 {
    line-height: 1.5;
    font-size: 18px;
    text-align: left;
    font-weight: 700;
}

@media screen and (min-width:750px){
    .ttl h1{
        font-size: 20px;
    }

}

.mv {
    text-align: center;
}

.mv img {
    margin: 0 auto;
}


/*目次*/
.contenedor {
    display: table;
    margin: 0px auto;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.contenedor input {
    visibility: hidden;
    display: none;
}

.contenedor label {
    position: absolute;
    display: block;
    font-size: .9em;
    padding: .20em 10px;
    right: 0;
    left: 0;
    bottom: 8%;
    margin: auto;
    width: fit-content;
    background: #aaa;
    box-shadow: -5px 0 white;
    color: white;
    z-index: 998;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 5px;
}

.contenedor label::before{
    content: '＋開く';
  }

.contenedor input[type="checkbox"]:checked ~ label::before {
    content: '−閉じる';
  }

.expand {
    padding: 5%;
    padding-bottom: 23%;
    max-height: 200px;
    overflow: hidden;
    position: relative;
    transition: .5s;
    background-color: #f7f7f7;
    font-size: 13px;
    border-radius: 8px;
    color: #666666;
    line-height: 1.8;
}

.expand::before {
    content: "";
    position: absolute;
    width: 120%;
    height: 50%;
    bottom: 0;
    left: -10%;
    background-image: linear-gradient(rgba(255, 255, 255, 0), #ffffff);
    pointer-events: none;
    transition: 1s;
}

input[type=checkbox]:checked ~ .expand {
    max-height: 500px;
}

input[type=checkbox]:checked ~ .expand:before {
    opacity: 0;
}

.expand a {
    text-decoration: none;
    color: #666666;
    font-weight: normal;
    font-size: 15px;
}

.expand .content p {
    margin: -10px auto;
    font-size: 15px;
    font-weight: bold;
    color: #696969;
}

.expand li {
    border-bottom: 1px dotted #abb1ad;
}

.expand span {
    padding-left: 13px;
}

/*比較表*/
/*spヘッダーからジャンプ時の位置調整*/
#rankTable_sp {
    padding-top: 60px;
    margin-top: -60px;
}

.rankTable {
    border: 10px solid #ededed;
    border-top: 10px solid #ededed;
    border-width: 10px;
    box-sizing: border-box;
    background: #ffffff;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
    height: 500px;
    overflow-y: scroll;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.rankTable::-webkit-scrollbar-horizontal {
    display: none;
}


.rankTable::-webkit-scrollbar {
    width: 10px;
}

.rankTable::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.rankTable::-webkit-scrollbar-thumb {
    background: #888;
}


.rankTable table {
    border-collapse: collapse;
    table-layout: fixed;
    color: #222;
    width: 100%;
}

.rankTable table th tr {
    background: #fff;
    color: #fff;
    border-radius: 0;
    font-weight: bold;
    font-size: 13px;
    width: 10%;
    line-height: 1.3;
    position: sticky;
    left: 0;
    z-index: 5;

}


.rankTable td, .rankTable th {
    border-right: 2px dotted #e1e1e1;
    font-size: 13px;
    line-height: 1.1;
    height: 45px;
    padding: 5px 10px;
}

.rankTable table tr {
    border-top: 1px solid #cdd4d0;
    text-align: center;
}


.rankTable table th {
    background: #f7f7f7;
    color: #000;
    border-radius: 0;
    font-weight: bold;
    line-height: 1.3;
    left: 0;
    z-index: 5;
    width: 206px;
    position: sticky;
}

.rankTable td {
    width: 150px;
    letter-spacing: 0.05em;
    vertical-align: top;
}

@media screen and (max-width: 750px){
    .rankTable th {
        width: 100px !important;
    }
}

.rank_ttl {
    color: #000;
    font-weight: bold;
}

.rankTable table tr:nth-child(1){
    position: sticky;
    top: 0;
    z-index: 998;
}

.rankTable table tr:nth-child(1) td,
.rankTable table tr:nth-child(2) td{
    background-color: #fff;
    vertical-align: middle;
}

.rankTable table tr:nth-child(2){
    border-top: none;
}


.rankTable .go {
    color: #e72b63;
    font-size: 1.6em;
    font-weight: bold;
}

.rankTable .so img{
   width: 16%;
   padding: 0;
}

.rankTable .bad {
    color: #1c0863;
    font-size: 1.6em;
    font-weight: bold;
}

.rankTable img {
    margin: 0;
    padding-top: 3px;
}

.rankTable ul {
    padding: 3%;
    text-align: left;
}

.grey {
    background: #e1e1e1 !important;
}


/*ボタン*/
.btn01 {
    background-color: #464c9c;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    padding: 15px 0;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    box-shadow: 0px 5px 0 #2a2e69;
    position: relative;
    overflow: hidden;
}

.btn01::before {
    position: absolute;
    content: "";
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn 3s ease-in-out infinite;
}

@keyframes shiny-btn {
    0% {
        transform: scale(0) rotate(25deg);
        opacity: 0;
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1;
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0;
    }
}

@media screen and (max-width:750px){
    .btn01 {
        max-width: 300px;
        font-size: 16px;
        padding: 10px 0;
    }
}

.btn_flex {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-evenly;
    margin: 20px 0;
}

.btn_flex a {
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    display: table-cell;
    vertical-align: middle;
}

.btn02 {
    display: table;
    background:  #0b2687;
    border-radius: 10px;
    height: 100px;
    width: 55%;
    border-bottom: solid 5px #051653;
    margin: 0 15px 0 0;
    font-size: 18px;
}

/*02の3行バージョン*/
.btn06 {
    display: table;
    height: 100px;
    background:  #0b2687;
    border-radius: 10px;
    width: 55%;
    border-bottom: solid 5px #051653;
    margin: 0 15px 0 0;
    font-size: 18px;
    line-height: 1.2;
}

/*無料プラン*/
.btn03 {
    display: table;
    height: 100px;
    background: #ee5055;
    border-radius: 10px;
    width: 40%;
    border-bottom: solid 5px #b1292e;
}

/*無料トライアル・アカウント*/
.btn05 {
    display: table;
    height: 100px;
    background: #ee5055;
    border-radius: 10px;
    width: 40%;
    border-bottom: solid 5px #b1292e;
    font-size: 18px;
}

@media screen and (max-width: 767px){
    .btn02 {
    font-size: 15px;
    height: 80px;
    }

    .btn03 {
        height: 80px;
    }

    .btn05 {
    font-size: 14px;
    line-height: 1.2;
    height: 80px;
    }

    .btn06 {
        font-size: 15px;
        height: 80px;
    }
}

.btn04 {
    background-color: #464c9c;
    color: #fff;
    font-weight: bold;
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    padding: 15px 0;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    box-shadow: 0px 5px 0 #2a2e69;
}

@media screen and (max-width:750px){
    .btn04 {
        font-size: 15px;
    }
}

.site_btn01 {
    display: block;
    width: 80%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 6px;
    border-radius: 5px;
    background-color: #0b2687;
    box-shadow: 0 2px 2px 0 #051653;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

.site_btn02 {
    display: block;
    width: 80%;
    margin: 5px auto;
    line-height: 1.2;
    padding: 6px;
    border-radius: 5px;
    background-color: #ee5055;
    box-shadow: 0 2px 2px 0 #b1292e;
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
}

/*続きをよむ*/
.readmore {
    position: relative;
    margin: 0 auto 30px;
  }

  @media screen and (max-width:750px){
    .readmore {
        margin: 0 auto 10px;
    }
  }

  .readmore label::before{
   content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	transform: rotate(135deg);
    right: 3%;
    top: 10px;
  }

  .readmore input[type="checkbox"]:checked ~ label::before {
    transform: rotate(-45deg) !important;
  }
  .readmore input[type="checkbox"]{
    display: none;
  }
  .readmore-content {
    position: relative;
    height: 0px;
    overflow: hidden;
  }
  .readmore input[type="checkbox"]:checked ~ .readmore-content {
    height: auto;
  }

  .readmore input[type="checkbox"]:checked ~ .readmore-content::before {
    display: none;
  }



/*おすすめ*/
/*ミニ表*/
.mini_table{
    border: 2px solid #B5B5B5;
    width: 100%;
    margin: 0 auto;
    margin-top: 5%;
}

.mini_table th {
    border-bottom: 1px solid #B5B5B5;
    background: #e1f7ff;
    color: #000;
    width: 20%;
    font-weight: bold;
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
    text-align :center;
    line-height: 1.2rem;
    padding: 1% 0;
}

.mini_table td {
    border-left: 1px solid #B5B5B5;
    border-bottom: 1px solid #B5B5B5;
    padding: 1% 3%;
    color: #000;
    line-height: 1.2rem;
}

@media screen and (max-width:750px){
.mini_table th{
    width: 35%;
    line-height: 1rem;
}
.mini_table {
    font-size: 13px;
}
}

/*！下層サイトのvertical_tableと差異あり！*/
/*縦表*/
.vertical_table {
    table-layout: fixed;
    text-align: center;
}

.vertical_table table {
    border: 2px solid #B5B5B5;
    width: 100%;
}

@media screen and (min-width:750px){
    .vertical_table  table{
        width: 90%;
        margin: 0 auto;
    }
}

.vertical_table th {
    border-bottom: 1px solid #B5B5B5;
    border-right: 1px dotted #B5B5B5;
    background: #e1f7ff;
    color: #000;
    width: 20%;
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
    text-align :center;
    line-height: 1.2rem;
    font-weight: bold;
    font-size: 14px;
    padding: 1% 0;
}

.vertical_table td {
    border-left: 1px solid #B5B5B5;
    border-bottom: 1px solid #B5B5B5;
    padding: 1%;
    color: #000;
    text-align: center;
    line-height: 1.2rem;
}

@media screen and (max-width:750px){
    .vertical_table {
        font-size: 13px;
    }

    .vertical_table td {
        width: 29%;
        padding: 4px;
    }

    .vertical_table th {
        padding: 6px;
        line-height: 1rem;
    }
}

.vertical_table ul {
    padding: 3%;
    text-align: left;
}

/*特徴*/
.frame {
    border: 2px solid #e1e1e1;
    padding: 20px;
    margin-bottom: 10px;
}

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

/*動画*/
.movie iframe{
    aspect-ratio: 16 / 9;
}

@media screen and (min-width:750px){
    .movie iframe {
        width: 80%;
    }
}

/*コンテンツ*/
.content_img{
    text-align: center;
}

@media screen and (min-width:750px){
    .content_img img {
    width: 80%;
    margin-bottom: -10px;
    }
}
@media screen and (max-width:749px){
    .content_img img {
    margin-bottom: -10px;
    }
}

.content03,
.content04,
.content05,
.content06,
.content07 {
    margin-bottom: 18%;
}


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

.content02 .back {
    margin-bottom: 60px;
}

/*PCのみ右側のコラム*/
.column {
    width: 332px;
    margin-left: 12px;
    margin-right: 20px;
    background-color: white;
}

.column_ttl {
    background-color: #000;
    color: white;
    padding: 13px;
    font-size: 17px;
    line-height: 1.9;
}

.column_table {
    border: 2px solid #e1e1e1;
    table-layout: fixed;
    border-collapse: collapse;
    text-align: center;
    margin-bottom: 50px;
}

.column_table tr{
border-top: 1px solid #cdd4d0;
}

.column_table th, .column_table td {
    border-right: 2px dotted #e1e1e1;
    border-bottom: 2px solid #e1e1e1;
    text-align: center;
    vertical-align: middle;
}

.column_table th{
    width: 30%;
}

.column_table td{
    font-size: 13px;
    line-height: 1.3;
}

.column_table img{
    margin: 0;
    vertical-align: top;
}

.column_table02 {
    top: 0;
    position: sticky;
}

.column_table02 img{
    padding: 10px 0;
}

/*よくある質問*/
.info h3 {
    font-size: 18px;
    margin: 10px 0;
}

@media screen and (max-width:750px){
    .info h3 {
        margin: 10px 0;
    }
}

/*運営者情報*/
footer {
    margin: 50px auto 0;
    background-color: #999;
    width: 100%;
    text-align: center;
}

.footer_txt {
    padding: 40px;
}

.footer_txt a {
    color: #fff;
    font-size: 15px;
}

/*追従*/
#page-top {
	position: fixed;
	z-index: 999;
	transition: all 0.3s;
	bottom: 0;
	right: 0;
	text-align: center;
}

#page-top img {
    margin: 0;
}


#page-top a{
    position: fixed;
    bottom: 1%;
    right: 4%;
    width: 50%;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 24px;
    z-index: 999;
}

@media screen and (min-width:750px){
    #page-top a{
        width: 22%;
    }
}