@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Josefin Sans";
    src: local("Josefin Sans"),
        url("../fonts/JosefinSans-Bold.woff2") format("woff2"),
        url("../fonts/JosefinSans-Bold.woff") format("woff");
    font-weight: bold;
}

@font-face {
    font-family: "游ゴシック";
    src: url("../fonts/YuGothR.woff2") format("woff2"),
        url("../fonts/YuGothR.woff") format("woff");
    font-weight: normal;
}

@font-face {
    font-family: "游ゴシック";
    src: url("../fonts/YuGothM.woff2") format("woff2"),
        url("../fonts/YuGothM.woff") format("woff");
    font-weight: 500;
}

@font-face {
    font-family: "游ゴシック";
    src: url("../fonts/YuGothB.woff2") format("woff2"),
        url("../fonts/YuGothB.woff") format("woff");
    font-weight: bold;
}

body {
    font-family: "游ゴシック", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 14px;
    color: #000;
    min-width: 1440px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 500;
}

main {
    padding-top: 124px;
    background-color: #F5F5F5;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

a:hover {
    opacity: 0.6;
}

.container {
    width: 1230px;
    margin: auto;
}

.sp-only {
    display: none;
}

.bold {
    font-weight: bold;
}

.red {
    color: #FF2700;
}

#top article:not(:last-child) {
    margin-bottom: 88px;
}

#top .heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#top .heading h2 {
    font-size: 22px;
}

.more-link {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
}

.more-link::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-left: 12px;
    margin-bottom: 1px;
}

.sub-page {
    padding-bottom: 100px;
}

.sub-page h1 {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.cat-select-wrap ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin: -10px;
}

.cat-select-wrap ul li {
    margin: 10px;
}

.cat-select-wrap ul li a {
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #FABE00;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    padding: 10px 12px;
    display: inline-block;
}

.select-wrap {
    position: relative;
    display: inline-block;
}

.select-wrap select {
    border: 1px solid #FABE00;
    font-size: 1em;
    padding: 8px 24px 9px 12px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: unset;
    cursor: pointer;
    outline: none;
    width: 100%;
    background-color: #fff;
    letter-spacing: 0.5px;
}

.select-wrap::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    -webkit-transform: rotate(45deg);
    transform: rotate(135deg);
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
}

.input-text {
    border: 1px solid #E6E6E6;
    font-size: 14px;
    padding: 7px 12px;
    height: 35px;
    outline: none;
}

.narrow-down-wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.narrow-down-wrap .cat-contents {
    margin-right: 8px;
}

.narrow-down-wrap .select-wrap select {
    border-color: #E6E6E6;
    width: 156px;
}

.narrow-down-wrap .keyword-search {
    position: relative;
}

.narrow-down-wrap .keyword-search .input-text {
    width: 280px;
}

.narrow-down-wrap .keyword-search .search-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: absolute;
    top: 46%;
    right: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.narrow-down-wrap .keyword-search .search-btn img {
    height: 10px;
}

.info .pager a {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    margin-left: 4px;
    position: relative;
    cursor: pointer;
}

.info .pager a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
}

.info .pager .next::after {
    right: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.info .pager .prev::after {
    left: 12px;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

/* カスタムClass用 */

.gold-font {
    color: #A28A00;
}

.pink-font {
    color: #FF0099;
}

.blue-font {
    color: #007bd9;
}

.orange-font {
    color: #FF9900;
}

.green-font {
    color: #007C0E;
}

.redbrown-font {
    color: #a60000;
}

.red-font {
    color: #ff0000;
}

.gray-font {
    color: #999999;
}

.yellow-bg {
    background-color: #FFF000;
}

.pink-bg {
    background-color: #FFBFDA;
}

.blue-bg {
    background-color: #A1D0FF;
}

.orange-bg {
    background-color: #FFBC62;
}

.green-bg {
    background-color: #85EC77;
}

.salmonorange-bg {
    background-color: #FF7964;
}

.gray-bg {
    background-color: #999999;
}

.font-10 {
    font-size: 10px;
}

.font-20 {
    font-size: 20px;
}

.font-32 {
    font-size: 32px;
}

/* ヘッダー */

header {
    background-color: #fff;
    z-index: 99;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
}

.head-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1420px;
    margin: auto;
    padding: 12px 48px;
}

header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 28px;
    font-weight: bold;
    font-family: "Josefin Sans";
    letter-spacing: 1px;
}

header .logo a img {
    width: 45px;
    margin-right: 32px;
}

header .logo a .site-name {
    padding-top: 0.2em;
}

header .right-area {
    display: flex;
    align-items: center;
}

.navi-btn-wrap {
    display: flex;
    align-items: center;
}

.navi-btn {
    width: 28px;
    position: relative;
    cursor: pointer;
    display: inline-block;
    z-index: 1;
    height: 18px;
}

.navi-btn span {
    position: absolute;
    display: block;
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 5px;
    transition: all .3s;
    right: 0;
}

.navi-btn span:nth-of-type(2) {
    top: 8px;
    opacity: 1;
    transition: all .3s;
    width: 19px;
}

.navi-btn span:last-of-type {
    top: 16px;
    width: 12px;
}

.navi-btn-on span:first-of-type {
    transform: rotate(-45deg) translateY(8px) translateX(-6px);
}

.navi-btn-on span:nth-of-type(2) {
    transform: translateX(0);
    opacity: 0;
}

.navi-btn-on span:last-of-type {
    transform: rotate(45deg) translateY(-9px) translateX(-7px);
}

header .head-inner .sns {
    display: flex;
    align-items: center;
    list-style: none;
}

header .head-inner li {
    margin-right: 40px;
}

header .head-inner li img {
    width: 28px;
}

#gnav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    text-align: center;
    display: none;
    z-index: 2;
    height: 100dvh;
    overflow: auto;
}

.nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1420px;
    margin: auto;
    padding: 12px 48px;
    position: sticky;
    top: 0;
    background: #000;
}

.nav-head .close-btn {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-block;
    cursor: pointer;
}

.nav-head .close-btn span {
    display: block;
    position: absolute;
    width: 32px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 3px;
    background-color: #fff;
}

.nav-head .close-btn span:first-child {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-head .close-btn span:nth-child(2) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#gnav .logo a {
    color: #fff;
}

#gnav nav {
    padding: 60px 48px;
    display: inline-flex;
}

#gnav nav ul {
    list-style: none;
    text-align: left;
}

#gnav nav>ul:first-child {
    margin-right: 100px;
}

#gnav nav ul li {
    margin-bottom: 40px;
}

#gnav nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 28px;
    letter-spacing: 1px;
}

#gnav nav ul li a small {
    font-size: 20px;
}

#gnav .sns ul {
    display: flex;
}

#gnav .sns ul li {
    margin-bottom: 0;
    margin-right: 40px;
}

#gnav .sns ul li img {
    width: 60px;
}

/* フッター */

footer {
    background-color: #000;
    color: #fff;
    padding-top: 36px;
    padding-bottom: 22px;
    position: relative;
}

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

footer .logo {
    flex-shrink: 0;
}

footer .logo img {
    width: 84px;
}

.foot-nav {
    display: flex;
}

.foot-nav ul {
    list-style: none;
    margin-left: 192px;
}

.foot-nav ul:first-child {
    margin-left: 0;
}

.foot-nav ul li {
    margin-bottom: 12px;
}

.foot-nav ul li a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.foot-nav ul li .cleanline {
    border: 1px solid;
    border-radius: 6px;
    padding: 11px 14px;
    margin-top: 4px;
}

.foot-nav ul li .cleanline .title {
    font-size: 12px;
}

.foot-nav ul li.portal-request {
    margin-top: 36px;
    margin-bottom: 0;
}

.foot-nav ul li.portal-request a {
    font-weight: 500;
}

footer .cleanline .name {
    display: flex;
    align-items: center;
    margin-top: 4px;
}

footer .cleanline .name img {
    width: 16px;
    margin-right: 4px;
}

footer #pagetop {
    position: absolute;
    right: 0;
    top: -140px;
    display: flex;
}

footer #pagetop a {
    text-decoration: none;
    background-color: #fff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    color: #000;
    font-weight: bold;
    font-size: 12px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: relative;
    padding: 31px 11px 8px 11px;
    display: inline-block;
    letter-spacing: 1px;
}

footer #pagetop a::before,
footer #pagetop a::after {
    content: "";
    width: 5px;
    height: 5px;
    border-top: 2px solid #F9DA49;
    border-right: 2px solid #F9DA49;
    position: absolute;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
    right: 0;
    left: 0;
    margin: auto;
    top: 12px;
}

footer #pagetop a::after {
    top: 18px;
}

/* TOP */

#top {
    padding-bottom: 88px;
}

#top-tools .tool ul {
    list-style: none;
    display: flex;
    margin: 0 -12px;
}

#top-tools .tool ul li {
    padding: 0 12px;
}

#top-tools .tool ul li a {
    display: block;
}

#top-tools .tool ul li a img {
    width: 100%;
}

#top #top-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

#top-info .info-l {
    width: 600px;
    margin-right: 32px;
}

#top-info .info-r {
    width: 600px;
}

#public h2 {
    display: flex;
}

#public h2 img {
    height: 32px;
    margin-right: 4px;
}

#public .news-box h2 {
    display: block;
}

.news-list {
    background-color: #fff;
    padding: 4px 16px;
    list-style: none;
}

.news-list li {
    border-bottom: 1px solid #E6E6E6;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li a {
    display: flex;
    color: #000;
    text-decoration: none;
    align-items: center;
    padding: 8px 0 4px 0;
}

.news-list .date-area {
    flex-shrink: 0;
    margin-right: 20px;
    margin-top: auto;
}

.news-list .date {
    font-size: 14px;
    letter-spacing: 1px;
}

.news-list .cat-area {
    flex-shrink: 0;
    width: 100px;
}

.news-list .cat-area .kind {
    font-size: 14px;
    font-weight: bold;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    padding-right: 8px;
    letter-spacing: 1px;
}

.news-list .title-area {
    display: flex;
    align-items: center;
    padding: 4px 0;
    border-left: 1px solid #A2A2A2;
    padding-left: 16px;
    overflow: hidden;
}

.news-list .title-area .important {
    margin-right: 8px;
}

.news-list .title-area .title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
}

.info .new {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    padding: 0 6px;
    font-weight: bold;
    display: inline-block;
    height: 18px;
}

.info .cat {
    background-color: #F9DA49;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 4px;
    display: inline-block;
    height: 17px;
    line-height: 16px;
    letter-spacing: 1px;
}

.info .important {
    background-color: #FF2700;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    padding: 0 6px;
    font-weight: bold;
    display: inline-block;
    height: 18px;
    flex-shrink: 0;
}

#info-link {
    margin-top: 32px;
}

#info-link ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

#info-link ul a {
    width: 185px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #fff;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    position: relative;
}

#info-link ul a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px;
    border-width: 14px 14px 0 0;
    border-style: solid;
    border-color: transparent #EBEBEB transparent transparent;
    display: block;
}

#amuse-info .lead {
    margin-bottom: 12px;
}

#amuse-info .lead a {
    color: #3765DB;
}

.amuse-info-list {
    list-style: none;
    background-color: #fff;
    padding: 0 16px;
    border-bottom: 1px solid #E6E6E6;
}

.amuse-info-list li {
    border-bottom: 1px solid #E6E6E6;
}

.amuse-info-list li:last-child {
    border-bottom: none;
}

.amuse-info-list li a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    padding: 12px 0;
    overflow: hidden;
}

.amuse-info-list li a .new {
    margin-right: 8px;
}

.amuse-info-list li a .title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    font-size: 16px;
}

#top-info #amuse-info {
    margin-bottom: 28px;
}

.public-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    list-style: none;
}

.public-list li a {
    text-decoration: none;
    color: #000;
}

.public-list li a .img-area {
    height: 162px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    margin-bottom: 8px;
}

.public-list li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.public-list li a .head-area {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.public-list li a .head-area .new {
    margin-right: 4px;
}

.public-list li a .head-area .date {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.public-list li a .head-area .cat {
    font-size: 12px;
    padding: 1px 4px;
    height: 17px;
    line-height: 16px;
    margin-bottom: 1px;
    letter-spacing: 0.5px;
}

.public-list li a .title {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
}

.public-list li a .kind {
    color: #555555;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
}

#top-application .more-link {
    width: 164px;
    margin-left: 16px;
    padding-right: 16px;
}

#top-application .app-caution {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    text-decoration: none;
    color: #000;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    min-height: 80px;
    position: relative;
}

#top-application .app-caution::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px;
    border-width: 14px 14px 0 0;
    border-style: solid;
    border-color: transparent #EBEBEB transparent transparent;
    display: block;
}

#top-application .app-caution .mark {
    margin-right: 16px;
}

#top-application .app-caution .mark img {
    height: 30px;
}

#top-application .app-contents ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
    list-style: none;
}

#top-application .app-contents ul li a {
    text-decoration: none;
    color: #000;
    background-color: #fff;
    display: flex;
    align-items: center;
    font-weight: bold;
    height: 80px;
    padding: 12px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    position: relative;
}

#top-application .app-contents ul li a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px;
    border-width: 14px 14px 0 0;
    border-style: solid;
    border-color: transparent #EBEBEB transparent transparent;
    display: block;
}

#top-application .app-contents ul li .app-icon {
    width: 40px;
    margin-right: 12px;
    flex-shrink: 0;
}

#top-manual .manual-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    list-style: none;
}

#top-manual .manual-list li a {
    display: block;
    color: #000;
    text-align: left;
    position: relative;
    padding-left: 16px;
}

#top-manual .manual-list li a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 4px solid #000;
}

#top #top-amuse-village {
    margin-bottom: 100px;
}

/* お知らせ一覧 */

#notification-list h1 {
    margin-bottom: 12px;
}

#notification-list .news-list {
    padding: 6px 16px;
}

#notification-list .news-list li a {
    height: 54px;
}

#notification-list .news-list .date-area {
    margin-bottom: 2px;
}

#notification-list .pager {
    text-align: right;
    margin-top: 32px;
}

#notification-list .connection-link {
    list-style: none;
    text-align: center;
    margin-top: 88px;
}

#notification-list .connection-link li {
    display: inline-block;
    margin: 0 8px;
}

#notification-list .connection-link li a {
    width: 284px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #fff;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    position: relative;
}

#notification-list .connection-link li a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    right: 6px;
    border-width: 14px 14px 0 0;
    border-style: solid;
    border-color: transparent #EBEBEB transparent transparent;
    display: block;
}

/* お知らせ */

.single-news h1 {
    font-size: 16px;
    margin-bottom: 0;
}

.single-news .news-box {
    background-color: #fff;
    border-top: 2px solid;
    padding: 28px 54px;
}

.single-news .news-head {
    display: flex;
    align-items: center;
}

.single-news .news-head .date-area {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.single-news .news-head .new {
    margin-right: 8px;
    margin-bottom: 2px;
}

.single-news .news-head .date {
    font-weight: bold;
    font-size: 18px;
}

.single-news .news-head .cat-area {
    display: flex;
    align-items: center;
}

.single-news .news-head .kind {
    font-size: 14px;
    font-weight: bold;
    margin-left: 8px;
}

.single-news .news-title {
    font-size: 22px;
    letter-spacing: 1px;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 24px;
}

.single-news .news-title .important {
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
}

.single-news .thumbnail {
    margin: auto;
    max-width: 800px;
    text-align: center;
}

.single-news .news-contents {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-top: 32px;
    word-break: break-all;
}

.single-news .news-contents p {
    margin: 8px 0;
    min-height: 16px;
}

.single-news .news-contents a {
    color: #3765DB;
}

.single-news .news-contents img {
    height: auto;
}

.single-news .news-contents ul,
.single-news .news-contents ol {
    padding-left: 20px;
}

.single-news .links {
    text-align: right;
    margin-top: 32px;
}

.single-news .links a {
    text-decoration: none;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 20px 4px 12px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 116px;
    position: relative;
}

.single-news .links a::after {
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    right: 12px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* CONTACT */

#contact h1 {
    border-bottom: 2px solid;
}

#contact .contact-search {
    position: relative;
    margin-bottom: 24px;
}

#contact .contact-search .input-text {
    width: 100%;
}

#contact .contact-search .search-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: absolute;
    top: 46%;
    right: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

#contact .contact-search .search-btn img {
    height: 10px;
}

#contact .contents-wrap {
    margin-top: 48px;
}

#contact .contact-cat:not(:last-child) {
    margin-bottom: 44px;
}

#contact h2 {
    border-bottom: 2px solid;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

#contact .contact-box {
    display: flex;
    margin-bottom: 24px;
}

#contact .contact-box:last-child {
    margin-bottom: 0;
}

#contact .dep-name {
    width: 396px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    border-left: 8px solid #F9DA49;
    height: 180px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    margin-right: 40px;
    text-align: center;
}

#contact .dep-comment {
    width: 100%;
    word-break: break-word;
    display: flex;
    align-items: center;
    line-height: 1.5;
}

#contact .dep-comment a {
    color: #3765DB;
}

/* FAQ */

#faq h1 {
    margin-bottom: 8px;
}

#faq .contents-wrap {
    margin-top: 48px;
}

#faq .category-box:not(:last-child) {
    margin-bottom: 52px;
}

#faq h2 {
    border-bottom: 2px solid;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

#faq .faq-box {
    line-height: 1.5;
    margin-bottom: 24px;
}

#faq .faq-box:last-child {
    margin-bottom: 0;
}

#faq .faq-box dt {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    padding: 10px;
    margin-bottom: 4px;
}

#faq .faq-box dd {
    display: flex;
    align-items: center;
    background-color: #EBEBEB;
    padding: 10px;
}

#faq .faq-box .text {
    width: 100%;
}

#faq .faq-box .mark {
    flex-shrink: 0;
    margin-right: 20px;
}

/* DATABASE */

#database h1 {
    border-bottom: 2px solid;
}

#database .database-box {
    display: flex;
    margin-bottom: 44px;
}

#database .database-box:last-child {
    margin-bottom: 0;
}

#database .db-item {
    width: 396px;
    flex-shrink: 0;
    margin-right: 40px;
}

#database .db-item a {
    background-color: #FAF9F9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    height: 180px;
    border-left: 8px solid #F9DA49;
    padding-right: 48px;
    text-decoration: none;
    color: #000;
    position: relative;
}

#database .db-item a::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #FABE00;
    border-right: 3px solid #FABE00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#database .db-description {
    word-break: break-word;
    line-height: 1.5;
    display: flex;
    align-items: center;
    width: 100%;
}

#database .db-description a {
    color: #3765DB;
}

/* BUSINESS-TOOLS */

#business-tools {
    padding-bottom: 4em;
}

#business-tools h1 {
    border-bottom: 2px solid;
}

#business-tools .bt-wrap {
    display: flex;
    width: 100%;
    margin-top: 24px;
}

#business-tools .bt-left {
    width: 396px;
    flex-shrink: 0;
    margin-right: 40px;
}

#business-tools .item-aws {
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    text-align: center;
    background-color: #fff;
    padding: 24px 28px 28px 28px;
}

#business-tools .aws-bottom-wrap {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

#business-tools .select-wrap select {
    padding: 9px 24px 10px 12px;
}

#business-tools .ab-left {
    font-size: 16px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

#business-tools .select-wrap {
    width: 100%;
}

#business-tools .select-wrap select {
    border-radius: 6px;
    border-color: #C9D6DF;
}

#business-tools .select-wrap::after {
    border-color: #F9DA49;
    border-width: 2px;
}

#business-tools .tool-wrap {
    display: flex;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #E6E6E6;
}

#business-tools .tool-wrap:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

#business-tools .tool-right .supplement {
    margin-top: 12px;
    list-style: none;
}

#business-tools .tool-right .supplement li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

#business-tools .tool-right .supplement li:last-child {
    margin-bottom: 0;
}

#business-tools .tool-right .supplement li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 4px solid #000;
}

#business-tools .tool-logo-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#business-tools .tool-logo-wrap a {
    width: 20%;
    background-color: #fff;
}

#business-tools .tool-left {
    width: 396px;
    flex-shrink: 0;
    margin-right: 40px;
}

#business-tools .tool-right {
    width: 100%;
    display: flex;
    align-items: center;
}

#business-tools .tool-left a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

#business-tools .side-item {
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    background-color: #fff;
    position: relative;
    padding: 34px 60px 34px 20px;
}

#business-tools .side-item::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #FABE00;
    border-right: 3px solid #FABE00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#business-tools .side-item p {
    margin-top: 8px;
}

#business-tools .tool-right a {
    color: #3765DB;
    word-break: break-word;
}

#business-tools .tool-right a.underline-none {
    text-decoration: none;
}

#business-tools .font-large {
    font-size: 16px;
}

#business-tools .link-list {
    list-style: none;
}

#business-tools .link-list li {
    display: flex;
}

#business-tools .link-list li::before {
    content: "・";
    color: #3765DB;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 4px;
}

/* APPLICATION */

#application h1 {
    margin-bottom: 8px;
}

#application h2 {
    border-bottom: 2px solid;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

#application .contents-wrap {
    margin-top: 48px;
}

#application .category-box {
    margin-bottom: 44px;
}

#application .category-box:last-child {
    margin-bottom: 0;
}

#application .tool-wrap {
    display: flex;
    margin-bottom: 24px;
}

#application .tool-wrap:last-child {
    margin-bottom: 0;
}

#application .tool-left {
    width: 396px;
    flex-shrink: 0;
    margin-right: 40px;
}

#application .tool-left a {
    text-decoration: none;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    background-color: #fff;
    position: relative;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    border-left: 8px solid #F9DA49;
    padding-right: 48px;
    font-weight: bold;
    text-align: center;
}

#application .tool-left a::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #FABE00;
    border-right: 3px solid #FABE00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#application .tool-right {
    width: 100%;
    display: flex;
    align-items: center;
    line-height: 1.5;
    word-break: break-word;
}

#application .tool-right a {
    color: #3765DB;
}

#application .tool-right .supplement {
    margin-top: 16px;
    list-style: none;
}

#application .tool-right .supplement li {
    margin-bottom: 6px;
    padding-left: 16px;
    position: relative;
}

#application .tool-right .supplement li:last-child {
    margin-bottom: 0;
}

#application .tool-right .supplement li::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 0%;
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 4px solid #000;
}

/* MANUAL */

#manual h1 {
    margin-bottom: 20px;
}

#manual .contents-wrap {
    margin-top: 48px;
}

#manual h2 {
    border-bottom: 2px solid;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

#manual .manual-cat:not(:last-child) {
    margin-bottom: 44px;
}

#manual .manual-contents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}

#manual .manual-contents a {
    text-decoration: none;
    color: #000;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    background-color: #fff;
    position: relative;
    border-left: 8px solid #F9DA49;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding-right: 48px;
    text-align: center;
}

#manual .manual-contents a::after {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid #FABE00;
    border-right: 3px solid #FABE00;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    display: inline-block;
    position: absolute;
    right: 24px;
    top: 0;
    bottom: 0;
    margin: auto;
}

#manual .manual-select-wrap ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    margin: 0.5em -0.4em 2em;
}

#manual .manual-select-wrap ul li {
    padding: 0.4em;
}

#manual .manual-select-wrap ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 0.7em;
    padding: 0 0.8em;
    min-width: 7.5em;
    background-color: #D9D9D9;
    border-radius: 5px;
    text-align: center;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#manual .manual-select-wrap ul li a.other {
    min-width: 19.2em;
}

#manual .manual-select-wrap ul li a:hover {
    background-color: #FED140;
    opacity: 1;
}

#manual .manual-select-wrap ul li .active {
    background-color: #FED140;
}

/* 関係者チケット・社内観覧 */

#official-ticket h1 {
    border-bottom: 2px solid;
}

#official-ticket .detail {
    line-height: 1.5;
}

#official-ticket .detail a {
    color: #3765DB;
    word-break: break-word;
}

#official-ticket section {
    margin-top: 88px;
}

#official-ticket h2 {
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

#event iframe {
    height: 555px;
}

#performance .narrow-down-wrap {
    margin-bottom: 20px;
}

.performance-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 24px;
    list-style: none;
}

.performance-list li a {
    text-decoration: none;
    color: #000;
}

.performance-list li a .img-area {
    height: 162px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    margin-bottom: 8px;
}

.performance-list li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.performance-list li a .head-area {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.performance-list li a .head-area .new {
    margin-right: 4px;
}

.performance-list li a .head-area .date {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.performance-list li a .head-area .cat {
    font-size: 12px;
    padding: 1px 4px;
    height: 17px;
    line-height: 16px;
    margin-bottom: 1px;
    letter-spacing: 0.5px;
}

.performance-list li a .title {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
}

.performance-list li a .kind {
    color: #555555;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
}

#performance .pager {
    text-align: right;
    margin-top: 58px;
}

/* エラー */

#error h1 {
    margin-bottom: 60px;
}

#error .contents-wrap {
    text-align: center;
}

#error .error-cts {
    margin-top: 28px;
    margin-bottom: 36px;
}

#error .btn-wrap a {
    text-align: center;
    background-color: #FED140;
    display: inline-block;
    color: #000;
    padding: 8px 0;
    text-decoration: none;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    border-radius: 6px;
    width: 200px;
    font-weight: 500;
}

/* Filtering */
.filtering .input-filter ul {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    list-style: none;
    margin: 0.5em -0.4em 1.5em;
}

.filtering .input-filter ul li {
    padding: 0.4em;
}

.filtering .input-filter ul li label {
    text-decoration: none;
    color: #fff;
    font-size: 0.7em;
    padding: 0 1.1em;
    min-width: 7.5em;
    background-color: #D9D9D9;
    border-radius: 5px;
    text-align: center;
    height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
}

.filtering .input-filter ul li input[type="radio"] {
    height: 0;
    width: 0;
}

.filtering .input-filter ul li label:hover {
    background-color: #FED140;
    opacity: 1;
}

.filtering .input-filter ul li label.selected {
    background-color: #FED140;
}

.filtering .contact-content-wrap {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 1.5em;
    line-height: 1.2;
}

/* 会社情報 */

#company h1 {
    margin-bottom: 8px;
}

#company .contents-wrap {
    margin-top: 48px;
}

#company h2 {
    border-bottom: 2px solid;
    font-size: 22px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

#company .content-box:not(:last-child) {
    margin-bottom: 80px;
}

#facility-reservation iframe {
    height: 740px;
}

#address-book iframe {
    height: 720px;
}

#guest-wifi .content a {
    color: #3765DB;
}

#affiliated-companies .company-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    list-style: none;
}

#affiliated-companies .company-list li a {
    display: block;
    background-color: #fff;
    text-decoration: none;
    color: #000;
    height: 356px;
}

#affiliated-companies .company-list li .logo-area {
    height: 172px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#affiliated-companies .company-list li .logo-area img {
    width: 158px;
}

#affiliated-companies .company-list li .detail-area {
    padding: 10px;
    line-height: 1.5;
}

#affiliated-companies .company-list li h3 {
    font-size: 14px;
    margin-bottom: 8px;
}

/* クリーンライン */

#cleanline h1 {
    border-bottom: 2px solid;
}

#cleanline .lead {
    line-height: 1.5;
}

#cleanline .lead .highlight {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

#cleanline .contents-wrap dl {
    line-height: 1.5;
    margin-top: 48px;
}

#cleanline .contents-wrap dl dt {
    font-weight: bold;
}

#cleanline .contact-list {
    list-style: none;
    margin-top: 44px;
}

#cleanline .contact-list li {
    display: flex;
    margin-bottom: 24px;
    background-color: #fff;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    min-height: 180px;
}

#cleanline .contact-list .contact-name {
    width: 396px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-left: 8px solid #F9DA49;
}

#cleanline .contact-list .contact-address {
    width: 100%;
    border-left: 1px solid #E6E6E6;
    padding: 12px 40px;
    display: flex;
    align-items: center;
}

#cleanline .contact-list .contact-address a {
    color: #3765DB;
}

#cleanline .subject-list li {
    list-style: none;
    margin-top: 20px;
}

/* アミューズ情報 */

#amuse-list h1 {
    margin-bottom: 16px;
}

#amuse-list .amuse-info-list {
    border-bottom: none;
    padding: 4px 16px 0;
}

#amuse-list .amuse-info-list li a {
    padding: 14px 0;
}

#amuse-list .pager {
    text-align: right;
    margin-top: 32px;
}

/* 広報室 */

#public-list h1 {
    display: flex;
}

#public-list h1 img {
    height: 32px;
    margin-right: 4px;
}

#public-list .public-list {
    grid-template-columns: repeat(4, 1fr);
}

#public-list .pager {
    text-align: right;
    margin-top: 56px;
}

/* 落とし物 */

.lost-item-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px 24px;
    list-style: none;
}

.lost-item-list li a {
    text-decoration: none;
    color: #000;
}

.lost-item-list li a .img-area {
    height: 162px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 3px 3px 3px rgb(0 0 0 / 6%);
    margin-bottom: 8px;
}

.lost-item-list li a .img-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.lost-item-list li a .head-area {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.lost-item-list li a .head-area .new {
    margin-right: 4px;
}

.lost-item-list li a .head-area .date {
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-right: 6px;
}

.lost-item-list li a .head-area .cat {
    font-size: 12px;
    padding: 1px 4px;
    height: 17px;
    line-height: 16px;
    margin-bottom: 1px;
    letter-spacing: 0.5px;
}

.lost-item-list li a .title {
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 16px;
}

.lost-item-list li a .kind {
    color: #555555;
    font-size: 12px;
    font-weight: bold;
    margin-left: 6px;
}

#lost-item-list .pager {
    text-align: right;
    margin-top: 56px;
}

#lost-item-list .supplement {
    margin-top: 32px;
}

#lost-item-list .supplement a {
    color: #3765DB;
}

/* サイトマップ */

#sitemap .contents-wrap {
    background-color: #fff;
    padding: 36px 50px 190px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 76px;
    margin-top: 32px;
}

#sitemap .sitemap-column {
    margin-bottom: 36px;
    padding-right: 30px;
}

#sitemap .sitemap-column:last-child {
    margin-bottom: 0;
}

#sitemap h2 a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 8px 0 8px 20px;
    border-bottom: 1px solid;
    position: relative;
    font-size: 16px;
    line-height: 23px;
}

#sitemap h2 a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    border-top: 3.5px solid transparent;
    border-bottom: 3.5px solid transparent;
    border-left: 4px solid #F9DA49;
}

#sitemap .sitemap-column ul {
    margin-top: 8px;
    list-style: none;
    margin-left: 20px;
}

#sitemap .sitemap-column ul li:not(:last-child) {
    margin-bottom: 10px;
}

#sitemap .sitemap-column ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    line-height: 20px;
}

#sitemap .sitemap-column ul li a.disabled {
    color: #9FA1A1;
    pointer-events: none;
}