/**
 * 共通ファイル
 *
 * モバイルファーストで記述
 *

PX    |   vw

10px     2.6666666667vw
11px     2.9333333333vw
12px     3.2vw
13px     3.4666666667vw
14px     3.7333333333vw
15px     4vw
16px     4.2666666667vw
17px     4.5333333333vw
18px     4.8vw
19px     5.0666666667vw
20px     5.3333333333vw
22px     5.8666666667vw
24px     6.4vw
27px     7.2vw
28px     7.46666666667vw
30px     8vw
32px     8.5333333333vw
36px     9.6vw
*/

/* -------------------------------------
                 loading
-------------------------------------- */
.lazyload {
    opacity: 0;
}
.lazyloading {
    opacity: 1;
    transition: opacity .3s;
    background: url(/img/material/grid.svg) no-repeat center center;
    background-size: 60px 60px;
}


/* ──────────────────
              font 設定
─────────────────── */
/* anton-regular - latin */
/* font-family: 'Anton'; */
@font-face {
    font-family: 'Acon';
    font-style: normal;
    font-weight: 400;
    src: url('/font/anton/anton-v9-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Anton Regular'), local('Anton-Regular'),
         url('/font/anton/anton-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('/font/anton/anton-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('/font/anton/anton-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('/font/anton/anton-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('/font/anton/anton-v9-latin-regular.svg#Anton') format('svg'); /* Legacy iOS */
}

/* font converted using font-converter.net. thank you! */
/* font-family: 'Playball-Regular'; */
@font-face {
    font-family: "ball";
    src: url("/font/playball/Playball-Regular.eot"); /* IE9 Compat Modes */
    src: url("/font/playball/Playball-Regular.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
         url("/font/playball/Playball-Regular.otf") format("opentype"), /* Open Type Font */
         url("/font/playball/Playball-Regular.svg") format("svg"), /* Legacy iOS */
         url("/font/playball/Playball-Regular.ttf") format("truetype"), /* Safari, Android, iOS */
         url("/font/playball/Playball-Regular.woff") format("woff"), /* Modern Browsers */
         url("/font/playball/Playball-Regular.woff2") format("woff2"); /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}


/* ──────────────────
              パーツ・部品
─────────────────── */
.flex {
    display: flex;
}
.wrap {
    flex-wrap: wrap;
}
.column {
    flex-direction: column;
}
@media (max-width: 767px) {
    .mobile-column {
        flex-direction: column;
    }
}
.space-between {
    justify-content: space-between;
}


/* -------------------------------------
              パーツ・部品
-------------------------------------- */
.text-center { text-align: center !important }
.text-justify { text-align: justify !important }

@media (max-width: 767px) {
    .sp-none {
        display: none !important;
    }
    .mobile-center {
        text-align: center !important;
    }
    .row {
        padding: 0 1rem;
    }
    .row-all {
        padding: 1rem;
    }
}
@media ( min-width: 768px ) {
    .pc-none {
        display: none !important;
    }
}
.w100 {
    width: 100%;
}

/* -------------------------------------
              パーツ・改行
-------------------------------------- */
/* スマホ */
@media screen and (max-width: 767px){
    .pc-br { display:none; }
    .sp-br { display:block; }
}
/* PC */
@media screen and (min-width: 768px){
    .pc-br { display:block; }
    .sp-br { display:none; }
}

@media( max-width: 767px ){
    .sp10p{ font-size:2.6666666667vw !important}
    .sp11p{ font-size:2.9333333333vw !important}
    .sp12p{ font-size:3.2vw !important}
    .sp13p{ font-size:3.4666666667vw !important}
    .sp14p{ font-size:3.7333333333vw !important}
    .sp15p{ font-size:4vw !important}
    .sp16p{ font-size:4.2666666667vw !important}
    .sp17p{ font-size:4.5333333333vw !important}
    .sp18p{ font-size:4.8vw !important}
    .sp19p{ font-size:5.0666666667vw !important}
    .sp20p{ font-size:5.3333333333vw !important}
    .sp24p{ font-size:6.4vw !important}
    .sp26p{ font-size:6.9333333333vw !important}
    .sp28p{ font-size:7.4666666667vw !important}
    .sp30p{ font-size:8vw !important}
}
@media( min-width: 768px ){
    .pc10p{ font-size:10px !important}
    .pc11p{ font-size:11px !important}
    .pc12p{ font-size:12px !important}
    .pc13p{ font-size:13px !important}
    .pc14p{ font-size:14px !important}
    .pc15p{ font-size:15px !important}
    .pc16p{ font-size:16px !important}
    .pc17p{ font-size:17px !important}
    .pc18p{ font-size:18px !important}
    .pc19p{ font-size:19px !important}
    .pc20p{ font-size:20px !important}
    .pc24p{ font-size:24px !important}
    .pc26p{ font-size:26px !important}
    .pc28p{ font-size:28px !important}
    .pc30p{ font-size:30px !important}
}


/* ──────────────────
        CSSのみで作る矢印 共通部分
─────────────────── */
.icon-arrow{
    position: relative;
    display: inline-block;
    padding: 0 0 0 16px;
    color: inherit;
    vertical-align: middle;
    text-decoration: none;
    font-size: 15px;
}
.icon-arrow::before,
.icon-arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
}


/* ──────────────────
              body html
─────────────────── */
html {
  margin: 0;
  /*scroll-behavior: smooth;*/
  font-size: 6.25%;
}
body {
    margin: 0;
    font-family:"メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-seri;
    line-height:1;
    font-size:16px;
    color: #333;
}
html, body {
    height: 100%;
    min-height: 100%;
}

@media (max-width: 767px){
    body {
        background: rgb(241,98,61);
    }
}


/* ──────────────────
              header
─────────────────── */
/* header */
header {
    position: relative;
    background-color: rgb(243,101,62);
    overflow: hidden;
    height: 100%;
    box-shadow: 0 1px 5px rgba(0,0,0,.5);
}

/* スマホ */
@media (max-width: 767px) {
    .header-common {
        /*height: 90px;*/
        height: 180px;
        /*box-shadow: 0 1px 5px rgba(0,0,0,.35);*/
        background-image: url(/img/material/leaf_left.png),
                          url(/img/material/leaf_right.png),
                          url(/img/material/headertone.png);
        background-repeat: no-repeat;
        background-position: left -5px top -5px, right top, left top -70px;
        /*background-size: 30%, 14%, 946px 710px;*/
        background-size: 50%, 16%, 250px 188px;
        -webkit-animation: leafmove 4s .5s forwards infinite;
                animation: leafmove 4s .5s forwards infinite;
    }
    @-webkit-keyframes leafmove {
          0% { background-position: left -5px top -5px, right top, left top -70px }
         25% { background-position: left -5px top -5px, right -10px top -10px, left top -70px }
         50% { background-position: left top, right top, left top -70px }
        100% { background-position: left -5px top -5px, right top, left top -70px }
    }
    @keyframes leafmove {
          0% { background-position: left -5px top -5px, right top, left top -70px }
         25% { background-position: left -5px top -5px, right -10px top -10px, left top -70px }
         50% { background-position: left top, right top, left top -70px }
        100% { background-position: left -5px top -5px, right top, left top -70px }
    }
}

/* PC */
@media (min-width: 768px) {
    header {
        height: 768px;
        background-image: url(/img/material/leaf_left.png),
                          url(/img/material/leaf_right.png),
                          url(/img/material/headertone.png);
        background-repeat: no-repeat;
        background-position: left -10px top -10px, right top, calc(50% - 360px) top;
        /*background-size: 30%, 265px 533px;*/
        background-size: 30%, 14%, 946px 710px;
        -webkit-animation: leafmove 4s .5s forwards infinite;
        animation: leafmove 4s .5s forwards infinite;
    }
    @-webkit-keyframes leafmove {
          0% { background-position: left -10px top -10px, right top, calc(50% - 360px) top }
         25% { background-position: left -10px top -10px, right -10px top -10px, calc(50% - 360px) top }
         50% { background-position: left top, right top, calc(50% - 360px) top }
        100% { background-position: left -10px top -10px, right top, calc(50% - 360px) top }
    }
    @keyframes leafmove {
          0% { background-position: left -10px top -10px, right top, calc(50% - 360px) top }
         25% { background-position: left -10px top -10px, right -10px top -10px, calc(50% - 360px) top }
         50% { background-position: left top, right top, calc(50% - 360px) top }
        100% { background-position: left -10px top -10px, right top, calc(50% - 360px) top }
    }

    /* ---------------------
            sub page
    ----------------------- */
    .header-common {
        height: 240px;
        box-shadow: 0 2px 6px rgba(0,0,0,.35);
    }
}

/* iPad縦 ～ */
@media(min-width:768px) and (max-width: 990px){
    header {
        height: 550px;
    }
}
/* iPad縦 ～ */
@media(min-width:991px) and (max-width: 1160px){
    header {
        height: 670px;
    }
}



/* --------------------------
          title & navi
---------------------------- */
.header-block {
    position: absolute;
    top: 12px;
    z-index: 5;
    width: 100%;
}
/* title */
.header-title {
    float: left;
}
.header-title h1 {
    margin-left: 12px;
    padding-top: 2px;
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Acon';
    text-shadow: 3px 3px 0 rgba(0,0,0,.3);
    font-weight: normal;
}
.header-title h1 span {
    display: block;
    font-size: 13px;
    color: rgb(220,248,0);
    text-shadow: none;
}

/* PC */
@media ( min-width: 768px ) {
    .header-block {
        top: 50px;
        left: calc(50% - 580px);
        max-width: 1160px;
    }
    .header-title h1 {
        margin-left: 0;
        padding-top: 6px;
        font-size: 64px;
    }
    .header-title h1 span {
        margin-top: 6px;
        font-size: 16px;
    }
}
/* 調整 */
@media (min-width:768px) and (max-width:1160px){
    .header-block {
        left: 0;
    }
}
@media (min-width:768px) and (max-width:900px){
    .header-title h1 {
        padding-top: 5px;
        font-size: 60px;
    }
}



/* menu navi */
.header-navi {
    float: right;
}
.header-menubox {
    margin-right: 12px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: 1px solid #111;
    text-align: center;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.header-menubox-tel {
    margin-right: 12px;
}
.header-menubox-icon {
    padding-top: 10px;
    width: 30px;
    height: 28px; /* 5 + 5 + (8-5) = 13  調整 4@下マージン分 + 9@上padding */
}
.header-menubox span {
    font-size: 7px;
    font-weight: bold;
    
}
a.header-navi-tel {
    margin-right: 12px;
    display: block;
    width: 56px;
    height: 100%;
}
a > .header-menubox span {
    color: #333;
}


/* PC */
@media(min-width:768px){
    /* menu */
    .header-menu {
        margin-top: 6px;
        padding: 0 20px;
        background: rgba(255,255,255,.85);
        border-radius: 5px;
    }
    .header-menu ul {
        justify-content: center;
        align-items: center;
        height: 70px;
    }
    .header-menu ul li {
        padding: 20px 18px;
        font-size: 14px;

        position: relative;
    }

    /* メニューアニメーション */
    .header-menu a {
        color: #333;
        font-weight: bold;
        position: relative;
        display: inline-block;
        transition: .3s;
    }

    .header-menu a::after {
        position: absolute;
        bottom: -5px;
        left: 50%;
        content: '';
        width: 0;
        height: 1px;
        background-color: rgb(255,75,0);
        transition: .3s;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .header-menu a:hover {
        color: rgb(255,75,0);
    }
    .header-menu a:hover::after {
        width: 100%;
    }

    /* NEWアイコン */
    .header-menu ul li span {
        position: absolute;
        top: -15px;
        right: 0;
        background: rgb(255,255,0);
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        font-family: Acon;
        font-size: 12px;
        text-align: center;
        font-weight: normal;
        /*color: red;*/
    }
}

/* 調整 */
/* ipad 縦 */
@media(min-width:768px) and (max-width: 990px){
    .header-block {
        padding: 0 10px;
    }
    .header-menu {
        margin-top: 4px;
        padding: 0 10px;
    }
    .header-menu ul {
        height: 60px;
    }
    .header-menu ul li {
        padding: 5px;
        font-size: 12px;
    }
    /* NEWアイコン */
    .header-menu ul li span {
        top: -30px;
    }
}
@media(min-width:991px) and (max-width: 1080px){
    .header-block {
        padding: 0 20px;
    }
    .header-menu ul li {
        padding: 12px 10px;
    }
    /* NEWアイコン */
    .header-menu ul li span {
        top: -25px;
    }
}
@media(min-width:1081px) and (max-width: 1159px){
    .header-block {
        padding: 0 20px;
    }
    .header-menu ul li {
        padding: 16px;
    }
}




/* --------------------
        アイコン
---------------------- */
/* 三本メニュー */
.gg-menu {
    transform: scale(var(--ggs,1))
}
.gg-menu, .gg-menu::after, .gg-menu::before {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 30px;
    height: 5px;
    border-radius: 4px;
    background: currentColor;
    color: #000;
}
.gg-menu::after, .gg-menu::before {
    content: "";
    position: absolute;
    top: -8px
}
.gg-menu::after {
    top: 8px
}
/* 電話 */
.header-tel-img {
    height: 25px;
    margin-bottom: 4px;
}


/* スマホ */
@media(max-width:767px){
    /* --------------------------
          PC  営業時間＆TEL
    ---------------------------- */
    .header-openbox {
        position: absolute;
        bottom: 38px;
        right: 12px;
        color: #fff;
        font-weight: bold;
        font-size: 13px;
        z-index: 5;
        width: 100%;
    }
    .header-openbox-contents {
        justify-content: flex-end;
    }
    .header-openbox_commonicon {
        margin-bottom: 10px;
        text-shadow: 1px 1px 0 rgba(0,0,0,.3);
    }
    .header-openbox_commonicon::before {
        content: '';
        width: 16px;
        height: 16px;
        display: inline-block;
        margin-right: 2px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 16px 16px;
        position: relative;
        top: 3px;
    }
    .header-openbox_opentime {
        margin-right: 10px;
    }
    .header-openbox_opentime::before {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTIgMmM1LjUxNCAwIDEwIDQuNDg2IDEwIDEwcy00LjQ4NiAxMC0xMCAxMC0xMC00LjQ4Ni0xMC0xMCA0LjQ4Ni0xMCAxMC0xMHptMC0yYy02LjYyNyAwLTEyIDUuMzczLTEyIDEyczUuMzczIDEyIDEyIDEyIDEyLTUuMzczIDEyLTEyLTUuMzczLTEyLTEyLTEyem0xIDEydi02aC0ydjhoN3YtMmgtNXoiLz48L3N2Zz4NCg==);
    }
    .header-openbox_tel::before {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQuODkgMjMuNjU0Yy03LjM2NyAzLjM2Ny0xOC44MDItMTguODYtMTEuNjAxLTIyLjYxNWwyLjEwNy0xLjAzOSAzLjQ5MiA2LjgxNy0yLjA4MiAxLjAyNmMtMi4xODkgMS4xNzQgMi4zNyAxMC4wOCA0LjYwOSA4Ljk5NC4wOTEtLjA0MSAyLjA1Ny0xLjAwNyAyLjA2NC0xLjAxMWwzLjUyMSA2Ljc5NWMtLjAwOC4wMDQtMS45ODkuOTc4LTIuMTEgMS4wMzN6bS0xLjUzOC0xMy40MDlsMi45MTcuODdjLjIyMy0uNzQ3LjE2LTEuNTc5LS4yNC0yLjMxNy0uMzk5LS43MzktMS4wNjItMS4yNDctMS44MDgtMS40NjlsLS44NjkgMi45MTZ6bTEuODA0LTYuMDU4YzEuNTUxLjQ2MiAyLjkyNiAxLjUxNiAzLjc1NiAzLjA1MS44MzEgMS41MzYuOTYgMy4yNjMuNDk4IDQuODEzbC0xLjc5NS0uNTM1Yy4zMjUtMS4wOTEuMjMzLTIuMzA2LS4zNTItMy4zODctLjU4My0xLjA4MS0xLjU1MS0xLjgyMi0yLjY0My0yLjE0NmwuNTM2LTEuNzk2em0uOTUtMy4xODdjMi4zNjUuNzA1IDQuNDYzIDIuMzEyIDUuNzI5IDQuNjU2IDEuMjY5IDIuMzQzIDEuNDY2IDQuOTc4Ljc2MSA3LjM0NGwtMS44NC0uNTQ4Yy41NjQtMS44OTUuNDA2LTQuMDA2LS42MDgtNS44ODItMS4wMTYtMS44NzctMi42OTYtMy4xNjUtNC41OTEtMy43MjlsLjU0OS0xLjg0MXoiLz48L3N2Zz4NCg==);
    }


    /* --------------------------
                DX 文言
    ---------------------------- */
    .header-herocmt {
        position: absolute;
        top: 87px;
        /*top: 0;*/
        /*left: 80px;*/
        left: 12px;
        width: 100%;
        z-index: 5;
    }
    .header-herocmt_icon span {
        display: inline-block;
        font-size: 13px;
        color: #f3653e;
        font-weight: bold;
        padding: 3px 6px;
        background: rgba(255,255,255,.9);
        margin-right: 5px;
    }

    /* --------------------------
                ティッカー
    ---------------------------- */
    .header-ticker-wrap {
        position: absolute;
        bottom: 0;
        height: 40px;
        background: rgb(200,0,32);
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
        z-index: 10;
    }

    /* 速報 */
    .header-ticker-inner {
        position: relative;
    }
    .header-ticker-title {
        position: absolute;
        top: -15px;
        left: 5px;
        width: 60px;
        height: 60px;
        border-radius: 5%;
        background: rgb(255,223,0);
        z-index: 1;
        font-weight: 600;
        /*font-size: 16px;*/
        font-size: 20px;
        text-align: center;

        box-shadow: inset 0 1px 0 rgba(255,255,255,.75),inset 0 0 8px 5px rgba(0,0,0,.1),0 0 2px 1px rgba(0,0,0,.5);
        text-shadow: 1px 1px 1px rgba(255,255,255,.8);
    }
    .header-ticker-title-text {
        /* 縦書き */
        margin: 7px 0 0 21px;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl; 
    }
    .header-tickerbody {
        width : 100%;
        overflow : hidden;
    }
    .header-tickerbody p{
        color: #fff;
        font-weight: bold;
        line-height : 40px;

        display : inline-block;
        padding-left: 100%;
        white-space : nowrap;
        -webkit-animation : scrolltxt 40s linear infinite;
        animation : scrolltxt 40s linear infinite;
    }
}

/* アニメーション共通 */
@-webkit-keyframes scrolltxt{
    0% { transform: translateX(0)}
    100% { transform: translateX(-100%)}
}
@keyframes scrolltxt{
    0% { transform: translateX(0)}
    100% { transform: translateX(-100%)}
}

/* PC */
@media (min-width: 768px ) {
    /* --------------------------
               言語設定
    ---------------------------- */
    .header-langagebox {
        position: absolute;
        top: 16px;
        left: calc(50% - 580px);
        width: 1160px;
        text-align: right;
        padding-right: 12px;
        font-size: 14px;
        z-index: 5;
        color: #fff;
    }
    .header-langagebox span {
        display: inline-block;
        margin-right: 24px;
    }
    .header-langagebox a {
        color: #fff;
    }

    /* ▶アイコン */
    .la-arrow-right::before {
        left: 2px;
        box-sizing: border-box;
        width: 5px;
        height: 5px;
        border: 5px solid transparent;
        border-left: 6px solid #fff;
        transition: all .3s;
    }
    .la-arrow-right:hover::before {
        left: 4px;
    }

    /* 英語 */
    .usa::before {
        content: "";
        width: 24px;
        height: 16px;
        display: inline-block;
        background: url(/img/material/icon-country-usa.svg) no-repeat left top;
        background-size: 24px 16px;
        margin-right: 0px;
        position: relative;
        top: 4px;
    }


    /* --------------------------
          PC  営業時間＆TEL
    ---------------------------- */
    .header-openbox {
        position: absolute;
        top: 150px;
        /*left: calc(50% + 210px);*/
        color: #fff;
        font-weight: bold;
        font-size: 21px;
        z-index: 5;
        width: 100%;
    }
    .header-openbox-contents {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 36px;
        justify-content: flex-end;
    }

    .header-openbox_commonicon {
        margin-bottom: 12px;
        text-shadow: 1px 1px 0 rgba(0,0,0,.3);
    }
    .header-openbox_commonicon::before {
        content: '';
        width: 24px;
        height: 24px;
        display: inline-block;
        margin-right: 12px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 24px 24px;
        position: relative;
        top: 4px;
    }
    .header-openbox_opentime {
        margin-right: 46px;
    }
    .header-openbox_opentime::before {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTIgMmM1LjUxNCAwIDEwIDQuNDg2IDEwIDEwcy00LjQ4NiAxMC0xMCAxMC0xMC00LjQ4Ni0xMC0xMCA0LjQ4Ni0xMCAxMC0xMHptMC0yYy02LjYyNyAwLTEyIDUuMzczLTEyIDEyczUuMzczIDEyIDEyIDEyIDEyLTUuMzczIDEyLTEyLTUuMzczLTEyLTEyLTEyem0xIDEydi02aC0ydjhoN3YtMmgtNXoiLz48L3N2Zz4NCg==);
        /*
        background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23ffffff" d="M12 2c5.514 0 10 4.486 10 10s-4.486 10-10 10-10-4.486-10-10 4.486-10 10-10zm0-2c-6.627 0-12 5.373-12 12s5.373 12 12 12 12-5.373 12-12-5.373-12-12-12zm1 12v-6h-2v8h7v-2h-5z"/></svg>');
        */
    }
    .header-openbox_tel::before {
        background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZmIiBkPSJNMTQuODkgMjMuNjU0Yy03LjM2NyAzLjM2Ny0xOC44MDItMTguODYtMTEuNjAxLTIyLjYxNWwyLjEwNy0xLjAzOSAzLjQ5MiA2LjgxNy0yLjA4MiAxLjAyNmMtMi4xODkgMS4xNzQgMi4zNyAxMC4wOCA0LjYwOSA4Ljk5NC4wOTEtLjA0MSAyLjA1Ny0xLjAwNyAyLjA2NC0xLjAxMWwzLjUyMSA2Ljc5NWMtLjAwOC4wMDQtMS45ODkuOTc4LTIuMTEgMS4wMzN6bS0xLjUzOC0xMy40MDlsMi45MTcuODdjLjIyMy0uNzQ3LjE2LTEuNTc5LS4yNC0yLjMxNy0uMzk5LS43MzktMS4wNjItMS4yNDctMS44MDgtMS40NjlsLS44NjkgMi45MTZ6bTEuODA0LTYuMDU4YzEuNTUxLjQ2MiAyLjkyNiAxLjUxNiAzLjc1NiAzLjA1MS44MzEgMS41MzYuOTYgMy4yNjMuNDk4IDQuODEzbC0xLjc5NS0uNTM1Yy4zMjUtMS4wOTEuMjMzLTIuMzA2LS4zNTItMy4zODctLjU4My0xLjA4MS0xLjU1MS0xLjgyMi0yLjY0My0yLjE0NmwuNTM2LTEuNzk2em0uOTUtMy4xODdjMi4zNjUuNzA1IDQuNDYzIDIuMzEyIDUuNzI5IDQuNjU2IDEuMjY5IDIuMzQzIDEuNDY2IDQuOTc4Ljc2MSA3LjM0NGwtMS44NC0uNTQ4Yy41NjQtMS44OTUuNDA2LTQuMDA2LS42MDgtNS44ODItMS4wMTYtMS44NzctMi42OTYtMy4xNjUtNC41OTEtMy43MjlsLjU0OS0xLjg0MXoiLz48L3N2Zz4NCg==);
    }


    /* --------------------------
            ヒーロー文言
    ---------------------------- */
    .header-herocmt {
        position: absolute;
        top: 280px;
        left: calc(50% + 50px);
        width: 550px;
        z-index: 5;
    }
    .header-herocmt_main {
        font-size: 46px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 16px;
        position: relative;
    }
    .header-herocmt_main::before {
        position: absolute;
        top: -30px;
        left: -80px;
        content: "";
        background: url(/img/material/top_icon1.png) no-repeat left top / 100% 100%;
        width: 57px;
        height: 82px;
    }
    .header-herocmt_main::after {
        position: absolute;
        bottom: 0px;
        right: -30px;
        content: "";
        background: url(/img/material/top_icon2.png) no-repeat left top / 100% 100%;
        width: 57px;
        height: 82px;
    }
    .header-herocmt_icon span {
        display: inline-block;
        font-size: 24px;
        color: #f3653e;
        font-weight: bold;
        padding: 10px 10px 8px;
        background: #fff;
        border-radius: 5px;
        margin-right: 10px;
    }


    /* --------------------------
            PC   ティッカー
    ---------------------------- */
    .header-ticker-wrap {
        position: absolute;
        bottom: 0;
        height: 40px;
        background: rgb(200,0,32);
        width: 100%;
        border-top: 1px solid rgba(0,0,0,.1);
        z-index: 10;
    }

    /* 速報 */
    .header-ticker-inner {
        position: relative;
        max-width: 1160px;
        margin: 0 auto;
    }
    .header-ticker-title {
        position: absolute;
        top: -15px;
        left: 5px;
        width: 60px;
        height: 60px;
        border-radius: 5%;
        background: rgb(255,223,0);
        z-index: 1;
        font-weight: 600;
        /*font-size: 16px;*/
        font-size: 20px;
        text-align: center;

        box-shadow: inset 0 1px 0 rgba(255,255,255,.75),inset 0 0 8px 5px rgba(0,0,0,.1),0 0 2px 1px rgba(0,0,0,.5);
        text-shadow: 1px 1px 1px rgba(255,255,255,.8);
    }
    /* 絵文字反転 */
    .header-ticker-title span {
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        display: inline-block;
        margin: 0 2px;
    }

    .header-ticker-title-text {
        /* 縦書き */
        margin: 7px 0 0 21px;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl; 
    }

    .header-tickerbody {
        width : 100%;
        overflow : hidden;
    }
    .header-tickerbody p{
        color: #fff;
        font-weight: bold;
        line-height : 40px;

        display : inline-block;
        padding-left: 100%;
        white-space : nowrap;
        -webkit-animation : scrolltxt 50s linear infinite;
        animation : scrolltxt 50s linear infinite;
    }
}

/* iPad縦 ～ */
@media(min-width:768px) and (max-width: 990px){
    .header-openbox {
        top: 120px;
        font-size: 16px;
    }

    /* --------------------------
            ヒーロー文言
    ---------------------------- */
    .header-herocmt {
        top: 200px;
    }
    .header-herocmt_main {
        font-size: 26px;
    }
    .header-herocmt_main::before {
        top: -15px;
        left: -40px;
        width: 28px;
        height: 41px;
    }
    .header-herocmt_main::after {
        bottom: 10px;
        left: 295px;
        width: 28px;
        height: 41px;
    }
    .header-herocmt_icon span {
        font-size: 13px;
        margin-right: 6px;
    }
}


/* iPad横 ～ */
@media(min-width:991px) and (max-width: 1160px){
    .header-openbox {
        top: 140px;
        font-size: 20px;
    }

    /* --------------------------
            ヒーロー文言
    ---------------------------- */
    .header-herocmt {
        top: 210px;
        left: calc(50% + 20px);
        max-width: 550px;
    }
    .header-herocmt_main {
        font-size: 36px;
    }
    .header-herocmt_main::before {
        top: -10px;
        left: -45px;
        width: 28px;
        height: 41px;
    }
    .header-herocmt_main::after {
        bottom: 10px;
        left: 410px;
        width: 28px;
        height: 41px;
    }
    .header-herocmt_icon span {
        font-size: 20px;
        padding: 10px 10px 8px;
        margin-right: 8px;
    }
}












@media(min-width:768px) and (max-width: 1160px){
    .header-langagebox {
        left: 0;
        width: 100%;
        text-align: right;
    }
}


/* --------------------------
         PC TOP Girl
---------------------------- */
@media (min-width: 768px) {
    .header-girl {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 2;
        background-position: calc(50% - 300px) 180px;
        background-repeat: no-repeat;
        -webkit-animation: girlzoomin 1s ease 0s normal forwards infinite;
        animation: girlzoomin 1s ease 0s normal forwards;
        opacity: 0;
    }
    @keyframes girlzoomin {
        0% { 
            background-position: calc(50% - 300px) 180px;
            opacity: 0;
        }
        100% { 
            background-position: calc(50% - 350px) 180px; 
            opacity: 1;
        }
    }
}
/* iPad縦 */
@media(min-width:768px) and (max-width: 990px){
    .header-girl {
        background-position: calc(50% - 130px) 180px;
        background-size: 400px 365px;
    }
    @keyframes girlzoomin {
        0% { 
            background-position: calc(50% - 130px) 180px;
            opacity: 0;
        }
        100% { 
            background-position: calc(50% - 180px) 180px; 
            opacity: 1;
        }
    }
}
/* iPad横 */
@media(min-width:991px) and (max-width: 1160px){
    .header-girl {
        background-position: calc(50% - 220px) 200px;
        background-size: 482px 440px;
    }
    @keyframes girlzoomin {
        0% { 
            background-position: calc(50% - 220px) 200px;
            opacity: 0;
        }
        100% { 
            background-position: calc(50% - 270px) 200px; 
            opacity: 1;
        }
    }
}







/* --------------------------
     flex slider 表示前設定
---------------------------- */
.background-image{
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
    -webkit-filter: blur(3px);
    filter: blur(3px);
}


/* --------------------------
          flex slider
---------------------------- */
.flexslider-container, 
.flexslider .slides, 
.flex-viewport {
    height: 100%;
}
.flexslider .slides > li { 
    background-position: center;
    height: 100%;
    width: 100%;
    display: none; 
    -webkit-backface-visibility: hidden;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.flexslider {
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    border: 0px; 
    overflow: hidden;
}
/**/
.background-img {
    width: 100%;
    height: 100%;
}
.background-img {
    background-attachment: scroll;
    background-clip: border-box;
    background-color: #151514;
    background-image: none;
    background-origin: padding-box;
    background-position: 50% 50% !important;
    background-repeat: repeat;
    background-size: cover !important;
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.zoom {
    -webkit-animation: zoom 15s ease 0s normal both infinite;
    animation: zoom 15s ease 0s normal both infinite;
}
@keyframes zoom {
      0% { transform: scale(1, 1); }
     50% { transform: scale(1.05, 1.05); }
    100% { transform: scale(1, 1); }
}


/* --------------------------
             typed
---------------------------- */
.header-newstxt-wrapper {
    position: absolute;
    bottom: 50px;
    z-index: 5;
    margin: 0 20px;
}

.header-newstxt {
    background: rgba(0,0,0,.75);
    border-radius: 10px;
    padding: 10px 10px 10px 16px;
    display: inline-block;
}
.header-newstxt p, .header-newstxt span {
    color: #fff;
    line-height: 1.6;
}

.header-newstxt-typetitle {
    color: yellow;
}
.header-newstxt-typedate {
    color: red;
}
#typed-strings p {
    display: none;
}
/* PC */
@media (min-width: 768px) {
    .header-newstxt-wrapper {
        max-width: 500px;
        left: calc(50% + 30px);
        bottom: 80px;
        line-height: 1.8;
        height: 150px; /* コンテンツ量でスクロールが上下にぶれるのをふせぐ */
    }
    .header-newstxt p, .header-newstxt span {
        font-size: 20px;
    }
}
/* iPad縦 ～ */
@media(min-width:768px) and (max-width: 990px){
    .header-newstxt-wrapper {
        bottom: 40px;
    }
    .header-newstxt p, .header-newstxt span {
        font-size: 15px;
    }
}
/* iPad縦 ～ */
@media(min-width:991px) and (max-width: 1160px){
    .header-newstxt-wrapper {
        max-width: 430px;
        left: calc(50% - 0px);
        bottom: 100px;
    }
    .header-newstxt p, .header-newstxt span {
        /*font-size: 15px;*/
    }
}


/* --------------------------
             arrow
---------------------------- */
.header-arrows {
    position: absolute;
    bottom: 10px;
    left: calc(50% + 4px);
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    z-index: 5;
}
.header-arrows:before,
.header-arrows:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-left: 5px solid rgba(0, 0, 0, 0.7);
  border-bottom: 5px solid rgba(0, 0, 0, 0.7);
}
.header-arrows:before {
  transform: translate(5px, 106.6666666667px) rotate(-45deg);
  animation: arrows 3s linear infinite;
}
.header-arrows:after {
  transform: translate(20px, 0px) rotate(-45deg);
  animation: arrows 3s linear infinite -1.5s;
}
@keyframes arrows {
  0% {
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0);
    transform: translate(-8px, -20px) rotate(-45deg);
  }
  10%, 90% {
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0);
  }
  50% {
    border-left: 5px solid rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid rgba(0, 0, 0, 0.5);
    transform: translate(-8px, 0px) rotate(-45deg);
  }
  100% {
    border-left: 5px solid rgba(0, 0, 0, 0);
    border-bottom: 5px solid rgba(0, 0, 0, 0);
    transform: translate(-8px, 20px) rotate(-45deg);
  }
}
/* PC */
@media (min-width: 768px) {
    header .header-arrows {
        display: none;
    }
}



/* -------------------------------------
               ブロック共通
----------------------------------------*/
/* SP */
@media (max-width: 767px) {
    .wrapper-common {
        /*
        background-color: #f9fbfc;
        */
        /*
        background-image: url(/img/material/newsbackl.png),
                          url(/img/material/newsbackr.png);
        background-position: left top,right top;
        background-repeat: no-repeat;
        background-size: 40%;
        */
        /*border-top: 1px solid #ccd6dd;*/
        padding-top: 1rem;
    }
}
/* PC */
@media (min-width: 768px){
    .wrapper-common {
        padding: 50px 0 0;
        background: url(/img/material/newsbackl.png) no-repeat left top,
                    url(/img/material/newsbackr.png) no-repeat right top,
                    -webkit-linear-gradient(top,  #f9fbfc 0%,#ffffff 100%),
                    linear-gradient(to bottom,  #f9fbfc 0%,#ffffff 100%);
        background-blend-mode: multiply;
        border-top: 1px solid #ccd6dd;
    }
}
/* PC調整分 */
@media(min-width:768px) and (max-width: 1024px) {
    .wrapper-common {
        background: url(/img/material/newsbackl.png) no-repeat left top / 300px 399px,
                    url(/img/material/newsbackr.png) no-repeat right top / 300px 399px,
                    -webkit-linear-gradient(top,  #f9fbfc 0%,#ffffff 100%),
                    linear-gradient(to bottom,  #f9fbfc 0%,#ffffff 100%);
    }
}





/* ──────────────────
    グローバルメニュー スマホ専用
─────────────────── */
.gmenu {
    font-family: 'Acon';
    font-size: 4vw; /* 16px */
    background: rgb(0,157,129) url(/img/material/boxback.png);
    background-size: 60%;
    box-shadow: 0 -5px 4px -4px rgba(0,0,0,.5) inset;
}
.gmenu strong {
    display: block;
}

.gmenu li {
    text-align: center;
    width: 20%;
    text-shadow: 1px 1px 0 rgba(0,0,0,.85);
}
.gmenu li:nth-child(5n) {
    margin-right: 0;
}

.gmenu li strong {
    margin-top: 6px;
    font-size: 2.93333333333vw;  /* 11px */
    color: #fff;
}
.gmenu li a {
    padding: 10px 0;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: #d0ea2b;
    background: rgba(0,0,0,.15);
}
.gmenu li a.select {
    color: rgb(254,231,0);
    font-size: 110%;
}

/* NEW ICON */
.gmenu li a span {
    position: absolute;
    top: -7px;
    right: 8px;
    color: #fff;
    z-index: 10;
    font-size: 10px;
    font-weight: 900;
    background: red;
    width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-seri;
    text-shadow: none;
}
.gmenu li a span.s {
    right: 2px;
}




/* ──────────────────
                 page top
─────────────────── */
.pagetop {
    background: #333;
    height: 25px;
    line-height: 25px;
}
.pagetop a {
    display: block;
    width: 100%;
    color: #ccc;
    font-size: 12px;
    transition: .3s;
}
.pagetop a:hover {
    background: #d0ea2b;
    color: #333;
}


/* ──────────────────
                 footer
─────────────────── */
footer {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255,255,255,.1);
    background: rgb(241,98,61);
    color: #fff;
}
footer h5 {
    margin-bottom: 8px;
    padding:0 0 8px;
    font-family: 'Acon';
    color: #d0ea2b;
    font-size: 6.4vw;
    font-weight: normal;
    border-bottom: 1px solid rgba(255,255,255,.5);
}
footer h5 span {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    margin-left: 1rem;
}

/* TELボタン */
.footer-telbtn {
    margin: 0 20px 30px;
}
.footer-telbtn a {
    display: block;
    width: 100%;
    padding: 8px 0;
    background: #fff url(/img/material/icon-phone.svg) no-repeat left 20px center;
    background-size: 24px 24px;
    border-radius: 5px;
    color: rgb(241,98,61);
    font-weight: bold;
    font-size: 6.4vw;
    text-indent: 60px;
}

/* コンテナー */
.fooer-container > section {
    padding:0 20px;
    margin-bottom: 20px;
}
.footer-common-box {
    margin: 0 0 10px;
    line-height: 1.4;
    display: flex;
    flex-wrap: wrap;
}
.copyright {
    padding-bottom: 16px;
}

/* sns */
.sns-box {
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
    margin: 10px 0;
    padding: 8px 24px;
}
.sns-box > ul li {
    margin-right: 24px;
}
.sns-box svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}


/* menu */
.footer-menu a {
    padding: 10px 0;
    margin: 0 5px 5px 0;
    color: #eee;
    display: inline-block;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 5px;
    font-size: 13px;
    text-align: center;
    /* 2gap ✕ 5px / 3個 =  */
    max-width: calc(33.33333% - 3.333333333px);
    flex-basis: calc(33.33333% - 3.333333333px);
}
.footer-menu a:last-child {
    margin-right: 0;
}
.footer-menu a:nth-child(3n) {
    margin-right: 0;
}

/* クレジット */
.footer-credit {
    margin: 1em 0 0;
}
.footer-credit img {
    width: 60%;
    border-radius:5px;
}

/* -------------------------
        スマホオンリー
-------------------------- */
@media (max-width: 767px) {
    .fooer-container {
        flex-direction: column-reverse;
    }
}

/* -------------------------
            PC
-------------------------- */
@media (min-width: 768px) {
    footer {
        padding: 48px 0 0;
    }
    footer h5 {
        margin-bottom: 16px;
        font-size: 30px;
    }
    footer h5 span {
        margin-left: 10px;
    }
    .fooer-container {
        margin: 0 auto;
        max-width: 1160px;
    }
    .fooer-container > section {
        padding: 0;
        margin-right: 48px;
        /* 2gap ✕ 48px / 3個 =  32*/
        max-width: calc(33.3333333333% - 32px);
        flex-basis: calc(33.3333333333% - 32px);
    }
    .fooer-container > section:last-child {
        margin-right: 0;
    }

    .footer-common-box {
        margin: 0;
        line-height: 1.6;
    }
    .copyright {
        margin-top: 16px;
        line-height: 1.6;
    }

    /* menu */
    .footer-menu a {
        padding: 8px 0;
        font-size: 12px;
        background: rgba(255,255,255,.1);
    }
    .footer-menu a:hover {
        border: 1px solid #fff;
    }

    /* sns */
    .sns-box {
        margin: 10px 0 0 0;
    }
}

/* PC */
@media(min-width:768px) and (max-width: 1159px) {
    .fooer-container {
        padding: 0 20px;
    }
}
