html,
body,
h1,
h2,
h3,
h4,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    letter-spacing: .5px;
    font-size: 100%;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word
}

html {
    height: 100%;
    scroll-behavior: smooth
}

html body {
    width: 100%;
    overflow-x: hidden;
    font-weight: 500;
    line-height: 1.5;
}

ul,
li {
    list-style: none
}

img,
video,
object {
    max-width: 100%;
    height: auto;
    border: none;
    display: block
}

a {
    text-decoration: none;
    transition: .4s
}

a:hover {
    text-decoration: none
}

a:hover img {
    text-decoration: none;
    opacity: .8;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth
}

body {
    font-family: "Noto Sans JP";
    font-weight: 500
}

.observe {
    opacity: 0;
    transform: translateX(-30px);
    transition: .6s
}

.observe.active {
    opacity: 1;
    transform: translateX(0)
}

.l-container {
    max-width: 1080px;
    margin: 0 auto
}

.l-header {
    display: flex;
    justify-content: space-between;
    padding-left: 20px;
    align-items: center;
    height: 80px;
    z-index: 10;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: calc(100% - 20px)
}

.l-header__logo img {
    width: clamp(150px, 15.625vw, 300px)
}

.l-header__right {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: clamp(20px, 2.0833333333vw, 40px)
}

.l-header__right nav ul {
    display: flex;
    justify-content: space-between;
    gap: clamp(20px, 2.0833333333vw, 40px);
    align-items: center
}

.l-header__right nav ul li a {
    color: #144c84;
    font-weight: 500;
    font-size: clamp(11px, 1vw, 14px)
}

.l-header__right__btns {
    display: flex;
    align-items: stretch
}

.l-header__right__btns .tel {
    display: block;
    font-size: clamp(13px, .8333333333vw, 16px);
    color: #144c84;
    font-weight: 500;
    line-height: 1.5;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #ddd;
    padding: 4px clamp(8px, calc((100vw / 1440) * 22), 25px)
}
.l-header__right__btns .tel.for-business {
    color: #fff;
    background-color: #FA7923;
    padding: 4px clamp(8px, calc((100vw / 1440) * 28), 32px);
}

.l-header__right__btns .tel span {
    font-size: clamp(10px, .625vw, 12px)
}

.l-header__right__btns .mail {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #144c84;
    width: 80px
}

.l-header__right__btns .mail img {
    width: 22px
}

.l-header__humburger,
.l-header__drawer {
    display: none
}

@media screen and (min-width: 768px) {
    .fixed_btn {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        right: -154px
    }

    .fixed_btn ul {
        display: flex;
        flex-direction: column
    }

    .fixed_btn ul li {
        border-radius: 20px 0 0 20px;
        width: 240px;
        height: 98px;
        display: flex;
        align-items: center;
        padding: 0 0 0 15px;
        margin: 0 0 18px;
        position: relative
    }

    .fixed_btn ul li:hover {
        animation-name: fixedBtnAnime;
        animation-duration: .5s;
        animation-fill-mode: forwards
    }

    @keyframes fixedBtnAnime {
        0% {
            right: 0
        }

        100% {
            right: 154px
        }
    }

    .fixed_btn ul li.line {
        background: #4caf50
    }

    .fixed_btn ul li.line img {
        width: 58px
    }

    .fixed_btn ul li.tel {
        background: #ec6800
    }

    .fixed_btn ul li.mail {
        background: #144c84
    }

    .fixed_btn ul li a {
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 22px;
        width: 100%;
        height: 100%
    }

    .fixed_btn ul li a .text {
        padding: 0 0 0 15px
    }

    .pc_none {
        display: none
    }
}

@media screen and (min-width: 768px)and (max-width: 1023px) {
    .l-header {
        height: 60px;
        position: fixed;
        width: calc(100% - 20px)
    }

    .l-header__logo img {
        max-width: 250px
    }

    .l-header__right nav {
        display: none
    }

    .l-header__right__btns {
        display: none
    }

    .l-header__humburger {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        z-index: 100
    }

    .l-header__humburger span {
        display: inline-block;
        background-color: #144c84;
        height: 1px;
        width: 28px;
        transition: .3s
    }

    .l-header__humburger.active span {
        position: absolute
    }

    .l-header__humburger.active span:first-of-type {
        transform: rotate(45deg)
    }

    .l-header__humburger.active span:nth-of-type(2) {
        opacity: 0
    }

    .l-header__humburger.active span:last-of-type {
        transform: rotate(-45deg)
    }

    .l-header__drawer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100vw;
        position: absolute;
        right: -100%;
        top: 0;
        gap: 50px;
        background-color: #fff;
        z-index: 1;
        transition: .5s
    }

    .l-header__drawer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px
    }

    .l-header__drawer ul li a {
        color: #144c84;
        font-weight: 700
    }

    .l-header__drawer .l-header__right__btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .l-header__drawer .l-header__right__btns .tel {
        background-color: rgba(0, 0, 0, 0);
        font-size: clamp(24px, calc((100vw / 1440) * 30), 30px);
        border: 1px solid #144c84;
    }

    .l-header__drawer .l-header__right__btns .tel span {
        font-size: 12px
    }

    .l-header__drawer .l-header__right__btns .mail {
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        height: 80px;
        color: #fff
    }

    .l-header__drawer .l-header__right__btns .mail.for-business {
        background-color: #FA7923;
    }

    .l-header__drawer.active {
        transform: translateX(-100%)
    }
}

@media screen and (max-width: 768px) {
    .l-header {
        height: 50px;
        position: fixed;
        width: calc(100% - 20px)
    }

    .l-header__logo img {
        max-width: 150px
    }

    .l-header__right nav {
        display: none
    }

    .l-header__right__btns {
        display: none
    }

    .l-header__humburger {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
        height: 50px;
        width: 50px;
        z-index: 100
    }

    .l-header__humburger span {
        display: inline-block;
        background-color: #144c84;
        height: 1px;
        width: 28px;
        transition: .3s
    }

    .l-header__humburger.active span {
        position: absolute
    }

    .l-header__humburger.active span:first-of-type {
        transform: rotate(45deg)
    }

    .l-header__humburger.active span:nth-of-type(2) {
        opacity: 0
    }

    .l-header__humburger.active span:last-of-type {
        transform: rotate(-45deg)
    }

    .l-header__drawer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        width: 100vw;
        position: absolute;
        right: -100%;
        top: 0;
        gap: 25px;
        background-color: #fff;
        z-index: 1;
        transition: .5s
    }

    .l-header__drawer ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .l-header__drawer ul li a {
        color: #144c84;
        font-weight: 700;
        font-size: 14px
    }

    .l-header__drawer .l-header__right__btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px
    }

    .l-header__drawer .l-header__right__btns .tel {
        background-color: rgba(0, 0, 0, 0);
        font-size: clamp(24px, calc((100vw / 1440) * 30), 30px);
        border: 1px solid #144c84;
        width: 200px;
        height: auto;
    }

    .l-header__drawer .l-header__right__btns .tel span {
        font-size: 12px
    }

    .l-header__drawer .l-header__right__btns .mail {
        width: 200px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        height: 50px;
        color: #fff
    }
    .l-header__drawer .l-header__right__btns .mail.for-business {
        background-color: #FA7923;
    }

    .l-header__drawer.active {
        transform: translateX(-100%)
    }

    .sp_none {
        display: none
    }

    .fixed_btn {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10000
    }

    .fixed_btn.pc_none {
        display: block
    }

    .fixed_btn ul {
        display: flex
    }

    .fixed_btn ul li {
        width: 33.33333%;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0
    }

    .fixed_btn ul li.line {
        background: #4caf50
    }

    .fixed_btn ul li.tel {
        background: #ec6800
    }

    .fixed_btn ul li.mail {
        background: #144c84
    }

    .fixed_btn ul li a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 12px
    }

    .fixed_btn ul li a img {
        width: 26px
    }

    .fixed_btn ul li a .text {
        padding-left: 5px
    }
}

.l-footer {
    background: #144c84;
    color: #fff;
    padding: 60px 0 55px
}

.l-footer .l-container {
    width: 100%;
    margin: auto
}

.l-footer .logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 35px
}

.l-footer .logo-wrapper .insta img {
    width: 25px;
    height: 25px;
    object-fit: contain
}

.l-footer .f_logo img {
    max-width: 100%
}

.l-footer .flex {
    display: flex;
    justify-content: space-between
}

.l-footer .flex .f_detail_area {
    display: flex;
    flex-direction: column
}

.l-footer .f_detail_area p {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 15px
}

.l-footer .f_detail_area a {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 15px
}

.l-footer .f_nav_area {
    width: 100%;
    max-width: 600px
}

.l-footer .f_nav_area ul {
    display: flex;
    justify-content: left
}

.l-footer .f_nav_area ul li {
    line-height: 1;
    margin-bottom: 25px
}

.l-footer .f_nav_area ul li::before {
    content: "-";
    margin-right: 5px
}

.l-footer .f_nav_area ul li a {
    line-height: 1;
    color: #fff;
    font-size: 14px
}

.l-footer .f_nav_area ul.top {
    justify-content: left
}

.l-footer .f_nav_area ul.top li {
    width: 20%
}

.l-footer .f_nav_area ul.bottom {
    display: flex;
    justify-content: space-between;
    width: 100%
}

.l-footer .f_nav_area ul.bottom .left {
    display: flex;
    gap: 40px
}

.l-footer .f_nav_area ul.bottom .left li {
    width: 100%;
    white-space: pre
}

.l-footer .f_nav_area ul.bottom .left li:last-of-type {
    width: auto
}

.l-footer .f_nav_area ul.bottom .right {
    width: 20%
}

.l-footer .f_nav_area ul.sponly {
    display: none
}

.l-footer .copy small {
    color: #fff;
    text-align: right;
    display: block;
    line-height: 1
}

@media screen and (max-width: 768px) {
    .l-footer {
        background: #144c84;
        padding: 25px 0
    }

    .l-footer .l-container {
        width: 100%;
        padding: 0 5.3333333%
    }

    .l-footer .logo-wrapper {
        margin-bottom: 20px
    }

    .l-footer .f_logo {
        max-width: 300px
    }

    .l-footer .f_detail_area {
        width: 100%;
        margin-bottom: 40px
    }

    .l-footer .flex {
        flex-direction: column;
        justify-content: flex-start
    }

    .l-footer .f_detail_area a,
    .l-footer .f_detail_area p {
        display: block;
        color: #fff;
        font-size: 12px;
        line-height: 1;
        margin-bottom: 15px
    }

    .l-footer .f_detail_area p:last-of-type {
        margin-bottom: 0
    }

    .l-footer .f_nav_area {
        max-width: unset
    }

    .l-footer .f_nav_area ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start
    }

    .l-footer .f_nav_area ul li {
        line-height: 1
    }

    .l-footer .f_nav_area ul li::before {
        content: "-";
        margin-right: 3px;
        color: #fff
    }

    .l-footer .f_nav_area ul li a {
        line-height: 1;
        color: #fff
    }

    .l-footer .f_nav_area ul.top {
        align-items: center
    }

    .l-footer .f_nav_area ul.top li {
        margin-bottom: 30px;
        width: 50%
    }

    .l-footer .f_nav_area ul.top li a {
        font-size: 14px
    }

    .l-footer .f_nav_area ul.bottom {
        gap: 0
    }

    .l-footer .f_nav_area ul.bottom li {
        margin-bottom: 15px;
        width: 50%
    }

    .l-footer .f_nav_area ul.bottom li:last-of-type {
        width: auto
    }

    .l-footer .f_nav_area ul.bottom li a {
        font-size: 12px
    }

    .l-footer .f_nav_area ul.bottom .right {
        display: none
    }

    .l-footer .f_nav_area ul.withoutsp {
        display: none
    }

    .l-footer .f_nav_area ul.sponly {
        display: flex
    }

    .l-footer .copy {
        margin: 65px 0 0;
        padding: 0
    }

    .l-footer .copy small {
        color: #fff;
        text-align: center;
        font-size: 12px;
        display: block
    }
}