/*-------------------------------------------------
|-  all
-------------------------------------------------*/
body {
    word-break: break-all;
}
a {
    color: #000;
}
img {
    width: 100%;
    display: block;
}
input, select {
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #000;
    border-radius: 0px;
}
.cs-link {
    display: block;
    transition: .2s;
}
.cs-link:hover {
    opacity: .8;
}
.disPc {
    display: block;
}
.disSp {
    display: none;
}
.main {
    min-height: 500px;
    overflow: hidden;
}
@media screen and (min-width: 768px){
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 767px){
    .disPc {
        display: none;
    }
    .disSp {
        display: block;
    }
    a[href^="tel:"] {
        color: #000;
    }
    .main {
        min-height: auto;
    }
}
/*-------------------------------------------------
|-  header
-------------------------------------------------*/
.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}
.header {
    padding: 13px 20px 13px 50px;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.logo {
    width: 35%;
    max-width: 245px;
}
.nav-block {
    margin-bottom: 15px;
}
.menu {
    display: flex;
}
.menu__link {
    position: relative;
    padding: 0 25px;
    box-sizing: border-box;
    font-size: var(--font-size20);
    display: block;
    z-index: 1;
    transition: .4s;
}
.menu__link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 30px;
    background: #231815;
    transform: rotateZ(25deg);
}
.menu__link-last::after {
    display: none;
}
@media screen and (min-width: 768px){
    .menu__link::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background: #174D80;
        display: block;
        transition: .2s width linear;
        transform: skew(335deg);
        z-index: -1;
    }
    .menu__link:hover {
        color: #fff;
    }
    .menu__link:hover::before {
        content: '';
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 1161px){
    .header {
        padding: 13px 25px 13px 0;
    }
    .menu__link {
        padding: 0 20px;
        font-size: var(--font-size16);
    }
    .menu__link::after {
        height: 25px;
    }
}
@media screen and (max-width: 1001px){
    .logo {
        width: 20%;
    }
    .nav-block {
        margin-bottom: 10px;
    }
    .menu__link {
        padding: 0 15px;
        font-size: var(--font-size14);
    }
    .menu__link::after {
        height: 20px;
    }
}
@media screen and (max-width: 767px){
     .header {
        position: fixed;
        top: 0;
        width: 100%;
        padding: 5px 15px 5px 0;
        background: #fff;
        align-items: center;
        flex-wrap: wrap;
        z-index: 10;
    }
    .logo {
        width: 40%;
    }
    .nav-block {
        position: fixed;
        width: 100%;
        margin: 0;
        background: #fff;
        overflow-y: scroll;
    }
    .menu {
        display: block;
    }
    .menu__item {
        margin-bottom: 5px;
    }
    .menu__link,
    .toggle {
        padding: 10px 40px;
        color: #fff;
        font-size: var(--font-size13);
        background: var(--primary-color);
    }
    .menu__link::after {
        display: none;
    }
    .toggle {
        position: relative;
    }
    .toggle::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
        width: 15px;
        height: 7px;
        background: url(/assets/common/img/btn_menu_open.svg);
        background-size: cover;
        display: block;
    }
    .toggle.active::after {
        background: url(/assets/common/img/btn_menu_close.svg);
        background-size: cover;
    }
    .menu-list {
        display: none;
    }
    .menu-list__item {
        margin-bottom: 5px;
    }
    .menu-list__link,
    .menu-list__child {
        padding: 10px 50px;
        color: #000;
        font-size: var(--font-size13);
        font-weight: 600;
        background: #F2F3F1;
        display: block;
    }
    .menu-list__child {
        padding: 10px 60px;
        font-weight: 300;
    }
    .close-btn {
        width: 80%;
        margin: 30px auto 50px;
        padding: 10px 0;
        color: #fff;
        font-size: var(--font-size13);
        text-align: center;
        background: var(--primary-color);
    }
}
/*-------------------------------------------------
|-  menu-trigger
-------------------------------------------------*/
@media screen and (max-width: 767px){
    .menu-trigger {
        position: relative;
        width: 30px;
        height: 25px;
    }
    .menu-trigger::before,
    .menu-trigger::after,
    .menu-trigger__item {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: #777;
        transition: .20s ease-in-out;
    }
    .menu-trigger::before {
        content: '';
        top: 0;
    }
    .menu-trigger::after {
        content: '';
        bottom: 0;
    }
    .menu-trigger__item {
        top: 50%;
        transform: translateY(-50%);
    }
    .active.menu-trigger::before {
        top: 10px;
        transform: rotate(45deg);
    }
    .active .menu-trigger__item {
        width: 0;
    }
    .active.menu-trigger::after {
        top: 10px;
        transform: rotate(-45deg);
    }
}
/*-------------------------------------------------
|-  breadcrumb
-------------------------------------------------*/
.breadcrumb-wrap {
    width: 100%;
    margin-bottom: 50px;
    padding: 10px 0;
    background: var(--primary-color);
}
.breadcrumb {
    width: 75%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}
.breadcrumb__item {
    position: relative;
    margin-right: 15px;
    padding-right: 30px;
    box-sizing: border-box;
    font-size: var(--font-size14);
}
.breadcrumb__item:last-child {
    margin: 0;
    padding: 0;
}
.breadcrumb__item::before {
    content: '\FF1E';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    color: #fff;
}
.breadcrumb__item:last-child::before {
    display: none;
}
.breadcrumb__item,
.breadcrumb__link {
    color: #fff;
}
.breadcrumb__link:hover {
    text-decoration: underline;
}
@media screen and (max-width: 767px){
    .breadcrumb-wrap {
        margin-bottom: 30px;
        padding: 5px 0;
    }
    .breadcrumb {
        width: 93%;
    }
}
/*-------------------------------------------------
|-  section
-------------------------------------------------*/
.section {
    width: 93%;
    max-width: 960px;
    margin: 0 auto 100px;
}
.section-ttl {
    width: fit-content;
    margin-bottom: 50px;
    padding: 0 100px 15px 0;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
}
.section-ttl__icon {
    width: 37px;
    margin-right: 20px;
}
.section-ttl__item {
    color: var(--primary-color);
    font-weight: 600;
}
.section-ttl__en {
    margin-right: 20px;
    font-size: 1.75rem;
}
.section-ttl__jp {
    font-size: var(--font-size22);
}
@media screen and (max-width: 767px){
    .section {
        margin: 0 auto 40px;
    }
    .section-ttl {
        width: 100%;
        margin-bottom: 25px;
        padding: 0 0 10px 0;
        flex-wrap: wrap;
    }
    .section-ttl__icon {
        width: 25px;
        margin-right: 10px;
    }
    .section-ttl__en {
        margin-right: 10px;
        font-size:var(--font-size21);
    }
    .section-ttl__jp {
        font-size: var(--font-size18);
    }
}

/*-------------------------------------------------
|-  footerlink
-------------------------------------------------*/
.footerlink {
    width: 100%;
    text-align: center;
    background-color: #F2F3F1;
    padding: 10px 0;
}
.footerlink-block {
    display: flex;
    justify-content: center;
}
.footerlink-link {
    padding: 0 10px;
    text-decoration: none;
}
.footerlink-link::after {
    content: '';
    padding: 0 10px;
    border-right: 1px solid #000;
}
.footerlink-link:last-child::after {
    border-right: none;
}
.footerlink-link:hover {
    text-decoration: underline;
}

/*-------------------------------------------------
|-  footer
-------------------------------------------------*/
.footer {
    padding: 20px 0 15px;
    background: var(--primary-color);
}
.footer-block {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 30px;
    display: flex;
}
.footer-box {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}
.footer-txt {
    margin-bottom: 25px;
    color: #fff;
    font-size: var(--font-size14);
}
.footer-contact {
    width: 88%;
    margin: 0 auto 10px;
    box-sizing: border-box;
}
.footer-tel {
    width: 88%;
    margin: 0 auto;
    box-sizing: border-box;
}
.footer-tel__txt {
    margin-top: 5px;
    color: #fff;
    font-size: var(--font-size12);
    text-align: center;
    display: block;
}
.address {
    margin-bottom: 21px;
}
.address-ttl {
    color: #fff;
    font-size: var(--font-size20);
    font-weight: 600;
}
.address-txt {
    color:#fff;
}
.copyright {
    color: #fff;
    font-size: var(--font-size12);
    text-align: center;
}
.pageTop {
    position: fixed;
    right: 45px;
    bottom: 70px;
    width: 80px;
    cursor: pointer;
}
@media screen and (min-width: 768px){
    .footer-box:first-child {
        border-right: 1px solid #999;
    }
    .footer-tw {
        width: 55%;
    }
}
@media screen and (max-width: 767px){
    .footer {
        padding: 25px 0 5px;
    }
    .footer-block {
        margin: 0;
        display: block;
    }
    .footer-box {
        width: 83%;
        margin: 0 auto 20px;
        padding: 0;
    }
    .footer-box:last-of-type {
        margin: 0 auto 15px;
    }
    .footer-txt {
        margin-bottom: 20px;
        font-size: .85rem;
    }
    .footer-contact,
    .footer-tel {
        width: 96%;
    }
    .address {
        width: 92%;
        margin: 0 auto 25px;
    }
    .address-ttl {
        font-size: var(--font-size15);
    }
    .address-txt {
        font-size: .85rem;
    }
    .footer-tw {
        width: 15%;
        margin: 0 auto;
    }
    .copyright {
        font-size: .71rem;
    }
    .pageTop {
        right: 15px;
        bottom: 40px;
        width: 60px;
    }
}
/*-------------------------------------------------
|-  btn
-------------------------------------------------*/
.link-btn {
    width: 80%;
    max-width: 300px;
    margin: 50px auto 0;
}
.link-btn__link {
    padding: 15px 0;
    color: var(--primary-color);
    font-size: var(--font-size14);
    background: #fff;
    text-align: center;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    display: block;
    transition: .3s;
}
.link-btn__link:hover {
    color: #fff;
    background: var(--primary-color);
}
/*-------------------------------------------------
|-  fadeUp
-------------------------------------------------*/
.fade-in,
.fade-in-load {
    opacity: 0;
    transition-duration: 1s;
    transition-property: opacity, transform;
}
.fade-in-up {
    transform: translate(0, 50px);
}
.fade-in-down {
    transform: translate(0, -50px);
}
.fade-in-left {
    transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in,
.fade-in-load.scroll-in  {
    opacity: 1;
    transform: translate(0, 0);
}
/*-------------------------------------------------
|-  color
-------------------------------------------------*/
:root {
    --primary-color: #174D80;
    --color-01: #1D2087;
    --color-02: #8DC21F;
    --color-03: #EE8700;
    --color-04: #E6BD00;
    --color-05: #E50012;
    --color-06: #C8C9CA;
}
/*-------------------------------------------------
|-  font-size
-------------------------------------------------*/
:root {
    --font-size12: .75rem;
    --font-size13: .81rem;
    --font-size14: .87rem;
    --font-size15: .93rem;
    --font-size16: 1rem;
    --font-size17: 1.06rem;
    --font-size18: 1.12rem;
    --font-size19: 1.18em;
    --font-size20: 1.25rem;
    --font-size21: 1.31rem;
    --font-size22: 1.37rem;
}
/*-------------------------------------------------
|-  Rich Text Editor
-------------------------------------------------*/
.aligncenter {
}
.richtext-detail a {
    color: #006AB5;
}
.richtext-detail a:hover {
    text-decoration: underline;
}
.richtext-detail iframe {
    max-width: 100%;
}
.richtext-detail p {
    margin-bottom: 10px;
}
.richtext-detail strong {
    font-weight: 600;
}
.richtext-detail ul {
    padding-left: 20px;
    box-sizing: border-box;
    list-style: circle;
    margin-bottom: 10px;
}
.richtext-detail ol {
    padding-left: 20px;
    box-sizing: border-box;
    list-style: auto;
    margin-bottom: 10px;
}
.richtext-detail img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.richtext-detail table {
    max-width: 100%;
    border-width: 1px;
}
.richtext-detail a {
    display: inline-block;
}
p:has(> a img.aligncenter) {
    text-align: center;
}
p:has(> img.aligncenter) {
    text-align: center;
}
p:has(> a img.alignright) {
    text-align: right;
}
p:has(> img.alignright) {
    text-align: right;
}
a:has(> img.aligncenter) {
    display: inline-block;
}
