@charset "UTF-8";
/*******************************************************
 *
 * Common
 *
 *******************************************************/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html.has-scroll-smooth {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

body {
  position: relative;
  padding: 0;
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #1C1A20;
  overflow: hidden;
}
@media (min-width: 992px) {
  body {
    padding: 0 0 0 100px;
  }
}
body:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background: #000;
  z-index: 100;
  -webkit-transition: width 1s ease;
  transition: width 1s ease;
}
body.is-loaded:before {
  width: 0;
}

#mainWrapper {
  position: relative;
}

canvas {
  width: 100%;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000;
}

img, iframe {
  max-width: 100%;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  margin: 0;
}

a, a:hover {
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
}

.textCenter {
  text-align: center;
}

.textUppercase {
  text-transform: uppercase;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hiddenSp {
  display: none;
}
@media (min-width: 992px) {
  .hiddenSp {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .hiddenPc {
    display: none !important;
  }
}

.hiddenSpFlex {
  display: none;
}
@media (min-width: 992px) {
  .hiddenSpFlex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

main {
  position: relative;
}
main:before {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000;
  top: -100px;
  right: 0;
  content: "";
  width: 150px;
  height: 100vh;
}
@media (min-width: 992px) {
  main:before {
    width: 33.3333333333%;
  }
}

/*******************************************************
 *
 * Image Wrapper
 *
 *******************************************************/
.imgWrap {
  position: relative;
}
.imgWrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.imgWrap img.extendRight-js {
  max-width: unset;
}
.imgWrap.covered:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: #000;
  -webkit-transition: width 1s ease;
  transition: width 1s ease;
  z-index: 2;
}
.imgWrap.is-shown:before, .imgWrap.is-inview:before {
  width: 0 !important;
}

/*******************************************************
 *
 * Container
 *
 *******************************************************/
.container {
  margin: auto;
  width: calc(100% - 40px);
}
@media (min-width: 1440px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (min-width: 992px) {
  .container--sm {
    width: calc(100% - 150px);
  }
}
@media (min-width: 1440px) {
  .container--sm {
    width: calc(100% - 300px);
  }
}

/*******************************************************
 *
 * Primary Menu
 *
 *******************************************************/
.navs {
  color: #6A6A6A;
  font-size: 14px;
  letter-spacing: 0.2em;
  line-height: 1.4285714286;
  text-transform: uppercase;
}
.navs > li {
  margin: 0 48px 0 0;
  position: relative;
}
.navs > li:not(:last-child):after {
  position: absolute;
  content: "/";
  top: 50%;
  right: 0;
  -webkit-transform: translate(24px, -50%);
          transform: translate(24px, -50%);
  color: #6A6A6A;
}
.navs a {
  color: inherit;
}
.navs a:hover {
  color: #fff;
}

/*******************************************************
 *
 * Global Title
 *
 *******************************************************/
.ttl1 {
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
}
.ttl1 span {
  display: inline-block;
  padding: 0 0 12px;
  border-bottom: 1px solid #fff;
}

.ttl2 {
  font-size: 20px;
  line-height: 1;
  display: inline-block;
  padding: 0 0 10px;
  border-bottom: 1px solid #fff;
}

.ttl3 {
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 100px;
}
.ttl3 small {
  display: block;
  color: #5E5C5C;
  font-size: 14px;
  line-height: 1;
  margin: 15px 0 0;
}

/*******************************************************
 *
 * Global Button
 *
 *******************************************************/
.btn {
  max-width: 159px;
}
.btn a {
  width: 100%;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11.5px 15px;
  border: 1px solid #fff;
  border-radius: 50px;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: #fff;
  margin: 0 10px 0 0;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.btn a:hover {
  color: #000;
  background: #fff;
  opacity: 1;
}
.btn a:hover:before {
  background: #000;
}

/*******************************************************
 *
 * Slick Arrows
 *
 *******************************************************/
.sliderNav .prev, .sliderNav .next {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  border: 1px solid #fff;
  cursor: pointer;
}
.sliderNav .prev.slick-disabled, .sliderNav .next.slick-disabled {
  opacity: 0.2;
}
.sliderNav .prev {
  margin: 0 16px 0 0;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.sliderNav img {
  max-width: 14px;
}

/*******************************************************
 *
 * Column 2
 *
 *******************************************************/
.col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.col2 .col:first-child {
  width: 100%;
}
@media (min-width: 992px) {
  .col2 .col:first-child {
    padding: 10px 0 0;
    width: 22.2222222222%;
  }
}
.col2 .col:first-child .ttl1 {
  margin: 0 0 50px;
  position: relative;
}
.col2 .col:first-child .ttl1:after {
  position: absolute;
  left: 0;
  bottom: -50px;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0.2;
}
.col2 .col:first-child .btn {
  margin: 100px 0 0;
}
.col2 .col:last-child {
  width: 100%;
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .col2 .col:last-child {
    margin: 0;
    width: 68.5185185185%;
  }
}
.col2 .col:last-child > p:not(:first-of-type) {
  margin: 25px 0 0;
}

/*******************************************************
 *
 * Text and Banner
 *
 *******************************************************/
.txtBnr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.txtBnr .col:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (min-width: 992px) {
  .txtBnr .col:first-child {
    margin: 50px 0 0;
    width: 59.2592592593%;
  }
}
.txtBnr .col:first-child .ttl1 {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.txtBnr .col:first-child .ttl1 span {
  padding: 0 0 0 12px;
  border-bottom: none;
  border-left: 1px solid #fff;
}
.txtBnr .col:first-child .txt {
  margin: 0 0 0 9.2592592593%;
}
.txtBnr .col:first-child .txt p {
  margin: 15px 0 0;
}
.txtBnr .col:first-child .emp {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0 !important;
}
@media (min-width: 1200px) {
  .txtBnr .col:first-child .emp {
    font-size: 30px;
  }
}
.txtBnr .col:first-child .emp + p {
  margin: 45px 0 0;
}
.txtBnr .col:first-child .btn {
  position: relative;
  left: calc(50% - 50px);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 85px 0 0 !important;
}
@media (min-width: 992px) {
  .txtBnr .col:first-child .btn {
    position: initial;
    margin: 80px 0 0 auto !important;
  }
}
.txtBnr .col:last-child {
  width: calc(100% + 40px);
  margin: 100px -20px 0;
}
@media (min-width: 992px) {
  .txtBnr .col:last-child {
    margin: 0;
    width: 31.4814814815%;
  }
}

/*******************************************************
 *
 * Pagination
 *
 *******************************************************/
.pagination {
  margin: 100px 0 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pagination .page-numbers {
  width: 46px;
  height: 46px;
  border-radius: 100%;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  opacity: 0.2;
}
.pagination .page-numbers:not(:last-child) {
  margin: 0 15px 0 0;
}
.pagination .page-numbers:hover, .pagination .page-numbers.current {
  opacity: 1;
}

/*******************************************************
 *
 * Header
 *
 *******************************************************/
.header {
  padding: 20px 0;
  z-index: 3;
}
.header .container {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .header .container {
    height: 60px;
    width: calc(100% - 80px);
  }
  .header .logo {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .header .logo__txt {
    display: none;
  }
}

.logo {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.logo__txt {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin: 0 0 0 15px;
}
@media (min-width: 1200px) {
  .logo__txt {
    font-size: 20px;
  }
}
.logo img {
  max-width: 146px;
}

/*==============================
 Fixed Header
===============================*/
.fh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0 0 20px;
  z-index: 10;
}
@media (min-width: 992px) {
  .fh {
    height: 100vh;
    background: #000;
    padding: 60px 10px 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fh__links {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.fh__links > li {
  margin: 0 0 48px;
}
.fh__links > li:after {
  display: none;
}
.fh__links a {
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media only screen and (max-width: 991px) {
  .fh #breadcrumbs {
    display: none;
  }
}

/*==============================
 Mega Menu
===============================*/
.megaMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 0 40px;
  background: rgba(0, 0, 0, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow-y: auto;
  -webkit-transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  transition: -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s, -webkit-transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  -moz-transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  -webkit-transition: transform cubic-bezier(0.8, 0, 0.1, 1) 0.9s 0.2s;
  z-index: 5;
}
@media (min-width: 992px) {
  .megaMenu {
    padding: 0 5.8666666667% 0 100px;
  }
}
.megaMenu.is-expanded {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.megaMenu.is-expanded .inner {
  opacity: 1;
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}
.megaMenu .inner {
  width: 100%;
  padding: 100px 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  opacity: 0;
  -webkit-transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
  transition: opacity ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
  transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
  transition: opacity ease 0.6s 0s, transform ease 0.6s 0s, -webkit-transform ease 0.6s 0s;
  -moz-transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
  -webkit-transition: opacity ease 0.6s 0s, transform ease 0.6s 0s;
}
@media (min-width: 992px) {
  .megaMenu .inner {
    padding: 0;
  }
}
.megaMenu .nav {
  width: 100%;
  max-width: 500px;
}
@media (min-width: 992px) {
  .megaMenu .nav {
    max-width: unset;
    width: 23.6280487805%;
  }
}
.megaMenu .nav > li:not(:first-child) {
  margin: 35px 0 0;
}
.megaMenu .nav li a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
  padding: 0 0 0 27px;
  display: block;
}
@media (min-width: 1200px) {
  .megaMenu .nav li a {
    font-size: 30px;
  }
}
.megaMenu .nav li a:hover, .megaMenu .nav li a:hover * {
  color: #5E5C5C;
}
.megaMenu .nav__num {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.megaMenu .nav__jp {
  display: block;
  color: #5E5C5C;
  font-size: 14px;
  margin: 10px 0 0;
}
.megaMenu__bnr {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media (min-width: 992px) {
  .megaMenu__bnr {
    width: 66.3109756098%;
  }
}
.megaMenu__bnr .imgWrap {
  width: 55.8139534884%;
}
.megaMenu__bnr .logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 0 0 11.6279069767%;
}
.megaMenu__bnr .logo__txt {
  font-size: 1.067vw;
  margin: 15px 0 0;
}
@media (min-width: 1440px) {
  .megaMenu__bnr .logo__txt {
    font-size: 14px;
  }
}

/*==============================
 Burger Menu
===============================*/
.burgerIcon {
  width: 30px;
  height: 23px;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.burgerIcon div {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.burgerIcon:hover div, .burgerIcon.is-open div {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.burgerIcon:hover div:nth-child(2), .burgerIcon.is-open div:nth-child(2) {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}

.burgerMenu {
  width: 40px;
  height: 30px;
  position: relative;
  cursor: pointer;
  z-index: 99;
}
.burgerMenu div {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #000;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.burgerMenu div:nth-child(1) {
  top: 0px;
}
.burgerMenu div:nth-child(2) {
  top: 15px;
}
.burgerMenu div:nth-child(3) {
  top: 30px;
}
.burgerMenu.is-open div:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
  left: 5px;
}
.burgerMenu.is-open div:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.burgerMenu.is-open div:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 28px;
  left: 5px;
}

/*******************************************************
 *
 * Footer
 *
 *******************************************************/
/*==============================
 Contact Us
===============================*/
.git {
  padding: 100px 0;
}
@media (min-width: 992px) {
  .git {
    padding: 200px 0;
  }
}
.git:after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: none;
  white-space: nowrap;
  color: #000;
  font-size: 14vw;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0.2;
  pointer-events: none;
}
@media (min-width: 992px) {
  .git:after {
    content: "contact us";
  }
}
.git .ttl1 {
  margin: 0 0 50px;
}
.git .btn {
  margin: 50px auto 0;
}

/*==============================
 Footer
===============================*/
.footer {
  padding: 0 0 50px;
}
.footer .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .footer .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer__logo p {
  font-size: 16px;
}
.footer__copyright {
  font-size: 12px;
  text-align: center;
  line-height: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 10px 0 0;
  padding: 35px 0 0;
}
@media (min-width: 992px) {
  .footer__copyright {
    text-align: right;
  }
}
.footer .navs {
  line-height: 1;
}

/*******************************************************
 *
 * Lower Page
 *
 *******************************************************/
.page .lpWrapper {
  position: relative;
  z-index: 2;
}
.page #contentFull {
  padding: 80px 0 0;
}
@media (min-width: 1200px) {
  .page #contentFull {
    padding: 180px 0 0;
  }
}

/*==============================
 Breadcrumbs
===============================*/
#breadcrumbs {
  color: #6A6A6A;
  font-size: 10px;
  letter-spacing: 0.2em;
  line-height: 2.4;
  text-transform: uppercase;
  text-align: center;
}
#breadcrumbs span > span {
  display: block;
}
#breadcrumbs a {
  color: inherit;
}

/*==============================
 Contact Form
===============================*/
.mw_wp_form .cf-row:not(:first-child) {
  margin: 50px 0 0;
}
.mw_wp_form .cf-row label {
  display: block;
  font-size: 14px;
  line-height: 1.7142857143;
  margin: 0 0 10px;
}
.mw_wp_form .cf-field {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.mw_wp_form .cf-field input, .mw_wp_form .cf-field textarea, .mw_wp_form .cf-field select {
  width: 100%;
  height: 48px;
  outline: none;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  padding: 0 20px;
}
.mw_wp_form .cf-field input:hover, .mw_wp_form .cf-field input:focus, .mw_wp_form .cf-field textarea:hover, .mw_wp_form .cf-field textarea:focus, .mw_wp_form .cf-field select:hover, .mw_wp_form .cf-field select:focus {
  background-color: #292929;
}
.mw_wp_form .cf-field input::-webkit-input-placeholder, .mw_wp_form .cf-field textarea::-webkit-input-placeholder, .mw_wp_form .cf-field select::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #49484D;
}
.mw_wp_form .cf-field input::-moz-placeholder, .mw_wp_form .cf-field textarea::-moz-placeholder, .mw_wp_form .cf-field select::-moz-placeholder { /* Firefox 19+ */
  color: #49484D;
}
.mw_wp_form .cf-field input:-ms-input-placeholder, .mw_wp_form .cf-field textarea:-ms-input-placeholder, .mw_wp_form .cf-field select:-ms-input-placeholder { /* IE 10+ */
  color: #49484D;
}
.mw_wp_form .cf-field input:-moz-placeholder, .mw_wp_form .cf-field textarea:-moz-placeholder, .mw_wp_form .cf-field select:-moz-placeholder { /* Firefox 18- */
  color: #49484D;
}
.mw_wp_form .cf-field textarea {
  height: 192px;
  resize: none;
  padding: 20px;
}
.mw_wp_form .cf-field select {
  color: #49484D;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/common/select_arrow.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) center;
  background-size: 16px 9px;
}
.mw_wp_form .cf-radio > label {
  margin: 0 0 20px;
}
.mw_wp_form .cf-radio .cf-field {
  border: none;
}
.mw_wp_form .cf-radio input:checked + .mwform-radio-field-text:before {
  background: #fff;
}
.mw_wp_form .mwform-radio-field {
  display: inline-block;
  margin: 0 !important;
}
.mw_wp_form .mwform-radio-field:not(:last-of-type) {
  margin: 0 50px 0 0 !important;
}
.mw_wp_form .mwform-radio-field > label {
  margin: 0;
}
.mw_wp_form .mwform-radio-field input {
  display: none;
}
.mw_wp_form .mwform-radio-field .mwform-radio-field-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mw_wp_form .mwform-radio-field .mwform-radio-field-text:before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 100%;
  border: 1px solid #fff;
  margin: 0 10px 0 0;
}
.mw_wp_form .cf-agree {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 100px 0 0;
  position: relative;
}
.mw_wp_form .cf-agree .mwform-checkbox-field input {
  display: none;
}
.mw_wp_form .cf-agree .mwform-checkbox-field .mwform-checkbox-field-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0;
}
.mw_wp_form .cf-agree .mwform-checkbox-field .mwform-checkbox-field-text:before {
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 3px;
  margin: 0 15px 0 0;
  pointer-events: none;
}
.mw_wp_form .cf-agree .mwform-checkbox-field .mwform-checkbox-field-text:after {
  position: absolute;
  left: 5px;
  top: 1px;
  font-size: 16px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  opacity: 0;
}
.mw_wp_form .cf-agree .mwform-checkbox-field input:checked + .mwform-checkbox-field-text:after {
  opacity: 1;
}
.mw_wp_form .cf-agreeTxt a {
  color: #fff;
  text-decoration: underline;
}
.mw_wp_form .cf-btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 100px 0 0;
}
.mw_wp_form .cf-btn {
  position: relative;
  cursor: pointer;
}
.mw_wp_form .cf-btnTxt {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.mw_wp_form .cf-btnTxt:before {
  position: absolute;
  content: "";
  top: 50%;
  width: 48px;
  height: 1px;
  background: #fff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.mw_wp_form .cf-btnTxt:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 100%;
  border: 1px solid transparent;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
}
.mw_wp_form .cf-btn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.mw_wp_form .cf-btn:hover {
  color: #1181a0;
  opacity: 1;
}
.mw_wp_form .cf-btn:hover .cf-btnTxt {
  color: #1181a0;
  padding: 0 25px 0 0;
}
.mw_wp_form .cf-btn:hover .cf-btnTxt:before {
  background: #1181a0;
  -webkit-transform: translate(-25px, -50%);
          transform: translate(-25px, -50%);
}
.mw_wp_form .cf-btn:hover .cf-btnTxt:after {
  background: transparent;
  border-color: #1181a0;
  width: 48px;
  height: 48px;
}
.mw_wp_form .cf-btn br {
  display: none;
}
.mw_wp_form .cf-back {
  display: none;
  padding: 0 0 0 72px;
}
.mw_wp_form .cf-back .cf-btnTxt:before, .mw_wp_form .cf-back .cf-btnTxt:after {
  left: 0;
}
.mw_wp_form .cf-back:hover .cf-btnTxt {
  padding: 0 0 0 25px;
}
.mw_wp_form .cf-back:hover .cf-btnTxt:before {
  -webkit-transform: translate(25px, -50%);
          transform: translate(25px, -50%);
}
.mw_wp_form .cf-send {
  padding: 0 72px 0 0;
  margin: 0 0 0 auto;
}
.mw_wp_form .cf-send .cf-btnTxt:before, .mw_wp_form .cf-send .cf-btnTxt:after {
  right: 0;
}
.mw_wp_form .cf-send span:last-child {
  display: none;
}
.mw_wp_form .error {
  position: absolute;
  left: 0;
  bottom: -25px;
}

.mw_wp_form_confirm .cf-back, .mw_wp_form_confirm .cf-send span:last-child {
  display: block;
}
.mw_wp_form_confirm .cf-send span:first-child, .mw_wp_form_confirm .cf-agree {
  display: none;
}

/*******************************************************
 *
 * Lists
 *
 *******************************************************/
/*==============================
 List 1
===============================*/
.list1__link {
  display: block;
  color: #fff;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.list1__link:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: width 0.25s ease-in-out;
  -moz-transition: width 0.25s ease-in-out;
  -webkit-transition: width 0.25s ease-in-out;
}
.list1__link:hover:after {
  width: 100%;
}
.list1__date {
  font-size: 14px;
  line-height: 1.7142857143;
}
.list1__ttl {
  margin: 15px 0 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list1__item:first-child .list1__link {
  padding-top: 0;
}

/*==============================
 List 2
===============================*/
.list2__item {
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .list2__item {
    max-width: unset;
    margin: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.list2__item:not(:first-child) {
  margin: 100px auto 0;
}
@media (min-width: 1200px) {
  .list2__item:not(:first-child) {
    margin: 200px 0 0;
  }
}
.list2__img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 100%;
  margin: 0 0 50px;
}
@media (min-width: 768px) {
  .list2__img {
    margin: 0;
    width: 50%;
  }
}
.list2__con {
  font-size: 14px;
  line-height: 1.7142857143;
  width: 100%;
}
@media (min-width: 768px) {
  .list2__con {
    width: 40.7407407407%;
  }
}
.list2__con .ttl2 {
  margin: 0 0 25px;
}
.list2__con p:not(:first-of-type) {
  margin: 25px 0 0;
}

/*==============================
 List 3
===============================*/
.list3__item:not(:first-child) {
  margin: 50px 0 0;
}
.list3 a {
  display: block;
  color: #fff;
  font-weight: bold;
  position: relative;
  padding: 0 0 0 37px;
}
.list3 a:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.list3 a:after {
  position: absolute;
  top: 6px;
  left: 8px;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/*==============================
 List 4
===============================*/
.list4__item {
  font-size: 30px;
  font-weight: bold;
}
.list4__item:not(:first-child) {
  margin: 50px 0 0;
}
.list4__item span {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 10px;
}

/*==============================
 List 5
===============================*/
.list5__item {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.list5__item:first-child {
  padding-top: 0;
}
.list5__item a {
  color: #fff;
  text-decoration: underline;
}
.list5__ttl {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 15px;
}

/*==============================
 List 6
===============================*/
.list6__item {
  padding: 0 0 0 18px;
  position: relative;
}
.list6__item:before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

/*==============================
 List 7
===============================*/
.list7__item {
  line-height: 1.5;
}
.list7__item:not(:first-child) {
  margin: 50px 0 0;
}
.list7__item p:not(:first-child) {
  margin: 15px 0 0;
}
.list7__ttl {
  font-weight: bold;
  padding: 0 0 30px;
  margin: 0 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/*******************************************************
 *
 * Top Page
 *
 *******************************************************/
.home #breadcrumbs {
  display: none;
}

/*==============================
 Top Banner
===============================*/
.topBnr {
  height: calc(100vh - 100px);
}
.topBnr__carousel {
  overflow: hidden;
  width: 94.9545913219%;
  height: 86.5591397849%;
}
@media (min-width: 992px) {
  .topBnr__carousel {
    width: 82.1428571429%;
  }
}
.topBnr__carousel:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.topBnr__carousel .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
}
.topBnr__carousel .slider .slick-list, .topBnr__carousel .slider div, .topBnr__carousel .slider img, .topBnr__carousel .slider li, .topBnr__carousel .slider img {
  width: 100%;
  height: 100%;
}
.topBnr__carousel .slider img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  transition: all 4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transition: all 4s cubic-bezier(0.7, 0, 0.3, 1);
  -moz-transition: all 4s cubic-bezier(0.7, 0, 0.3, 1);
}
.topBnr__carousel .slick-active img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.topBnr__caption {
  position: absolute;
  width: 100%;
  bottom: 26.8817204301%;
  font-size: 14px;
  font-weight: bold;
  line-height: 2;
  text-align: right;
  padding-right: 6.0544904137%;
  z-index: 2;
}
@media (min-width: 992px) {
  .topBnr__caption {
    font-size: 18px;
    padding-right: 50px;
  }
}
.topBnr__caption h1 {
  font-size: 50px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  margin: -6px 0 0;
}
@media (min-width: 768px) {
  .topBnr__caption h1 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .topBnr__caption h1 {
    font-size: 96px;
  }
}
.topBnr__caption h1 span {
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
}
.topBnr__nav {
  position: absolute;
  right: 0;
  bottom: 45px;
  width: 100%;
  padding: 0 100px 0 0;
}
.topBnr__nav .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.topBnr__nav .slick-dots li, .topBnr__nav .slick-dots button {
  font-size: 0;
  padding: 0;
}
.topBnr__nav .slick-dots li {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
}
.topBnr__nav .slick-dots button {
  width: 100%;
  height: 100%;
  background: #6A6A6A;
  border: none;
}
.topBnr__nav .slick-dots .slick-active {
  width: 120px;
}
.topBnr__nav .slick-dots .slick-active button {
  background: #fff;
}
.topBnr .scroll {
  position: absolute;
  left: 55px;
  bottom: -10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transform-origin: left;
          transform-origin: left;
  z-index: 3;
}
.topBnr .scroll .line {
  width: 120px;
  height: 1px;
  background: #6A6A6A;
  position: relative;
  margin: 0 10px 0 0;
  overflow: hidden;
}
.topBnr .scroll .line:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(#67b26f), color-stop(#3db38b), color-stop(#00b2a5), color-stop(#00aebc), to(#01a9cb));
  background: linear-gradient(to right, #67b26f, #3db38b, #00b2a5, #00aebc, #01a9cb);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: scrollLine 3s ease-in-out infinite normal;
  animation: scrollLine 3s ease-in-out infinite normal;
}
.topBnr .scroll p {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background-image: -webkit-gradient(linear, left top, right top, from(#67b26f), color-stop(#3db38b), color-stop(#00b2a5), color-stop(#00aebc), to(#01a9cb));
  background-image: linear-gradient(to right, #67b26f, #3db38b, #00b2a5, #00aebc, #01a9cb);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes scrollLine {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  15% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  30% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes scrollLine {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  15% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  30% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/*==============================
 Top Business
===============================*/
.topBusiness {
  padding: 100px 0;
}
@media (min-width: 992px) {
  .topBusiness {
    margin: 80px 0 0;
  }
}
.topBusiness:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 150px);
  background: #000;
}
@media (min-width: 992px) {
  .topBusiness:before {
    left: initial;
    right: 0;
    width: calc(100% - 40px);
  }
}
@media (min-width: 1440px) {
  .topBusiness:before {
    width: calc(100% - 100px);
  }
}
.topBusiness__top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.topBusiness .slider {
  margin: 50px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: none;
  border-right: none;
}
.topBusiness .slider__item {
  padding: 30px;
  border-left: 0.5px solid rgba(255, 255, 255, 0.2);
  border-right: 0.5px solid rgba(255, 255, 255, 0.2);
}
.topBusiness .slider .ttl2 {
  width: 100%;
  margin: 0 0 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 992px) {
  .topBusiness .slider .ttl2 {
    width: auto;
  }
}
.topBusiness .slider p {
  font-size: 14px;
  line-height: 1.7142857143;
  margin: 12px 0 0;
}
.topBusiness .slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.topBusiness .slider .slick-slide {
  height: inherit !important;
}
.topBusiness .slider .slick-slide > div, .topBusiness .slider .slick-slide li {
  height: 100%;
}
.topBusiness .btn {
  margin: 50px auto 0;
}
@media only screen and (max-width: 991px) {
  .topBusiness .slick-list {
    padding-right: 26.2881177708% !important;
  }
}

/*==============================
 Top News
===============================*/
.topNews {
  padding: 100px 0;
}
@media (min-width: 992px) {
  .topNews {
    padding: 200px 0;
  }
}

/*==============================
 Top Message
===============================*/
.topMessage:before {
  position: absolute;
  content: "";
  left: 0;
  top: 14%;
  width: 100%;
  height: 68.8%;
  background: #000;
  display: none;
}
@media (min-width: 992px) {
  .topMessage:before {
    display: block;
  }
}
.topMessage .col:first-child {
  position: relative;
}
.topMessage .col:first-child:before {
  position: absolute;
  content: "";
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 86.8819374369%;
  height: calc(100% - 40px);
  background: #000;
}
@media (min-width: 992px) {
  .topMessage .col:first-child:before {
    display: none;
  }
}
.topMessage .col:first-child .ttl1, .topMessage .col:first-child .txt {
  position: relative;
  z-index: 2;
}
.topMessage .col:last-child:before {
  width: 200%;
  right: -100%;
}

/*******************************************************
 *
 * About Page
 *
 *******************************************************/
.page-template-about .sec1 {
  position: relative;
  z-index: 2;
}
.page-template-about .sec1 .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .page-template-about .sec1 .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.page-template-about .sec1 .container .col:first-child {
  margin: 100px 0 0;
}
@media (min-width: 992px) {
  .page-template-about .sec1 .container .col:first-child {
    margin: 0;
  }
}
.page-template-about .sec1 .container .col:last-child {
  width: 100%;
  max-height: 300px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .page-template-about .sec1 .container .col:last-child {
    max-height: unset;
    width: 59.2592592593%;
  }
}
.page-template-about .sec2 {
  margin: 100px 0 0;
}
.page-template-about .sec2 .panel {
  padding: 100px 0;
  position: relative;
}
.page-template-about .sec2 .panel:nth-child(odd):before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: calc(100% - 100px);
  height: 100%;
  background: #000;
}
.page-template-about .sec2 .col2 {
  position: relative;
  z-index: 2;
}
.page-template-about .sec2 .col2:last-child p[style="text-align: right;"] {
  font-weight: bold;
  margin: 55px 0 0;
}

/*******************************************************
 *
 * Contact Page
 *
 *******************************************************/
.page-template-contact .mw_wp_form_complete .contactMessage {
  display: none;
}
.page-template-contact .lpWrapper .container {
  margin-bottom: 100px;
}
@media (min-width: 992px) {
  .page-template-contact .lpWrapper .container {
    margin-bottom: 200px;
  }
}
.page-template-contact .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-template-contact .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.page-template-contact .col:first-child {
  width: 100%;
  margin: 50px 0 0;
}
@media (min-width: 768px) {
  .page-template-contact .col:first-child {
    margin: 0;
    width: 63.4259259259%;
  }
}
.page-template-contact .col:first-child .ttl3 {
  margin: 0 0 50px;
}
.page-template-contact .col:first-child #mw_wp_form_mw-wp-form-75 {
  margin: 90px 0 0;
}
.page-template-contact .col:last-child {
  width: 100%;
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child {
    width: 145px;
    margin: 0 0 0 9.2592592593%;
  }
}
.page-template-contact .col:last-child .status {
  font-size: 14px;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child .status {
    display: block;
  }
}
.page-template-contact .col:last-child .status:before {
  position: absolute;
  top: 4.5px;
  left: 50%;
  content: "";
  height: 1px;
  width: calc(100% - 12px);
  background: #333;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child .status:before {
    top: 50%;
    left: 4.5px;
    width: 1px;
    height: calc(100% - 12px);
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.page-template-contact .col:last-child .status__item {
  width: 33.33%;
  color: #333;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  text-align: center;
  padding: 0 10px;
  z-index: 2;
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child .status__item {
    width: auto;
    padding: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: initial;
  }
}
.page-template-contact .col:last-child .status__item:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  margin: 0 0 15px;
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child .status__item:before {
    margin: 6px 17px 0 0;
  }
}
@media (min-width: 768px) {
  .page-template-contact .col:last-child .status__item:not(:first-child) {
    margin: 20px 0 0;
  }
}
.page-template-contact .col:last-child .status__item.is-current {
  color: #fff;
}
.page-template-contact .col:last-child .status__item.is-current:before {
  background: #fff;
}

/*******************************************************
 *
 * News Page
 *
 *******************************************************/
.page-template-news .col:first-child .ttl3 {
  margin: 0;
}

/*******************************************************
 *
 * Single News Page
 *
 *******************************************************/
.single #contentFull {
  padding: 70px 0 0;
}
@media (min-width: 1200px) {
  .single #contentFull {
    padding: 170px 0 0;
  }
}
.single__ttl {
  font-size: 30px;
  line-height: 1.2;
  padding: 0 0 52px;
  margin: 0 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.single__date {
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: right;
}
.single__con {
  margin: 50px 0 0;
  line-height: 1.5;
}
.single__con p:not(:first-of-type) {
  margin: 35px 0 0;
}
.single .btn {
  margin: 200px auto 0;
}

/*******************************************************
 *
 * Privacy Policy Page
 *
 *******************************************************/
.privacy-policy .git {
  display: none;
}
.privacy-policy .footer {
  margin: 200px 0 0;
}

/*******************************************************
 * SAMPLE PAGE *
 *******************************************************/
/* === sample__sec01 === */
.sample__sec01-list {
  margin: -25px -15px;
}
.sample__sec01-item {
  padding: 25px 15px;
  width: 100%;
}

/* === sample__sec02 === */
.sample__sec02-list {
  margin: -30px;
}
.sample__sec02-item {
  padding: 30px;
  width: 100%;
}

/*******************************************************
 * SAMPLE PAGE Media Queries *
 *******************************************************/
@media (min-width: 576px) {
  /* === sample__sec01 === */
  .sample__sec01-item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  /* === sample__sec01 === */
  .sample__sec01-item {
    width: 33.33333%;
  }
  /* === sample__sec02 === */
  .sample__sec02-item {
    width: 50%;
  }
}
/*******************************************************
 *
 * 404 Page
 *
 *******************************************************/
.error404 #contentFull {
  margin: 0;
  min-height: 500px;
  padding: 150px 0 0;
}
.error404 h1 {
  margin: 0 0 50px;
}
.error404__inner {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.error404__inner p:not(:first-of-type) {
  margin: 40px 0 0;
}