/*
Theme Name: terada
Theme URI: https://example.com
Author: あなたの名前
Description: 寺田行政書士事務所のオリジナルテーマ
Version: 1.0
*/

@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Gothic&display=swap');

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

body {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    font-style: normal;
    line-height: normal;
    text-align: center;
}

img {
    width: 100%;
}

:root {
    --blue: #2369B9;
    --white: #FFFFFF;
    --lightblue: #D8EAFF;
    --muddyblue: rgba(64, 126, 198, 0.46);
    --darkblue: #053068;
    --waterblue: #F2F9FE;
    --black: #2C2C2C;
    --primaryblack: #3C3A3A;
    --grayblack: #595757;
    --gray: #EDEDED;
    --primarygray: #E9E9E9;
    --lightgray: #D9D9D9;
    --gold: #AD9D8F;
    --header-PC-color: #ededed;
}

.fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}

.fadeInActive {
    opacity: 1;
    transform: translateY(0);
}

/* header sp*/
#header {
    display: flex;
    width: 100%;
    height: 62px;
    background-color: var(--white);
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 9px 4.8%;
}

.wrapper {
    position: relative;
    min-width: 375px;
}

.header__logo {
    color: var(--darkblue);
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.5s;
}

.header__logo:hover {
    opacity: 0.5;
}

.PCbr {
    display: none;
}

#nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    color: var(--white);
    background: var(--blue);
    padding: 86px 46px;
    transition: all 0.5s ease;
    z-index: 20;
    opacity: 0;
}

.nav__itemPC {
    display: none;
}

.nav__form {
    display: none;
}

/* メニューが開いたとき */
#nav.active {
    left: 0;
    /* ← スライドイン！ */
}

.nav__listSP {
    margin-bottom: 25px;
    text-align: left;
    transition: 0.5s;
}

.nav__listSP:hover {
    opacity: 0.5;
}

.openbtn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
}

/* ボタン内側 */
.openbtn span {
    display: block;
    transition: all 0.5s;
    position: absolute;
    width: 38px;
    height: 1px;
    background-color: var(--darkblue);
    border-radius: 4px;
    margin: 5px 0;
    transition: all 0.5s;
}

.openbtn span:nth-of-type(1) {
    position: absolute;
    top: 0px;
}

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

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

.openbtn span:nth-of-type(3)::after {
    /* 3つ目の要素のafterにMenu表示を指定 */
    content: "Menu";
    position: absolute;
    left: 0px;
    color: var(--darkblue);
    font-size: 1.3rem;
    text-transform: uppercase;
}

/* activeクラスが付与されると線が回転して×になり、Menu→Closeに変更 */

.openbtn.active span:nth-of-type(1) {
    top: 5px;
    left: 6px;
    transform: translateY(6px) rotate(-45deg);
    width: 25px;
    background-color: var(--white);
}

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

.openbtn.active span:nth-of-type(3) {
    top: 17px;
    left: 7px;
    transform: translateY(-6px) rotate(45deg);
    width: 25px;
    background-color: var(--white);
}

.openbtn.active span:nth-of-type(3)::after {
    content: "Close";
    position: absolute;
    top: 4px;
    left: 95%;
    /* 中央基準で配置！ */
    transform: translateX(-50%) rotate(-45deg);
    /* 位置と角度を調整 */
    color: var(--white);
    font-size: 1.3rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.active #mask {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--blue);
    z-index: 10;
    cursor: pointer;
}

.active #nav {
    left: 0;
    opacity: 1;
}

#mask {
    display: none;
    transition: all 0.5s;
}

.header__wapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* header sp */

/* header pc */
@media screen and (min-width: 768px) {
    #header {
        width: 100%;
        height: 98px;
        background-color: var(--header-PC-color);
        padding: 20px 0 20px;
    }

    .header__wapper {
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav__itemSP {
        display: none;
    }

    .wrapper {
        position: relative;
        min-width: 1440px;
    }

    .header__logo {
        text-align: left;
        color: var(--primaryblack);
    }

    .PCbr {
        display: inline-block;
    }

    #nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        color: var(--primaryblack);
        background: var(--header-PC-color);
        width: auto;
        height: 98px;
        padding: 0;
        position: static;
        transform: translate(0);
        z-index: 20;
        opacity: 1;
        visibility: visible;
        gap: 0;
    }

    .nav__itemPC {
        display: flex;
        gap: 36px;
        margin-right: min(5vw, 124px);
    }

    .nav__listPC {
        display: flex;
    }

    .nav__listPC a {
        position: relative;
        display: inline-block;
        color: var(--primaryblack);
        font-weight: 700;
        transition: 0.5s;
    }

    .nav__listPC a:hover {
        opacity: 0.5;
    }

    .nav__form {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 33px;
    }

    .nav__form__leftbox {
        display: block;
    }

    .nav__form__leftbox__title {
        color: var(--primaryblack);
        text-align: left;
        font-weight: 700;
    }

    .nav__form__leftbox__telphone {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3px;
    }

    .nav__form__leftbox__telphone__box {
        position: relative;
        width: 27px;
        height: 27px;
        background-color: var(--blue);
        border-radius: 50%;
    }

    .nav__form__leftbox__telphoneIcon {
        position: absolute;
        width: 16px;
        height: 17px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .nav__form__leftbox__telphoneNumber {
        color: var(--primaryblack);
        font-size: 2.4rem;
        font-weight: 700;
    }

    .nav__formBtn {
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    }

    .nav__formBtn__text {
        background: var(--blue);
        color: var(--white);
        width: 240px;
        padding: 16px 45px 21px 35px;
        text-align: center;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        transition: 0.5s;
    }

    .nav__formBtn__text:hover {
        background: var(--white);
        color: var(--blue);
    }

    .nav__listSP {
        display: none;
    }

    .openbtn {
        display: none;
    }

    #mask {
        display: none;
    }

    /* header pc */
}

.contact__btn__text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    padding: 5px 0;
}

.contact__btn__icon {
    width: 32px;
    height: 32px;
    padding: 7px 0 0 0;
}

.contact__btn__icon__line {
    width: 34px;
    height: 28px;
}

.contact__btn__bluetext {
    color: var(--blue);
    font-size: 1.8rem;
    font-weight: 700;
}

.contact__telphone__flex__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 17px;
}

.contact__telphonenumber {
    position: relative;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 3.2rem;
    font-weight: 700;
}

.contact__receptionhours {
    position: relative;
    text-align: center;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 1.8rem;
    font-weight: 700;
}

.contact__hours {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1.08px;
}

.contact__day {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.84px;
}

/* footer sp */
#footer {
    position: relative;
    background: var(--darkblue);
    padding: 50px 9.8% 35px;
}

.footer__navi__SP {
    display: flex;
    align-items: center;
    /* align-content: center; */
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 86px;
    padding: 0 8.9%;
}

.footer__list {
    display: flex;
    align-items: flex-start;
    gap: 45px;
    flex-shrink: 0;
}

.footer__list:last-of-type {
    gap: 29px;
}

.footer__list__text {
    color: var(--white);
    font-weight: 700;
    transition: 0.5s;
}

.footer__list__text:hover {
    opacity: 0.5;
}

.footer__address__SP {
    padding: 0 8.9%;
}

.footer__text {
    color: var(--white);
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
}

.footer__thin__text {
    color: var(--white);
    font-weight: 400;
    text-align: left;
}

.footer__thin__text:first-of-type {
    margin-bottom: 4px;
}

.footer__thin__text:last-of-type {
    margin-bottom: 150px;
}

.scrollBtn {
    position: absolute;
    top: 80%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.copy {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 400;
}

.footer__PC__flexBox {
    display: none;
}

.footer__telphone {
    display: none;
}

.scrollBtn__PC {
    display: none;
}

/* footer sp */

/* footer pc */
@media screen and (min-width:768px) {
    #footer {
        padding: 57px 194px 30px;
    }

    .footer__navi__SP {
        display: none;
    }

    .footer__address__SP {
        display: none;
    }

    .footer__PC__flexBox {
        display: flex;
        justify-content: center;
        align-self: baseline;
        gap: 140px;
        height: auto;
    }

    .footer__address__PC {
        display: block;
        width: 246px;
    }

    .footer__navi__PC {
        display: block;
        gap: 36px;
        margin-bottom: 0;
        padding: 0;
    }

    .footer__list__PC {
        display: flex;
        justify-content: flex-start;
        text-align: left;
        gap: 45px;
        margin-bottom: 36px;
    }

    .footer__list__PC:last-of-type {
        gap: 29px;
        margin-bottom: 0;
    }

    .footer__thin__text:last-of-type {
        margin-bottom: 0;
    }

    .footer__contactBox__PC {
        display: block;
        width: 280px;
    }

    .footer__contact__btn__PC {
        display: inline-flex;
        justify-content: center;
        padding: 13px 23px;
        background: var(--blue);
        width: 280px;
        height: 58px;
        gap: 16px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: 0.5s;
    }

    .footer__contact__btn__PC:hover {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
        opacity: 0.7;
    }

    .footer__contact__btn__line__PC {
        display: inline-flex;
        justify-content: center;
        padding: 13px 23px;
        background: var(--white);
        width: 280px;
        height: 60px;
        margin-top: 24px;
        gap: 16px;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: 0.5s;
    }

    .footer__contact__btn__line__PC:hover {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
        opacity: 0.7;
    }

    .footer__telphone {
        display: block;
        padding-left: 768px;
    }

    .footer__telphone__title {
        position: relative;
        color: var(--white);
        text-align: center;
        text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        font-size: 2.4rem;
        font-weight: 700;
        margin-top: 32px;
    }

    .footer__telphone__flex {
        display: flex;
        justify-content: center;
        align-items: baseline;
        gap: 5px;
    }

    .footer__telphone__flex__left {
        position: relative;
        width: 27px;
        height: 27px;
        background: var(--white);
        border-radius: 50%;
    }

    .copy {
        margin-top: 75px;
    }

    .scrollBtn {
        display: none;
    }

    .scrollBtn__PC {
        display: block;
        position: fixed;
        bottom: 100px;
        right: 30px;
    }
}

/* mainvisual */
#mainvisual {
    position: relative;
    padding-top: 62px;
    background-image: url(../images/mainvisual_sp.png);
    background-repeat: no-repeat;
    background-size: contain;
}

.mainvisual__person__SP {
    position: relative;
}

.mainvisual__titleBox__SP {
    position: absolute;
    width: 84%;
    top: 57%;
    left: 42%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.75);
    padding: 12px 16px;
}

.mainvisual__title {
    color: var(--black);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
}

.mainvisual__title__large {
    color: var(--black);
    font-size: 2.4rem;
    font-weight: 700;
    text-decoration: underline solid 1px;
}

.mainvisual__PC__Box {
    display: none;
}

.mainvisual__beigeBox__SP {
    background: rgba(255, 255, 255, 0.80);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.mainvisual__SP__item {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 6px;
    width: 90%;
    margin: 20px auto;
}

.mainvisual__SP__list {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 105px;
    height: auto;
}

.mainvisual__text {
    color: var(--blue);
    font-weight: 700;
    text-align: center;
    flex-shrink: 0;
}

.MVbtn__SP {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 300px;
    background-color: var(--blue);
    margin: 0 auto 24px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.kazari__left {
    width: 20px;
    height: 60px;
}

.kazari__right {
    width: 20px;
    height: 60px;
}

.MVbtn__text {
    color: var(--white);
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    padding: 18px 18.3% 18px 15%;
}

.MVbtn__arrow {
    position: absolute;
    top: 54%;
    left: 90%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 12px;
}

/* mainvisual sp */

/* mainvisual pc */
@media screen and (min-width:768px) {
    #mainvisual {
        width: 100vw;
        /* max-width: 1440px; */
        height: auto;
        padding-top: 170px;
        background-image: url(../images/mainvisual__pc.jpeg);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .mainvisual__titleBox__SP {
        display: none;
    }

    .mainvisual__beigeBox__SP {
        display: none;
    }

    .MVbtn__SP {
        display: none;
    }

    .mainvisual__person__SP {
        display: none;
    }

    .mainvisual__PC__Box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 9.3% 71px;
    }

    .mainvisual__PC__Box__left {
        display: block;
        width: 617px;
        height: 607px;
        flex-shrink: 0;
        border-radius: 15px;
        background: rgba(253, 253, 253, 0.80);
        padding: 64px 38px 66px;
    }

    .mainvisual__titleBox__PC {
        margin-bottom: 80px;
        padding: 0 27px 0 28px;
    }

    .mainvisual__title {
        font-size: 3.2rem;
    }

    .mainvisual__title__large {
        font-size: 4rem;
    }

    .mainvisual__PC__btnBox {
        padding: 0 0 0 28px;
    }

    .mainvisual__PC__blueText {
        color: var(--blue);
        font-size: 2.5rem;
        font-weight: 700;
        text-align: left;
        margin-bottom: 30px;
    }

    .MVbtn__box {
        position: relative;
        width: 300px;
        height: auto;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
        transition: 0.5s;
    }

    .MVbtn__box:hover {
        box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
        opacity: 0.5;
    }

    .MVbtn__text {
        display: block;
        width: 100%;
        background: var(--blue);
    }

    .MVbtn__arrow {
        position: absolute;
        width: 6px;
        height: 12px;
        top: 54%;
        left: 90%;
        transform: translate(-50%, -50%);
    }

    .mainvisual__PC__itemBox {
        margin-top: 78px;
    }

    .mainvisual__PC__item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .mainvisual__PC__list {
        width: 30%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mainvisual__text {
        font-size: 2.4rem;
    }

    .mainvisual__PC__Box__right {
        position: relative;
    }

    .mainvisual__PC__Box__right__text:first-of-type {
        position: absolute;
        top: 86%;
        left: 80%;
        transform: translate(-50%, -50%);
        color: var(--white);
        font-weight: 400;
    }

    .mainvisual__PC__Box__right__text:last-of-type {
        position: absolute;
        top: 91%;
        left: 80%;
        transform: translate(-50%, -50%);
        color: var(--white);
        font-weight: 400;
    }
}

/* mainvisual pc */

/* news sp */
#news {
    padding: 75px 27px 100px;
    background-color: var(--gray);
}

.section__topic {
    position: relative;
    color: var(--black);
    font-size: 2.4rem;
    font-weight: 500;
}

.section__topicEN {
    color: rgba(0, 0, 0, 0.05);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
    position: absolute;
    top: 19%;
    right: 53%;
    left: auto;
    transform: translate(0, -50%);
}

.news__box {
    display: block;
}

.news__list {
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--black);
}

.date {
    color: var(--black);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    font-weight: 400;
}


.news__text {
    color: var(--black);
    font-weight: 400;
    margin-top: 9px;
}

.news__btn {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 7px;
    padding-top: 64px;
    margin: 0 0 0 auto;
    width: 200px;
}

.news__btn__text {
    color: var(--black);
    font-family: "Noto Sans JP";
    font-size: 1.5rem;
    font-weight: 700;
}

.circle_btn {
    width: 77px;
    height: 47px;
}

/* news sp */

/* news pc */
@media screen and (min-width:768px) {
    #news {
        padding: 200px 0 65px;
    }

    .news__PC__box {
        position: relative;
        max-width: 1440px;
        margin: 0 auto;
    }

    .section__topic {
        position: absolute;
        top: 0;
        left: 0;
        width: 500px;
        padding-left: 258px;
        font-weight: 700;
        text-align: left;
    }

    .news__box {
        width: 500px;
        margin: 0 auto;
    }

    .section__topicEN {
        font-size: 14rem;
        position: absolute;
        top: -30%;
        right: 19%;
        left: auto;
        transform: translate(0, -50%);
    }

    .news__btn {
        gap: 25px;
        width: 500px;
        margin: 0 auto;
    }

    .circle-move {
        transition: transform 0.5s ease;
    }

    .news__btn:hover .circle-move {
        transform: translateX(-30px);
        /* 丸だけ左へスライド */
    }

    .news__list__box {
        display: flex;
        gap: 100px;
    }

    .news__text {
        margin-top: 0;
    }
}

/* news pc */

/* menu sp */
#menu {
    padding-bottom: 100px;
}

.menu__visual {
    position: relative;
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.menu__visual::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(103, 104, 113, 0.73);
}

.section__topic__menu {
    position: relative;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    padding-top: 75px;
}

.menu__text {
    position: relative;
    color: var(--white);
    padding: 40px 0 140px;
}

.section__topicEN__menu {
    color: rgba(255, 255, 255, 0.20);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
    position: absolute;
    top: 78%;
    right: 50%;
    left: auto;
    transform: translate(0, -50%);
}

.menu__card {
    width: 290px;
    margin: -90px auto 0;
    position: relative;
}

.menu__card__list {
    background: var(--blue);
    margin-bottom: 52px;
    transition: 0.5s;
}

.menu__card__list__largeBox {
    display: block;
    width: 100%;
}

.menu__card__list:hover {
    background: var(--white);
}

.menu__card__list:hover .menu__card__list__Box__inner {
    border: 1px solid var(--blue);
}

.menu__card__list:hover .menu__card__list__title {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__text {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__btnBox__text {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__text__PC {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__text__SP01 {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__text__SP02 {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__text__last {
    color: var(--blue);
}

.menu__card__list:hover .menu__card__list__btnBox__btn path {
    stroke: var(--blue);
}

.menu__card__list__Box {
    padding: 13px;
}

.menu__card__list__Box__inner {
    border: 1px solid var(--white);
}

.menu__card__list__title {
    color: var(--white);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    padding-top: 40px;
}

.menu__card__list__text {
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding-top: 43px;
}

.menu__card__list__text__SP01 {
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding-top: 43px;
}

.menu__card__list__text__SP02 {
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding-top: 17px;
}

.menu__card__list__text:nth-of-type(2) {
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding-top: 17px;
}

.menu__card__list__text:last-of-type {
    padding-top: 17px;
    padding-bottom: 92px;
}

.menu__card__list__text__last {
    color: var(--white);
    text-align: center;
    font-weight: 500;
    padding-top: 17px;
    padding-bottom: 52px;
}

.menu__card__list__btnBox {
    display: flex;
    gap: 17px;
    padding-bottom: 41px;
}

.menu__card__list__btnBox__text {
    color: var(--white);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 8px 0 8px 48px;
}

.menu__card__list__btnBox__btn {
    width: 62px;
    height: 38px;
    padding-right: 14px;
}

.menu__card__list__text__PC {
    display: none;
}

/* menu sp */

/* menu pc */
@media screen and (min-width:768px) {
    .menu__visual {
        position: relative;
        background-image: url(../images/menu.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    .section__topic__menu {
        font-weight: 700;
        padding-top: 200px;
    }

    .menu__text {
        font-size: 2rem;
        padding: 50px 0 180px;
    }

    .section__topicEN__menu {
        font-size: 14rem;
        top: 78%;
        right: 50%;
        left: auto;
        transform: translate(0, -50%);
    }

    .menu__card {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 122px;
        width: 100%;
        margin: -120px auto 0;
        position: relative;
        padding: 0 16.3%;
    }

    .menu__card__list {
        background: var(--blue);
        margin-bottom: 0;
        transition: 0.5s;
    }

    .menu__card__list__Box {
        width: 423px;
        padding: 17px 30px;
    }

    .menu__card__list__title {
        padding-top: 56px;
        padding-left: 33px;
        padding-right: 33px;
    }

    .menu__card__list__text {
        padding-top: 59px;
    }

    .menu__card__list__text:nth-of-type(2) {
        padding-top: 11px;
    }

    .menu__card__list__text:last-of-type {
        padding-top: 17px;
        padding-bottom: 94px;
    }

    .menu__card__list__btnBox {
        padding-right: 33px;
        gap: 21px;
        justify-content: flex-end;
    }

    .menu__card__list__btnBox__text {
        padding: 10px 0 10px 0;
    }

    .menu__card__list__text__SP01 {
        display: none;
    }

    .menu__card__list__text__SP02 {
        display: none;
    }

    .menu__card__list__text__PC {
        display: block;
        color: var(--white);
        text-align: center;
        font-weight: 500;
        padding-top: 59px;
    }

    .menu__card__list__text__last {
        padding-top: 17px;
        padding-bottom: 94px;
    }

    .circle-move {
        transition: transform 0.5s ease;
    }

    .menu__card__list:hover .circle-move {
        transform: translateX(-20px);
        /* 丸を左にスライドさせる */
    }
}

/* menu pc */

/* greeting sp */
#greeting {
    background: var(--waterblue);
    padding: 55px 11px 100px 20px;
}

.greeting__SP {
    display: block;
}

.greeting__PC {
    display: none;
}

.section__topic__greeting {
    color: var(--primaryblack);
    font-size: 2.4rem;
    font-weight: 700;
    text-align: left;
}

.section__topic__greeting__text {
    color: var(--primaryblack);
    font-size: 2.4rem;
    font-weight: 600;
    text-align: left;
    margin-top: 19px;
    margin-bottom: 26px;
}

.greeting__message {
    color: var(--primaryblack);
    font-weight: 400;
    line-height: 150%;
    /* 24px */
    text-align: left;
    margin-top: 30px;
    padding: 0 7px;
}

.greeting__titlebox__wrapper {
    display: flex;
    justify-content: flex-end;
    padding: 0 7px;
    margin-top: 30px;
}

.greeting__titlebox {
    text-align: left;
}

.greeting__titlebox__title {
    color: var(--primaryblack);
    font-weight: 400;
}

.greeting__name {
    color: var(--primaryblack);
    font-size: 2.4rem;
    font-weight: 500;
}

/* greeting sp */

/* greeting pc */
@media screen and (min-width:768px) {
    #greeting {
        background: var(--waterblue);
        padding: 100px 19.5% 75px;
    }

    .greeting__SP {
        display: none;
    }

    .greeting__PC {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }

    .greeting__PC__leftBox {
        padding: 28px 0;
        width: 432px;
    }

    .section__topic__greeting__text {
        margin-top: 44px;
        margin-bottom: 18px;
    }

    .greeting__message {
        padding: 0;
    }

    .greeting__titlebox__wrapper {
        padding: 0;
        margin-top: 23px;
    }
}

/* greeting pc */

/* case sp */
#case {
    padding: 75px 0 100px;
    background: var(--white);
}

.section__topic__case {
    position: relative;
    color: var(--primaryblack);
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 50px;
}

.section__topicEN__case {
    position: absolute;
    color: var(--primarygray);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
    top: 14%;
    right: 56%;
    left: auto;
    transform: translate(0, -50%);
    opacity: 0.4;
}

.case__box {
    padding: 0 22px;
}

.case__list {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--primaryblack);
}

.case__list__title {
    color: var(--gold);
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    border: 2px solid var(--gold);
    width: 180px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.case__list__text__flex {
    display: flex;
}

.case__list__text__flex:nth-of-type(2) {
    margin-top: 20px;
}

.case__list__text {
    color: var(--primaryblack);
    font-weight: 400;
    text-align: left;
}

/* case sp */

/* case pc */
@media screen and (min-width:768px) {
    #case {
        padding: 200px 22.9% 120px;
        background: var(--white);
    }

    .section__topic__case {
        padding-bottom: 86px;
    }

    .section__topicEN__case {
        font-size: 14rem;
        top: -7%;
        right: 51%;
        left: auto;
        transform: translate(0, -50%);
        opacity: 0.3;
    }

    .case__box {
        padding: 0;
    }

    .case__list {
        padding-bottom: 40px;
    }
}

/* case pc */

/* blog sp */
#blog {
    padding: 75px 0 100px;
    background: var(--waterblue);
}

.section__topic__blog {
    position: relative;
    color: var(--primaryblack);
    font-size: 2.4rem;
    font-weight: 700;
    padding-bottom: 47px;
}

.section__topicEN__blog {
    position: absolute;
    color: rgba(0, 0, 0, 0.05);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
    top: 11%;
    right: 58%;
    left: auto;
    transform: translate(0, -50%);
}

.blog__box {
    padding: 0 4%;
}

.blog__list {
    margin-top: 50px;
}

.blog__list a {
    display: block;
    width: 100%;
}

.blog__list:first-of-type {
    margin-top: 0;
}

.blog__list:last-of-type {
    margin-bottom: 60px;
}

.blog__picture {
    width: 88.4%;
}

.blog__flex {
    display: flex;
    justify-content: flex-start;
    gap: 13px;
    align-items: center;
    margin-top: 10px;
    margin-left: 17px;
}

.blog__blue__text {
    color: var(--white);
    background: var(--blue);
    font-size: 1.3rem;
    font-weight: 400;
    padding: 3px 6px;
}

.blog__title {
    color: var(--primaryblack);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 20px;
    text-align: left;
    margin-left: 17px;
    margin-right: 17px;
}

.blog__text {
    color: var(--primaryblack);
    font-weight: 400;
    margin-top: 20px;
    text-align: left;
    margin-left: 17px;
    margin-right: 17px;
}

.blog__btn {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 7px;
    margin-right: 17px;
}

.blog__btn__PC {
    display: none;
}

/* blog sp */

/* blog pc */
@media screen and (min-width:768px) {
    #blog {
        padding: 200px 0 100px;
    }

    .section__topic__blog {
        padding-bottom: 106px;
    }

    .section__topicEN__blog {
        font-size: 14rem;
        top: -25%;
        right: 51%;
        left: auto;
        transform: translate(0, -50%);
    }

    .blog__box {
        padding: 0 8.3%;
        display: flex;
        justify-content: center;
        gap: 57px;
    }

    .blog__list {
        margin-top: 0;
        width: 372px;
    }

    .blog__btn {
        display: none;
    }

    .blog__flex {
        margin-top: 10px;
        margin-left: 22px;
    }

    .blog__blue {
        width: 100px;
    }

    .blog__title {
        margin-left: 20px;
        margin-right: 0;
    }

    .blog__text {
        margin-left: 20px;
        margin-right: 0;
    }

    .blog__btn__PC {
        display: flex;
        justify-content: end;
        align-items: center;
        margin: 0 8.3% 0 auto;
        width: 200px;
        gap: 25px;
        /* テキストとアイコンの間隔 */
    }

    .circle-move {
        transition: transform 0.5s ease;
    }

    .blog__btn__PC:hover .circle-move {
        transform: translateX(-30px);
        /* 丸だけ左にスライド */
    }
}

/* blog pc */

/* contact sp */
.contact__visual {
    position: relative;
    background-image: url(../images/contact_visual.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 75px;
    padding-bottom: 75px;
}

.contact__visual::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 48, 104, 0.36);
}

.section__topic__contact {
    position: relative;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 500;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.contact__text {
    position: relative;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 40px 0 0;
}

.section__topicEN__contact {
    color: rgba(255, 255, 255, 0.20);
    font-family: "Noto Sans Gothic";
    font-size: 6rem;
    font-weight: 400;
    text-shadow: 0px 0px 0px transparent;
    position: absolute;
    top: 25%;
    left: 39%;
    transform: translate(-50%, -50%);
}

.contact__box {
    margin-top: 20px;
}

.contact__list {
    position: relative;
    width: 330px;
    margin: 0 auto;
    padding: 40px 0;
    background: var(--white);
}

.contact__list:nth-of-type(2) {
    margin-top: 30px;
}

.contact__list__title {
    color: var(--primaryblack);
    font-weight: 700;
    margin-bottom: 30px;
}

.contact__btn {
    display: inline-flex;
    justify-content: center;
    padding: 13px 23px;
    background: var(--blue);
    width: 280px;
    height: 60px;
    margin: 0 auto;
    gap: 16px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}

.contact__btn:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
    opacity: 0.7;
}

.contact__btn__line {
    display: inline-flex;
    justify-content: center;
    padding: 13px 23px;
    background: var(--white);
    width: 280px;
    height: 60px;
    margin: 0 auto;
    gap: 16px;
    border: 1px solid var(--blue);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    transition: 0.5s;
}

.contact__btn__line:hover {
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.25);
    opacity: 0.7;
}

.contact__telphone__title {
    position: relative;
    color: var(--white);
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 30px;
}

.contact__telphone__flex {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.contact__telphone__flex__left {
    position: relative;
    width: 27px;
    height: 27px;
    background: var(--blue);
    border-radius: 50%;
}

/* contact sp */

/* contact pc */
@media screen and (min-width:768px) {
    .contact__visual {
        padding: 200px 0 75px;
        background-image: url(../images/contactVisualPC.png);
    }

    .section__topicEN__contact {
        font-size: 14rem;
        top: -75%;
        left: 32%;
    }

    .contact__text {
        padding: 65px 0 0;
    }

    .contact__box {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 83px;
        gap: 107px;
        margin-bottom: 56px;
        padding: 0 13.4%;
    }

    .contact__list {
        width: 465px;
        margin: 0;
        padding: 40px 0;
    }

    .contact__list:nth-of-type(2) {
        margin-top: 0;
    }
}

/* contact pc */