@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap");

/* css reset
-------------------------------------- */
html, body, div, span, figure, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}

html {
    font-size: 62.5%;
}

body, table, input, textarea, select, option {
    font-family: 'Noto Sans JP', sans-serif;
}

article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

:focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
    /* image-rendering: -webkit-optimize-contrast; */
}

a,
input {
    transition: all 0.3s;
}

a, a:link {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

a:active {
    color: inherit;
}

*, *::before, *::after {
    box-sizing: border-box;
}

a[href^="tel:"] {
    cursor: default;
    pointer-events: none;
}

@media all and (min-width: 769px) {
    .sp {
        display: none !important;
    }
}

@media all and (max-width: 768px) {
    .pc {
        display: none !important;
    }

    a[href^="tel:"] {
        cursor: pointer;
        pointer-events: auto;
    }

    .wrap {
        min-width: 320px;
    }
}

/* Loading Animation
-------------------------------------- */
body {
    animation: fade 3s;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* rayout
-------------------------------------- */
html {
    overflow: auto;
}

body {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

.wrap {
    position: relative;
    /* overflow: hidden; */
}

.align {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.pagetop {
    display: block;
    width: 80px;
    height: 80px;
    background-color: #A7D398;
    border-radius: 40px;
    position: fixed;
    right: 50px;
    bottom: 50px;
    transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
}

.pagetop.on {
    visibility: visible;
    opacity: 1;
}

.pagetop::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 32px;
    left: 30px;
    width: 20px;
    height: 20px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
    transform: rotate(45deg);
}

.pagetop:hover {
    background-color: #77b463;
}

footer .navi div ul li a::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

@media all and (max-width: 960px) {
    .align {
        margin: 0 30px;
    }
}

@media all and (max-width: 768px) {
    .pagetop {
        width: 50px;
        height: 50px;
        border-radius: 25px;
        position: fixed;
        right: 20px;
        bottom: 70px;
    }

    .pagetop::before {
        top: 21px;
        left: 18px;
        width: 15px;
        height: 15px;
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
    }

    .pagetop.off {
        bottom: 20px;
    }
}

@media all and (max-width: 340px) {
    .align {
        margin: 0 20px;
    }
}

/* SP Navigation
-------------------------------------- */
@media all and (min-width: 769px) {
    .menuBox, .menu {
        display: none;
    }
}

@media all and (max-width: 768px) {
    nav {
        display: none;
    }

    .menu {
        height: 50px;
        width: 50px;
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(90deg, rgba(159, 206, 141, 1) 0%, rgba(95, 193, 222, 1) 100%);
        border-radius: 25px;
        cursor: pointer;
        z-index: 1000;
        transition: all 0.3s;
    }

    .menu div {
        display: block;
        position: absolute;
        left: 16px;
        width: 18px;
        height: 2px;
        background: #fff;
        transition: top 0.4s 0.2s, transform 0.4s 0s;
    }

    .menu div:nth-of-type(1) {
        top: calc(45% - 0px);
    }

    .menu div:nth-of-type(2) {
        top: calc(45% - 7px);
    }

    .menu div:nth-of-type(3) {
        top: calc(45% + 7px);
    }

    .menu.on {
        background: #fff;
    }

    .menu.on div {
        top: calc(45% - 0px);
        transform-origin: center center;
        background: #000;
        transition: top 0.4s 0s, transform 0.4s 0.2s;
    }

    .menu.on div:nth-of-type(1) {
        transform: rotate(45deg);
    }

    .menu.on div:nth-of-type(2) {
        opacity: 0;
    }

    .menu.on div:nth-of-type(3) {
        transform: rotate(135deg);
    }

    .menuBox {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: linear-gradient(90deg, rgba(159, 206, 141, 1) 0%, rgba(95, 193, 222, 1) 100%);
        z-index: 999;
        overflow-y: auto;
        transition: all 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .menuBox.on {
        visibility: visible;
        opacity: 1;
    }

    .menuBox ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menuBox ul li {
        color: #fff;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-align: center;
        margin-bottom: 10px;
    }

    .menuBox ul li a {
        display: block;
        padding: 10px;
    }
}


/* Fix Button
-------------------------------------- */
.fixButton {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    color: #fff !important;
    letter-spacing: 0.1em;
    padding: 13px 0;
    position: fixed;
    left:0;
    bottom:0;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(159, 206, 141, 1) 0%, rgba(95, 193, 222, 1) 100%);
    transition: all 0.3s;
}

.fixButton::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: 0;
    position: relative;
    top:20px;
    left:10px;
}

.fixButton.off {
    visibility: hidden;
    opacity: 0;
}


/* MV
-------------------------------------- */
.mv {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url(../img/bg.png ) repeat center center / 500px 500px;
}

.mv .inner {
    width: 100vh;
    height: 100vh;
    position: relative;
    margin: auto;
}

.mv .mv1 {
    position: absolute;
    top: 5vh;
    right: 0;
    height: 81%;
}

.mv .mv2 {
    position: absolute;
    top: 5vh;
    left: 0;
    height: 87%;
}

.mv .mv3 {
    position: absolute;
    bottom: 0;
    right: 15vh;
    height: 15%;
}

.mv .mvSp {
    display: none;
}

@media all and (max-width: 1024px) {
    .mv {
        display: flex;
        align-items: center;
    }

    .mv .inner {
        width: 70vw;
        height: auto;
        text-align: center;
        margin: auto;
        padding: 5vw 0;
    }

    .mv .mv1 {
        position: relative;
        top: 0;
        right: 0;
        height: auto;
    }

    .mv .mv2 {
        position: relative;
        top: 2vw;
        left: 0;
        height: auto;
    }

    .mv .mv3 {
        position: relative;
        top: 0;
        bottom: 0;
        right: 0;
        height: auto;
        width: 20vw;
        margin: auto;
    }

    .mv .mvSp {
        display: block;
    }

    .mv .mvPc {
        display: none;
    }
}

@media all and (max-width: 480px) {
    .mv .inner {
        width: 75vw;
        padding: 0;
    }

    .mv .mv2 {
        top: 4vw;
    }

    .mv .mv3 {
        width: 35vw;
        top: 4vw;
    }
}

/* PC Navigation
-------------------------------------- */
nav {
    background: linear-gradient(90deg, rgba(159, 206, 141, 1) 0%, rgba(95, 193, 222, 1) 100%);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
}

nav ul {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 80px;
    letter-spacing: 0.08em;
    display: flex;
    justify-content: center;
}

nav ul li:last-of-type {
    margin-right: 0;
}

nav ul li a {
    display: block;
    position: relative;
    padding: 0 30px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 8px solid #fff;
    border-bottom: 0;
    opacity: 0;
    transition: all 0.3s;
}

nav ul li a:hover::after {
    opacity: 1;
    bottom: 14px;
}

/* Contents
-------------------------------------- */
#overview h2, #contents h2, #access h2, #entry h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.2em;
    position: relative;
    padding: 150px 0 80px;
}

#overview h2::before, #contents h2::before, #access h2::before, #entry h2::before {
    content: "";
    display: block;
    margin: 0 auto 20px;
}

#overview h2::before {
    width: 401px;
    height: 70px;
    background: url(../img/title-overview.png ) no-repeat center center / contain;
}

#contents h2::before {
    width: 393px;
    height: 70px;
    background: url(../img/title-contents.png ) no-repeat center center / contain;
}

#access h2::before {
    width: 282px;
    height: 70px;
    background: url(../img/title-access.png ) no-repeat center center / contain;
}

#entry h2::before {
    width: 238px;
    height: 70px;
    background: url(../img/title-entry.png ) no-repeat center center / contain;
}

@media all and (max-width: 768px) {
    #overview h2, #contents h2, #access h2, #entry h2 {
        font-size: 2.8rem;
        padding: 100px 0 50px;
    }

    #overview h2::before {
        width: 300px;
        height: 50px;
    }

    #contents h2::before {
        width: 294px;
        height: 50px;
    }

    #access h2::before {
        width: 211px;
        height: 50px;
    }

    #entry h2::before {
        width: 178px;
        height: 50px;
    }
}

/* overview */
#overview .align>p {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 2;
}

#overview .info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#overview .info div {
    border: 3px solid #99CC91;
    border-radius: 15px;
    text-align: center;
    margin-top: 80px;
    padding: 0 40px 40px 40px;
}

#overview .info div:nth-of-type(1),
#overview .info div:nth-of-type(2) {
    width: 47%;
}

#overview .info div:nth-of-type(1) {
    margin-right: 6%;
}

#overview .info div:nth-of-type(3) {
    width: 100%;
}

#overview .info div:nth-of-type(4) {
    width: 47%;
}

#overview .info div h3 {
    color: #fff;
    font-size: 2.2rem;
    background-color: #99CC91;
    line-height: 60px;
    letter-spacing: 0.2em;
    width: 200px;
    border-radius: 30px;
    margin: -30px auto 0;
}

#overview .info div p {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-top: 20px;
}

#overview .info div p span {
    display: block;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: 10px;
}

#overview .info div:nth-of-type(1) p {
    padding-top: 1em;
}

#overview .info div:nth-of-type(4) p {
    font-size: 3rem;
}

@media all and (max-width: 768px) {
    #overview .align>p {
        font-size: 1.8rem;
        text-align: left;
    }

    #overview .info {
        display: block;
    }

    #overview .info div {
        border: 3px solid #99CC91;
        border-radius: 15px;
        text-align: center;
        padding: 0 20px 30px 20px;
    }

    #overview .info div:nth-of-type(1),
    #overview .info div:nth-of-type(2) {
        width: 100%;
    }

    #overview .info div:nth-of-type(1) {
        margin-right: 0;
    }

    #overview .info div:nth-of-type(3) {
        width: 100%;
    }

    #overview .info div:nth-of-type(4) {
        width: 100%;
    }

    #overview .info div h3 {
        font-size: 2rem;
        line-height: 50px;
        width: 150px;
        border-radius: 25px;
        margin: -30px auto 0;
    }

    #overview .info div p {
        font-size: 1.7rem;
        margin-top: 20px;
    }

    #overview .info div p span {
        display: block;
        font-size: 1.7rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        margin-top: 10px;
    }

    #overview .info div:nth-of-type(1) p {
        padding-top: 0;
    }

    #overview .info div:nth-of-type(4) p {
        font-size: 2.6rem;
    }
}

/* Contents */
#contents {
    margin-top: 150px;
    padding-bottom: 150px;
    background: url(../img/bg.png ) repeat center center / 500px 500px;
}

#contents h3 {
    text-align: center;
    display: flex;
    align-items: center;
}

#contents h3:nth-of-type(1) img {
    width: 143px;
}

#contents h3:nth-of-type(2) img,
#contents h3:nth-of-type(3) img {
    width: 150px;
}

#contents h3:nth-of-type(4) img {
    width: 155px;
}

#contents h3:nth-of-type(n+2) {
    margin-top: 100px;
}

#contents h3::before,
#contents h3::after {
    content: "";
    height: 3px;
    flex-grow: 1;
    background-color: #000;
}

#contents h3::before {
    margin-right: 50px;
}

#contents h3::after {
    margin-left: 50px;
}

#contents .align>div {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 20px;
}

#contents .align>div span {
    display: inline-block;
    color: #A7D398;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 45px;
    background-color: #fff;
    border: 3px solid #A7D398;
    border-radius: 25px;
    margin: 60px 20px 0 0;
    padding: 0 20px;
    white-space: nowrap;
}

#contents .align>div span::after {
    content: " ";
    margin-left: -0.15em;
}

#contents .align>p {
    font-size: 3.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
}

#contents .align>p:nth-of-type(n+3) {
    margin-top: 40px;
}

#contents .align>p small {
    font-size: 1.5rem;
    font-weight: 400;
}

#contents figure {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contents figure img {
    width: 300px;
    border-radius: 15px;
    margin-right: 70px;
}

#contents figure figcaption p:first-of-type {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-bottom: 30px;
}

#contents figure figcaption p:last-of-type {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    line-height: 2;
}

#contents ul.discussion {
    margin-top: 60px;
}

#contents ul.discussion li {
    background-color: #ECF3CF;
    border: 3px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    margin-bottom: 40px;
    position: relative;
}

#contents ul.discussion li::after {
    content: "";
    display: block;
    width: 23px;
    height: 43px;
    background: url(../img/contents2-bg.png ) no-repeat center center / contain;
    vertical-align: middle;
    position: absolute;
    top: -1px;
    right: -24px;
    z-index: -1;
}

#contents ul.discussion li:last-of-type {
    margin-bottom: 0;
}

#contents ul.discussion li p:first-of-type {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

#contents ul.discussion li p:last-of-type {
    font-size: 2rem;
    letter-spacing: 0.08em;
    text-align: right;
}

#contents ul.discussion li p:last-of-type a::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/link-icon1.png ) no-repeat center center / contain;
    vertical-align: middle;
    margin: 0 0 5px 5px;
}

#contents ul.booth {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

#contents ul.booth li {
    width: 31.2%;
    margin-top: 30px;
}

#contents ul.booth li a {
    display: block;
    position: relative;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 15px;
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
}

#contents ul.product li a:hover {
    background-color: #FFF6D8;
}

#contents ul.consultation li a:hover {
    background-color: #FFEAFC;
}

#contents ul.booth li a::before {
    content: "";
    display: block;
    width: 35px;
    height: 35px;
    background: #606060 url(../img/link-icon2.png ) no-repeat 10px 6px / 20px 20px;
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0 0 0 10px;
    transition: all 0.3s;
}

#contents ul.product li {
    width: 48.5%;
}

#contents ul.product li a:hover::before {
    background: #E29858 url(../img/link-icon2.png ) no-repeat 10px 6px / 20px 20px;
}

#contents ul.consultation li a:hover::before {
    background: #5649BE url(../img/link-icon2.png ) no-repeat 10px 6px / 20px 20px;
}

#contents ul.booth li p:first-of-type {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

#contents ul.product p:first-of-type {
    padding: 40px 20px 25px;
    height: 3em;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

#contents ul.product p:nth-of-type(2) {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: left;
    padding: 0 30px 20px 30px;
    border-bottom: 1px dotted #b1b1b1;
}

#contents ul.product p:nth-of-type(2) span {
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
    text-align: center;
    display: block;
    padding: 5px;
    margin-bottom: 10px;
    background-color: #b1b1b1;
    border-radius: 3px;
}

#contents ul.product p:last-of-type {
    font-size: 1.5rem;
    padding: 20px 30px 35px;
    text-align: left;
}

#contents ul.consultation p:first-of-type {
    color: #fff;
    padding: 20px 20px 20px;
    height: 3em;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C490BF;
}

#contents ul.consultation p:last-of-type {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 30px;
    height: 2.5em;
    box-sizing: content-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 768px) {
    #contents h3:nth-of-type(1) img {
        width: 107px;
    }

    #contents h3:nth-of-type(2) img,
    #contents h3:nth-of-type(3) img {
        width: 112px;
    }

    #contents h3:nth-of-type(4) img {
        width: 116px;
    }

    #contents h3:nth-of-type(n+2) {
        margin-top: 100px;
    }

    #contents h3::before {
        margin-right: 25px;
    }

    #contents h3::after {
        margin-left: 25px;
    }

    #contents .align>p {
        font-size: 2.4rem;
    }

    #contents .align>div {

    }

    #contents .align>div span {
        font-size: 1.6rem;
        line-height: 40px;
        border-radius: 25px;
        padding: 0 20px;
        margin: 40px auto 10px auto;
        display: block;
        width: fit-content;
        width: -moz-fit-content;
    }

    #contents figure {
        margin-top: 40px;
        display: block;
    }

    #contents figure img {
        display: block;
        width: 50vw;
        margin: auto;
    }

    #contents figure figcaption p:first-of-type {
        font-size: 2rem;
        text-align: center;
        margin-top: 20px;
    }

    #contents figure figcaption p:last-of-type {
        font-size: 1.6rem;
    }

    #contents ul.discussion {
        margin-top: 40px;
    }

    #contents ul.discussion li {
        display: block;
        padding: 20px 20px;
        margin-bottom: 40px;
    }

    #contents ul.discussion li::after {
        width: 18px;
        height: 34px;
        top: -2px;
        right: -19px;
    }

    #contents ul.discussion li:last-of-type {
        margin-bottom: 0;
    }

    #contents ul.discussion li p:first-of-type {
        font-size: 1.7rem;
        text-align: center;
    }

    #contents ul.discussion li p:last-of-type {
        font-size: 1.7rem;
        text-align: center;
        margin-top: 10px;
    }

    #contents ul.discussion li p:last-of-type a::after {
        width: 17px;
        height: 17px;
        margin: 0 0 5px 5px;
    }

    #contents ul.booth {
        margin-top: 20px;
        display: block;
    }

    #contents ul.booth li {
        width: 100%;
        margin-top: 30px;
    }

    #contents ul.booth li a {
        display: block;
    }

    #contents ul.booth li p:first-of-type {
        font-size: 1.7rem;
    }

    #contents ul.product p:first-of-type {
        padding: 30px 20px 20px;
        height: auto;
        box-sizing: border-box;
        display: block;
    }

    #contents ul.product p:last-of-type {
        padding: 20px 30px 25px;
    }

    #contents ul.consultation p:first-of-type {
        padding: 20px 20px 20px;
        height: auto;
        box-sizing: border-box;
        display: block;
    }

    #contents ul.consultation p:last-of-type {
        font-size: 1.7rem;
        padding: 20px;
        height: auto;
        box-sizing: border-box;
        display: block;
    }
}

/* Access */
#access .align div {
    border: 1px solid #000;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

#access p {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 2;
}

#access p span {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 30px;
}

#access h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background-color: #99CC91;
    line-height: 40px;
    padding: 0 20px;
    text-align: center;
    width: fit-content;
    white-space: nowrap;
    margin: 40px auto 20px;
    border-radius: 20px;
}

#access h3::after {
    content: " ";
    margin-left: -0.15em;
}

@media all and (max-width: 768px) {
    #access .align div {
        height: 400px;
    }

    #access p {
        font-size: 1.6rem;
    }

    #access p span {
        font-size: 1.8rem;
    }
}

/* Entry */
#entry {
    margin-top: 150px;
    padding-bottom: 150px;
    background: url(../img/bg.png ) repeat center center / 500px 500px;
}

#entry .align>p {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    margin-bottom: 50px;
}

#entry .gform {
    padding: 30px 20px;
    background-color: #fff;
}

#entry .gform iframe {
    height: 1700px;
}

@media all and (max-width: 768px) {
    #entry .align>p {
        font-size: 1.7rem;
    }
}

@media all and (max-width: 480px) {
    #entry .gform iframe {
        height: 2275px;
    }
}

/* Other */
#other {
    padding-top: 150px;
}

#other h2 {
    color: #fff;
    font-size: 2.2rem;
    background-color: #99CC91;
    line-height: 60px;
    letter-spacing: 0.2em;
    text-align: center;
    width: 200px;
    border-radius: 30px;
    margin: 0 auto 0;
}

#other h2:nth-of-type(n+2) {
    margin-top: 80px;
}

#other ul {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
}

#other ul:first-of-type {
    justify-content: center;
}

#other ul:last-of-type::after {
    content: '';
    display: block;
    width: 31.2%;
}

#other ul li {
    width: 31.2%;
    height: 100px;
    margin-top: 30px;
}

#other ul li a {
    display: block;
    position: relative;
    background-color: #fff;
    border: 3px solid #CBCBCB;
    border-radius: 15px;
    height: 100%;
    font-size: 1.8rem;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}

#other .align div {
    margin-top: 150px;
}

#other .align div a {
    transition: all 0.3s;
}

#other .align div a:hover {
    opacity: 0.7;
}

#other .align div .banner-sp {
    display: none;
}

@media all and (max-width: 768px) {
    #other h2 {
        font-size: 2rem;
        line-height: 50px;
        width: 150px;
        border-radius: 25px;
    }

    #other ul {
        margin-top: 20px;
        display: block;
    }

    #other ul li {
        width: 100%;
    }

    #other .align div {
        margin-top: 100px;
    }
}

@media all and (max-width: 480px) {
    #other .align div .banner-sp {
        display: block;
    }

    #other .align div .banner-pc {
        display: none;
    }
}

/* Footer
-------------------------------------- */
footer {
    background-color: #87A0A2;
    margin-top: 100px;
    padding-top: 80px;
}

footer .navi {
    width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

footer .navi div {
    margin-right: 40px;
    flex: 1;
}

footer .navi div:last-of-type {
    margin-right: 0;
}

footer .navi div h2 {
    color: #87A0A2;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 40px;
    border-radius: 20px;
    padding: 0 20px;
    background-color: #fff;
}

footer .navi div ul {
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.08em;
    margin: 25px 0 0 15px;
}

footer .navi div ul li {
    margin-bottom: 15px;
}

footer .navi div ul li a {
    display: block;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s;
}

footer .navi div ul li a::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

footer .navi div ul li a:hover {
    margin-left: 8px;
}

footer .navi div p:first-of-type {
    color: #fff;
    font-size: 1.5rem;
    margin: 25px 0 0 15px;
    letter-spacing: 0.08em;
    line-height: 2;
}

footer .navi div p:last-of-type {
    margin: 25px 0 0 15px;
}

footer .navi div p:last-of-type a {
    margin-right: 15px;
}

footer .navi div p:last-of-type a:hover {
    opacity: 0.7;
}

footer .navi div p:last-of-type img {
    width: 50px;
    display: inline-block;
}

footer .copyright {
    width: 1100px;
    margin: 50px auto 0;
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-align: center;
    border-top: 1px solid #fff;
    padding: 40px 0;
}

@media all and (max-width: 1100px) {
    footer .navi {
        width: 100%;
        padding: 0 30px;
    }

    footer .copyright {
        width: 100%;
    }
}

@media all and (max-width: 768px) {
    footer .navi {
        display: block;
    }

    footer .navi div {
        margin-right: 0;
    }

    footer .navi div:nth-of-type(n+2) {
        margin-top: 40px;
    }

    footer .navi div h2 {
        font-size: 1.7rem;
        border-radius: 20px;
    }

    footer .navi div ul {
        margin: 25px 0 0 15px;
    }

    footer .copyright {
        padding: 40px 0 100px;
    }
}
