@charset "UTF-8";

/* ページ共通 */

#header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 0;
    min-width: 1080px;
    background: #fff;
}

#page .subPage_head {
    border-bottom: 1px solid #1e82c8;
}

#page .subPage_head h1 {
    max-width: 1080px;
    height: 210px;
    margin: auto;
    position: relative;
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

#page .subPage_head h1::after {
    content: '';
    width: 80px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #1e82c8;
}

#page .subPage_head h1 span {
    width: 100%;
    display: block;
    margin: 0;
    font-size: 18px;
    color: #1e82c8;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    #header.fixed {
        width: 100vw!important;
    }
    #header.fixed .lang {
        right: 20px;
    }
    #page .subPage_head {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    #header {
        min-width: 100%;
    }
    #header.fixed {
        min-width: 0;
    }
    #page .subPage_head {
        padding: 0 6vw;
    }
    #page .subPage_head h1 {
        max-width: 100%;
        height: 30vw;
        font-size: 4.4vw;
    }
    #page .subPage_head h1::after {
        width: 12vw;
        height: 1vw;
    }
    #page .subPage_head h1 span {
        font-size: 3.6vw;
    }
    #page .subPage_head.single {
        height: 30vw;
        padding: 0 3vw;
    }
    #page .subPage_head.single h1 {
        margin: auto;
        width: 100%;
        height: 100%;
    }
}


/* パンくず */

.bread {
    background: #f8f8f8;
}

.breadcrumbs {
    font-size: 12px;
    padding: 10px;
    max-width: 1080px;
    margin: auto;
}

.breadcrumbs .span {
    font-size: 12px;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .breadcrumbs {
        padding: 10px 20px;
    }
}

@media only screen and (max-width:768px) {
    .breadcrumbs {
        font-size: 3vw;
        padding: 2vw 3vw;
        max-width: 100%;
    }
    .breadcrumbs .span {
        font-size: 3vw;
    }
}

.page_title h1 {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 30px #fff;
}


/* 製品情報 */

.products #page {
    margin-bottom: 150px;
}

.products .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/products/products_header.png);
    background-size: cover;
    background-position: center;
}

.products .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
    text-shadow: 0 0 5px #000, 0 0 25px #000, 0 0 30px #000;
}

.products .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.products .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.products .products_top {
    padding: 80px 20px 100px;
}

.products .products_top .inner {
    max-width: 1080px;
    margin: auto;
}

.products .products_top p {
    font-size: 14px;
    line-height: 2em;
}

.products .products_index {
    padding: 0 20px 120px;
    position: relative;
}

.products .products_index::after {
    content: '';
    background: #e6eff3;
    width: 100%;
    height: 330px;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
}

.products .products_index .list {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.products .products_index .list li {
    width: 32.8%;
    background: #fff;
}

.products .products_index .list li a {
    display: block;
    text-decoration: none;
}

.products .products_index .list li a:hover {
    opacity: .7;
}

.products .products_index .list li .image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
    height: 0;
}

.products .products_index .list li .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.products .products_index .list li .title {
    height: 60px;
    padding: 6px 50px 6px 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.products .products_index .list li .title::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

.products .products_link {
    max-width: 1080px;
    margin: auto;
    padding: 80px 20px 120px;
}

.products .products_link a {
    display: block;
    max-width: 640px;
    height: 180px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/products/products_cat04.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none;
    position: relative;
}

.products .products_link a:hover {
    opacity: .7;
}

.products .products_link a::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    right: 10px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow05.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fff;
}

.products .page_head {
    border-bottom: 1px solid #1e82c8;
    margin-bottom: 80px;
}

.products .page_head.single {
    height: 360px;
    /*     background-image: url(/wp/wp-content/themes/seibu/assets/img/products/page_header.png); */
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    border: none;
}

.products .page_head h1 {
    max-width: 1080px;
    height: 210px;
    margin: auto;
    position: relative;
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 25px #fff, 0 0 30px #fff;
}

.products .page_head h1 em {
    font-weight: 600;
}

.products .page_head.single h1 {
    margin: auto auto 0;
    width: 1080px;
}

.products .page_head h1::after {
    content: '';
    width: 80px;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: #1e82c8;
}

.products .page_head h1 span {
    width: 100%;
    display: block;
    margin: 0;
    font-size: 18px;
    color: #1e82c8;
}

.products .product_list {
    max-width: 1080px;
    margin: auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.products .product_list:after {
    content: "";
    display: block;
    width: 23%;
    height: 0;
}

.products .product_list:before {
    content: "";
    display: block;
    width: 23%;
    height: 0;
    order: 1;
}

.products .product_list li {
    width: 23%;
    margin-bottom: 50px;
    border-bottom: 1px solid #1e82c8;
}

.products .product_list li a {
    display: block;
    text-decoration: none;
}

.products .product_list li a:hover {
    opacity: .7;
}

.products .product_list li .image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 75%;
    height: 0;
}

.products .product_list li .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.products .product_list li .title {
    height: 60px;
    padding: 6px 30px 6px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.products .product_list li .title::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: calc(50% - 6px);
    width: 12px;
    height: 12px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow05.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: right center;
}

.product_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 10px;
}

.product_ttl02 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: 80px auto 30px;
}

.product_ttl03 {
    font-size: 18px;
    font-weight: 600;
    color: #1e82c8;
    max-width: 1080px;
    margin: 30px auto 20px;
}

.product_txt01 {
    font-size: 14px;
    max-width: 1080px;
    margin: 20px auto 20px;
}

.product_btn01,
.product_btn02 {
    width: 516px;
    margin: 30px auto 60px;
}

.product_btn01 a {
    display: block;
    text-decoration: none;
    border: 1px solid #1e82c8;
    border-radius: 4em;
    color: #1e82c8;
    font-size: 14px;
    text-align: center;
    padding: 1em;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: right 20px center;
}

.product_btn01 a:hover {
    color: #fff;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
}

.product_btn02 a {
    display: block;
    text-decoration: none;
    border: 1px solid #1e82c8;
    border-radius: 4em;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 1em;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: right 20px center;
}

.product_btn02 a:hover {
    color: #1e82c8;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
}

.product_btn03,
.product_btn04 {
    width: 356px;
    margin: 30px auto 60px;
}

.product_btn03 a {
    display: block;
    text-decoration: none;
    border: 1px solid #1e82c8;
    border-radius: 4em;
    color: #1e82c8;
    font-size: 14px;
    text-align: center;
    padding: 1em;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: right 20px center;
}

.product_btn03 a:hover {
    color: #fff;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
}

.product_btn04 a {
    display: block;
    text-decoration: none;
    border: 1px solid #1e82c8;
    border-radius: 4em;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding: 1em;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-repeat: no-repeat;
    background-size: 13px auto;
    background-position: right 20px center;
}

.product_btn04 a:hover {
    color: #1e82c8;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
}

.product_image_center {
    max-width: 1080px;
    text-align: center;
    margin: 50px auto;
}
.product_image_center .youtube {
  width: 100%;
  max-width: 800px;
    margin: 50px auto;
  aspect-ratio: 16 / 9;
}
.product_image_center .youtube iframe {
  width: 100%;
  height: 100%;
}

.product_border {
    max-width: 1080px;
    border-bottom: 1px solid #c9c9c9;
    margin: 80px auto;
}

.product_lineup01 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product_lineup01 li {
    width: 48.5%;
    margin-top: 30px;
}

.product_lineup01 li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    text-decoration: none;
    position: relative;
}

.product_lineup01 li a:hover {
    opacity: .7;
}

.product_lineup01 li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

.product_lineup01 li a .img {
    width: 148px;
    height: 148px;
    position: relative;
}

.product_lineup01 li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_lineup01 li a .title {
    width: calc(100% - 148px);
    padding: 0 60px 0 35px;
}

.product_lineup01-2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product_lineup01-2 li {
    width: 32.5%;
    margin-top: 30px;
}

.product_lineup01-2 li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    text-decoration: none;
    position: relative;
}

.product_lineup01-2 li a:hover {
    opacity: .7;
}

.product_lineup01-2 li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

.product_lineup01-2 li a .img {
    width: 148px;
    height: 148px;
    position: relative;
}

.product_lineup01-2 li a .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_lineup01-2 li a .title {
    width: 100%;
    height: 100%;
    padding: 0 60px 0 35px;
}

.product_lineup02 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
}

.product_lineup02.cal3 {
    justify-content: center;
}

.product_lineup02.cal2 {
    justify-content: center;
}

.product_lineup02 li {
    width: 23.5%;
    margin-top: 30px;
    margin-left: 2%;
}

.product_lineup02 li:nth-child(4n+1) {
    margin-left: 0%;
}

.product_lineup02 li a {
    text-decoration: none;
}

.product_lineup02 li a:hover {
    opacity: .7;
}

.product_lineup02 li .img {
    width: 100%;
    height: 194px;
    position: relative;
    display: block;
}

.product_lineup02 li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product_lineup02 li .title {
    padding: 10px 40px 0 0;
    display: block;
    position: relative;
}

.product_lineup02 li a .title::after {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    top: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

.product_lineup02 li .lineup_head {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.5em;
    font-weight: bold;
    line-height: 1.2;
    color: #1E82C8;
}

.products .product_block01 {
    max-width: 1080px;
    margin: 20px auto 80px;
    display: flex;
    justify-content: space-between;
}

.products .product_block01 .img {
    width: 48.5%;
}

.products .product_block01 .box {
    width: 48.5%;
}

.products .product_block01 h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    margin-bottom: 10px;
    line-height: 1.5;
}

.products .product_block01 p {
    font-size: 14px;
}

.products .product_block02 {
    margin: 80px auto;
    padding: 80px 0;
    background: #e8f2f9;
}

.products .product_block02 .inner {
    max-width: 1080px;
    margin: auto;
}

.products .product_block03 {
    max-width: 1080px;
    margin: 20px auto 80px;
    display: flex;
    justify-content: space-between;
}

.products .product_block03 .img {
    width: 34.2%;
}

.products .product_block03 .img .caption {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.products .product_block03 .img .caption.click::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon04.svg);
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left: 5px;
}

.products .product_block03 .box {
    width: 62.8%;
}

.products .product_block03 h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e82c8;
    margin-bottom: 10px;
}

.products .product_block03 p {
    font-size: 14px;
}

.products .product_block03 .modal {
    cursor: pointer;
}

.products .product_block03 .largeImage {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
}

.products .product_block03 .largeImage .close {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    cursor: pointer;
}

.products .product_block03 .largeImage .close::before {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: 50%;
    transform: rotate(45deg);
}

.products .product_block03 .largeImage .close::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: 50%;
    transform: rotate(-45deg);
}

.products .product_block03 .largeImage.open {
    display: flex;
}

.products .product_block03 .largeImage img {
    max-width: 80%;
    max-height: 80%;
}

.products .product_block04 {
    max-width: 1080px;
    margin: auto auto 60px;
}

.products .product_block04 h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e82c8;
    margin-top: 20px;
    margin-bottom: 10px;
}

.products .product_block04 p {
    font-size: 14px;
}

.products .product_block05 {
    max-width: 1080px;
    margin: auto auto 30px;
}

.products .product_block05 li {
    list-style: disc;
    margin-left: 1em;
    font-size: 14px;
}

.products .product_block06 {
    max-width: 1080px;
    margin: auto auto 30px;
}

.products .product_block06 li {
    padding-left: 1.5em;
    font-size: 14px;
    position: relative;
}

.products .product_block06 li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 1em;
    height: 1em;
    border: 1px solid #1e82c8;
    border-radius: 50%;
}

.products .product_block06 li::after {
    content: '';
    display: block;
    position: absolute;
    left: 0.3em;
    top: 0.85em;
    width: 0.5em;
    height: 0.2em;
    border-bottom: 1px solid #1e82c8;
    border-left: 1px solid #1e82c8;
    transform: rotate(-45deg);
}

.products .product_block07 {
    max-width: 1080px;
    margin: 30px auto 60px;
}

.products .product_block07 table.product_block_table-middle {
    width: 70%;
    margin: 0 auto;
    border-collapse: collapse;
}

.products .product_block07 table {
    width: 100%;
    border-collapse: collapse;
}

.products .product_block07 table th {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    vertical-align: middle;
    text-align: center;
    background-color: #e8f3f9;
    border: 1px solid #c9c9c9;
    padding: 0.5em;
}

.products .product_block07 table th span {
    font-size: 12px;
    text-align: center;
    display: block;
}

.products .product_block07 table td {
    font-size: 14px;
    line-height: 1.5em;
    vertical-align: middle;
    text-align: center;
    border: 1px solid #c9c9c9;
    padding: 0.5em;
}

.products .product_block07 table.product_block_table-align-left td {
    text-align: left;
}

.products .product_block07 table.product_block_table-align-right td {
    text-align: left;
}

.products .product_block07 .table_smalltxt th {
    padding: 0.4em;
    font-size: 0.9em!important;
}
.products .product_block07 .table_smalltxt td {
    padding: 0.4em;
    font-size: 0.9em!important;
}

.products .product_block08 {
    max-width: 960px;
    margin: 30px auto 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.products .product_block08 .img {
    width: 48%;
    margin-bottom: 30px;
}

.products .product_block08 .img .caption {
    text-align: center;
    font-size: 14px;
    margin-top: 0.5em;
}

.products .product_tbl01 {
    width: 100%;
}

.products .product_tbl01 th {
    width: 110px;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    padding: 5px 0;
}

.products .product_tbl01 td {
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    padding: 5px 0;
}

.products .product_flow {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto 3em;
}

.products .product_flow ul {
    width: 70%;
    margin: 0 auto;
}

.products .product_flow.product_flow-mini ul {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}

.products .product_flow ul li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.5em;
    margin-bottom: 2.5em;
    background-color: #e8f2f9;
}

.products .product_flow ul li::after {
    position: absolute;
    content: " ";
    display: block;
    width: 0;
    height: 0;
    bottom: -2.5em;
    left: 50%;
    margin: 0.5em auto 0.5em -2em;
    border-style: solid;
    border-width: 1.5em 2em 0 2em;
    border-color: #e1e1e1 transparent transparent transparent;
}

.products .product_flow ul li:last-child::after {
    display: none;
}

.products .product_flow ul li h3 {
    width: 100%;
    padding: 0.5em;
    border-bottom: solid 1px #1e82c8;
    font-weight: bold;
    font-size: 1.1em;
}

.products .product_flow.product_flow-mini ul li h3 {
    border-bottom: none;
}

.products .product_flow ul li h3 small {
    font-weight: normal;
    font-size: 0.9em;
}

.products .product_flow ul li p {
    width: 100%;
    padding: 0.5em;
}

.product_example {
    width: 100%;
    max-width: 1080px;
    margin: 0em auto 10em;
}

.product_example_bigtitle {
    width: 100%;
    max-width: 1080px;
    margin: 4em auto 6em;
    font-weight: bold;
    font-size: 2em;
    font-weight: 600;
    color: #fff;
    padding: 10px;
    /*     border-bottom: 1px solid #c9c9c9; */
    margin: auto auto 10px;
    line-height: 1.2;
    text-align: center;
    background-color: #1e82c8;
}

.products .product_example_bigtitle span {
    display: block;
    font-size: 0.7em;
    margin-bottom: 0.5em;
}

.product_example_middletitle {
    position: relative;
    font-size: 1.5em;
    font-weight: bold;
}

.product_example_middletitle span {
    color: #666666;
    font-size: 0.8em;
    vertical-align: baseline;
}

.product_example_comparison-txt {
    max-width: 1080px;
    margin: 20px auto 60px;
    display: flex;
    justify-content: space-between;
}

.product_example_comparison-box {
    width: 48.5%;
    margin-top: 30px;
}

.product_example_comparison-box .img {
    text-align: center;
    margin-bottom: 0.5em;
}

.product_example_comparison-box .ttl {
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
    border-bottom: 1px solid #666666;
    font-weight: bold;
}

.products_category_sec01 .img {
    width: 100%;
    max-width: 1080px;
    margin: 70px auto auto;
}

.products_category_sec01 .img {
    width: 100%;
    margin-bottom: 40px;
}

.products_features{
    padding-left: 1.5em;
    text-indent: -1.5em;
}


@media only screen and (min-width:769px)and (max-width:1280px) {
    .products .page_title {
        padding: 50px 20px;
    }
    .products .page_head {
        padding: 0 20px;
    }
    .products .product_list {
        padding: 20px 20px;
    }
    .product_ttl01 {
        padding: 0 20px;
    }
    .product_ttl02 {
        padding: 0 20px;
    }
    .product_ttl03 {
        padding: 0 20px;
    }
    .product_txt01 {
        padding: 0 20px;
    }
    .product_image_center {
        padding: 0 20px;
    }
    .product_border {
        padding: 0 20px;
    }
    .product_lineup01 {
        padding: 0 20px;
    }
    .product_lineup02 {
        padding: 0 20px;
    }
    .products .product_block01 {
        padding: 0 20px;
    }
    .products .product_block02 {
        padding: 80px 20px;
    }
    .products .product_block03 {
        padding: 0 20px;
    }
    .products .product_block04 {
        padding: 0 20px;
    }
    .products .product_block05 {
        padding: 0 20px;
    }
    .products .product_block06 {
        padding: 0 20px;
    }
    .products .product_block07 {
        padding: 0 20px;
    }
    .products .product_block08 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .products #page {
        margin-bottom: 20vw;
    }
    .products .page_title {
        height: 40vw;
        padding: 6vw;
    }
    .products .page_title h1 {
        max-width: 100%;
        font-size: 6vw;
    }
    .products .page_title h1 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .products .page_title h1 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .products .products_top {
        padding: 10vw 6vw 12vw;
    }
    .products .products_top .inner {
        max-width: 100%;
        margin: auto;
    }
    .products .products_top p {
        font-size: 3.2vw;
        line-height: 1.7em;
    }
    .products .products_index {
        padding: 10vw 6vw 12vw;
        position: relative;
    }
    .products .products_index::after {
        height: 100%;
    }
    .products .products_index .list {
        max-width: 100%;
        display: block;
    }
    .products .products_index .list li {
        width: 100%;
        margin-bottom: 8vw;
    }
    .products .products_index .list li .image {
        width: 100%;
    }
    .products .products_index .list li .title {
        height: 12vw;
        padding: 2vw 8vw 2vw 4vw;
        font-size: 4vw;
        line-height: 1.5em;
    }
    .products .products_index .list li .title::after {
        right: 2vw;
        top: calc(50% - 3vw);
        width: 6vw;
        height: 6vw;
        background-size: 2vw auto;
    }
    .products .products_link {
        max-width: 100%;
        margin: auto;
        padding: 10vw 6vw 14vw;
    }
    .products .products_link a {
        max-width: 100%;
        height: 24vw;
        font-size: 4vw;
    }
    .products .products_link a::after {
        right: 2vw;
        top: calc(50% - 3vw);
        width: 6vw;
        height: 6vw;
        background-size: 2vw auto;
    }
    .products .page_head {
        padding: 0 6vw;
    }
    .products .page_head h1 {
        max-width: 100%;
        height: 30vw;
        font-size: 4.4vw;
    }
    .products .page_head h1::after {
        width: 12vw;
        height: 1vw;
    }
    .products .page_head h1 span {
        font-size: 3.6vw;
    }
    .products .page_head.single {
        height: 30vw;
        padding: 0 3vw;
    }
    .products .page_head.single h1 {
        margin: auto;
        width: 100%;
        height: 100%;
    }
    .products .product_list {
        max-width: 100%;
        padding: 10vw 6vw;
    }
    .products .product_list:after {
        display: none;
    }
    .products .product_list:before {
        display: none;
    }
    .products .product_list li {
        width: 48%;
        margin-bottom: 8vw;
    }
    .products .product_list li .title {
        height: 10vw;
        padding: 1vw 4vw 1vw 0;
        font-size: 3.2vw;
        line-height: 4vw;
    }
    .products .product_list li .title::after {
        right: 1vw;
        top: calc(50% - 1vw);
        width: 2vw;
        height: 2vw;
        background-size: 2vw auto;
    }
    .product_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto 6vw 2vw;
    }
    .product_ttl02 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: 6vw 6vw 4vw;
    }
    .product_ttl03 {
        font-size: 3.6vw;
        max-width: 100%;
        margin: 4vw 6vw 3vw;
    }
    .product_txt01 {
        font-size: 3.2vw;
        margin: 3vw 6vw 8vw;
    }
    .product_btn01,
    .product_btn02 {
        width: 85vw;
        margin: 4vw auto 8vw;
    }
    .product_btn01 a {
        font-size: 3.2vw;
        background-size: 2vw auto;
        background-position: right 3vw center;
    }
    .product_btn02 a {
        font-size: 3.2vw;
        background-size: 2vw auto;
        background-position: right 3vw center;
    }
    .product_btn03,
    .product_btn04 {
        width: 65vw;
        margin: 4vw auto 8vw;
    }
    .product_btn03 a {
        font-size: 3.2vw;
        background-size: 2vw auto;
        background-position: right 3vw center;
    }
    .product_btn04 a {
        font-size: 3.2vw;
        background-size: 2vw auto;
        background-position: right 3vw center;
    }
    .product_image_center {
        max-width: 100%;
        margin: 8vw 6vw;
    }
    .product_border {
        max-width: 100%;
        margin: 10vw 6vw;
    }
    .product_lineup01 {
        padding: 0 6vw;
    }
    .product_lineup01 li {
        width: 100%;
        margin-top: 4vw;
    }
    .product_lineup01 li a {
        font-size: 3.2vw;
        line-height: 1.5em;
    }
    .product_lineup01 li a::after {
        right: 3vw;
        top: calc(50% - 2.5vw);
        width: 5vw;
        height: 5vw;
        background-size: 2vw auto;
    }
    .product_lineup01 li a .img {
        width: 25vw;
        height: 25vw;
    }
    .product_lineup01 li a .title {
        width: calc(100% - 25vw);
        padding: 0 8vw 0 5vw;
    }
    .product_lineup01-2 {
        padding: 0 6vw;
    }
    .product_lineup01-2 li {
        width: 100%;
        margin-top: 4vw;
    }
    .product_lineup01-2 li a {
        font-size: 3.2vw;
        line-height: 1.5em;
    }
    .product_lineup01-2 li a::after {
        right: 3vw;
        top: calc(50% - 2.5vw);
        width: 5vw;
        height: 5vw;
        background-size: 2vw auto;
    }
    .product_lineup01-2 li a .img {
        width: 25vw;
        height: 25vw;
    }
    .product_lineup01-2 li a .title {
        width: 100%;
        padding: 0 8vw 0 5vw;
    }
    .product_lineup02 {
        padding: 0 6vw;
        justify-content: space-between;
    }
    .product_lineup02 li {
        width: 48%;
        margin: 4vw 0 auto;
    }
    .product_lineup02 li:nth-child(4n+1) {
        margin: 4vw 0 auto;
    }
    .product_lineup02 li a .img {
        width: 100%;
        height: 35vw;
    }
    .product_lineup02 li a .title {
        padding: 2vw 8vw 0 0;
        font-size: 3.2vw;
        line-height: 1.5em;
    }
    .product_lineup02 li a .title::after {
        top: 4vw;
        width: 5vw;
        height: 5vw;
        background-size: 2vw auto;
    }
    .products .product_block01 {
        max-width: 100%;
        margin: 10vw 6vw;
        display: block;
    }
    .products .product_block01 .img {
        width: 100%;
    }
    .products .product_block01 .box {
        width: 100%;
        margin-top: 3vw;
    }
    .products .product_block01 h2 {
        font-size: 4vw;
        margin-bottom: 2vw;
    }
    .products .product_block01 p {
        font-size: 3.2vw;
    }
    .products .product_block02 {
        padding: 10vw 0;
    }
    .products .product_block02 .inner {
        max-width: 100%;
        margin: auto;
    }
    .products .product_block03 {
        max-width: 100%;
        margin: 4vw 6vw 10vw;
        display: block;
    }
    .products .product_block03 .img {
        width: 100%;
        margin-bottom: 3vw;
    }
    .products .product_block03 .box {
        width: 100%;
    }
    .products .product_block03 .img .caption {
        font-size: 3.2vw;
        margin-top: 1vw;
    }
    .products .product_block03 h3 {
        font-size: 3.6vw;
        margin-bottom: 2vw;
    }
    .products .product_block03 p {
        font-size: 3.2vw;
    }
    .products .product_block04 {
        max-width: 100%;
        margin: auto 6vw 8vw;
    }
    .products .product_block04 h3 {
        font-size: 3.6vw;
        margin-bottom: 2vw;
    }
    .products .product_block04 p {
        font-size: 3.2vw;
    }
    .products .product_block05 {
        max-width: 100%;
        margin: auto 6vw 4vw;
    }
    .products .product_block05 li {
        font-size: 3.2vw;
    }
    .products .product_block06 {
        max-width: 100%;
        margin: auto 6vw 4vw;
    }
    .products .product_block06 li {
        font-size: 3.2vw;
    }
    .products .product_block07 {
        max-width: 100%;
        margin: 4vw 6vw 8vw;
        overflow: auto;
    }
    .products .product_block07 table th {
        font-size: 3.2vw;
    }
    .products .product_block07 table th span {
        font-size: 2.8vw;
    }
    .products .product_block07 table td {
        font-size: 3.2vw;
    }
    .products .product_block08 {
        max-width: 100%;
        margin: 4vw 6vw 8vw;
    }
    .products .product_block08 .img {
        margin-bottom: 4vw;
    }
    .products .product_block08 .img .caption {
        font-size: 3.2vw;
    }
    .products .product_tbl01 {
        width: 100%;
    }
    .products .product_tbl01 th {
        width: 110px;
        font-size: 14px;
        text-align: left;
        vertical-align: top;
        padding: 5px 0;
    }
    .products .product_tbl01 td {
        font-size: 14px;
        text-align: left;
        vertical-align: top;
        padding: 5px 0;
    }
    .products_category_sec01 .img {
        max-width: 100%;
        margin: 10vw 6vw auto;
    }
    .products_category_sec01 .img {
        width: 100%;
        margin-bottom: 5vw;
    }
}


/* 西部技研について */

.about #page {
    margin-bottom: 0;
}

.about .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/about/page_header.png);
    background-size: cover;
    background-position: center;
}

.about .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.about .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.about .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.about_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: 40px auto 30px;
}

.about_ttl02 {
    font-size: 18px;
    font-weight: 600;
    color: #1e82c8;
    max-width: 1080px;
    margin: 30px auto 20px;
}

.about .about_top {
    padding: 30px 20px 100px;
}

.about .about_top .inner {
    max-width: 1080px;
    margin: auto;
}

.about .about_top .box {
    display: flex;
    justify-content: space-between;
}

.about .about_top .img {
    width: 360px;
    font-size: 14px;
    line-height: 2em;
}

.about .about_top .caption {
    display: block;
    text-align: center;
    margin-top: 1em;
    font-size: 14px;
    line-height: 1.5em;
}

.about .about_top .caption strong {
    display: block;
    text-align: center;
    margin-top: .5em;
}

.about .about_top p {
    width: 670px;
    font-size: 14px;
    line-height: 2em;
}

.about .about_index {
    padding: 0 20px 120px;
    position: relative;
}

.about .about_index::after {
    content: '';
    background: #e6eff3;
    width: 100%;
    height: 330px;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
}

.about .about_index .list {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.about .about_index .list li {
    width: 24.5%;
    background: #fff;
}

.about .about_index .list li a {
    display: block;
    text-decoration: none;
}

.about .about_index .list li a:hover {
    opacity: .7;
}

.about .about_index .list li .image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 130%;
    height: 0;
}

.about .about_index .list li .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.about .about_index .list li .title {
    height: 60px;
    padding: 6px 50px 6px 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.about .about_index .list li .title::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

.linkicon {
    display: inline-block;
    width: 1.5em;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .about .page_title {
        padding: 50px 20px;
    }
    .about_ttl01 {
        padding: 0;
    }
    .about_ttl02 {
        padding: 0;
    }
}

@media only screen and (max-width:768px) {
    .about .page_title {
        height: 40vw;
        padding: 6vw;
    }
    .about .page_title h1 {
        max-width: 100%;
        font-size: 6vw;
    }
    .about .page_title h1 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .about .page_title h1 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .about_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: 6vw auto 4vw;
    }
    .about_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .about .about_top {
        padding: 10vw 6vw 14vw;
    }
    .about .about_top .inner {
        max-width: 100%;
    }
    .about .about_top .box {
        display: block;
    }
    .about .about_top .img {
        width: 100%;
        text-align: center;
        margin-top: 6vw;
    }
    .about .about_top .caption {
        margin-top: 1em;
        font-size: 3.2vw;
        line-height: 2em;
    }
    .about .about_top p {
        width: 100%;
        font-size: 3.2vw;
        line-height: 2em;
    }
    .about .about_index {
        padding: 10vw 6vw 12vw;
        position: relative;
    }
    .about .about_index::after {
        height: 100%;
    }
    .about .about_index .list {
        max-width: 100%;
    }
    .about .about_index .list li {
        width: 49%;
        margin-bottom: 8vw;
    }
    .about .about_index .list li .image {
        width: 100%;
    }
    .about .about_index .list li .title {
        height: 12vw;
        padding: 2vw 8vw 2vw 4vw;
        font-size: 3.7vw;
        line-height: 1.5em;
    }
    .about .about_index .list li .title::after {
        right: 2vw;
        top: calc(50% - 3vw);
        width: 6vw;
        height: 6vw;
        background-size: 2vw auto;
    }
}


/* 経営理念 */

.philosophy #page {
    margin-bottom: 200px;
}

.philosophy_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.philosophy_ank li {
    width: 50%;
    border: 1px solid #1e82c8;
}

.philosophy_ank li:nth-child(2n+1) {
    border-right: none;
}

.philosophy_ank li a {
    display: block;
    text-align: center;
    padding: 1em;
    font-size: 16px;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
}

.philosophy_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.philosophy_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.philosophy_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.philosophy_sec01 {
    max-width: 1080px;
    margin: auto;
}

.philosophy_sec01#sec01 {
    margin: auto auto 100px;
}

.philosophy_sec01#sec02 {
    margin: auto auto 20px;
}

.philosophy_block01 .img {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.philosophy_block01 p {
    /*     text-align: center; */
    font-size: 16px;
    line-height: 2.5em;
    letter-spacing: 0.05em;
}

.philosophy_block01 .img p {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 35%;
    width: 50%;
    font-size: 18px;
}

.philosophy_block01 .img p strong {
    font-size: 18px;
    font-weight: 500;
    /*     color: #1e82c8; */
}

.philosophy_block02 {
    display: block;
}

.philosophy_block02 .box {
    width: 100%;
}

.philosophy_block02 .box h3 {
    margin: 30px auto;
}

.philosophy_block02 .box h4 {
    margin: auto auto 20px;
    font-size: 18px;
    font-weight: 500;
    color: #1e82c8;
}

.philosophy_block02 .box h4 span {
    font-size: 14px;
    font-weight: 500;
    color: #1e82c8;
    vertical-align: middle;
}

.philosophy_block02 .box p {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 80px;
}

.philosophy_block02 .box ol {
    margin: 20px 20px auto;
    /*     display: flex;
    justify-content: flex-start;
    flex-wrap: wrap; */
}

.philosophy_block02 .box ol li {
    /*     width: 50%; */
    list-style: decimal;
    font-size: 18px;
    font-weight: 500;
    color: #1e82c8;
    margin: auto 0 1em;
}

.philosophy_block02 .box ol li:nth-child(2n+1) {
    /*     width: 40%; */
}

.philosophy_block02 h3.fl {
    float: left;
    margin: 30px 20px 0 0;
}

.philosophy_block02 h4.fl {
    float: left;
    margin: 20px 0;
}

.philosophy_block02 .clear {
    display: block;
    clear: both;
}

.philosophy_block02 .img {
    width: 100%;
    text-align: center;
    margin: 80px auto;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .philosophy_ttl01 {
        padding: 0;
    }
    .philosophy_ttl02 {
        padding: 0;
    }
    .philosophy_ank {
        padding: 0 20px;
    }
    .philosophy_sec01 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .philosophy #page {
        margin-bottom: 20vw;
    }
    .philosophy_ank {
        margin: 10vw 6vw;
        display: block;
    }
    .philosophy_ank li {
        width: 100%;
    }
    .philosophy_ank li:nth-child(2n+1) {
        border-right: 1px solid #1e82c8;
        border-bottom: none;
    }
    .philosophy_ank li a {
        font-size: 3.6vw;
        padding: .5em 0;
    }
    .philosophy_ank li a::after {
        right: 4vw;
        top: calc(50% - 1vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .philosophy_sec01 {
        max-width: 100%;
    }
    .philosophy_sec01#sec01 {
        margin: auto 6vw 14vw;
    }
    .philosophy_sec01#sec02 {
        margin: auto 6vw 20vw;
    }
    .philosophy_block01 .img {
        margin-bottom: 18vw;
    }
    .philosophy_block01 p {
        font-size: 3vw;
        line-height: 2em;
    }
    .philosophy_block01 .img p {
        position: absolute;
        z-index: 1;
        left: 0;
        top: 35%;
        width: 50%;
        font-size: 3vw;
        text-align: left;
    }
    .philosophy_block01 .img p strong {
        display: block;
        font-size: 3vw;
        text-align: right;
    }
    .philosophy_block02 {
        display: block;
    }
    .philosophy_block02 .box {
        width: 100%;
    }
    .philosophy_block02 .box h3 {
        margin: 4vw 0;
    }
    .philosophy_block02 .box h3.philosophy_title01 {
        width: 27vw;
    }
    .philosophy_block02 .box h3.philosophy_title02 {
        width: 21.2vw;
    }
    .philosophy_block02 .box h3.philosophy_title03 {
        width: 35.3vw;
    }
    .philosophy_block02 h3.fl {
        float: none;
        margin: 4vw 0;
    }
    .philosophy_block02 .box h4 {
        margin: auto auto 3vw;
        font-size: 3.6vw;
    }
    .philosophy_block02 h4.fl {
        float: none;
        margin: auto auto 3vw;
    }
    .philosophy_block02 .box h4 span {
        font-size: 3.2vw;
    }
    .philosophy_block02 .box p {
        font-size: 3.2vw;
        line-height: 2em;
        margin-bottom: 10vw;
    }
    .philosophy_block02 .box ol {
        margin: 3.2vw auto auto 3.2vw;
    }
    .philosophy_block02 .box ol li {
        font-size: 3.2vw;
    }
    .philosophy_block02 .box ol li:nth-child(2n+1) {
        width: 100%;
    }
    .philosophy_block02 .img {
        width: 100%;
        margin-top: 6vw;
    }
}


/* 会社概要 */

.outline #page {
    margin-bottom: 100px;
}

.outline_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.outline_ank li {
    width: 100%;
    border: 1px solid #1e82c8;
}

.outline_ank li:nth-child(1),
.outline_ank li:nth-child(2) {
    border-right: none;
}

.outline_ank li a {
    display: block;
    text-align: center;
    padding: 1em;
    font-size: 16px;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
}

.outline_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.outline_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.outline_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.outline_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
}

.outline_tbl01 table {
    width: 100%;
    border-collapse: collapse;
}

.outline_tbl01 table th {
    width: 30%;
    border: 1px solid #c9c9c9;
    padding: 2em;
    vertical-align: top;
    font-size: 14px;
    font-weight: 600;
    background: #e8f2f9;
    text-align: left;
}

.outline_tbl01 table td {
    width: 70%;
    border: 1px solid #c9c9c9;
    padding: 2em;
    vertical-align: top;
    font-size: 14px;
    text-align: left;
}

.outline_sec01 .about_ttl02 {
    margin-bottom: 10px;
}

.outline_block02 {
    padding: 20px;
    margin-bottom: 40px;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.outline_address h4 {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 600;
    margin-bottom: .5em;
}

.outline_address h4 a {
    display: inline-block;
    padding-right: 20px;
    text-decoration: none;
}

.outline_address h4 a::after {
    content: '';
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon06.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 10px;
}

.outline_address h4 a:hover {
    color: #1e82c8;
    text-decoration: none;
}

.outline_address h4 span {
    font-size: 80%;
}

.outline_address p {
    font-size: 14px;
    line-height: 2.2em;
}

.outline_address p.lead {
    line-height: 1.5em;
    margin-bottom: .5em;
}

.outline_address p a {
    color: #1e82c8;
}

.outline_block02 .map {
    width: 140px;
}

.outline_block02 .map a {
    display: block;
    font-size: 14px;
    color: #1e82c8;
    background-color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon05.svg);
    background-size: 14px auto;
    background-position: right 10px center;
    background-repeat: no-repeat;
    border: 1px solid #1e82c8;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    padding: 5px 20px 5px 10px;
}

.outline_block02 .map a:hover {
    color: #fff;
    background-color: #1e82c8;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon03.svg);
}

.outline_block02 .border {
    width: 100%;
    height: 1px;
    background: #c9c9c9;
    margin: 20px auto;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .outline_ank {
        padding: 0 20px;
    }
    .outline_sec01 {
        padding: 0 20px;
    }
    .outline_sec02 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .outline #page {
        margin-bottom: 14vw;
    }
    .outline_ank {
        max-width: 100%;
        margin: 10vw 6vw;
    }
    .outline_ank li {
        width: 100%;
    }
    .outline_ank li a {
        font-size: 3.2vw;
    }
    .outline_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .outline_sec01 {
        max-width: 100%;
        margin: 10vw 6vw 14vw;
    }
    .outline_sec02 {
        max-width: 100%;
        margin: 10vw 6vw auto;
    }
    .outline_tbl01 table,
    .outline_tbl01 table tbody,
    .outline_tbl01 table tr {
        width: 100%;
        display: block;
    }
    .outline_tbl01 table th {
        display: block;
        width: 100%;
        border: none;
        padding: 0.5em 1em;
        font-size: 3.2vw;
    }
    .outline_tbl01 table td {
        display: block;
        width: 100%;
        border: none;
        padding: 0.5em 1em 2em;
        font-size: 3.2vw;
    }
    .outline_sec01 .about_ttl02 {
        margin-bottom: 2vw;
    }
    .outline_block02 {
        padding: 6vw 3vw;
        margin-bottom: 6vw;
        display: block;
    }
    .outline_address h4 {
        font-size: 3.6vw;
    }
    .outline_address h4 a {
        display: inline-block;
        padding-right: 20px;
    }
    .outline_address h4 a::after {
        width: 3.6vw;
        height: 3.6vw;
        margin-left: 2vw;
    }
    .outline_address p {
        font-size: 3.2vw;
        line-height: 1.8em;
    }
    .outline_block02 .map {
        width: 60vw;
        margin: 4vw auto auto;
    }
    .outline_block02 .map a {
        font-size: 3vw;
        background-size: 3vw auto;
        background-position: right 2vw center;
        border-radius: 4px;
        padding: 1vw 3vw 1vw 2vw;
    }
    .outline_block02 .border {
        margin: 6vw auto;
    }
}


/* グループ体制 */

.group #page {
    margin-bottom: 100px;
}

.group_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.group_ank li {
    width: 100%;
    border: 1px solid #1e82c8;
}

.group_ank li:nth-child(1) {
    border-right: none;
}

.group_ank li a {
    display: block;
    text-align: center;
    padding: 1em;
    font-size: 16px;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
}

.group_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.group_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.group_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.group_map {
    position: relative;
    margin-top: 30px;
}

.group_map a {
    position: absolute;
    z-index: 1;
    display: block;
}

.group_map .link01 {
    left: 50%;
    top: 48%;
    width: 22%;
}

.group_map .link01-2 {
    left: 50%;
    top: 58.5%;
    width: 22%;
}

.group_map .link02 {
    left: 35%;
    top: 60%;
    width: 13.7%;
}

.group_map .link03 {
    left: 38%;
    top: 32%;
    width: 13.7%;
}

.group_map .link04 {
    left: 81%;
    top: 29%;
    width: 14.62%;
}

.group_map .link05 {
    left: 5%;
    top: 10%;
    width: 17.4%;
}

.group_map .link06 {
    left: 4.5%;
    top: 42%;
    width: 19.26%;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .group_ank {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .group #page {
        margin-bottom: 14vw;
    }
    .group_ank {
        max-width: 1000%;
        margin: 10vw 6vw;
    }
    .group_ank li {
        width: 100%;
    }
    .group_ank li a {
        font-size: 3.2vw;
    }
    .group_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .group_map {
        margin-top: 4vw;
    }
}


/*グループのあゆみ*/

.history_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
}

.history_ttl01 {
    font-size: 24px;
    color: #1e82c8;
    margin-bottom: 70px;
}

.history_head {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.history_head>div {
    width: 50%;
    padding: 1em;
    font-size: 18px;
    color: #fff;
    background: #1e82c8;
    text-align: center;
}

.history_head>div:last-child {
    background: #464646;
}

.history_block {
    position: relative;
    padding-bottom: 90px;
}

.history_block::before {
    content: '';
    display: block;
    width: 110px;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: calc(50% - 55px);
    background: #f8f8f8;
}

.history_accordion {
    width: 516px;
    margin: auto;
    background: #fff;
    border: 1px solid #1e82c8;
    font-size: 24px;
    font-weight: 500;
    color: #1e82c8;
    text-align: center;
    border-radius: 32px;
    padding: 5px;
    cursor: pointer;
    position: relative;
}

.history_accordion.open {
    background: #1e82c8;
    color: #fff;
}

.history_accordion::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
    position: absolute;
    z-index: 1;
    right: 30px;
    top: calc(50% - 7px);
}

.history_accordion.open::after {
    transform: rotate(-90deg);
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
}

.history_contents {
    padding-top: 90px;
    display: none;
}

.history_year {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.history_year:last-child {
    margin-bottom: auto;
}

.history_year .center {
    width: 11%;
    font-size: 24px;
    font-weight: 500;
    color: #464646;
    text-align: center;
}

.history_year .left {
    width: 44.5%;
    border-bottom: 1px solid #1e82c8;
    padding: 5px 30px;
    font-size: 14px;
    color: #1e82c8;
}

.history_year .right {
    width: 44.5%;
    border-bottom: 1px solid #464646;
    padding: 5px 30px;
    font-size: 14px;
    color: #464646;
}

.history_year .left:empty,
.history_year .right:empty {
    border: none;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .history_sec01 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .history_sec01 {
        max-width: 100%;
        margin: 10vw 6vw 0;
    }
    .history_ttl01 {
        font-size: 4vw;
        margin-bottom: 10vw;
    }
    .history_head {
        margin-bottom: 8vw;
    }
    .history_head>div {
        font-size: 3.6vw;
    }
    .history_block {
        padding-bottom: 12vw;
    }
    .history_block::before {
        width: 12%;
        left: calc(50% - 6%);
    }
    .history_accordion {
        width: 70vw;
        font-size: 4vw;
        border-radius: 6vw;
        padding: 1vw;
    }
    .history_accordion::after {
        width: 3vw;
        height: 3vw;
        right: 4vw;
        top: calc(50% - 1.5vw);
    }
    .history_contents {
        padding-top: 12vw;
    }
    .history_year {
        margin-bottom: 12vw;
    }
    .history_year .center {
        width: 10%;
        font-size: 3vw;
    }
    .history_year .left {
        width: 43.5%;
        padding: 1vw 2vw 1vw 0;
        font-size: 3vw;
        line-height: 1.5em;
    }
    .history_year .right {
        width: 43.5%;
        padding: 1vw 0 1vw 2vw;
        font-size: 3vw;
        line-height: 1.5em;
    }
}


/*技術*/

.technology #page {
    margin-bottom: 100px;
}

.technology .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/technology/page_header.png);
    background-size: cover;
    background-position: center;
}

.technology .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.technology .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.technology .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.technology_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: 60px auto 40px;
    position: relative;
}

.technology_ttl01::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.technology_ttl02 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    margin: auto auto 10px;
}

.technology_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.technology_ank li {
    width: 100%;
    border: 1px solid #1e82c8;
}

.technology_ank li:nth-child(1) {
    border-right: none;
}

.technology_ank li a {
    display: block;
    text-align: center;
    padding: 1em;
    font-size: 16px;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
}

.technology_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.technology_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.technology_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.technology_top {
    padding: 80px 20px 0;
}

.technology_top .inner {
    max-width: 1080px;
    margin: auto;
}

.technology .subPage_head {
    max-width: 1080px;
    margin: auto auto 70px;
}

.technology_block01 {
    max-width: 1080px;
    margin: 40px auto 70px;
    display: flex;
    justify-content: space-between;
}

.technology_block01 .img {
    width: 47.8%;
}

.technology_block01 .box {
    width: 47.8%;
}

.technology_block01 h2 {
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c9c9c9;
    position: relative;
}

.technology_block01 h2::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.technology_block01 p {
    font-size: 14px;
    margin-bottom: 30px;
}

.technology_block01 ul {
    font-size: 14px;
}

.technology_block01 li {
    font-size: 14px;
    line-height: 2.5em;
    list-style: disc;
    margin-left: 1em;
}

.technology_block01 li:first-child {
    list-style: none;
    margin-left: auto;
}

.technology_block01 .img .caption {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.technology_block01 .img .caption.click::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 28px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon04.svg);
    background-size: 24px auto;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    margin-left: 5px;
}

.technology_block01 .modal {
    cursor: pointer;
}

.technology_block01 .largeImage {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 200;
    display: none;
    justify-content: center;
    align-items: center;
}

.technology_block01 .largeImage .close {
    content: '';
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
    cursor: pointer;
}

.technology_block01 .largeImage .close::before {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: 50%;
    transform: rotate(45deg);
}

.technology_block01 .largeImage .close::after {
    content: '';
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform-origin: 50%;
    transform: rotate(-45deg);
}

.technology_block01 .largeImage.open {
    display: flex;
}

.technology_block01 .largeImage img {
    max-width: 80%;
    max-height: 80%;
}

.technology_block02 {
    max-width: 1080px;
    margin: 40px auto 70px;
}

.technology_block02 h2 {
    width: 100%;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #c9c9c9;
    position: relative;
}

.technology_block02 h2::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.technology_block02 p {
    font-size: 14px;
    margin-bottom: 30px;
}

.technology_block02 ul {
    font-size: 14px;
}

.technology_block02 li {
    font-size: 14px;
    line-height: 2.5em;
    list-style: disc;
    margin-left: 1em;
}

.technology_block02 .img {
    width: 80%;
}

.technology_block02 .box {
    width: 100%;
}

.technology_block02 li:first-child {
    list-style: none;
    margin-left: auto;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .technology .page_title {
        padding: 50px 20px;
    }
    .technology #page .subPage_head {
        padding: 0;
    }
    .technology_ttl01 {
        padding: 0;
    }
    .technology_ttl02 {
        padding: 0;
    }
    .technology_sec01 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .technology #page {
        margin-bottom: 14vw;
    }
    .technology .page_title {
        height: 40vw;
        padding: 6vw;
    }
    .technology .page_title h1 {
        max-width: 100%;
        font-size: 6vw;
    }
    .technology .page_title h1 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .technology .page_title h1 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .technology_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: 6vw 6vw 4vw;
    }
    .technology_ttl01::after {
        content: '';
        width: 60px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -2px;
        background: #1e82c8;
    }
    .technology_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .technology_ank {
        max-width: 100%;
        margin: 10vw 0;
    }
    .technology_ank li {
        width: 100%;
    }
    .technology_ank li a {
        font-size: 3.2vw;
    }
    .technology_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .technology_top {
        padding: 10vw 6vw 0;
    }
    .technology_top p {
        font-size: 3.6vw;
    }
    .technology #page .subPage_head {
        margin: auto auto 10vw;
    }
    .technology #page .subPage_head h1 {
        height: 20vw;
    }
    .technology_block01 {
        max-width: 100%;
        margin: 5vw 6vw 14vw;
        display: block;
    }
    .technology_block01 .img {
        width: 100%;
        margin-bottom: 4vw;
    }
    .technology_block01 .box {
        width: 100%;
    }
    .technology_block01 h2 {
        width: 100%;
        font-size: 4vw;
        margin-bottom: 3vw;
        padding-bottom: 1.5vw;
    }
    .technology_block01 h2::after {
        width: 8vw;
    }
    .technology_block01 p {
        font-size: 3vw;
        margin-bottom: 4vw;
    }
    .technology_block01 ul {
        font-size: 3vw;
    }
    .technology_block01 li {
        font-size: 3vw;
    }
    .technology_block01 .img .caption {
        font-size: 3vw;
        margin-top: 2vw;
    }
    .technology_block01 .img .caption.click::after {
        width: 4vw;
        height: 4vw;
        background-size: 4vw auto;
        margin-left: 1vw;
    }
    .technology_block01 .largeImage .close {
        width: 8vw;
        height: 8vw;
        right: 4vw;
        top: 4vw;
    }
}


/*サステナビリティ*/

.sustainability #page {
    margin-bottom: 0;
}

.sustainability .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/sustainability/page_header.png);
    background-size: cover;
    background-position: center;
}

.sustainability .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.sustainability .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.sustainability .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.sustainability_top {
    padding: 80px 20px 100px;
}

.sustainability_top .inner {
    max-width: 1080px;
    margin: auto;
}

.sustainability_top p {
    font-size: 14px;
    line-height: 2em;
    margin-bottom: 2em;
}

.sustainability_index {
    padding: 0 20px 120px;
    position: relative;
}

.sustainability_index::after {
    content: '';
    background: #e6eff3;
    width: 100%;
    height: 330px;
    position: absolute;
    z-index: 0;
    left: 0;
    bottom: 0;
}

.sustainability_index .list {
    max-width: 1080px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.sustainability_index .list li {
    width: 32.8%;
    background: #fff;
}

.sustainability_index .list li a {
    display: block;
    text-decoration: none;
}

.sustainability_index .list li a:hover {
    opacity: .7;
}

.sustainability_index .list li .image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
    height: 0;
}

.sustainability_index .list li .image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sustainability_index .list li .title {
    height: 60px;
    padding: 6px 50px 6px 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.sustainability_index .list li .title::after {
    content: '';
    display: block;
    position: absolute;
    right: 10px;
    top: calc(50% - 15px);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px auto;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #1e82c8;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .sustainability .page_title {
        padding: 50px 20px;
    }
    .sustainability .page_head {
        padding: 0 20px;
    }
    .sustainability .product_list {
        padding: 80px 20px;
    }
}

@media only screen and (max-width:768px) {
    .sustainability #page {
        margin-bottom: 20vw;
    }
    .sustainability .page_title {
        height: 40vw;
        padding: 6vw;
    }
    .sustainability .page_title h1 {
        max-width: 100%;
        font-size: 6vw;
    }
    .sustainability .page_title h1 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .sustainability .page_title h1 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .sustainability .sustainability_top {
        padding: 10vw 6vw 12vw;
    }
    .sustainability .sustainability_top .inner {
        max-width: 100%;
        margin: auto;
    }
    .sustainability .sustainability_top p {
        font-size: 3.2vw;
        line-height: 1.7em;
    }
    .sustainability .sustainability_index {
        padding: 10vw 6vw 12vw;
        position: relative;
    }
    .sustainability .sustainability_index::after {
        height: 100%;
    }
    .sustainability .sustainability_index .list {
        max-width: 100%;
        display: block;
    }
    .sustainability .sustainability_index .list li {
        width: 100%;
        margin-bottom: 8vw;
    }
    .sustainability .sustainability_index .list li .image {
        width: 100%;
    }
    .sustainability .sustainability_index .list li .title {
        height: 12vw;
        padding: 2vw 8vw 2vw 4vw;
        font-size: 4vw;
        line-height: 1.5em;
    }
    .sustainability .sustainability_index .list li .title::after {
        right: 2vw;
        top: calc(50% - 3vw);
        width: 6vw;
        height: 6vw;
        background-size: 2vw auto;
    }
}


/* サステナビリティ共通 */

.sustainability_readMore {
    position: relative;
    cursor: pointer;
    padding: 10px 30px;
}

.sustainability_readMore .icon {
    display: block;
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    width: 20px;
    height: 20px;
}

.sustainability_readMore .icon::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    background: #187fc3;
}

.sustainability_readMore .icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;
    width: 20px;
    height: 2px;
    transform: rotate(-90deg);
    background: #187fc3;
    transition: .5s;
}

.sustainability_readMore.open .icon::after {
    transform: rotate(0);
}

.sustainability_accordion_contents {
    position: relative;
    display: none;
}

@media only screen and (max-width:768px) {
    .sustainability_readMore {
        padding: 2vw 5vw;
    }
    .sustainability_readMore .icon {
        top: calc(50% - 1.8vw);
        width: 3.6vw;
        height: 3.6vw;
    }
    .sustainability_readMore .icon::before {
        width: 3.6vw;
    }
    .sustainability_readMore .icon::after {
        width: 3.6vw;
    }
}


/* 環境 */

.environment #page {
    margin-bottom: 100px;
}

.environment_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.environment_ank li {
    width: 50%;
    border: 1px solid #1e82c8;
    min-height: 2em;
}

.environment_ank li:nth-child(1),
.environment_ank li:nth-child(3) {
    border-right: none;
}

.environment_ank li:nth-child(1),
.environment_ank li:nth-child(2) {
    border-bottom: none;
}

.environment_ank li a {
    width: 100%;
    height: 3.5em;
    min-height: 2em;
    padding: 0.5em 1em;
    font-size: 16px;
    line-height: 1.2em;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.environment_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.environment_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.environment_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.environment_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 40px;
    position: relative;
}

.environment_ttl01::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.environment_ttl02 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    margin: auto auto 10px;
}

.environment_ttl03 {
    font-size: 16px;
    font-weight: 500;
    margin: auto auto 10px;
}

.environment_ttl03::before {
    content: '●';
    font-size: 10px;
    color: #1e82c8;
    margin-right: 0.5em;
}

.environment_ttl04 {
    color: #1e82c8;
    font-size: 18px;
    font-weight: 500;
    line-height: 50px;
    margin: 70px auto 20px;
    border: 1px solid #1e82c8;
}

.environment_ttl04 .num {
    width: 50px;
    color: #fff;
    font-size: 24px;
    line-height: 50px;
    display: inline-block;
    background: #1e82c8;
    text-align: center;
    margin-right: 20px;
}

.environment_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
    display: flex;
    justify-content: space-between;
}

.environment_sec01 .box {
    width: 63%;
}

.environment_sec01 .box p {
    font-size: 14px;
    line-height: 1.8em;
}

.environment_sec01 .img {
    width: 33.3%;
}

.environment_sec01 .img .caption {
    font-size: 14px;
    line-height: 1.5em;
    text-align: center;
    margin-top: 10px;
}

.environment_sec02 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #fff;
}

.environment_sec02 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto auto 30px;
}

.environment_sec02 p strong {
    display: block;
    color: #1e82c8;
    font-size: 14px;
    line-height: 2em;
    font-weight: 600;
}

.environment_sec03 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #e8f2f9;
}

.environment_sec03 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto auto 30px;
}

.environment_block01 {
    max-width: 1080px;
    margin: auto;
}

.environment_block02 {
    max-width: 1080px;
    margin: 50px auto auto;
    padding: 40px 30px;
    background: #f8f8f8;
    display: flex;
    justify-content: space-between;
}

.environment_block02 .inner {
    width: 50%;
    display: flex;
    justify-content: space-between;
}

.environment_block02 .inner .img {
    width: 24%;
}

.environment_block02 .inner .box {
    width: 76%;
    padding: 0 0 0 20px;
}

.environment_block02 .inner:first-child .box {
    padding: 0 30px 0 20px;
}

.environment_block02 .inner .box .environment_ttl03 {
    margin: 10px auto;
}

.environment_tbl01 {
    max-width: 960px;
    margin: 30px auto auto;
    padding-bottom: 40px;
}

.environment_tbl01 table {
    width: 100%;
    border-collapse: collapse;
}

.environment_tbl01 table th {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    background: #f8f8f8;
    text-align: left;
}

.environment_tbl01 table td {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: top;
    font-size: 14px;
    background: #fff;
    text-align: left;
}

.environment_tbl01 table td p {
    font-size: 14px;
    margin-top: 1.5em;
    margin-bottom: 0.3em;
}

.environment_tbl01 table td p:first-child {
    margin-top: auto;
}

.environment_tbl01 table thead th:nth-child(1) {
    width: 20%;
}

.environment_tbl01 table thead th:nth-child(2) {
    width: 40%;
}

.environment_tbl01 table thead th:nth-child(3) {
    width: 40%;
}

.environment_tbl02 {
    max-width: 960px;
    margin: 30px auto auto;
}

.environment_tbl02 table {
    width: 100%;
    border-collapse: collapse;
}

.environment_tbl02 table th {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    background: #e8f2f9;
    text-align: center;
}

.environment_tbl02 table td {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: middle;
    font-size: 14px;
    background: #fff;
    text-align: center;
}

.environment_tbl02 table .right {
    text-align: right;
}

.environment_tbl02 table .dot {
    border-right: 1px dashed #c9c9c9;
}

.environment_tbl02 table .dot+td {
    border-left: none;
}

.environment_tbl02 table td p {
    font-size: 14px;
    margin-top: 1.5em;
    margin-bottom: 0.3em;
}

.environment_tbl02 table td p:first-child {
    margin-top: auto;
}

.environment_tbl02 table thead th:nth-child(1) {
    width: 20%;
}

.environment_tbl02 table thead th:nth-child(2) {
    width: 40%;
}

.environment_tbl02 table thead th:nth-child(3) {
    width: 40%;
}

.environment_tbl02 .caution {
    text-align: right;
    font-size: 12px;
    margin-top: 1em;
}

.environment_tbl03 {
    max-width: 960px;
    margin: 30px auto auto;
}

.environment_tbl03 table {
    width: 100%;
    border-collapse: collapse;
}

.environment_tbl03 table th {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: middle;
    font-size: 14px;
    font-weight: 500;
    background: #e8f2f9;
    text-align: center;
}

.environment_tbl03 table td {
    width: 25%;
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: middle;
    font-size: 14px;
    background: #fff;
    text-align: center;
}

.environment_tbl03 table .right {
    text-align: right;
}

.environment_tbl04 {
    max-width: 960px;
    margin: 30px auto auto;
}

.environment_tbl04 table {
    width: 100%;
    border-collapse: collapse;
}

.environment_tbl04 table th {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    background: #e8f2f9;
    text-align: center;
    vertical-align: middle;
}

.environment_tbl04 table th:nth-child(1) {
    text-align: left;
}

.environment_tbl04 table td {
    border: 1px solid #c9c9c9;
    padding: 1em;
    vertical-align: top;
    font-size: 14px;
    background: #fff;
    text-align: center;
    vertical-align: middle;
}

.environment_tbl04 table .right {
    text-align: right;
}

.environment_tbl04 table .left {
    text-align: left;
}

.environment_tbl04 table td p {
    font-size: 14px;
    margin-top: 1.5em;
    margin-bottom: 0.3em;
}

.environment_tbl04 table td p:first-child {
    margin-top: auto;
}

.environment_tbl04 table thead th:nth-child(1) {
    width: 33%;
}

.environment_tbl04 table thead th:nth-child(2) {
    width: 17%;
}

.environment_tbl04 table thead th:nth-child(3) {
    width: 25%;
}

.environment_tbl04 table thead th:nth-child(4) {
    width: 25%;
}

.environment_link {
    max-width: 960px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}

.environment_link a:hover {
    opacity: .7;
}

.environment_img01 {
    text-align: center;
}

.environment_border01 {
    margin: 40px auto;
    border-bottom: 2px dashed #e6e6e6;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .environment_ank {
        padding: 0 20px;
    }
    .environment_ttl01 {
        padding: 10px 30px;
    }
    .environment_ttl02 {
        padding: 0;
    }
    .environment_ttl03 {
        padding: 0;
    }
    .environment_ttl04 {
        padding: 0;
    }
    .environment_sec01 {
        padding: 0 20px;
    }
    .environment_sec02 {
        padding: 80px 20px;
    }
    .environment_sec03 {
        padding: 80px 20px;
    }
}

@media only screen and (max-width:768px) {
    .environment #page {
        margin-bottom: 14vw;
    }
    .environment_ank {
        max-width: 100%;
        margin: 10vw 6vw;
        display: block;
    }
    .environment_ank li {
        width: 100%;
    }
    .environment_ank li:nth-child(1),
    .environment_ank li:nth-child(3) {
        border-right: 1px solid #1e82c8;
        border-bottom: none;
    }
    .environment_ank li a {
        font-size: 3.2vw;
    }
    .environment_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .environment_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto auto 4vw;
    }
    .environment_ttl01::after {
        content: '';
        width: 60px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -2px;
        background: #1e82c8;
    }
    .environment_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .environment_ttl03 {
        font-size: 3.6vw;
        margin: auto auto 2vw;
    }
    .environment_ttl03::before {
        font-size: 2.6vw;
    }
    .environment_ttl04 {
        font-size: 3.6vw;
        line-height: 6vw;
        margin: 10vw auto 3vw;
        position: relative;
        padding: 2vw 2vw 2vw 10vw;
    }
    .environment_ttl04 .num {
        width: 8vw;
        height: 100%;
        font-size: 3.6vw;
        line-height: 6vw;
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .environment_sec01 {
        max-width: 100%;
        margin: 5vw 6vw 14vw;
        display: block;
    }
    .environment_sec01 .box {
        width: 100%;
        margin-bottom: 4vw;
    }
    .environment_sec01 .box p {
        font-size: 3.2vw;
    }
    .environment_sec01 .img {
        width: 100%;
    }
    .environment_sec01 .img .caption {
        font-size: 3vw;
        margin-top: 2vw;
    }
    .environment_sec02 {
        max-width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .environment_sec02 p {
        font-size: 3.2vw;
        margin: auto auto 4vw;
    }
    .environment_sec02 p strong {
        font-size: 3.2vw;
    }
    .environment_sec03 {
        max-width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .environment_sec03 p {
        font-size: 3.2vw;
        margin: auto auto 4vw;
    }
    .environment_block01 {
        max-width: 100%;
        margin: auto 6vw;
    }
    .environment_block02 {
        max-width: 100%;
        margin: 6vw auto auto;
        padding: 4vw;
        display: block;
    }
    .environment_block02 .inner {
        width: 100%;
        padding: 3vw 0;
    }
    .environment_block02 .inner .img {
        width: 24%;
    }
    .environment_block02 .inner .box {
        width: 76%;
        padding: 0 0 0 3vw;
    }
    .environment_block02 .inner:first-child .box {
        padding: 0 0 0 3vw;
    }
    .environment_block02 .inner .box .environment_ttl03 {
        margin: auto;
    }
    .environment_block02 .inner .box p {
        font-size: 3vw;
        line-height: 1.6em;
        margin: auto;
    }
    .environment_tbl01 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .environment_tbl01 table {
        width: 180vw;
    }
    .environment_tbl01 table th {
        font-size: 3vw;
    }
    .environment_tbl01 table td {
        font-size: 3vw;
    }
    .environment_tbl01 table td p {
        font-size: 3vw;
    }
    .environment_tbl02 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .environment_tbl02 table {
        width: 180vw;
    }
    .environment_tbl02 table th {
        font-size: 3vw;
    }
    .environment_tbl02 table td {
        font-size: 3vw;
    }
    .environment_tbl02 table td p {
        font-size: 3vw;
    }
    .environment_tbl02 .caution {
        width: 180vw;
        text-align: left;
        font-size: 2.6vw;
    }
    .environment_tbl03 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .environment_tbl03 table {
        width: 180vw;
    }
    .environment_tbl03 table th {
        font-size: 3vw;
    }
    .environment_tbl03 table td {
        font-size: 3vw;
    }
    .environment_tbl04 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .environment_tbl04 table {
        width: 180vw;
    }
    .environment_tbl04 table th {
        font-size: 3vw;
    }
    .environment_tbl04 table td {
        font-size: 3vw;
    }
    .environment_link {
        max-width: 100%;
        margin: 6vw auto;
    }
    .environment_link li {
        margin: auto 1vw;
    }
    .environment_border01 {
        margin: 6vw auto;
    }
}


/* 社会 */

.social #page {
    margin-bottom: 100px;
}

.social_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.social_ank li {
    border: 1px solid #1e82c8;
}

.social_ank .col2 {
    width: 50%;
}

.social_ank .col3 {
    width: calc(100% / 3);
}

.social_ank li:nth-child(1),
.social_ank li:nth-child(2) {
    border-bottom: none;
}

.social_ank li:nth-child(1),
.social_ank li:nth-child(3),
.social_ank li:nth-child(4) {
    border-right: none;
}

.social_ank li a {
    width: 100%;
    height: 3.5em;
    min-height: 2em;
    padding: 0.5em 1em;
    font-size: 16px;
    line-height: 1.2em;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.social_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.social_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.social_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.social_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 40px;
    position: relative;
}

.social_ttl01::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.social_ttl02 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    margin: auto auto 10px;
}

.social_ttl03 {
    font-size: 16px;
    font-weight: 500;
    margin: auto auto 10px;
}

.social_ttl03::before {
    content: '●';
    font-size: 10px;
    color: #1e82c8;
    margin-right: 0.5em;
}

.social_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.social_sec01 .img {
    width: 100%;
    margin-bottom: 40px;
}

.social_sec01 p {
    font-size: 14px;
    line-height: 1.8em;
}

.social_sec02 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #fff;
}

.social_sec02 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto auto 30px;
}

.social_sec02 p a {
    color: #1e82c8;
    text-decoration: underline;
}

.social_sec03 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #e8f2f9;
}

.social_sec_inner {
    max-width: 1080px;
    margin: auto;
}

.social_border01 {
    margin: 40px auto;
    border-bottom: 2px dashed #e6e6e6;
}

.social_link01 {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 50px;
}

.social_link01 li {
    width: 516px;
    display: flex;
}

.social_link01 li a {
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 14px;
    line-height: 1.7em;
    background: #e8f2f9;
    color: #1e82c8;
    padding: 1.5em;
    border: 1px solid #1e82c8;
    text-decoration: none;
    position: relative;
}

.social_link01 li a::after {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: calc(50% - 9px);
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon01.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;
}

.social_link01 li a:hover {
    background: #fff;
}

.social_list01 li {
    padding-left: 26px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon07.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left center;
}

.social_list02 li {
    padding-left: 26px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/icon08.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: left center;
}

.social_block01 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social_block01 .box {
    width: 50%;
}

.social_block01 .img {
    width: 50%;
}

.social_block02 {
    display: flex;
    justify-content: space-between;
}

.social_block02 .box {
    width: 63%;
}

.social_block02 .img {
    width: 33.4%;
}

.social_block02 .img .caption {
    font-size: 14px;
    text-align: center;
    margin: 10px auto auto;
}

.social_img01 {
    margin: 40px auto 50px;
    text-align: center;
}

.social_tbl01 {
    max-width: 960px;
    margin: 30px auto auto;
}

.social_tbl01 table {
    width: 100%;
    border-collapse: collapse;
}

.social_tbl01 table th {
    width: 25%;
    border: 1px solid #c9c9c9;
    padding: 1em 2em;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    background: #f8f8f8;
    text-align: left;
}

.social_tbl01 table td {
    border: 1px solid #c9c9c9;
    padding: 1em 2em;
    vertical-align: top;
    font-size: 14px;
    background: #fff;
    text-align: left;
}

.social_tbl02 {
    max-width: 100%;
    margin: auto;
}

.social_tbl02 table {
    width: 100%;
    border-collapse: collapse;
}

.social_tbl02 table th {
    width: 25%;
    border: 1px solid #c9c9c9;
    padding: 1em 2em;
    vertical-align: top;
    font-size: 14px;
    font-weight: 500;
    background: #e8f2f9;
    text-align: left;
}

.social_tbl02 table td {
    border: 1px solid #c9c9c9;
    padding: 1em 2em;
    vertical-align: top;
    font-size: 14px;
    background: #fff;
    text-align: left;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .social_ank {
        padding: 0 20px;
    }
    .social_ttl01 {
        padding: 10px 30px;
    }
    .social_ttl02 {
        padding: 0;
    }
    .social_ttl03 {
        padding: 0;
    }
    .social_sec01 {
        padding: 0 20px;
    }
    .social_sec02 {
        padding: 80px 20px;
    }
    .social_sec03 {
        padding: 80px 20px;
    }
    .social_sec_inner {
        max-width: 1080px;
        margin: auto;
    }
}

@media only screen and (max-width:768px) {
    .social #page {
        margin-bottom: 14vw;
    }
    .social_ank {
        max-width: 100%;
        margin: 10vw 6vw;
        display: block;
    }
    .social_ank li {
        width: 100%;
    }
    .social_ank .col2 {
        width: 100%;
    }
    .social_ank .col3 {
        width: 100%;
    }
    .social_ank li:nth-child(1),
    .social_ank li:nth-child(2) {
        border-right: 1px solid #1e82c8;
        border-bottom: none;
    }
    .social_ank li:nth-child(1),
    .social_ank li:nth-child(2),
    .social_ank li:nth-child(3),
    .social_ank li:nth-child(4) {
        border-bottom: none;
    }
    .social_ank li:nth-child(1),
    .social_ank li:nth-child(3),
    .social_ank li:nth-child(4) {
        border-right: 1px solid #1e82c8;
    }
    .social_ank li a {
        font-size: 3.2vw;
    }
    .social_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .social_border01 {
        margin: 6vw auto;
    }
    .social_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto auto 4vw;
    }
    .social_ttl01::after {
        content: '';
        width: 60px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -2px;
        background: #1e82c8;
    }
    .social_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .social_ttl03 {
        font-size: 3.6vw;
        margin: auto auto 2vw;
    }
    .social_ttl03::before {
        font-size: 2.6vw;
    }
    .social_sec01 {
        max-width: 100%;
        margin: 10vw 6vw auto;
        display: block;
    }
    .social_sec01 .img {
        width: 100%;
        margin-bottom: 5vw;
    }
    .social_sec01 p {
        font-size: 3.2vw;
        line-height: 1.8em;
    }
    .social_sec02 {
        max-width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .social_sec02 p {
        font-size: 3.2vw;
        margin: auto auto 4vw;
    }
    .social_sec03 {
        width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .social_sec_inner {
        max-width: 100%;
        margin: auto 6vw;
    }
    .social_border01 {
        margin: 6vw auto;
    }
    .social_link01 {
        display: block;
        margin-bottom: 8vw;
    }
    .social_link01 li {
        width: 100%;
        display: flex;
    }
    .social_link01 li a {
        display: block;
        padding: 1em;
        font-size: 3.2vw;
    }
    .social_link01 li:first-child a {
        border-bottom: none;
    }
    .social_link01 li:last-child a {
        border-bottom: 1px solid #1e82c8;
    }
    .social_link01 li a::after {
        width: 3.2vw;
        height: 3.2vw;
        right: 3.2vw;
        top: calc(50% - 1.6vw);
        background-size: 3.2vw;
    }
    .social_list01 li {
        font-size: 3.2vw;
        padding-left: 5vw;
        background-size: 4vw;
    }
    .social_list02 li {
        font-size: 3.2vw;
        padding-left: 5vw;
        background-size: 4vw;
        background-position: left top 0.4em;
    }
    .social_block01 {
        display: block;
    }
    .social_block01 .box {
        width: 100%;
        margin: 4vw auto;
    }
    .social_block01 .img {
        width: 100%;
    }
    .social_block02 {
        display: block;
    }
    .social_block02 .box {
        width: 100%;
        margin: 4vw auto;
    }
    .social_block02 .img {
        width: 100%;
    }
    .social_block02 .img .caption {
        font-size: 3.2vw;
        margin: 2vw auto auto;
    }
    .social_img01 {
        margin: 5vw auto 6vw;
    }
    .social_tbl01 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .social_tbl01 table {
        width: 180vw;
    }
    .social_tbl01 table th {
        width: 25%;
        font-size: 3vw;
    }
    .social_tbl01 table td {
        font-size: 3vw;
    }
    .social_tbl02 {
        width: calc(100% + 12vw);
        margin: 4vw -6vw auto -6vw;
        overflow: auto;
        padding: 0 6vw
    }
    .social_tbl02 table {
        width: 180vw;
    }
    .social_tbl02 table th {
        font-size: 3vw;
    }
    .social_tbl02 table td {
        font-size: 3vw;
    }
}


/* ガバナンス */

.governance #page {
    margin-bottom: 100px;
}

.governance_ank {
    max-width: 1080px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}

.governance_ank li {
    width: calc(100% / 3);
    border: 1px solid #1e82c8;
}

.governance_ank li:nth-child(1),
.governance_ank li:nth-child(2) {
    border-right: none;
}

.governance_ank li a {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 0.5em 1em;
    font-size: 16px;
    line-height: 1.2em;
    color: #1e82c8;
    text-decoration: none;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.governance_ank li a::after {
    content: '';
    display: block;
    position: absolute;
    right: 30px;
    top: calc(50% - 6px);
    width: 8px;
    height: 8px;
    border-right: 1px solid #1e82c8;
    border-bottom: 1px solid #1e82c8;
    transform: rotate(45deg);
}

.governance_ank li a:hover {
    background: #1e82c8;
    color: #fff;
}

.governance_ank li a:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.governance_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 40px;
    position: relative;
}

.governance_ttl01::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.governance_ttl02 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    margin: auto auto 10px;
}

.governance_ttl03 {
    font-size: 16px;
    font-weight: 500;
    margin: auto auto 10px;
}

.governance_ttl03::before {
    content: '●';
    font-size: 10px;
    color: #1e82c8;
    margin-right: 0.5em;
}

.governance_txt01 {
    font-size: 18px !important;
    font-weight: 500;
    text-align: left;
    color: #1e82c8;
    background: #e8f2f9;
    padding: 0.2em;
    margin: 1em auto 2em !important;
}

.governance_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.governance_sec01 .img {
    width: 100%;
    margin-bottom: 40px;
}

.governance_sec01 p {
    font-size: 14px;
    line-height: 1.8em;
}

.governance_sec02 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.governance_sec02 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto auto 30px;
}

.governance_sec02 p:last-child {
    margin: auto;
}

.governance_sec02 p a {
    font-size: 14px;
    line-height: 1.8em;
    color: #1e82c8;
    text-decoration: underline;
}

.governance_sec03 {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    background: #e8f2f9;
    position: relative;
}

.governance_sec03 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto auto 50px;
}

.governance_sec03 p:last-child {
    margin: auto;
    padding-bottom: 40px;
}

.governance_block01 {
    max-width: 1080px;
    margin: auto;
}

.governance_block02 {
    max-width: 1080px;
    padding: 40px 30px;
    background: #f8f8f8;
    border: 1px solid #e6e6e6;
}

.governance_border01 {
    margin: 40px auto;
    border-bottom: 2px dashed #e6e6e6;
}

.governance_border02 {
    margin: 60px auto;
    border-bottom: 1px solid #e6e6e6;
}

.governance_img01 {
    text-align: center;
    width: 80%;
    margin: 40px auto;
}

.governance_accordion_ttl {
    width: 300px;
    position: absolute;
    z-index: 3;
    left: calc(50% - 150px);
    bottom: 100px;
    background: #fff;
    font-size: 18px;
    color: #1e82c8;
    text-align: center;
    border: 1px solid #1e82c8;
    padding: 0.2em;
    cursor: pointer;
}

.governance_accordion_ttl.open {
    display: none;
}

.governance_accordion_ttl::after {
    content: '＋';
    display: block;
    position: absolute;
    z-index: 1;
    right: 20px;
    top: calc(50% - 10px);
    font-size: 18px;
    line-height: 20px;
}

.governance_accordion {
    position: relative;
    max-height: 400px;
    overflow: hidden;
    transition: 1s;
}

.governance_accordion.open {
    max-height: 4000px;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .governance_ank {
        padding: 0 20px;
    }
    .governance_ttl01 {
        padding: 10px 30px;
    }
    .governance_ttl02 {
        padding: 0;
    }
    .governance_ttl03 {
        padding: 0;
    }
    .governance_sec01 {
        padding: 0 20px;
    }
    .governance_sec02 {
        padding: 80px 20px;
    }
    .governance_sec03 {
        padding: 80px 20px;
    }
}

@media only screen and (max-width:768px) {
    .governance #page {
        margin-bottom: 14vw;
    }
    .governance_ank {
        max-width: 100%;
        margin: 10vw 6vw;
        display: block;
    }
    .governance_ank li {
        width: 100%;
    }
    .governance_ank li:nth-child(1),
    .governance_ank li:nth-child(2) {
        border-right: 1px solid #1e82c8;
        border-bottom: none;
    }
    .governance_ank li a {
        padding: 1em;
        font-size: 3.2vw;
    }
    .governance_ank li a::after {
        right: 2vw;
        top: calc(50% - 1.2vw);
        width: 1.6vw;
        height: 1.6vw;
    }
    .governance_border01 {
        margin: 6vw auto;
    }
    .governance_border02 {
        margin: 8vw auto;
    }
    .governance_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto auto 4vw;
    }
    .governance_ttl01::after {
        content: '';
        width: 60px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -2px;
        background: #1e82c8;
    }
    .governance_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .governance_ttl03 {
        font-size: 3.6vw;
        margin: auto auto 2vw;
    }
    .governance_txt01 {
        font-size: 3.6vw !important;
        padding: 0.5em 1em;
        margin: 1em auto 2em !important;
    }
    .governance_sec01 {
        max-width: 100%;
        margin: 10vw 6vw auto;
        display: block;
    }
    .governance_sec01 .img {
        width: 100%;
        margin-bottom: 5vw;
    }
    .governance_sec01 p {
        font-size: 3.2vw;
        line-height: 1.8em;
    }
    .governance_sec02 {
        max-width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .governance_sec02 p {
        font-size: 3.2vw;
        margin: auto auto 6vw;
    }
    .governance_sec02 p strong {
        font-size: 3.2vw;
    }
    .governance_sec03 {
        max-width: 100%;
        padding: 10vw 0;
        margin: 0 auto;
    }
    .governance_sec03 p {
        font-size: 3.2vw;
        margin: auto auto 4vw;
    }
    .governance_sec03 p:last-child {
        padding-bottom: 5vw;
    }
    .governance_block01 {
        max-width: 100%;
        margin: auto 6vw;
    }
    .governance_block02 {
        max-width: 100%;
        padding: 6vw 5vw;
    }
    .governance_img01 {
        width: 100%;
        margin: 6vw auto;
    }
    .governance_accordion_ttl {
        width: 40vw;
        left: calc(50% - 20vw);
        bottom: 10vw;
        font-size: 3.6vw;
    }
    .governance_accordion_ttl::after {
        right: 4vw;
        top: calc(50% - 2vw);
        font-size: 3.6vw;
        line-height: 4vw;
    }
    .governance_accordion {
        max-height: 40vh;
    }
    .governance_accordion::after {
        height: 30vh;
    }
    .governance_accordion.open {
        max-height: 1200vw;
    }
}


/* プライバシーポリシー */

.privacy #page {
    margin-bottom: 100px;
}

.privacy_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 40px;
    position: relative;
}

.privacy_ttl01::after {
    content: '';
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -2px;
    background: #1e82c8;
}

.privacy_ttl02 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    margin: auto auto 10px;
}

.privacy_sec01 {
    font-size: 14px;
    max-width: 1080px;
    margin: 70px auto;
}

.privacy_sec01 p {
    line-height: 1.8em;
    margin: auto;
}

.privacy_sec01 ol {
    line-height: 1.8em;
    margin: auto;
    padding-top: 1em;
}

.privacy_sec01 ol.num-single li {
    padding-left: 1.3em;
    padding-bottom: 0.5em;
    text-indent: -1.3em;
}

.privacy_sec01 ol.num-double li {
    padding-left: 1.8em;
    padding-bottom: 0.5em;
    text-indent: -2.2em;
}
.privacy_sec01 .indent-1em{
    margin-left: 1em;
}


@media only screen and (min-width:769px)and (max-width:1280px) {
    .privacy_ttl01 {
        padding: 0;
    }
    .privacy_ttl02 {
        padding: 0;
    }
    .privacy_sec01 {
        padding: 0 20px;
    }
}

@media only screen and (max-width:768px) {
    .privacy #page {
        margin-bottom: 14vw;
    }
    .privacy_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto auto 4vw;
    }
    .privacy_ttl01::after {
        content: '';
        width: 60px;
        height: 2px;
        position: absolute;
        left: 0;
        bottom: -2px;
        background: #1e82c8;
    }
    .privacy_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
    }
    .privacy_sec01 {
        font-size: 3.2vw;
        max-width: 100%;
        margin: 10vw 6vw auto;
        display: block;
    }
    .privacy_sec01 p {
        line-height: 1.8em;
        margin: auto auto 6vw;
    }
}


/*FAQ*/


/* プライバシーポリシー */

.faq #page {
    margin-bottom: 100px;
}

.faq_ttl01 {
    font-size: 24px;
    font-weight: 600;
    color: #1e82c8;
    padding-bottom: 10px;
    border-bottom: 1px solid #c9c9c9;
    max-width: 1080px;
    margin: auto auto 40px;
    position: relative;
}

.faq_ttl02 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: #1e82c8;
    max-width: 1080px;
    padding: 1em;
    margin: auto;
    border: 1px solid #1e82c8;
    border-bottom: none;
    position: relative;
    cursor: pointer;
}

.faq_ttl02 .icon {
    width: 30px;
    height: 30px;
    background: #1e82c8;
    position: absolute;
    right: 20px;
    top: calc(50% - 15px);
    border-radius: 50%;
}

.faq_ttl02 .icon::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: calc(50% - 1px);
    left: 7px;
    width: 16px;
    height: 2px;
    background: #fff;
}

.faq_ttl02 .icon::after {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: calc(50% - 1px);
    left: 7px;
    width: 16px;
    height: 2px;
    transform: rotate(-90deg);
    background: #fff;
    transition: .5s;
}

.faq_ttl02.open .icon::after {
    transform: rotate(0);
}

.faq_ttl02.last {
    border: 1px solid #1e82c8;
}

.faq_ttl02+.sustainability_accordion_contents {
    border-top: 1px solid #1e82c8;
    padding: 20px 0 40px;
}

.faq_ttl02.last+.sustainability_accordion_contents {
    border-top: none;
}

.faq_sec01 {
    max-width: 1080px;
    margin: 70px auto auto;
}

.faq_sec01 p {
    font-size: 14px;
    line-height: 1.8em;
    margin: auto;
}

.faq_sec02 {
    max-width: 1080px;
    margin: 70px auto auto;
    padding: 40px 20px;
    text-align: center;
    background: #f8f8f8;
}

.faq_sec02 p {
    color: #187fc3;
    font-size: 14px;
    line-height: 1.8em;
    margin: auto;
}

.faq_sec02 .btn {
    width: 360px;
    margin: 20px auto 40px;
}

.faq_sec02 .btn:last-child {
    margin: 20px auto auto;
}

.faq_sec02 .btn a {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 1em;
    padding: 1.5em;
    text-decoration: none;
    background-color: #187fc3;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
    background-size: 12px;
    background-position: right 20px center;
    background-repeat: no-repeat;
    border-radius: 4em;
}

.faq_sec02 .btn a:hover {
    opacity: .7;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .faq_ttl01 {
        padding: 0;
    }
    .faq_sec01 {
        padding: 0 20px;
    }
    .faq_sec02 {
        padding: 40px 20px;
    }
}

@media only screen and (max-width:768px) {
    .faq #page {
        margin-bottom: 14vw;
    }
    .faq_ttl01 {
        font-size: 4vw;
        padding-bottom: 2vw;
        max-width: 100%;
        margin: auto auto 4vw;
    }
    .faq_ttl02 {
        font-size: 3.6vw;
        max-width: 100%;
        padding: 1em 3em 1em 1em;
    }
    .faq_ttl02 .icon {
        width: 5vw;
        height: 5vw;
        right: 1em;
        top: calc(50% - 2.5vw);
    }
    .faq_ttl02 .icon::before {
        left: 1vw;
        height: 1px;
        width: 3vw;
        top: 50%;
    }
    .faq_ttl02 .icon::after {
        left: 1vw;
        height: 1px;
        width: 3vw;
        top: 50%;
    }
    .faq_ttl02+.sustainability_accordion_contents {
        padding: 3vw 0 6vw;
    }
    .faq_sec01 {
        max-width: 100%;
        margin: 10vw 6vw auto;
        display: block;
    }
    .faq_sec01 p {
        font-size: 3.2vw;
        line-height: 1.8em;
        margin: auto auto 6vw;
    }
    .faq_sec02 {
        max-width: 100%;
        margin: 10vw 6vw auto;
        display: block;
        padding: 6vw 3vw;
    }
    .faq_sec02 p {
        font-size: 3vw;
    }
    .faq_sec02 .btn {
        width: 70vw;
        margin: 3vw auto 6vw;
    }
    .faq_sec02 .btn:last-child {
        margin: 3vw auto auto;
    }
    .faq_sec02 .btn a {
        font-size: 3.6vw;
        background-size: 3vw;
        background-position: right 4vw center;
        border-radius: 4em;
    }
}


/*お知らせ*/

.news .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.news .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.news .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.news .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.news #page .inner {
    max-width: 1080px;
    padding: 100px 0;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.news #page .news_list {
    width: 100%;
    border-top: 1px solid #c9c9c9;
}

.news #page .news_list li {
    border-bottom: 1px solid #c9c9c9;
}

.news #page .news_list li a {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    position: relative;
    text-decoration: none;
    padding: 20px 70px 20px 0;
}

.news #page .news_list li a::after {
    content: '';
    position: absolute;
    z-index: 1;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: 30px;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 16px auto;
}

.news #page .news_list li a:hover {
    opacity: 0.7;
}

.news #page .news_list li a .date {
    font-size: 14px;
    width: 100px;
}

.news #page .news_list li a .category {
    font-size: 14px;
    color: #187fc3;
}

.news #page .news_list li a .title {
    width: 100%;
    font-size: 14px;
    line-height: 1.5em;
}

.news #page .single_inner {
    max-width: 1080px;
    padding: 100px 0;
    margin: auto;
}

.news #page .single_title {
    color: #187fc3;
    font-size: 24px;
    border-bottom: 1px solid #c9c9c9;
    padding: .3em 0 .6em;
    margin-bottom: 2em;
}

.news #page .single_head {
    display: flex;
    justify-content: flex-start;
}

.news #page .single_head .date {
    font-size: 14px;
    margin-right: 2em;
}

.news #page .single_head .category {
    font-size: 14px;
    color: #187fc3;
}

.news #page .single_btn {
    width: 780px;
    margin: auto;
    padding: 100px 0 200px;
    display: flex;
    justify-content: space-between;
}

.news #page .single_btn .btn01 {
    width: 360px;
}

.news #page .single_btn .btn02 {
    width: 360px;
}

.news #page .single_btn .btn01 a,
.news #page .single_btn .btn02 a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    padding: 1em;
    background-position: right 1em center;
    background-repeat: no-repeat;
    background-size: 12px;
    line-height: 2em;
    border-radius: 4em;
}

.news #page .single_btn .btn01 a:hover,
.news #page .single_btn .btn02 a:hover {
    opacity: .7;
}

.news #page .single_btn .btn01 a {
    border: 1px solid #187fc3;
    color: #187fc3;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow03.svg);
}

.news #page .single_btn .btn02 a {
    border: 1px solid #187fc3;
    background-color: #187fc3;
    color: #fff;
    background-image: url(/wp/wp-content/themes/seibu/assets/img/common/arrow02.svg);
}

.pagenavi {
    width: 100%;
}

.wp-pagenavi {
    clear: both;
    text-align: center;
    width: 100%;
    margin: auto;
    padding: 100px 0 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
    text-decoration: none;
    border: 1px solid #187fc3 !important;
    padding: 5px 8px !important;
    font-size: 16px;
    margin: 2px 3px !important;
    color: #187fc3;
    border-radius: 0;
}

.wp-pagenavi .pages {
    display: none;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #187fc3;
}

.wp-pagenavi span.current {
    font-weight: bold;
    color: #fff;
    background: #187fc3;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .news #page .inner {
        padding: 100px 20px;
    }
    .news #page .single_inner {
        padding: 100px 20px;
    }
}

@media only screen and (max-width:768px) {
    .news #page {
        padding: 0 0 24vw;
        position: relative;
    }
    .news #page .inner {
        max-width: 100%;
        margin: 8vw auto;
        padding: 0 6vw;
        display: block;
    }
    .news #page .box {
        width: 100%;
    }
    .news #page .box .top_btn03 {
        position: absolute;
        right: 6vw;
        bottom: 14vw;
    }
    .news #page .news_list {
        width: 100%;
    }
    .news #page .news_list li a {
        padding: 3vw 10vw 3vw 0;
    }
    .news #page .news_list li a::after {
        width: 3.2vw;
        height: 3.2vw;
        top: calc(50% - 1.6vw);
        right: 2vw;
        background-size: 3.2vw auto;
    }
    .news #page .news_list li a .date {
        font-size: 3vw;
        width: 20vw;
    }
    .news #page .news_list li a .category {
        font-size: 3vw;
    }
    .news #page .news_list li a .title {
        font-size: 3.6vw;
    }
    .news #page .single_inner {
        padding: 14vw 6vw;
        max-width: 100%;
        margin: auto;
    }
    .news #page .single_title {
        font-size: 4vw;
    }
    .news #page .single_head {
        display: flex;
        justify-content: flex-start;
    }
    .news #page .single_head .date {
        font-size: 2.6vw;
    }
    .news #page .single_head .category {
        font-size: 2.6vw;
    }
    .news #page .single_btn {
        width: 100%;
        margin: auto;
        padding: 10vw 0;
        display: block;
    }
    .news #page .single_btn .btn01 {
        width: 70vw;
        margin: auto;
    }
    .news #page .single_btn .btn02 {
        width: 70vw;
        margin: 6vw auto auto;
    }
    .news #page .single_btn .btn01 a,
    .news #page .single_btn .btn02 a {
        font-size: 3.6vw;
        background-size: 3vw;
    }
}


/*サイトマップ*/

.sitemap .page_title {
    width: 100%;
    height: 320px;
    padding: 50px 0;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.sitemap .page_title h1 {
    max-width: 1080px;
    margin: auto;
    position: relative;
    color: #1e82c8;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 600;
    letter-spacing: .05em;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    flex-direction: column;
    height: 100%;
}

.sitemap .page_title h1 .en {
    display: block;
    color: #aaaaaa;
    font-size: 14px;
    position: relative;
    padding-left: 10px;
}

.sitemap .page_title h1 .en::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #1e82c8;
    position: absolute;
    left: 0;
    top: calc(50% - 3px);
    border-radius: 50%;
}

.sitemap #page .inner {
    max-width: 1080px;
    padding: 50px 0;
    margin: auto;
}

.sitemap_ttl01 {
    border-bottom: 1px solid #c9c9c9;
    padding: 20px 0;
    margin: 60px auto 30px;
}

.sitemap_ttl01 a {
    color: #187fc3;
    font-size: 24px;
    line-height: 1.5em;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-right: 30px;
}

.sitemap_ttl01 a::before {
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background-color: #187fc3;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: calc(50% - 11px);
}

.sitemap_ttl01 a::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    right: 9px;
    top: calc(50% - 3px);
}

.sitemap_ttl01 a:hover {
    opacity: .7;
}

.sitemap_ttl02 {
    color: #187fc3;
    font-size: 16px;
    line-height: 1.5em;
    margin: 20px 3%;
}

.sitemap_list01 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.sitemap_list01 li {
    width: 24%;
    margin: 5px 0 5px 1%;
}

.sitemap_list01 li a {
    color: #187fc3;
    font-size: 18px;
    line-height: 1.5em;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.sitemap_list01 li a::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-right: 1px solid #187fc3;
    border-bottom: 1px solid #187fc3;
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
}

.sitemap_list01 li a:hover {
    opacity: .7;
}

.sitemap_list02 {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px 5%;
}

.sitemap_list02 li {
    width: 31%;
    margin: 5px 2% 5px 0;
}

.sitemap_list02 li a {
    color: #333333;
    font-size: 16px;
    line-height: 1.5em;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-right: 20px;
}

.sitemap_list02 li a::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    margin-left: 10px;
    border-right: 1px solid #187fc3;
    border-bottom: 1px solid #187fc3;
    transform: rotate(-45deg);
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
}

.sitemap_list02 li a:hover {
    opacity: .7;
}

@media only screen and (min-width:769px)and (max-width:1280px) {
    .sitemap #page .inner {
        padding: 50px 20px;
    }
}

@media only screen and (max-width:768px) {
    .sitemap .page_title {
        height: 40vw;
        padding: 6vw;
    }
    .sitemap .page_title h1 {
        max-width: 100%;
        font-size: 6vw;
    }
    .sitemap .page_title h1 .en {
        font-size: 3.2vw;
        padding-left: 2.4vw;
    }
    .sitemap .page_title h1 .en::before {
        width: 1.4vw;
        height: 1.4vw;
        top: calc(50% - 0.7vw);
    }
    .sitemap #page .inner {
        max-width: 100%;
        padding: 8vw 6vw;
    }
    .sitemap_ttl01 {
        padding: 3vw 0;
        margin: 8vw auto 4vw;
    }
    .sitemap_ttl01 a {
        font-size: 4vw;
        padding-right: 6vw;
    }
    .sitemap_ttl01 a::before {
        width: 4vw;
        height: 4vw;
        top: calc(50% - 2vw);
    }
    .sitemap_ttl01 a::after {
        width: 1vw;
        height: 1vw;
        right: 1.6vw;
        top: calc(50% - 0.5vw);
    }
    .sitemap_ttl02 {
        font-size: 3.6vw;
        margin: 3vw 8%;
    }
    .sitemap_list01 li {
        width: 98%;
        margin: 1vw 0 1vw 4%;
    }
    .sitemap_list01 li a {
        font-size: 3.6vw;
        padding-right: 5vw;
    }
    .sitemap_list01 li a::after {
        width: 1vw;
        height: 1vw;
        right: 1.6vw;
        top: calc(50% - 0.5vw);
    }
    .sitemap_list02 {
        margin: 3vw auto 3vw 12%;
    }
    .sitemap_list02 li {
        width: 100%;
        margin: 1vw 0;
    }
    .sitemap_list02 li a {
        font-size: 3.2vw;
        padding-right: 5vw;
    }
    .sitemap_list02 li a::after {
        width: 1vw;
        height: 1vw;
        right: 1.6vw;
        top: calc(50% - 0.5vw);
    }
}