@charset "utf-8";

/* リセットCSSここから */

:where(abbr[title]) {
    text-decoration: underline;
    text-decoration: underline dotted
}

:where(b, strong) {
    font-weight: bolder
}

:where(code, kbd, samp) {
    font-family: monospace, monospace;
    font-size: 1em
}

:where(small) {
    font-size: 80%
}

:where(audio, canvas, iframe, img, svg, video) {
    vertical-align: middle
}

:where(iframe) {
    border-style: none
}

:where(svg:not([fill])) {
    fill: currentColor
}

:where(table) {
    border-collapse: collapse;
    border-color: currentColor;
    text-indent: 0
}

:where(button, input, select) {
    margin: 0
}

:where(button, [type="button"i], [type="reset"i], [type="submit"i]) {
    -webkit-appearance: button
}

:where(fieldset) {
    border: 1px solid #a0a0a0
}

:where(progress) {
    vertical-align: baseline
}

:where(textarea) {
    margin: 0;
    resize: vertical
}

:where([type="search"i]) {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.54
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

:where(dialog) {
    background-color: white;
    border: solid;
    color: black;
    height: -moz-fit-content;
    height: fit-content;
    left: 0;
    margin: auto;
    padding: 1em;
    position: absolute;
    right: 0;
    width: -moz-fit-content;
    width: fit-content
}

:where(dialog:not([open])) {
    display: none
}

:where(details>summary:first-of-type) {
    display: list-item
}

:where([aria-busy="true"i]) {
    cursor: progress
}

:where([aria-disabled="true"i], [disabled]) {
    cursor: not-allowed
}

:where([aria-hidden="false"i][hidden]) {
    display: initial
}

:where([aria-hidden="false"i][hidden]:not(:focus)) {
    clip: rect(0, 0, 0, 0);
    position: absolute
}


/* リセットCSSここまで */

body {
    font-family: "Noto Sans JP", sans-serif;
    max-width: 1920px;
    margin: 0 auto;
    font-size: 16px;
    overflow-x: hidden;
}

ul li a {
    list-style: none;
    text-decoration: none;
}

a:hover {
    cursor: pointer;
    opacity: 1;
}

.sp {
    display: none;
}

@media screen and (max-width: 798px) {

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
}


/* ヘッダーここから */

header {
    background-color: #F4F9FF;
    height: 80px;
}

.headerbox {
    display: flex;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
}

.header-logo img {
    width: 150px;
    height: auto;
}

.header-boxin {
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    width: calc(100svw - 50%);
}

.header-left {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: space-between;
    width: calc(100svw - 90%);
    padding-right: 20px;
}

.header-nav {
    width: 100%;
}

.header-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 700;
    padding: 0;
}

.header-nav ul li {
    padding: 0 1rem;
}

.header-left ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    padding: 0;
}

.header-nav ul,
.header-left ul {
    list-style: none;
}

.header-nav ul li a,
.header-left ul .login a {
    text-decoration: none;
    display: block;
    color: #000;
}

.header-nav ul li a:hover {
    color: #555;
}

.header-left ul li {
    width: 150px;
    text-align: center;
    font-weight: 700;

}

.login a {
    color: #000;
    display: inline-block;
}

.login a:hover {
    color: #555;
}

.registration {
    width: 50%;
    height: 50px;
    text-align: center;
    background-color: #0067FF;
    border-radius: 30px;
    line-height: 48px;
    box-shadow: 3px 3px 2px #04357d;
    transition: .2s;
}

.registration a {
    color: #fff;
    text-decoration: none;
    display: block;
}

.registration:hover {
    box-shadow: unset;
    opacity: 1;
    transform: translate(2px, 2px);

}

@media screen and (min-width: 799px) and (max-width: 900px) {
    .header-logo img {
        width: 120px;
    }

}


/* ★ハンバーガーメニュー */
.hamburger-menu {
    position: relative;
}

@media screen and (max-width: 798px) {
    header {
        height: 60px;
    }

    .headerbox {
        justify-content: space-between;
        max-width: 600px;
        width: 90%;
        padding: 0 10px;
    }

    .header-boxin {
        background-color: #F4F9FF;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        left: 0;
        padding: 0;
        position: absolute;
        transform: translateX(-100%);
        transition: 0.3s;
        top: 100%;
        width: 100%;
    }

    .header-nav {
        text-align: center;
    }

    .header-nav ul {
        display: block;
        padding-left: 0;
    }

    .header-nav ul li {
        padding: 1rem;
    }

    .header-right {
        width: 100%;
    }

    .header-left {
        width: 100%;
        justify-content: center;
    }

    .header-left ul {
        justify-content: center;
    }

    #hamburger:checked~.header-boxin {
        transform: translateX(0%);
        transition: 0.3s;
        z-index: 9999;
    }
}

.hamburger-menu__input {
    display: none;
}

.hamburger-menu__bg {
    cursor: pointer;
    display: none;
    height: 100vh;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

#hamburger:checked~.hamburger-menu__bg {
    display: block;
}

.hamburger-menu__button {
    display: none;
}

@media screen and (max-width: 798px) {
    .hamburger-menu__button {
        align-items: center;
        appearance: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 5px;
        height: 32px;
        justify-content: center;
        width: 32px;
    }
}

.hamburger-menu__button-mark {
    background-color: #000;
    display: block;
    height: 1px;
    transition: 0.3s;
    width: 20px;
}

@media screen and (max-width:798px) {
    #hamburger:checked~.hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(1) {
        transform: translate(2px, 1px) rotate(45deg);
        transform-origin: 0%;
    }

    #hamburger:checked~.hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(2) {
        opacity: 0;
    }

    #hamburger:checked~.hamburger-menu__button .hamburger-menu__button-mark:nth-of-type(3) {
        transform: translate(2px, 3px) rotate(-45deg);
        transform-origin: 0%;
    }
}

/* ★ハンバーガーメニュー */




/* ヘッダーここまで */


/* ファーストビューここから */
.firstview {
    background-image: url(./img/topimg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100svw;
    height: 80svh;
    position: relative;
}

.firstview_logo {
    position: absolute;
    top: 5%;
    left: calc(100vw - 50%);
}

.firstview_text {
    position: absolute;
    z-index: 999;
    top: 20%;
    left: calc(100vw - 90%);
    width: calc(100vw - 65%);
}

.firstview_text h1 {
    margin: 2rem auto;
    width: 100%;
    text-align: center;
    display: block;
    max-inline-size: max-content;
    margin-inline: auto;
}

.topimg {
    position: absolute;
    text-align: right;
    bottom: 0;
    left: calc(100vw - 58%);
}

.topimg img {
    max-width: 600px;
}

.firstview_logo img {
    width: 450px;
}

.btn {
    width: 200px;
    height: 60px;
    background-color: #FF9A00;
    border-radius: 30px;
    box-shadow: 2px 2px 2px #af6900;
    font-weight: 700;
    display: table;
    transition: .2s;
    text-align: center;
    margin: 1rem auto;
}

.btn a {
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.btn:hover {
    box-shadow: 0px 0px 0px #af6900;
    opacity: 1;
    transform: translate(2px, 2px);
}

@media screen and (max-width: 798px) {

    .firstview_logo {
        left: 0;
        width: 100%;
        text-align: center;
    }

    .firstview_logo img {
        max-width: 200px;
    }

    .firstview_text {
        top: 20%;
        left: 0;
        width: 100%;
    }

    .firstview_text h1 {
        font-size: 1.2rem;
        width: 100%;
    }

    .topimg {
        bottom: 5%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 100%;
    }

    .topimg img {
        max-width: 350px;
    }


}

/* ファーストビューここまで */

/* メインここから */
section {
    margin: 0 auto;
    width: 960px;
}

section .flexbox {
    min-height: 360px;
    padding: 2rem 0 0;
}

@media screen and (max-width: 798px) {

    section {
        margin: 0 auto;
        max-width: 100svw;
    }

    section .flexbox {
        padding: 1rem 0 0;
    }

}

.flexbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flexbox-row {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    align-items: center;
}

.flex-left {
    width: 50%;
    display: inline-block;
    text-align: left;
    padding: 1rem 1rem 1rem 2rem;
}

.flex-left h2 {
    margin: 0;
    line-height: 1rem;
}

.flex-left h3 {
    font-size: 2rem;
    margin: 0;
}

.flex-left p {
    text-align: justify;
}

.flex-right {
    margin: 0 auto;
    max-width: 400px;
    padding-top: 2rem;
    width: 50%;
}

.flex-right img {
    padding: 0 1rem;
    width: 90%;
    height: auto;
}

.iconbox {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto;
}

@media screen and (max-width: 798px) {

    section .flexbox,
    section .flexbox-row {
        width: 100svw;
        max-width: 100svw;
    }

    .flexbox,
    .flexbox-row {
        display: block;
    }

    .iconbox {
        margin: 0px auto 20px;
    }

    .flex-left,
    .flex-right {
        width: 90%;
        max-width: 100svw;
        padding: 1rem 1rem 1rem 1rem;
    }

    .flex-left h2 {
        font-size: 1rem;
    }

    .flex-left h3 {
        font-size: 1.2rem;
    }

    .flex-right img {
        padding: 0;
    }


}

.icon {
    display: block;
    padding: 16px 16px 16px 26px;
    position: relative;
    display: inline-block;
    color: #0067FF;
    text-decoration: none;
    overflow-wrap: break-word;

    &::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        position: absolute;
        left: 0;
        top: 53%;
        transform: translateY(-50%);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    &.newsicon::before {
        background-image: url("./img/info-circle.png");
    }

    &.boardicon::before {
        background-image: url("./img/Rectangle\ 311\ \(Stroke\).png");
    }

    &.foldericon::before {
        background-image: url("./img/Vector.png");
    }

    &.scheduleicon::before {
        background-image: url("./img/calendar3.png");
    }

    &.chaticon::before {
        background-image: url("./img/chat-dots.png");
    }

    &.placeicon::before {
        background-image: url("./img/geo-alt.png");
    }

    &.peopleicon::before {
        background-image: url("./img/people.png");
    }

    &.salesicon::before {
        background-image: url("./img/calculator.png");
    }
}

.convenience {
    background-color: #f8f8f8;
    width: 100svw;
    margin: 2rem calc(50% - 50vw) 0;
    text-align: center;
    padding: 2rem;
}

.conveniencebox {
    margin: 0 auto;
    width: 960px;
}

.convenience h2 {
    font-size: 2rem;
}

.convenience h3 {
    color: #FF9A00;
    font-size: 1.5rem;
}

.convenience h4 {
    font-size: 1.2rem;
}

.conveniencebox img {
    max-width: 500px;
}

.conveniencebox p {
    text-align: justify;
    width: 65%;
    margin: 0 auto;
}

@media screen and (max-width: 798px) {

    .convenience {
        max-width: 100svw;
        margin: 1rem calc(50% - 50vw) 0;
        text-align: center;
        padding: 1rem 0;
    }

    .convenience h2 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .convenience h3 {
        font-size: 1.2rem;
        margin: 10px auto;
    }

    .convenience h4 {
        font-size: 1em;
    }

    .conveniencebox {
        margin: 0 auto;
        max-width: 600px;
        width: 100svw;
    }

    .conveniencebox img {
        max-width: 200px;
    }

}


.function {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin: 2rem auto;
    width: 60%;
}

.functionbox {
    width: 180px;
    height: 150px;
    vertical-align: middle;
    display: table;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 2px 2px 2px #e0e0e0;
    margin: 10px 10px;
    transition: .2s;
    text-align: center;
}

.functionbox a {
    display: flex;
    text-decoration: none;
    font-weight: 700;
    color: #000;
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.functionbox:hover {
    border-radius: 10px;
    box-shadow: 0px 0px 0px #e0e0e0;
    opacity: 1;
    transform: translate(2px, 2px);
}

.functionbox a img {
    margin: 10px 0 0;
}

.functionbtn {
    width: 200px;
    height: 60px;
    background-color: #FF9A00;
    border-radius: 30px;
    box-shadow: 2px 2px 2px #af6900;
    font-weight: 700;
    margin: 1rem auto;
    display: table;
    transition: .2s;
}


.functionbtn a {
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.functionbtn:hover {
    box-shadow: 0px 0px 0px #af6900;
    opacity: 1;
    transform: translate(2px, 2px);
}

.backcolor {
    background-color: #f8f8f8;
    width: 100svw;
    margin: 2rem calc(50% - 50vw);
    padding: 2rem;
}

.backcolor .flexbox,
.backcolor .flexbox-row {
    margin: 0 auto;
    width: 960px;
}

.backcolor-green {
    background-color: #1EAA39;
    margin: 0 calc(50% - 50dvw) 2rem;
    width: 100svw;
    padding: 2rem;
}

.functionbox {
    background-color: #fff;
}

@media screen and (max-width: 798px) {

    .function {
        width: 90%;
        margin: 0rem auto;
    }

    .functionbox {
        width: 100px;
        height: 110px;
    }

    .functionbox a img {
        width: 30px;
        height: 30px;
    }

    .functionbox a p {
        font-size: 0.8rem;
    }

    .backcolor-green {
        padding: 2rem 0;
    }

    .backcolor {
        padding: 1rem 0;
    }

}

.sales {
margin-bottom: 2rem;
}


/* メインここまで */


/* フッターここから */

footer {
    background-color: #F4F9FF;
    padding: 2rem 0 2rem 0;
}

.footerbox {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_footer a {
    display: block;
}

.logo_footer a img {
    width: 100%;
}

.logo_footer {
    width: 200px;
}

footer ul {
    font-weight: bold;
    font-size: 1.2rem;
}

footer ul li {
    font-weight: normal;
}

.footer-nav ul,
.footer-list ul {
    list-style: none;
}

.footer-menu {
    width: 70%;
    display: flex;
    justify-content: space-around;
}

.footer-menu ul li {
    margin: 10px auto;
    font-size: 0.9rem;
}

.footer-menu ul li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    margin: 20px 0 0;
}

.footerbox a:hover {
    color: #555;
}

@media screen and (max-width: 798px) {
    .footerbox {
        display: block;
    }

    .logo_footer {
        width: 100px;
        margin: 10px auto;
    }

    .footer-menu {
        width: 100%;
    }

    footer ul {
        font-size: 0.9rem;
    }

    .footer-nav,
    .footer-list {
        width: 50%;
    }

    .footer-nav ul,
    .footer-list ul {
        padding-left: 0.9rem;
    }

    .copyright {
        font-size: 0.6rem;
    }

}




/* フッターここまで */