@charset "utf-8";
@media screen and (min-width:1500px){
    .tab-wrap {
        display: flex;
        flex-wrap: wrap;
        margin:20px auto;
        width: 1250px;
    }
    .tab-wrap:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0e78c4;
        display: block;
        order: -1;
    }
    .tab-label {
        color: White;
        background: LightGray;
        font-weight: bold;
        text-shadow: 0 -1px 0 rgba(0,0,0,.2);
        white-space: nowrap;
        text-align: center;
        padding: 10px .5em;
        order: -1;
        position: relative;
        z-index: 1;
        cursor: pointer;
        border-radius: 5px 5px 0 0;
        flex: 1;
        font-size: 18px;
    }
    .tab-label:not(:last-of-type) {
        margin-right: 5px;
    }
    .tab-content {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
      /* アクティブなタブ */
    .tab-switch:checked+.tab-label {
        background: #0e78c4;
    }
    .tab-switch:checked+.tab-label+.tab-content {
        height: auto;
        opacity: 1;
        transition: .5s opacity;
        /* box-shadow: 0 0 3px rgba(0,0,0,.2); */
    }
      /* ラジオボタン非表示 */
    .tab-switch {
        display: none;
    }
    
    
    
    
      
    /* ------------------------- */
    /* タブ */
    /* ------------------------- */
    .tab-area {
        display: flex;
        /* border: 1px solid #333; */
        cursor: pointer;
        max-width: 1250px; 
        width: 100%;
        margin: 20px auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #efefef;
    }
    .tab {
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 19px;
        color: black;
        border: 1px solid #ccc;
        text-align: center;
        font-weight: bold;
    }
    /* .tab:nth-child(n+2) {
        border-left: 1px solid #333;
    } */
    .tab.active {
        background-color: #0e78c4;
        color: #fff;
    }
      
    /* ------------------------- */
    /* タブの中身 */
    /* ------------------------- */
    .panel {
        display: none;
        background-color: #efefef;
        max-width: 1250px; 
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .panel.active {
        display: block;
    }
}

@media screen and (max-width:1499px){
    .tab-wrap {
        display: flex;
        flex-wrap: wrap;
        margin:20px auto;
        width: 1250px;
    }
    .tab-wrap:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0e78c4;
        display: block;
        order: -1;
    }
    .tab-label {
        color: White;
        background: LightGray;
        font-weight: bold;
        text-shadow: 0 -1px 0 rgba(0,0,0,.2);
        white-space: nowrap;
        text-align: center;
        padding: 10px .5em;
        order: -1;
        position: relative;
        z-index: 1;
        cursor: pointer;
        border-radius: 5px 5px 0 0;
        flex: 1;
        font-size: 18px;
    }
    .tab-label:not(:last-of-type) {
        margin-right: 5px;
    }
    .tab-content {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
      /* アクティブなタブ */
    .tab-switch:checked+.tab-label {
        background: #0e78c4;
    }
    .tab-switch:checked+.tab-label+.tab-content {
        height: auto;
        opacity: 1;
        transition: .5s opacity;
        /* box-shadow: 0 0 3px rgba(0,0,0,.2); */
    }
      /* ラジオボタン非表示 */
    .tab-switch {
        display: none;
    }
    
    
    
    
      
    /* ------------------------- */
    /* タブ */
    /* ------------------------- */
    .tab-area {
        display: flex;
        /* border: 1px solid #333; */
        cursor: pointer;
        max-width: 1250px; 
        width: 100%;
        margin: 20px auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #efefef;
    }
    .tab {
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 19px;
        color: black;
        border: 1px solid #ccc;
        text-align: center;
        font-weight: bold;
    }
    /* .tab:nth-child(n+2) {
        border-left: 1px solid #333;
    } */
    .tab.active {
        background-color: #0e78c4;
        color: #fff;
    }
      
    /* ------------------------- */
    /* タブの中身 */
    /* ------------------------- */
    .panel {
        display: none;
        background-color: #efefef;
        max-width: 1250px; 
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .panel.active {
        display: block;
    }
}

@media screen and (max-width:1299px){
    .tab-wrap {
        display: flex;
        flex-wrap: wrap;
        margin:20px auto;
        width: 900px;
    }
    .tab-wrap:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0e78c4;
        display: block;
        order: -1;
    }
    .tab-label {
        color: White;
        background: LightGray;
        font-weight: bold;
        text-shadow: 0 -1px 0 rgba(0,0,0,.2);
        white-space: nowrap;
        text-align: center;
        padding: 10px .5em;
        order: -1;
        position: relative;
        z-index: 1;
        cursor: pointer;
        border-radius: 5px 5px 0 0;
        flex: 1;
        font-size: 16px;
    }
    .tab-label:not(:last-of-type) {
        margin-right: 5px;
    }
    .tab-content {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
      /* アクティブなタブ */
    .tab-switch:checked+.tab-label {
        background: #0e78c4;
    }
    .tab-switch:checked+.tab-label+.tab-content {
        height: auto;
        opacity: 1;
        transition: .5s opacity;
        /* box-shadow: 0 0 3px rgba(0,0,0,.2); */
    }
      /* ラジオボタン非表示 */
    .tab-switch {
        display: none;
    }
    
    
    
    
      
    /* ------------------------- */
    /* タブ */
    /* ------------------------- */
    .tab-area {
        display: flex;
        cursor: pointer;
        max-width: 900px;
        width: 100%;
        margin: 20px auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #efefef;
        /* display: none; */
    }
    .tab {
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 19px;
        color: black;
        border: 1px solid #ccc;
        text-align: center;
        font-weight: bold;
    }
    /* .tab:nth-child(n+2) {
        border-left: 1px solid #333;
    } */
    .tab.active {
        background-color: #0e78c4;
        color: #fff;
    }
      
    /* ------------------------- */
    /* タブの中身 */
    /* ------------------------- */
    .panel {
        display: none;
        background-color: #efefef;
        max-width: 900px; 
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .panel.active {
        display: block;
        padding: 0;
    }
}

@media screen and (max-width:959px){
    .tab-wrap {
        display: flex;
        flex-wrap: wrap;
        margin:20px auto;
        width: 520px;
    }
    .tab-wrap:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0e78c4;
        display: block;
        order: -1;
    }
    .tab-label {
        color: White;
        background: LightGray;
        font-weight: bold;
        text-shadow: 0 -1px 0 rgba(0,0,0,.2);
        white-space: nowrap;
        text-align: center;
        padding: 10px .5em;
        order: -1;
        position: relative;
        z-index: 1;
        cursor: pointer;
        border-radius: 5px 5px 0 0;
        flex: 1;
        font-size: 16px;
    }
    .tab-label:not(:last-of-type) {
        margin-right: 5px;
    }
    .tab-content {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
      /* アクティブなタブ */
    .tab-switch:checked+.tab-label {
        background: #0e78c4;
    }
    .tab-switch:checked+.tab-label+.tab-content {
        height: auto;
        opacity: 1;
        transition: .5s opacity;
        /* box-shadow: 0 0 3px rgba(0,0,0,.2); */
    }
      /* ラジオボタン非表示 */
    .tab-switch {
        display: none;
    }
    
    
    
    
      
    /* ------------------------- */
    /* タブ */
    /* ------------------------- */
    .tab-area {
        display: flex;
        cursor: pointer;
        max-width: 520px;
        width: 100%;
        margin: 20px auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #efefef;
        /* display: none; */
    }
    .tab {
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 19px;
        color: black;
        border: 1px solid #ccc;
        text-align: center;
        font-weight: bold;
    }
    /* .tab:nth-child(n+2) {
        border-left: 1px solid #333;
    } */
    .tab.active {
        background-color: #0e78c4;
        color: #fff;
    }
      
    /* ------------------------- */
    /* タブの中身 */
    /* ------------------------- */
    .panel {
        display: none;
        background-color: #efefef;
        max-width: 520px; 
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .panel.active {
        display: block;
        padding: 0;
    }
}

@media screen and (max-width:559px){
    .tab-wrap {
        display: flex;
        flex-wrap: wrap;
        margin:20px auto;
        width: 280px;
    }
    .tab-wrap:after {
        content: '';
        width: 100%;
        height: 3px;
        background: #0e78c4;
        display: block;
        order: -1;
    }
    .tab-label {
        color: White;
        background: LightGray;
        font-weight: bold;
        text-shadow: 0 -1px 0 rgba(0,0,0,.2);
        white-space: nowrap;
        text-align: center;
        padding: 10px .5em;
        order: -1;
        position: relative;
        z-index: 1;
        cursor: pointer;
        border-radius: 5px 5px 0 0;
        flex: 1;
        font-size: 14px;
    }
    .tab-label:not(:last-of-type) {
        margin-right: 5px;
    }
    .tab-content {
        width: 100%;
        height: 0;
        overflow: hidden;
        opacity: 0;
    }
      /* アクティブなタブ */
    .tab-switch:checked+.tab-label {
        background: #0e78c4;
    }
    .tab-switch:checked+.tab-label+.tab-content {
        height: auto;
        opacity: 1;
        transition: .5s opacity;
        /* box-shadow: 0 0 3px rgba(0,0,0,.2); */
    }
      /* ラジオボタン非表示 */
    .tab-switch {
        display: none;
    }
    
    
    
    
      
    /* ------------------------- */
    /* タブ */
    /* ------------------------- */
    .tab-area {
        display: flex;
        cursor: pointer;
        max-width: 280px;
        width: 100%;
        margin: 20px auto 20px auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-color: #efefef;
        /* display: none; */
    }
    .tab {
        width: 100%;
        padding: 10px 20px;
        background-color: #fff;
        border-radius: 10px;
        text-decoration: none;
        font-size: 14px;
        color: black;
        border: 1px solid #ccc;
        text-align: center;
        font-weight: bold;
    }
    /* .tab:nth-child(n+2) {
        border-left: 1px solid #333;
    } */
    .tab.active {
        background-color: #0e78c4;
        color: #fff;
    }
      
    /* ------------------------- */
    /* タブの中身 */
    /* ------------------------- */
    .panel {
        display: none;
        background-color: #efefef;
        max-width: 280px; 
        width: 100%;
        margin: 0 auto;
        padding: 20px 0;
    }
    .panel.active {
        display: block;
        padding: 0;
    }
}