@charset "UTF-8";
body {
    font-size: 1.6rem;
    font-family: "游ゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 1.2rem;
    }
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

@media screen and (max-width: 768px) {
    body.fixed {
        position: inherit !important;
        width: inherit !important;
        height: inherit !important;
        left: inherit !important;
    }
}

.res-pc {
    display: block !important;
}

.res-sp {
    display: none !important;
}

.inner-01 {
    max-width: 960px;
    width: 90%;
    margin: auto;
}

.inner-02 {
    max-width: 1200px;
    width: 90%;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .res-pc {
        display: none !important;
    }
    .res-sp {
        display: block !important;
    }
}

.mt8 {
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .mt8 {
        margin-top: 4px;
    }
}

.mt16 {
    margin-top: 16px;
}

@media screen and (max-width: 768px) {
    .mt16 {
        margin-top: 8px;
    }
}

.mt24 {
    margin-top: 24px;
}

@media screen and (max-width: 768px) {
    .mt24 {
        margin-top: 16px;
    }
}

.mt40 {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .mt40 {
        margin-top: 24px;
    }
}

.bold {
    font-weight: bold;
}

.mauto {
    margin: 0 auto;
    display: inline-block;
}

.tx_white {
    color: #fff;
}

a {
    cursor: pointer;
}

small {
    font-size: 12px;
}

@media screen and (max-width: 768px) {
    small {
        font-size: 10px;
        line-height: 1;
    }
}

.opacity08 {
    opacity: 0.8;
}


/*---------------------------------------------------------
contents
---------------------------------------------------------*/

.bgimg {
    position: relative;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    /*アニメーションがゆっくり開始される*/
}

.dark {
    background: rgba(0, 0, 0, 0.8);
}

.bgimg::before {
    background: url(../lib/cmn_img/mvimg@2x.jpg) no-repeat center;
    /* 画像（ここにfixedは入れない） */
    background-size: cover;
    /* cover指定できる */
    content: "";
    display: block;
    position: fixed;
    /* 擬似要素ごと固定 */
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    /* 横幅いっぱい */
    height: 100vh;
    /* 縦幅いっぱい */
}

@media screen and (max-width: 768px) {
    .bgimg::before {
        background: url(../lib/cmn_img/spmv@2x.jpg) no-repeat center;
        background-size: cover;
    }
}

.mv_area {
    height: 100vh;
    position: relative;
}

.mv_area .mv_inner {
    max-width: 600px;
    position: absolute;
    bottom: 120px;
    left: 8%;
}

.mv_area .mv_inner .mv_box .mv_txt {
    width: 100%;
    vertical-align: middle;
}

@media screen and (max-width: 768px) {
    .mv_area .mv_inner {
        max-width: inherit;
        margin: 0 auto;
        width: 80%;
        bottom: 20%;
        left: 12%;
    }
    h1.res-sp img {
        width: 64px;
    }
}


/*====== 9-1-1 縦線が動いてスクロールを促す =======*/


/*スクロールダウン全体の場所*/

.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 9%;
    bottom: 40px;
    /*全体の高さ*/
    height: 50px;
}

@media screen and (max-width: 768px) {
    .scrolldown1 {
        bottom: 8%;
        left: 14%;
    }
}


/*Scrollテキストの描写*/

.scrolldown1 span {
    /*描画位置*/
    position: revert;
    left: -15px;
    top: -15px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}


/* 線の描写 */

.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: -12px;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    -webkit-animation: pathmove 1.4s ease-in-out infinite;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/

@-webkit-keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    30% {
        height: 30px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}

@keyframes pathmove {
    0% {
        height: 0;
        top: 0;
        opacity: 0;
    }
    30% {
        height: 30px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 50px;
        opacity: 0;
    }
}


/*---------------------------------------------------------
  共通
  ---------------------------------------------------------*/

.top_title_h2 {
    font-family: "Cormorant Infant";
    font-weight: 300;
    font-size: 84px;
    letter-spacing: -0.08em;
    text-align: left;
    line-height: 1;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .top_title_h2 {
        font-size: 64px;
    }
}

.top_title_h2 span {
    font-family: "Noto Sans JP";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .top_title_h2 span {
        font-size: 12px;
    }
}

.top_title_h3 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    padding: 40px 0 24px;
}

@media screen and (max-width: 768px) {
    .top_title_h3 {
        font-size: 18px;
    }
}

.inside {
    max-width: 960px;
    margin: 0 auto;
}

.table01 {
    width: 100%;
    table-layout: fixed;
}

.table01 tr {
    padding-top: 8px;
    display: block;
}

.table01 th {
    color: #fff100;
    font-size: 16px;
    width: 240px;
    text-align: left;
    vertical-align: top;
    table-layout: fixed;
}

.table01 td {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    table-layout: fixed;
}

ul.disc {
    list-style-type: disc !important;
    margin: 0;
    padding: 0;
}

ul.disc li {
    list-style-type: disc !important;
    margin-left: 1.5em;
}

ul.decimal {
    list-style-type: decimal !important;
    margin: 0;
    padding: 0;
}

ul.decimal li {
    list-style-type: decimal !important;
    margin-left: 1.5em;
}


/*== ボタン共通設定 */

.btn {
    font-family: "Noto Serif JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.08em;
    text-align: left;
    color: #fff;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
    overflow: hidden;
    /*ボタンの形状*/
    text-decoration: none;
    display: inline-block;
    border: 1px solid #ffffff;
    /* ボーダーの色と太さ */
    padding: 16px 80px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    min-width: 240px;
}

@media screen and (max-width: 768px) {
    .btn {
        font-size: 14px;
        padding: 8px 40px;
    }
}

.btn::after {
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    border-color: #fff;
    content: "";
    z-index: 3;
}


/*ボタン内spanの形状*/

.btn span {
    position: relative;
    z-index: 3;
    /*z-indexの数値をあげて文字を背景よりも手前に表示*/
    color: #ffffff;
}

a.btn:hover span {
    color: #010c0f;
}

.btn:hover::after {
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0.5em;
    height: 0.5em;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    color: #010c0f;
    content: "";
}


/*== 背景が流れる（左から右） */

.bgleft:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #ffffff;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}


/*hoverした際の形状*/

.bgleft:hover:before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn_black {
    color: #010c0f;
    border: 1px solid #010c0f;
    /* ボーダーの色と太さ */
}

.btn_black::after {
    border-color: #010c0f;
}

a.btn_black:hover span {
    color: #fff;
}


/*ボタン内spanの形状*/

.btn_black span {
    color: #010c0f;
}

.btn_black:hover span {
    color: #fff;
}

.btn_black:hover::after {
    color: #fff;
}


/*== 背景が流れる（左から右） */

.bgleft_black:before {
    content: "";
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background: #010c0f;
    /*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
}


/*hoverした際の形状*/

.bgleft_black:hover:before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}


/*== 背景ありテキスト */

.bgextend {
    -webkit-animation-name: bgextendAnimeBase;
    animation-name: bgextendAnimeBase;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    /*　はみ出た色要素を隠す　*/
    opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/*中の要素*/

.bgappear {
    -webkit-animation-name: bgextendAnimeSecond;
    animation-name: bgextendAnimeSecond;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/*左から右*/

.bgLRextend::before {
    -webkit-animation-name: bgLRextendAnime;
    animation-name: bgLRextendAnime;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #01355b;
    /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
    0% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    50% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }
    100% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

@keyframes bgLRextendAnime {
    0% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
    50% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }
    100% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .inside {
        max-width: 90%;
        margin: 0 auto;
    }
    .table01 th {
        display: block;
    }
    .table01 td {
        display: block;
    }
}


/*---------------------------------------------------------
  gaiyo
  ---------------------------------------------------------*/

.gaiyo {
    padding: 120px 0 0;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .gaiyo {
        padding: 80px 0 0;
    }
}

.gaiyo .readcopy {
    text-align: center;
    font-family: "Noto Serif JP";
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.04em;
    line-height: 40px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .gaiyo .readcopy {
        font-size: 12px;
        line-height: 30px;
    }
}

.read_large {
    width: 580px;
    text-align: center;
    margin: 40px auto;
}

@media screen and (max-width: 768px) {
    .read_large {
        width: 100%;
    }
}

.tx_serif {
    font-family: "Noto Serif JP";
    font-weight: 600;
    font-size: 24px;
    letter-spacing: 0.24em;
    line-height: 42px;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .tx_serif {
        font-size: 18px;
        letter-spacing: 0.16em;
    }
}


/*---------------------------------------------------------
  Message
  ---------------------------------------------------------*/

.message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .message {
        display: block;
    }
}

.message .boxL {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .message .boxL {
        width: 100%;
    }
}

.message .boxL h2 {
    margin-bottom: 32px;
}

.boxL .tx_serif {
    margin-top: 8px;
}

@media screen and (max-width: 768px) {
    .boxL .tx_serif {
        margin-top: 2px;
    }
}

.boxL .name {
    margin-top: 16px;
    width: 240px;
}

@media screen and (max-width: 768px) {
    .boxL .name {
        width: 160px;
    }
}

.boxL .btn {
    margin-top: 24px;
}

.message .boxR {
    width: 50%;
}

@media screen and (max-width: 768px) {
    .message .boxR {
        width: 70%;
        margin: 0 auto;
    }
}

.message .boxR img {
    width: 100%;
}


/*---------------------------------------------------------
  modal
  ---------------------------------------------------------*/


/* モーダルCSS */

.modalArea {
    display: none;
    position: fixed;
    z-index: 10;
    /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30, 30, 30, 0.9);
}

.modalWrapper {
    position: absolute;
    top: 56%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 92%;
    height: 80%;
    overflow-y: auto;
    padding: 24px 40px;
    background-color: #01355b;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .modalWrapper {
        width: 92%;
        padding: 24px 4%;
    }
}

.closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
}

.modalTitle {
    font-family: "Noto Serif JP";
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0.16em;
    line-height: 36px;
    text-align: center;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .modalTitle {
        font-size: 16px;
        line-height: 24px;
    }
}

.modalContentsIn {
    margin-top: 40px;
}

.modalText {
    margin-top: 16px;
    text-align: left;
}

.mtNon {
    margin-top: 0 !important;
}

.name2 {
    text-align: right !important;
}

@media screen and (max-width: 768px) {
    .name2 {
        text-align: left !important;
        padding: 16px 0;
    }
}


/*---------------------------------------------------------
  policy
  ---------------------------------------------------------*/

.policy {
    background: url(../lib/cmn_img/bg_policy@2x.jpg) no-repeat center;
    background-size: cover;
    width: 100%;
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .policy {
        padding: 80px 0;
    }
}

.policyIn {
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .policyIn {
        max-width: inherit;
        width: 92%;
        margin: 0 auto;
    }
}

.policyIn .top_title_h2 {
    color: #010c0f;
}

.policyIn .top_title_h2 span {
    color: #010c0f;
}

.bgtx {
    font-family: "Noto Serif JP";
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 51px;
    text-align: left;
    color: #fff;
    background: #01355b;
    display: inline-block;
    padding: 16px;
}

@media screen and (max-width: 768px) {
    .bgtx {
        font-size: 16px;
        letter-spacing: 0.16em;
        line-height: 24px;
    }
}

.policyIn .btnbox {
    text-align: center;
    margin: 40px auto 0;
}

.youtube {
    width: 560px;
    aspect-ratio: 16 / 9;
    margin: 64px auto 0;
    line-height: 1.6;
}

.youtube iframe {
    width: 100%;
    height: 100%;
}

.movietxbox {
    margin-top: 8px;
}

.movietxbox .subtx {
    font-size: 14px;
}

.movietxbox .movietitle {
    font-size: 18px;
    margin: 4px 0 8px;
    font-family: "Noto Serif JP";
}

@media screen and (max-width: 768px) {
    .youtube {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-top: 40px;
    }
    .movietxbox .movietitle {
        font-size: 16px;
    }
}


/*---------------------------------------------------------
  commitment
  ---------------------------------------------------------*/

.commitment {
    background: #01355b;
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .commitment {
        padding: 80px 0;
    }
}

.commitment .top_title_h2 {
    text-align: center;
}

.policyIn {
    margin: 0 auto;
}

ul.commitmentBox {
    max-width: 1600px;
    margin: 40px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    ul.commitmentBox {
        max-width: inherit;
        width: 100%;
        display: block;
    }
}

ul.commitmentBox .boxL {
    width: 50%;
}

@media screen and (max-width: 768px) {
    ul.commitmentBox .boxL {
        width: 100%;
    }
}

ul.commitmentBox .boxR {
    padding: 0 40px 0;
    width: 50%;
}

@media screen and (max-width: 768px) {
    ul.commitmentBox .boxR {
        padding: 16px 4%;
        width: 100%;
    }
}

.tx_serif_sub {
    font-family: "Noto Serif JP";
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.16em;
    line-height: 40px;
    text-align: left;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .tx_serif_sub {
        font-size: 16px;
    }
}

.bgtx_white {
    font-family: "Noto Serif JP";
    font-weight: 600;
    font-size: 32px;
    letter-spacing: 0.16em;
    line-height: 51px;
    text-align: left;
    color: #01355b;
    background: #fff;
    display: inline-block;
    padding: 16px;
}

@media screen and (max-width: 768px) {
    .bgtx_white {
        font-size: 20px;
        letter-spacing: 0.24em;
        line-height: 24px;
    }
}

.commitmentBox_Reverse {
    margin-top: 40px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.commitmentBox_Reverse .boxR {
    padding: 0 40px 0;
}


/*---------------------------------------------------------
  catalog
  ---------------------------------------------------------*/

.catalog {
    background-image: url(../lib/cmn_img/bg_catalog@2x.jpg);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .catalog {
        padding: 80px 0;
    }
}

.catalogIn {
    max-width: 960px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .catalogIn {
        max-width: inherit;
        width: 92%;
    }
}

.catalogIn .top_title_h2 {
    text-align: center;
}

.catalogImg {
    margin: 40px auto 0;
    display: block;
    width: 320px;
}

.catalogIn p {
    text-align: center;
    margin-bottom: 24px;
}


/*---------------------------------------------------------
  footer
  ---------------------------------------------------------*/

footer {
    padding: 120px 0;
    background-color: #1e272c;
}

@media screen and (max-width: 768px) {
    footer {
        padding: 80px 0;
    }
}

footer .pageLink {
    max-width: 960px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    footer .pageLink {
        max-width: inherit;
        display: block;
        text-align: center;
        width: 100%;
    }
}

footer .pageLink li a {
    color: #fff;
    padding: 0 8px;
}

ul.sns {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

ul.sns li {
    padding: 4px;
}

ul.sns li a img {
    width: 24px;
}

.copyright {
    margin-top: 40px;
    color: #fff;
    text-align: center;
    font-family: "Cormorant Infant";
}


/*---------------------------------------------------------
  fadein
  ---------------------------------------------------------*/

.fadein {
    opacity: 0;
    -webkit-transform: translate(0, 1rem);
    transform: translate(0, 1rem);
    -webkit-transition: all 1s;
    transition: all 1s;
    -webkit-perspective: 1000;
    perspective: 1000;
}

.fadein.amin_on {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-perspective: 1000;
    perspective: 1000;
}

@media only screen and (max-width: 959px) {
    .fadein {
        opacity: 1;
        -webkit-transform: translate(0, 1rem);
        transform: translate(0, 1rem);
        -webkit-transition: all 1s;
        -moz-transform: all 1s;
        transition: all 1s;
        display: block;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
    .fadein.amin_on {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        display: block;
        -webkit-perspective: 1000;
        perspective: 1000;
    }
}
