@charset "UTF-8";
html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0 auto;
    font-size: 14px;
    background-color: #fff;
    font-family: "Noto Sans JP", ヒラギノ角ゴシック, "Hiragino Sans", Helvetica, sans-serif;
}

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 {
    width: 100%;
    background-color: white;
    max-width: 1200px;
    margin: 0 auto;
}

.article {
    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(62% - 24px);
    }
}


@media screen and (max-width:750px){
    .article {
        box-shadow: none;
    }
}

#content {
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 0 3%;
    padding-bottom: 30px;
    overflow: hidden;
}

/*spのみヘッダー*/

.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    height: 50px;
}

.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;
  }


/*文字*/
p {
    word-wrap: break-word;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 17px;
}

h1 {
    font-size: 18px;
    margin-top: 80px;
    font-weight: 700;
}


@media screen and (min-width:750px){
    h1 {
        font-size: 20px;
        margin-top: 30px;
    }
}

h2 {
    color: #000;
    background: #f3f3f3;
    line-height: 1.5;
    font-weight: bold;
    border-left: 6px double #07579a;
    padding: 15px 10px 15px 20px;
    margin: 20px 0;
    font-size: 20px;
}

@media screen and (max-width:750px){
    h2 {
        font-size: 17px;
    }
}


h3 {
    padding: 0.2em;
    background: #ffffff;
    border-bottom: 1px solid #07579a;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #000;
}

b {
    font-weight: bold;
}

.sp {
    display: none;
}

.red {
    color: red;
}

.blue {
    color: blue;
}

.pink {
    color: #e50069;
}

.yellow {
    color: #ffd600;
}

.back {
    text-align: right;
}

.back a {
    text-decoration: underline;
}

.mini {
    font-size: 9px;
}

.mb5 {
    margin-bottom: 5%;
}

  /*注釈*/
  .g_k {
    font-size: 10px !important;
    text-align: right;
    margin: 0;
    color: #949494 !important;
}

@media screen and (max-width:750px){
    .g_k {
        font-size: 8px !important;
    }
  }

/*ボタン*/
.btn01 {
    display: table;
    background-color: #464c9c;
    color: #fff;
    height: 100px;
    font-weight: bold;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
    border-radius: 10px;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    font-size: 20px;
    box-shadow: 0px 5px 0 #2a2e69;
    position: relative;
    overflow: hidden;
}

.btn01 a{
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}


.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;
        height: 70px;
    }
}


.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: 20px;
    box-shadow: 0px 5px 0 #2a2e69;
}

.site_btn02 {
    display: block;
    width: 70%;
    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: 11px;
    text-align: center;
}


/*記事内容*/
.article-txt-area {
    margin-bottom: 60px;
}

@media screen and (max-width:750px){
    .article-txt-area {
        margin-bottom: 40px;
    }
}

.article-txt-area h3 {
    margin: 30px 0 20px;
}

.article img {
    margin: 10px 0;
}

.content_img {
    text-align: center;
}

.content_img {
    margin: 20px 0;
}

@media screen and (min-width:750px){
    .content_img img {
        width: 80%;
    }
}



/*おすすめ*/
.recommend-top {
    margin: 60px 0 20px 0;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
}

.recommend h2 {
    margin-top: 0;
}

/*表*/
.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){
    th{
        width: 34%;
        padding: 10px;
    }

    td {
        padding: 10px;
        vertical-align: middle;
    }
}

@media screen and (max-width: 750px){
    .sp {
        display: block;
    }

    .pc {
        display: none;
    }

    .btn03 {
        padding: 20px 20px;
    }
}

/*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;
}

/*運営者情報*/
footer {
    margin: 50px auto 0;
    background-color: #999;
    text-align: center;
    padding: 40px 0;
}

.footer_txt a {
    color: #fff;
    font-size: 15px;  
}