body {
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

:lang(en) {
    font-family: 'Montserrat', serif;
    font-weight: bold;
}

/* 共通レイアウト */
.wrapper {
    max-width: 1300px;
    width: 90%;
    margin: auto;
}

/* 見出しのスタイル */
.content_rabel {
    text-align: center;
    margin: 0 auto;
    font-size: 50px;
    font-weight: bold;
    color: #2EBBD3;
}

@media (max-width: 767px) {
    .content_rabel {
        text-align: center;
        margin: 0 auto;
        font-size: 32px;
        font-weight: bold;
        color: #2EBBD3;
    }
}

/* 画像のレスポンシブ対応 */
img {
    max-width: 100%;
    height: auto;
}

/* ボタンアイコンぴょこの動き */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

/* header */
.header {
    text-align: center;
}

/* メニュー */

.menu_shape {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
}

@media (max-width: 767px) {
    .menu_shape {
        max-width: 100%;
        z-index: 10;
        height: 50px;
        width: 50px;
        right: 0px;
    }

}

/* 3本線のデザイン */
.bar {
    width: 40px;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

/* バッテン（×）に変えるアニメーション */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg)translateY(20px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg)translateY(-20px);
}

/* ハンバーガーメニュー */
.hamburger {
    position: fixed;
    top: 33px;
    right: 24px;
    width: 46px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 900;
}

@media (max-width: 767px) {
    .hamburger {
        position: fixed;
        top: 10px;
        right: -10px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        z-index: 900;
    }

    .hamburger_nav {
        right: 0;
        width: 100%;
        max-width: 320px;
        height: 100%;
    }

    .hamburger_nav.active {
        right: 0;
    }

    .hamburger_nav ul li a {
        color: white;
        text-decoration: none;
        font-size: 12px;
        padding: 10px 10px;
        display: block;
        text-align: left;
        z-index: 4;
    }

    .bar {
        width: 30px;
        height: 2px;
        background-color: #fff;
        border-radius: 5px;
        transition: transform 0.3s, opacity 0.3s;
        transform-origin: center;
    }

    /* バッテン（×）に変えるアニメーション */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg)translateY(13px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg)translateY(-13px);
    }
}

.hamburger_nav {
    position: fixed;
    top: 0;
    right: -410px;
    /* 初めは右に隠れている */
    width: auto;
    height: auto;
    background-color: #E69645;
    transition: 0.3s;
    border-radius: 16px;
    z-index: 5;
}

.hamburger_nav ul {
    list-style-type: none;
    padding: 90px 0;
}

.hamburger_nav ul li {
    margin: 10px 50px;
    display: flex;
}

.hamburger_nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    display: block;
    z-index: 4;
}

/* タイトルのデザイン */
.hamburger_nav ul li a {
    font-size: 16px;
    font-weight: normal;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* 下線のアニメーション */
.hamburger_nav ul li a::after {
    content: "";
    /* 擬似要素を作成 */
    position: absolute;
    left: 0;
    bottom: -5px;
    /* テキストの下に配置 */
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: width 0.4s ease-in-out;
    /* なめらかにアニメーション */
}

/* ホバーしたら左から右に下線が伸びる */
.hamburger_nav ul li a:hover::after {
    width: 100%;
}

/* ホバーで左から右に下線を表示 */
.hamburger_nav ul li a:hover::after {
    width: 100%;
}

/* ホバーを外すと左から右に消える */
.hamburger_nav ul li a:not(:hover)::after {
    width: 0;
}

/* メニューが表示された時の位置 */
.hamburger_nav.active {
    right: 0;
}

/* ロゴコンテナ */
.logo_container img {
    text-align: center;
}

@media (max-width: 767px) {
    .logo_container {
        display: block;
        padding-top: 15px;
    }
}

/* ここからコンタクト */
.contact_section {
    background-image: url(../image/top_image/contact_back.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    padding-top: 3px;
    margin-top: 50px;
}

.contact_subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: -10px;
}

.contact_title {
    margin-top: 64px;
    text-align: center;
    margin-bottom: 10px;
}

.contact_item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: auto;
    gap: 60px;
    margin-top: 70px;
    padding-bottom: 140px;
}

.contact_item a img {
    cursor: pointer;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.contact_item a img:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .contact_section {
        background-size: cover;
        width: 100%;
        max-width: 598px;
        height: 500px;
        margin: 0 auto;
        padding-top: 20px;
    }

    .contact_item {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
        align-items: center;
        width: 100%;
        height: 100%;
        margin-top: 40px;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .contact_item a img {
        width: 130px;
        height: 130px;
    }

    .contact_title {
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .contact_subtitle {
        font-size: 12px;
        margin-top: -10px;
    }
}

/* ここまでコンタクト */
/* ここからフッター */
.footer {
    background-color: #2EBBD3;
    color: #fff;
    padding: 80px 70px 70px 70px;
    margin-top: -42px;
}

.footer_container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.footer_info {
    font-size: 16px;
    font-weight: normal;
    margin-top: 2px;
}

.footer_logo {
    margin-bottom: 20px;
    width: 50%;
}

.footer_info p {
    margin: 10px 0;
}

.footer_info a {
    color: #fff;
    text-decoration: none;
}

.sosial_icon {
    margin-top: 20px;
}

.sosial_icon a {
    margin-right: 10px;
}

.footer_link {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}


.column01 {
    min-width: 112px;
}

.column02 {
    min-width: 206px;
}

.column03 {
    min-width: 240px;
}

.column_title {
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 170%;
}

.column_title::after {
    content: "";
    display: inline-block;
    margin-left: 16px;
    width: 8px;
    height: 8px;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
}

.columun_bottom {
    margin-top: 50px
}

.column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column01 li {
    margin-bottom: 10px;
    line-height: 170%;

}

.column02 li {
    margin-bottom: 10px;
    line-height: 170%;
}

.column a {
    color: #fff;
    text-decoration: none;

}

.copyright {
    display: inline-block;
    text-align: center;
    margin-top: 75px;
    font-size: 12px;
    width: 100%;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px;
        font-size: 13px;
    }

    .footer_link {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer_container {
        flex-direction: column;
        align-items: center;
    }

    .footer_info {
        text-align: center;
        margin-bottom: 20px;
        max-width: none;
    }

    .footer_info p {
        font-size: 14px;
        margin: 5px 0;
    }

    .footer_logo {
        width: 50%;
        height: auto;
        margin-bottom: 15px;
    }

    .sosial_icon {
        margin-right: 8px;
        display: flex;
        justify-content: center;
    }

    .footer_link {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .column01,
    .column02,
    .column03 {
        width: 30%;
        margin-bottom: 20px;
        display: inline-block;
    }

    .column_title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .column ul {
        padding-left: 20px;
        margin-bottom: 10px;
    }

    .column01 li,
    .column02 li,
    .column03 li {
        margin-bottom: 8px;
    }

    .copyright {
        font-size: 10px;
        margin-top: 40px;
    }

    .column_title {
        font-weight: bold;
        margin-bottom: 10px;
        line-height: 170%;
        font-size: 13px;
    }

    .column_title::after {
        content: "";
        display: inline-block;
        margin-left: 16px;
        width: 8px;
        height: 8px;
        border-top: 2px solid;
        border-right: 2px solid;
        transform: rotate(45deg);
    }
}

/* ここまでフッター */
/* フロートボタン */
.fixedButton_container {
    position: fixed;
    right: 20px;
    top: 250px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    align-items: center;
    display: flex;
    flex-direction: column;
}

/* 各フロートボタン */
.fixedButton {
    margin-bottom: 10px;
    transition: opacity 0.3s ease-in-out;
    width: 100px;
    height: 100px;
    text-align: center;
    align-items: center;
}

/* 一番上に戻るボタンのサイズ調整 */
.fixedButton_last {
    width: 80px;
    height: 80px;
}

/* フロートボタンを非表示にするクラス */
.hidden {
    opacity: 0;
    pointer-events: none;
}

.fixedButton a img {
    cursor: pointer;
    transition: filter 0.3s ease,
        transform 0.3s ease;
}

.fixedButton a img:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* SP版（横並び） */
@media (max-width: 767px) {
    .fixedButton_container {
        position: fixed;
        left: 5px;
        top: 600px;
        right: 5px;
        flex-direction: row;
        max-width: 100%;
        display: flex;
        align-items: center;
        gap: 5px;
        text-align: center;
    }
}