@charset "UTF-8";
/* ##### フォント font ##### */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&display=swap");

.noto {
    font-family: "Noto Sans JP", sans-serif;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

/* ##### フォント font ここまで ##### */
/* base.css上書き */
html {
    font-family: "游ゴシック", "Yu Gothic", YuGothic, "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    color: #000;
    letter-spacing: 1px;
    background-color: white;
}

.wrapper {
    min-width: 375px;
}

@media (max-width: 1024px) {
    html {
        font-size: 14px;
    }
}

/* ##### 共通使用 common ##### */
.mobile-only,
.sp-only {
    display: none;
}

.pc-br {
    display: block;
}

.tb-br {
    display: none;
}

.sp-br {
    display: none;
}

.nowrap-text-onlypc {
    white-space: nowrap;
}

.all-white * {
    color: white;
}

.logo {
    max-width: 250px;
}

.logo img {
    width: 100%;
    height: auto;
}

.logo a {
    display: block;
}

.logo-flash {
    position: relative;
}

.logo-flash::after {
    content: "";
    width: 200px;
    height: 200px;
    display: block;
    margin: auto;
    border-radius: 100%;
    background: radial-gradient(ellipse at center, #30b8d0 0%, rgba(35, 135, 183, 0) 50%, rgba(21, 86, 157, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#0015569d', GradientType=1);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: -1;
}

.filter {
    position: relative;
}

.filter.-blue::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(21, 86, 157, 0.7);
    position: absolute;
    top: 0;
    left: 0;
}

.gradient-top-left {
    background: #30b8d0;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
}

.gradient-top-right {
    background: #30b8d0;
    background: radial-gradient(ellipse at top right, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
}

.gradient-left {
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.bgc-gray {
    background-color: #f0f4f4;
}

.bgc-half-02 {
    background: -webkit-gradient(linear, left bottom, left top, from(#30b8d0), color-stop(60%, #30b8d0), color-stop(60%, transparent), to(transparent));
    background: linear-gradient(0deg, #30b8d0 0%, #30b8d0 60%, transparent 60%, transparent 100%);
}

.bgc-01 {
    background-color: #15569d;
}

.bgc-02 {
    background-color: #0b7eb3;
}

.border-gray-1 {
    border: 1px solid #bfbfbf;
}

.border-gray-2 {
    border: 2px solid #bfbfbf;
}

.border-white-1 {
    border: 1px solid white;
}

.border-white-2 {
    border: 1px solid white;
}

.border-01 {
    border-bottom: 1px solid #15569d;
}

.border-blue-3 {
    border: 3px solid #15569d;
}

.map::after {
    padding-top: 70%;
}

@media (max-width: 1024px) {
    .active .header-logo,
    .active main,
    .active footer {
        -webkit-filter: blur(3px);
        filter: blur(3px);
    }

    .pc-only {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .pc-br {
        display: none;
    }

    .tb-br {
        display: block;
    }

    .nowrap-text-onlypc {
        white-space: inherit;
    }

    .logo {
        max-width: 200px;
    }
}

@media (max-width: 599px) {
    .sp-only {
        display: block;
    }

    .tb-br {
        display: none;
    }

    .sp-br {
        display: block;
    }
}

/* ##### 共通使用 common ここまで ##### */
/* ##### パーツ parts ##### */
.tab-01 {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.tab-01 .tab-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px 20px;
    font-weight: bold;
    color: #15569d;
}

.tab-01 .tab-btn.on {
    border-bottom: 6px solid #15569d;
}

.tab-01 .tab-btn-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: -3px;
}

.tab-01 .tab-box {
    width: 100%;
    height: 100%;
    padding: 20px 40px;
}

.tab-01 .tab-box-wrap {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-top: 1px solid #15569d;
}

.tab-02 .tab-btn {
    width: 25%;
    min-width: 140px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
    font-weight: bold;
    text-align: center;
    background-color: #eee;
}

.tab-02 .tab-btn+.tab-btn {
    border-left: 1px solid #bfbfbf;
}

.tab-02 .tab-btn.on {
    color: white;
    background-color: #15569d;
}

.tab-02 .tab-btn-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-iframe,
.tab-02 .tab-box .list-cc-01 {
    padding: 30px 20px;
}

.tab-02 .tab-box .list-cc-01 {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.list-iframe dd a,
.tab-02 .tab-box .list-cc-01 dd a {
    font-weight: bold;
}

.list-iframe dd a {
    display: block;
}

.list-iframe dd a .up-reader1 * {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-iframe+.list-iframe,
.tab-02 .tab-box .list-cc-01+.list-cc-01 {
    border-top: 1px solid #bfbfbf;
}

.tab-02 .tab-box-wrap {
    border-top: 1px solid #15569d;
    background-color: white;
}

.tab-btn:hover {
    cursor: pointer;
}

.box-link {
    width: 100%;
    max-width: 1500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2vw;
}

.box-link-item {
    width: 25%;
}

.box-link-item:nth-of-type(odd) {
    margin-top: -10em;
}

.box-link-item:nth-of-type(even) {
    margin-top: 10em;
}

.box-link-item .square-inner {
    height: 100%;
}

.box-link-item .square-inner a {
    width: 100%;
    height: 100%;
    display: block;
    overflow: hidden;
    padding: 5px;
    border: 2px solid white;
    border-radius: 30px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.box-link-item .square-inner a .back-reverse {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.box-link-item.inclusion-logo .square-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.box-white {
    padding: 50px;
    background-color: white;
}

.box-white.-with-title {
    padding-top: 70px;
    position: relative;
}

.box-white.-with-title [class^="title"] {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding-right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.box-white.-upper-space {
    margin-top: calc(65px / 2);
}

.box-white.-small {
    padding: 10px;
}

.box-blue {
    padding: 30px 50px;
    font-weight: bold;
    font-size: 20px;
    color: white;
    text-align: center;
    background-color: #15569d;
}

.box-transparent {
    padding: 20px 30px;
    border-radius: 10px;
}

.box-transparent.-white {
    border: 1px solid white;
}

.box-transparent.-black {
    border: 1px solid #000;
}

.box-news-01 {
    margin-top: 1.5em;
    padding: 1.5em;
    border-top: 1px solid #15569d;
    background-color: white;
}

.box-sitemap {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 5em;
    -moz-column-gap: 5em;
    column-gap: 5em;
}

.box-sitemap-item {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.box-sitemap-item+.box-sitemap-item {
    margin-top: 50px;
}

.box-sitemap-item-inner {
    padding: 0 15px 10px;
}

.box-sitemap-title {
    margin-bottom: 20px;
}

.box-sitemap-title a,
.box-sitemap-title .box-sitemap-title-inner {
    display: block;
    padding: 10px 3em 10px 2em;
    font-weight: bold;
    font-size: 20px;
    color: white;
    letter-spacing: 0.1em;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
    position: relative;
}

.box-sitemap-title a::before,
.box-sitemap-title .box-sitemap-title-inner::before {
    content: "";
    width: 10px;
    height: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #f2ba13;
    position: absolute;
    top: 1em;
    left: 0.8em;
    z-index: 1;
}

/* .box-sitemap-title a::after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1em;
    right: 1em;
} */

.box-sitemap-subtitle {
    margin-bottom: 10px;
    padding: 0 10px 0 15px;
    font-weight: 500;
    font-size: 24px;
    color: #15569d;
    position: relative;
}

.box-sitemap-subtitle::before {
    content: "";
    width: 5px;
    height: 100%;
    display: inline-block;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
    position: absolute;
    top: 2px;
    left: 0;
}

.box-sitemap-list li+li {
    margin-top: 10px;
}

.box-sitemap-list li a {
    display: inline-block;
    padding-left: 2em;
    position: relative;
}

.box-sitemap-list li a::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    border-top: 2px solid #15569d;
    border-right: 2px solid #15569d;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0.5em;
    left: 0.5em;
}

.box-dial {
    background-color: white;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.name-tag {
    padding: 7px 20px;
    font-size: 12px;
    color: white;
    background-color: #244485;
}

.name-tag span {
    display: block;
    font-weight: 400;
}

.tag {
    min-width: 100px;
    display: inline-block;
    padding: 5px 20px;
    font-size: 14px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.tag-line {
    display: inline-block;
    font-weight: 500;
    color: white;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.tag-line-inner {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 40px;
    position: relative;
}

.tag-line-inner::before {
    content: "";
    width: 60px;
    height: 2px;
    display: inline-block;
    background-color: #f2ba13;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 0;
}

.tag-line.-small {
    font-weight: 300;
    font-size: 14px;
}

.tag-line.-left {
    text-align: left;
}

.catalog {
    display: block;
    position: relative;
    z-index: 2;
}

.catalog::after {
    content: "";
    display: block;
    padding-top: 136.7521%;
}

.catalog img {
    width: 100%;
    height: 100% !important;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
    font-family: "object-fit: cover; object-position: 50% 50%;";
    position: absolute;
    top: 0;
    left: 0;
}

.catalog-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.catalog-wrap .catalog {
    width: 55%;
}

.catalog-wrap .catalog+.catalog {
    margin-top: 10%;
    margin-left: -15%;
    z-index: 1;
}

.catalog-item {
    position: relative;
}

.catalog-item .catalog-img {
    width: 85%;
    background-color: white;
}

.catalog-item .catalog-img img {
    width: 100%;
}

.catalog-item .tag-line {
    min-width: 45%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.catalog-item a {
    display: block;
}

.catalog-square {
    width: 100%;
    background-color: white;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    position: relative;
}

.catalog-square::before {
    content: "";
    display: block;
    padding-top: 115%;
}

.catalog-square-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.president {
    background-color: white;
}

.president .position {
    padding: 10px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.sign {
    padding: 0 10px;
    text-align: center;
}

.sign img {
    max-width: 100%;
}

.movie {
    width: 100%;
    position: relative;
}

.movie::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.movie video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.movie.-middle {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.youtube {
    width: 100%;
    position: relative;
}

.youtube::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.youtube iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.map-wrap {
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10em;
    padding-left: 2em;
    padding-right: 2em;
    position: relative;
}

.map-wrap .map-img {
    position: relative;
}

.map-wrap .map-img-inner {
    width: 100%;
    height: 100%;
}

.map-wrap .map-img img {
    width: 100%;
}

.map-wrap .map-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.map-wrap .map-search-box {
    width: 500px;
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 12px;
    z-index: 1;
}

.map-wrap .map-search dt {
    width: 40%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 10px;
    background-color: #15569d;
}

.map-wrap .map-search dd {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 10px;
    background-color: white;
}

.map-wrap .map-search dd select {
    width: 100%;
    height: 100%;
    border: 1px solid #bfbfbf;
}

.map-wrap .map-link-item {
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 1;
}

.map-wrap .map-link-item a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    color: white;
    border: 2px solid #dddfdf;
    border-radius: 10px;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: relative;
}

.map-wrap .map-link-item a .text {
    display: inline-block;
    padding-bottom: 1em;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.map-wrap .map-link-item a .text::after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent white;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    bottom: 0;
    left: 50%;
}

.map-wrap .map-link-item.link-01 {
    top: 70px;
    right: 280px;
}

.map-wrap .map-link-item.link-02 {
    top: 410px;
    right: 120px;
}

.map-wrap .map-link-item.link-03 {
    top: 520px;
    right: 440px;
}

.map-wrap .map-link-item.link-04 {
    top: 570px;
    right: 590px;
}

.map-wrap .map-link-item.link-05 {
    top: 670px;
    right: 190px;
}

.map-wrap .map-link-item.link-06 {
    bottom: 160px;
    right: 360px;
}

.map-wrap .map-link-item.link-07 {
    bottom: 90px;
    left: 340px;
}

.map-wrap .map-link-item.link-08 {
    bottom: 300px;
    left: 90px;
}

.map-wrap .map-link-item.link-09 {
    bottom: 50px;
    left: 190px;
}

.map-wrap .map-link-item.link-10 {
    bottom: 90px;
    left: 0;
}

.map-wrap.-wo {
    max-width: 1200px;
    padding: 2em;
}

.map-wrap.-wo .map-img {
    border-radius: 100%;
    background-color: white;
}

.map-wrap.-wo .map-link-item {
    width: 200px;
    height: 50px;
}

.map-wrap.-wo .map-link-item a {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.map-wrap.-wo .map-link-item a .text {
    padding-bottom: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}

.map-wrap.-wo .map-link-item a .text::after {
    margin-left: 1em;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
}

.map-wrap.-wo .map-link-item.link-01 {
    top: 310px;
    right: 230px;
}

.map-wrap.-wo .map-link-item.link-02 {
    top: 160px;
    left: 350px;
}

.map-wrap.-wo .map-link-item.link-03 {
    top: auto;
    bottom: 200px;
    left: 320px;
}

.map-wrap.-wo .map-link-item.link-04 {
    top: auto;
    bottom: 140px;
    left: 320px;
}

.map-wrap.-wo .map-link-item.link-05 {
    top: auto;
    bottom: 340px;
    left: 40px;
}

.slider01 .uk-slideshow::after {
    padding-top: 46%;
}

.table-drum {
    background-color: white;
}

.table-drum tr+tr {
    border-top: 1px solid #d1d1d1;
}

.table-drum tr th,
.table-drum tr td {
    padding: 20px 15px;
    text-align: center;
}

.table-drum tr th:first-of-type,
.table-drum tr td:first-of-type {
    width: 20%;
    text-align: left;
}

.table-drum tr th:nth-of-type(n+2),
.table-drum tr td:nth-of-type(n+2) {
    width: 40%;
}

.table-drum tr th {
    color: white;
    background-color: #15569d;
}

.table-drum tr th+th {
    border-left: 1px solid white;
}

.table-drum tr td+td {
    border-left: 1px solid #d1d1d1;
}

.table-drum.-wide tr th,
.table-drum.-wide tr td {
    width: calc(100% / 6);
    font-size: 14px;
}

.table-drum.-wide tr td[rowspan] {
    border-right: 1px solid #d1d1d1;
}

.table-01 {
    background-color: white;
}

.table-01 tr+tr {
    border-top: 1px solid #d1d1d1;
}

.table-01 tr+tr:nth-of-type(even) {
    background-color: #eee;
}

.table-01 tr th,
.table-01 tr td {
    padding: 20px 15px;
    text-align: center;
}

.table-01 tr th:first-of-type,
.table-01 tr td:first-of-type {
    width: 60%;
    text-align: left;
}

.table-01 tr th:nth-of-type(n+2),
.table-01 tr td:nth-of-type(n+2) {
    width: 20%;
}

.table-01 tr th {
    color: white;
    text-align: center;
    background-color: #15569d;
}

.table-01 tr th+th {
    border-left: 1px solid white;
}

.table-01 tr td+td {
    border-left: 1px solid #d1d1d1;
}

.calendar {
    position: relative;
    z-index: 1;
}

.calendar-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: white;
    background-color: #15569d;
}

.calendar-element {
    width: calc(100% / 3);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 10px;
    font-size: 14px;
    text-align: center;
}

.calendar-element+.calendar-element {
    border-left: 1px solid white;
}

.calendar-head {
    width: 100%;
    border-bottom: 1px solid white;
    border-left: 1px solid white;
}

.schedule {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 120px;
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    border: 1px solid #000;
    border-radius: 15px;
    background-color: white;
    position: relative;
}

.schedule::before {
    content: "";
    width: 6px;
    height: 6px;
    display: inline-block;
    margin: auto;
    border-radius: 100%;
    background-color: #000;
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
}

.schedule::after {
    content: "";
    width: 1px;
    height: 80px;
    display: inline-block;
    margin: auto;
    background-color: #000;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
}

.schedule.-left {
    margin-left: 0;
    margin-right: auto;
    -webkit-transform: translate(-25%, 0);
    transform: translate(-25%, 0);
}

.schedule.-right {
    margin-left: auto;
    margin-right: 0;
    -webkit-transform: translate(25%, 0);
    transform: translate(25%, 0);
}

.cal-ir {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.cal-ir-item {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cal-ir-item.upper .schedule {
    margin-bottom: 80px;
}

.cal-ir-item.downer .schedule {
    margin-top: 80px;
}

.cal-ir-item.downer .schedule::before {
    top: -3px;
    bottom: auto;
}

.cal-ir-item.downer .schedule::after {
    top: -80px;
    bottom: auto;
}

.cal-ir-element {
    width: 25%;
}

.text-blue {
    font-weight: bold;
    color: #15569d;
}

.policy-box {
    margin: 50px 0;
    padding: 5vw 8vw;
    border-top: 5px solid #15569d;
    background-color: white;
    -webkit-box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
}

.signature {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    align-items: flex-end;
    -ms-flex-align: end;
    margin-top: 50px;
    margin-left: auto;
}

.signature-company {
    margin: 10px 0 0;
    font-size: 150%;
}

.download-icon {
    position: relative;
}

.download-icon::before {
    content: "";
    display: block;
    padding-top: 100%;
}

.download-icon-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid #000;
    background-color: white;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.iframe-wrap,
.iframe-wrap iframe {
    width: 100%;
}

.tab .iframe-wrap iframe {
    min-height: 1000px;
}

@media (max-width: 1200px) {
    .map-wrap.-wo .map-link-item.link-01 {
        top: calc(310 / 1200 * 100vw);
        right: calc(230 / 1200 * 100vw);
    }

    .map-wrap.-wo .map-link-item.link-02 {
        top: calc(160 / 1200 * 100vw);
        left: calc(350 / 1200 * 100vw);
    }

    .map-wrap.-wo .map-link-item.link-03 {
        top: auto;
        bottom: calc(200 / 1200 * 100vw);
        left: calc(320 / 1200 * 100vw);
    }

    .map-wrap.-wo .map-link-item.link-04 {
        top: auto;
        bottom: calc(140 / 1200 * 100vw);
        left: calc(320 / 1200 * 100vw);
    }

    .map-wrap.-wo .map-link-item.link-05 {
        top: auto;
        bottom: calc(340 / 1200 * 100vw);
        left: calc(40 / 1200 * 100vw);
    }
}

@media (max-width: 1024px) {
    .tab-01 .tab-btn-list {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .tab-01 .tab-box {
        padding: 20px;
    }

    .tab-02 .tab-box .list-cc-01 {
        padding: 20px 15px;
    }

    .box-link {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0 3vw;
    }

    .box-link-item {
        width: 20%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        margin: 10% 4%;
    }

    .box-link-item.inclusion-logo {
        width: 100%;
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        margin-bottom: 50px;
    }

    .box-link-item.inclusion-logo::before {
        display: none;
    }

    .box-link-item.inclusion-logo .square-inner {
        position: static;
    }

    .box-link-item:nth-of-type(odd),
    .box-link-item:nth-of-type(even) {
        margin-top: 0;
    }

    .box-link-item:nth-of-type(5n) {
        margin-left: auto;
    }

    .box-link-item:nth-of-type(n+5) {
        margin-top: -8vw;
    }

    .box-link-item .square-inner a {
        border-radius: 15px;
    }

    .box-white {
        padding: 30px;
    }

    .box-blue {
        padding: 24px 40px;
        font-size: 16px;
    }

    .box-news-01 {
        padding: 1.5em 1em;
    }

    .box-sitemap {
        -webkit-column-gap: 1em;
        -moz-column-gap: 1em;
        column-gap: 1em;
    }

    .box-sitemap-title a,
    .box-sitemap-title .box-sitemap-title-inner {
        padding: 5px 2em;
        font-size: 18px;
    }

    .box-sitemap-title a::before,
    .box-sitemap-title .box-sitemap-title-inner::before {
        top: 0.8em;
        left: 0.5em;
    }

    .box-sitemap-title a::after,
    .box-sitemap-title .box-sitemap-title-inner::after {
        top: 0.7em;
        right: 0.9em;
    }

    .box-sitemap-subtitle {
        font-size: 18px;
    }

    .map-wrap {
        padding: 12px;
    }

    .map-wrap .map-search-box {
        width: calc(500 / 1000 * 100vw);
        margin-bottom: 5vw;
        position: static;
    }

    .map-wrap .map-search dt {
        width: 40%;
        padding: 5px;
    }

    .map-wrap .map-search dd {
        padding: 5px;
    }

    .map-wrap .map-link-item {
        width: calc(80 / 1000 * 100vw);
        height: calc(80 / 1000 * 100vw);
    }

    .map-wrap .map-link-item a {
        padding: calc(10 / 1000 * 100vw);
        font-size: calc(16 / 1000 * 100vw);
    }

    .map-wrap .map-link-item a .text::after {
        border-width: 0.5vw 0 0.5vw 0.87vw;
    }

    .map-wrap .map-link-item.link-01 {
        top: calc(70 / 1000 * 100vw);
        right: calc(280 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-02 {
        top: calc(410 / 1000 * 100vw);
        right: calc(120 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-03 {
        top: calc(520 / 1000 * 100vw);
        right: calc(440 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-04 {
        top: calc(570 / 1000 * 100vw);
        right: calc(590 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-05 {
        top: calc(670 / 1000 * 100vw);
        right: calc(190 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-06 {
        bottom: calc(160 / 1000 * 100vw);
        right: calc(360 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-07 {
        bottom: calc(90 / 1000 * 100vw);
        left: calc(340 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-08 {
        bottom: calc(300 / 1000 * 100vw);
        left: calc(90 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-09 {
        bottom: calc(50 / 1000 * 100vw);
        left: calc(190 / 1000 * 100vw);
    }

    .map-wrap .map-link-item.link-10 {
        bottom: calc(90 / 1000 * 100vw);
        left: 0;
    }

    .map-wrap.-wo .map-link-item {
        width: calc(200 / 1024 * 100vw);
        height: calc(50 / 1024 * 100vw);
    }

    .map-wrap.-wo .map-link-item a {
        padding: calc(10 / 1024 * 100vw);
        font-size: calc(16 / 1024 * 100vw);
    }

    .movie.-middle {
        width: 90%;
    }

    .table-drum tr th,
    .table-drum tr td {
        padding: 15px 10px;
        font-size: 12px;
    }

    .table-01 tr th,
    .table-01 tr td {
        padding: 15px 10px;
        font-size: 12px;
    }

    .calendar-element {
        padding: 10px 5px;
        font-size: 12px;
    }

    .schedule::after {
        height: 50px;
    }

    .cal-ir-item.upper .schedule {
        margin-bottom: 50px;
    }

    .cal-ir-item.upper .schedule::after {
        bottom: -50px;
    }

    .cal-ir-item.downer .schedule {
        margin-top: 40px;
    }

    .cal-ir-item.downer .schedule::after {
        top: -50px;
    }

    .policy-box {
        padding: 8vw;
    }
}

@media (max-width: 599px) {
    .tab-01 .tab-btn {
        padding: 15px 20px;
    }

    .tab-02 .tab-btn-list {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }

    .list-iframe,
    .tab-02 .tab-box .list-cc-01 {
        padding: 20px 5px;
    }

    .box-link {
        padding: 0 5vw;
    }

    .box-link-item {
        width: 30%;
        margin: 10% 5%;
    }

    .box-link-item:nth-of-type(3) {
        margin-left: auto;
    }

    .box-link-item:nth-of-type(5) {
        margin-left: 6%;
    }

    .box-link-item:nth-of-type(n+3) {
        margin-top: -12%;
    }

    .box-link-item.inclusion-logo {
        margin-top: 0;
    }

    .box-white {
        padding: 30px 15px;
    }

    .box-sitemap {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -webkit-column-gap: 0;
        -moz-column-gap: 0;
        column-gap: 0;
    }

    .box-sitemap-item+.box-sitemap-item {
        margin-top: 30px;
    }

    .box-sitemap-title {
        margin-bottom: 15px;
    }

    .box-sitemap-list li a::after {
        width: 8px;
        height: 8px;
    }

    .map-wrap {
        padding: 10px;
    }

    .map-wrap .map-search-box {
        width: 100%;
    }

    .map-wrap .map-search dt {
        width: 40%;
        padding: 5px;
    }

    .map-wrap .map-search dd {
        padding: 5px;
    }

    .map-wrap .map-link-item {
        width: 55px;
        height: 55px;
    }

    .map-wrap .map-link-item a {
        padding: calc(5 / 579 * 100vw);
        font-size: 12px;
    }

    .map-wrap .map-link-item a .text {
        padding-bottom: 1.5em;
    }

    .map-wrap.-wo .map-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .map-wrap.-wo .map-link-item {
        width: 48%;
        height: 35px;
        margin: 1%;
        position: static;
    }

    .map-wrap.-wo .map-link-item a {
        font-size: 14px;
    }

    .map-wrap.-wo .map-link-item a .text::after {
        border-width: 5px 0 5px 8.7px;
    }

    .movie.-middle {
        width: 100%;
    }

    .table-drum tr th,
    .table-drum tr td {
        padding: 10px 5px;
        font-size: 10px;
    }

    .table-drum tr th:first-of-type,
    .table-drum tr td:first-of-type {
        width: 30%;
    }

    .table-drum tr th:nth-of-type(n+2),
    .table-drum tr td:nth-of-type(n+2) {
        width: 35%;
    }

    .table-drum.-wide tr th,
    .table-drum.-wide tr td {
        width: 15%;
    }

    .calendar-item {
        height: 100%;
        display: -ms-grid;
        display: grid;

        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: 1fr 0px 1fr 0px 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-template-areas: "calendar-head item01"
        "calendar-head item02"
        "calendar-head item03";
    }

    .calendar-element {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px 10px;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .calendar-element .ver {
        -ms-writing-mode: lr-tb;
        -webkit-writing-mode: horizontal-tb;
        writing-mode: horizontal-tb;
    }

    .calendar-head {
        border-bottom: none;

        -ms-grid-row: 1;
        -ms-grid-row-span: 3;
        -ms-grid-column: 1;
        grid-area: calendar-head;
    }

    .calendar.item01 {
        -ms-grid-row: 1;
        -ms-grid-column: 2;
        grid-area: item01;
    }

    .calendar.item02 {
        -ms-grid-row: 2;
        -ms-grid-column: 2;
        grid-area: item02;
    }

    .calendar .item02 {
        border-top: 1px solid white;
        border-bottom: 1px solid white;
    }

    .calendar.item03 {
        -ms-grid-row: 3;
        -ms-grid-column: 2;
        grid-area: item03;
    }

    .calendar .cal-ir-element {
        border-bottom: 1px solid white;
    }

    .schedule {
        min-width: auto;
        max-width: auto;
        padding: 25px 10px;
        font-size: 14px;
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    .schedule::before {
        top: 0;
        bottom: 0;
        left: auto;
        right: -3px;
    }

    .schedule::after {
        width: 150px;
        height: 1px;
    }

    .schedule.-right {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    .cal-ir {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .cal-ir-item {
        width: calc(100% / 3);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cal-ir-item.upper .schedule {
        margin-bottom: 0;
        margin-left: 50px;
        margin-right: 50px;
    }

    .cal-ir-item.upper .schedule::after {
        top: 0;
        bottom: 0;
        left: auto;
        right: -150px;
    }

    .cal-ir-item.downer .schedule::before {
        top: 0;
        bottom: 0;
        left: -3px;
        right: auto;
    }

    .cal-ir-item.downer .schedule::after {
        top: 0;
        bottom: 0;
        left: -150px;
        right: auto;
    }

    .cal-ir-item.calendar {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .cal-ir-element {
        width: 100%;
        height: 25%;
    }

    .cal-ir-element.right-to-bottom {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        align-items: flex-end;
        -ms-flex-align: end;
    }
}

/* ##### パーツ parts ここまで ##### */
/* ##### モーダルウィンドウ modal window ##### */
.up-ofi-16-9::after {
    padding-top: 56.25%;
}

.modal-movie-thumb {
    position: relative;
}

.modal-movie-thumb::before {
    content: "";
    width: 50px;
    height: 50px;
    margin: auto;
    background-image: url(/upload/tenant_1/8599b0b77074c173b5f049b09d43f661.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.modaal-container {
    border-radius: 5px;
}

.modaal-content-container {
    max-height: 90vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.modal-window {
    display: none;
}

.modal-title {
    margin-bottom: 0.5em;
    margin-left: 5px;
    font-weight: 500;
    font-size: 22px;
}

.modal-model {
    margin: 0.5em 0 0.5em 5px;
    font-weight: 500;
    font-size: 14px;
}

.modal-list+.modal-model {
    margin-top: 50px;
}

.modal-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 3px;
}

.modal-list li+li {
    margin-top: 1em;
}

.modal-list-name {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    font-weight: 500;
}

.modal-btn-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal-btn {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-btn+.modal-btn {
    margin-left: 0.5em;
}

.modal-btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 15px;
    font-weight: bold;
    color: white;
    line-height: 1.2;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
}

.modal-btn.no-link a {
    background: #999;
    pointer-events: none;
}

@media (max-width: 599px) {
    .modaal-content-container {
        max-height: 80vh;
        padding: 30px 15px;
    }

    .modal-list li {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .modal-list-name,
    .modal-btn-wrap {
        width: 100%;
    }

    .modal-btn-wrap {
        margin-top: 0.5em;
    }
}

/* ##### モーダルウィンドウ modal window ここまで ##### */
/* #### slickスライダー slick slider ##### */
.slide01 {
    margin-top: 80px;
    position: relative;
}

.slide01-item {
    padding: 10px;
}

.slide01-item a {
    position: relative;
}

.slide01-item a .name-tag {
    max-width: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.slide01 .slick-arrow {
    width: 30px;
    height: 30px;
    text-indent: -999rem;
    border: none;
    background-image: url(/import/tenant_1/www.unipla.sakura.ne.jp/yuken/images/common/icon/icon-arrow.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: transparent;
    -webkit-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    position: absolute;
    top: 50%;
}

.slide01 .slick-prev {
    left: 0;
}

.slide01 .slick-next {
    -webkit-transform: translate(100%, -50%) scale(-1, 1);
    transform: translate(100%, -50%) scale(-1, 1);
    right: 0;
}

.slide01 .slick-dots {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 20px 0;
}

.slide01 .slick-dots li {
    margin: 7px;
}

.slide01 .slick-dots li button {
    width: 14px;
    height: 14px;
    text-indent: -999rem;
    border: none;
    border-radius: 100%;
    background-color: transparent;
    background-color: #c4d5e9;
}

.slide01 .slick-dots li.slick-active button {
    background-color: #15569d;
}

@media (max-width: 1024px) {
    .slide01-wrap {
        padding: 0 40px;
    }
}

/* #### slickスライダー slick slider ここまで ##### */
/* ##### 販売ネットワーク用 network ##### */
.list-targetarea,
.list-company_targetarea,
.list-kind_targetarea {
    height: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.link-forking a {
    display: inline-block;
    padding-right: 1.2em;
    text-decoration: underline;
    position: relative;
}

.link-forking a::after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent #f2ba13;
    position: absolute;
    top: 0.5em;
    right: 0;
}

.link-forking.-ver2 a {
    padding-right: 2em;
}

.link-forking.-ver2 a::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    border: none;
    background-image: url(/upload/tenant_1/84234ab3b88dcd3964fb83d2cadfc3c7.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    top: 0;
    right: 0;
}

.division span {
    display: inline-block;
    margin-bottom: 0.1em;
    padding: 0.1em 10px;
    font-weight: normal;
    font-size: 10px;
    color: white;
    border: 2px solid #15569d;
    background-color: #15569d;
}

.division.営業所 span {
    border: 2px solid #006400;
    background-color: #006400;
}

.division.グループ会社 span {
    border: 2px solid #30b8d0;
    background-color: #30b8d0;
}

.division.特約商社 span {
    border: 2px solid #7030a0;
    background-color: #7030a0;
}

/* ##### 販売ネットワーク用 network ここまで ##### */
/* ##### タイトル title ##### */
.title-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 300;
    font-size: 26px;
    color: white;
    letter-spacing: 0.1em;
}

.title-01 .main::after {
    content: "";
    width: 100px;
    height: 2px;
    display: block;
    margin: 50px auto 20px;
    background-color: #f2ba13;
}

.title-01 .sub {
    font-family: "Roboto", sans-serif;
    font-size: 90%;
}

.title-01.-middle {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    font-weight: 500;
    font-size: 18px;
}

.title-01.-middle .main::after {
    content: "";
    width: 60px;
    height: 2px;
    margin: 10px auto;
}

.title-01.-middle .sub {
    font-size: 90%;
}

.title-01.-small {
    font-weight: 300;
    font-size: 1vw;
}

.title-01.-small .main::after {
    content: "";
    width: 80px;
    height: 2px;
    margin: 10px auto;
}

.title-01.-small .sub {
    font-size: 70%;
}

.title-02 {
    margin-bottom: 50px;
    font-weight: 400;
    font-size: 34px;
    letter-spacing: 0.1em;
    text-align: center;
}

.title-02 .main {
    color: #15569d;
}

.title-02 .main::after {
    content: "";
    width: 100px;
    height: 2px;
    display: block;
    margin: 20px auto;
    background-color: #f2ba13;
}

.title-02 .sub {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 70%;
    line-height: 1.2;
}

.title-02.-middle {
    font-size: 28px;
}

.title-02.-white .main {
    color: white;
}

.title-03 {
    font-weight: bold;
    font-size: 36px;
}

.title-03 .main::after {
    content: "";
    width: 50px;
    height: 2px;
    display: block;
    margin: 15px auto;
    background-color: #f2ba13;
}

.title-03.-middle {
    font-weight: 300;
    font-size: 24px;
}

.title-03.-middle .main::after {
    margin-top: 10px;
    margin-bottom: 10px;
}

.title-03.-middle .sub {
    font-size: 70%;
}

.title-03.-small {
    font-weight: 300;
    font-size: 18px;
    color: white;
}

.title-03.-small .main::after {
    content: "";
    width: 60px;
    height: 2px;
    margin: 10px auto;
}

.title-03.-small .sub {
    font-size: 70%;
}

.title-03.-exsmall {
    font-weight: 500;
    font-size: 14px;
    color: white;
}

.title-03.-exsmall .main::after {
    content: "";
    width: 60px;
    height: 2px;
    margin: 10px auto;
}

.title-03.-exsmall .sub {
    font-size: 50%;
}

.title-04 {
    padding-right: 1.5em;
    font-weight: bold;
    font-size: 24px;
    position: relative;
}

.title-04::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 8.7px 5px 0 5px;
    border-style: solid;
    border-color: #f2ba13 transparent transparent transparent;
    position: absolute;
    top: 15px;
    right: 0.5em;
}

.title-04.-small {
    font-weight: 300;
    font-size: 16px;
}

.title-04.-small::after {
    top: 10px;
}

.title-04.title-04-01 {
  font-size: 18px;
}

.title-05 {
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 22px;
    color: #15569d;
}

.title-06 {
    margin-bottom: 50px;
    padding: 0.5em 1em;
    font-weight: 500;
    font-size: 24px;
    color: #15569d;
    border-bottom: 1px solid #15569d;
    position: relative;
}

.title-06::before {
    content: "";
    width: 0.5em;
    height: 90%;
    display: inline-block;
    background: #248abf;
    background: -webkit-gradient(linear, left top, left bottom, from(#248abf), to(#15589e));
    background: linear-gradient(to bottom, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=0);
    position: absolute;
    top: 5%;
    left: 0;
}

.title-07 {
    min-height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    padding: 15px 15px 15px 60px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    line-height: 1.2;
    background-color: #15569d;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    position: relative;
}

.title-07 .sub {
    display: inline-block;
    padding: 0.1em 0.3em;
    font-size: 140%;
    color: #f2ba13;
    line-height: 1;
    border: 1px solid #f2ba13;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0.8em;
}

.title-08 {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 22px;
}

.title-09 {
    min-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 14px;
    color: #f2ba13;
    line-height: 1.2;
    text-align: center;
    background-color: #15569d;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
}

.title-10 {
    margin-bottom: 15px;
    padding: 2px 10px;
    font-weight: 300;
    font-size: 20px;
    border-left: 5px solid #15569d;
}

.title-11 {
    margin-bottom: 20px;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 22px;
}

.title-11::after {
    content: "";
    width: 100px;
    height: 2px;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #15569d;
}

.title-12 {
    margin-bottom: 20px;
    padding: 5px 2px;
    font-weight: bold;
    font-size: 20px;
}

.title-12::after {
    content: "";
    width: 80px;
    height: 1px;
    display: block;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: #15569d;
}

.title-13 {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 18px;
}

.title-13::after {
    content: "";
    width: 50px;
    height: 1px;
    display: block;
    margin: 10px 0;
    border-bottom: 2px dotted #000;
}

.title-14 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 30px;
    font-weight: 500;
    color: white;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
    position: relative;
}

.title-14::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #f2ba13;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 10px;
}

.title-15 {
    margin-bottom: 50px;
    font-weight: bold;
    font-size: 24px;
    color: #15569d;
    text-align: center;
}

.title-15::after {
    content: "";
    width: 50px;
    height: 5px;
    display: block;
    margin: 15px auto;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.title-16 {
    margin-bottom: 50px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 30px;
    text-align: center;
}

.title-17 {
    padding: 0.5em;
    font-weight: 500;
    font-size: 22px;
    color: white;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.title-18 {
    padding-left: 1.5em;
    font-weight: 500;
    font-size: 110%;
    color: white;
    position: relative;
}

.title-18::before {
    content: "";
    width: 0.8em;
    height: 0.8em;
    display: inline-block;
    background-color: #f2ba13;
    position: absolute;
    top: 0.4em;
    left: 0;
}

.title-18.-bule {
  color: #15589e;
}

.title-19 {
    min-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 5px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: #15569d;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.8);
}

.title-20 {
    margin-bottom: 0.5em;
    font-weight: bold;
    font-size: 14px;
    color: white;
}

.title-box-inner {
    padding: 50px 20px;
}

.title-box-inner .title-01 {
    height: 100%;
}

.title-box-02 {
    padding: 30px 10px;
    background-color: #15569d;
}

[class^="title"].-line-left .main::after {
    margin-left: 0;
}

[class^="title"].-line-right .main::after {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .title-01 {
        font-size: 22px;
    }

    .title-01.-small {
        font-size: 14px;
    }

    .title-01.-small .main::after {
        content: "";
        width: 80px;
        height: 2px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .title-01.-small .sub {
        font-size: 50%;
    }

    .title-02 {
        font-size: 28px;
    }

    .title-02.-middle {
        font-size: 24px;
    }

    .title-03 {
        font-size: 28px;
    }

    .title-03 .main::after {
        content: "";
        width: 40px;
        height: 1px;
        margin: 12px auto;
    }

    .title-03.-small {
        font-size: 16px;
    }

    .title-05 {
        font-size: 18px;
    }

    .title-06 {
        margin-bottom: 30px;
        font-size: 22px;
    }

    .title-07 {
        min-height: 50px;
        padding: 5px 5px 5px 40px;
        font-size: 12px;
    }

    .title-07 .sub {
        left: 0.5em;
    }

    .title-09 {
        font-size: 12px;
    }

    .title-10 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .title-15 {
        font-size: 20px;
    }

    .title-16 {
        margin-bottom: 30px;
        font-size: 24px;
    }

    .title-17 {
        font-size: 20px;
    }

    .title-19 {
        font-size: 12px;
    }
}

@media (max-width: 599px) {
    .title-01 .main::after {
        margin: 15px 0;
    }

    .title-01.-small {
        font-size: 12px;
    }

    .title-01.-small .main::after {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .title-01.-horizontal\@sp {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: baseline;
        align-items: baseline;
        -ms-flex-align: baseline;
    }

    .title-01.-horizontal\@sp .main::after {
        margin: 10px 0;
    }

    .title-01.-horizontal\@sp .sub {
        margin-left: 1em;
        font-size: 70%;
    }

    .title-02.-middle {
        font-size: 20px;
    }

    .title-17 {
        font-size: 16px;
    }

    .title-box-inner {
        padding: 20px;
    }

    .title-box.square::before {
        display: none;
    }

    .title-box .square-inner {
        padding: 10px 20px;
        position: static;
    }
}

/* ##### タイトル title ここまで ##### */
/* #### リスト list ##### */
.list-products li .list-inner {
    background-color: white;
}

.list-arrow li {
    padding-left: 1.5em;
    font-size: 24px;
    position: relative;
}

.list-arrow li::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    display: inline-block;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0.5em;
    left: 0;
}

.list-arrow.-blue li {
    font-size: 18px;
}

.list-arrow.-blue li::before {
    border-top: 2px solid #15569d;
    border-right: 2px solid #15569d;
}

.list-arrow.-small li {
    font-weight: bold;
    font-size: inherit;
}

.list-star li,
.list-triangle li {
    padding-left: 1.2em;
    position: relative;
}

.list-star li::before,
.list-triangle li::before {
    content: "★";
    display: inline-block;
    line-height: 1;
    position: absolute;
    top: 0.3em;
    left: 0;
}

.list-triangle li::before {
    content: "▶︎";
}

.list-table {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-table+.list-table {
    border-top: 1px solid #d1d1d1;
}

.list-table dt,
.list-table dd {
    padding: 20px;
}

.list-table dt {
    width: 20%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    background-color: #e8e8e8;
}

.list-table dd {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    line-height: 1.8;
    background-color: white;
}

.list-table.-middle dt {
    width: 30%;
}

.list-table.-wide dt {
    width: 60%;
}

.list-table.-fw-normal dt {
    font-weight: 300;
}

.list-table.-ver2 dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-table.-ver2 dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.list-table.-ver2 dd .btn-03 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 1em;
}

.list-table.-ver3 dt {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    padding-left: 3em;
    font-weight: bold;
    color: #15569d;
    background-color: white;
}

.list-table.-ver3 dt .num {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 0.5em;
}

.list-table.-ver3 dd {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-table.-ver3 dd [class^="btn"] {
    max-width: 100%;
}

.list-table.-ver4 dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.list-table.-ver4 dt .span {
    font-weight: bold;
    color: #15569d;
}

.list-table.-ver4 dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.list-table.-ver4 dd .btn-03 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 1em;
}

.list-table.-ver5 dd {
    font-weight: bold;
    color: #15569d;
}

.list-table.-ver5 dd.include-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-table.-ver5 dd.include-text .text,
.list-table.-ver5 dd.include-text .normal-text {
    width: auto;
    display: inline-block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-table.-ver5 dd.include-text .normal-text {
    font-weight: normal;
    color: #000;
}

.list-table.-ver6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-table.-ver6.-heading dt,
.list-table.-ver6.-heading dd {
    font-weight: bold;
    color: white;
    background-color: #15569d;
}

.list-table.-ver6 dt,
.list-table.-ver6 dd {
    padding: 20px 10px;
}

.list-table.-ver6 dt {
    width: 35%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: white;
}

.list-table.-ver6 dd {
    width: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 0;
    line-height: 1.4;
}

.list-table.-ver6 dd .element {
    width: 22%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 5px;
    border-left: 1px solid #dcdcdc;
}

.list-table.-ver6 dd .element.-wide {
    width: 26%;
}

.list-table.-ver6 dd .element.-exwide {
    width: 30%;
}

.list-table.-ver7:nth-of-type(odd) dt,
.list-table.-ver7:nth-of-type(odd) dd {
    background-color: #f5f5f5;
}

.list-table.-ver7.-heading dt,
.list-table.-ver7.-heading dd {
    font-weight: bold;
    color: white;
    background-color: #30b8d0;
}

.list-table.-ver7 dt {
    width: 30%;
    background-color: white;
}

.list-table.-ver7 dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    font-size: 14px;
}

.list-table.-ver7 dd .element {
    width: 50%;
    padding: 5px 10px;
}

.list-table.-ver7 dd .element.-wide {
    width: 100%;
    border-left: 1px solid #dcdcdc;
}

.list-table.-ver7 dd .element.-wide+.-wide {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.list-table.-ver7 dd .element.-wide+.-wide~.element {
    border-left: 1px solid #dcdcdc;
}

.list-table.-ver7 dd .element-phone {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-left: 1px solid #dcdcdc;
}

.list-table.-ver7 dd .element-phone .element {
    width: calc(100% / 3);
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 90%;
}

.list-table.-ver7 dd .element-phone .element+.element {
    border-left: 1px solid #dcdcdc;
}

.list-table.-ver7 dd .location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-table.-ver7 dd .location dt {
    width: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-table.-ver7 dd .location dt::after {
    content: "：";
    display: inline-block;
}

.list-table.-ver7 dd .location dt,
.list-table.-ver7 dd .location dd {
    padding: 0;
    background-color: transparent;
}

.list-table-ver8-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-table.-ver8 {
    width: calc(100% / 3);
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-table.-ver8+.list-table.-ver8 {
    border-top: none;
    border-left: 1px solid #d1d1d1;
}

.list-table.-ver8 dt,
.list-table.-ver8 dd {
    text-align: center;
}

.list-table.-ver8 dt {
    width: 100%;
}

.list-table-wrap {
    border-top: 1px solid #d1d1d1;
    border-bottom: 1px solid #d1d1d1;
}

.list-phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-phone dt {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: 300;
}

.list-phone dt::after {
    content: "：";
    display: inline-block;
}

.list-phone-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-phone-wrap .list-phone+.list-phone {
    margin-left: 1em;
}

.list-business-contents dt {
    font-weight: 500;
}

.list-blue dt {
    padding-left: 1.5em;
    font-weight: bold;
    color: #15569d;
    position: relative;
}

.list-blue dt::before {
    content: "";
    width: 1em;
    height: 1em;
    display: inline-block;
    background-color: #15569d;
    position: absolute;
    top: 0.3em;
    left: 0;
}

.list-blue dd {
    margin-top: 0.5em;
}

.list-catalog li a {
    position: relative;
}

.list-catalog li a .img {
    width: calc(100% - 20px);
    background-color: white;
}

.list-catalog li a .title-07 {
    min-width: 255px;
    position: absolute;
    bottom: -20px;
    right: 0;
}

.list-catalog-link li a {
    width: 100%;
    height: 100%;
    min-height: 55px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
    color: white;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.list-catalog-link li.no-link a {
    background: #999;
    pointer-events: none;
}

.list-catalog-link.-small li a {
    min-height: 40px;
}

.list-catalog-01 .tag-line {
    bottom: 1em;
}

.list-catalog-02 .catalog-img {
    width: 95%;
}

.list-catalog-02 .tag-line {
    top: 0;
    bottom: auto;
}

.list-catalog-03 .list-inner {
    position: relative;
}

.list-catalog-03 .catalog-item {
    padding-top: 20px;
}

.list-catalog-03 .catalog-square {
    width: calc(100% - 20px);
}

.list-catalog-03 .tag-line {
    top: 0;
    bottom: auto;
}

.list-catalog-03 [class^="btn"] {
    position: absolute;
    bottom: -20px;
    right: 40px;
    z-index: 1;
}

.list-product-category li.current a {
    pointer-events: none;
}

.list-product-category li.current a .title-07 {
    background-color: #30b8d0;
}

.list-download li .img {
    background-color: white;
}

.list-tag {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-tag li {
    width: 60px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    border-radius: 5px;
    background-color: white;
}

.list-tag li+li {
    margin-left: 0.5em;
}

.list-tag li img {
    width: 100%;
}

.list-link-pdf {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.list-link-pdf li {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-link-pdf li+li {
    margin-left: 0.5em;
}

.list-link-pdf li a {
    display: inline-block;
    padding: 5px 20px;
    font-weight: bold;
    color: white;
    text-align: center;
    background: #30b8d0;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
}

.list-link-pdf li.no-link a {
    background: #999;
    pointer-events: none;
}

.list-bnr-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.4);
}

.list-bnr-inner dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 20px 15px;
    background-color: #15569d;
}

.list-bnr-inner dd {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-num {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-num dt {
    min-width: 130px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 1em 0 1.5em;
    position: relative;
}

.list-num dt::after {
    content: "：";
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.list-num dt .num {
    position: absolute;
    top: 0;
    left: 0;
}

.list-num dt .text {
    font-weight: bold;
    color: #15569d;
    -moz-text-align-last: justify;
    text-align-last: justify;
}

.list-num dd {
    width: auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-inpage-link a {
    height: 100%;
}

.list-corp-link .list-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.list-corp-link .list-inner>* {
    width: 100%;
}

.list-corp-link .list-inner .box-white {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.list-number li {
    padding-left: 60px;
    font-weight: 500;
    position: relative;
}

.list-number li+li {
    margin-top: 50px;
}

.list-number li .number {
    width: 50px;
    height: 50px;
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    font-weight: normal;
    font-size: 150%;
    color: white;
    line-height: 1;
    text-align: center;
    background: #30b8d0;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
    position: absolute;
    top: -0.3em;
    left: 0;
}

.list-bracket-num>li {
    padding-left: 1.8em;
    position: relative;
}

.list-bracket-num>li .num {
    line-height: 1;
    position: absolute;
    top: 0.3em;
    left: 0;
}

.list-dial {
    padding: 1em;
    font-weight: bold;
    font-size: 20px;
    background-color: white;
}

.list-dial dt,
.list-dial dd {
    padding: 0.5em;
}

.list-dial dt {
    text-align: center;
    border-bottom: 2px solid #15569d;
}

.list-dial dt.include-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    align-items: flex-end;
    -ms-flex-align: end;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.list-dial dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-dial dd .phone-number {
    width: 48%;
    margin: 1%;
    font-size: 1.6em;
    text-align: center;
}

.list-dial dd .phone-number.free-tel a {
    padding-left: 2.5em;
    position: relative;
}

.list-dial dd .phone-number.free-tel a .icon-freetel {
    width: 2em;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}

.list-location-link li.current a {
    pointer-events: none;
}

.list-location-link li.current a [class^="title"] {
    background-color: #30b8d0;
}

/*2022/09/22追記*/

.list-dial.kankyo dt {
  border-bottom: none;
  font-weight: normal;
  color: #15589e;
}

.list-dial.kankyo dd .left {
  width: 48%;
  margin: auto;
}

.list-dial.kankyo dd .right {
  width: 48%;
  margin: auto;
  border-left: 2px solid #1860a3;
}

.list-dial.kankyo dd .phone-number {
  width: 100%;
  font-size: 24px;
}

.list-dial.kankyo dd .btn-mini {
  margin: auto;
  width: 80%;
}

.list-dial.kankyo dd .btn-mini a {
  font-size: 20px;
}

@media (max-width: 1024px) {
    .list-arrow li {
        font-size: 20px;
    }

    .list-table dt {
        width: 25%;
    }

    .list-table.-wide dt {
        width: 55%;
    }

    .list-table.-ver4 dd {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .list-table.-ver4 dd .text-blue {
        width: 100%;
    }

    .list-table.-ver4 dd .btn-03 {
        margin-top: 1em;
        margin-left: 0;
    }

    .list-table.-ver6 dd {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-table.-ver6 dd .element,
    .list-table.-ver6 dd .element.-wide,
    .list-table.-ver6 dd .element.-exwide {
        width: 50%;
        padding: 2px 5px;
    }

    .list-table.-ver6 dd .element.-wide,
    .list-table.-ver6 dd .element.-exwide {
        border-bottom: 1px solid #dcdcdc;
    }

    .list-table.-ver7 dd .element-phone {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .list-table.-ver7 dd .element-phone .element {
        width: 100%;
    }

    .list-table.-ver7 dd .element-phone .element+.element {
        border-top: 1px solid #dcdcdc;
        border-left: none;
    }

    .list-table.-ver7 dt {
        width: 35%;
    }

    .list-table.-ver7 dd {
        font-size: 13px;
    }

    .list-catalog li a .img {
        width: calc(100% - 10px);
    }

    .list-catalog li a .title-07 {
        min-width: 160px;
        bottom: -30px;
    }

    .list-corp-link .list-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .list-corp-link .list-inner .img {
        width: 30%;
    }

    .list-corp-link .list-inner .box {
        width: 10%;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .list-number li {
        padding-left: 50px;
    }

    .list-number li+li {
        margin-top: 30px;
    }

    .list-number li .number {
        width: 40px;
        height: 40px;
    }

    .list-dial {
        padding: 0.5em;
        font-size: 18px;
    }

    .list-dial dd .phone-number {
        width: 98%;
    }
}

@media (max-width: 768px) {
    .list-table.-ver2 dd {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

@media (max-width: 599px) {
    .list-arrow li {
        font-size: 18px;
    }

    .list-table dt,
    .list-table dd {
        padding: 15px 5px;
        font-size: 12px;
    }

    .list-table dt {
        width: 35%;
    }

    .list-table.-middle dt {
        width: 35%;
    }

    .list-table.-wide dt {
        width: 45%;
    }

    .list-table.-ver3 dd {
        max-width: 150px;
    }

    .list-table.-ver7 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-table.-ver7 dt {
        width: 100%;
        padding: 15px 10px;
    }

    .list-table.-ver7>dd {
        font-size: 12px;
        border-top: 1px solid #dcdcdc;
    }

    .list-corp-link .list-inner .img {
        width: 35%;
    }

    .list-num {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-num dt {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
        min-width: auto;
    }

    .list-num dd {
        width: 100%;
        padding-left: 1.5em;
    }

    .list-dial {
        font-size: 16px;
    }

    .list-dial dd .phone-number {
        font-size: 1.2em;
    }
}

@media (max-width: 1024px) {
  .list-dial.kankyo dd .btn-mini a {
    font-size: 16px;
  }
  .list-dial.kankyo dd .phone-number {
    font-size: 18px;
  }
}

@media (max-width: 599px) {
  .list-dial.kankyo dd .left {
    width: 100%;
  }
  .list-dial.kankyo dd .right {
    width: 100%;
    border-left: none;
    margin: 20px auto 0;
  }
  .list-dial.kankyo dd .btn-mini a {
    font-size: 16px;
  }
  .list-dial.kankyo dd .phone-number {
    font-size: 18px;
  }
  .contact-btns {
    width: 100%;
  }
}

/* #### リスト list ここまで ##### */
/* ##### ボタン button ##### */
.btn-01 {
    width: 200px;
    max-width: 90%;
    height: 45px;
    margin-top: 50px;
}

.btn-01 a,
.btn-01 button {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 70px 5px 10px;
    font-weight: 100;
    line-height: 1.2;
    text-align: center;
    border: 1px solid #000;
    position: relative;
}

.btn-01 a::after,
.btn-01 button::after {
    content: "";
    width: 80px;
    height: 10px;
    display: block;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: translate(0, -50%) skew(30deg);
    transform: translate(0, -50%) skew(30deg);
    position: absolute;
    top: 60%;
    right: -20px;
}

.btn-01.-white a,
.btn-01.-white button {
    color: white;
    border: 1px solid white;
}

.btn-01.-white a::after,
.btn-01.-white button::after {
    border-bottom: 1px solid white;
    border-right: 1px solid white;
}

.btn-02 {
    width: 220px;
    height: 50px;
    margin-top: 50px;
}

.btn-02 a,
.btn-02 button {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px;
    color: white;
    text-align: center;
    background: #30b8d0;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
}

.btn-03 {
    width: 250px;
    max-width: 90%;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.btn-03 a,
.btn-03 button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em 2em;
    font-weight: 500;
    color: #000;
    border: 1px solid #000;
    background-color: white;
    position: relative;
}

.btn-03 a::after,
.btn-03 button::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent #000;
    position: absolute;
    top: 1.5em;
    right: 1em;
}

.btn-03.-mini a,
.btn-03.-mini button {
    padding: 0.5em 3em;
}

.btn-03.-mini a::after,
.btn-03.-mini button::after {
    top: 1.2em;
}

.btn-03.-small {
    width: 200px;
}

.btn-03.-small a,
.btn-03.-small button {
    padding: 0.5em 1.8em;
}

.btn-03.-small a::after,
.btn-03.-small button::after {
    top: 1em;
}

.btn-03.-exsmall {
    width: 180px;
    max-width: 90%;
    margin-top: 15px;
}

.btn-03.-exsmall.-mt-0 {
    margin-top: 0;
}

.btn-03.-exsmall a,
.btn-03.-exsmall button {
    padding: 0.5em 2em;
    font-size: 12px;
}

.btn-03.-exsmall a::after,
.btn-03.-exsmall button::after {
    top: 1em;
}

.btn-03.-wide {
    width: 300px;
}

.btn-03.no-link a {
    opacity: 0.2;
    pointer-events: none;
}

.btn-04 {
    width: 270px;
    max-width: 100%;
    margin-top: 50px;
}

.btn-04 a,
.btn-04 button {
    display: block;
    padding: 1em;
    font-size: 14px;
    color: white;
    text-align: center;
    background: #248abf;
    background: linear-gradient(45deg, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
    position: relative;
}

.btn-04 a::after,
.btn-04 button::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent #f2ba13;
    position: absolute;
    top: 20px;
    right: 0.5em;
}

.btn-05 {
    width: 250px;
    max-width: 90%;
}

.btn-05 a,
.btn-05 button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    color: white;
    border: 1px solid white;
    background-color: transparent;
    position: relative;
}

.btn-05 a::after,
.btn-05 button::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 5px 0 5px 8.7px;
    border-style: solid;
    border-color: transparent transparent transparent #f2ba13;
    position: absolute;
    top: 2em;
    right: 0.5em;
}

.btn-06 {
    width: 280px;
    max-width: 48%;
}

.btn-06 a,
.btn-06 button {
    width: 100%;
    height: 100%;
    display: block;
    padding: 0.8em 2.5em;
    font-weight: bold;
    font-size: 24px;
    color: white;
    border: none;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #15589e 3px, #15589e 6px);
    background-size: auto auto;
    background-color: #2b68a7;
    position: relative;
}

.btn-06 a::after,
.btn-06 button::after {
    content: "";
    width: 0.7em;
    height: 0.7em;
    display: inline-block;
    border-top: 3px solid white;
    border-right: 3px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1.05em;
    right: 1em;
}

.btn-06.-clear a,
.btn-06.-clear button {
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 3px, #9f9f9f 3px, #9f9f9f 6px);
    background-size: auto auto;
    background-color: darkgray;
}

.btn-06.-clear a::after,
.btn-06.-clear button::after {
    display: none;
}

.btn-06.-back a::after,
.btn-06.-back button::after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    left: 1em;
    right: auto;
}

.btn-download {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.btn-download a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    font-size: 22px;
    color: white;
    letter-spacing: 0.1em;
    background-color: #15569d;
}

.btn-download a span {
    display: inline-block;
}

.btn-download a .download-thumb {
    max-width: 55px;
    margin-right: 0.5em;
}

.btn-download a .icon-normal-pdf {
    margin-left: 0.5em;
}

.download-name {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
}

.btn-special {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
    padding: 15px;
    background: #032f76;
    background: -webkit-gradient(linear, left top, right top, from(#032f76), to(#021e61));
    background: linear-gradient(to right, #032f76 0%, #021e61 100%);
    -webkit-box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#032f76', endColorstr='#021e61', GradientType=1);
}

.btn-big a {
    display: block;
    padding: 30px 100px;
    font-weight: 500;
    font-size: 24px;
    color: white;
    text-align: center;
    text-align: center;
    -webkit-box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.4);
    position: relative;
}

.btn-big a::after {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;
    border-top: 2px solid white;
    border-right: 2px solid white;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 30px;
}

.btn-big.-ver01 a {
    background: #248abf;
    background: -webkit-gradient(linear, left top, right top, from(#248abf), to(#15589e));
    background: linear-gradient(to right, #248abf 0%, #15589e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#248abf', endColorstr='#15589e', GradientType=1);
}

.btn-big.-ver02 a {
    background: #afac4d;
    background: -webkit-gradient(linear, left top, right top, from(#afac4d), to(#9e8315));
    background: linear-gradient(to right, #afac4d 0%, #9e8315 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#afac4d', endColorstr='#9e8315', GradientType=1);
}

.btn-big.-ver03 a {
    background: #7ab651;
    background: -webkit-gradient(linear, left top, right top, from(#7ab651), to(#599e15));
    background: linear-gradient(to right, #7ab651 0%, #599e15 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7ab651', endColorstr='#599e15', GradientType=1);
}

.btn-mini {
    width: 170px;
}

.btn-mini a,
.btn-mini button {
    width: 100%;
    height: 100%;
    display: block;
    padding: 10px 5px 10px 3em;
    font-size: 14px;
    color: white;
    background-color: #15589e;
    position: relative;
}

.btn-mini a::before,
.btn-mini button::before {
    content: "";
    width: 0.7em;
    height: 0.7em;
    display: inline-block;
    border-top: 2px solid white;
    border-right: 2px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1.2em;
    left: 1em;
}

[class^="btn"].-mx-0 {
    margin-left: 0;
    margin-right: 0;
}

[class^="btn"].-m-0 {
    margin: 0;
}

[class^="btn"].-m-10 {
    margin: 10px;
}

@media (max-width: 1024px) {
    .btn-06 {
        width: 250px;
    }

    .btn-06 a,
    .btn-06 button {
        font-size: 20px;
    }

    .btn-download {
        width: 90%;
    }

    .btn-download a {
        padding: 8px;
        font-size: 20px;
    }

    .btn-download a .download-thumb {
        max-width: 40px;
    }

    .btn-big a {
        padding: 22px 50px;
        font-size: 20px;
    }

    .btn-big a::after {
        width: 18px;
        height: 18px;
        right: 20px;
    }
}

@media (max-width: 599px) {
    .btn-06 a,
    .btn-06 button {
        font-size: 18px;
    }

    .btn-download a {
        padding: 5px;
        font-size: 18px;
    }

    .btn-download a .download-thumb {
        max-width: 30px;
    }

    .btn-special {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-align: start;
    }

    .btn-special [class^="btn"] {
        margin-top: 30px;
        margin-left: auto;
    }

    .btn-big a {
        padding: 10px 30px;
        font-size: 18px;
    }

    .btn-big a::after {
        width: 15px;
        height: 15px;
        right: 10px;
    }
}

/* ##### ボタン button ここまで ##### */
/* ##### ヘッダー header ##### */
header {
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
}

.header-logo {
    width: 240px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 2em;
}

.header-logo a {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 35px;
    /* padding: 15px 50px; */
    /* background: #2897c7;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2897c7', endColorstr='#16589e', GradientType=1); */
}

.header-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.header-nav {
    -webkit-box-flex: 1;
    -ms-flex: 1 0;
    flex: 1 0;
}

.header-link {
    width: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.header-link.hide {
    display: none;
}

.header-item {
    width: calc(100% / 3);
}

.header-item a {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
    font-size: 14px;
    color: white;
    background-color: #15569d;
}

.header-login {
    width: 100%;
    border-bottom: 1px solid white;
}

.header-login a {
    background-color: #30b8d0;
}

.header-login a [class^="icon"] {
    margin-right: 0.5em;
}

.header-login~.header-item+.header-item {
    border-left: 1px solid white;
}

.index header {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.8);
}

.scrolled .index header {
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}

.lower header {
    border-bottom: 5px solid #30b8d0;
}

@media (max-width: 1024px) {
    .header-logo {
        margin-left: 0;
    }

    .header-logo a {
        /* padding: 10px 45px; */
        padding: 5px 40px;
    }

    .header-nav+.header-link {
        opacity: 0;
    }

    .lower header {
        border-bottom: 4px solid #30b8d0;
    }
}

@media (max-width: 599px) {
    .header-logo {
        width: 180px;
    }

    .header-logo a {
        padding: 5px 35px;
    }

    .lower header {
        border-bottom: 3px solid #30b8d0;
    }
}

/* ##### ヘッダー header ここまで ##### */
/* ##### ナビ nav ##### */
nav {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    overflow: hidden;
}

nav:hover {
    overflow: visible;
}

nav .mobile-nav-header {
    display: none;
}

.common-nav-list dt {
    margin-bottom: 5px;
    padding-left: 2em;
    font-weight: bold;
    position: relative;
}

.common-nav-list dt::before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    background-color: #f2ba13;
    position: absolute;
    top: 0.7em;
    left: 0.5em;
}

.common-nav-list dd ul li+li {
    margin-top: 0.7em;
}

.common-nav-list dd ul li a {
    display: inline-block;
    padding-left: 2em;
    padding-right: 0.3em;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    position: relative;
}

/* .common-nav-list dd ul li.current a:not([href*="#"]) {
    border-bottom: 1px solid #f2ba13;
} */

.common-nav-list dd ul li a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    left: 5px;
}

.nav-list {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 10px 50px;
}

.nav-list>li {
    border-bottom: 5px solid transparent;
}

.nav-list>li+li {
    margin-left: 1em;
}

.nav-list>li>a,
.nav-list>li>span {
    display: block;
    padding: 5px 10px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-bottom: 5px solid white;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

.nav-list>li>a:hover,
.nav-list>li>span:hover {
    opacity: 0.5;
    cursor: pointer;
}

.nav-list>li.current>a,
.nav-list>li.current>span {
    border-bottom: 5px solid #f2ba13;
}

.nav-list>li .acc-btn_mobile {
    display: none;
}

.nav-list>li .common-nav-list {
    color: white;
}

.megamenu-btn {
    position: relative;
}

.megamenu-btn::after {
    content: "";
    width: 150%;
    height: 300%;
    display: block;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    position: absolute;
    bottom: 0;
    left: -25%;
    z-index: 1;
}

.megamenu-box {
    width: 100%;
    height: auto;
    visibility: hidden;
    margin: auto;
    background-color: rgba(21, 86, 157, 0.9);
    -webkit-box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 2px -2px rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
}

.megamenu-box-list {
    width: 1200px;
    max-width: 100%;
    margin: 50px auto;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
}

.megamenu-box-list li {
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
}

.megamenu-box-list li+li {
    margin-top: 10px;
}

.megamenu-box-list li a {
    display: inline-block;
    padding-left: 2em;
    font-size: 14px;
    color: white;
    position: relative;
}

.megamenu-box-list li a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    left: 5px;
}

.megamenu-item {
    width: 100%;
    max-width: 1400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    padding: 50px;
}

.megamenu-item .common-nav-list {
    width: calc(100% / 4);
    padding: 10px;
}

.megamenu-menu {
    overflow: hidden;
}

.megamenu-menu:hover {
    overflow: visible;
}

.megamenu-menu:hover .megamenu-box {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.dropdown-btn {
    position: relative;
}

.dropdown-btn::after {
    content: "";
    width: 150%;
    height: 30px;
    display: block;
    -webkit-transform: translate(0, 100%);
    transform: translate(0, 100%);
    position: absolute;
    bottom: 0;
    left: -25%;
    z-index: 1;
}

.dropdown-box {
    width: 300px;
    height: auto;
    visibility: hidden;
    margin: 30px auto 0;
    padding: 30px 20px;
    background-color: #15569d;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    opacity: 0;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, -10%);
    transform: translate(0, -10%);
    position: absolute;
    top: 100%;
    left: -150px;
    right: -150px;
    z-index: 2;
}

.dropdown-box::before {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    margin: auto;
    border-width: 0 7px 7px 7px;
    border-style: solid;
    border-color: transparent transparent #15569d transparent;
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
}

.dropdown-box::after {
    content: "";
    width: 100%;
    height: 30px;
    display: block;
    -webkit-transform: translate(0, -100%);
    transform: translate(0, -100%);
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown-box-list a {
    color: white;
}

.dropdown-menu {
    overflow: hidden;
    position: relative;
}

.dropdown-menu:hover {
    overflow: visible;
}

.dropdown-menu:hover .dropdown-box {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

@media (max-width: 1024px) {
    nav {
        width: 65%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        overflow: visible;
        padding: 30px 10px 50px;
        background: #30b8d0;
        background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#30b8d0', endColorstr='#15569d', GradientType=1);
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        position: fixed;
        top: 0;
        right: -65%;
        z-index: 20;
    }

    nav * {
        color: white;
    }

    nav .mobile-nav-header {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 20px;
    }

    nav .mobile-nav-header .logo {
        width: 100%;
        margin: auto;
    }

    nav .mobile-nav-header .mobile-nav-header-address {
        width: 48%;
        display: block;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin: 1%;
        font-size: 12px;
        text-align: center;
    }

    nav .mobile-nav-header .header-link {
        width: 30%;
        margin: 1%;
    }

    nav .mobile-nav-header .header-link .header-item {
        border: none;
    }

    nav .mobile-nav-header .header-link a {
        background-color: transparent;
    }

    .common-nav-list+.common-nav-list {
        margin-top: 15px;
    }

    .common-nav-list dd ul li a {
        padding-left: 1.5em;
        font-size: 14px;
    }

    .common-nav-list dd ul li a::before {
        content: "";
        width: 5px;
        height: 5px;
        top: 7px;
    }

    .active nav {
        -webkit-box-shadow: -2px 0px 15px -5px #000;
        box-shadow: -2px 0px 15px -5px #000;
        -webkit-transform: translate(-100%, 0);
        transform: translate(-100%, 0);
    }

    .nav-list {
        width: 100%;
        height: auto;
        display: block;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        overflow-x: hidden;
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
        padding: 10px 50px;
    }

    .nav-list>li+li {
        margin-left: 0;
    }

    .nav-list>li>a,
    .nav-list>li>span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        padding: 10px;
        border-bottom: none;
    }

    .nav-list>li>a [class^="icon"],
    .nav-list>li>span [class^="icon"] {
        display: inline-block;
        margin-right: 0.5em;
    }

    .nav-list>li>a [class^="icon"] img,
    .nav-list>li>span [class^="icon"] img {
        -webkit-filter: invert(1);
        filter: invert(1);
    }

    .nav-list>li.current>a,
    .nav-list>li.current>span {
        border-bottom: none;
    }

    .nav-list>li .megamenu-btn {
        display: none;
    }

    .nav-list>li .acc-btn_mobile {
        display: block;
        padding-right: 3em;
        position: relative;
    }

    .nav-list>li .acc-btn_mobile::after {
        content: "";
        width: 15px;
        height: 15px;
        display: block;
        border-bottom: 1px solid white;
        border-right: 1px solid white;
        -webkit-transition: 0.3s linear;
        transition: 0.3s linear;
        -webkit-transform: translate(0, -50%) rotate(45deg);
        transform: translate(0, -50%) rotate(45deg);
        position: absolute;
        top: 17px;
        right: 1em;
    }

    .nav-list>li .acc-btn_mobile.action::after {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    .nav-list>li .dropdown-box-list li a,
    .nav-list>li .dropdown-box-list li span {
        padding-left: 1.5em;
    }

    .nav-list>li .common-nav-list {
        width: 50%;
    }

    .megamenu-box {
        visibility: visible;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: 1;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        position: static;
    }

    .megamenu-menu:hover {
        overflow: hidden;
    }

    .megamenu-menu:hover .megamenu-box {
        -webkit-transition: none;
        transition: none;
    }

    .megamenu-box-list {
        width: 90%;
        margin: 10px auto;
    }

    .megamenu-box-list li {
        width: 100%;
        margin: 0;
    }

    .megamenu-box-list li a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        align-items: center;
        -ms-flex-align: center;
        padding: 10px;
        font-size: 15px;
        text-align: left;
    }

    .megamenu-box-list li a .megamenu-box-list-icon {
        width: 15%;
    }

    .megamenu-box-list li a .megamenu-box-list-title {
        width: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: 10px;
    }

    .megamenu-item {
        padding: 0;
    }

    .megamenu-item .common-nav-list dd {
        margin-left: 1em;
    }

    .dropdown-box {
        width: 100%;
        visibility: visible;
        margin-top: 0;
        padding: 15px;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: 1;
        -webkit-transition: none;
        transition: none;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        position: static;
    }

    .dropdown-box::before,
    .dropdown-boxafter {
        display: none;
    }

    .dropdown-box-list a,
    .dropdown-box-list span {
        color: inherit;
        position: relative;
    }

    .dropdown-box-list a::before,
    .dropdown-box-list span::before {
        content: "└";
        display: inline-block;
        position: absolute;
        top: 5px;
        left: 0;
    }
}

@media (max-width: 599px) {
    nav {
        width: 80%;
        right: -80%;
    }

    nav .mobile-nav-header {
        padding: 10px;
    }

    nav .mobile-nav-header .mobile-nav-header-address {
        width: 98%;
    }

    nav .mobile-nav-header .header-link {
        width: 50%;
    }

    .nav-list {
        padding: 10px;
    }

    .nav-list li .common-nav-list {
        width: 100%;
    }
}

/* ##### ナビ nav ここまで ##### */
/* ##### フッター footer ##### */
.totop {
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #244462;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10;
}

.totop:hover {
    opacity: 0.5;
    cursor: pointer;
}

.totop::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    margin-top: 10px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

footer {
    padding: 50px 0;
    background-color: #232323;
    position: relative;
}

footer * {
    color: white;
}

.footer-information {
    font-size: 12px;
}

.footer-logo-wrap {
    width: 100%;
    max-width: 160px;
}

.footer-logo-text {
    font-size: 16px;
    -moz-text-align-last: justify;
    text-align-last: justify;
}

.footer-logo-text::before {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    margin: 20px 0;
    background-color: white;
}

.footer-address {
    line-height: 1.8;
    letter-spacing: 0.2em;
}

.footer-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-block {
    width: 25%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.footer-information {
    padding: 10px;
}

.footer-nav {
    width: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footer-nav-item {
    width: calc(100% / 3);
    padding: 10px;
}

.footer-nav-item .common-nav-list+.common-nav-list {
    margin-top: 30px;
}

.footer-nav-item .common-nav-list li {
    opacity: 0.8;
}

.footer-nav-title {
    width: 100%;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 20px;
}

.footer-link li+li {
    margin-top: 15px;
}

.footer-link li a {
    display: inline-block;
    padding-right: 1em;
    font-weight: bold;
    font-size: 18px;
    position: relative;
}

.footer-link li a::after {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-top: 1px solid white;
    border-right: 1px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    right: 5px;
}

.copy {
    letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
    footer {
        padding-bottom: 100px;
    }

    .totop {
        width: 40px;
        height: 40px;
        top: -45px;
        right: 5px;
    }

    .totop::before {
        width: 15px;
        height: 15px;
    }

    .footer-nav-title {
        -webkit-column-width: 100%;
        -moz-column-width: 100%;
        column-width: 100%;
    }

    .footer-nav-item {
        width: calc(100% / 2);
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .footer-nav-item .common-nav-list+.common-nav-list {
        margin-top: 20px;
    }

    .footer-nav-item.wide-at-tb .common-nav-list-wrap {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }

    .footer-nav-item.wide-at-tb .common-nav-list-wrap .common-nav-list {
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        break-inside: avoid;
    }

    .footer-link li a {
        font-size: 16px;
    }

    .copy {
        font-size: 10px;
    }
}

@media (max-width: 599px) {
    .footer-block {
        width: 100%;
    }

    .footer-nav-title {
        font-size: 18px;
    }

    .footer-link li a {
        font-size: 14px;
    }
}

/* ##### フッター footer ここまで ##### */
/* ##### メインビジュアル hero section ##### */
.hero-section {
    position: relative;
}

.hero-section-movie {
    width: 100%;
    overflow: hidden;
    padding-top: 36.4583%;
    position: relative;
}

.hero-section-movie video {
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
    margin: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    font-family: "object-fit: cover; object-position: center center;";
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    position: absolute;
    top: 0;
    left: 50%;
}

/* 旧メインビジュアル見出し */
/* .hero-section-content {
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5vw;
    background-color: rgba(11, 126, 179, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.hero-section-content .btn-01 {
    margin-top: 7vw;
}

.hero-section-title {
    font-weight: 100;
    font-size: 52px;
    color: white;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.hero-section-title span {
    display: block;
}

.hero-section-title .main::after {
    content: "";
    width: 150px;
    height: 1px;
    display: block;
    margin: 2.5vw 0;
    background-color: white;
}

.hero-section-title .sub {
    font-family: "Roboto", sans-serif;
    font-size: 40%;
    letter-spacing: 0.1em;
} */
/* 旧メインビジュアル見出し ここまで */

.lower-title {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 24px;
    color: #15569d;
}

@media (max-width: 1024px) {
    .lower-title {
        font-size: 20px;
    }
}

/* 新メインビジュアル見出し */
.hero-section-content {
    margin: auto;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-section-title {
    width: 100%;
    max-width: 1200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 3vw;
    color: white;
    letter-spacing: 0.2em;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}

.hero-section-title .main {
    font-size: 50%;
}

.hero-section-title .sub::after {
    content: "";
    width: 100%;
    height: 0.05em;
    display: block;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    background-color: white;
    -webkit-box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.8);
}

@media (max-width: 1024px) {
    .hero-section-title {
        font-size: 4vw;
    }
}

/* 新メインビジュアル見出し ここまで */

/* ##### メインビジュアル hero section ここまで ##### */
/* ##### カスタムコンテンツ custom contents ##### */
.news-num {
    display: inline-block;
    padding: 3px 10px;
    font-weight: bold;
    font-size: 12px;
    color: white;
    line-height: 1;
    border: 1px solid #15569d;
    border-radius: 3px;
    background-color: #15569d;
}

.list-iframe .category,
.tab-01 .category span {
    display: inline-block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin: 1%;
    padding: 6px 15px;
    font-weight: 400;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    border-radius: 30px;
    background-color: #15569d;
}

.list-iframe .category.製品ニュース,
.tab-01 .category span.製品ニュース{
    background-color: darkorange;
}

.list-iframe .category.IRニュース,
.list-iframe .category.ＩＲニュース,
.tab-01 .category span.IRニュース,
.tab-01 .category span.ＩＲニュース {
    background-color: #aacad5;
}

.list-iframe .category.展示会ニュース,
.tab-01 .category span.展示会ニュース{
    background-color: #74b32b;
}

.date {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #15569d;
}

.list-cc-01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-cc-01 dt {
    width: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-right: 1em;
}

.list-cc-01 dt .date,
.list-cc-01 dt .category {
    width: 48%;
    margin: 1%;
}

.list-cc-01 dt .date {
    text-align: center;
}

.list-cc-01 dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}


.list-cc-02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.list-cc-02 dt {
    width: 110px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.list-cc-02 dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-left: 1em;
}

.list-cc-01 dd a .up-reader1 *,
.list-cc-02 dd a .up-reader1 * {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .list-cc-01 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-cc-01 dt {
        width: 100%;
        max-width: 320px;
    }

    .list-cc-01 dd {
        width: 100%;
        padding-left: 1em;
    }

    .list-cc-02 {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-cc-02 dt {
        width: 100%;
    }

    .list-cc-02 dd {
        width: 100%;
        margin-left: 0;
    }

    .list-iframe {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .list-iframe dt {
        width: 280px;
    }

    .list-iframe dd {
        width: 10%;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .list-iframe {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .list-iframe dt {
        width: 100%;
        max-width: 250px;
    }

    .list-iframe dd {
        width: 100%;
        padding-left: 1em;
    }
}

@media (max-width: 599px) {
    .category,
    .tab-01 .category span {
        font-size: 10px;
    }

    .list-cc-01 dt {
        max-width: 250px;
    }

    .list-iframe dt {
        width: 280px;
        max-width: 280px;
    }
}

/* ##### カスタムコンテンツ custom contents ここまで ##### */
/* ##### お問い合わせ メールフォーム form ##### */
.must {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 10px;
    font-size: 12px;
    color: #f00;
    line-height: 1.2;
    border: 1px solid #f00;
    background-color: white;
    margin-left: 10px;
}

.contact-wrap.form-negative .contact-form {
    /* pointer-events: none;
    position: relative; */
    display: none;
}

[data-element-id] .contact-wrap.form-negative .contact-form {
  display: block;
}

.contact-wrap.form-negative form:hover {
    cursor: not-allowed;
}

.contact-wrap.form-negative .contact-form::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.contact-form {
    padding-bottom: 30px;
}

.contact-form-inner {
    border: 1px solid #15569d;
    background-color: #f0f0f0;
}

.contact-select-content {
    padding: 3em 2em;
}

.contact-balloon {
    max-width: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, calc(-100% - 20px));
    transform: translate(0, calc(-100% - 20px));
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 1;
}

.contact-balloon.hidden {
    visibility: hidden;
    opacity: 0;
}

.contact-balloon-inner {
    padding: 30px 50px;
    font-size: 18px;
    color: white;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    position: relative;
}

.contact-balloon-inner::after {
    content: "";
    width: 0;
    height: 0;
    border-width: 10px 10px 0 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
    position: absolute;
    bottom: -10px;
    left: 5em;
}

.contact-select-item {
    position: relative;
}

/* .contact-select-item::after {
    content: "";
    width: 0;
    height: 0;
    display: inline-block;
    border-width: 20px 10px 0 10px;
    border-style: solid;
    border-color: #f2ba11 transparent transparent transparent;
    position: absolute;
    top: 1.2em;
    right: 1em;
} */

/* .contact-select-item select {
    width: 100%;
    padding: 1em 3em;
    font-size: 20px !important;
    border: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
} */
.contact-radio-tab {
    padding: 2em 3em;
    border-radius: 10px;
    background-color: white;
}

.contact-radio-tab label {
    display: block;
    padding: 0.7em 1em 0.7em 2.5em;
    font-weight: 400;
    font-size: 22px;
    border-radius: 3px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    position: relative;
}

.contact-radio-tab label::before {
    content: "";
    width: 1.2em;
    height: 1.2em;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 5px;
    background-color: white;
    position: absolute;
    top: 0.9em;
    left: 0.5em;
}

.contact-radio-tab label:hover {
    background-color: #c2d1e1;
    cursor: pointer;
}

.contact-radio-tab label+input+label {
    margin-top: 0.5em;
}

.contact-radio-tab input {
    display: none;
}

.contact-radio-tab input:checked+label {
    background-color: #c2d1e1;
}

.contact-radio-tab input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 110%;
    color: #15569d;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: 0.8em;
    left: 0.6em;
}

.contact-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.contact_check .contact-item {
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

.contact-item.destination {
    display: none !important;
}

.contact-item.destination dd input {
    width: auto;
}

.contact-item.destination dd label+input {
    margin-left: 1em;
}

.contact-item+.contact-item {
    border-top: 1px solid #15569d;
}

.contact-item dt,
.contact-item dd {
    /* padding: 20px 30px; */
    padding: 10px;
}

.contact-item dt {
    width: 30%;
    display: -webkit-box;
    display: -ms-flexbox;
    /* display: flex; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

.contact-item dd {
    width: 10%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.contact-item dd .note {
    margin-top: 5px;
    font-size: 12px;
}

.contact-item dd input,
.contact-item dd textarea {
    width: 100%;
    /* padding: 15px 10px; */
    padding: 5px;
    outline: none;
    border: 1px solid #82a5c8;
    background-color: white;
}

.contact-item dd textarea {
    height: 150px;
    min-height: 100px;
}

.contact-item dd.radiobtn label {
    display: inline-block;
    padding: 0 10px 0 30px;
    position: relative;
}

.contact-item dd.radiobtn label::before {
    content: "";
    width: 20px;
    height: 20px;
    display: block;
    border: 2px solid #dcdcdc;
    border-radius: 3px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
}

.contact-item dd.radiobtn label:hover {
    text-decoration: underline;
    cursor: pointer;
}

.contact-item dd.radiobtn input {
    display: none;
}

.contact-item dd.radiobtn input:checked+label {
    text-decoration: underline;
}

.contact-item dd.radiobtn input:checked+label::after {
    content: "\f00c";
    width: 0;
    height: 0;
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: #15569d;
    line-height: 1;
    background-color: transparent;
    position: absolute;
    top: -3px;
    left: 2px;
}

.contact-item dd.radiobtn input+label {
    margin-left: 15px;
}

.contact-item dd .code-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
    margin-bottom: 10px;
}

.contact-item dd .code-wrap span {
    display: inline-block;
}

.contact-item dd .code-wrap .input-code3 {
    width: 150px;
    max-width: 40%;
}

.contact-item dd .code-wrap .input-code4 {
    width: 200px;
    max-width: 50%;
}

.contact-item dd .code-wrap .hyphen {
    margin: 0 5px;
}

.contact-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 50px 0;
}

.contact-btns li {
    margin-left: 30px;
    margin-right: 30px;
}

@media (max-width: 1024px) {
    /* .contact-select-item select {
        padding: 1em 3em 1em 1em;
        font-size: 16px !important;
    } */

    .contact-radio-tab label {
        font-size: 20px;
    }

    .contact-item dt,
    .contact-item dd {
        width: 100%;
        padding: 10px;
    }

    .contact-item dd.radiobtn label {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .contact-btns {
        width: 95%;
        margin: 30px auto;
    }

    .contact-btns li {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 599px) {
    /* .contact-select-content {
        padding: 2em;
    }

    .contact-select-item select option {
        margin-bottom: 15px;
        white-space: initial;
    }

    .contact-select-item select option:last-of-type {
        margin-bottom: 0;
    } */

    .contact-radio-tab {
        padding: 2em 1.5em;
    }

    .contact-radio-tab label {
        font-size: 16px;
    }

    .contact-balloon-inner {
        padding: 15px 30px;
    }

    .contact-balloon-inner::after {
        left: 2em;
    }

    .contact-item dd {
        padding-top: 0;
    }

    .contact-item dd.radiobtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contact-item dd.radiobtn label {
        margin-bottom: 20px;
    }

    .contact-btns li {
        margin-left: 5px;
        margin-right: 5px;
    }
}

/* ##### お問い合わせ メールフォーム form ここまで ##### */
/* ##### Googleサイト内検索 ##### */

header #gsrchBox {
    width: 400px;
    float: none;
    visibility: hidden;
    margin: 0;
    padding: 5px;
    background: #15569d;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 19;
}

header #gsrchBox.active {
    visibility: visible;
    opacity: 1;
}

header .gsc-control-cse {
    padding: 10px !important;
}

header form.gsc-search-box {
    margin: 0 !important;
}

header table.gsc-search-box {
    margin: 0 !important;
}

header .gsc-search-button.gsc-search-button-v2 {
    border: #15569d !important;
    background: #15569d !important;
}

@media (max-width: 1024px) {
    header #gsrchBox {
        visibility: visible;
        opacity: 1;
        position: fixed;
        top: auto;
        bottom: 10px;
        left: auto;
        right: 10px;
    }
}

@media (max-width: 599px) {
    header #gsrchBox {
        width: auto;
        left: 10px;
        right: 10px;
    }

    header .gsc-control-cse {
        padding: 5px !important;
    }
}

/* ##### Googleサイト内検索 ここまで ##### */
/* ##### 見たまま編集 ##### */
[data-element-id] .mobile-only,
[data-element-id] .sp-only,
[data-element-id] .nav-list>li .acc-btn_mobile {
    min-width: 100px;
    display: block;
    margin: 2px;
    padding-top: 1.5em;
    border: 2px solid green;
    position: relative;
}

[data-element-id] .nav-list>li .acc-btn_mobile {
    min-width: 280px;
    display: inline-block;
}

[data-element-id] .mobile-only::before,
[data-element-id] .sp-only::before,
[data-element-id] .nav-list>li .acc-btn_mobile::before {
    content: "スマホナビ用";
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .nav-list>li .acc-btn_mobile::before {
    content: "スマホナビ用・アコーディオンのボタン";
}

[data-element-id] header {
    position: static;
}

[data-element-id] .header-content {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

[data-element-id] .header-link {
    margin-top: 100px;
}

[data-element-id] nav {
    overflow: visible;
}

[data-element-id] .nav-list {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
}

[data-element-id] .nav-list>li {
    min-width: 19%;
}

[data-element-id] .nav-list>li.nav-to-top a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-align: center;
}

[data-element-id] .nav-list>li.nav-to-top a .icon-small-home {
    margin-right: 0.5em;
}

[data-element-id] .nav-list>li.nav-to-top a .text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

[data-element-id] .megamenu-menu {
    width: 100%;
    margin: 2px;
    padding: 10px;
    border: 2px solid darkorange;
    position: static;
}

[data-element-id] .megamenu-item {
    padding: 10px;
}

[data-element-id] .megamenu-menu .megamenu-box {
    visibility: visible;
    opacity: 1;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    position: static;
}

[data-element-id] .tab-01 .tab-box,
[data-element-id] .tab-02 .tab-box {
    height: auto;
    padding-top: 2em;
    border: 2px solid darkorange;
    position: relative;
}

[data-element-id] .tab-01 .tab-box+.tab-box,
[data-element-id] .tab-02 .tab-box+.tab-box {
    margin-top: 30px;
}

[data-element-id] .tab-01 .tab-box::before,
[data-element-id] .tab-02 .tab-box::before {
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 14px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: darkorange;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .tab-01 .tab-box:nth-of-type(1):before,
[data-element-id] .tab-02 .tab-box:nth-of-type(1):before {
    content: "総合";
}

[data-element-id] .tab-01 .tab-box:nth-of-type(2):before,
[data-element-id] .tab-02 .tab-box:nth-of-type(2):before {
    content: "製品ニュース";
}

[data-element-id] .tab-01 .tab-box:nth-of-type(3):before,
[data-element-id] .tab-02 .tab-box:nth-of-type(3):before {
    content: "IRニュース";
}

[data-element-id] .tab-01 .tab-box:nth-of-type(4):before,
[data-element-id] .tab-02 .tab-box:nth-of-type(4):before {
    content: "展示会ニュース";
}

[data-element-id] .tab-01 .tab-box .list-cc-01 dt .category,
[data-element-id] .tab-02 .tab-box .list-cc-01 dt .category,
[data-element-id] .tab-01 .tab-box .list-cc-01 dt .date,
[data-element-id] .tab-02 .tab-box .list-cc-01 dt .date,
[data-element-id] .list-cc-02 dt .date {
    font-size: 10px;
    line-height: 1.2;
}

[data-element-id] .slide01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

[data-element-id] .slide01-item {
    width: 18%;
    margin: 1%;
    border: 2px solid green;
}

[data-element-id] .slide01-item a .name-tag {
    position: static;
}

[data-element-id] .list-table.-ver6:nth-of-type(n+2),
[data-element-id] .list-table.-ver7:nth-of-type(n+2) {
    display: none;
}

[data-element-id] .download-name {
    width: auto;
    min-width: 80px;
    height: auto;
    display: inline-block;
    visibility: visible;
    margin: 2px;
    padding: 2em 5px 5px;
    font-size: 12px;
    border: 2px solid green;
    opacity: 1;
    position: relative;
}

[data-element-id] .download-name::before {
    content: "ファイル名";
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 10px;
    color: white;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .list-catalog-link {
    padding: 2em 5px 5px;
    border: 2px solid darkorange;
    position: relative;
}

[data-element-id] .list-catalog-link::before {
    content: "aタグのhrefの値を空にするとボタンが無効（グレーアウト）になります";
    display: block;
    padding: 2px 10px;
    font-size: 10px;
    color: white;
    text-align: center;
    background-color: darkorange;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] a[data-href*="pdf"],
[data-element-id] a[data-href*="PDF"],
[data-element-id] a[data-href*="gif"],
[data-element-id] a[data-href*="zip"],
[data-element-id] a[data-href*="STEP"] {
    min-width: 68px;
    padding-top: 1.5em;
    border: none !important;
    position: relative;
}

[data-element-id] a[data-href*="pdf"]::before,
[data-element-id] a[data-href*="PDF"]::before,
[data-element-id] a[data-href*="gif"]::before,
[data-element-id] a[data-href*="zip"]::before,
[data-element-id] a[data-href*="STEP"]::before {
    width: auto;
    min-width: auto;
    height: auto;
    display: inline-block;
    padding: 2px;
    font-size: 10px;
    color: white;
    line-height: 1;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
}

[data-element-id] a[data-href*="pdf"],
[data-element-id] a[data-href*="PDF"] {
    outline: 2px solid darkorange;
}

[data-element-id] a[data-href*="pdf"]::before,
[data-element-id] a[data-href*="PDF"]::before {
    content: "PDF設定済";
    background-color: darkorange;
}

[data-element-id] a[data-href*="gif"] {
    outline: 2px solid olive;
}

[data-element-id] a[data-href*="gif"]::before {
    content: "gif設定済";
    background-color: olive;
}

[data-element-id] a[data-href*="zip"] {
    outline: 2px solid firebrick;
}

[data-element-id] a[data-href*="zip"]::before {
    content: "zip設定済";
    background-color: firebrick;
}

[data-element-id] a[data-href*="STEP"] {
    outline: 2px solid mediumvioletred;
}

[data-element-id] a[data-href*="STEP"]::before {
    content: "STEP設定済";
    background-color: mediumvioletred;
}

[data-element-id] a[data-href=""] {
    padding-top: 1.5em;
    border: none !important;
    background: #999;
    position: relative;
}

[data-element-id] a[data-href=""]::before {
    content: "リンク無効";
    width: auto;
    min-width: auto;
    display: inline-block;
    padding: 2px;
    font-size: 10px;
    color: white;
    line-height: 1;
    background-color: #696969;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
}

[data-element-id] .contact-wrap.form-negative .contact-form::before {
    display: none;
}

[data-element-id] .iframe-box {
    width: 100%;
    max-width: 1000px;
    margin: 100px auto;
}

[data-element-id] .contact-select-content {
    margin: 30px 0;
    border: 2px solid darkorange;
}

[data-element-id] .contact-balloon.text-editable {
    position: absolute !important;
}

[data-element-id] .list-download li .parallel {
    -webkit-box-align: start;
    align-items: flex-start;
    -ms-flex-align: start;
}

[data-element-id] .modal-wrap {
    margin-top: 1em;
    padding: 1.5em 10px 10px;
    border: 2px solid green;
    position: relative;
}

[data-element-id] .modal-wrap::before {
    content: "モーダルウィンドウの中身です。";
    width: auto;
    min-width: auto;
    display: inline-block;
    padding: 2px;
    font-size: 10px;
    color: white;
    line-height: 1;
    background-color: green;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
}

[data-element-id] .modal-window {
    display: block;
    padding: 1.5em 10px 10px;
    background-color: white;
    position: relative;
}

[data-element-id] .modal-window::before {
    content: "#"attr(id);
    width: auto;
    min-width: auto;
    display: inline-block;
    padding: 2px;
    font-weight: bold;
    font-size: 10px;
    color: white;
    line-height: 1;
    background-color: green;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
}

[data-element-id] a[data-href*="#modal"] {
    padding-top: 1.5em;
    border: none !important;
    background-color: green;
    position: relative;
}

[data-element-id] a[data-href*="#modal"]::before {
    content: attr(data-href);
    width: auto;
    min-width: auto;
    display: inline-block;
    padding: 2px;
    font-size: 10px;
    color: white;
    line-height: 1;
    background-color: green;
    -webkit-transform: translateX(0) !important;
    transform: translateX(0) !important;
    position: absolute;
    top: 0;
    bottom: auto;
    left: 0;
    z-index: 5;
}

[data-element-id].list-targetarea,
[data-element-id].list-company_targetarea,
[data-element-id].list-kind_targetarea {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    visibility: visible;
    margin: 10px auto;
    padding: 1.5em 20px 20px;
    border: 2px solid green;
    opacity: 1;
    position: relative;
}

[data-element-id].list-targetarea li,
[data-element-id].list-kind_targetarea li {
    width: 25%;
}

[data-element-id].list-targetarea li a,
[data-element-id].list-company_targetarea li a,
[data-element-id].list-kind_targetarea li a {
    display: inline-block;
    padding: 5px;
    font-size: 12px;
}

[data-element-id].list-targetarea::before,
[data-element-id].list-company_targetarea::before,
[data-element-id].list-kind_targetarea::before {
    content: "場所で探すのプルダウン用のリンク（jsで処理しています）";
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id].list-company_targetarea::before {
    content: "会社名で探すのプルダウン用のリンク（jsで処理しています）";
}

[data-element-id].list-company_targetarea li:nth-of-type(n+2) {
    display: none;
}

[data-element-id].list-kind_targetarea::before {
    content: "種別で探すのプルダウン用のリンク（jsで処理しています）";
}

[data-element-id] .onchange-notice {
    padding-top: 2em !important;
    background-color: orangered;
    position: relative;
}

[data-element-id] .onchange-notice::before {
    content: "編集時にはselect.companyのonchange属性の値の最後のvalueの前に半角プラスをつけること";
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 10px;
    color: white;
    line-height: 1.2;
    background-color: orangered;
    position: absolute;
    top: 0;
    left: 0;
}

[data-element-id] .contact-wrap.form-negative form:hover {
    cursor: inherit;
}

[data-element-id] .contact-item.destination {
    display: flex !important;
    padding-top: 1em;
    border: 2px solid green;
    position: relative;
}

[data-element-id] .contact-item.destination::before {
    content: "宛先選択用（親子カスタムコンテンツ）";
    width: 100%;
    display: block;
    padding: 2px 5px;
    font-size: 12px;
    color: white;
    line-height: 1.2;
    text-align: center;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
}


/* 2022.10.04 */

.hissu01{
  display: inline-block;
    margin-top: 0 !important;
    padding: 0px 0px !important;
    font-size: 14px !important;
    color: #f00; 
    line-height: 1.2;
    border: none !important;
    margin-left: 3px !important;
    background-color: #f0f4f4 !important;
} 
.mb20 {
  margin-bottom: 20px;
}
.btn-mini.kikaku a::before {
  top: 1.2rem;
}

.list-iframe .category.Product,
.tab-01 .category span.Product {
    background-color: darkorange;
}

.list-iframe .category.Exhibition,
.tab-01 .category span.Exhibition{
    background-color: #74b32b;
}

.list-iframe .category.News,
.tab-01 .category span.News{
    background-color: #15569d;
}

.fs12 {
  font-size: 12px;
}

.contact-item dd.en-cont input {
  width: 20px;
}

.tab-02 .en-news .tab-btn {
  width: calc(100% / 3);
}

.title-h {
  opacity: 0;
}

.title-h:hover {
  opacity: 1;
}

.list-cc-01.en-new dd {
  width: 40%;
}

@media (max-width: 1024px) {
  .list-cc-01.en-new dd {
    width: 40%;
  }
}

@media (max-width: 599px) {
  .tab-02 .en-news .tab-btn {
    min-width: 100px;
  }
  .list-cc-01.en-new dd {
    width: 100%;
  }
  .list-link-pdf {
    margin-top: 10px;
  }
  .ml24 {
    margin-left: 24%;
  }
}

.new-english-top .nav-list>li.current>a, .nav-list>li.current>span {
  border-bottom: none;
}

/* .new-english-top .header-item a {
  padding: 1px;
  font-size: 12px;
} */

.fs10 {
  font-size: 10px;
}

.new-english-top .header-login .text {
  line-height: 1;
}

.new-english .tab-01 .category span.News {
  background-color: darkorange;
}

.new-english .tab-01 .category span.News {
  background-color: #74b32b;
}

@media (max-width: 1024px) {
  .eng .box-link-item:nth-of-type(n+5) {
    margin-top: 0;
    margin-left: 4%;
  }
  .eng .box-link-item {
    width: 17%;
  }
  .eng .box-link-item.inclusion-logo {
    width: 100%;
  
}
}
@media (max-width: 599px) {
  /* .eng .box-link-item:nth-of-type(n+5) {
    margin-top: 0;
    margin-left: 4%;
  }
  .eng .box-link-item {
    width: 30%;
  }
  .eng .box-link-item:nth-of-type(n+3) {
    margin-top: -12px;
  }
  .eng .box-link-item:nth-of-type(5) {
    margin-left: 6%;
  } */
  .eng .box-link-item {
        width: 30%;
        margin: 10% 5%;
    }

  .eng .box-link-item:nth-of-type(3) {
        margin-left: auto;
    }

  /* .eng .box-link-item:nth-of-type(5) {
        margin-left: 6%;
    } */

  .eng .box-link-item:nth-of-type(4) {
        margin-top: -12%;
        margin-left: 25%;
    }
  .eng .box-link-item:nth-of-type(5) {
        margin-top: -12%;
        margin-left: 5%;
    }

  .eng .box-link-item.inclusion-logo {
        margin-top: 0;
    }

}

/*ヘッダー変更　2023/12/26*/
.megamenu-box {
  width: 60%;
  margin: auto 0 auto auto;
}
.megamenu-item .common-nav-list.ca3 {
  width: calc(100% / 3);
}
nav {
  display: block;
}
.nav-list {
  padding: 0 50px 0;
}
.nav-list>li>a, .nav-list>li>span {
  padding: 5px 10px 0;
  font-size: 16px;
  font-weight: 500;
}
.nav-list>li>a img {
  width: 20px;
}
.nav-list.pc-only {
  margin-top: 5px;
  margin-bottom: 10px;
}
.nav-list.pc-only li {
  line-height: initial;
}
.nav-list.pc-only>li+li {
  margin-left: 5px;
}
.nav-list.pc-only a {
  font-size: 14px;
  font-weight: normal;
  border-bottom: initial;
  padding: 5px 10px;
}
.nav-list.pc-only .member {
  margin-right: 10px;
}
.nav-list.pc-only .member a {
  background: #004ea2;
  color: #fff;
}
.nav-list>li.en a img {
  margin-right: 5px;
}

/* .megamenu-box をデフォルトで非表示にする */
.megamenu-box {
    display: none;
}

/* JavaScriptを使用してこのクラスを追加したときに表示する */
.megamenu-box.active {
    display: block;
}

[data-element-id].megamenu-box {
  display: block;
}

.megamenu-item {
  padding: 20px;
}

.common-nav-list dd ul li+li {
  margin-top: 0.3em;
}

@media (max-width: 1024px) {
  nav {
    display: initial;
  }
  .pc-only {
    display: none;
  }
  .nav-list {
    max-height: 750px;
  }
  .megamenu-box {
    width: 100%;
    margin: auto;
  }
  .megamenu-item .common-nav-list.ca3 {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .nav-list {
    padding: 10px;
    max-height: 400px;
  }
}

.txt-01 {
  font-size: 30px;
  text-align: center;
  color: red;
  margin-bottom: 20px;
}

/**2024/12/05**/
.megamenu-box.g-recruit {
  width: 20%;
}
.megamenu-box.g-recruit .megamenu-item .common-nav-list.ca3 {
  width: calc(100% / 1);
}

@media (max-width: 1024px){
  .megamenu-box.g-recruit {
    width: 100%;
  }
}

.sitemap-link {
  text-align: center;
  margin-top: 50px;
}

.sitemap-link a {
    display: inline-block;
    padding: 20px 30px;
    font-weight: bold;
    color: white;
    text-align: center;
    background: radial-gradient(ellipse at top left, #30b8d0 0%, #15569d 100%);
}

/**2025/07/24**/
.catalog-box {
  height: 500px;
}

.catalog-box iframe {
  height: 100%;
}

@media (max-width: 599px){
  .catalog-box {
    height: 210px;
  }
}

/* 決算説明会付きの月セル共通 */
.irpage #ir_calendar .cal-ir .calendar-element.has-briefing {
  position: relative;
}

/* PC・タブレット（600px以上） */
@media (min-width: 600px) {
  /* 月 → 決算説明会 への縦線 */
  .irpage #ir_calendar .cal-ir .calendar-element.has-briefing::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;   /* 線の長さ。サイト見ながら調整してOK */
    background: #000;
  }

  /* 下側の「決算説明会」（見た目は .schedule に合わせる） */
  .irpage #ir_calendar .cal-ir .calendar-element.has-briefing .schedule-briefing {
    position: absolute;
    top: calc(100% + 40px);  /* 上の height と揃える */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }
}

/* スマホ（599px以下） */
@media (max-width: 599px) {
  .irpage #ir_calendar .cal-ir .calendar-element.has-briefing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  /* SPでは縦線はナシ（既存レイアウト優先） */
  .irpage #ir_calendar .cal-ir .calendar-element.has-briefing::after {
    display: none;
  }

  .irpage #ir_calendar .cal-ir .calendar-element.has-briefing .schedule-briefing {
    position: static;
    transform: none;
  }
  
  .irpage #ir_calendar .cal-ir .calendar-element .ver{
    white-space: nowrap;
  }
}

/* 決算説明会用：同じセル内で2段に並べるだけ */
.irpage #ir_calendar .cal-ir .cal-ir-item.downer .schedule + .schedule.schedule-briefing {
  margin-top: 12px;   /* 吹き出し同士の縦の間隔。お好みで調整 */
}

@media screen and (min-width:1025px) {
  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus30{
      position: relative;
      right: -30px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus25{
      position: relative;
      right: -25px;
      height: max-content;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .right125{
      position: relative;
      right: 125px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .leftminus50{
      position: relative;
      left: -50px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-element.right60{
    position: relative;
      left: -27px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-element.leftminus40{
    position: relative;
      left: -52px; 
  }

}

@media screen and (min-width:600px) and (max-width:1024px) {
  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus30 .schedule{
      min-width: inherit;
      padding-right: 10px;
      padding-left: 10px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus30{
      position: relative;
      right: -20px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .right125{
      position: relative;
      right: 95px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-element.right60{
      position: relative;
      right: 60px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-element.leftminus40{
    position: relative;
    left: -40px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .right-to-bottom{
    min-width: inherit;
      padding-right: 10px;
      padding-left: 10px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus25.schedule{
    min-width: inherit;
      padding-right: 10px;
      padding-left: 10px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item.upper .schedule{
    min-width: inherit;
      padding-right: 10px;
      padding-left: 10px;  
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item.downer .schedule{
    min-width: inherit;
      padding-right: 10px;
      padding-left: 10px;
  }
}

@media screen and (max-width:599px) {
  .irpage #ir_calendar .cal-ir .cal-ir-item .rightminus25{
      position: relative;
      top: -35px;
  }

  .irpage #ir_calendar .cal-ir .cal-ir-item .right125 .schedule{
      position: relative;
      top: -70px;
  }
  
  .ir #ir_calendar .cal-ir .calendar-element .ver{
    white-space: nowrap;
  }
}

