@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
    --color-main: rgba(40,46,137,1);
    --color-black: rgba(47,39,37,1);
    --color-blue: rgba(79,180,192,1);
    --color-blue2: rgba(118,126,175,1);
    --color-blue3: rgba(83,148,215,1);
    --color-white: rgba(231,229,213,1);
    --color-yellow: rgba(255,241,0,1);
    --color-yellow2: rgba(255,217,0,1);
    --color-red: rgba(145,29,70,1);
    --color-beige: #f3f2ea;
    --color-grey: #f4f4f4;
    --color-grad: linear-gradient(165deg, #293187 0%, #2a3488 21.4%, #2d3e8d 38.6%, #334f94 54.33%, #4586ab 69.18%, #4586ab 83.43%, #51abbb 97.04%, #54b4bf 100%);
}

:root {
    --cont-md: 90%;
    --cont-lg: 100%;
    --cont-max-sm: 768px;
    --cont-max-md: 1200px;
    --cont-max-lg: 1400px;
}

/* スマホ (大画面)・小型タブレット */
@media screen and (max-width: 768px) { }

/* ノートPC・小型デスクトップ */
@media screen and (max-width: 1200px) { }

/* 大画面PC・4K対応 */
@media screen and (max-width: 1600px) { }

html {
    width: 100%;
    font-size: 62.5%;
    overflow-x: hidden;
}

html * {
    box-sizing: border-box;
    font-feature-settings: "palt";
    word-break: break-word;
    line-break: strict;
}

body {
    width: 100%;
    font-family: "Noto Sans JP",-apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,"ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,Arial,"メイリオ",Meiryo,sans-serif;
    font-weight: normal;
    letter-spacing: .05rem;
    line-height: 1.8;
    color: var(--color-black);
    overflow-x: hidden;
}

body.is_fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

body a {
    line-height: 1;
    display: inline-block;
    transition: background 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

body img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    pointer-events: none;
}

body #wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.min {
    font-family: "Noto Serif JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.gothic {
    font-family: "Noto Sans JP",-apple-system,BlinkMacSystemFont,"Helvetica Neue",YuGothic,"ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,Arial,"メイリオ",Meiryo,sans-serif;
}

.hover img {
    opacity: 1;
    transition: opacity 0.3s;
}
.hover:hover img {
    opacity: 0.6;
}

.nopc { display: none; }

@media screen and (max-width: 768px) {

    .nosp { display:none !important; }

    .nopc { display:block; }

}

.inner {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.page_inner {
  width: 90%;
  max-width: var(--cont-max-md);
  margin: 0 auto;
}

.page_sec {
  padding: 100px 0;
}

.bg_beige {
  background-color: var(--color-beige);
}

/* PDFアイコン */
a[href$=".pdf"]::after {
  content: "";
  background: url("../img/icon_pdf_blue.svg") no-repeat center center;
  background-size: contain;
  width: 1.2em;
  height: 1.2em;
  display: inline-block;
  transform: translateY(0.2em);
  margin-left: 5px;
}

.visually_hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

@media screen and (max-width: 1200px) {
  .page_sec {
    padding: 8.33vw 0;
  }
}
@media screen and (max-width: 768px) {
  .page_sec {
    padding: 50px 0;
  }
}


/*-------------------------------------------------------------
ボタン
-------------------------------------------------------------*/
.btn_area {
  padding-top: 80px;
  text-align: center;
}

.btn {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 100vh;
  padding: 0.8em 1em;
  background: linear-gradient(90deg, #293187, #54b4bf);
  position: relative;
}

.btn.btn_s {
  width: 300px;
  max-width: 100%;
}

.btn_line {
  background: transparent;
  color: var(--color-main);
  border: 2px solid currentColor;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #54b4bf, #293187);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

.btn_line::before {
  content: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn_line:hover {
  color: #fff;
  background-color: var(--color-main);
  border-color: var(--color-main);
}

.btn > span {
  position: relative;
  z-index: 2;
}

.btn.btn_arrow::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 7%;
  margin: auto;
  transform: rotate(45deg);
  z-index: 3;
}

@media screen and (max-width: 1200px) {
  .btn_area {
    padding-top: 6.66vw;
  }

  .btn {
    font-size: 1.33vw;
  }
}
@media screen and (max-width: 768px) {
  .btn_area {
    padding-top: 50px;
  }

  .btn {
    font-size: 1.4rem;
  }
}


/*-------------------------------------------------------------
タイトル
-------------------------------------------------------------*/
.page_title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 10px;
  background: var(--color-grad);
  line-height: 1.4;
  padding: 0.5em 0.8em 0.6em;
}

.page_title::before, .page_title::after {
  display: block;
  width: 0;
  height: 0;
  content: "";
}

.page_title::before {
  margin-top: calc((1 - 1.4) * 0.5em);
}

.page_title::after {
  margin-bottom: calc((1 - 1.4) * 0.5em);
}

@media screen and (max-width: 1200px) {
  .page_title {
    font-size: 3vw;
  }
}

@media screen and (max-width: 768px) {
  .page_title {
    font-size: 2rem;
    border-radius: 5px;
  }
}


/*-------------------------------------------------------------
リスト
-------------------------------------------------------------*/
/* .list_note */
.list_note > li {
  position: relative;
  line-height: 1.4;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
}

.list_note > li:last-child {
  margin-bottom: 0;
}

.list_note > li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

/*-------------------------------------------------------------
ローディング
-------------------------------------------------------------*/
/*#loading {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
    background-color: #fff;
	opacity: 1;
	transition: opacity .5s;
	transition-delay: .5s;
	z-index: 999;
}

#loading.loaded {
	opacity: 0;
	pointer-events: none;
}

#loading.transitionend {
	display: none;
}*/


/*-------------------------------------------------------------
header
-------------------------------------------------------------*/
#header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 999;
}

.page_main {
  padding-top: 90px;
}

#header a:hover {
  opacity: 0.7;
}

.header_inner {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
}

.header_logo {
  width: 484px;
  max-width: 100%;
}

.header_logo a {
  display: inline-block;
}

.header_logo img {
  width: 100%;
}

.header_list {
  display: flex;
  align-items: center;
  gap: 15px 30px;
  flex-wrap: wrap;
}

.header_item:last-child {
  display: none;
}

.header_link {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-black);
  line-height: 1.25;
  letter-spacing: 0.06em;
  position: relative;
  padding-left: 1.4em;
}

.header_link::before {
  content: "";
  width: 0.75em;
  height: 1.25em;
  -webkit-mask: url("../img/icon_list.svg") no-repeat;
  mask: url("../img/icon_list.svg") no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: var(--color-blue2);
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1600px) {
  .header_inner {
    padding: 0 20px;
  }

  .header_logo {
    max-width: 30%;
  }

  .header_link {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1440px) {
  .header_list {
    gap: 15px 20px;
  }

  .header_link {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 1200px) {
  .header_inner {
    padding: 0 1.66vw;
  }

  .header_list {
    gap: 1.25vw 1.66vw;
  }

  .header_link {
    font-size: 1.08vw;
    font-size: max(10px, 1.08vw);
  }
}

@media screen and (max-width: 930px) {
  .header_link {
    font-size: max(10px, 1.5vw);
  }

  .header_logo {
    max-width: 40%;
  }
}

@media screen and (max-width: 768px) {
  #header {
    position: fixed;
    height: 54px;
  }

  .page_main {
    padding-top: 54px;
  }

  .header_inner {
    flex-direction: column;
    padding: 0 15px;
    justify-content: center;
    align-items: flex-start;
  }

  .header_logo {
    max-width: 85%;
  }

  .header_menu {
    width: 100%;
    height: calc(100dvh - 50px);
    position: absolute;
    top: 50px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s;
    z-index: 999;
  }

  .header_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px 0;
  }

  .header_item:last-child {
    display: initial;
  }

  .header_nav {
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 30px 20px 20px;
    margin-left: auto;
    position: absolute;
    top: 0;
    right: -100vw;
    transition: all 0.3s linear;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .header_link {
    font-size: 1.6rem;
  }

  /* メニューOpen時 */
  body.is_fixed .header_menu {
    opacity: 1;
    visibility: visible;
  }

  body.is_fixed .header_nav {
    right: 0;
  }

  body.is_fixed .header_item {
    width: 100%;
    opacity: 1;
    animation: linksShow 0.5s cubic-bezier(0.38, 0.07, 0.11, 0.89) both;
  }

  body.is_fixed .header_item:last-child {
    margin-bottom: 50px;
  }

  body.is_fixed .header_item:last-child .header_link {
    padding-left: 0;
    background-color: var(--color-main);
    color: #fff;
    text-align: center;
    padding: 0.6em 0.8em;
    border-radius: 5px;
    letter-spacing: 0.075em;
  }

  body.is_fixed .header_item:last-child .header_link::before {
    content: none;
  }
}
@keyframes linksShow {
    0% {
        opacity: 0;
        transform: translateY(3rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/*-------------------------------------------------------------
hamburger
-------------------------------------------------------------*/
.hamburger {
  display: none;
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 1000;
  }

  .hamburger > span {
    display: block;
    width: 34px;
    height: 2px;
    background-color: var(--color-main);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s;
  }

  .hamburger > span:nth-child(1) {
    top: 30%;
  }

  .hamburger > span:nth-child(2) {
    top: 50%;
  }

  .hamburger > span:nth-child(3) {
    top: 70%;
  }

  /* メニューOpen時 */
  .hamburger.is_open > span:nth-child(1) {
    top: 50%;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hamburger.is_open > span:nth-child(2) {
    background-color: transparent;
  }

  .hamburger.is_open > span:nth-child(3) {
    top: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}


/*-------------------------------------------------------------
breadcrumb
-------------------------------------------------------------*/
.breadcrumb {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
}

.breadcrumb li {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "\03e";
    margin: 0 0.7em;
    color: #888;
}

.breadcrumb a {
    color: var(--color-main);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .breadcrumb li {
        font-size: 1.1rem;
    }
}


/*-------------------------------------------------------------
page_kv
-------------------------------------------------------------*/
.page_kv {
  width: 100%;
  height: 200px;
  border-top: 10px solid #2d3e8d;
  background-image: url("../img/company/page_kv_sky.jpg");
  background-position: center right;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.page_kv_inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.page_kv_title {
  min-width: 660px;
  max-width: 70%;
  height: 100%;
  padding: 0.5em 4em 0.5em 2em;
  font-size: 4.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.1em;
  background: var(--color-grad);
  clip-path: polygon(0px 0px, 100% 0px, calc(100% - 200px) 100%, 0px 100%);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
}

.page_kv_title > span {
  font-weight: bold;
}

@media screen and (max-width: 1200px) {
  .page_kv_title {
    font-size: 3.41vw;
    min-width: 55vw;
    clip-path: polygon(0px 0px, 100% 0px, calc(100% - 16.66vw) 100%, 0px 100%);
  }
}
@media screen and (max-width: 768px) {
  .page_kv {
    height: auto;
    border-top-width: 2px;
  }

  .page_kv_title {
    font-size: 2.4rem;
    width: 100vw;
    min-width: auto;
    max-width: 100%;
    padding: 0.4em 1em 0.6em 1em;
    clip-path: initial;
  }

  .page_kv_inner {
    flex-direction: column;
    justify-content: flex-start;
  }
}


/*-------------------------------------------------------------
footer
-------------------------------------------------------------*/
#footer {
    width: 100%;
    background-color: var(--color-grey);
    position: relative;
    margin-top: auto;
}

.foot_inner {
    width: 90%;
    max-width: var(--cont-max-md);
    padding: 150px 0 100px;
    display: flex;
    justify-content: space-between;
}

.foot_inner .footer_company {
    margin-bottom: 80px;
}

.foot_inner .footer_company .logo {
    width: 605px;
    max-width: 51vw;
}

.foot_inner .footer_company .info {
    font-size: 1.4rem;
    margin-top: 0.5em;
}

.foot_inner .corporation_link_title {
    font-size: 2rem;
    margin-bottom: 0.7em;
}

.foot_inner .corporation_link_list span,
.foot_inner .corporation_link_list a {
    font-size: 1.6rem;
    color: var(--color-main);
    text-decoration: underline;
}

.foot_inner .corporation_link_list span{
    display: inline-block;
    color: #000;
    text-decoration: none;
    margin-top: 0.4em;
}

.foot_inner .corporation_link_list a:hover {
    text-decoration: none;
}

.foot_inner .corporation_link_list li:not(:first-child) a {
    margin-top: 0.7em;
}

.footer_nav_list {
    margin-bottom: 40px;
}

.footer_nav_list li:not(:first-child) a {
    margin-top: 1em;
}

.footer_nav_list a {
    font-size: 2rem;
    color: var(--color-main);
    padding-left: 1.4em;
    position: relative;
}

.footer_nav_list a::before {
    content: "";
    width: 1em;
    height: 1.2em;
    background: url("../img/icon_list.svg") no-repeat center center / contain;
    position: absolute;
    left: 0;
    top: -0.1em;
}

.footer_nav_list a {
    color: transparent;
    background: linear-gradient(to right, var(--color-blue3) 50%, var(--color-main) 50%) 100%;
    background-clip: text;
    background-size: 200% 100%;
    transition: background-position 0.3s;
}

.footer_nav_list a:hover {
    background-position: 0 100%;
}

.footer_subnav_list li:not(:first-child) a {
    margin-top: 0.5em;
}

.footer_subnav_list a {
    font-size: 1.4rem;
    color: var(--color-main);
    text-decoration: underline;
}

.footer_subnav_list a:hover {
    text-decoration: none;
}

#copyright {
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    padding-bottom: 2em;
}

#copyright small {
    font-size: 1em;
}

@media screen and (max-width: 1200px) {
    .foot_inner {
        padding: 12.5vw 0 8.3vw;
    }

    .foot_inner .footer_company {
        margin-bottom: 6.7vw;
    }

    .foot_inner .footer_company .info {
        font-size: 1.6vw;
    }

    .foot_inner .corporation_link_title {
        font-size: 1.9vw;
    }

    .foot_inner .corporation_link_list span,
    .foot_inner .corporation_link_list a {
        font-size: 1.7vw;
    }

    .footer_nav_list {
        margin-bottom: 3.3vw;
    }

    .footer_nav_list a {
        font-size: 1.9vw;
    }

    .footer_subnav_list a {
        font-size: 1.6vw;
    }
}

@media screen and (max-width: 768px) {
    .foot_inner {
        padding: 50px 0;
        flex-direction: column;
    }

    .footer_info {
        margin-bottom: 40px;
    }

    .foot_inner .footer_company {
        margin-bottom: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .foot_inner .footer_company .logo {
        width: 400px;
        max-width: 100%;
    }

    .foot_inner .footer_company .info {
        font-size: 1.4rem;
        margin-top: 1.5em;
    }

    .foot_inner .corporation_link_title {
        font-size: 1.6rem;
        margin-bottom: 1em;
    }

    .foot_inner .corporation_link_list span,
    .foot_inner .corporation_link_list a {
        font-size: 1.4rem;
    }

    .foot_inner .corporation_link_list li:not(:first-child) a {
        margin-top: 1em;
    }

    .footer_nav_list {
        margin-bottom: 40px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px 0;
    }

    .footer_nav_list li {
        width: 49%;
    }

    .footer_nav_list li:not(:first-child) a {
        margin-top: 0;
    }

    .footer_nav_list a {
        font-size: 1.6rem;
    }

    .footer_nav_list a {
        color: transparent;
        background: linear-gradient(to right, var(--color-blue3) 50%, var(--color-main) 50%) 100%;
        background-clip: text;
        background-size: 200% 100%;
        transition: background-position 0.3s;
    }

    .footer_nav_list a:hover {
        background-position: 0 100%;
    }

    .footer_subnav_list li:not(:first-child) a {
        margin-top: 0.5em;
    }

    .footer_subnav_list a {
        font-size: 1.4rem;
        color: var(--color-main);
        text-decoration: underline;
    }

    #copyright {
        padding-bottom: 55px;
    }
}


/*-------------------------------------------------------------
PAGE TOP
-------------------------------------------------------------*/
#pagetop {
    display: block;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 5;
    opacity: 0;
    transform: translateY(110px);
    transition: opacity 1s, transform 1s;
}

#pagetop.show {
    opacity: 1;
    transform: translateY(0px);
}

#pagetop a {
    width: 50px;
    aspect-ratio: 1 / 1;
    background-color: var(--color-main);
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    padding-top: 1em;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

#pagetop a:hover {
    background-color: var(--color-blue3);
}

#pagetop a::before {
    content: "";
    width: 1em;
    height: 1em;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    position: absolute;
    top: 0.7em;
    left: 0;
    right: 0;
    margin: auto;
    transform: rotate(-45deg);
}

@media screen and (max-width: 1200px) {
    #pagetop a {
        width: 4.2vw;
        font-size: 1.3vw;
    }
}

@media screen and (max-width: 768px) {
    #pagetop a {
        width: 45px;
        font-size: 1.4rem;
    }
}


/*-------------------------------------------------------------
サイドリンク
-------------------------------------------------------------*/
#fix_link {
    position: fixed;
    right: 0;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow: hidden;
    z-index: 9;
}

#fix_link a {
    width: 50px;
    background-color: var(--color-main);
    border-radius: 5px 0 0 5px;
    padding: 1.5em 0;
    font-size: 2rem;
    line-height: 1.5em;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
}

#fix_link a:hover {
    background-color: var(--color-blue3);
}

@media screen and (max-width: 1200px) {
    #fix_link {
        bottom: 6.7vw;
    }

    #fix_link a {
        width: 4.2vw;
        font-size: 1.4vw;
    }
}

@media screen and (max-width: 768px) {
    #fix_link {
        display: none;
    }
}


/*-------------------------------------------------------------
scroll box
-------------------------------------------------------------*/
.scroll_box {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    position: relative;
}

@media screen and (max-width: 768px) {
    .scroll_box {
        overflow-x: scroll;
    }
}

.scroll_box::-webkit-scrollbar {
    height: 10px;
}

.scroll_box::-webkit-scrollbar-track {
    background: #e7e5d5;
}

.scroll_box::-webkit-scrollbar-thumb {
    background: #9fa0a0;
    border: none;
}

.scroll_hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    font-size: 2rem;
    color: #fff;
    padding: 1em 2em;
    border-radius: 10px;
    white-space: nowrap;
    animation: hintMove 1.5s infinite alternate;
    transition: opacity 0.5s;
}

@keyframes hintMove {
    from {
        transform: translate(-50%, -50%);
    }
    to {
        transform: translate(-40%, -50%);
    }
}


/*-------------------------------------------------------------
animation
-------------------------------------------------------------*/
/* スクロールでフェードイン */
.js-fadeup {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 1.5s, transform 1.5s;
}

.js-fadeup.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.js-fadein {
    opacity: 0;
    transition: opacity 1.5s;
}

.js-fadein.is-visible {
    opacity: 1;
}

.delay-0-3 { transition-delay: 0.3s; }

.delay-0-5 { transition-delay: 0.5s; }

.delay-1 { transition-delay: 1s; }

.delay-1-5 { transition-delay: 1.5s; }

@media screen and (max-width: 768px) {
    .delay-0-3 { transition-delay: 0.3s; }

    .delay-0-5 { transition-delay: 0.5s; }

    .delay-1 { transition-delay: 1s; }

    .delay-1-5 { transition-delay: 1.5s; }
}


/*-------------------------------------------------------------
print
-------------------------------------------------------------*/
@page {
    size: A4 portrait;
}

@media print {
    * {
        text-shadow: none !important;
        box-shadow: none !important;
    }

    html, body {
        width: 1100px;
        height: auto;
        -webkit-print-color-adjust: exact;
        size: A4 landscape;
        page-break-after: auto;
    }

    header {
        position: relative !important;
    }

    .nav {
        position: absolute;
    }
}