@charset "utf-8";

/*=============================
共通
=============================*/
/* header */
header ._menu-wrap ._r-contn ._link-ul ._line-l {
    white-space: nowrap;
}

@media screen and (min-width: 901px) and (max-width: 1100px) {
    header ._menu-wrap {
        padding: 40px 40px 75px 45px;
    }
    
    header ._menu-wrap ._r-contn ._link-ul {
        position: absolute;
        right: 40px;
        bottom: 40px;
    }
    
    header ._menu-wrap ._r-contn ._link-ul ._list {
        padding: 0 0.5em;
    }
    
    header ._menu-wrap ._site-top {
        max-width: 22vw;
    }
    
    ._bg-l {
        font-size: 1.5rem;
    }
}

/* footer */
footer ._foot-top ._link-cntn {
    gap: 25px 85px;
}


/*=============================
TOP
=============================*/
/* first view video icon */
.fv-cntn .video-icon {
    position: relative;
    width: calc(100% - 120px);
    height: 100%;
    margin: 0 auto;
}

.fv-cntn .video-icon a {
    display: block;
    position: absolute;
    pointer-events: all;
    width: calc(100vw / (1366 / 260));
    min-width: 260px;
    height: calc(100vw / (1366 / 70));
    min-height: 70px;
    bottom: 150px;
    left: 0;
    margin: auto;
    transition: transform .3s cubic-bezier(.37,.87,.94,.8);
}

.fv-cntn .video-icon a:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 1100px) {
    .fv-cntn .video-icon {
        width: calc(100% - 36px);
    }
    
    .fv-cntn .video-icon a {
        bottom: 101px;
    }
}

@media screen and (max-width: 600px) {
    .fv-cntn .video-icon {
        width: calc(100% - 36px);
    }
    
    .fv-cntn .video-icon a {
        bottom: 100px;
        min-width: 220px;
        min-height: 60px;
        transform-origin: left;
        transform: scale(.8);
    }
}


/* first view news */
.post-mv-blog {
    width: calc(100% - 120px);
    height: 50px;
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto
}

.post-mv-blog-list {
    display: flex;
    align-items: center;
    background-color: #242f88;
    padding: 0 2rem;
    width: 100%;
    height: 50px
}

.post-mv-blog-list p {
    display: flex;
    align-items: center;
    font-family: Minion;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .05rem;
    color: #fff;
    width: 165px;
    padding-right: 2rem;
    margin-right: 2rem;
    border-right: 1px solid rgba(255,255,255,.5)
}

.post-mv-blog-list p::before {
    content: "";
    display: block;
    width: 20px;
    height: 10px;
    margin-right: auto;
    background-image: url("../img/home/icon_news.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.post-mv-blog-list .post {
    width: calc(100% - 275px);
    height: 100%;
    position: relative;
    overflow: hidden
}

.post-mv-blog-list .post article {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    align-items: center
}

.post-mv-blog-list .post article a {
    width: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none
}

.post-mv-blog-list .post article a .title {
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    padding-left: 1em;
    font-size: 1.4rem;
    line-height: 1.4;
    position: relative
}

.post-mv-blog-list .post article a .title::before {
    position: absolute;
    content: "";
    width: calc(100% - 1em);
    height: 1px;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #fff;
    will-change: transform;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .2s cubic-bezier(.37,.87,.94,.8)
}

.post-mv-blog-list .post article a .date {
    min-width: 68px;
    font-family: Minion;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0
}

.post-mv-blog-list .post article a:hover .title::before {
    transform-origin: left;
    transform: scaleX(1)
}

.post-mv-blog-list .post article a[href$=".pdf"]::after {
    content: "";
    background-size: contain;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    margin-left: 0.7em;
    background: url(../img/common/icon_dl_white.svg) no-repeat center center / contain;
}

@media screen and (max-width: 1100px) {
    .post-mv-blog {
        bottom: 25px;
        width: calc(100% - 36px);
    }
    
    .post-mv-blog-list p {
        width:140px;
        font-size: 1.3rem;
        padding-right: 0;
        margin-right: 0;
        border: none
    }
    
    .post-mv-blog-list p::before {
        margin-right: 10px;
    }
    
    .post-mv-blog-list .post article a .date {
        min-width: inherit;
        font-size: 1.3rem;
        min-width: 70px;
    }
    
    .post-mv-blog-list .post article a .title {
        font-size: 1.2rem;
        padding-left: .5rem;
    }
}

@media screen and (max-width: 600px) {
    .post-mv-blog {
        height: auto;
    }
    
    .post-mv-blog-list {
        display: block;
        padding: 1rem;
        height: auto;
    }
    
    .post-mv-blog-list .post {
        width: 100%;
        height: 30px;
    }
}

.post-mv-blog-list .post article {
    transform: translateY(-50px);
    opacity: 0;
    pointer-events: none;
    animation: --hidden .5s linear 0s forwards
}

@keyframes --hidden {
    0% {
        transform: translateY(0);
        opacity: 1
    }

    90% {
        transform: translateY(50px);
        opacity: 0
    }

    100% {
        transform: translateY(-50px);
        opacity: 0
    }
}

.post-mv-blog-list .post[data-position="0"] article[data-num="0"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: --show .5s linear 0s forwards
}

@keyframes --show {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.post-mv-blog-list .post[data-position="1"] article[data-num="1"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: --show .5s linear 0s forwards
}

@keyframes --show {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.post-mv-blog-list .post[data-position="2"] article[data-num="2"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: --show .5s linear 0s forwards
}

@keyframes --show {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.post-mv-blog-list .post[data-position="3"] article[data-num="3"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: --show .5s linear 0s forwards
}

@keyframes --show {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.post-mv-blog-list .post[data-position="4"] article[data-num="4"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
    animation: --show .5s linear 0s forwards
}

@keyframes --show {
    0% {
        transform: translateY(-50px);
        opacity: 0
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.post-mv-blog-list .button-wrapper {
    width: 120px;
    height: 28px;
    padding: 0;
    margin-left: auto;
    display: flex
}

.button.type__more {
    width: 90%;
    max-width: 288px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.post-mv-blog-list .button.type__more {
    color: #fff
}

.button.type__more::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid #242f88;
    left: 0;
    top: 0;
    z-index: 1;
    transform-origin: center;
    transform: scaleX(.45);
    transition: transform .3s cubic-bezier(.37,.87,.94,.8);
    pointer-events: all;
}

.post-mv-blog-list .button.type__more::before {
    border-color: #fff;
    transform: scaleX(1)
}

.post-mv-blog-list .button.type__more .label {
    font-family: Minion;
    position: relative;
    z-index: 2;
    font-weight: 600;
    color: #fff;
    font-size: 1.3rem
}

.button.type__more .label::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 4px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    right: -70px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    z-index: 1;
}

.post-mv-blog-list .button.type__more .label::after {
    background-image: url("../img/home/icon_arrow-r_white_S.svg");
    right: -60px;
    transition: transform .2s cubic-bezier(.37,.87,.94,.8)
}

.post-mv-blog-list .button.type__more:hover .label::after {
    transform: translateX(5px)
}

@media screen and (max-width: 1100px) {
    .post-mv-blog-list .button-wrapper {
        margin-left: 1.5rem;
    }
    
    .button.type__more .label::after {
        width: 40px;
    }
}

@media screen and (max-width: 600px) {
    .post-mv-blog-list .button-wrapper {
        display: none;
    }
}


/* information */
.home .info {
    padding-top: 150px;
}

.home .info ._link-ul {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
    gap: 30px 2%;
}

.home .info ._link-ul ._list a {
    font-size: 1.7rem;
    white-space: nowrap;
}

.home .info ._link-ul ._list:nth-child(5) a:before {
    background-color: #d8e9f7;
}
.home .info ._link-ul ._list:nth-child(5) a:after {
    background-color: #c5dff2;
}

.home .info ._link-ul ._list:nth-child(6) a:before {
    background-color: #f9d8e5;
}
.home .info ._link-ul ._list:nth-child(6) a:after {
    background-color: #f4c6d9;
}

@media screen and (max-width: 1100px) {
    .home .info ._link-ul {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 30px 6%;
    }
    
    .home .info ._link-ul ._list a {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 600px) {
    .home .info {
        padding-top: 60px;
    }
    
    .home .info ._link-ul {
        gap: 15px 4%;
        padding-top: 40px;
    }
    
    .home .info ._link-ul ._list a {
        font-size: 1.5rem;
    }
}


/* office */
.home .office {
    margin-top: 100px;
}

@media screen and (max-width: 600px) {
    .home .office {
        margin-top: 60px;
    }
}




/*=============================
TOPICS
=============================*/
@media screen and (max-width: 600px) {
    .topics ._page-ttl {
        font-size: 2.5rem;
    }
}

.topics-list > li {
  border-bottom: 2px solid #d2d2d3;
}

.topics-list > li:first-child {
  border-top: 2px solid #d2d2d3;
}

.topics-list > li a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 23px 0;
  font-size: 16px;
  line-height: 1.8;
    background-color: #fff;
}

.topics-list > li a:hover {
    background-color: #FEFAF1;
}

.topics-list > li .item {
  width: 9em;
}

.topics-list > li .cont {
    max-width: calc(100% - 11em);
}

/* PDFアイコン */
.topics-list a[href$=".pdf"]::after {
  content: "";
  background: url("../img/common/icon_dl.png") no-repeat center center;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  margin-left: 0.7em;
}

@media screen and (max-width: 1100px) {
  .page_text {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 600px) {
  .page_text {
    font-size: 1.4rem;
  }

  .topics-list > li a {
    font-size: 1.4rem;
    flex-direction: column;
    padding: 15px 0;
  }

    .topics-list > li .cont {
        max-width: 100%;
    }

}

/*---------------------------------------
記事
-----------------------------------------*/
.editarea .editarea__date {
	color: #242f88;
	font-size: 20px;
}

.editarea .content__h2 {
	margin: 20px 0 40px;
	font-size: 30px;
	font-weight: 700;
	line-height: 42px;
}

.editarea .content__columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    gap: 50px;
}

.content__side {
    width: 300px;
}

.content__main {
    width: 100%;
    flex: 1;
}

.content__image {
	text-align: center;
	font-size: 0;
}

.content__image img {
	max-width: 100%;
	height: auto;
}

.content__main p,
.content__main ul,
.content__main ol,
.content__main li,
.content__main dl,
.content__main dt,
.content__main dd,
.content__main table,
.content__main th,
.content__main td,
.content__main blockquote,
.content__main address,
.content__main pre,
.content__main code {
    font-size: 1.6rem;
    line-height: 1.8em;
}

.content__main p:not(:first-child) {
    margin-top: 1.5em;
}

.content__main a {
    text-decoration: underline;
}

.content__main a:hover {
    text-decoration: none;
}

.editarea__button {
	margin: 75px 0 0;
	padding: 80px 0 0;
	border-top: 1px solid #ddd;
}
.editarea__button a {
    width: 250px;
    max-width: 90%;
    aspect-ratio: 160 / 36;
    margin: 0 auto;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    background-color: #002476;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.editarea__button a:hover {
    background-color: #23489C;
}

@media screen and (max-width: 600px) {
    .editarea .editarea__date {
        font-size: 16px;
    }

    .editarea .content__h2 {
        margin: 15px 0 25px;
        font-size: 20px;
        line-height: 1.6em;
    }

    .editarea .content__columns {
        flex-direction: column;
        gap: 30px;
    }

    .content__side {
        width: 100%;
    }
    
    .content__main p,
    .content__main ul,
    .content__main ol,
    .content__main li,
    .content__main dl,
    .content__main dt,
    .content__main dd,
    .content__main table,
    .content__main th,
    .content__main td,
    .content__main blockquote,
    .content__main address,
    .content__main pre,
    .content__main code {
        font-size: 14px;
    }

    .editarea__button {
        margin: 55px 0 0;
        padding: 60px 0 0;
    }
    .editarea__button a {
        margin: 0 auto;
    }
}


/*---------------------------------------
ページネーション
-----------------------------------------*/
.pagination_wrap {
    margin-top: 2em;
    text-align: center;
}

.pagination_wrap .page-numbers {
    display: flex;
    justify-content: center;
    gap: 0.5em;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.pagination_wrap .page-numbers li {
    display: inline-block;
}

.pagination_wrap .page-numbers a,
.pagination_wrap .page-numbers span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0.4em 0.8em;
    border: 1px solid #ccc;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    min-width: 2.5em;
    text-align: center;
    transition: background-color 0.2s ease;
}

.pagination_wrap .page-numbers a:hover {
  background-color: #f0f0f0;
}

.pagination_wrap .page-numbers .current {
  font-weight: bold;
  background-color: #333;
  color: #fff;
  border-color: #333;
  cursor: default;
}

@media screen and (max-width: 600px) {
    .pagination_wrap .page-numbers a,
    .pagination_wrap .page-numbers span {
        font-size: 12px;
    }
}


/*---------------------------------------
エディタ用
-----------------------------------------*/
/* コード・プレ */
.content__main pre,
.content__main code {
  background: #f4f4f4;
  padding: 0.4em 0.6em;
  font-family: monospace;
  font-size: 0.95em;
  border-radius: 4px;
}
.content__main pre {
  overflow-x: auto;
  padding: 1em;
}

/* 見出し */
.content__main h1, 
.content__main h2, 
.content__main h3, 
.content__main h4, 
.content__main h5, 
.content__main h6 {
  margin: 2em 0 1em;
  line-height: 1.4;
  font-weight: bold;
}
.content__main h1 { font-size: 2rem; }
.content__main h2 { font-size: 1.8rem; }
.content__main h3 { font-size: 1.6rem; }
.content__main h4 { font-size: 1.4rem; }
.content__main h5 { font-size: 1.2rem; }
.content__main h6 { font-size: 1rem; }

/* リスト */
.content__main ul, 
.content__main ol {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
}
.content__main ul {
  list-style: disc;
}
.content__main ol {
  list-style: decimal;
}
.content__main li {
  margin-bottom: 0.5em;
}

/* 定義リスト */
.content__main dl {
  margin-bottom: 1.5em;
}
.content__main dt {
  font-weight: bold;
  margin-top: 1em;
}
.content__main dd {
  margin-left: 1.5em;
}

/* テーブル */
.content__main table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}
.content__main th,
.content__main td {
  border: 1px solid #ccc;
  padding: 0.6em;
  text-align: left;
}

/* 引用 */
.content__main blockquote {
  margin: 1.5em 0;
  padding: 1em 1.5em;
  background: #f9f9f9;
  border-left: 5px solid #ccc;
  font-style: italic;
}


/*=============================
VIDEO
=============================*/
/* タイトル下の説明テキスト */
.contents-desc {
    font-size: 1.438em;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 3em;
}
.contents-desc .em {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.3em;
    margin-top: 0.4em;
    display: inline-block;
}
@media only screen and (max-width:768px) {
    .contents-desc {
        font-size: 1.071em;
    }
    .contents-desc .em {
        font-size: 1.3em;
    }
}

.video .info_items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 4em;
}
@media only screen and (max-width: 768px){
    .video .info_items {
        display: block;
        margin-bottom: 3em;
    }
}
.video .info_items li {
    width: 48%;
    margin-bottom: 2.5em;
}
@media only screen and (max-width: 768px){
    .video .info_items li {
        width: 100%;
        margin-bottom: 2em;
    }
}
.video .info_items li:nth-last-child(-n+2) {
    margin-bottom: 0;
}
@media only screen and (max-width: 768px){
    .video .info_items li:nth-last-child(-n+2) {
        margin-bottom: 2.5em;
    }
}
.video .info-thumb {
    position: relative;
}
/*
.video .info-thumb::after {
    content: '';
    width: 75px;
    height: 75px;
    display: block;
    background: url("../images/play.svg") no-repeat center center / contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/
@media only screen and (max-width: 768px){
    .video .info-thumb::after {
        width: 50px;
        height: 50px;
    }
}
.video .info-thumb img {
    width: 100%;
    height: 240px;
    object-fit: contain;
}
@media only screen and (max-width: 768px){
    .video .info-thumb img {
        height: auto;
    }
}
.video .info-date {
    font-size: 1.125em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 1em;
    text-align: center;
}
@media only screen and (max-width: 768px){
    .video .info-date {
        font-size: 1.071em;
        margin-top: 0.5em;
    }
}
.video .info-title {
    font-size: 0.875em;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.5em;
}
@media only screen and (max-width: 768px){
    .video .info-title {
        font-size: 1em;
    }
}


