@charset "UTF-8";
/* 色メモ
濃青    #0871b9
橙      #ffb300
青      #37A8F4
薄青    #C4E6FF
*/

.m-plus-rounded-1c-regular {
    font-family: "M PLUS Rounded 1c";
    font-weight: 400;
    font-style: normal;

}

.kaisei-harunoumi-regular {
    font-family: "Kaisei HarunoUmi", serif;
    font-weight: 400;
    font-style: normal;
}

/* アニメーション ******************************************************************************************************/
@keyframes fadeout {
    100% {
        opacity: 0;
        transform: translateY(1000px);
    }
}

@keyframes zoom {

    0% {
        transform: scale(1);
    }

    60% {
        transform: scale(1.05);
    }
}

@keyframes yurayura {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(2deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes yurayura2 {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

/* svg共通設定 ************************************************************************************************/
svg {
    overflow: visible;
}


/* 全体のフォントと文字サイズ *****************************************************************************************/
body {
    font-family: '游ゴシック';
    font-size: 16px;
    text-align: justify;
    animation: fadein 3s forwards;
    background-attachment: fixed;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.stick-regular {
    font-family: "Stick", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.kiwi-maru-regular {
    font-family: "Kiwi Maru", serif;
    font-weight: 400;
    font-style: normal;
}

.kaisei-harunoumi-regular {
    font-family: "Kaisei HarunoUmi", serif;
    font-weight: 400;
    font-style: normal;
}

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.teko {
    font-family: "Teko", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.m-plus-rounded-1c-regular {
    font-family: "M PLUS Rounded 1c", serif;
    font-weight: 400;
    font-style: normal;
}

/*上右下左*/


/* topボタン *********************************************************************************************************/
.page_top_btn {
    text-decoration: none;
    border-radius: 10px;
    position: fixed;
    bottom: 3vh;
    right: 2vw;
    font-weight: bold;
    padding: 0.7em;
    text-align: center;
    background: rgb(0, 115, 191);
    color: #fff;
    transition: 0.3s;
    z-index: 100;
    transition: transform 0.5s;
}

/* topボタンのマウスオーバー時 色 */
.page_top_btn:hover {
    background: #ff943d;
    color: #fff;
    transform: scale(1.05);
}

/* 滑らかにスクロール移動するためのコード */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* 横スクロールバーを強制的に無効化 */
}

/* 常駐インデックス *********************************************************************************************************/
.hide_index {
    position: fixed;
    top: 50%;
    right: 2vw;
    z-index: 100;
}

.index_flex {
    display: flex;
    align-items: center;
    position: relative;
}

.show_txt {
    text-align: center;
    cursor: pointer;
    font-family: 'oswald';
}

.hide_txt {
    font-weight: 600;
    position: absolute;
    margin: 0.5vw;
    width: 20vw;
    right: 100%;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.hide_txt.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hide_txt a {
    text-decoration: none;
    color: #000;
}

.hide_index a p {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 3px 15px -5px #b4b4b4;
    text-align: center;
    padding: 0.8vw;
    margin: 0.5vw;
    transition: box-shadow 0.3s ease;
}

.hide_txt a p:hover {
    box-shadow: 0px 3px 19px -5px #787878;
    /* ホバー時の背景色変更例 */
}




/* ヘッダーのデザイン *****************************************************************************************/
.phone_header {
    display: none;
}

.header_grad {
    width: 80%;
    position: fixed;
    top: 1%;
    left: 10%;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    width: 100%;
    margin: 1vw;
    font-family: '游ゴシック';
    display: flex;
    align-items: center;
    padding: 1%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 1px 19px -13px #6e828c;
    /* Excelそのままにするときはコメントアウト */
    box-sizing: border-box;
    position: relative;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.logo {
    padding-left: 1%;
    width: 7%;
    height: 7%;
}

.logo_img {
    filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 1));
}

.close-icon {
    position: absolute;
    pointer-events: none
}

.menu {
    flex: 1;
    text-align: right;
    margin-right: 100px;
    z-index: 2;
}

.menu_list {
    list-style: none;
}

.menu_li {
    Letter-spacing: 0.1vw;
    padding: 0.5vw 1vw 0.5vw 1vw;
    display: inline-block;
    margin-left: 1vw;
    font-weight: 600;
}

.menu_li a {
    text-decoration: none;
    color: #000;
}

.menu_li:hover {
    background: rgb(0, 115, 191);
    border-radius: 10px;
    animation: zoom .3s;
}

.menu_li:hover a {
    color: #ffffff;
}

.menu_li_open:hover {
    color: #fff;
}

/* フッター波のcss ********************************************************************************************/
#wrapper {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.wave-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 250px;
    overflow: hidden;
    pointer-events: none;
}

.wave-container1 {
    z-index: -1;
}

.wave-container2 {
    z-index: -2;
}

.wave-container3 {
    z-index: -3;
}

.wave-container.wave-path {
    overflow: visible !important;
}

.wave-group1,
.wave-group2,
.wave-group3 {
    display: flex;
    width: 200vw;
    height: 100%;
}

.wave_path {
    width: 100vw;
    height: 100%;
}

.wave-svg {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
}

#yot {
    position: absolute;
    width: clamp(40px, 5vw, 100px);
    height: auto;
}

.f_value {
    width: 100%;
    margin: 1.8vw;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo_link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-bottom: 1vw;
}


.f_logo {
    width: 8vw;
    filter: drop-shadow(0px 0px 3px rgba(34, 59, 127, 0.5));
}

.info {
    font-family: "游ゴシック";
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    height: 100%;
    margin-left: 1.5vw;
    color: #fff;
    text-shadow: 0px 0px 5px rgba(88, 88, 88, 0.5);
}

.kaisyamei {
    font-size: 18px;
}

/* リンクリスト部分 ********************************************************************************/
.major_items,
.major_items2 {
    scroll-margin-top: 7.5vw;
}

.link_list,
.list_li a {
    display: flex;
    align-items: center;
    list-style: none;
    text-decoration: none;
    color: #fff;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    font-weight: 600;
}

.list_list {
    justify-content: center;
    align-items: center;
    width: 100%;
}

.list_li {
    width: 25%;
    max-height: 200px;
    min-width: 15%;
    align-items: center;
    padding: 20px;
    display: inline-block;
    margin: auto;
    background: rgb(0, 96, 160);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
}

.link_arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    color: rgb(0, 96, 160);
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    font-family: 'M PLUS Rounded 1c';
}

.txt {
    flex-grow: 1;
    text-align: center;
}

.list_li:hover .link_arrow {
    animation: yurayura2 .4s;
}

.list_li:active {
    background: #ffb300;
}

/* 大項目 *****************************************************************************************/
.major_items {
    margin: 10%;
    margin-bottom: 15%;
}

.major_items2 {
    margin: 10%;
    margin-bottom: 0;
}


/* タイトル */

.title {
    font-size: 4vw;
    font-family: Oswald;
}

/* サブタイトル */
.subtitle {
    margin-bottom: 3%;
    display: flex;
    align-items: center;
    color: rgb(0, 115, 191);
    font-size: 0.8vw;
    font-weight: 600;
}

/* ▶▶▶ */
.symbol1 {
    font-size: 200%;
    color: rgb(0, 115, 191);
}

.symbol2 {
    font-size: 200%;
    color: #ff943d;
}

.symbol3 {
    font-size: 200%;
    color: #3ab0ff;
}

/* お問い合わせ ****************************************************************************************/
.contact {
    font-weight: 600;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.c_text {
    padding: 10px 13px 10px 13px;
    font-size: 40px;
}

.contact a {
    text-decoration: none;
}

.c_btn {
    color: #fff;
    border-radius: 5px;
    padding: 10px 13px 10px 13px;
    background-color: #0871b9;
}

.c_btn {
    animation: yurayura 3s linear infinite;
    scale: 1;
}

/* 間隔調整用 ******************************************************************************************/
.margin_plus {
    margin-top: 20%;
}

/* 共通装飾用 *****************************************************************************************/
.point {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff943d;
    box-shadow: 5px 3px 0px #2969ff;
}

/* スクロールバー ***********************************************************************************/
::-webkit-scrollbar {
    background: #ffffff00;
    width: 0.6vw;
    border-radius: 0.3vw;
}

::-webkit-scrollbar-thumb {
    background-color: #0871b9;
    border-radius: 0.3vw;
}

/* Coming soon */
.coming_soon {
    width: 80%;
    margin: 10%;
    font-family: Oswald;
    text-align: center;
    font-size: 200%;
    color: #787878;
}

/* メニュー非表示・フルスクリーン対応 */
/* スマホサイズ用スタイル */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .title {
        font-size: 50px;
        font-family: Oswald;
        text-align: center;
    }

    .subtitle {
        font-size: 10px;
    }

    .major_items {
        margin: 5%;
        margin-bottom: 0%;
        margin-top: 15%;
    }

    /* header内のロゴを中央配置 */
    .header_grad {
        display: none;
    }

    /* Navbar & Navmenu color */
    :root {
        --background-navbar: rgba(255, 255, 255, 0.8);
    }

    .phone_header {
        display: block;
        padding: 3px;
        background: var(--background-navbar);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 52px;
        z-index: 9999;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        box-shadow: 0px 10px 10px -13px #0000007c;
    }

    /* Nav items */
    .phone_menu {
        list-style: none;
        position: absolute;
        width: 100%;
        height: auto;
        top: 0;
        margin-top: 52px;
        padding: 0 0 10px 0;
        clear: both;
        background: var(--background-navbar);
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
        transform: scale(1, 0);
        transform-origin: top;
        box-shadow: 0px 10px 10px -13px #0000007c;
    }

    /* Hamburger menu button */
    .menu-btn:checked~.phone_menu {
        transform: scale(1, 1);
        transform-origin: top;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    /* Hamburger menbu text */
    .phone_menu a {
        text-decoration: none;
        font-weight: 500;
        letter-spacing: 2px;
        font-size: 16px;
        text-transform: capitalize;
        color: #4c5059;
        opacity: 0;
        transition: 0.5s;
    }

    .phone_menu li {
        padding: 15px 0;
        margin: 0 54px;
        opacity: 0;
        transition: 0.5s;
    }

    .menu-btn:checked~.phone_menu a,
    .menu-btn:checked~.phone_menu li {
        opacity: 1;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
    }

    .menu-btn {
        display: none;
    }

    .phone_menu-icon {
        display: inline-block;
        position: relative;
        cursor: pointer;
        padding: 24px 14px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .navicon {
        background: #ff9900;
        display: block;
        height: 3px;
        width: 26px;
        position: relative;
        margin-top: 24px;
        margin-left: 11px;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    .navicon:before,
    .navicon:after {
        padding-left: 3%;
        content: "";
        display: block;
        height: 100%;
        width: 100%;
        position: absolute;
        background: #0871b9;
        transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    .navicon:before {
        top: 9px;
    }

    .navicon:after {
        bottom: 9px;
    }

    /* Hamburger Menu Animation Start */
    .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
    }

    .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
    }

    .menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
        top: 0;
    }

    .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
        bottom: 0;
    }

    .menu-btn:checked~.menu-icon .navicon {
        background: rgba(0, 0, 0, 0);
        transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    }

    /* Hamburger Menu Animation End */

    /* Navbar Container */
    .navtext-container {
        width: 100%;
        height: 52px;
        position: absolute;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0px 1px 5px -13px #6e828c;
    }

    .navtext-container a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40%;
        height: 100%;
    }

    .navtext-container a img {
        width: 50%;
        height: auto;
        box-shadow: 0px 1px 5px -13px #6e828c;
    }


    /* Navbar Text */
    .navtext {
        position: absolute;
        text-transform: uppercase;
        color: #000000;
        letter-spacing: 4px;
        font-size: 20px;
    }

    /* ロゴをクリックした時にバツ印を表示 */
    .close-icon {
        width: 6vw;
        height: 6vw;
        cursor: pointer;
        position: absolute;
        top: 22%;
        left: 22%;
    }

    .close-icon:hover {
        transform: scale(1.2);
    }

    .logo {
        width: 7vw;
        height: 7vw;
        padding: 0;
    }

    .logo_img {
        width: 100%;
        height: 100%;
    }

    /* メニューを初期状態で非表示にする */
    .menu {
        display: none;
    }

    .f_value {
        margin-bottom: 12vw;
    }

    .f_logo {
        width: 20vw;
    }

    .info {
        font-size: 3vw;
        margin-left: 4vw;
    }


    .link_list,
    .list_li a {
        display: block;
        list-style: none;
        text-decoration: none;
        color: #fff;
    }

    .list_li a {
        display: flex;
    }

    .list_li {
        width: 80% !important;
        height: 20% !important;
        max-height: 200px;
        min-width: 15%;
        align-items: center;
        padding: 3vw;
        margin: 1vw;
        display: inline-block;
        background: rgb(0, 96, 160);
        border-radius: 10px;
        position: relative;
        cursor: pointer;
    }

    .hide_index {
        display: none;
    }

    #yot {
        left: 50%;
        transform: translateX(-50%);
        width: 20vw;
        height: 20vw;
    }

    .page_top_btn {
        bottom: 5px;
        ;
    }
}