@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap");
:root {
    
    --base-color: #fff;
    
    --text-color: #222;
    
    --link-color: #0066ff;
}
:root {
    
    --font-gothic: "Helvetica Neue", Helvetica, Arial, YuGothic, "Yu Gothic",
        游ゴシック体, 游ゴシック, "ヒラギノ角ゴ ProN W3",
        "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "MS ゴシック", "MS Gothic",
        sans-serif;
    
    --font-mincho: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3",
        "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    
    --font-marugothic: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
        "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
html > body {
    color: var(--text-color);
    font-family: "Hiragino Kaku Gothic ProN";
    letter-spacing: 0.05em;
    font-size: 16px;
    line-height: 1.875;
}
#siteTtl,
h1,
h2,
h3,
#copylight {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
}
.heading,
.contactHeading {
    font-family: "Times New Roman";
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix:before {
    content: "";
    display: block;
    clear: both;
}
.clearfix {
    display: block;
}
a {
    color: var(--link-color);
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.extraTtl {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 0.86em;
}
table,
th,
td,
hr {
    border: 1px var(--text-color) solid;
    border-collapse: collapse;
}
table {
    margin: 1em 0;
    margin-bottom: 80px;
}
th,
td {
    padding: 0.8rem;
}
th {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
body {
    margin: 0;
    z-index: 1;
}
h1 {
    font-size: 28px;
    color: #004a89;
    margin: 0;
}
h2 {
    color: #004a89;
}
#pageTtl {
    line-height: 1.3;
}
header {
    position: fixed;
    width: 100%;
    display: flex;
    background-color: #fff;
    z-index: 10;
    top: 0;
}
header a {
    text-decoration: none;
    color: #004a89;
    margin-left: 0;
    line-height: 1.3;
}
#header img {
    max-height: 100px;
    transition: all 0.5s;
    line-height: 0;
}
#siteTtl {
    font-size: 16px;
    line-height: 1.3;
    display: inline-block;
}
#siteTtl a:hover {
    opacity: 0.5;
    transition: all 0.4s;
}
p#siteTtl {
    margin: 0;
}
#humBtn {
    z-index: 30;
    height: 60px;
    width: 60px;
    background-color: #004a89;
    position: fixed;
    right: 0;
    top: 0;
}
@media screen and (min-width: 769px) {
    #humBtn {
        display: none;
    }
    #siteTtl {
        font-size: 30px;
    }
    #header img {
        max-height: 200px;
    }
}
@media screen and (max-width: 768px) {
    #header {
        min-height: 60px;
    }
}
.parent a:hover,
#profileNav:hover,
#accessNav:hover {
    opacity: 0.7;
    transition: all 0.3s;
}
.parent.childIn .child li:hover {
    background-color: #004a89;
    transition: all 0.6s;
}
.parent.childIn .child li:hover a {
    opacity: 1;
    color: #fff;
}
#contactNav {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#contactNav span {
    text-align: center;
    color: #fff;
    display: block;
    padding-left: 50px;
    padding-right: 30px;
}
.mail.icon {
    color: #fff;
    position: absolute;
    margin-left: 20px;
    width: 15px;
    height: 10px;
    border-radius: 1px;
    border: solid 1px currentColor;
}
.mail.icon:before {
    content: "";
    position: absolute;
    left: 7px;
    top: -4px;
    width: 1px;
    height: 10px;
    background-color: currentColor;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotate(-54deg);
    transform: rotate(-54deg);
}
.mail.icon:after {
    content: "";
    position: absolute;
    left: 7px;
    top: -4px;
    width: 1px;
    height: 10px;
    background-color: currentColor;
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    -webkit-transform: rotate(54deg);
    transform: rotate(54deg);
}
@media screen and (max-width: 768px) {
    #headWrapper {
        z-index: 10;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        transition: all 0.6s;
        transform: translateY(-100%);
        background-color: #fff;
        overflow: auto;
        overflow-x: hidden;
    }
    #headWrapper.active {
        transform: translateY(0);
    }
    #mainNav ul,
    #headNav ul {
        margin: 0;
        padding-left: 0;
    }
    #mainNav {
        padding-top: 60px;
    }
    .parent:first-of-type {
        border-top: 1px solid #004a89;
    }
    .parent {
        border-bottom: 1px solid #004a89;
        height: 60px;
        display: flex;
        list-style: none;
        cursor: pointer;
    }
    .parent.childIn {
        height: auto;
        border-bottom: 1px solid #004a89;
        flex-direction: column;
    }
    .childIn .child {
        display: flex !important;
    }
    .child {
        flex-direction: column;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .child a {
        padding: 5px 0 5px 30px !important;
    }
    .child li {
        position: relative;
        display: inline-block;
    }
    .child li::before {
        content: "";
        display: inline-block;
        width: 5px;
        height: 1px;
        position: absolute;
        background-color: #000;
        top: 50%;
        left: 15px;
    }
    .parentNav {
        margin-left: 0;
        border-bottom: 1px solid #004a89;
        height: 60px;
    }
    .parent a,
    .child li a {
        text-decoration: none;
        display: flex;
        align-items: center;
        width: 100%;
        padding-left: 15px;
    }
    #headNav ul {
        padding: 20px 0 10px 0;
    }
    #headNav li {
        display: flex;
        padding-bottom: 10px;
    }
    #headNav li a {
        margin: 0 auto;
        color: #000;
    }
    #contactNav a {
        margin: auto !important;
        color: #fff !important;
    }
    #contactNav {
        width: 260px;
        height: 60px;
        margin: auto;
        margin-top: 15px;
        padding-bottom: 0 !important;
        background: rgb(4, 51, 110);
        background: linear-gradient(
            90deg,
            rgba(4, 51, 110, 1) 19%,
            rgba(9, 65, 122, 1) 34%,
            rgba(21, 104, 166, 1) 82%
        );
        cursor: pointer;
    }
    #contactNav p {
        margin-left: auto;
        margin-right: auto;
        color: #fff;
    }
    #IconHumMenu {
        margin: 10px auto 50px auto;
    }
    #IconHumMenu img {
        padding: 5px;
    }
    .inner {
        padding: 15px 60px 15px 20px;
    }
    .inner.eid {
        padding: 15px 60px 15px 20px;
    }
}
@media screen and (min-width: 769px) {
    .inner {
        padding: 80px 0 20px 50px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        position: relative;
    }
    #mainNav ul,
    #headNav ul {
        display: flex;
        align-items: center;
    }
    .parent,
    .child li,
    #headNav li {
        list-style: none;
    }
    .parent {
        margin-left: 30px;
        position: relative;
    }
    #headNav {
        position: absolute;
        top: 0;
        right: 0;
    }
    #headNav ul {
        margin-top: 0;
    }
    #mainNav ul {
        justify-content: end;
        margin: 20px 50px 50px 0;
    }
    #contactNav {
        background: rgb(4, 51, 110);
        background: linear-gradient(
            90deg,
            rgba(4, 51, 110, 1) 19%,
            rgba(9, 65, 122, 1) 34%,
            rgba(21, 104, 166, 1) 82%
        );
        min-width: 260px;
        height: 60px;
        display: flex;
        cursor: pointer;
        transition: 0.5s;
        position: relative;
        z-index: 1;
    }
    #contactNav::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background: #fff;
        transform-origin: 100% 50%;
        transform: scaleX(0);
        transition: transform ease 0.5s;
        border: 1px solid #004a89;
    }
    #contactNav:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }
    #contactNav:hover span {
        color: #004a89;
    }
    #contactNav:hover .mail.icon {
        color: #004a89;
    }
    .contactBtn:hover::before {
        transform-origin: 0% 50%;
        transform: scaleX(1);
    }
    .contactBtn:hover {
        color: #004a89;
    }
    #profileNav a,
    #accessNav a {
        margin: 0 40px;
    }
    #accessNav {
        position: relative;
    }
    #accessNav::before {
        position: absolute;
        content: "";
        top: 15px;
        left: 0;
        width: 1px;
        height: 30px;
        background-color: #000;
    }
    #mainNav li:not(:last-child) .child {
        display: block;
        position: absolute;
        margin-top: 10px;
        left: -80px;
        border: solid 1px #004a89;
        width: 240px;
        background-color: #fff;
        padding-left: 0;
        opacity: 1;
    }
    #mainNav li:last-child ul {
        display: block;
        position: absolute;
        margin-top: 10px;
        right: -80px;
        border: solid 1px #004a89;
        width: 240px;
        background-color: #fff;
        padding-left: 0;
        opacity: 1;
    }
    #mainNav .parent .child li {
        cursor: pointer;
        border-bottom: solid 1px #004a89;
        text-align: center;
        padding-left: 0;
        padding: 10px 20px;
    }
    #mainNav .parent .child li:last-child {
        border: none;
    }
    #mainNav .parent .child li a {
        margin-left: 0;
    }
    .child {
        z-index: 90;
    }
    #IconHumMenu {
        display: none;
    }
    #profileNav,
    #accessNav {
        height: 60px;
        display: flex;
        align-items: center;
    }
}
#humBtn span {
    display: block;
    transition: all 0.4s;
    width: 24px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 20px;
}
#humBtn span:nth-child(1) {
    top: 20px;
}
#humBtn span:nth-child(2) {
    top: 30px;
}
#humBtn span:nth-child(3) {
    top: 40px;
}
#humBtn.active span:nth-child(1) {
    top: 30px;
    transform: rotate(45deg);
}
#humBtn.active span:nth-child(2) {
    opacity: 0;
    transition: all 0.4s;
}
#humBtn.active span:nth-child(3) {
    top: 30px;
    transform: rotate(-45deg);
}
#slideImg {
    z-index: 1;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #cccccc;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    display: block;
    margin-right: 5px;
    width: 40px;
    height: 2px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #4b4542;
}
.bx-wrapper .bx-pager {
    text-align: right !important;
}
.bx-wrapper {
    max-width: 1320px !important;
}
.mainSlide li {
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .mainSlide li img {
        height: 466px;
        object-fit: cover;
    }
    .mainSlide {
        padding-left: 0;
    }
    .bx-wrapper bx-viewport {
        height: 466px;
    }
}
@media screen and (min-width: 769px) {
    .bx-wrapper .bx-pager.bx-default-pager a:hover {
        background-color: #4b4542;
    }
    .bx-wrapper {
        margin-left: 0 !important;
    }
    .mainSlide li {
        width: 1320px !important;
        height: 640px !important;
    }
    .mainSlide li img {
        width: 100% !important;
        align-items: center;
        position: absolute;
    }
    #slideImg {
        width: 1400px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }
    .mainSlide a {
        width: 1320px;
    }
}
.mainImgWrapper {
    background: rgb(4, 51, 110);
    background: linear-gradient(
        90deg,
        rgba(4, 51, 110, 1) 19%,
        rgba(9, 65, 122, 1) 34%,
        rgba(21, 104, 166, 1) 82%
    );
    margin-bottom: 60px;
}
#mainImg {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#mainImg.noImg #siteDesc {
    margin-left: auto;
    margin-left: auto;
}
#siteDesc p {
    margin: 0 15px 15px 15px;
    padding: 15px 0;
    color: #fff;
    font-size: 13px;
}
@media screen and (max-width: 768px) {
    .imgInner {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
        margin-top: 15px;
    }
    .imgInner img {
        width: 100%;
    }
    .siteDesc.slide {
        margin-bottom: 30px;
    }
}
@media screen and (min-width: 789px) {
    #mainImg img {
        max-width: 360px;
        margin: 15px;
    }
    #mainImg {
        flex-direction: row;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
    }
    #mainImg img {
        max-width: 480px;
        height: auto;
        margin: 50px 20px 50px 0;
    }
    #siteDesc {
        display: flex;
        align-items: center;
        margin-left: 20px;
    }
    #siteDesc p {
        color: #fff;
        font-size: 16px;
    }
    .siteDesc.slide {
        margin-bottom: 60px;
    }
    #mainImg.noImg #siteDesc p {
        max-width: 1000px;
    }
    #mainImg.noImg {
        justify-content: center;
    }
    .mainImgWrapper {
        margin-bottom: 100px;
    }
}
.container {
    margin-right: 15px;
    margin-left: 15px;
}
.heading {
    font-size: 20px;
    margin-left: 40px;
    color: #004a89;
    position: relative;
    display: inline-block;
}
.heading::before {
    content: "";
    display: inline-block;
    width: 70px;
    height: 1px;
    position: absolute;
    background-color: #004a89;
    top: 50%;
    left: -80px;
}
@media screen and (min-width: 769px) {
    .heading {
        margin-left: 0;
    }
    .heading::before {
        width: 80px;
        left: -100px;
    }
}
.list {
    padding-left: 0;
}
.list li {
    list-style: none;
    display: flex;
    padding-bottom: 10px;
}
.day {
    padding-right: 10px;
}
#newsTopics,
#blog {
    padding-bottom: 100px;
}
#newsTopics li,
.rss dd,
.rss dt {
    font-size: 13px;
    font-family: "Times New Roman";
}
#newsTopics .day,
.rss dt {
    font-family: "YuMincho";
}
.moreBtn,
.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.contactWrapper {
    height: 200px;
    background-image: url(https://assets.toriaez.jp/thp2/pc/images/237/background1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.contactBtn,
.btn {
    cursor: pointer;
    font-weight: 600;
}
.btn {
    background-color: #fff;
    border: 1px solid #004a89;
    width: 240px;
    height: 50px;
    font-weight: bold;
    color: #004a89;
    transition: all 0.6s;
}
.btn a {
    text-decoration: none;
    color: #004a89 !important;
}
.btn:hover a {
    color: #fff !important;
}
#topics {
    margin-bottom: 60px;
}
.rss {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.rss dt {
    width: 25%;
}
.rss dd {
    width: 75%;
    margin-left: 0;
}
#newsTopics li,
.rss dt,
.rss dd {
    font-size: 16px;
}
.rss dt,
.rss dd {
    padding: 5px 0 5px 0;
}
@media screen and (min-width: 769px) {
    
    .rss dt,
    .rss dd {
        padding: 10px 0 10px 0;
    }
    .rss dt {
        width: 15%;
    }
    .rss dd {
        width: 85%;
        margin-left: 0;
    }
    .btn:hover {
        background-color: #004a89;
        transition: all 0.6s;
        color: #fff;
    }
    .contactWrapper {
        width: 100%;
        height: 320px;
        background-image: url(https://assets.toriaez.jp/thp2/pc/images/237/background.png);
        background-repeat: no-repeat;
        background-size: cover;
    }
}
section.bg_color {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
    background-color: #eff4f9;
}
.articleBox {
    padding-top: 60px;
    padding-bottom: 60px;
}
.articleBox.noImg {
    margin-top: 100px;
}
.articleBox table {
    width: 100%;
}
.articleBox figcaption {
    display: none;
    word-break: break-all;
}
.articleBox ul li figure {
    width: 100%;
}
.txtWithImg figcaption {
    width: auto;
}
th {
    font-weight: normal;
    background-color: #e4e5e6;
}
td {
    background-color: #fff;
}
figure {
    margin: 0;
}
figure li {
    list-style: none;
}
figure ul {
    padding: 0;
    max-width: 100%;
}
figure img {
    width: 100%;
}
.txtWithImg {
    display: flex;
    flex-direction: column-reverse;
}
.articleTxt a,
#blog a,
#freeTxt a,
.txtBox a {
    color: #000;
    cursor: pointer;
}
#newsTopics a {
    color: #000;
    cursor: pointer;
}
#newsTopics a:hover,
.articleTxt a:hover,
#blog a:hover,
#freeTxt a:hover,
.txtBox a:hover {
    text-decoration: none;
    color: #004a89;
}
.articleTtl {
    line-height: 1.3;
    text-align: center;
    font-size: 20px;
}
.contactBtn {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    height: 60px;
    width: 260px;
    border: none;
    z-index: 1;
    transition: 0.5s;
    position: relative;
    background: rgb(4, 51, 110);
    background: linear-gradient(
        90deg,
        rgba(4, 51, 110, 1) 19%,
        rgba(9, 65, 122, 1) 34%,
        rgba(21, 104, 166, 1) 82%
    );
}
.contactBtn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.5s;
    border: 1px solid #004a89;
}
.contactBtn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.contactBtn:hover {
    color: #004a89;
}
.contactBtn span {
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding-left: 50px;
    padding-right: 30px;
}
.contactBtn:hover .mail.icon {
    color: #004a89;
}
#freeTxt {
    margin: 30px 15px 0 15px;
    font-size: 13px;
}
#pagetop {
    display: block;
    right: 20px;
    bottom: 20px;
    position: fixed;
    cursor: pointer;
}
#pagetop a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}
.arrow {
    display: none;
}
.scroll {
    display: none;
}
#pagetop {
    display: none;
}
.articleBox {
    position: relative;
}
.articleBox::before {
    content: "";
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    width: 1px;
    height: 80px;
    margin: auto;
    background-color: #004a89;
}
.articleBox::before:first-child {
    display: none;
}
.articleTxt img,
.foot-area img {
    max-width: 100% !important;
    height: auto;
}
#sp_pagetop {
    transform: rotate(270deg);
    position: fixed;
    bottom: 50px;
    right: 0px;
    display: none;
}
#sp_pagetop a {
    text-decoration: none;
    color: #000;
}
#sp_pagetop p {
    margin: 0;
}
.lineArrow {
    width: 70px;
    height: 10px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(60deg);
}
@media screen and (min-width: 769px) {
    .contactBtn span {
        font-size: 24px;
        padding-left: 50px;
        padding-right: 30px;
    }
    .contactBtn {
        min-width: 360px;
        height: 80px;
    }
    .articleTtl {
        font-size: 30px;
    }
    .articleTxt iframe,
    .articleTxt table {
        max-width: 100% !important;
    }
    .container {
        max-width: 1000px;
        margin-right: auto;
        margin-left: auto;
    }
    .heading {
        font-size: 30px;
        margin-bottom: 0;
    }
    figure ul {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    figure img {
        width: 320px;
        height: auto;
    }
    .txtWithImg {
        flex-direction: row;
        justify-content: space-between;
    }
    .txtWithImg figure img {
        width: 480px;
        height: auto;
    }
    .txtWithImg .articleTxt {
        width: 480px;
    }
    .articleBox ul li figure {
        width: 320px;
    }
    .txtWithImg figcaption {
        width: 480px;
    }
    #freeTxt {
        margin-top: 60px;
        font-size: 16px;
    }
    .scroll {
        display: inline-block;
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: 10px 10px 110px;
        overflow: hidden;
        color: #333;
        font-size: 14px;
        font-family: "Josefin Sans", sans-serif;
        line-height: 1;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        text-decoration: none;
        writing-mode: vertical-lr;
    }
    .scroll::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 1px;
        height: 100px;
        background: #333;
        animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
    }
    @keyframes sdl {
        0% {
            transform: scale(1, 0);
            transform-origin: 0 0;
        }
        50% {
            transform: scale(1, 1);
            transform-origin: 0 0;
        }
        50.1% {
            transform: scale(1, 1);
            transform-origin: 0 100%;
        }
        100% {
            transform: scale(1, 0);
            transform-origin: 0 100%;
        }
    }
    #pagetop {
        right: 0;
        bottom: 120px;
    }
    #sp_pagetop p,
    .lineArrow {
        display: none;
    }
    .arrow {
        display: inline-flex;
        transform: rotate(270deg);
        margin: 0;
        position: relative;
    }
    .arrow::after {
        content: "";
        width: 80px;
        height: 15px;
        border-bottom: solid 1px;
        border-right: solid 1px;
        transform: skew(45deg);
        position: absolute;
        transition: 0.6s;
        left: 80px;
        top: 0;
    }
    .arrow:hover::after {
        left: 100px;
        transition: 0.6s;
    }
}
.contactHeading {
    font-size: 20px;
    color: #004a89;
    margin-top: 30px;
    position: relative;
}
.contactHeading::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 0;
    right: 0;
    width: 1px;
    height: 70px;
    margin: auto;
    background-color: #004a89;
}
#qr,
#snsIcon,
#copylight {
    text-align: center;
}
#qr img {
    width: 90px;
    height: 90px;
}
#copylight {
    font-style: normal;
    margin: 20px 0 80px 0;
    font-size: 13px;
}
#snsIcon {
    margin-top: 80px;
}
#snsIcon img {
    padding: 10px;
}
#snsIcon img:hover {
    opacity: 0.6;
    transition: all 0.5s;
}
#snsIcon a {
    text-decoration: none;
}
#snsIcon.snsSP {
    margin-top: 30px;
    margin-bottom: 50px;
}
@media screen and (min-width: 769px) {
    .contactHeading {
        font-size: 30px;
        margin-top: 60px;
    }
    .freeTxtWrapper {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    #copylight .sp {
        display: none;
    }
    #copylight {
        font-size: 16px;
    }
    .contactHeading::before {
        top: -100px;
        height: 80px;
    }
    #snsIcon.snsSP {
        display: none;
    }
}
.pageTtlWrapper {
    background: rgb(4, 51, 110);
    background: linear-gradient(
        90deg,
        rgba(4, 51, 110, 1) 19%,
        rgba(9, 65, 122, 1) 34%,
        rgba(21, 104, 166, 1) 82%
    );
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.pageTtlWrapper #pageTtl {
    color: #fff;
    font-size: 24px;
}
#pageTtl {
    max-width: calc(100% - 30px);
}
#breadCrumbs ol {
    list-style: none;
    padding-left: 15px;
    margin: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}
#breadCrumbs li a {
    color: #000;
}
#breadCrumbs li {
    display: inline-block;
}
#breadCrumbs li::after {
    content: "\003e";
    margin-left: 10px;
    margin-right: 10px;
    color: #888888;
}
#subNav ul {
    display: flex;
    list-style: none;
    padding-left: 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
#subNav a {
    text-decoration: none;
    color: #004a89;
}
#breadCrumbs li:last-child:after {
    content: "";
}
#breadCrumbs li a:hover {
    color: #004a89;
}
@media screen and (max-width: 768px) {
    .copyrightSP {
        display: block;
    }
    .copyrightPC {
        display: none;
    }
    #subNav ul {
        margin-top: 0;
        border-top: 1px solid #004a89;
        border-bottom: 1px solid #004a89;
    }
    #subNav li {
        padding: 10px 15px;
        display: inline-block;
    }
    #subNav {
        margin-bottom: 80px;
    }
    #breadCrumbs ol {
        white-space: nowrap;
        overflow-x: scroll;
    }
}
@media screen and (min-width: 769px) {
    .pageTtlWrapper #pageTtl {
        font-size: 36px;
    }
    .copyrightSP {
        display: none;
    }
    .copyrightPC {
        display: block;
    }
    .pageTtlWrapper {
        height: 280px;
    }
    #breadCrumbs ol {
        padding-left: 30px;
    }
    #subNav ul {
        justify-content: center;
        margin-bottom: 100px;
    }
    #subNav li {
        border-top: 1px solid #004a89;
        border-bottom: 1px solid #004a89;
        border-left: 1px solid #004a89;
    }
    #subNav li:last-child {
        border-right: 1px solid #004a89;
    }
    #subNav a {
        display: block;
        padding: 10px 30px;
    }
    #subNav a:last-child {
        border-left: none;
    }
    #subNav a:hover {
        background-color: #004a89;
        color: #fff;
        transition: all 0.6s;
    }
}
.table {
    margin: 80px 0;
}
.table dl {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    flex-direction: column;
    border-top: 1px solid #000;
    padding: 10px 0;
}
.table dl:last-child {
    border-bottom: 1px solid #000;
}
.table dt,
.table dd {
    margin-left: 0;
    width: 100%;
}
.form input[type="text"],
textarea {
    width: 90%;
    margin-left: 15px;
}
.form input[type="text"] {
    height: 40px;
}
.btnWrapper button {
    width: 200px;
    height: 50px;
}
.btnWrapper dt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.table .btnWrapper dl {
    padding: 30px 0 20px 0;
}
.btnWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.submitBtn {
    margin-bottom: 15px;
    background-color: #004a89;
    border: none;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}
.submitBtn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease 0.5s;
    border: 1px solid #004a89;
}
.submitBtn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}
.submitBtn:hover span {
    color: #004a89;
}
.submitBtn span {
    color: #fff;
}
.resetBtn {
    background-color: #fff;
    border: 1px solid #004a89;
    color: #004a89;
    cursor: pointer;
}
.resetBtn:hover {
    opacity: 0.5;
    transition: all 0.3s;
}
.form input[type="radio"] {
    margin-left: 10px;
}
.requiredMark {
    color: red;
}
.txtBox img {
    max-width: 100%;
    height: auto;
}
@media screen and (min-width: 769px) {
    .table dt {
        width: 30%;
        padding-left: 40px;
    }
    .table dl {
        padding: 20px 0;
        flex-direction: row;
    }
    .table dd {
        margin-left: 0;
        padding-left: 20px;
        width: 60%;
    }
    .btnWrapper dl {
        justify-content: center;
    }
    .btnWrapper dt {
        flex-direction: row;
        width: 60%;
    }
    .btnWrapper {
        flex-direction: row;
        justify-content: center;
    }
    .submitBtn {
        margin-bottom: 0;
        margin-right: 10px;
        cursor: pointer;
    }
    .resetBtn {
        margin-left: 10px;
    }
    .txtBox {
        margin: 40px 0;
    }
}
.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%; 
}
.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.captcha {
    border: 4px solid #004a89 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 20px !important;
}
.captchaWarning {
    text-align: center;
}
.inputArea {
    text-align: center;
    margin-bottom: 30px;
}
#captchaInput {
    width: 200px;
}
#newsTopics li.is-hidden,
#blog li.is-hidden {
    display: none;
}
@media screen and (max-width: 768px) {
    iframe {
        width: 100% !important;
    }
}
.parentFormvalidation_form.formError {
    z-index: 1;
}