@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanjp.min.css);
@import url(https://cdn.jsdelivr.net/npm/yakuhanjp@3.0.0/dist/css/yakuhanmp.min.css);
@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css');
@import url('https://fonts.googleapis.com/css?family=Oswald');
@import url('https://fonts.googleapis.com/css?family=Tajawal:200,300,400,500,700,800,900&amp;subset=arabic');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');

html {
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-family: YakuHanJP, 'Noto Sans Japanese', "Hiragino Sans", "Yu Gothic Medium", sans-serif;
    font-weight: 400;
    line-height: 1.75;
    color: #000;
    position: relative;
    z-index: 0;
    background: #fff;
}

a img {
    border: none;
}

img {
    /*max-width: 100%;*/
    height: auto;
}

a,
a:hover,
a:active {
    text-decoration: none;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

@media screen and (max-width: 640px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 700ms;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 700ms;
}

ul {
    letter-spacing: -.4em;
}

li {
    letter-spacing: normal;
}

/***********************************************************
 * asset
************************************************************/
#contents {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    z-index: 0;
    background: #fff;
    /*padding-top: 30px;*/
}

.container {
    /*max-width: 1920px;*/
    position: relative;
    height: 100%;
}

.container img {
    width: 100%;
}

._inner {
    width: 90%;
    margin: 0 auto;
    position: relative;
}

h2 {
    font-family: 'Roboto', sans-serif;
    letter-spacing: .15em;
    /*color: #fff;*/
    line-height: 1;
}

@media screen and (max-width: 640px) {
    #contents {
        position: relative;
        margin: 0 auto;
        min-height: 100%;
        overflow: hidden;
        /*padding-top: 50px;*/
    }

    .container {
        /* width: 90%; */
        margin-bottom: 0;
        min-width: auto;
    }
}

/*-----------------------------------------
** navigation
-----------------------------------------*/
header {
    padding: 20px;
    /*font-family: 'Roboto', sans-serif;
	position: relative;
	padding: 10px;*/
    position: fixed;
    z-index: 999;
    width: 100%;
    background: #fff;
    box-shadow: 0px 2px 6px -2px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
}

header .inner {
    display: flex;
    align-items: flex-end;
}

.logo {
    width: 111px;
    margin-right: 30px;
}

header ._copy {
    width: auto;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

header ._copy img {
    width: auto;
    height: 100%;
}

header nav {
    margin-right: -16px;
}

header nav ul {
    display: flex;
    align-items: center;

}

header nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 0 .5em;
    position: relative;
    transition: 0.2s all;
}

header nav ul li a:hover {
    color: #fff;
}

header nav ul li a::after {
    content: '';
    background: #000;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.2s all;
    z-index: -1;
}

header nav ul li a:hover::after {
    width: 100%;
}

#main_img {
    max-width: 960px;
    margin: 0 auto;
}

#nav_toggle {
    display: none;
}

.change_btn {
    color: #fff;
    display: block;
    width: 100%;
    text-decoration: none;
    border: 1px solid #000;
    text-align: center;
    padding: 25px 0;
    font-size: 20px;
    margin-top: 40px;
}

/*スマホ・タブレット用の設定*/
@media screen and (max-width:960px) {
    header {
        padding: 10px 0;
    }

    .logo {
        width: 100px;
        margin: 0 auto;
    }

    header ._copy {
        display: none;
    }

    .inner {
        width: 90%;
        margin: 0 auto;
    }

    #main_img {
        width: 100%;
    }

    .change_btn {
        width: 90%;
        margin: 32px auto;
    }

    /*メニュー部分*/
    nav {
        display: none;
        position: absolute;
        top: 50px;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        left: 0;
        z-index: 99;
        font-size: 18px;
    }

    header nav ul {
        display: block;
        margin: 0 auto;
        width: 90%;
    }

    header nav ul li {
        margin: 0 auto;
        text-align: center;
        border-bottom: 1px solid #fff;
        padding: 10px 0;
    }

    header nav ul li:last-child {
        border: none;
    }

    header nav ul li a {
        display: block;
        color: #fff;
    }

    header nav ul li a::after {
        content: none;
    }

    /*header nav ul li a:hover {
		color: #fff;
	}*/

    /*開閉ボタン*/
    #nav_toggle {
        display: block;
        width: 30px;
        height: 25px;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 20px;
        z-index: 100;
        margin: auto;
    }

    #nav_toggle div {
        position: relative;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #000;
        position: absolute;
        width: 100%;
        left: 0;
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
    }

    #nav_toggle span:nth-child(1) {
        top: 0px;
    }

    #nav_toggle span:nth-child(2) {
        top: 10px;
    }

    #nav_toggle span:nth-child(3) {
        top: 20px;
    }

    /*開閉ボタンopen時*/
    .open #nav_toggle span:nth-child(1) {
        top: 12px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }

    .open #nav_toggle span:nth-child(3) {
        top: 12px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
}

/***********************************************************
 * #cont
************************************************************/
#cont {
    background: url("../img/cont-bg.jpg") no-repeat bottom center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    padding: 150px 0;
    color: #000;
}

#cont ._inner {
    max-width: 1080px;
}

#cont h2 {
    font-size: 90px;
    margin-bottom: 75px;
    text-align: center;
}

#cont h2 span {
    color: #e53e8c;
}

@media screen and (max-width: 640px) {
    #cont {
        background: none;
        padding: 50px 0 0;
    }

    #cont:before {
        content: "";
        background: url("../img/cont-bg-sp.jpg") no-repeat bottom center;
        background-size: 100% auto;
        position: fixed;
        z-index: -1;
        width: 100%;
        height: 100%;
    }

    #cont h2 {
        word-break: break-all;
        font-size: 40px;
        margin-bottom: 20px;
        letter-spacing: .05em;
    }
}

/***********************************************************
 * footer
************************************************************/
footer {
    position: relative;
    width: 100%;
    text-align: center;
    padding: 50px 0;
    background: #000;
}

footer ._ttl {
    width: 40%;
    text-align: center;
    display: inline-block;
    max-width: 500px;
    vertical-align: middle;
}

footer ._ttl img {
    width: 100%;
}

._presents {
    width: 75%;
    margin: 0 auto;
}

._titile {
    width: 100%;
    margin: 7% auto 10%;
}

._copyright {
    width: 60%;
    margin: 0 auto;
}

footer ._tw-area {
    width: 40%;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15%;
}

footer ._tw-area h2 {
    font-size: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    color: #e53e8c;
    border-bottom: solid 1px #e53e8c;
    padding-bottom: 10px;
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

footer ._tw-area h2 span {
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    margin: auto;
    height: 18px;
}

._time-line {
    background: #fff;
}

/*footer > div{
	margin: 5% auto 1%;
	width: 60%;
	max-width: 430px;
}
footer > div img{
	width: 100%;
}*/
.policy {
    color: #fff;
    font-size: 8px;
    opacity: 0.8;
    margin-top: 2rem;
}

.policy a {
    color: #fff;
    text-decoration: none;
}

.is-sp {
    display: none;
}

@media screen and (max-width: 640px) {
    footer ._tw-area {
        width: 90%;
        display: block;
        max-width: 90%;
        margin: 0 auto;
    }

    footer ._time-line {
        width: 100%;
        overflow-x: hidden;
        position: relative;
        min-width: 200px;
    }

    footer ._time-line iframe {
        width: 740px !important;
    }

    footer ._ttl {
        width: 90%;
        display: block;
        max-width: 90%;
        margin: 10% auto;
    }

    .policy {
        padding: 0 2rem;
    }

    .is-sp {
        display: initial;
    }
}


/****loading****/
#loading {
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#loading div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 75px;
}

#loading-line path {
    stroke-linecap: butt;
}

/*******************************************************************
 * pageTop
 *******************************************************************/
#page-top {
    width: 88px;
    height: 88px;
    color: #000;
    position: fixed;
    bottom: 30px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
    transition: opacity 1s;
}

#page-top img {
    width: 100%;
}

#page-top:hover {
    opacity: 0.6;
}

@media screen and (max-width: 640px) {
    #page-top {
        width: 60px;
        height: 60px;
    }
}