@charset "utf-8";
header {
    position: relative;
    width: 100%;
    z-index: 10;
    display: flex;
}
#header {
    position: fixed;
    height: 100px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 3.5%;
    padding-bottom: 3.5%;
    background: rgba(250, 250, 250, 0.7);
    /*background: rgba(17, 17, 17, 0.2);*/
}
#header.scrolled {
    background: rgba(250, 204, 20, 0.9);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
#header a.scrolled {
    color: #fff !important;
}
.scroll-info {
    display: none;
    /* 完全に非表示 */
}
#header-logo {
    padding-right: 3%;
}
/*
#header-logo img {
    width: 75%;
}
*/
#header-logo img {
    width: 140px;
    height: auto;
    /* アスペクト比を保持 */
    display: block;
    /* 下の余白を消す */
}
#g-nav {
    text-align: right;
}
#g-nav_left {
    margin-left: auto;
}
#g-nav_right {
    margin-right: auto;
}
@media screen and (max-width:768px) {
    #header-logo {
        text-align: center;
        padding-top: 5px;
        padding-right: 0%;
    }
    #header-logo img {
        width: 150px;
        height: auto;
        /* アスペクト比を保持 */
        display: block;
        /* 下の余白を消す */
    }
    #header {
        position: fixed;
        /*header固定*/
        height: 100px;
        /*Headerの高さ設定*/
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-left: 0%;
        padding-right: 0%;
        padding-top: 2%;
        padding-bottom: 2%;
        background: rgba(250, 250, 250, 0.8);
        /*        background: rgba(1, 47, 94, 0.1);*/
    }
    #g-nav {
        display: none;
    }
    #g-nav_left {
        display: none;
    }
    #g-nav_right {
        display: none;
    }
}
#navi_header {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100px;
    z-index: 9;
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
    color: #fffff !important;
}
#navi_header.logo {
    width: 100%;
}
#navi_header a {
    color: #fffff !important;
}
#navi_header img {
    width: 100%;
}
@media screen and (max-width:768px) {
    header {
        position: relative;
        width: 100%;
    }
    #navi_header {
        position: absolute;
        width: 100%;
        height: auto;
        /*高さ指定*/
        z-index: 9;
        /*下から2番目に表示*/
        display: flex;
        align-items: left;
        color: #fffff !important;
        padding-top: 5%;
        overflow: hidden;
    }
    #navi_header img {
        width: 100%;
    }
}
/*fixedでブロックがなくなるのではじめの要素のトップに余白を持たせる*/
section#area-1 {
    padding-top: 100px;
}
/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#navi_header.UpMove {
    position: fixed;
    width: 100%;
    animation: UpAnime 0.5s forwards;
    z-index: 9;
    /*下から2番目に表示*/
}
@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}
/*　下に下がる動き　*/
#navi_header.DownMove {
    position: fixed;
    width: 100%;
    animation: DownAnime 0.5s forwards;
    z-index: 9;
    /*下から2番目に表示*/
}
@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*========= レイアウトのためのCSS ===============*/
#g-navi {
    padding-left: 35px;
    z-index: 5;
    /*下から2番目に表示*/
}
#g-navi li a {
    color: #111111 !important;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: left;
}
nav ul li a {
    display: block;
    text-decoration: none;
    color: #111111 !important;
    margin: 14px;
    transition: all 0.3s;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    -webkit-letter-spacing: 1.5px;
    -moz-letter-spacing: 1.5px;
    -ms-letter-spacing: 1.5px;
    letter-spacing: 1px;
}
@media screen and (max-width:768px) {
    #g-navi {
        display: none;
    }
    nav ul li a {
        display: none;
    }
    nav ul li a {
        display: none;
        margin: 7px;
    }
}
nav ul li.current a, nav ul li a:hover, nav ul li a:active {
    color: #111111;
}
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#sp-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    width: 100%;
    height: 100vh;
    color: #111111;
}
.circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FACC14;
    opacity: 0.9;
    visibility: visible;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
}
.circle-bg.circleactive {
    transform: scale(50);
}
#sp-nav-list {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#sp-nav.panelactive #sp-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
    z-index: 999;
    /*下から2番目に表示*/
    position: absolute;
}
/*ナビゲーション*/
#sp-nav ul {
    opacity: 1;
    /*はじめは透過0*/
    position: absolute;
    z-index: 9;
    /*下から2番目に表示*/
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
}
#sp-nav.panelactive ul {
    opacity: 1;
    padding: 0;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#sp-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
    color: #111111 !important;
}
@keyframes gnaviAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*リストのレイアウト設定*/
#sp-nav li {
    text-align: center;
    list-style: none;
    display: block !important;
    width: 100%;
    line-height: 1.5em;
}
#sp-nav li a {
    color: #111111 !important;
    text-decoration: none;
    padding: 2px;
    letter-spacing: 0.1em;
    font-weight: bold;
}
#sp-nav li.copylightnavi {
    color: #111111 !important;
    font-size: 9px;
    line-height: 2.9090909091;
    letter-spacing: .1em;
    font-feature-settings: "palt";
    line-height: 20px;
    padding-top: 15%;
}
@media only screen and (max-width: 768px) {
    #sp-nav-list img {
        /*padding-left: 15px;*/
        width: 50%;
    }
    /*ナビゲーション*/
    #sp-nav ul {
        opacity: 0;
        /*はじめは透過0*/
        /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
        position: absolute;
        z-index: 9;
        /*下から2番目に表示*/
        top: 40%;
        left: 35%;
        transform: translate(-30%, -40%);
        display: block;
    }
    #sp-nav li {
        text-align: left;
    }
    #sp-nav li {
        text-align: left;
        list-style: none;
        display: block !important;
        width: 100%;
    }
    #sp-nav li a {
        text-decoration: none;
        letter-spacing: 0.1em;
        font-weight: bold;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        color: #111111 !important;
    }
    #sp-nav li.copylightnavi {
        color: #111111 !important;
        font-size: 10px;
        letter-spacing: .1em;
        font-feature-settings: "palt";
        line-height: 20px;
        padding-top: 15%;
    }
}
/*========= ボタンのためのCSS ===============*/
.sns_icon {
    position: absolute;
    z-index: 1;
    /*ボタンを最前面に*/
    width: 50px;
    height: 50px;
    right: 50px;
    top: 33px;
}
.sns_icon img {
    width: 60%;
}
.openbtn1 {
    position: absolute;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
    right: 10px;
    top: 25px;
    color: #111111 !important;
    display: none;
}
@media screen and (max-width:768px) {
    .sns_icon {
        position: absolute;
        z-index: 1;
        /*ボタンを最前面に*/
        width: 50px;
        height: 50px;
        right: 50px;
    }
    .openbtn1 {
        position: absolute;
        top: 25px;
        padding-top: 1%;
        z-index: 9999;
        /*ボタンを最前面に*/
        cursor: pointer;
        width: 50px;
        height: 50px;
        right: 10px;
        display: block;
    }
}
/*×に変化*/
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    z-index: 9999;
    /*ボタンを最前面に*/
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #111111;
    width: 45%;
    padding-top: 1%;
}
.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: 30%;
    background-color: #111111;
}
.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
    background-color: #111111;
}
.openbtn1.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background-color: #111111;
}
/*== ボタン共通設定 */
.entry_btn {
    position: absolute;
    z-index: 1;
    /*ボタンを最前面に*/
    width: 120px;
    height: 10px;
    right: 15px;
    top: 15px;
}
.btn_entry {
    font-weight: bold;
    position: relative;
    overflow: hidden;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1px solid #222222;
    background-color: #07b53b;
    border-radius: 50%;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.01em;
    transition: ease .2s;
}
@media screen and (max-width: 768px) {
    .btn_entry {
        font-weight: bold;
        position: relative;
        overflow: hidden;
        width: 90px;
        height: 90px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        border: 2px solid #222222;
        background-color: #07b53b;
        border-radius: 50%;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.01em;
        transition: ease .2s;
        line-height: 1em;
    }
}
/*ボタン内spanの形状*/
.btn_entry span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #ffffff;
}
.btn_entry:hover span {
    color: #ffffff;
}
.btn_entry {
    display: flex;
    flex-direction: column;
    /* ← 縦並び */
    align-items: center;
    justify-content: center;
}
/* アイコン */
.dkc_lp_ttl_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    margin: 1px auto 1px;
    /* ← 下に余白 */
    padding-bottom: 0;
}
.dkc_lp_ttl_icon {
    position: relative;
    /* ← 必須 */
    z-index: 3;
    /* ← ::before より前に */
}
/* テキスト */
.btn_entry span {
    position: relative;
    z-index: 3;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
}
/*== 背景が流れる（斜め） */
/*== 背景が流れる（斜め） */
.bgskew::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    background: #FACC14;
    width: 120%;
    height: 100%;
    transform: skewX(-25deg);
    transition: all 0.3s ease;
    /* ← 追加 */
    z-index: 1;
}
/* hover時に流す */
.bgskew:hover::before {
    left: -10%;
    /* ← ここが重要 */
}
@media screen and (max-width: 768px) {
    .btn_entry {
        display: none;
    }
}
/* ==========================================================================
   
   #footer

   ========================================================================== */
#footer {
    background-color: #1e2526;
    color: #888888 !important;
    position: relative;
    z-index: 9;
    padding-top: 7%;
}
#footer a {
    color: #888888;
    text-decoration: none;
}
#footer .footer_logo {
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 9;
}
.footer_logo img {
    width: 15%;
}
#footer .gnavi {
    padding: 0;
    text-align: center;
    margin: 0 auto;
    margin-top: 0%;
    padding-top: 3%;
    padding-bottom: 2%;
}
#footer .gnavi ul {
    width: 100%;
    display: flex;
    justify-content: center;
}
.flex {
    display: flex;
    justify-content: left;
}
#footer .gnavi li {
    float: left;
    position: relative;
    list-style: none;
    display: inline-block;
    letter-spacing: .1em;
    padding-bottom: 1%;
    padding-left: 1%;
    padding-right: 1%;
    color: #888888;
}
#footer .gnavi li a {
    color: #888888;
}
@media screen and (max-width: 768px) {
    #footer {
        position: relative;
        z-index: 9;
        padding-top: 15%;
        text-align: center;
    }
    #footer a {
        color: #fffff;
        text-decoration: none;
    }
    #footer .footer_logo {
        text-align: center;
        position: relative;
        z-index: 9;
    }
    .footer_logo img {
        width: 45%;
    }
    #footer .gnavi {
        margin: 0;
        padding: 0;
        text-align: center;
        padding-top: 0%;
        padding-bottom: 0%;
        overflow: hidden;
        width: 100%;
    }
    #footer .gnavi ul {
        padding-top: 7%;
        padding-bottom: 7%;
        display: block;
    }
    #footer .gnavi li {
        position: relative;
        width: 100%;
        list-style: none;
        display: block !important;
        margin-right: 0%;
        letter-spacing: normal;
        padding-bottom: 1%;
        padding-right: 0%;
    }
}
.footer_contact_box {
    width: 100%;
    margin-top: 0%;
    margin-bottom: 0%;
    padding-top: 3%;
    padding-bottom: 3%;
    text-align: center;
}
.footer_contact_ttl {
    padding-top: 0%;
    padding-bottom: 3%;
    font-size: 13px;
    font-weight: bold;
}
.contact_navi_btnbox {
    margin-top: 1%;
    padding-bottom: 5%;
    display: block;
    width: 100%;
}
.contact_navi_btnbox .btn2 {
    border-radius: 0px;
    display: inline-block;
    padding: 0;
    font-size: 13px;
    text-decoration: none;
    text-align: center;
    padding-top: 7%;
    padding-bottom: 7%;
    padding-right: 5%;
    padding-left: 5%;
    line-height: 1.6em;
    position: relative;
    color: #888888 !important;
    border: #888888 1.5px solid;
    width: 100%;
    margin-bottom: 1%;
    margin-right: 1%;
	
}
.contact_navi_btnbox.btnSmall {
    line-height: 40px;
}
.contact_navi_btnbox .btnSmall:after {
    line-height: 40px;
}
.contact_navi_btnbox .btn2:hover {
    color: #FACC14 !important;
    border: #FACC14 1.5px solid;
}
.contact_navi_btnbox .btn2:after {
    font-family: 'themify';
    content: "\e732";
    font-size: 15px;
    font-style: normal;
    font-weight: bold;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    top: 50%;
    /* ← 中央基準 */
    right: 5%;
    transform: translateY(-50%);
    /* ← 完全中央 */
    z-index: 1;
    transition: all 0.3s;
}
@media screen and (max-width: 738px) {
    .footer_contact_box {
        width: 100%;
        margin-top: 7%;
        margin-bottom: 0%;
        padding-top: 3%;
        padding-bottom: 3%;
        text-align: center;
    }
    .contact_navi_btnbox {
        margin-top: 3%;
        padding-bottom: 3%;
        display: block;
    }
}
.footer_navi_box ul {
    display: flex;
    justify-content: center;
    /* 横方向センター */
    padding: 0;
    margin: 0 auto;
    border-top: 1px solid #555555;
    padding-top: 5%;
    padding-bottom: 5%;
}
.footer_navi_box li {
    float: none;
    /* ← これが重要 */
    list-style: none;
    font-size: 13px;
    letter-spacing: .1em;
    padding-right: 2%;
    color: #888888;
}
@media screen and (max-width: 768px) {
    .footer_navi_box {
        width: 100%;
        margin-top: 0%;
        margin-bottom: 0%;
        padding-top: 0%;
        padding-bottom: 0%;
        display: inline-block;
    }
    .footer_navi_box li {
        float: left;
        position: relative;
        display: block;
        width: 100%;
        font-size: 12px;
        letter-spacing: .1em;
        padding-bottom: 3%;
        padding-right: 0%;
        list-style-type: disc !important;
    }
    .footer_navi_box ul {
        flex-wrap: wrap;
    }
}
.copylight {
    width: 100%;
    text-align: center;
    padding-bottom: 3%;
    padding-top: 3%;
    color: #888888 !important;
}
.copylight p {
    font-size: 12px;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, "sans-serif";
    letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
    .copylight {
        width: 100%;
        text-align: center;
        padding-bottom: 5%;
        padding-top: 13%;
    }
}




/* Animation */

.animation{
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  width: 128px;
}

.keyframe6 {
  animation-name: poyopoyo;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}