@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
}
*:focus {
    outline: none;
}
html {
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}
body {
    font-family: "SimSun", "Songti SC", "Noto Serif SC", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}
/*ハンバーガーメニューを表示している時はスクロールさせない*/
body.scrolloff {
    width: 100%;
    height: 100%;
    position: fixed;
}
#all_wrap {
    /*overflow: hidden;*/
}
#contents {
    width: 100vw;
    overflow-x: visible;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: top;
    vertical-align: bottom;
}
a {
    font-size: 14px;
    outline: none;
    color: #333333;
    text-decoration: none;
    opacity: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
.sp_hide {
    display: none !important;
}
ul {
    list-style-type: none;
}
input, textarea {
    font-family: "SimSun", "Songti SC", "Noto Serif SC", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset;
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
select::-ms-expand {
    display: none;
}
/*-----------------------------------------------------------*/
/*フォント*/
.notoreg {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 400;
}
.notomed {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 500;
}
.notobold {
    font-family: "Noto Sans TC", sans-serif;
    font-weight: 700;
}
/*-----------------------------------------------------------*/
/*リンク（横幅・高さ指定無し）*/
/*-----------------------------------------------------------*/
/*アンカーリンクの着地地点を調整*/ :root {
    --header-h: 50px; /*headerの高さ*/
}
[id] {
    scroll-margin-top: var(--header-h);
}
/*-----------------------------------------------------------*/
/*ヘッダー*/
#header_wrap {
    width: 100%;
    height: var(--header-h);
    z-index: 10;
    position: relative;
    /*background-color: #000;*/
}
#header_wrap #header {
    width: calc(100% - 20px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#header_wrap #header .logo {
    z-index: 9;
}
#header_wrap .logo > a {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
#header_wrap .logo > a img {
    width: auto;
    max-height: 21px;
}
#header_wrap .logo > a span {
    font-size: 12px;
    /*color: #fff;*/
}
.openbtn {
    position: relative;
    cursor: pointer;
    width: 50px;
    height: 50px;
    z-index: 10;
}
#header .openbtn::before {
    content: '';
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
}
#header .openbtn.active::before {
    content: '';
}
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 22px;
    width: 25px;
    height: 2px;
    background: #000;
    position: absolute;
    right: 0;
}
.openbtn span:nth-of-type(1) {
    top: 17px;
}
.openbtn span:nth-of-type(2) {
    top: 24px;
}
.openbtn span:nth-of-type(3) {
    top: 31px;
}
/*activeクラスが付与したら線が回転して×に変更*/
.openbtn.active span {}
.openbtn.active span:nth-of-type(1) {
    top: 19px;
    transform: translateY(6px) rotate(-45deg);
    width: 25px;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 31px;
    transform: translateY(-6px) rotate(45deg);
    width: 25px;
}
/*※縦スクロール可*/
#g-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overscroll-behavior-y: none;
    background-color: #FFF;
    top: 0;
    right: -120%;
    transition: all 0.6s;
}
#g-nav.panelactive {
    right: 0;
}
#g-nav.panelactive #g-nav-list {}
#g-nav.panelactive #g-nav-list::-webkit-scrollbar {
    display: none;
}
/*ハンバーガーメニュー中身*/
#header_wrap #g-nav ul {
    margin: 100px auto 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px 0;
}
#header_wrap #g-nav ul li {
    position: relative;
}
#header_wrap #g-nav ul li a {
    font-size: 16px;
    /*color: #fff;*/
    letter-spacing: 0.25em;
    text-align: center;
}
/*-----------------------------------------------------------*/
/*コアページ ファーストビュー*/
main#contents article > section {
    width: calc(100% - 20px);
    padding: 0 10px;
    margin-left: auto;
    margin-right: auto;
    /**/
    margin-bottom: 25px;
}
main#contents article > section#pagetitle {
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px;
    padding: 0px 0;
}
main#contents article > section#pagetitle h1.hd {
    width: 100vw;
    /*height: 110px;*/
	height: 180px;
    margin: 0 calc(50% - 50vw);
    background: url(../image/common/title_bg.webp) 0 0 / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 2.0rem;
    font-weight: 500;
    color: #fff;
    background-position: center;
    position: relative;
}
main#contents article > section#pagetitle h1.hd:before {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 5px;
    background-color: #005b92;
    content: '';
    z-index: -1;
}
main#contents article > section#pagetitle h1.hd:after {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50%;
    height: 5px;
    background-color: #4d4d4d;
    content: '';
    z-index: -1;
}
.pankuzu ul {
    margin: 10px auto;
    display: flex;
    gap: 0 10px;
    margin-top: 100px;
}
.pankuzu ul li:not(:first-child)::before {
    content: '>';
    display: inline-flex;
    padding-right: 10px;
}
.pankuzu ul li a {
    color: #005B92;
}
.pankuzu ul li:last-child a {
    pointer-events: none;
    color: unset;
}
main#contents article > section h2.hd {
    font-size: 1.7rem;
    color: #005b92;
    text-align: center;
    padding: 0px 0 10px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}
main#contents article > section h2.hd::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #005B92;
    width: 47px;
    height: 2px;
}
main#contents article > section > .inner > .block {
    margin-top: 35px;
}
/*-----------------------------------------------------------*/
/*フッター*/
#footer_wrap {
    background-color: #005B92;
}
.footerIn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f2f2f2;
    position: relative;
    font-size: 1.4rem;
    padding: 20px 10px;
    box-sizing: border-box;
    gap: 20px;
	display: none;
}
.footerIn .footInfo {
    /*margin-right: auto;*/
    text-align: center;
}
.footerIn .footInfo a {
    font-size: unset;
    color: unset;
}
#footer_wrap .copy {
    background-color: #005B92;
}
#footer_wrap .copy div {
    width: calc(100% - 20px);
    padding: 0 10px;
    height: 35px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.0rem;
    color: #fff;
}
/*-----------------------------------------------------------*/
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 10;
}
#pagetop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #005B92;
    position: relative;
    color: #fff;
}
/*-----------------------------------------------------------*/
/*アニメーション*/
/*フェードアップ*/
.fadeUpTrigger, .afterloadfadeUp {
    opacity: 0;
}
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/