@charset "UTF-8";

.section-01 .item-box {
    padding-block: 20px;
    padding-inline: 15px; 
    border-radius: 10px;
    color: #000;
    
    @media all and (min-width: 769px) {
        padding: 25px;
    }
}
.section-01 .item-box p {
    margin-bottom: 20px;
    
    @media all and (min-width: 769px) {
        margin-bottom: 25px;
    }
}
.section-01 a:has(.item-box):hover {
    text-decoration: none;
    opacity: .8;
}
.section-01 a .arrow {
    position: relative;
    margin-left: 1em;
    color: var(--tos-blue);
}
.section-01 a .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1em;
    display: block;
    width: 0.55em;
    height: 0.55em;
    border-top: 2px #0064D2 solid;
    border-right: 2px #0064D2 solid;
    transform: translateY(-50%) rotate(45deg);
}
.section-01 .compt.textlink[data-barrett-style="arrow"] a:before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.section-01 .bg-01-01 {
    width: min(100%, 710px);
    aspect-ratio: 710 / 600;
    background: url("/lib/img/home/home_01_01_sp.png") no-repeat center / cover;

    @media all and (min-width:768px) {
        width: 100%;
        height: 350px;
        aspect-ratio: auto;
        background: url("/lib/img/home/home_01_01_pc.png") no-repeat center / cover;
    }
}
.section-01 .bg-01-02 {
    width: min(100%, 710px);
    aspect-ratio: 710 / 420;
    background: url("/lib/img/home/home_01_02_sp.png") no-repeat center / cover;

    @media all and (min-width:768px) {
        width: 100%;
        aspect-ratio: auto;
        background: url("/lib/img/home/home_01_02_pc.png") no-repeat center / cover;
    }
}
.section-01 .bg-01-03 {
    width: min(100%, 710px);
    aspect-ratio: 710 / 420;
    background: url("/lib/img/home/home_01_03_sp.png") no-repeat center / cover;

    @media all and (min-width:768px) {
        width: 100%;
        aspect-ratio: auto;
        background: url("/lib/img/home/home_01_03_pc.png") no-repeat center / cover;
    }
}
.section-01 .bg-01-04 {
    width: min(100%, 710px);
    padding-block: 65px;
    aspect-ratio: 710 / 500;
    background: url("/lib/img/home/home_01_04_sp.png") no-repeat center / cover;

    @media all and (min-width:768px) {
        width: 100%;
        aspect-ratio: auto;
        background: url("/lib/img/home/home_01_04_pc.png") no-repeat center / cover;
    }
}
.section-01 .bg-01-04 .head {
    color: #fff;
    font-size: 2.15em;
    text-shadow: 0 0 20px #000;

    @media all and (min-width: 769px) {
        font-size: 3em;
    }
}
.section-01 .bg-01-04 .lead {
    color: #fff;
    font-size: 1.2em;
    text-shadow: 0 0 10px #000;
}
.compt.newslist .news {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "date"
        "item"
        "tag";
    row-gap: 8px;
    align-items: start;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--tos-gray);
    
    @media all and (min-width:769px) {
        grid-template-columns: auto 1fr;
        grid-template-areas:
        "date item"
        ".    tag";
        gap: 8px 16px;
    }
}
.compt.newslist .date {
    grid-area: date;
}
.compt.newslist .item {
    grid-area: item;
}
.compt.newslist .tag {
    grid-area: tag;
}
.compt.newslist .news > .date,
.compt.newslist .news > .item {
    margin-top: 0;
}
.compt.newslist .news>.date+.tag+.item {
    padding-left: 0;
}
.newslist-pager {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    overflow-x: auto;
    white-space: nowrap;
}
.newslist-pager button {
    color: var(--tos-blue);
}
.newslist-pager .is-current {
    background-color: var(--tos-blue);
    color: white;
}
.compt.newslist .news>.tag>.label {
    background-color: #e7e7e8;
    border: none;
}
@media all and (max-width: 768px) {
    .compt.newslist .news > .date {
        width: 100%;
    }
}
.section-02 a:hover {
    opacity: .8;
}
.item-head {
    font-weight: bold;
}
.compt.container[data-width="narrow"] {
    width: min(100%, 1120px);
}
.h-boder {
    padding-left: 20px;
}
.h-boder .label::before {
    position: absolute;
    content: "";
    top: 0;
    left: -20px;
    width: 6px;
    height: 100%;
    background-color: var(--tos-red);
}
.h-boder + .h2:has(h3) {
    padding-block: 15px;
    padding-inline: 15px;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    
    @media all and (min-width: 769px) {
        padding-left: 20px;
    }
}
.item-inner-box {
    padding-top: 25px;
    border-top: 1px solid #000;
}
.item-inner-box p span {
    display: inline-block;
    margin-bottom: 1em;
}
.security_link .item-inner-box p span.futo {
    font-size: 18px;
}
.compt.newslist .news > .tag {
    justify-content: flex-start;
}
.flex {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
@media all and (min-width: 769px) {
    .flex {
        flex-direction: row;
    }
}
.flex.flex-center {
    justify-content: center;
    align-items: center;
}
.textlink a {
    width: 100%;
    height: auto;
    padding-block: 20px;
}
.flex.flex-center .compt.button-link {
    padding: 0;
}
.flex.flex-center .compt.button-link a {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0;
}
.link-btm {
    padding: 0;
}
.link-btm a {
    width: 100%;
    height: 100%;
}
[class*="section-"] .title h2.label {
    font-size: 24px;
    
    @media all and (min-width: 769px) {
      font-size: 100%;
    }
}
.section-01 .item-head {
    font-size: 20px;
    
    @media all and (min-width: 769px) {
      font-size: 24px;
    }
}
.section-01 .security_link .item-head {
    font-size: 24px;
    
    @media all and (min-width: 769px) {
      font-size: 30px;
    }
}

[class*="section-"] .title h3.label {
    font-size: 20px;
    
    @media all and (min-width: 769px) {
      font-size: 24px;
    }
}
[class*="section-"] .title h4.label {
    font-size: 18px;
}
.section-02 {
    background-color: #f0f7fc;
}
.section-03 {
    background: url("/lib/img/home/home_03_01_sp.png") no-repeat center / cover;

    @media all and (min-width: 769px) {
        background: url("/lib/img/home/home_03_01_pc.png") no-repeat center / cover;
    }
}
.section-03 .button-link {
    width: 150px !important;
}
.section-03 .button-link.type1 a {
    padding-right: 2.5em;
}
.section-05 a {
    color: #000;
}
.section-05 a:hover {
    opacity: .8;
    text-decoration: none;
}

.alert-area .alert {
    width: fit-content;
    padding-block: 2em;
    margin-inline: auto;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}