@charset "UTF-8";
html {
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    line-height: 1.75;
    overflow-x: hidden;
}
a {
    transition: 0.4s;
}
a:hover {
    opacity: 0.6;
    transition: 0.4s;
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 10px;
    }
    body {
        font-size: 1.4rem;
    }
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.flexbox {
    display: flex;
}
.flexbox.reverse {
    flex-direction: row-reverse;
}

.flexbox.j-center {
    justify-content: center;
}
.flexbox.j-start {
    justify-content: flex-start;
}
.flexbox.j-end {
    justify-content: flex-end;
}
.flexbox.j-between {
    justify-content: space-between;
}
.flexbox.a-center {
    align-items: center;
}

.more-btn {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 100vmax;
    background-color: #b0272d;
    color: #fff;
    padding: 8px;
    width: 30rem;
    height: 5.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    margin: 0 auto;
}
.more-btn:before {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 1.2rem;
    height: 1.2rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.more-btn:after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 1px;
    background-color: #fff;
}
.page {
    margin-top: 180px;
}
.sec-title {
    font-size: 3rem;
    font-weight: bold;
    border-left: 6px solid #b0272d;
    padding: 0 0 0 20px;
    margin-bottom: 20px;
}
.sec-title span {
    font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
    .flexbox.reverse {
        flex-direction: column;
    }
    .wrap {
        margin: 0 auto;
        padding: 0 4vw;
    }
    .page {
        margin-top: 120px;
    }
    .sec-title {
        font-size: 2rem;
    }
}

/* ヘッダー */

header.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0px 2% 10px;
    transition: all 0.5s;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: #fff;
}
header.header a {
    line-height: 1.7;
    display: block;
    font-family: a-otf-ryumin-pr6n, serif;
}
header.header h1.logo {
    display: flex;
    align-items: center;
    gap: 20px;
}
header.header h1.logo a {
    display: inline-block;
    width: 220px;
}

header.header h1.logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #808080;
    font-family: fot-tsukubrdgothic-std, sans-serif;
}
header.header .hd-right {
    margin-left: auto;
}
header.header .header-subnav {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}
header.header .header-subnav .header-subnav_list {
    display: inline-block;
    background-color: #d5effc;
    padding: 16px 20px 10px;
    border-radius: 0 0 10px 10px;
}
header.header .header-subnav .header-subnav_list li {
    display: inline-block;
    margin-left: 10px;
    width: 20px;
}
header.header .header-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
header.header .header-nav .header-nav_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
}
header.header .header-nav .header-nav_list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    white-space: nowrap;
}

header.header .header-nav .header-nav_list li:before {
    content: "";
    display: inline-block;
    background-size: contain;
    margin-right: 8px;
}
header.header .header-nav .header-nav_list li.icon01:before {
    width: 38px;
    height: 38px;
    background: url(../img/common/nav-icon01.png) left center no-repeat;
    background-size: contain;
}

header.header .header-nav .header-nav_list li.icon02:before {
    width: 32px;
    height: 24px;
    background: url(../img/common/nav-icon02.png) left center no-repeat;
    background-size: contain;
}

header.header .header-nav .header-nav_list li.icon03:before {
    width: 32px;
    height: 24px;
    background: url(../img/common/nav-icon03.png) left center no-repeat;
    background-size: contain;
}

header.header .header-nav .header-nav_list li.icon04:before {
    width: 34px;
    height: 31px;
    background: url(../img/common/nav-icon04.png) left center no-repeat;
    background-size: contain;
}

header.header.sticky {
    background: rgba(255, 255, 255, 0.9);
}
/* header.header.sticky h1.logo {
    position: absolute;
    left: 1.6%;
    top: 16px;
} */

header.header #drawArea nav,
header.header .dropdown {
    visibility: hidden;
    position: fixed;
    background-color: #b0272d;
    right: 0;
    top: 130px;
    padding: 30px;
    width: 100%;
    max-width: 380px;
    transition: all 0.3s;
    z-index: 30;
    opacity: 0;
    border-radius: 10px;
    height: 0;
    line-height: 0;
}
header.header .dropmenu {
    cursor: pointer;
}
header.header .dropmenu .dropdown {
    position: absolute;
    top: 50px;
    left: -90px;
    visibility: hidden;
    background-color: #b0272d;
    padding: 20px;
    width: 300px;
    transition: all 0.3s;
    z-index: 30;
    opacity: 0;
    border-radius: 10px;
    height: 0;
    line-height: 0;
}
header.header .dropmenu .dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #b0272d transparent;
}
header.header #drawArea.open nav,
header.header .dropmenu.open .dropdown {
    visibility: visible;
    line-height: 1.5;
    height: auto;
    opacity: 1;
}
header.header #drawArea nav > .inner > ul {
    border-bottom: 1px solid #fff;
    padding: 1rem 0;
}
header.header #drawArea nav li,
header.header .dropdown li {
    color: #fff;
}
header.header #drawArea nav li a,
header.header .dropdown li a {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.6rem;
    padding: 0.6rem;
    transition-duration: 0.2s;
}
header.header #drawArea nav li a:before,
header.header .dropdown li a:before {
    content: "";
    display: inline-block;
    background: url(../img/common/nav-arrow.svg) left center no-repeat;
    background-size: contain;
    width: 7px;
    height: 9px;
    margin-right: 8px;
}
header.header #drawArea nav li.hogo a:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background: url(../img/common/icon-hogo.svg) left center no-repeat;
    background-size: contain;
    width: 31px;
    height: 31px;
    margin-right: 8px;
}
header.header #drawArea nav .disc li a:before {
    content: "●";
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    font-size: 14px;
    color: #fff;
    width: 12px;
    height: 23px;
    background: none;
}
header.header .toggle-btn {
    display: block;
    width: 30px;
    height: 40px;
    cursor: pointer;
    position: relative;
    margin-left: 40px;
}
header.header .toggle-btn span {
    position: absolute;
    display: block;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #000;
    transition: all 0.5s;
    border-radius: 4px;
}
header.header .toggle-btn p {
    position: absolute;
    display: block;
    bottom: 0;
    font-size: 10px;
}
header.header .toggle-btn span:nth-child(1) {
    top: 4px;
}
header.header .toggle-btn span:nth-child(2) {
    top: 12px;
}
header.header .toggle-btn span:nth-child(3) {
    top: 20px;
}
header.header #mask {
    display: none;
    transition: all 0.5s;
}

header.header #drawArea.open .toggle-btn span:nth-child(1) {
    transform: translateY(10px) rotate(-315deg);
}
header.header #drawArea.open .toggle-btn span:nth-child(2) {
    opacity: 0;
}
header.header #drawArea.open .toggle-btn span:nth-child(3) {
    transform: translateY(-10px) rotate(315deg);
}

header.header #drawArea .closeBtn {
    display: none;
}

header.header #drawArea span.sp-drop {
    margin-top: 10px;
    display: block;
}
header.header #drawArea nav li > ul {
    margin-left: 20px;
}
@media screen and (max-width: 1024px) {
    header.header {
        padding: 0px 2% 0px;
    }
    header.header .header-nav_list,
    header.header .header-subnav {
        display: none !important;
    }

    header.header h1.logo a {
        width: 230px;
    }
    header.header h1.logo span {
        display: none;
    }

    header.header .toggle-btn {
        display: block;
        width: 45px;
        height: 50px;
        margin-left: 0;
    }
    header.header .toggle-btn span {
        width: 100%;
    }
    header.header .toggle-btn p {
        font-size: 12px;
        text-align: center;
        width: 100%;
    }
    header.header .toggle-btn span:nth-child(1) {
        top: 4px;
    }
    header.header .toggle-btn span:nth-child(2) {
        top: 12px;
    }
    header.header .toggle-btn span:nth-child(3) {
        top: 20px;
    }
}

@media screen and (max-width: 767px) {
    header.header h1.logo a {
        width: 180px;
    }

    header.header.sticky #drawArea .toggle-btn span {
        background-color: #fff;
    }
    header.header.sticky #drawArea.open .toggle-btn span {
        background-color: #fff;
    }

    header.header .dropdown {
        display: none;
    }
    header.header #drawArea nav li a {
        font-size: 1.4rem;
        padding: 0.3rem;
    }
    header.header #drawArea nav {
        right: inherit;
        left: 50%;
        top: 60px;
        bottom: 20px;
        transform: translateX(-50%);
        padding: 20px;
        width: 100%;
        max-width: 95%;
        max-height: 95vh;
        overflow-y: auto;
    }

    header.header #drawArea .closeBtn {
        display: none;
        width: 30px;
        height: 40px;
        cursor: pointer;
        position: relative;
        margin-left: 40px;
        position: absolute;
        right: 10px;
        top: 12px;
        z-index: 22;
    }
    header.header #drawArea.open .closeBtn {
        display: block;
    }
    header.header #drawArea .closeBtn span {
        position: absolute;
        display: block;
        left: 0;
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
        border-radius: 4px;
    }
    header.header #drawArea .closeBtn span:nth-child(1) {
        top: 4px;
    }
    header.header #drawArea .closeBtn span:nth-child(2) {
        top: 12px;
    }
    header.header #drawArea .closeBtn span:nth-child(3) {
        top: 24px;
    }
    header.header #drawArea .closeBtn span:nth-child(1) {
        transform: translateY(10px) rotate(-315deg);
    }
    header.header #drawArea .closeBtn span:nth-child(2) {
        opacity: 0;
    }
    header.header #drawArea .closeBtn span:nth-child(3) {
        transform: translateY(-10px) rotate(315deg);
    }

    header.header #drawArea.open #mask {
        display: block;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: fixed;
        cursor: pointer;
    }
}

/* フッター */
.footer {
    background-color: #71cbf5;
    padding: 40px 0 0;
}
.footer-content {
    display: flex;
    gap: 20px;
}
.footer-content .address {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
}
.footer-content .address p {
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 5px;
}
.footer-content .address p > span {
    font-size: 2rem;
}

.footer-content .address .sns li {
    display: inline-block;
    width: 24px;
}

.footer-content .f-nav dt {
    font-size: 16px;
    font-weight: normal;
    white-space: nowrap;
}
.footer-content .f-nav dt:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 2px;
    background: url(../img/common/f-arrow.png) center center no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}
.footer-content .f-nav dd {
    font-size: 14px;
    margin-left: 20px;
    white-space: nowrap;
}
.footer-content .f-nav dd:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 2px;
    background: url(../img/common/f-arrow03.png) center center no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
}
.footer-content {
    position: relative;
}
.footer-content .hogo {
    position: absolute;
    right: 0;
    bottom: 0;
}
.footer-link {
    display: flex;
    gap: 22px;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 2px dotted #fff;
}
.footer-link p {
    font-size: 1.6rem;
}
.footer-link li {
    font-size: 1.2rem;
}
.footer-link li:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 2px;
    background: url(../img/common/f-arrow02.png) center center no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}
.copy {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 1.2rem;
}
.link-list {
    gap: 60px;
    margin-bottom: 100px;
}
.banner-list {
    gap: 20px;
    margin-bottom: 30px;
}
.totop {
    position: fixed;
    right: 0;
    bottom: 100px;
    z-index: 30;
}

@media screen and (max-width: 1024px) {
    .footer {
        background-color: #71cbf5;
        padding: 40px 0 0;
    }
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-content .address {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .footer-content .address .f-logo {
        width: 40%;
    }
    .footer-content .address p {
        line-height: 1.4;
        font-size: 16px;
        margin-bottom: 5px;
    }
    .footer-content .address p > span {
        font-size: 2.4rem;
    }
    .footer-content .address .sns {
        margin-left: 20px;
    }
    .footer-content .address .sns li {
        display: inline-block;
        width: 44px;
        margin-left: 10px;
    }
    .footer-content .address .sns li img {
        display: block;
        width: 100%;
    }
    .footer-content .hogo {
        position: relative;
        right: 0;
        bottom: 0;
    }
    .footer-link {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    .footer-link p {
        font-size: 1.6rem;
        width: 100%;
    }
    .footer-link li {
        font-size: 1.4rem;
    }

    .link-list {
        gap: 20px;
        margin-bottom: 60px;
    }
    .banner-list {
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .banner-list li {
        width: 48%;
    }
    .banner-list li img {
        width: 100%;
    }
    .totop {
        position: fixed;
        right: 0;
        bottom: 100px;
        z-index: 30;
    }
}
@media screen and (max-width: 768px) {
    .link-list {
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 40px;
    }
    .link-list li {
        width: 100%;
    }
    .banner-list {
        gap: 20px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    .banner-list li {
        width: 100%;
    }
    .footer-content .address {
        flex-direction: column;
    }
    .footer-content .address .f-logo {
        width: 90%;
        margin: 0 auto;
    }
    .footer-content .address .sns {
        margin-left: 0;
        margin-top: 20px;
    }
}
