/*-------------------------------------------------
|-  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 {
    width: 1000px;
    margin: 0 auto;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    justify-content: space-between;
}
.logo {
    width: 35%;
    max-width: 245px;
}
.header-contact {
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    background-color: #FFEBF0;
    color: var(--primary-color);
    padding: 5px 15px;
    font-size: var(--font-size14);
}
.nav-block {
    margin-top: 40px;
}
.menu {
    display: flex;
}
.menu__item {
    background-color: #E6E6E6;
    color: #000;
    transition: .4s;
    position: relative;
    top: 0;
    left: 0;
}
.menu__link {
    position: relative;
    padding: 10px;
    width: 150px;
    text-align: center;
    box-sizing: border-box;
    font-size: var(--font-size16);
    font-weight: bold;
    display: block;
    z-index: 1;
}
.menu__link::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 100% 50%;
    transform: scaleX(0);
/*    transition: transform ease .3s;*/
}
.menu__link:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.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: var(--primary-color);
        display: block;
        z-index: -1;
    }
    .menu__link:hover {
        color: #fff;
    }
    .menu__link:hover::before {
        content: '';
        left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 1001px){
    .logo {
        width: 20%;
    }
}
@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: 50%;
    }
    .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);
        width: 100%;
    }
    .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%;
    max-width: 1000px;
    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: 15px;
    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: var(--primary-color);
    color: #fff;
    padding: 10px 0;
}
.footerlink a {
    color: #fff;
}
.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 #fff;
}
.footerlink-link:last-child::after {
    border-right: none;
}
.footerlink-link:hover {
    text-decoration: underline;
}

/*-------------------------------------------------
|-  footer
-------------------------------------------------*/
.footer {
    padding: 20px 0 15px;
}
.footer-block {
    width: 100%;
    max-width: 940px;
    margin: 0 auto 30px;
    display: flex;
}
.logo-box {
    width: 360px;
    text-align: center;
}
.footer-logo {
    width: 200px;
    text-align: left;
    margin: 10px auto;
}
.address-box {
    width: 600px;
}
.pageTop {
    position: fixed;
    right: 45px;
    bottom: 70px;
    width: 80px;
    cursor: pointer;
}
@media screen and (max-width: 767px){
    .footer {
        width: 95%;
        margin: 0 auto;
        padding: 25px 0 5px;
    }
    .footer-block {
        margin: 0;
        display: block;
    }
    .logo-box {
        margin-bottom: 15px;
        text-align: left;
    }
    .footer-logo {
        width: 40%;
        max-width: 300px;
        margin: 0;
    }
    .copyright {
        font-size: .71rem;
    }
    .address-box {
        width: 100%;
        font-size: var(--font-size12);
    }
    .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: #F66C96;
    --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;
}
