@charset "UTF-8";
/*
Theme Name: TimeValue
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  word-wrap: break-word;
}

html {
  scroll-padding-top: 56px;
  scroll-behavior: smooth;
}
@media print, screen and (min-width: 960px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  position: relative;
  font-size: 16px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.04em;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--base_bg_color_setting);
  font-family: var(--base_font_family_setting);
}

body * {
  color: var(--base_text_color_setting);
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    -webkit-transition: none;
    transition: none;
  }
}

input[type=text].regular-text {
  width: 80% !important;
  padding: 0;
}

/* ************************************************
 *	content-wrap ヘッダー下のメインコンテンツ枠
 * *************************************************/
#content-wrap {
  overflow: hidden;
  -webkit-animation: fadein 1s;
          animation: fadein 1s;
}
.inner {
  max-width: 1460px;
  margin: 0 auto;
}

/*********************************************************************
* ページトップ
**********************************************************************/
.pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
}
@media print, screen and (min-width: 768px) {
  .pagetop {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border: 2px solid #fff;
  opacity: 1;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .pagetop a {
    width: 50px;
    height: 50px;
  }
}
.pagetop a .arrow {
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.pagetop a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: 12px;
  border: 0px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .pagetop a .arrow::before {
    top: 0;
    left: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  .pagetop a .arrow::before {
    width: 15px;
    height: 15px;
    top: -1px;
    left: 15px;
  }
}
.pagetop a .img_pagetop {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--base_pagetop_img_setting) top left/cover no-repeat;
}
.pagetop a.no_img {
  border-radius: 25px;
}
.pagetop .pagetop_text {
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
}

/*********************************************************************
* googlemap
**********************************************************************/
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 56%;
  }
}
@media print, screen and (min-width: 960px) {
  .gmap {
    padding-bottom: 35.2%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************************************************************
* flexbox外枠
**********************************************************************/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align_stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/* ************************************************
 *	PC／SP切り替え
 * ************************************************ */
.sp_only {
  display: block;
}
@media print, screen and (min-width: 428px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* ************************************************
 *	共通パーツ
 * ************************************************ */
.section_wrapper {
  padding: 40px 20px 0;
}
@media print, screen and (min-width: 428px) {
  .section_wrapper {
    padding: 60px 20px 0;
  }
}
@media print, screen and (min-width: 960px) {
  .section_wrapper {
    padding: 80px 40px;
  }
}

.section_ttl,
.center {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-family: "Oswald";
  line-height: 1;
}
@media print, screen and (min-width: 428px) {
  .section_ttl,
  .center {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .section_ttl,
  .center {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.section_ttl span.en_ttl,
.center span.en_ttl {
  font-size: 14px;
  color: #000;
  display: block;
  text-align: center;
  display: block;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .section_ttl span.en_ttl,
  .center span.en_ttl {
    font-size: 16px;
  }
}

.btn {
  text-align: center;
  bottom: 0;
}
@media print, screen and (min-width: 960px) {
  .btn {
    text-align: start;
  }
}
.btn a {
  padding: 10px 70px 10px 30px;
  background-color: #000;
  display: inline-block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  position: relative;
  color: #fff;
  border: 1px solid #000;
  font-size: 16px;
}
@media print, screen and (min-width: 768px) {
  .btn a {
    font-size: 20px;
    padding: 15px 100px 15px 80px;
  }
}
.btn a:hover {
  color: #000;
}
.btn a:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.btn a:hover::after {
  right: 1.5em;
  -webkit-filter: invert(1);
          filter: invert(1); /* 白黒反転 */
}
.btn a::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.btn a::after {
  position: absolute;
  display: block;
  content: url("images/arrow-white.svg");
  width: 20px;
  height: auto;
  top: 50%;
  right: 2em;
  -webkit-transform: translateY(-58%);
          transform: translateY(-58%);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.btn a .text {
  position: relative;
  color: inherit;
}

/* ************************************************ 
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 100;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 100px;
    background-color: #fff;
    padding-left: 40px;
  }
}
header .header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
header .header_inner::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 100%;
  height: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}

/* ロゴ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .logo {
    width: 13vw;
  }
}
.logo a {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 960px) {
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.logo .main_logo {
  display: block;
  width: 150px;
  margin-left: 20px;
}
@media print, screen and (min-width: 960px) {
  .logo .main_logo {
    display: block;
    height: 100px;
    line-height: 100px;
    margin: 0;
    width: 200px;
  }
}
.logo .main_logo img {
  vertical-align: bottom;
}

/* グローバルナビ
----------------------------------------------*/
.header_nav ul.content_nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 5%;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav {
    margin-top: 0;
    padding: 0;
    margin-right: 50px;
  }
}
.header_nav ul.content_nav li {
  border-bottom: 1px solid #b4b4b4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li:not(:first-child) {
    padding-left: 1.2em;
    margin-left: 1.2em;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}
@media print, screen and (min-width: 1600px) {
  .header_nav ul.content_nav li:not(:first-child) {
    padding-left: 1.5em;
    margin-left: 1.5em;
  }
}
.header_nav ul.content_nav a:not(.header_tel) {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-family: "Oswald";
  line-height: 1;
  letter-spacing: 0;
  padding: 20px 10px;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a:not(.header_tel) {
    display: block;
    position: relative;
    font-size: 1.8vw;
    padding: 0;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
    padding: 30px 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav ul.content_nav a:not(.header_tel) {
    font-size: 1.4vw;
  }
}
@media print, screen and (min-width: 1600px) {
  .header_nav ul.content_nav a:not(.header_tel) {
    font-size: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a:not(.header_tel):hover:not(.current) {
    color: #b4b4b4;
  }
}
.header_nav ul.content_nav a:not(.header_tel).current {
  color: #b4b4b4;
}
.header_nav .header-contact-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 20px 40px;
  height: 100px;
  margin-left: auto;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media print, screen and (max-width: 960px) {
  .header_nav .header-contact-btn {
    margin: 20px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 250px;
    padding: 20px 50px 20px 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: auto;
    position: static;
    font-size: 16px;
  }
}
.header_nav .header-contact-btn:hover {
  opacity: 0.7;
}
.header_nav .header-contact-btn img {
  width: 30px;
  margin: 0 auto;
}
@media print, screen and (max-width: 960px) {
  .header_nav .header-contact-btn img {
    margin: 0 10px 0 6px;
  }
}
.header_nav .header-contact-btn span {
  color: #fff;
  display: inline-block;
  font-family: "Oswald";
}
@media print, screen and (min-width: 960px) {
  .header_nav .header-contact-btn span {
    margin-top: 5px;
  }
}

/* ドロップダウン
----------------------------------------*/
.drop_container {
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  top: 60px;
  left: -20px;
  width: 100%;
  overflow: hidden;
  max-height: 0;
}
@media print, screen and (min-width: 960px) {
  .drop_container {
    position: absolute;
    width: 250px;
  }
}

.drop_container.active {
  max-height: 500px;
  opacity: 1;
}

.drop_menu {
  width: 100%;
}

.drop_list {
  background-color: transparent;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding: 20px 10px;
  width: 100%;
  text-align: start;
  margin-left: 0 !important;
  background-color: #fff;
  border-bottom: 1px solid #ccc !important;
}
@media print, screen and (min-width: 960px) {
  .drop_list {
    width: 250px;
    padding: 20px;
  }
}
.drop_list:last-child {
  margin-bottom: none !important;
}

.drop_list a {
  text-align: start;
  padding: 0 !important;
}

/* ************************************************ 
 *	SP　ハンバーガーメニュー
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
.menu-trigger {
  display: inline-block;
  width: 45px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  .menu-trigger {
    display: none;
  }
}

.menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 10px;
  width: 25px;
  height: 2px;
  background-color: #000;
  border-radius: 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.menu-trigger span:nth-of-type(1) {
  top: 18px;
}

.menu-trigger span:nth-of-type(2) {
  top: 27px;
}

.menu-trigger span:nth-of-type(3) {
  top: 36px;
}

.menu-trigger.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  position: fixed;
  width: 45px;
  height: 59px;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}

/* メニュー枠
----------------------------------------*/
.header_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #fff;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 100;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    position: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    z-index: unset;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}

.header_nav.open {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  z-index: 999;
}

/* ************************************************
 *	FV
 * ************************************************ */
/* ************************************************
 *	404
 * ************************************************ */
.notfound_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 40px;
  z-index: 0;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-top: 80px;
  }
}
.notfound_wrap img {
  width: 220px;
}
@media print, screen and (min-width: 960px) {
  .notfound_wrap img {
    width: 293px;
  }
}

h2.notfound {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  h2.notfound {
    font-size: 32px;
  }
}
@media print, screen and (min-width: 960px) {
  h2.notfound {
    font-size: 46px;
  }
}

.notfound_txt {
  font-weight: 500;
  text-align: center;
  padding-bottom: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 32px;
  }
}

.btn {
  text-align: center;
}

/* ************************************************
 *	サンクス
 * ************************************************ */
.thanks_block {
  line-height: 2;
  padding: 30px 0 80px;
}
@media print, screen and (min-width: 960px) {
  .thanks_block {
    font-size: 16px;
    text-align: center;
    padding: 50px 0;
  }
}

/* ************************************************
 *	reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* パンくず
----------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  max-width: 1460px;
  padding: 30px 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper {
    padding: 60px 5% 45px;
  }
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 70px 20px;
  }
}
.breadcrumbs_wrapper span {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span {
    padding: 0 0;
    font-size: 12px;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 10px;
  padding-right: 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 12px;
  }
}

/* フッターリンク・コピーライト
----------------------------------------*/
.footer_link_area {
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area {
    padding: 45px 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area {
    padding: 45px 40px 45px 40px;
  }
}
.footer_link_area .footer_inner {
  max-width: 1080px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
}
.footer_link_area .footer_info {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_info {
    width: 35%;
    margin-right: 40px;
  }
}
.footer_link_area .footer_info .footer_logo {
  width: 60%;
}
@media print, screen and (min-width: 428px) {
  .footer_link_area .footer_info .footer_logo {
    width: 40%;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_info .footer_logo {
    width: 65%;
  }
}
.footer_link_area .footer_info p {
  color: #fff;
  line-height: 1;
}
.footer_link_area .footer_link {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 30px;
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
    width: 60%;
    margin-top: 0;
  }
}
.footer_link_area .footer_link ul {
  width: 47%;
  padding-bottom: 30px;
}
.footer_link_area .footer_link ul li {
  line-height: 1;
}
.footer_link_area .footer_link ul li:not(:last-child) {
  margin-bottom: 15px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.footer_link_area .footer_link a {
  color: #fff;
  display: inline-block;
  font-family: "Oswald";
  font-size: 13px;
  font-weight: 500;
  padding: 15px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link a {
    font-size: 16px;
  }
  .footer_link_area .footer_link a:hover {
    opacity: 0.7;
  }
}
.footer_link_area .footer_policy {
  text-align: center;
  margin-top: 20px;
}
.footer_link_area .footer_policy a {
  display: inline-block;
  font-family: "Oswald";
  color: #fff;
  font-size: 12px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.footer_link_area .footer_policy a:hover {
  opacity: 0.7;
}
.footer_link_area .footer_policy a:hover::after {
  opacity: 0.7;
}
.footer_link_area .footer_copyright {
  display: block;
  font-size: 11px;
  margin-top: 10px;
  text-align: center;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_copyright {
    font-size: 12px;
  }
}

.mt25 {
  margin-top: 25px;
}

.mt15 {
  margin-top: 15px;
}