@charset "utf-8";
/* CSS Document */
@media print {
    /*印刷用CSSで適用させる定義を記述*/
    .to_top {
        display: none;
    }
}
html {
    overflow-x: hidden;
    overflow-y: scroll;
    font-size: 62.5%;
}
/*-----------------------------------------------------------*/
body {
    /*font-family: "Noto Sans SC", sans-serif;*/
    font-family: "SimSun", "Songti SC", "Noto Serif SC", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 1.7rem;
    -webkit-text-size-adjust: none;
    color: #000;
    overflow: hidden;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}
#all_wrap {}
::-webkit-scrollbar-track {
    background: #333;
}
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
* {
    margin: 0;
    padding: 0;
}
*:focus {
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    border: 0;
    vertical-align: top;
    vertical-align: bottom;
}
.pc_hide {
    display: none !important;
}
.sp_hide {}
a {
    font-size: 1.7rem;
    outline: none;
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    opacity: 1;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
a:hover {
    opacity: 0.6;
}
ul {
    list-style-type: none;
}
input, textarea {
    font-family: "SimSun", "Songti SC", "Noto Serif SC", "Hiragino Mincho ProN", "Yu Mincho", serif;
    font-size: 1.6rem; /*16*/
    -webkit-text-size-adjust: none;
    color: #000;
    overflow: hidden;
    font-weight: 400;
    font-style: normal;
    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;
}
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: 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: auto; /*headerの高さ*/
}
[id] {
    scroll-margin-top: var(--header-h);
}
/*-----------------------------------------------------------*/
/*ヘッダー*/
#header_wrap {
    position: relative;
}
#header_wrap::before {
    /*content: '';
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	height: 100px;
	background-color: #000;
	position: absolute;
	top: 0;*/
}
#header_wrap #header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    padding: 0 10px;
    margin-left: auto;
    margin-right: auto;
}
#header_wrap .logo {
    max-width: 1180px;
    /*padding: 0 10px;*/
    width: 50%;
    height: 72px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
#header_wrap .logo > a {
    display: flex;
    align-items: center;
    /*color: #fff;*/
    gap: 0 15px;
}
#header_wrap .logo > a > span {
    font-size: 1.4rem;
}
#header_wrap .btns {
    width: 250px;
    height: 45px;
    position: absolute;
    top: 25px;
    right: 20%;
}
#header_wrap .btns > a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #005B92;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
#header_wrap #g-nav {
    max-width: 1080px;
    padding: 0 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
#header_wrap #g-nav ul {
    display: flex;
}
#header_wrap #g-nav ul li {
    width: calc(100% / 6);
    height: 60px;
    display: flex;
    justify-content: center;
    position: relative;
}
#header_wrap #g-nav ul li a {
    width: calc( 100% - 10px );
    height: 100%;
	padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}
#header_wrap #g-nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    height: 4px;
    background: #005B92;
    transition: all .3s;
    transform: scale(0, 1);
    transform-origin: center top;
}
#header_wrap #g-nav ul li a:hover::before {
    /* transform: scale(1, 1);*/
}
@media screen and (width <= 900px) {
	#header_wrap .logo > a > span {
		font-size: 1.23vw; /* 1.1rem相当 */
	}
	#header_wrap #g-nav ul li a {
		font-size: 1.67vw; /* 1.5rem相当 */
	}
}

/*-----------------------------------------------------------*/
/*コアページ ファーストビュー*/
main#contents article > section {
    max-width: 980px;
    padding: 0 10px;
    width: calc( 100% - 20px );
    margin-left: auto;
    margin-right: auto;
    /**/
    margin-bottom: 70px;
}
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;
    margin: 0 calc(50% - 50vw);
    height: 244px;
    background: url(../image/common/title_bg.webp) 0 0 / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3.5rem;
    font-weight: 500;
    color: #fff;
    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: 99;
}
main#contents article > section#pagetitle h1.hd:after {
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 50%;
    height: 5px;
    background-color: #4d4d4d;
    content: '';
    z-index: 99;
}
.pankuzu ul {
    margin: 15px auto 18px;
    display: flex;
    gap: 0 10px;
    margin-top: 150px;
    padding: 0 10px;
}
.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: 2.8rem;
    color: #005b92;
    text-align: center;
    padding: 0 0 10px;
    margin-bottom: 25px;
    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: 40px;
}
/*-----------------------------------------------------------*/
/*フッター*/
#footer_wrap {
    /*       margin-top: 150px;*/
}
.footerIn {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2f2f2;
    position: relative;
    font-size: 1.5rem;
    padding: 30px 10px;
    box-sizing: border-box;
	display: none;
}
.footerIn .footInfo {
    margin-bottom: auto;
    /*margin-left: 65px;
        margin-right: 35px;*/
    margin-left: 20px;
}
.footerIn .footInfo:first-of-type {
    margin-left: 140px;
}
.footerIn .footInfo a {
    font-size: unset;
    color: unset;
}
.footerIn .footInfo a {
    font-size: unset;
    color: unset;
}
.footerIn .footInfo a[href^="tel:"] {
    pointer-events: none;
}
#footer_wrap .copy {
    background-color: #005B92;
}
#footer_wrap .copy div {
    max-width: 1180px;
    padding: 0 10px;
    width: 100%;
    height: 45px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
}
/*-----------------------------------------------------------*/
/*to top*/
#pagetop {
    position: fixed;
    right: 2%;
    bottom: 5%;
    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);
    }
}
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*ipad横向き時*/
@media screen and (max-width: 1500px) and (orientation: landscape) {} /*ここまで*/
/*ipad縦向き時*/
@media screen and (min-width: 820px) and (orientation: portrait) {} /*ここまで*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/
/*-----------------------------------------------------------*/