@charset "utf-8";

@font-face {
    font-family: "NotoSansJP-Black";
    src: url("../fonts/NotoSansJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Bold";
    src: url("../fonts/NotoSansJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSansJP-Medium";
    src: url("../fonts/NotoSansJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSansJP-Regular";
    src: url("../fonts/NotoSansJP-Regular.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Black";
    src: url("../fonts/NotoSerifJP-Black.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Bold";
    src: url("../fonts/NotoSerifJP-Bold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "NotoSerifJP-Medium";
    src: url("../fonts/NotoSerifJP-Medium.otf") format("OpenType");
    font-weight: 500;
}

@font-face {
    font-family: "NotoSerifJP-Regular";
    src: url("../fonts/NotoSerifJP-Regular.otf") format("OpenType");
    font-weight: 400;
}

@font-face {
    font-family: "NotoSerifJP-SemiBold";
    src: url("../fonts/NotoSerifJP-SemiBold.otf") format("OpenType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Bold";
    src: url("../fonts/OleoScript-Bold.ttf") format("TrueType");
    font-weight: bold;
}

@font-face {
    font-family: "OleoScript-Regular";
    src: url("../fonts/OleoScript-Regular.ttf") format("TrueType");
    font-weight: 400;
}

@font-face {
    font-family: "Poppins-ExtraBold";
    src: url("../fonts/Poppins-ExtraBold.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "NotoSerif-Regular";
    src: url("../fonts/NotoSerif-Regular.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Bold";
    src: url("../fonts/JosefinSans-VariableFont_wght.ttf") format("truetype");
    font-weight: 900;
}

@font-face {
    font-family: "JosefinSans-Regular";
    src: url("../fonts/JosefinSans-Regular.ttf") format("truetype");
    font-weight: 900;
}

/*html設定_______________________________________________________________html*/
html {
    -webkit-overflow-scrolling: touch;
}

/*body設定_______________________________________________________________body*/
body {
    display: flex;
    flex-flow: column;
    width: calc((100 / 1366) * 1366vw);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    opacity: 0;
    animation: fadeIn 3s ease;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    100% {
        opacity: 1;
    }
}


a {
    text-decoration: none;
    color: #000;
}

li {
    list-style: none;
}

/*_______________________________________________________________各要素のフェードイン*/
.js-fadeUp1 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp1.is-inview1 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .5s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp2 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(100px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp2.is-inview2 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .5s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp9 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp9.is-inview9 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp10 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp10.is-inview10 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

/*footerをウィンドウ最下部へ固定する_______________________________________________________________wrapper*/
.wrapper {
    width: calc((100 / 1366) * 1366vw);
    min-height: 100vh;
    position: relative;
    /*←footerと相対位置*/
    padding-bottom: calc((100 / 1366) * 550vw);
    /*←footerの高さ*/
    box-sizing: border-box;
    /*←全て含めてmin-height:100vhに*/
}

/*___________________________________________________________________________________________スクロールバーデザイン*/
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track-piece {
    display: none;
}

::-webkit-scrollbar-track {

    background: rgba(0, 0, 0, 1);
}

::-webkit-scrollbar-thumb {
    height: 50px;
    background: #fff;
    border-radius: 5px;
}

:root {
    --font-jp: "NotoSansJP-Regular";
    --font-eng: "JosefinSans-Regular";
    --font-jp_b: "NotoSansJP-Bold";
    --font-eng_b: "JosefinSans-Bold";
    /*darkorange　R:255 G:140 B:0*/
    --menu-color: #ff8c00;
    /*royalblue R:0 G:0 B:255*/
    --blue: #0000ff;
    /*mediumturquoise R:72 G:209 B:204*/
    --mediumturquoise: #48d1cc;
    /*turquoise R:64 G:224 B:208*/
    --turquoise: #40e0d0;
    /*dimgrey R:192 G:192 B:192*/
    --grey: #c0c0c0;
}

/*___________________________________________________________________________________________header*/

/*header設定*/
#header {
    display: none;
    width: calc((100 / 1366) * 1366vw);
    height: calc((100 / 1366) * 644vw);
    overflow: hidden;
    position: relative;
    /*h1の中央寄せ配置の起点とするためのrelative*/
}

.header_bg {
    width: 100%;
    height: calc((100 / 1366) * 644vw);
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.header_bg img {
    width: 100%;
    height: calc((100 / 1366) * 644vw);
}

/*___________________________________________________________________________________________g-nav*/

.site-header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: calc((100 / 1366) * 100vw);
    background-color: rgba(0, 0, 0, 0);
    padding-top: calc((100 / 1366) * 30vw);
    padding-right: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 50vw);
    position: fixed;
    opacity: 0;
    animation-name: fadein1;
    animation-duration: .5s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    z-index: 999;
}

@keyframes fadein1 {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

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

.menu-simbol h2 {
    width: calc((100 / 1366) * 200vw);
    height: 100%;
}

.menu-simbol h2 a {
    display: block;
    width: 100%;
    height: 100%;
}

.menu-simbol h2 img {
    width: calc((100 / 1366) * 200vw);
}

nav {
    margin-top: 10px;
}

nav ul {
    display: flex;
    justify-content: space-between;
    width: calc((100 / 1366) * 500vw);
    list-style: none;
}

.active_menu {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    margin-top: 8px;
    position: relative;
}

.active_menu::before {
    content: '';
    display: block;
    width: 100%;
    border: solid #ff8c00 1px;
    border-radius: 5px;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    animation-name: stretch-line;
    animation-duration: 1s;
    animation-delay: 1s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

@keyframes stretch-line {
    0% {
        width: 0;
        opacity: 0;
        transform: translateX(0);
    }

    100% {
        width: 100%;
        color: var(--menu-color);
        opacity: 1;
        transform: translateX(0px);
    }
}

nav ul li a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
    position: relative;
}

nav ul li.current a,
nav ul li a:hover {
    color: var(--menu-color);
    transition: all .2s ease;
}

/*メニュー下線の動き*/
nav li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    top: 15px;
    left: 0;
    /*線の形状*/
    width: 100%;
    height: 2px;
    background: var(--menu-color);
    border-radius: 5px;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);
    /*X方向0、Y方向1*/
    transform-origin: center top;
    /*上部中央基点*/
}

/*現在地とhoverの設定*/
nav li.current a::after,
nav li a:hover::after {
    transform: scale(1, 1);
    /*X方向にスケール拡大*/
}

/*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
.header-logo.headerLogoScroll.-before {
    display: none;
}

.header-logo.-after {
    display: none;
}

/* スクロールがコンテンツに達したらロゴのカラー変更 */
.header-logo.headerLogoScroll.-after {
    display: block;
    position: absolute;
    top: calc((100 / 1366) * 30vw);
    left: calc((100 / 1366) * 50vw);
}

/* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
.g-navi ul li a.headerColorScroll {
    color: #000;
    transition: color 0.4s ease-out;
}

/* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
.g-navi ul li.current a.headerColorScroll,
.g-navi ul li a.headerColorScroll:hover {
    color: #ff8c00;
    transition: all .2s ease;
}

/* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
.active_menu.scroll::before {
    border: solid #ff8c00 1px;
}

/*footer手前でロゴとナビを削除*/
.is-hidden {
    visibility: hidden;
    opacity: 0;
    transition: .5s all ease;
}

/*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

.content_title {
    display: none;
    width: calc((100 / 1366) * 150vw);
    height: 10%;
    position: relative;
    top: 40%;
    left: 71%;
    text-align: center;
}

.content_title h3 {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 30vw);
    color: #fff;
}

/*___________________________________________________________________________________________スクロールダウン*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
    display: none;
    height: 50px;
    /*描画位置※位置は適宜調整してください*/
    position: fixed;
    top: calc((100 / 1366) * 400vw);
    right: calc((100 / 1366) * 250vw);
    transform: translate(-50%, -50%);
    /*全体の高さ*/
    text-align: center;
    z-index: 10;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #fff;
}

/* 線の描写 */
.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 50%;
    /*線の形状*/
    width: 2px;
    height: 30px;
    background: #fff;
    margin-top: 20px;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: linemove 1.4s ease-in-out infinite;
    opacity: 0;
    transition: all 1.5s ease;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes linemove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }

    30% {
        height: 30px;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

/*___________________________________________________________________________________________content*/
#content {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    padding-top: calc((100 / 1366) * 50vw);
    padding-right: calc((100 / 1366) * 250vw);
    padding-bottom: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 250vw);
    position: relative;
    z-index: 10;
}

#content h2 {
    width: calc((100 / 1366) * 313vw);
    height: calc((100 / 1366) * 439vw);
    position: absolute;
    top: -40%;
    left: 10%;
}

#content h2 img {
    border-radius: 3px;
}

.contact_info {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
    padding-bottom: calc((100 / 1366) * 50vw);
    margin-top: calc((100 / 1366) * 50vw);
    text-align: center;
    line-height: 2;
}

.contact_info a {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 25vw);
}

/*___________________________________________________________________________________________form*/

form#mail_form dl dt {
    width: 30%;
    float: left;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
}

form#mail_form dl dd {
    width: 65%;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 16vw);
}

/* -- form 〒icon ------------------------------------------------------------- */
form#mail_form dl:nth-child(7) a {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
    color: #fff;
    margin-left: calc((100 / 1366) * 10vw);
}

.contact_form {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    padding-top: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 80vw);
    padding-bottom: calc((100 / 1366) * 50vw);
    padding-right: calc((100 / 1366) * 80vw);
}

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

.contact_form h3 {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 30vw);
    margin-bottom: calc((100 / 1366) * 20vw);
}

.contact_form h3 img {
    width: calc((100 / 1366) * 25vw);
    margin-right: 10px;
}

.form_title p {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
    margin-top: 10px;
}

.form_title p span {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 18vw);
    color: red;
}

input,
select,
textarea {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
}

/*::placeholder {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 10vw);
    color: orange;
}*/

.gender,
.response {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
    cursor: pointer;
}

/* 枠線の色変更（実線・赤色） */
input:focus {
    outline: 1px orange solid;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
    width: 80%;
    font-size: 80%;
    background-color: #fff;
    padding: 8px;
}

input[type="radio"] {
    margin-right: 10px;
    cursor: pointer;
    accent-color: #000;
}


#postal[type="text"] {
    width: 80%;
}

#contents {
    width: 100%;
    background-color: #fff;
}

#submit_area {
    padding-top: calc((100 / 1366) * 30vw);
    padding-right: calc((100 / 1366) * 250vw);
    padding-bottom: calc((100 / 1366) * 50vw);
    padding-left: calc((100 / 1366) * 250vw);
    text-align: center;
}

#form_submit {
    width: calc((100 / 1366) * 166vw);
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
    color: #fff;
    border-radius: 5px;
}

.form_submit_button {
    width: calc((100 / 1366) * 166vw);
    height: 100%;
}

.g-info {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 12vw);
    line-height: 2;
    text-align: center;
}

.g-info a:hover {
    color: red;
}

/*___________________________________________________________________________________________footer*/

#footer {
    display: none;
    width: 100%;
    height: calc((100 / 1366) * 568vw);
    background-color: rgba(255, 255, 255, 1);
    position: absolute;
    /*←絶対位置*/
    bottom: 0;
    /*下に固定*/
    z-index: 999;
}

.footer_wrapper {
    width: 100%;
    height: 100%;
    padding-top: calc((100 / 1366) * 50vw);
    padding-right: calc((100 / 1366) * 100vw);
    padding-bottom: calc((100 / 1366) * 20vw);
    padding-left: calc((100 / 1366) * 100vw);
}

.js-fadeUp9 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp9.is-inview9 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .6s;
    /* フェード開始を0.5秒遅らせる */
}

.js-fadeUp10 {
    opacity: 0;
    /* 最初は非表示 */
    transform: translateY(50px);
    /* 下に30pxの位置から */
    transition: opacity 1.0s, transform 1.0s;
    /* 透過率と縦方向の移動を0.8秒 */
}

/* フェードイン(スクロールした後) */
.js-fadeUp10.is-inview10 {
    opacity: 1;
    /* 表示領域に入ったら表示 */
    transform: translateY(0px);
    /* 30px上に移動する */
    transition-delay: .7s;
    /* フェード開始を0.5秒遅らせる */
}

.footer_inner {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 60vw);
}

.footer_logo img {
    width: calc((100 / 1366) * 200vw);
    object-fit: cover;
    object-position: left top;
}

.footer_address {
    width: 100%;
    text-align: center;
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    line-height: 2;
}

.footer_address p {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
}

.footer_address a {
    font-family: var(--font-jp);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    text-decoration: none;
}

.footer_address a .color {
    transition: all 0.3s ease 0s;
}

.footer_address a:hover .color {
    color: var(--blue);
}

.footer_address .mgr {
    margin-right: calc((100 / 1366) * 20vw);
}

.footer_inner2 {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    margin-top: calc((100 / 1366) * 50vw);
}

.footer_nav {
    width: 100%;
}

.footer_nav_li {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer_nav_content {
    display: flex;
    justify-content: space-between;
    width: 35%;
}

.footer_nav_item {
    cursor: pointer;
}

.footer_nav_active a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: var(--menu-color);
    border-left: 2px solid #ff8c00;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 1366) * 2vw);
    pointer-events: none;
    text-align: center;
}

.footer_nav_item a {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
    border-left: 2px solid #000;
    padding-top: calc((100 / 480) * 1vw);
    padding-left: calc((100 / 1366) * 2vw);
    transition: all 0.3s ease 0s;
}

.footer_nav_item a:hover {
    color: var(--menu-color);
    border-color: var(--menu-color);
}

.footer_sns {
    width: 100%;
    margin-top: 30px;
}

.footer_sns ul {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
    gap: 15px;
}

.footer_sns ul li {
    display: inline-block;
    width: calc((100 / 1366) * 80vw);
    height: calc((100 / 1366) * 80vw);
}

.sns-icon img {
    width: 35%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.sns-icon.sns-x img {
    width: 30%;
}

.sns-icon.sns-x img:hover {
    content: url('../images/sns_X_Logo_BlackWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.sns-icon.sns-ig:hover img {
    content: url('../images/sns_IG_Logo_GradientWhite.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
}

.sns-icon.sns-fb:hover img {
    content: url('../images/sns_FB_Logo_Primary.png');
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .6));
}

.footer_copylight {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.footer_copylight p {
    font-family: var(--font-eng);
    font-size: calc((100 / 1366) * 14vw);
    color: #000;
}

.footer_copylight img {
    width: calc((100 / 1366) * 100vw);
    margin-left: 10px;
}

/*____________________________________________________________________________________________________________media_768*/
@media (max-width:768px) {



    /*footerをウィンドウ最下部へ固定するwrapper*/
    .wrapper {
        width: calc((100 / 768) * 768vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 768) * 568vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________header*/

    #header {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header_bg img {
        width: 100%;
        height: calc((100 / 768) * 368vw);
        filter: brightness(85%);
    }

    /*___________________________________________________________________________________________g-nav*/

    .site-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        height: calc((100 / 768) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 50vw);
        position: fixed;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        z-index: 999;
    }

    @keyframes fadein1 {
        0% {
            opacity: 0;
            transform: translateY(0);
        }

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

    .menu-simbol {
        width: calc((100 / 768) * 200vw);
        height: 70%;
    }

    .menu-simbol h2 {
        width: calc((100 / 768) * 200vw);
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 768) * 200vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 35px;
        right: 50px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 50%;
    }

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

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 50%;
    }

    nav {
        width: 100%;
        height: 25vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -150%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
    }

    nav.panelactive {
        top: 0;
        opacity: 1;
        margin-top: 0;
    }

    nav ul {
        display: flex;
        justify-content: space-between;
        width: calc((100 / 768) * 500vw);
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: var(--blue);
        margin-top: 5px;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid #4169e1 1.5px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 100%;
            color: var(--blue);
            opacity: 1;
            transform: translateX(0px);
        }
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
        position: relative;
    }

    nav ul li.current a,
    nav ul li a:hover {
        color: var(--blue);
        transition: all .2s ease;
    }

    /*メニュー下線の動き*/
    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 2px;
        background: var(--blue);
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li.current a::after,
    nav li a:hover::after {
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logo.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 768) * 30vw);
        left: calc((100 / 768) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: #fff;
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #0000ff 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

    .content_title {
        display: none;
        width: calc((100 / 768) * 130vw);
        height: 10%;
        position: relative;
        top: 40%;
        left: 65%;
        text-align: center;
    }

    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 25vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________768_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none;
        height: 50px;
        /*描画位置※位置は適宜調整してください*/
        position: fixed;
        top: calc((100 / 768) * 250vw);
        right: calc((100 / 768) * 130vw);
        transform: translate(-50%, -50%);
        /*全体の高さ*/
        text-align: center;
        z-index: 10;
    }

    /*Scrollテキストの描写*/
    .scrolldown1 span {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #fff;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "";
        /*描画位置*/
        position: absolute;
        top: 0;
        left: 50%;
        /*線の形状*/
        width: 2px;
        height: 30px;
        background: #fff;
        margin-top: 20px;
        /*線の動き1.4秒かけて動く。永遠にループ*/
        animation: linemove 1.4s ease-in-out infinite;
        opacity: 0;
        transition: all 1.5s ease;
    }

    /*高さ・位置・透過が変化して線が上から下に動く*/
    @keyframes linemove {
        0% {
            height: 0;
            top: 0;
            opacity: 0;
        }

        30% {
            height: 30px;
            opacity: 1;
        }

        100% {
            height: 0;
            top: 50px;
            opacity: 0;
        }
    }

    /*___________________________________________________________________________________________content*/
    #content {
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
        padding-top: calc((100 / 768) * 50vw);
        padding-right: calc((100 / 768) * 50vw);
        padding-bottom: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 50vw);
        position: relative;
        z-index: 10;
    }

    #content h2 {
        width: calc((100 / 768) * 313vw);
        height: calc((100 / 768) * 439vw);
        position: absolute;
        top: -40%;
        left: 10%;
    }

    #content h2 img {
        border-radius: 3px;
    }

    .contact_info {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        padding-bottom: calc((100 / 768) * 50vw);
        margin-top: calc((100 / 768) * 50vw);
        text-align: center;
        line-height: 2;
    }

    .contact_info a {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 25vw);
    }

    .js-fadeUp1 {
        opacity: 0;
        /* 最初は非表示 */
        transform: translateY(50px);
        /* 下に30pxの位置から */
        transition: opacity 1.0s, transform 1.0s;
        /* 透過率と縦方向の移動を0.8秒 */
    }

    /* フェードイン(スクロールした後) */
    .js-fadeUp1.is-inview1 {
        opacity: 1;
        /* 表示領域に入ったら表示 */
        transform: translateY(0px);
        /* 30px上に移動する */
        transition-delay: .5s;
        /* フェード開始を0.5秒遅らせる */
    }

    .js-fadeUp2 {
        opacity: 0;
        /* 最初は非表示 */
        transform: translateY(50px);
        /* 下に30pxの位置から */
        transition: opacity 1.0s, transform 1.0s;
        /* 透過率と縦方向の移動を0.8秒 */
    }

    /* フェードイン(スクロールした後) */
    .js-fadeUp2.is-inview2 {
        opacity: 1;
        /* 表示領域に入ったら表示 */
        transform: translateY(0px);
        /* 30px上に移動する */
        transition-delay: .5s;
        /* フェード開始を0.5秒遅らせる */
    }

    /*___________________________________________________________________________________________form*/

    /* -- form#mail_form, dl, dt, dd --------------------------------------------------------------- */

    form#mail_form dl dt {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 14vw);
        font-weight: normal;
    }

    form#mail_form dl dd {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 12vw);
    }

    /* -- form span.required, span.optional -------------------------------------------------------- */

    form#mail_form dl dt span.required,
    form#mail_form dl dt span.optional {
        display: inline-block;
        color: #000;
        padding: 4px 5px;
    }

    form#mail_form dl dt span.required {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 10vw);
        font-style: normal;
        color: red;
        background: none;
    }

    form#mail_form dl dt span.optional {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 768) * 10vw);
        font-style: normal;
        color: blue;
        background: none;
    }

    /* -- form 〒icon ------------------------------------------------------------------------------ */
    form#mail_form dl:nth-child(7) a {
        font-family: var(--font-jp);
        color: #fff;
        margin-left: calc((100 / 786) * 10vw);
        background-color: red;
        border-radius: 3px;
        padding: 3px;
    }

    .contact_form {
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        padding-top: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 70vw);
        padding-bottom: calc((100 / 768) * 50vw);
        padding-right: calc((100 / 768) * 70vw);
    }

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

    .contact_form h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 20vw);
        margin-bottom: calc((100 / 768) * 20vw);
    }

    .contact_form h3 img {
        width: calc((100 / 768) * 25vw);
        margin-right: 10px;
    }

    .form_title p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 10vw);
        margin-top: 15px;
    }

    .form_title p span {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 18vw);
        color: red;
    }

    .form {
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    input,
    select,
    textarea {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
    }

    /*::placeholder {
    font-family: var(--font-jp);
    font-size: calc((100 / 768) * 10vw);
    color: orange;
}*/

    .gender,
    .response {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
        cursor: pointer;
    }

    /* 枠線の色変更（実線・赤色） */
    input:focus {
        outline: 1px orange solid;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        width: 80%;
        font-size: 80%;
        background-color: #fff;
        padding: 8px;
    }

    input[type="radio"] {
        margin-right: 10px;
        cursor: pointer;
        accent-color: #000;
    }


    #postal[type="text"] {
        width: 80%;
    }

    #contents {
        width: 100%;
        background-color: #fff;
    }

    #submit_area {
        padding-top: calc((100 / 768) * 30vw);
        padding-right: calc((100 / 768) * 150vw);
        padding-bottom: calc((100 / 768) * 50vw);
        padding-left: calc((100 / 768) * 150vw);
        text-align: center;
    }

    #form_submit {
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
        color: #fff;
        border-radius: 5px;
    }

    .form_submit_button {
        width: 100%;
        height: 100%;
    }

    .g-info {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 12vw);
        line-height: 2;
        text-align: center;
    }

    .g-info a:hover {
        color: red;
    }

    /*___________________________________________________________________________________________footer*/

    #footer {
        display: none;
        width: 100%;
        height: calc((100 / 768) * 568vw);
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        bottom: 0;
        /*下に固定*/
        z-index: 999;
    }

    .footer_wrapper {
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 768) * 50vw);
        padding-right: calc((100 / 768) * 100vw);
        padding-bottom: calc((100 / 768) * 20vw);
        padding-left: calc((100 / 768) * 100vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 60vw);
    }

    .footer_logo img {
        width: calc((100 / 768) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
        line-height: 2;
    }

    .footer_address p {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
    }

    .footer_address a {
        font-family: var(--font-jp);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address a .color {
        transition: all 0.3s ease 0s;
    }

    .footer_address a:hover .color {
        color: var(--blue);
    }

    .footer_address .mgr {
        margin-right: calc((100 / 768) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 768) * 50vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 65%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 13vw);
        color: var(--menu-color);
        border-left: 2px solid #ff8c00;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 2vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
        border-left: 2px solid #000;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 768) * 3vw);
        cursor: auto;
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns ul li {
        width: calc((100 / 768) * 70vw);
        height: calc((100 / 768) * 70vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 30px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 768) * 14vw);
        color: #000;
    }

    .footer_copylight img {
        width: calc((100 / 768) * 100vw);
        margin-left: 10px;
    }

}

/*____________________________________________________________________________________________________________media_480*/
@media (max-width:480px) {

    /*footerをウィンドウ最下部へ固定するwrapper*/
    .wrapper {
        width: calc((100 / 480) * 480vw);
        min-height: 100vh;
        position: relative;
        /*←footerと相対位置*/
        padding-bottom: calc((100 / 480) * 368vw);
        /*←footerの高さ*/
        box-sizing: border-box;
        /*←全て含めてmin-height:100vhに*/
    }

    /*___________________________________________________________________________________________header*/

    #header {
        width: calc((100 / 480) * 480vw);
        height: calc((100 / 480) * 250vw);
        overflow: hidden;
        position: relative;
        /*h1の中央寄せ配置の起点とするためのrelative*/
    }

    .header_bg {
        width: calc((100 / 480) * 480vw);
        height: calc((100 / 480) * 250vw);
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .header_bg img {
        width: calc((100 / 480) * 480vw);
        height: calc((100 / 480) * 250vw);
    }

    /*___________________________________________________________________________________________g-nav*/

    .site-header {
        display: block;
        width: calc((100 / 480) * 480vw);
        height: calc((100 / 480) * 100vw);
        background-color: rgba(0, 0, 0, 0);
        padding-top: calc((100 / 480) * 30vw);
        padding-right: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 50vw);
        position: fixed;
        animation-name: fadein1;
        animation-duration: .5s;
        animation-timing-function: ease-out;
        animation-fill-mode: forwards;
        z-index: 9999;
    }

    @keyframes fadein1 {
        0% {
            opacity: 0;
            transform: translateY(0);
        }

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

    .menu-simbol {
        width: calc((100 / 480) * 150vw);
        height: 70%;
    }

    .menu-simbol h2 {
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .menu-simbol h2 img {
        width: calc((100 / 480) * 150vw);
    }

    .openbtn1 {
        display: inline-block;
        position: fixed;
        /*ボタンを最前面に*/
        z-index: 9999;
        top: 25px;
        right: 50px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #fff;
        width: 70%;
    }

    .openbtn1.scroll span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 1px;
        border-radius: 2px;
        background-color: #000;
        width: 70%;
    }

    .openbtn1 span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn1 span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn1 span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 40%;
    }

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

    .openbtn1.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 40%;
    }

    nav {
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background-color: var(--menu-color);
        margin-top: 0px;
        position: fixed;
        z-index: -1;
        top: -150%;
        left: 0;
        opacity: 0;
        /*動き*/
        transition: all 0.6s;
        transform: none;
        pointer-events: none;
    }

    nav ul {
        display: block;
        justify-content: space-between;
        width: 80%;
        list-style: none;
        position: absolute;
        z-index: 999;
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    nav ul li {
        margin-top: 20px;
        transition: all .3s ease;
    }

    nav ul li:hover {
        background: rgba(255, 255, 0, .3);
    }

    nav ul li a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #fff;
        position: relative;
    }

    /*メニュー下線の動き*/
    nav ul li a:hover {
        color: var(--blue);
    }

    nav li a::after {
        content: '';
        /*絶対配置で線の位置を決める*/
        position: absolute;
        top: 15px;
        left: 0;
        /*線の形状*/
        width: 100%;
        height: 1.6px;
        background: var(--blue);
        border-radius: 5px;
        /*アニメーションの指定*/
        transition: all .2s;
        transform: scale(0, 1);
        /*X方向0、Y方向1*/
        transform-origin: center top;
        /*上部中央基点*/
    }

    /*現在地とhoverの設定*/
    nav li:hover a::after {
        color: var(--blue);
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }

    nav.panelactive {
        top: 0%;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .active_menu {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: var(--blue);
        margin-top: 20px;
        pointer-events: none;
        position: relative;
    }

    .active_menu::before {
        content: '';
        display: block;
        width: 100%;
        border: solid #0000ff 1.5px;
        border-radius: 5px;
        position: absolute;
        top: 15px;
        left: 0;
        opacity: 0;
        animation-name: stretch-line;
        animation-duration: 1s;
        animation-delay: 5s;
        animation-timing-function: ease;
        animation-fill-mode: forwards;
    }

    @keyframes stretch-line {
        0% {
            width: 0;
            opacity: 0;
            transform: translateX(0);
        }

        100% {
            width: 17%;
            color: var(--blue);
            opacity: 1;
            transform: translateX(0px);
        }
    }

    /*___________________________________________________________________________________________スクロールでロゴ画像とメニューカラー切り替え*/
    .header-logo.headerLogoScroll.-before {
        display: none;
    }

    .header-logo.-after {
        display: none;
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .header-logo.headerLogoScroll.-after {
        display: block;
        width: 30%;
        height: 50%;
        position: absolute;
        top: calc((100 / 480) * 30vw);
        left: calc((100 / 480) * 50vw);
    }

    /* スクロールがコンテンツに達したらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li a.headerColorScroll {
        color: #000;
        transition: color 0.4s ease-out;
    }

    /* スクロールがコンテンツに達してからホバーしたらヘッダーメニューのフォントカラー変更 */
    .g-navi ul li.current a.headerColorScroll,
    .g-navi ul li a.headerColorScroll:hover {
        color: var(--blue);
        transition: all .2s ease;
    }

    /* スクロールがコンテンツに達したらアクティブメニューのラインカラー変更 */
    .active_menu.scroll::before {
        border: solid #0000ff 1px;
    }

    /*footer手前でロゴとナビを削除*/
    .is-hidden {
        visibility: hidden;
        opacity: 0;
        transition: .5s all ease;
    }

    /*___________________________________________________________________________________________/スクロールでロゴ画像とメニューカラー切り替え*/

    .content_title {
        display: none;
        width: calc((100 / 480) * 120vw);
        height: 10%;
        position: relative;
        top: 40%;
        left: 65%;
        text-align: center;
    }
    .content_title h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 20vw);
        color: #fff;
    }

    /*___________________________________________________________________________________________480_スクロールダウン*/

    /*スクロールダウン全体の場所*/
    .scrolldown1 {
        display: none !important;
    }

    /* 線の描写 */
    .scrolldown1::after {
        content: "none";
    }

    /*___________________________________________________________________________________________content*/
    #content {
        display: none;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 1);
        padding-top: calc((100 / 480) * 50vw);
        padding-right: calc((100 / 480) * 30vw);
        padding-bottom: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 30vw);
        position: relative;
        z-index: 10;
    }

    #content h2 {
        width: calc((100 / 480) * 313vw);
        height: calc((100 / 480) * 439vw);
        position: absolute;
        top: -40%;
        left: 10%;
    }

    #content h2 img {
        border-radius: 3px;
    }

    .contact_info {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 12vw);
        padding-bottom: calc((100 / 480) * 50vw);
        margin-top: calc((100 / 480) * 0vw);
        text-align: center;
        line-height: 2;
    }

    .contact_info a {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 25vw);
    }

    /*___________________________________________________________________________________________form*/

    /* -- form#mail_form, dl, dt, dd --------------------------------------------------------------- */

    form#mail_form dl dt {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
    }

    form#mail_form dl dd {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 12vw);
    }

    /* -- form span.required, span.optional -------------------------------------------------------- */

    form#mail_form dl dt span.required,
    form#mail_form dl dt span.optional {
        display: inline-block;
        color: #000;
        padding: 4px 5px;
    }

    form#mail_form dl dt span.required {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 10vw);
        font-style: normal;
        color: red;
        background: none;
    }

    form#mail_form dl dt span.optional {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 10vw);
        font-style: normal;
        color: blue;
        background: none;
    }

    /* -- form 〒icon ------------------------------------------------------------------------------ */
    form#mail_form dl:nth-child(7) a {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 10vw);
        color: #fff;
        margin-left: 10px;
        background-color: red;
        border-radius: 3px;
        padding: 2px;
    }

    /* -- form error message ----------------------------------------------------------------------- */
    form#mail_form dl dd span.error_blank,
    form#mail_form dl dd span.error_format,
    form#mail_form dl dd span.error_match {
        display: block;
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 11vw);
        color: #ff0000;
        margin-top: 5px;
    }

    .contact_form {
        width: 100%;
        height: 100%;
        background-color: #f5f5f5;
        padding-top: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 20vw);
        padding-bottom: calc((100 / 480) * 50vw);
        padding-right: calc((100 / 480) * 20vw);
    }

    .contact_form br {
        display: none;
    }

    .form_title {
        display: block;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact_form h3 {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 16vw);
        margin-bottom: calc((100 / 480) * 20vw);
    }

    .contact_form h3 img {
        width: calc((100 / 480) * 25vw);
        margin-right: 10px;
    }

    .form_title p {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 10vw);
    }

    .form_title p span {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 18vw);
        color: red;
    }

    .form {
        margin: 0 auto;
        box-sizing: border-box;
    }

    .item {
        display: block;
        justify-content: left;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }

    dd ul li label {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 14vw);
    }

    input,
    select,
    textarea {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 12vw);
    }

    /*::placeholder {
    font-family: var(--font-jp);
    font-size: calc((100 / 480) * 10vw);
    color: orange;
}*/

    .gender,
    .response {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 10vw);
        cursor: pointer;
    }

    /* 枠線の色変更（実線・赤色） */
    input:focus {
        outline: 1px orange solid;
    }

    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    textarea {
        width: 100%;
        font-size: 80%;
        background-color: #fff;
        padding: 8px;
    }

    input[type="radio"] {
        margin-top: 3px;
        margin-right: 2px;
        margin-left: 10px;
        cursor: pointer;
        accent-color: #000;
    }


    #postal[type="text"] {
        width: 80%;
    }

    #contents {
        width: 100%;
        background-color: #fff;
    }

    #submit_area {
        padding-top: calc((100 / 480) * 30vw);
        padding-right: calc((100 / 480) * 100vw);
        padding-bottom: calc((100 / 480) * 50vw);
        padding-left: calc((100 / 480) * 100vw);
        text-align: center;
    }

    #form_submit {
        width: 100%;
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 10vw);
        color: #fff;
        border-radius: 5px;
    }

    .form_submit_button {
        width: 100%;
        height: 100%;
    }

    .g-info {
        font-family: var(--font-jp);
        font-size: calc((100 / 480) * 10vw);
        line-height: 2;
        text-align: center;
    }

    .g-info a:hover {
        color: red;
    }

    /*___________________________________________________________________________________________footer*/

    #footer {
        display: none;
        width: 100%;
        height: calc((100 / 480) * 368vw);
        background-color: rgba(255, 255, 255, 1);
        position: absolute;
        /*←絶対位置*/
        bottom: 0;
        /*下に固定*/
        z-index: 999;
    }

    .footer_wrapper {
        width: 100%;
        height: 100%;
        padding-top: calc((100 / 480) * 0vw);
        padding-right: calc((100 / 480) * 0vw);
        padding-bottom: calc((100 / 480) * 0vw);
        padding-left: calc((100 / 480) * 0vw);
    }

    .footer_inner {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 0vw);
    }

    .footer_logo img {
        width: calc((100 / 480) * 200vw);
        object-fit: cover;
        object-position: left top;
    }

    .footer_address {
        width: 100%;
        text-align: center;
        color: #000;
        line-height: 2;
    }

    .footer_address p {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
    }

    .footer_address a {
        font-family: var(--font-jp_b);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
        text-decoration: none;
    }

    .footer_address p:nth-child(3) {
        margin-top: 10px;
    }

    .footer_address a .color {
        transition: all 0.3s ease 0s;
    }

    .footer_address a:hover .color {
        color: var(--blue);
    }

    .footer_address .mgr {
        margin-right: calc((100 / 480) * 20vw);
    }

    .footer_inner2 {
        width: 100%;
        background-color: rgba(0, 0, 0, 0);
        margin-top: calc((100 / 480) * 30vw);
    }

    .footer_nav {
        width: 100%;
    }

    .footer_nav_li {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer_nav_content {
        display: flex;
        justify-content: space-between;
        width: 80%;
    }

    .footer_nav_item {
        cursor: pointer;
    }

    .footer_nav_active a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: var(--menu-color);
        border-left: 2px solid #ff8c00;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 480) * 2vw);
        cursor: auto;
        pointer-events: none;
    }

    .footer_nav_item a {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 12vw);
        color: #000;
        border-left: 2px solid #000;
        padding-top: calc((100 / 480) * 1vw);
        padding-left: calc((100 / 480) * 3vw);
        transition: all 0.3s ease 0s;
    }

    .footer_nav_item a:hover {
        color: var(--menu-color);
        border-color: var(--menu-color);
    }

    .footer_sns ul li {
        width: calc((100 / 480) * 60vw);
        height: calc((100 / 480) * 50vw);
    }

    .footer_copylight {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    .footer_copylight p {
        font-family: var(--font-eng);
        font-size: calc((100 / 480) * 14vw);
        color: #000;
    }

    .footer_copylight img {
        width: calc((100 / 480) * 100vw);
        margin-left: 10px;
    }

}