:root {
    --blue: #195875;
    --yellow: #FFE200;
    --lightblue: #67B0CC;
}

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

html {
    font-size: 62.5%;
    /* 16px * 62.5% = 10px */
    width: 100%;
    box-sizing: border-box;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.5;
    font-weight: 400;
}

main {
    padding: 0 15px;
    max-width: 1024px;
    margin: 0 auto;
}

h1,
h2,
h3 {
    color: var(--blue);
    font-weight: 500;
}

p {
    font-size: 1.6rem;
}

img {
    max-width: 100%;
    height: auto;
}

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

a:hover {
    opacity: .5;
    transition: all .3s;
}

ul,
ol {
    list-style: none;
}


@media screen and (max-width:1100px) {
    body {
        margin-left: 0;
    }
}


/* --------------------
      ナビゲーション
-------------------- */

.global-nav {
    position: absolute;
    top: 700px;
    top: 630px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1024px;
    /*732px*/
    margin: 0px auto 0px auto;
    padding: 20px 30px;
    background-color: var(--yellow);
    border-radius: 20px;
    height: 80px;
    box-sizing: border-box;
    z-index: 1;
}

.global-nav__list {
    display: flex;
    justify-content: space-between;
}

.global-nav::-webkit-scrollbar {
    display: none;
}

.global-nav__list li a {
    display: block;
    line-height: 1;
    height: 42px;
    text-indent: -9999px;
}

.global-nav__list li.helpmenu1 a {
    width: 146px;
    background: url("images/helpmenu1.png") 0 0 no-repeat;
    background-size: contain;
}

.global-nav__list li.helpmenu2 a {
    width: 115px;
    background: url("images/helpmenu2.png") 0 0 no-repeat;
    background-size: contain;
}

.global-nav__list li.helpmenu3 a {
    width: 172px;
    background: url("images/helpmenu3.png") 0 0 no-repeat;
    background-size: contain;
}

.global-nav__list li.helpmenu4 a {
    width: 126px;
    background: url("images/helpmenu4.png") 0 0 no-repeat;
    background-size: contain;
}

.global-nav__list li.helpmenu5 a {
    width: 173px;
    background: url("images/helpmenu5.png") 0 0 no-repeat;
    background-size: contain;
}

.global-nav__list li.helpmenu6 {
    display: none;
    margin-left: auto;
    margin-right: auto;
}

.global-nav__list li.helpmenu6 a {
    display: inline-block;
    text-indent: 0;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
    background-color: #faf6e1;
    border-radius: 21px;
    padding: 10px;
    color: var(--blue);
}

@media screen and (max-width:800px) {
    .open-btn {
        position: fixed;
        z-index: 9999;
        top: 20px;
        left: 10px;
        cursor: pointer;
        width: 30px;
        height: 30px;
    }

    /* ×に変化 */
    .open-btn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 0;
        height: 2px;
        border-radius: 2px;
        background-color: var(--blue);
        width: 100%;
    }

    .open-btn span:nth-of-type(1) {
        top: 0px;
    }

    .open-btn span:nth-of-type(2) {
        top: 10px;
    }

    .open-btn span:nth-of-type(3) {
        top: 20px;
    }

    .open-btn.active span:nth-of-type(1) {
        transform: translateY(8px) rotate(-45deg);
    }

    .open-btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .open-btn.active span:nth-of-type(3) {
        top: 12px;
        transform: translateY(-3px) rotate(45deg);
    }

    .global-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    .global-nav {
        position: fixed;
        top: 0px;
        left: 0px;
        transform: translateX(0%);
        opacity: 0;
        z-index: -999;
        width: 100vw;
        transition: all 0.3s;
        padding: 50px 30px 20px 30px;
        background-color: #FFE200;
        border-radius: 0px;
        height: 100%;
        box-sizing: border-box;
    }

    .global-nav__list {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .global-nav__list li a {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
    }

    .global-nav__list li.helpmenu6 {
        display: block;
    }
}


/* --------------------
          mv
-------------------- */
.mv {
    position: relative;
    padding: 15px 15px 0 15px;
    background-image: linear-gradient(#c3e3f5, #93cdde);
    width: 100%;
    margin-bottom: 60px;
}

.mv img {
    display: block;
}

.mv .site__title {
    margin: 0 auto;
    max-width: 540px;
}

.mv .main__visual {
    margin: -30px auto 0 auto;
    max-width: 740px;
}

@media screen and (max-width:1100px) {}

@media screen and (max-width:540px) {
    .mv {
        padding: 30px 15px 0 15px;
        margin-bottom: 0px;
    }

    .mv .main__visual {
        margin: -15px auto 0 auto;
    }
}


/* --------------------
        footer
-------------------- */
.footer {
    text-align: center;
    font-size: 1.4rem;
    color: #707070;
    padding-bottom: 30px;
    margin-top: 80px;
}

.footer p {
    font-size: 1.4rem;
}

.footer img {
    width: 140px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.footer address {
    font-style: inherit;
    margin-bottom: 30px;
}

@media screen and (max-width:540px) {
    .footer {
        margin-top: 120px;
    }
}

#pageTop {
    position: fixed;
    left: 10px;
    bottom: 15px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
}

#pageTop a {
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background-color: var(--yellow);
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--blue);
    text-decoration: none;
}

#pageTop a span {
    display: block;
}

#pageTop a i {
    font-size: 18px;
}

#pageTop a:hover {
    background-color: #var(var(--lightblue));
    transition: all 0.25s ease-out;
}


@media screen and (max-width:540px) {
    .footer {
        margin-top: 120px;
    }
}

/* --------------------
    リスト部分
-------------------- */

.trouble-menu {
    margin-bottom: 60px;
    padding-top: 90px;
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.trouble-menu .section-title {
    width: 60px;
}

.trouble-menu .trouble-menu__container {
    flex: 1;
}

.tourble-list {
    border-bottom: 1px solid #CCC;
    padding: 10px 0;
    display: flex;
}

.tourble-list dt {
    width: 50%;
    color: var(--blue);
    font-weight: 500;
    padding-top: 3px;
}

.tourble-list dd {
    width: 50%;
}

.tourble-helpers {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.tourble-helpers li {
    font-size: 1.2rem;
}

.tourble-helpers a {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    color: var(--blue);
    padding: 7px 10px;
    background-color: #f8f2d3;
    border-radius: 6px;
}

.tourble-helpers a+span {
    margin-left: 0.5em;
}

.trouble-menu .trouble-menu__container p {
    font-size: 1.2rem;
}

@media screen and (max-width:540px) {
    .trouble-menu {
        margin-bottom: 60px;
        padding-top: 90px;
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .trouble-menu .section-title {
        width: 40px;
    }

    .tourble-list {
        border-bottom: 1px solid #CCC;
        padding: 5px 0;
        margin-bottom: 0.5em;
        display: flex;
        flex-direction: column;
    }

    .tourble-helpers {
        gap: 10px;
    }

    .tourble-list dt {
        width: 100%;
        padding-bottom: 0.5em;
    }

    .tourble-list dd {
        width: 100%;
        padding-bottom: 0.5em;
    }

}

h2.contact-menu {
    margin: 60px 0;
    text-align: center;
}

h2.contact-menu a {
    display: inline-block;
    background-color: #faf6e1;
    padding: 0 30px;
    line-height: 60px;
    border-radius: 30px;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin: 0px auto;
}

.pg h2.contact-menu {
    margin: 60px 0 0 0;
}

@media screen and (max-width:540px) {
    h2.contact-menu a {
        padding: 0 30px;
        line-height: 40px;
        border-radius: 20px;
        font-size: 1.8rem;
    }
}

/* --------------------
    困ったときの相談窓口
-------------------- */

main.pg-helpdesk {
    background-color: #faf6e1;
    padding: 30px;
    margin-top: 80px;
    border-radius: 20px;
}

.page-title {
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    margin-bottom: 60px;
    padding-top: 20px;
}

.help-desk {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #000;
}

.help-desk:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.help-desk h4 {
    font-weight: 400;
    color: #000;
    margin-bottom: 1em;
}

.help-desk h3 {
    color: var(--blue);
    font-size: 2.1rem;
    font-weight: 500;
    margin-bottom: 0.25em;
}

.help-desk ul {
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
}

.help-desk ul li {
    font-size: 1.6rem;
}

.help-desk ul li.tel-number,
.help-desk ul li.free-dial {
    font-family: "Jost", sans-serif;
    font-size: 2.1rem;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative;
    padding-left: 1.25em;
}

.help-desk ul li.tel-number::before {
    content: "☎";
    position: absolute;
    left: 0;
    top: -2px;
    font-family: "Noto Sans JP", sans-serif;
}

.help-desk ul li.free-dial::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 21px;
    height: 21px;
    background: url("images/free-dial-icon.png") center center no-repeat;
    background-size: contain;
    font-family: "Noto Sans JP", sans-serif;
}

.help-desk ul li.business-hour {
    margin-left: 1em;
}

.help-desk ul li span {
    font-size: 1.4rem;
    font-weight: 400;
    color: #000;
}

.help-desk ul li strong {
    font-family: "Jost", sans-serif;
    font-size: 2.1rem;
    color: var(--blue);
    letter-spacing: 0.1em;
    font-weight: 600;
}

.ntt-numberlist {
    display: flex;
    flex-wrap: wrap;
}

.ntt-numberlist li {
    margin-left: 1.5em;
}

.help-desk .ntt-numberlist li strong {
    font-family: "Jost", sans-serif;
    font-size: 2.1rem;
    color: #000;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-left: 0.25em;
}

@media screen and (max-width:800px) {
    main.pg-helpdesk {
        background-color: #faf6e1;
        padding: 30px;
        margin-top: 0px;
        border-radius: 0px;
    }
}

@media screen and (max-width:540px) {
    .help-desk h3 {
        color: var(--blue);
        font-size: 1.6rem;
        font-weight: 500;
        margin-bottom: 0.25em;
    }

    .help-desk ul {
        margin-bottom: 0.5em;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .help-desk ul li {
        font-size: 1.4rem;
    }

    .help-desk ul li.tel-number,
    .help-desk ul li.free-dial {
        font-size: 1.8rem;
    }

    .help-desk ul li.business-hour {
        margin-left: 0em;
    }

    .help-desk p {
        font-size: 1.4rem;
    }
}

.link-info {
    background-color: #FFF;
    padding: 10px;
    margin-top: 50px;
    border: 3px solid var(--blue);
    border-radius: 15px;
}

.linkinfo_container {
    display: flex;
}

.linkinfo_item {
    width: 50%;
    padding: 30px;
    box-sizing: border-box;
}

.linkinfo_item:first-of-type {
    border-right: 1px solid #CCC;
}

.linkinfo_item h4 {
    font-weight: 400;
    color: #000;
    margin-bottom: 0.5em;
}

.linkinfo_item h3 {
    color: var(--blue);
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 0.25em;
    line-height: 1.2;
}

.linkinfo_item h3 span {
    font-size: 1.6rem;
    font-weight: 500;
    display: inline-block;
}

@media screen and (max-width:800px) {
    .linkinfo_container {
        display: flex;
        flex-direction: column;
    }

    .linkinfo_item {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .linkinfo_item:first-of-type {
        border-right: none;
        border-bottom: 1px solid #CCC;
    }

    .linkinfo_item h4 {
        font-size: 1.4rem;
    }

    .linkinfo_item h3 {
        font-size: 1.8rem;
    }

    .linkinfo_item h3 span {
        font-size: 1.4rem;
    }

}