@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://use.fontawesome.com/releases/v5.0.6/css/all.css");
@import url("https://netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
input,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box; }

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block; }

body {
  line-height: 1; }

ul {
  list-style: none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%; }

img {
  vertical-align: bottom; }

html {
  height: 100%;
  font-size: 62.5%;
  padding: 2%; }
  @media only screen and (max-width: 767px) {
    html {
      padding: 0; } }

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  height: 100%;
  background: url("../img/common/bg_img.jpg"); }
  @media only screen and (max-width: 767px) {
    body {
      font-size: 1.2rem; } }

@media all and (-ms-high-contrast: none) {
  body {
    font-family: "メイリオ",Meiryo,"游ゴシック",YuGothic,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif; } }
a {
  text-decoration: none;
  color: #000;
  transition: 0.3s ease-in-out; }

input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.hamburger {
  display: block;
  width: 50px;
  height: 50px;
  position: fixed;
  top: 9%;
  right: 3.3%;
  z-index: 10000;
  padding: 12px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation; }
  @media only screen and (max-width: 767px) {
    .hamburger {
      top: 0px; } }

.hamburger__icon {
  position: relative;
  margin-top: 25px;
  margin-bottom: 25px; }

.hamburger__icon, .hamburger__icon:before, .hamburger__icon:after {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #313333;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s; }

.hamburger__icon:before, .hamburger__icon:after {
  position: absolute;
  content: ""; }

.hamburger__icon:before {
  top: -7px; }

.hamburger__icon:after {
  top: 7px; }

.hamburger.active .hamburger__icon {
  background-color: transparent; }

.hamburger.active .hamburger__icon:before, .hamburger.active .hamburger__icon:after {
  background-color: #fff; }

.hamburger.active .hamburger__icon:before {
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg); }

.hamburger.active .hamburger__icon:after {
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg); }

.fat-nav {
  top: 0;
  left: 0;
  z-index: 9999;
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(44, 57, 78, 0.95);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch; }

.fat-nav__wrapper {
  width: 100%;
  height: 100%;
  display: table;
  table-layout: fixed; }

.fat-nav.active {
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1); }

.fat-nav ul {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0; }

.fat-nav li {
  list-style-type: none;
  text-align: center;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: 0.03em; }

.fat-nav li, .fat-nav li a {
  color: #fff; }

.fat-nav li a {
  text-decoration: none;
  display: block;
  font-family: "Stint Ultra Condensed", cursive; }

.fat-nav_social {
  margin-top: 30px; }
  .fat-nav_social a {
    display: inline-block !important;
    font-size: 3.0rem; }
  .fat-nav_social__heading {
    margin-bottom: -10px;
    font-size: 2.6rem;
    font-family: "Yellowtail", cursive;
    display: flex;
    align-items: center;
    justify-content: center; }
    .fat-nav_social__heading:before {
      content: "";
      width: 10%;
      height: 1px;
      background: #fff;
      display: inline-block;
      margin-right: 10px; }
    .fat-nav_social__heading:after {
      content: "";
      width: 10%;
      height: 1px;
      background: #fff;
      display: inline-block;
      margin-left: 10px; }

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 60px 0; }

.wp-pagenavi a, .wp-pagenavi span {
  font-size: 12px;
  background-color: #e5e5e5;
  width: 30px;
  padding: 20px;
  margin: 0 5px;
  white-space: nowrap;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  border: none !important; }

.wp-pagenavi a:hover {
  color: #fff;
  background-color: #19a0c8; }

.wp-pagenavi .current {
  color: #fff;
  background-color: #419c27; }

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #2c394e;
  pointer-events: none;
  opacity: 0; }

.flickity-enabled {
  position: relative; }

.flickity-enabled:focus {
  outline: 0; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%; }

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%; }

.flickity-enabled
.is-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.flickity-enabled.is-draggable
.flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing; }

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  background: #313333;
  cursor: pointer;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media only screen and (max-width: 767px) {
    .flickity-prev-next-button {
      display: none; } }

.flickity-prev-next-button:hover {
  filter: alpha(opacity=60);
  opacity: .6; }

.flickity-prev-next-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #09F; }

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  opacity: .6; }

.flickity-prev-next-button.previous {
  left: -10px; }

.flickity-prev-next-button.next {
  right: -10px; }

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px; }

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px; }

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  opacity: .3;
  cursor: auto; }

.flickity-prev-next-button svg {
  position: absolute;
  left: 33%;
  top: 33%;
  width: 30%;
  height: 30%; }

.flickity-prev-next-button .arrow {
  fill: #fff; }

.flickity-prev-next-button.no-svg {
  color: #fff;
  font-size: 26px; }

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1; }

.flickity-rtl .flickity-page-dots {
  direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  opacity: .25;
  cursor: pointer; }

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  opacity: 1; }

/*!
 * animsition v4.0.1
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition, .animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd; }

.animsition-loading, .animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 2; }

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
  animation-name: animsition-loading; }

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }
@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn); } }
@-webkit-keyframes fade-in {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fade-in {
  0% {
    opacity: 0; }
  to {
    opacity: 1; } }
.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in; }

@-webkit-keyframes fade-out {
  0% {
    opacity: 1; }
  to {
    opacity: 0; } }
@keyframes fade-out {
  0% {
    opacity: 1; }
  to {
    opacity: 0; } }
.fade-out {
  -webkit-animation-name: fade-out;
  animation-name: fade-out; }

@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.fade-in-up {
  -webkit-animation-name: fade-in-up;
  animation-name: fade-in-up; }

@-webkit-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; } }
@keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; } }
.fade-out-up {
  -webkit-animation-name: fade-out-up;
  animation-name: fade-out-up; }

@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
  animation-name: fade-in-up-sm; }

@-webkit-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; } }
@keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; } }
.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
  animation-name: fade-out-up-sm; }

@-webkit-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
  animation-name: fade-in-up-lg; }

@-webkit-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }
@keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(-1000px);
    transform: translateY(-1000px);
    opacity: 0; } }
.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
  animation-name: fade-out-up-lg; }

@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
    transform: translateY(-500px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.fade-in-down {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; } }
@keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(500px);
    transform: translateY(500px);
    opacity: 0; } }
.fade-out-down {
  -webkit-animation-name: fade-out-down;
  animation-name: fade-out-down; }

@-webkit-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
@keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }
.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
  animation-name: fade-in-down-sm; }

@-webkit-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; } }
@keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0; } }
.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
  animation-name: fade-out-down-sm; }

.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
  animation-name: fade-in-down; }

@-webkit-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; } }
@keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; }
  to {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0; } }
.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
  animation-name: fade-out-down-lg; }

@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-left {
  -webkit-animation-name: fade-in-left;
  animation-name: fade-in-left; }

@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; } }
@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-500px);
    transform: translateX(-500px);
    opacity: 0; } }
.fade-out-left {
  -webkit-animation-name: fade-out-left;
  animation-name: fade-out-left; }

@-webkit-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
  animation-name: fade-in-left-sm; }

@-webkit-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; } }
@keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0; } }
.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
  animation-name: fade-out-left-sm; }

@-webkit-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
  animation-name: fade-in-left-lg; }

@-webkit-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; } }
@keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(-1500px);
    transform: translateX(-1500px);
    opacity: 0; } }
.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
  animation-name: fade-out-left-lg; }

@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-right {
  -webkit-animation-name: fade-in-right;
  animation-name: fade-in-right; }

@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; } }
@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(500px);
    transform: translateX(500px);
    opacity: 0; } }
.fade-out-right {
  -webkit-animation-name: fade-out-right;
  animation-name: fade-out-right; }

@-webkit-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
  animation-name: fade-in-right-sm; }

@-webkit-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; } }
@keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0; } }
.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
  animation-name: fade-out-right-sm; }

@-webkit-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
@keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }
.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
  animation-name: fade-in-right-lg; }

@-webkit-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; } }
@keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; }
  to {
    -webkit-transform: translateX(1500px);
    transform: translateX(1500px);
    opacity: 0; } }
.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
  animation-name: fade-out-right-lg; }

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
@keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
.rotate-in {
  -webkit-animation-name: rotate-in;
  animation-name: rotate-in; }

@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0; } }
@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: center center;
    opacity: 0; } }
.rotate-out {
  -webkit-animation-name: rotate-out;
  animation-name: rotate-out; }

@-webkit-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
@keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
  animation-name: rotate-in-sm; }

@-webkit-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0; } }
@keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    opacity: 0; } }
.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
  animation-name: rotate-out-sm; }

@-webkit-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
@keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    transform-origin: center center;
    opacity: 0; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; } }
.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
  animation-name: rotate-in-lg; }

@-webkit-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0; } }
@keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    transform-origin: center center;
    opacity: 1; }
  0%,to {
    -webkit-transform-origin: center center; }
  to {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    transform-origin: center center;
    opacity: 0; } }
.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
  animation-name: rotate-out-lg; }

@-webkit-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }
@keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; } }
.flip-in-x {
  -webkit-animation-name: flip-in-x;
  animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }
@keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
    transform: perspective(550px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(550px) rotateX(90deg);
    transform: perspective(550px) rotateX(90deg);
    opacity: 0; } }
.flip-out-x {
  -webkit-animation-name: flip-out-x;
  animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }
@keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; } }
.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
  animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }
@keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
    transform: perspective(100px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(100px) rotateX(90deg);
    transform: perspective(100px) rotateX(90deg);
    opacity: 0; } }
.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
  animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }
@keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; } }
.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
  animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }
@keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
    transform: perspective(1000px) rotateX(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(1000px) rotateX(90deg);
    transform: perspective(1000px) rotateX(90deg);
    opacity: 0; } }
.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
  animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }
@keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; } }
.flip-in-y {
  -webkit-animation-name: flip-in-y;
  animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }
@keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
    transform: perspective(550px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(550px) rotateY(90deg);
    transform: perspective(550px) rotateY(90deg);
    opacity: 0; } }
.flip-out-y {
  -webkit-animation-name: flip-out-y;
  animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }
@keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; } }
.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
  animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }
@keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
    transform: perspective(100px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(100px) rotateY(90deg);
    transform: perspective(100px) rotateY(90deg);
    opacity: 0; } }
.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
  animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }
@keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; }
  to {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; } }
.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
  animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }
@keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
    transform: perspective(1000px) rotateY(0deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(1000px) rotateY(90deg);
    transform: perspective(1000px) rotateY(90deg);
    opacity: 0; } }
.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
  animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    opacity: 0; }
  to {
    opacity: 1; } }
.zoom-in {
  -webkit-animation-name: zoom-in;
  animation-name: zoom-in; }

@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  50%,to {
    opacity: 0; } }
@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7); }
  50%,to {
    opacity: 0; } }
.zoom-out {
  -webkit-animation-name: zoom-out;
  animation-name: zoom-out; }

@-webkit-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0; }
  to {
    opacity: 1; } }
.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
  animation-name: zoom-in-sm; }

@-webkit-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50%,to {
    opacity: 0; } }
@keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95); }
  50%,to {
    opacity: 0; } }
.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
  animation-name: zoom-out-sm; }

@-webkit-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0; }
  to {
    opacity: 1; } }
.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
  animation-name: zoom-in-lg; }

@-webkit-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  50%,to {
    opacity: 0; } }
@keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1; }
  50% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4); }
  50%,to {
    opacity: 0; } }
.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
  animation-name: zoom-out-lg; }

@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  to {
    height: 0; } }
@keyframes overlay-slide-in-top {
  0% {
    height: 100%; }
  to {
    height: 0; } }
.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
  animation-name: overlay-slide-in-top; }

@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  to {
    height: 100%; } }
@keyframes overlay-slide-out-top {
  0% {
    height: 0; }
  to {
    height: 100%; } }
.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
  animation-name: overlay-slide-out-top; }

@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  to {
    height: 0; } }
@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%; }
  to {
    height: 0; } }
.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
  animation-name: overlay-slide-in-bottom; }

@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  to {
    height: 100%; } }
@keyframes overlay-slide-out-bottom {
  0% {
    height: 0; }
  to {
    height: 100%; } }
.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
  animation-name: overlay-slide-out-bottom; }

@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  to {
    width: 0; } }
@keyframes overlay-slide-in-left {
  0% {
    width: 100%; }
  to {
    width: 0; } }
.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
  animation-name: overlay-slide-in-left; }

@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  to {
    width: 100%; } }
@keyframes overlay-slide-out-left {
  0% {
    width: 0; }
  to {
    width: 100%; } }
.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
  animation-name: overlay-slide-out-left; }

@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  to {
    width: 0; } }
@keyframes overlay-slide-in-right {
  0% {
    width: 100%; }
  to {
    width: 0; } }
.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
  animation-name: overlay-slide-in-right; }

@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  to {
    width: 100%; } }
@keyframes overlay-slide-out-right {
  0% {
    width: 0; }
  to {
    width: 100%; } }
.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
  animation-name: overlay-slide-out-right; }

.img-animation {
  animation: img-opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative; }

.img-animation:before {
  animation: img-animation 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: url("../img/common/bg_img.jpg");
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1; }

@keyframes img-opacity {
  0% {
    opacity: 0; } }
@keyframes img-animation {
  100% {
    transform: translateX(100%); } }
.l-header__logo {
  width: 300px;
  position: absolute;
  text-align: center;
  display: inline-block;
  padding: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -50px;
  background: url("../img/common/bg_img.jpg");
  z-index: 10; }
  @media only screen and (max-width: 767px) {
    .l-header__logo {
      width: 150px;
      position: static;
      padding: 20px 0;
      display: block; }
      .l-header__logo img {
        width: 100%;
        height: auto; } }
.l-gnavi {
  margin: 40px auto 90px auto;
  border-top: solid 1px #313333;
  border-bottom: solid 1px #313333;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 500px; }
  .l-gnavi:before {
    width: 40px;
    height: 1px;
    content: "";
    background: #313333;
    display: block;
    left: -40px;
    position: absolute; }
  .l-gnavi:after {
    width: 40px;
    height: 1px;
    content: "";
    background: #313333;
    display: block;
    right: -40px;
    position: absolute; }
  @media only screen and (max-width: 767px) {
    .l-gnavi {
      display: none; } }
  .l-gnavi__inner {
    display: flex;
    justify-content: center;
    padding: 5px; }
  .l-gnavi li:first-child a {
    margin-left: 0; }
  .l-gnavi a {
    text-align: center;
    color: #313333;
    font-family: "Stint Ultra Condensed", cursive;
    display: block;
    font-size: 2.2rem;
    margin-left: 1em;
    transition: 800ms ease all;
    position: relative;
    border: none;
    line-height: 1;
    padding: 5px 0; }
    .l-gnavi a:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      bottom: 0;
      height: 2px;
      width: 0;
      background: #000;
      transition: 400ms ease all;
      right: inherit;
      top: inherit; }
    .l-gnavi a:hover:after {
      width: 100%;
      transition: 400ms ease all; }

.l-footer {
  position: relative;
  z-index: 2;
  background: #313333;
  margin: 0 -30px -30px;
  color: #fff;
  padding: 100px 0; }
  @media only screen and (max-width: 767px) {
    .l-footer {
      padding: 40px 0;
      margin: 0; } }
  .l-footer__inner {
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .l-footer__inner {
        display: block; } }
  .l-footer_contact {
    text-align: center;
    width: 42.8%;
    margin-left: auto; }
    @media only screen and (max-width: 767px) {
      .l-footer_contact {
        width: 100%;
        margin-bottom: 40px; } }
    .l-footer_contact__heading {
      font-size: 2.0rem;
      display: flex;
      align-items: center;
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .l-footer_contact__heading {
          font-size: 1.6rem; } }
      .l-footer_contact__heading:before, .l-footer_contact__heading:after {
        content: "";
        flex-grow: 1;
        height: 1px;
        background: #fff;
        display: block; }
      .l-footer_contact__heading:before {
        margin-right: .4em; }
      .l-footer_contact__heading:after {
        margin-left: .4em; }
    .l-footer_contact__btn {
      display: flex; }
      .l-footer_contact__btn li {
        flex: 1; }
        .l-footer_contact__btn li:first-child a {
          border-right: 0; }
      .l-footer_contact__btn a {
        font-family: "Stint Ultra Condensed", cursive;
        font-size: 2.8rem;
        color: #fff;
        display: block;
        border: solid 2px #fff;
        padding: 10px 0;
        letter-spacing: 0.05em; }
        @media only screen and (max-width: 767px) {
          .l-footer_contact__btn a {
            font-size: 2.0rem; } }
        .l-footer_contact__btn a:hover {
          background: #fff;
          color: #313333; }
        .l-footer_contact__btn a span {
          font-size: 2.0rem;
          margin: 5px; }
    .l-footer_contact__mail {
      font-size: 2.4rem; }
      .l-footer_contact__mail:before {
        font-family: "Font Awesome 5 Free";
        content: "\f0e0";
        font-size: 1.5rem;
        display: inline-block;
        margin-right: 5px; }
  .l-footer__text {
    margin: 0 30px 0 50px;
    font-size: 1.4rem; }
    @media only screen and (max-width: 767px) {
      .l-footer__text {
        margin: 0;
        margin-bottom: 40px; } }
  .l-footer__btm {
    margin-top: 100px !important;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .l-footer__btm {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .l-footer__btm {
        margin-top: 0 !important;
        display: block; } }
  .l-footer__navi {
    display: flex;
    justify-content: flex-start; }
    @media only screen and (max-width: 767px) {
      .l-footer__navi {
        display: block;
        border-top: solid 1px #414141;
        margin-bottom: 40px; } }
    .l-footer__navi li {
      margin-right: 1.5em; }
      @media only screen and (max-width: 767px) {
        .l-footer__navi li {
          margin: 0; } }
    .l-footer__navi a {
      font-size: 1.2rem;
      color: #929797; }
      @media only screen and (max-width: 767px) {
        .l-footer__navi a {
          margin-top: 0 !important;
          padding: 10px;
          border-bottom: solid 1px #414141;
          display: block; } }
  .l-footer__cr {
    font-family: "Stint Ultra Condensed", cursive;
    letter-spacing: 0.05em;
    margin-left: auto; }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .l-footer__cr {
        margin-top: 10px; } }
    @media only screen and (max-width: 767px) {
      .l-footer__cr {
        text-align: center; } }
  @media only screen and (max-width: 767px) {
    .l-footer__logo {
      text-align: center;
      margin-bottom: 30px; }
      .l-footer__logo img {
        width: 120px;
        height: auto; } }

.l-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  border: solid 3px #313333;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .l-wrapper {
      min-width: 100%;
      border: none;
      margin: 0;
      padding: 0; } }
  .l-wrapper:after {
    content: "";
    border: solid 1px #313333;
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(100% - 15px);
    height: calc(100% - 15px); }
    @media only screen and (max-width: 767px) {
      .l-wrapper:after {
        content: none; } }

.c-btn {
  background: url("../img/common/bg_img.jpg");
  position: relative;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  width: 200px;
  padding: 0 20px;
  line-height: 42px;
  border: solid 2px #313333;
  z-index: 10; }
  .c-btn--back {
    text-align: right; }
    .c-btn--back:after {
      content: "";
      width: 25px;
      height: 25px;
      background: url("../img/common/arrow.svg") no-repeat center;
      background-size: 100%;
      display: inline-block;
      position: absolute;
      left: 10px;
      top: 8px;
      transform: scale(-1, 1); }
  .c-btn:after {
    content: "";
    width: 25px;
    height: 25px;
    background: url("../img/common/arrow.svg") no-repeat center;
    background-size: 100%;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 8px; }
  @media only screen and (max-width: 767px) {
    .c-btn {
      width: 100%; } }
  .c-btn:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    content: '';
    background: #333;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s; }
  .c-btn:hover {
    color: #fff; }
    .c-btn:hover:before {
      transform-origin: left top;
      transform: scale(1, 1); }
    .c-btn:hover:after {
      background: url("../img/common/arrow_on.svg") no-repeat center; }
  .c-btn--s {
    background: none;
    border: none;
    padding: 0;
    width: 90px;
    line-height: 1;
    padding-bottom: 7px;
    border-bottom: solid 2px #fff;
    color: #fff; }
    .c-btn--s:before {
      content: none; }
    .c-btn--s:after {
      background: url("../img/common/arrow_on.svg") no-repeat center;
      position: absolute;
      top: -5px;
      right: 3px;
      transition: 0.3s ease-in-out; }
    .c-btn--s:hover {
      opacity: 0.6; }
      .c-btn--s:hover:after {
        right: -1px; }
  .c-btn__arrow {
    text-indent: -9999px;
    position: absolute;
    display: inline-block;
    color: #313333;
    vertical-align: middle;
    text-decoration: none;
    padding: 0 0 0 16px;
    right: 10px;
    top: 0; }
    .c-btn__arrow:before {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      content: "";
      vertical-align: middle;
      left: -5px;
      width: 15px;
      height: 1px;
      background: #313333; }
    .c-btn__arrow:after {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      content: "";
      vertical-align: middle;
      left: 3px;
      width: 6px;
      height: 6px;
      border-top: 1px solid #313333;
      border-right: 1px solid #313333;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    .c-btn__arrow--w {
      color: #fff;
      right: 0; }
      .c-btn__arrow--w:before {
        background: #fff; }
      .c-btn__arrow--w:after {
        border-color: #fff; }
  .c-btn--l {
    display: block;
    margin: 0 auto;
    width: 300px;
    height: 80px;
    background: #313333;
    color: #fff;
    text-align: center;
    background: #2c394e;
    border: none;
    transition: 0.3s ease-in-out; }
    .c-btn--l:hover {
      opacity: 0.8; }

.c-inner {
  width: 83%;
  margin: 0 auto; }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .c-inner {
      width: 90%; } }
  @media only screen and (max-width: 767px) {
    .c-inner {
      width: 100%;
      padding: 0 30px; } }
  .c-inner--l {
    width: 100%; }
  .c-inner--s {
    width: 800px; }
    @media only screen and (max-width: 767px) {
      .c-inner--s {
        width: 100%; } }

.c-section {
  width: 83%;
  margin: 0 auto; }

.c-p01 {
  margin-bottom: 2em;
  line-height: 2; }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .c-p01 {
      line-height: 1.7; } }
  @media only screen and (max-width: 767px) {
    .c-p01 {
      line-height: 1.7; } }

.c-heading01 {
  font-size: 3.0rem;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 3%;
  color: #313333; }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .c-heading01 {
      font-size: 2.6rem; } }
  @media only screen and (max-width: 767px) {
    .c-heading01 {
      font-size: 2.0rem;
      margin-bottom: 10px; } }
  .c-heading01--s {
    font-size: 2.2rem; }
    @media only screen and (max-width: 767px) {
      .c-heading01--s {
        font-size: 1.8rem; } }
.c-heading02 {
  font-size: 12.0rem;
  font-family: "Stint Ultra Condensed", cursive;
  color: #313333;
  margin-bottom: 5%;
  line-height: 0.8;
  position: relative;
  z-index: 2; }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .c-heading02 {
      font-size: 9.5rem; } }
  @media only screen and (max-width: 767px) {
    .c-heading02 {
      font-size: 6.5rem;
      margin-bottom: 10px; } }
  .c-heading02--s {
    font-size: 8.0rem;
    line-height: 0.9; }
    @media only screen and (max-width: 767px) {
      .c-heading02--s {
        font-size: 6.5rem;
        margin-bottom: 10px; } }
  .c-heading02--w {
    color: #fff; }
  @media only screen and (max-width: 767px) {
    .c-heading02--bb {
      text-align: center; } }
  .c-heading02--bb:after {
    content: "";
    width: 40px;
    height: 1px;
    background: #313333;
    display: inline-block;
    margin: 40px 0 30px 0; }
  .c-heading02--center:after {
    margin: 40px auto; }
  .c-heading02 span {
    display: block;
    font-size: 2.0rem;
    color: #313333;
    font-weight: bold;
    margin-top: 10px; }
    @media only screen and (max-width: 767px) {
      .c-heading02 span {
        font-size: 1.4rem;
        margin-top: 5px; } }
  .c-heading02__jp {
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    margin-top: 15px; }

.c-table {
  border-top: solid 1px #bfbda5;
  margin-top: 50px; }
  @media only screen and (max-width: 767px) {
    .c-table {
      margin-top: 30px; } }
  .c-table td, .c-table th {
    text-align: left;
    border-bottom: solid 1px #bfbda5;
    padding: 30px 0; }
    @media only screen and (max-width: 767px) {
      .c-table td, .c-table th {
        display: block;
        padding: 15px 0; } }
  .c-table th {
    font-size: 2.2rem;
    font-weight: bold;
    width: 400px; }
    @media only screen and (max-width: 767px) {
      .c-table th {
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
        font-size: 1.8rem; } }
  @media only screen and (max-width: 767px) {
    .c-table td {
      padding-top: 10px; } }
  .c-table__number {
    display: flex;
    align-items: center; }
    .c-table__number dt {
      font-family: "Stint Ultra Condensed", cursive;
      font-size: 4.2rem !important;
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .c-table__number dt {
          font-size: 2.2rem !important; } }
      .c-table__number dt:after {
        content: "";
        width: 15px;
        height: 2px;
        background: #313333;
        display: inline-block;
        margin: 0 10px; }

.c-form {
  margin-bottom: 40px; }
  .c-form th {
    font-size: 1.5rem;
    width: 25%;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .c-form th {
        width: 100%; } }
  .c-form_txt {
    background: #fff;
    padding: 15px;
    width: 100%;
    position: relative;
    z-index: 10; }
  .c-form_required {
    font-weight: normal;
    font-size: 1.4rem;
    display: inline-block;
    color: #fff;
    line-height: 25px;
    padding: 0 5px;
    background: #c54f3d;
    position: absolute;
    top: 40%;
    right: 20px; }
    @media only screen and (max-width: 767px) {
      .c-form_required {
        position: static;
        margin-left: 15px; } }
  .c-form label {
    display: inline-block;
    position: relative;
    padding-left: 1em;
    line-height: 2em; }
  .c-form label input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto; }

.c-link_blank {
  background: #f2f7f8;
  padding: 10px;
  display: block;
  color: #19a0c8;
  margin-top: 30px; }
  .c-link_blank:before {
    font-family: FontAwesome;
    content: "\f109";
    margin-right: 10px; }
.c-text_link {
  color: #19a0c8; }
  .c-text_link:hover {
    text-decoration: underline; }

.c-date {
  font-family: "Oswald", sans-serif; }

.c-author {
  font-size: 1.5rem;
  font-family: "Stint Ultra Condensed", cursive;
  display: flex;
  align-items: center; }
  .c-author__img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 20px;
    margin-right: 10px; }
    @media only screen and (max-width: 767px) {
      .c-author__img {
        width: 26px;
        height: 26px;
        border-radius: 13px; } }
    .c-author__img img {
      width: 100%;
      height: auto; }

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 500ms; }

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

.c-flexbox {
  display: flex;
  align-items: center; }

.c-works_caset {
  width: 30%;
  margin-left: 30px; }
  .c-works_caset__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center; }
    .c-works_caset__inner__caption {
      color: #fff; }
    .c-works_caset__inner__mask {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      /* マスクを表示しない */
      background-color: rgba(44, 57, 78, 0.9);
      -webkit-transition: all 0.6s ease;
      transition: all 0.6s ease;
      display: flex;
      align-items: center;
      justify-content: center; }
  .c-works_caset img {
    width: 100%;
    height: auto;
    transition: transform 0.3s linear; }

.c-works_caset__inner:hover .c-works_caset__mask {
  opacity: 1;
  /* マスクを表示する */ }
.c-works_caset__inner:hover img {
  transform: scale(1.1); }

.c-social {
  position: fixed;
  z-index: 20;
  font-size: 1.8rem;
  top: 17%;
  right: 3.3%;
  width: 50px; }
  .c-social__heading {
    margin-top: 40px;
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    transform: rotate(90deg);
    align-items: center;
    margin-bottom: 30px; }
  .c-social__i {
    text-align: center;
    position: relative; }
    .c-social__i:before {
      margin: 0 auto;
      position: absolute;
      top: -20px;
      left: 0;
      right: 0;
      width: 1px;
      height: 15px;
      content: "";
      background: #313333; }
    .c-social__i a {
      display: block;
      text-align: center;
      color: #313333; }

.c-pagetop {
  display: block;
  position: fixed;
  bottom: 100px;
  right: 3.2%;
  z-index: 100;
  background: url("../img/common/arrow_on.svg") no-repeat center #313333;
  background-size: 30px;
  width: 50px;
  height: 50px;
  text-indent: -9999px;
  transform: rotate(-90deg); }

.c-tag {
  display: flex; }
  .c-tag li:last-child:after {
    content: none; }
  .c-tag li:after {
    content: ",";
    margin: 0 0.3em; }

.c-blockquote {
  position: relative;
  padding: 5px  30px 5px 55px;
  font-style: italic;
  margin-bottom: 30px;
  background: #fff; }
  .c-blockquote:before {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 38px;
    height: 30px;
    vertical-align: middle;
    text-align: center;
    content: "\f10d";
    font-family: FontAwesome;
    color: #fff;
    font-size: 12px;
    line-height: 32px;
    background: #313333;
    font-weight: 100;
    font-style: normal; }
  .c-blockquote:after {
    content: '';
    position: absolute;
    left: 8px;
    top: 30px;
    height: 0;
    width: 0;
    border-left: 19px solid #313333;
    border-right: 19px solid #313333;
    border-bottom: 10px solid transparent; }
  .c-blockquote p {
    position: relative;
    padding: 0;
    margin: 10px 0;
    z-index: 3;
    line-height: 1.7; }
  .c-blockquote cite {
    display: block;
    text-align: right;
    color: #888888;
    font-size: 1.2rem; }

.p-hero {
  position: relative;
  z-index: 2;
  margin-top: -60px; }
  @media only screen and (max-width: 767px) {
    .p-hero {
      margin-top: 0px; } }
  .p-hero__img {
    position: relative;
    left: -4%;
    top: 0px;
    width: 65.2%; }
    @media only screen and (max-width: 767px) {
      .p-hero__img {
        position: static;
        width: 100%; } }
    .p-hero__img img {
      width: 100%;
      height: auto; }
  .p-hero__cont {
    width: 40%;
    position: absolute;
    right: 5.9%;
    top: 40px;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-hero__cont {
        position: static;
        width: 100%;
        padding: 10px 30px 0;
        margin-bottom: 40px; } }
  .p-hero__catch {
    font-size: 15vh;
    line-height: 0.8;
    color: #313333;
    font-family: "Stint Ultra Condensed", cursive;
    margin-bottom: 30px;
    position: relative; }
    .p-hero__catch span {
      position: absolute;
      line-height: 0.8;
      right: 10%;
      bottom: 0;
      display: block;
      font-size: 10vh;
      color: #c54f3d;
      font-family: "Yellowtail", cursive;
      text-align: right;
      transform: rotate(-4deg); }
    @media only screen and (max-width: 767px) {
      .p-hero__catch {
        margin-bottom: 20px; } }
    .p-hero__catch img {
      width: 100%;
      height: auto; }
  .p-hero_2 {
    margin: 0 auto;
    clear: both;
    display: flex;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-hero_2 {
        display: block;
        padding: 20px 30px 0 30px; } }
    .p-hero_2__cont {
      width: 490px;
      margin: 0 5% 0 auto; }
      @media only screen and (max-width: 767px) {
        .p-hero_2__cont {
          width: 100%;
          margin: 0px 0 0 0; } }
    .p-hero_2__img {
      position: relative;
      top: 0;
      flex: 1; }
      @media only screen and (max-width: 767px) {
        .p-hero_2__img {
          height: 220px;
          text-align: center; } }
      .p-hero_2__img img {
        width: 100%;
        height: auto; }
        @media only screen and (max-width: 767px) {
          .p-hero_2__img img {
            width: auto;
            height: 100%; } }

text {
  font-family: "Yellowtail", cursive;
  /* 色はお好みで */
  stroke: #2c394e;
  /* 色はお好みで */
  fill: #2c394e;
  /* 文字が大きい方がアニメーションが綺麗なので50pxを指定 */
  font-size: 15vh;
  /* 100%だと最後まで表示されないので多めに設定する */
  stroke-dasharray: 150% 150%;
  /* 線が細いほうがアニメーションが綺麗なので0.5pxを指定 */
  stroke-width: 0.5px;
  -webkit-animation: stroke-anim 5s linear;
  animation: stroke-anim 5s linear; }

@-webkit-keyframes stroke-anim {
  0% {
    /* 100%だと最後まで表示されないので多めに設定する */
    stroke-dashoffset: 150%;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0%;
    fill: black; } }
@keyframes stroke-anim {
  0% {
    /* 100%だと最後まで表示されないので多めに設定する */
    stroke-dashoffset: 150%;
    fill: transparent; }
  50% {
    fill: transparent; }
  100% {
    stroke-dashoffset: 0%;
    fill: black; } }
.p-service {
  display: flex;
  margin-top: 8%;
  align-items: center; }
  .p-service_hero__img {
    position: relative;
    top: 0;
    width: 75%;
    left: -6%; }
    @media only screen and (max-width: 767px) {
      .p-service_hero__img {
        width: 100%;
        position: static; } }
  @media only screen and (min-width: 768px) and (max-width: 1199px) {
    .p-service {
      margin-top: 12%; } }
  @media only screen and (max-width: 767px) {
    .p-service {
      position: relative;
      display: block;
      margin: 0 0 40px 0; } }
  .p-service__cont {
    width: 430px; }
    @media only screen and (max-width: 767px) {
      .p-service__cont {
        width: 100%;
        position: relative;
        z-index: 2; } }
  .p-service__img {
    flex: auto;
    width: 60%;
    margin-left: 3%;
    margin-top: 5%; }
    @media only screen and (max-width: 767px) {
      .p-service__img {
        position: absolute;
        top: 0;
        right: 0;
        width: 42%;
        z-index: 1; } }
    .p-service__img img {
      width: 100%;
      height: auto; }
  .p-service_sec01 {
    max-width: 1200px;
    margin-top: 60px;
    justify-content: space-evenly; }
    @media only screen and (max-width: 767px) {
      .p-service_sec01 {
        display: block; } }
    .p-service_sec01__text {
      width: 500px; }
      @media only screen and (max-width: 767px) {
        .p-service_sec01__text {
          width: 100%; } }
    .p-service_sec01__img {
      max-width: 450px;
      flex: 1;
      margin-left: 10%; }
      .p-service_sec01__img img {
        width: 100%;
        height: auto; }
  .p-service_sec02 {
    margin-top: 60px;
    flex-direction: row-reverse;
    justify-content: space-evenly; }
    @media only screen and (max-width: 767px) {
      .p-service_sec02 {
        display: block;
        margin-top: 40px; } }
    .p-service_sec02__text {
      width: 500px; }
      @media only screen and (max-width: 767px) {
        .p-service_sec02__text {
          width: 100%; } }
    .p-service_sec02__img {
      flex: 1;
      margin-right: 5%;
      margin-left: -8%;
      max-width: 740px; }
      @media only screen and (max-width: 767px) {
        .p-service_sec02__img {
          max-width: 100%;
          margin: 0; } }
      .p-service_sec02__img img {
        width: 100%;
        height: auto; }
  .p-service_sec03 {
    margin-top: 80px; }
    @media only screen and (max-width: 767px) {
      .p-service_sec03 {
        margin: 40px 0; } }
    .p-service_sec03__heading {
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .p-service_sec03__heading {
          text-align: left;
          font-size: 4.5rem; } }

.p-news {
  position: relative;
  margin: 0 auto;
  width: 95%; }
  @media only screen and (max-width: 767px) {
    .p-news {
      position: static;
      width: 100%;
      margin: 0 0 40px 0;
      padding: 0 30px; } }
  .p-news__inner {
    width: 40%;
    background: url("../img/common/bg_img.jpg");
    display: inline-block;
    border: solid 1px #bfbda5;
    position: relative;
    z-index: 2;
    padding: 10px;
    padding-top: 30px;
    margin-left: 4.44%;
    box-shadow: 3px 3px 0 1px #deddc6; }
    @media only screen and (max-width: 767px) {
      .p-news__inner {
        width: 100%;
        position: relative;
        margin: 0;
        padding-top: 10px; } }
  .p-news:after {
    content: "";
    display: block;
    border-top: solid 1px #bfbda5;
    position: relative;
    margin-top: -60px;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .p-news:after {
        content: none; } }
  .p-news__heading {
    position: absolute;
    left: 20px;
    top: -20px;
    color: #313333;
    font-family: "Yellowtail", cursive;
    font-size: 3.0rem; }
    @media only screen and (max-width: 767px) {
      .p-news__heading {
        font-size: 2.0rem;
        left: 20px;
        top: -20px; } }
  .p-news__cont a {
    display: flex;
    align-items: center; }
    .p-news__cont a:hover {
      opacity: 0.6; }
  .p-news__img {
    width: 130px;
    height: 80px;
    overflow: hidden;
    margin-right: 20px; }
    @media only screen and (max-width: 767px) {
      .p-news__img {
        width: 65px;
        height: 40px;
        margin-right: 10px; } }
    .p-news__img img {
      width: 100%;
      height: auto; }
  .p-news__text {
    flex: 1; }
  .p-news__head {
    font-size: 1.1rem;
    display: flex;
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .p-news__head {
        margin-bottom: 5px; } }
    .p-news__head li {
      margin-right: 10px; }
  .p-news__title {
    line-height: 1.4; }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .p-news__title {
        font-size: 1.2rem; } }

.p-works {
  position: relative;
  margin: 8% auto 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .p-works {
      display: block;
      padding-bottom: 62px;
      margin: 0 0 40px 0; } }
  .p-works__text {
    flex: 400px;
    margin-left: 5.95%;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-works__text {
        margin-left: 0;
        position: static; } }
  @media only screen and (max-width: 767px) {
    .p-works__btn {
      position: absolute;
      bottom: 0;
      padding: 0 30px;
      left: 0;
      right: 0;
      width: 100%; } }
  .p-works__slider {
    flex: auto;
    margin-left: -14%;
    width: 100%;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-works__slider {
        margin-left: 0; } }
    .p-works__slider li {
      width: 30%;
      margin-left: 30px; }
      @media only screen and (max-width: 767px) {
        .p-works__slider li {
          margin-left: 10px; } }
      .p-works__slider li a {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        overflow: hidden;
        text-align: center;
        height: auto; }
        @media only screen and (max-width: 767px) {
          .p-works__slider li a {
            height: 150px; } }
        .p-works__slider li a .caption {
          color: #fff; }
          .p-works__slider li a .caption:after {
            font-size: 1.3rem;
            content: "DETAIL";
            border: solid 2px #fff;
            font-family: "Oswald", sans-serif;
            text-align: center;
            display: block;
            line-height: 1;
            padding: 10px;
            width: 100px;
            margin: 10px auto !important; }
        .p-works__slider li a .mask {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          opacity: 0;
          /* マスクを表示しない */
          background-color: rgba(170, 151, 101, 0.9);
          -webkit-transition: all 0.6s ease;
          transition: all 0.6s ease;
          display: flex;
          align-items: center;
          justify-content: center; }
        .p-works__slider li a:hover .mask {
          opacity: 1;
          /* マスクを表示する */ }
        .p-works__slider li a:hover img {
          transform: scale(1.1); }
      .p-works__slider li img {
        width: 100%;
        height: auto;
        transition: transform 0.3s linear; }
  .p-works:after {
    background: url("../img/common/bg_img.jpg");
    position: absolute;
    border: solid 1px #bfbda5;
    content: "";
    display: block;
    width: 85%;
    height: 125%;
    z-index: 1;
    left: 0;
    top: -12.5%; }
    @media only screen and (max-width: 767px) {
      .p-works:after {
        content: none; } }
  .p-works_archive {
    position: relative;
    z-index: 2;
    margin: 100px auto 0 auto;
    max-width: 1400px; }
    @media only screen and (max-width: 767px) {
      .p-works_archive {
        margin: 0 0 40px 0;
        padding-bottom: 40px;
        border-bottom: solid 1px #bfbda5; } }
    .p-works_archive__list {
      display: flex;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
      margin: -15px !important;
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        .p-works_archive__list {
          margin: -5px !important; } }
      .p-works_archive__list li {
        width: 33.333333%;
        padding: 15px; }
        @media only screen and (max-width: 767px) {
          .p-works_archive__list li {
            width: 50%;
            padding: 5px; } }
        .p-works_archive__list li a {
          position: relative;
          display: flex;
          align-items: flex-start;
          justify-content: center;
          overflow: hidden;
          text-align: center;
          height: 325px; }
          @media only screen and (max-width: 767px) {
            .p-works_archive__list li a {
              height: 200px; } }
          .p-works_archive__list li a .caption {
            color: #fff; }
            .p-works_archive__list li a .caption:after {
              font-size: 1.3rem;
              content: "DETAIL";
              border: solid 2px #fff;
              font-family: "Oswald", sans-serif;
              text-align: center;
              display: block;
              line-height: 1;
              padding: 10px;
              width: 100px;
              margin: 10px auto !important; }
          .p-works_archive__list li a .mask {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            opacity: 0;
            /* マスクを表示しない */
            background-color: rgba(170, 151, 101, 0.9);
            -webkit-transition: all 0.6s ease;
            transition: all 0.6s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px; }
          .p-works_archive__list li a:hover .mask {
            opacity: 1;
            /* マスクを表示する */ }
          .p-works_archive__list li a:hover img {
            transform: scale(1.1); }
          .p-works_archive__list li a img {
            width: 100%;
            height: auto;
            transition: transform 0.3s linear; }
    .p-works_archive:after {
      background: url("../img/common/bg_img.jpg");
      position: absolute;
      border: solid 1px #bfbda5;
      content: "";
      display: block;
      width: 80%;
      height: 110%;
      z-index: 1;
      left: 0;
      right: 0;
      margin: 0 auto;
      top: -3%; }
      @media only screen and (max-width: 767px) {
        .p-works_archive:after {
          content: none; } }
  .p-works_single_title {
    font-size: 3.0rem;
    font-family: "Stint Ultra Condensed", cursive;
    margin-top: 100px; }
    @media only screen and (max-width: 767px) {
      .p-works_single_title {
        margin-top: 40px; } }
  .p-works_single_cont {
    display: flex;
    position: relative;
    margin-top: 180px; }
    @media only screen and (max-width: 767px) {
      .p-works_single_cont {
        display: block;
        margin: 40px 0 40px 0;
        padding-bottom: 100px;
        border-bottom: solid 1px #bfbda5; } }
    .p-works_single_cont__text {
      margin-left: 60px;
      position: relative;
      z-index: 2; }
      .p-works_single_cont__text p {
        line-height: 2;
        margin-bottom: 2em; }
      @media only screen and (max-width: 767px) {
        .p-works_single_cont__text {
          margin: 30px 0 0 0; } }
    .p-works_single_cont__img {
      position: relative;
      z-index: 2; }
      @media only screen and (max-width: 767px) {
        .p-works_single_cont__img img {
          width: 100%;
          height: auto; } }
    .p-works_single_cont__data {
      margin-top: 60px;
      word-break: break-all; }
      @media only screen and (max-width: 767px) {
        .p-works_single_cont__data {
          margin-top: 0px; } }
      .p-works_single_cont__data th {
        font-family: "Oswald", sans-serif;
        text-align-last: left;
        width: 20%; }
      .p-works_single_cont__data td, .p-works_single_cont__data th {
        padding: 10px; }
      .p-works_single_cont__data span:last-child:after {
        content: none; }
      .p-works_single_cont__data span:after {
        content: " / "; }
    .p-works_single_cont__btn {
      position: absolute;
      right: 0 !important;
      bottom: 0 !important; }
      @media only screen and (max-width: 767px) {
        .p-works_single_cont__btn {
          bottom: -60px !important; } }
    .p-works_single_cont:after {
      background: url("../img/common/bg_img.jpg");
      position: absolute;
      border: solid 1px #bfbda5;
      content: "";
      display: block;
      width: 100%;
      height: 110%;
      z-index: 1;
      left: -8%;
      top: -5%; }
      @media only screen and (max-width: 767px) {
        .p-works_single_cont:after {
          content: none; } }
  .p-works_pagetitle {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .p-works_pagetitle {
        text-align: left;
        margin-top: 60px; } }
  .p-works_sec01__heading {
    margin-bottom: 40px; }

.p-foot_cont {
  display: flex;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .p-foot_cont {
      display: block; } }
.p-partners, .p-profile {
  position: relative;
  flex: 1;
  margin: 0 auto;
  padding: 10% 0 10% 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    .p-partners, .p-profile {
      display: block;
      margin-bottom: 40px; } }
  .p-partners__img, .p-profile__img {
    margin-right: 30px; }
    @media only screen and (max-width: 767px) {
      .p-partners__img, .p-profile__img {
        position: absolute;
        top: 10px;
        right: 0;
        margin-right: 0; } }
    .p-partners__img img, .p-profile__img img {
      width: 100%;
      height: auto; }
  .p-partners__text, .p-profile__text {
    flex: 300px; }
    @media only screen and (max-width: 767px) {
      .p-partners__text, .p-profile__text {
        position: relative;
        z-index: 2; } }


.p-blog {
  margin-top: 5%;
  margin-bottom: 5%;
  position: relative;
  padding-bottom: 10px; }
  @media only screen and (max-width: 767px) {
    .p-blog {
      margin: 0;
      background: url("../img/home/blog_bg.png");
      background-size: cover;
      padding: 40px 0 60px 0; } }
  .p-blog__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start; }
    @media only screen and (max-width: 767px) {
      .p-blog__inner {
        display: block; } }
  .p-blog_new {
    position: relative;
    width: 48%; }
    @media only screen and (max-width: 767px) {
      .p-blog_new {
        width: 100%; } }
    .p-blog_new a {
      display: block; }
      .p-blog_new a:hover img {
        transform: scale(1.1);
        transition-duration: 0.3s; }
    .p-blog_new_img {
      position: relative;
      width: 100%;
      height: auto;
      overflow: hidden; }
      .p-blog_new_img:before {
        content: "";
        display: block;
        padding-top: 62.6112%; }
      .p-blog_new_img__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .p-blog_new_img img {
        width: 100%;
        height: auto;
        display: block;
        transition-duration: 0.3s; }
    .p-blog_new__inner {
      background: #fff;
	  opacity: 0.8;
      padding: 5%;
      position: absolute;
      top: 80%;
      right: 5%;
      width: 74%; }
      @media only screen and (max-width: 767px) {
        .p-blog_new__inner {
          position: static;
		  opacity: 1.0;
          width: 100%;
          right: 0;
          margin-bottom: 20px; } }
  .p-blog_list {
    width: 46%;
    margin-left: 5.7%; }
    @media only screen and (max-width: 767px) {
      .p-blog_list {
        width: 100%;
        margin-left: 0; } }
    .p-blog_list__li a {
      display: flex;
      align-items: flex-start;
      color: #fff;
      margin-bottom: 20px; }
      .p-blog_list__li a:hover {
        opacity: 0.6; }
    .p-blog_list__img {
      width: 44%;
      height: 28%; }
      .p-blog_list__img img {
        width: 100%;
        height: auto; }
    .p-blog_list__text {
      width: 326px;
      margin-left: 30px; }
      @media only screen and (max-width: 767px) {
        .p-blog_list__text {
          margin-left: 10px; } }
  .p-blog__more {
    position: absolute;
    top: -15%;
    right: 0; }
    @media only screen and (max-width: 767px) {
      .p-blog__more {
        bottom: -30px;
        top: auto;
        right: 30px; } }
  .p-blog_data {
    font-size: 1.1rem;
    display: flex;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .p-blog_data {
        font-size: 0.8rem; } }
    .p-blog_data > li {
      padding: 3px 5px; }
      .p-blog_data > li:first-child {
        border-right: solid 1px #000; }
    .p-blog_data--w {
      border-top: solid 1px #fff;
      border-bottom: solid 1px #fff; }
      .p-blog_data--w > li:first-child {
        border-right: solid 1px #fff; }
  .p-blog__title {
    margin-bottom: 5%; }
    .p-blog__title--new {
      font-size: 1.8rem;
      line-height: 1.5;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .p-blog__title--new {
          font-size: 1.6rem; } }
  .p-blog:after {
    content: "";
    background: url("../img/home/blog_bg.png");
    background-size: cover;
    display: block;
    width: 67%;
    height: 140%;
    position: absolute;
    top: -10%;
    right: 0;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .p-blog:after {
        content: none; } }
  .p-blog__heading {
    text-align: center;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-blog__heading {
        font-size: 6.5rem; } }
    .p-blog__heading span {
      display: block;
      font-family: "Yellowtail", cursive;
      color: #a58673;
      text-decoration: underline;
      font-size: 9.0rem;
      transform: rotate(-20deg);
      position: absolute;
      top: -50%;
      right: 20%; }
      @media only screen and (min-width: 768px) and (max-width: 1199px) {
        .p-blog__heading span {
          font-size: 6.0rem; } }
      @media only screen and (max-width: 767px) {
        .p-blog__heading span {
          font-size: 4.0rem;
          right: 15%;
          top: -60px; } }
  .p-blog_archive {
    z-index: 3;
    position: relative;
    padding-bottom: 60px; }
    .p-blog_archive__caset {
      display: block;
      display: flex;
      align-items: center;
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        .p-blog_archive__caset {
          align-items: flex-start;
          display: block; } }
      .p-blog_archive__caset:hover img {
        transform: scale(1.1);
        transition-duration: 0.3s;
        opacity: 0.7; }
    .p-blog_archive_img {
      position: relative;
      width: 30%;
      height: auto;
      overflow: hidden;
      background: #2c394e; }
      .p-blog_archive_img:before {
        content: "";
        display: block;
        padding-top: 62.6112%; }
      .p-blog_archive_img__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      @media only screen and (max-width: 767px) {
        .p-blog_archive_img {
          width: 100%;
          margin-bottom: 10px; } }
      .p-blog_archive_img img {
        transition-duration: 0.3s;
        width: 100%;
        height: auto; }
    .p-blog_archive__inner {
      flex: 1;
      margin-left: 50px; }
      @media only screen and (max-width: 767px) {
        .p-blog_archive__inner {
          margin-left: 0; } }
    .p-blog_archive__title {
      font-size: 2.0rem;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .p-blog_archive__title {
          font-size: 1.6rem; } }
  .p-blog_pagetitle {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .p-blog_pagetitle {
        text-align: left;
        margin-top: 60px; } }
  .p-blog_post {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      .p-blog_post {
        width: 100%;
        padding: 0 30px; } }
    .p-blog_post__data {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .p-blog_post__data {
          margin-bottom: 20px; } }
    .p-blog_post_author {
      font-size: 1.8rem; }
      .p-blog_post_author__img {
        width: 54px;
        height: 54px;
        border-radius: 27px; }
    .p-blog_post__body {
      position: relative;
      z-index: 2;
      padding-bottom: 100px; }
      @media only screen and (max-width: 767px) {
        .p-blog_post__body {
          padding-bottom: 40px;
          font-size: 1.5rem; } }
      .p-blog_post__body img {
        width: 100%;
        height: auto;
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .p-blog_post__body img {
            margin-bottom: 20px; } }
      .p-blog_post__body p {
        font-size: 1.6rem;
        line-height: 2;
        margin-bottom: 30px; }
        @media only screen and (max-width: 767px) {
          .p-blog_post__body p {
            margin-bottom: 20px; } }
      .p-blog_post__body h2 {
        font-size: 2.4rem;
        font-weight: bold;
        margin: 100px 0 25px;
        padding-bottom: 6px;
        line-height: 1.5;
        border-bottom: solid 2px #313333; }
        @media only screen and (max-width: 767px) {
          .p-blog_post__body h2 {
            font-size: 1.8rem;
            margin: 30px 0 10px; } }
      .p-blog_post__body h3 {
        font-size: 2.0rem;
        font-weight: bold;
        padding-bottom: 30px;
        display: flex;
        align-items: center; }
        .p-blog_post__body h3:before {
          width: 15px;
          height: 1px;
          background: #313333;
          content: "";
          display: inline-block;
          margin-right: 5px; }
      .p-blog_post__body a {
        border-bottom: solid 1px #1168b9;
        color: #1168b9;
        transition: 0.3s ease-in-out; }
        .p-blog_post__body a:hover {
          border-bottom: none; }
        .p-blog_post__body a:before {
          font-family: FontAwesome;
          content: "\f105";
          margin: 4px; }
    .p-blog_post__date {
      display: flex;
      align-items: center; }
      .p-blog_post__date:before {
        margin-right: 5px;
        content: "";
        width: 15px;
        height: 1px;
        display: inline-block;
        background: #313333; }


.p-blog2 {


  position: relative;
  padding-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .p-blog2 {
      margin: 0;
      background: url("../img/home/blog_bg.png");
      background-size: cover;
      padding: 40px 0 60px 0; } }
  .p-blog2__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start; }
    @media only screen and (max-width: 767px) {
      .p-blog2__inner {
        display: block; } }
  .p-blog2_new {
    position: relative;
    width: 48%; }
    @media only screen and (max-width: 767px) {
      .p-blog2_new {
        width: 100%; } }
    .p-blog2_new a {
      display: block; }
      .p-blog2_new a:hover img {
        transform: scale(1.1);
        transition-duration: 0.3s; }
    .p-blog2_new_img {
      position: relative;
      width: 100%;
      height: auto;
      overflow: hidden; }
      .p-blog2_new_img:before {
        content: "";
        display: block;
        padding-top: 62.6112%; }
      .p-blog2_new_img__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      .p-blog2_new_img img {
        width: 100%;
        height: auto;
        display: block;
        transition-duration: 0.3s; }
    .p-blog2_new__inner {
      background: #fff;
      padding: 5%;
      position: absolute;
      top: 70%;
      right: 5%;
      width: 74%; }
      @media only screen and (max-width: 767px) {
        .p-blog2_new__inner {
          position: static;
          width: 100%;
          right: 0;
          margin-bottom: 20px; } }
  .p-blog2_list {
    width: 46%;
    margin-left: 5.7%; }
    @media only screen and (max-width: 767px) {
      .p-blog2_list {
        width: 100%;
        margin-left: 0; } }
    .p-blog2_list__li a {
      display: flex;
      align-items: flex-start;
      color: #fff;
      margin-bottom: 20px; }
      .p-blog2_list__li a:hover {
        opacity: 0.6; }
    .p-blog2_list__img {
      width: 44%;
      height: 28%; }
      .p-blog2_list__img img {
        width: 100%;
        height: auto; }
    .p-blog2_list__text {
      width: 326px;
      margin-left: 30px; }
      @media only screen and (max-width: 767px) {
        .p-blog2_list__text {
          margin-left: 10px; } }
  .p-blog2__more {
    position: absolute;
    top: -15%;
    right: 0; }
    @media only screen and (max-width: 767px) {
      .p-blog2__more {
        bottom: -30px;
        top: auto;
        right: 30px; } }
  .p-blog2_data {
    font-size: 1.1rem;
    display: flex;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .p-blog2_data {
        font-size: 0.8rem; } }
    .p-blog2_data > li {
      padding: 3px 5px; }
      .p-blog2_data > li:first-child {
        border-right: solid 1px #000; }
    .p-blog2_data--w {
      border-top: solid 1px #fff;
      border-bottom: solid 1px #fff; }
      .p-blog2_data--w > li:first-child {
        border-right: solid 1px #fff; }
  .p-blog2__title {
    margin-bottom: 5%; }
    .p-blog2__title--new {
      font-size: 2.2rem;
      line-height: 1.5;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .p-blog2__title--new {
          font-size: 1.6rem; } }
  .p-blog2:after {
    content: "";
    background: url("../img/home/blog_bg.png");
    background-size: cover;
    display: block;
    width: 67%;
    height: 140%;
    position: absolute;
    top: -10%;
    right: 0;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .p-blog2:after {
        content: none; } }
  .p-blog2__heading {
    text-align: center;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 767px) {
      .p-blog2__heading {
        font-size: 6.5rem; } }
    .p-blog2__heading span {
      display: block;
      font-family: "Yellowtail", cursive;
      color: #a58673;
      text-decoration: underline;
      font-size: 9.0rem;
      transform: rotate(-20deg);
      position: absolute;
      top: -50%;
      right: 20%; }
      @media only screen and (min-width: 768px) and (max-width: 1199px) {
        .p-blog2__heading span {
          font-size: 6.0rem; } }
      @media only screen and (max-width: 767px) {
        .p-blog2__heading span {
          font-size: 4.0rem;
          right: 15%;
          top: -60px; } }
  .p-blog2_archive {
    z-index: 3;
    position: relative;
    padding-bottom: 60px; }
    .p-blog2_archive__caset {
      display: block;
      display: flex;
      align-items: center;
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        .p-blog2_archive__caset {
          align-items: flex-start;
          display: block; } }
      .p-blog2_archive__caset:hover img {
        transform: scale(1.1);
        transition-duration: 0.3s;
        opacity: 0.7; }
    .p-blog2_archive_img {
      position: relative;
      width: 30%;
      height: auto;
      overflow: hidden;
      background: #2c394e; }
      .p-blog2_archive_img:before {
        content: "";
        display: block;
        padding-top: 62.6112%; }
      .p-blog2_archive_img__inner {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
      @media only screen and (max-width: 767px) {
        .p-blog2_archive_img {
          width: 100%;
          margin-bottom: 10px; } }
      .p-blog2_archive_img img {
        transition-duration: 0.3s;
        width: 100%;
        height: auto; }
    .p-blog2_archive__inner {
      flex: 1;
      margin-left: 50px; }
      @media only screen and (max-width: 767px) {
        .p-blog2_archive__inner {
          margin-left: 0; } }
    .p-blog2_archive__title {
      font-size: 2.0rem;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .p-blog2_archive__title {
          font-size: 1.6rem; } }
  .p-blog2_pagetitle {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .p-blog2_pagetitle {
        text-align: left;
        margin-top: 60px; } }
  .p-blog2_post {
    max-width: 850px;
    margin: 0 auto;
    padding-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      .p-blog2_post {
        width: 100%;
        padding: 0 30px; } }
    .p-blog2_post__data {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .p-blog2_post__data {
          margin-bottom: 20px; } }
    .p-blog2_post_author {
      font-size: 1.8rem; }
      .p-blog2_post_author__img {
        width: 54px;
        height: 54px;
        border-radius: 27px; }
    .p-blog2_post__body {
      position: relative;
      z-index: 2;
      padding-bottom: 100px; }
      @media only screen and (max-width: 767px) {
        .p-blog2_post__body {
          padding-bottom: 40px;
          font-size: 1.5rem; } }
      .p-blog2_post__body img {
        width: 100%;
        height: auto;
        margin-bottom: 40px; }
        @media only screen and (max-width: 767px) {
          .p-blog2_post__body img {
            margin-bottom: 20px; } }
      .p-blog2_post__body p {
        font-size: 1.6rem;
        line-height: 2;
        margin-bottom: 30px; }
        @media only screen and (max-width: 767px) {
          .p-blog2_post__body p {
            margin-bottom: 20px; } }
      .p-blog2_post__body h2 {
        font-size: 2.4rem;
        font-weight: bold;
        margin: 100px 0 25px;
        padding-bottom: 6px;
        line-height: 1.5;
        border-bottom: solid 2px #313333; }
        @media only screen and (max-width: 767px) {
          .p-blog2_post__body h2 {
            font-size: 1.8rem;
            margin: 30px 0 10px; } }
      .p-blog2_post__body h3 {
        font-size: 2.0rem;
        font-weight: bold;
        padding-bottom: 30px;
        display: flex;
        align-items: center; }
        .p-blog2_post__body h3:before {
          width: 15px;
          height: 1px;
          background: #313333;
          content: "";
          display: inline-block;
          margin-right: 5px; }
      .p-blog2_post__body a {
        border-bottom: solid 1px #1168b9;
        color: #1168b9;
        transition: 0.3s ease-in-out; }
        .p-blog2_post__body a:hover {
          border-bottom: none; }
        .p-blog2_post__body a:before {
          font-family: FontAwesome;
          content: "\f105";
          margin: 4px; }
    .p-blog2_post__date {
      display: flex;
      align-items: center; }
      .p-blog2_post__date:before {
        margin-right: 5px;
        content: "";
        width: 15px;
        height: 1px;
        display: inline-block;
        background: #313333; }

















.p-about_hero__img {
  position: relative;
  top: 0;
  width: 75%;
  left: -6%; }
  @media only screen and (max-width: 767px) {
    .p-about_hero__img {
      width: 100%;
      position: static; } }
.p-about_sec01 {
  justify-content: space-evenly;
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .p-about_sec01 {
      display: block;
      margin-top: 40px; } }
  .p-about_sec01__text {
    width: 500px; }
    @media only screen and (max-width: 767px) {
      .p-about_sec01__text {
        width: 100%; } }
  .p-about_sec01__img {
    max-width: 490px;
    margin-left: 60px;
    flex: 1; }
    @media only screen and (max-width: 767px) {
      .p-about_sec01__img {
        max-width: 72%;
        width: 72%;
        margin: 0 auto;
        text-align: center; } }
    .p-about_sec01__img img {
      width: 100%;
      height: auto; }
.p-motto {
  position: relative;
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .p-motto__heading {
      font-size: 4.5rem; } }
  @media only screen and (max-width: 767px) {
    .p-motto {
      margin: 40px 0;
      border-top: solid 1px #bfbda5;
      border-bottom: solid 1px #bfbda5;
      padding-top: 40px; } }
  .p-motto_item_wrapper {
    width: 120%;
    display: flex;
    position: relative;
    z-index: 2;
    margin-left: -10%; }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .p-motto_item_wrapper {
        width: 110%;
        margin-left: -5%; } }
    @media only screen and (max-width: 767px) {
      .p-motto_item_wrapper {
        display: block;
        width: 100%;
        margin: 40px 0 0 0; } }
  .p-motto_item {
    flex: 1;
    padding: 20px; }
    @media only screen and (min-width: 768px) and (max-width: 1199px) {
      .p-motto_item {
        padding: 10px; } }
    .p-motto_item:nth-child(2) {
      margin-top: 50px; }
    .p-motto_item:nth-child(3) {
      margin-top: 30px; }
    @media only screen and (max-width: 767px) {
      .p-motto_item {
        padding: 0;
        margin-bottom: 40px; } }
    .p-motto_item__heading {
      font-size: 2.0rem;
      line-height: 1.5;
      font-weight: bold;
      margin-bottom: 10px;
      display: inline-block;
      border-bottom: solid 2px #313333; }
      @media only screen and (min-width: 768px) and (max-width: 1199px) {
        .p-motto_item__heading {
          font-size: 1.6rem; } }
    .p-motto_item__img {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        .p-motto_item__img {
          width: 72%;
          text-align: center;
          margin: 0 auto 20px auto; } }
      .p-motto_item__img img {
        width: 100%;
        height: auto; }
  .p-motto:after {
    background: url("../img/common/bg_img.jpg");
    position: absolute;
    border: solid 1px #bfbda5;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    left: -5%;
    top: 5%; }
    @media only screen and (max-width: 767px) {
      .p-motto:after {
        content: none; } }

.p-partners {
  padding-right: 3%;
  border-right: solid 1px #bfbda5; }
  @media only screen and (max-width: 767px) {
    .p-partners {
      border: none;
      padding: 0; } }
  .p-partners__img {
    width: 40%; }
    @media only screen and (max-width: 767px) {
      .p-partners__img {
        width: 32%;
        z-index: 1;
        top: -3%; } }
  .p-partners_hero__img {
    max-width: 520px;
    margin: -50px auto 0 auto;
    padding-right: 20px; }
    @media only screen and (max-width: 767px) {
      .p-partners_hero__img {
        margin: 0;
        max-width: 100%;
        padding: 0; } }
  .p-partners_sec01 {
    margin: 100px auto;
    position: relative;
    z-index: 20; }
    @media only screen and (max-width: 767px) {
      .p-partners_sec01 {
        margin: 40px 0 80px 0; } }
    .p-partners_sec01__heading {
      text-align: center; }
      @media only screen and (max-width: 767px) {
        .p-partners_sec01__heading {
          text-align: left;
          font-size: 4.5rem; } }

.p-profile {
  padding-left: 3%; }
  @media only screen and (max-width: 767px) {
    .p-profile {
      padding: 0; } }
  .p-profile__img {
    width: 38%; }
    @media only screen and (max-width: 767px) {
      .p-profile__img {
        width: 30%;
        top: -4%; } }
  .p-profile_hero__img {
    max-width: 450px;
    margin: -70px auto 0 auto;
    padding-right: 20px; }
    @media only screen and (max-width: 767px) {
      .p-profile_hero__img {
        max-width: 100%;
        width: 80%;
        margin: 0 auto;
        text-align: center; }
        .p-profile_hero__img img {
          height: 100%;
          width: auto; } }
  .p-profile_map {
    width: 100%;
    margin-top: 20px;
    border: solid 10px #fff; }
  .p-profile_sec01 {
    margin-bottom: 100px;
    margin-top: -100px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .p-profile_sec01 {
        margin: 0; } }

.p-contact_hero__img {
  position: relative;
  top: 0;
  width: 75%;
  left: -6%; }
  @media only screen and (max-width: 767px) {
    .p-contact_hero__img {
      width: 90%;
      left: 0;
      margin: 0 auto; } }
.p-contact_sec01 {
  position: relative;
  z-index: 20;
  justify-content: space-evenly;
  margin: 60px auto 100px auto; }
  .p-contact_sec01__heading {
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .p-contact_sec01__heading {
        font-size: 4.5rem; } }
.p-contact_thanks {
  margin-top: 100px;
  width: 800px;
  margin: 0 auto;
  border: solid 2px #313333;
  padding: 60px; }
  @media only screen and (max-width: 767px) {
    .p-contact_thanks {
      width: 100%;
      padding: 30px;
      margin-top: 40px; } }
  .p-contact_thanks__foot {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .p-contact_thanks__foot {
        display: block; }
        .p-contact_thanks__foot .c-btn {
          margin-top: 30px; } }

.p-policy_hero__img {
  position: relative;
  margin-top: -3%;
  width: 75%;
  left: -6%; }
  @media only screen and (max-width: 767px) {
    .p-policy_hero__img {
      width: 100%;
      position: static; } }
.p-policy_sec01 {
  padding-bottom: 100px; }

/*=======================================
@Margin
=========================================*/
.m0 {
  margin: 0; }

.mt5 {
  margin-top: 5px; }

.mt10 {
  margin-top: 10px; }

.mt15 {
  margin-top: 15px; }

.mt18 {
  margin-top: 18px; }

.mt20 {
  margin-top: 20px; }

.mt25 {
  margin-top: 25px; }

.mt30 {
  margin-top: 30px; }

.mt35 {
  margin-top: 35px; }

.mt40 {
  margin-top: 40px; }

.mt45 {
  margin-top: 45px; }

.mt50 {
  margin-top: 50px; }

.mt60 {
  margin-top: 60px; }
  @media only screen and (max-width: 767px) {
    .mt60 {
      margin-top: 20px; } }

.mr5 {
  margin-right: 5px; }

.mr10 {
  margin-right: 10px; }

.mr15 {
  margin-right: 15px; }

.mr20 {
  margin-right: 20px; }

.mr25 {
  margin-right: 25px; }

.mr30 {
  margin-right: 30px; }

.mr35 {
  margin-right: 35px; }

.mr40 {
  margin-right: 40px; }

.mr45 {
  margin-right: 45px; }

.mr50 {
  margin-right: 50px; }

.mb5 {
  margin-bottom: 5px; }

.mb10 {
  margin-bottom: 10px; }

.mb15 {
  margin-bottom: 15px; }

.mb20 {
  margin-bottom: 20px; }

.mb25 {
  margin-bottom: 25px; }

.mb30 {
  margin-bottom: 30px; }

.mb35 {
  margin-bottom: 35px; }

.mb40 {
  margin-bottom: 40px; }

.mb45 {
  margin-bottom: 45px; }

.mb50 {
  margin-bottom: 50px; }

.mb60 {
  margin-bottom: 60px; }

.mb1em {
  margin-bottom: 1em; }

.ml5 {
  margin-left: 5px; }

.ml10 {
  margin-left: 10px; }

.ml15 {
  margin-left: 15px; }

.ml20 {
  margin-left: 20px; }

.ml25 {
  margin-left: 25px; }

.ml30 {
  margin-left: 30px; }

.ml35 {
  margin-left: 35px; }

.ml40 {
  margin-left: 40px; }

.ml45 {
  margin-left: 45px; }

.ml50 {
  margin-left: 50px; }

.ma5 {
  margin: 5px; }

.ma10 {
  margin: 10px; }

.ma15 {
  margin: 15px; }

.ma20 {
  margin: 20px; }

.ma25 {
  margin: 25px; }

.ma30 {
  margin: 30px; }

.ma35 {
  margin: 35px; }

.ma40 {
  margin: 40px; }

.ma45 {
  margin: 45px; }

.ma50 {
  margin: 50px; }

.mw1em {
  margin: 0 1em; }

.mw5 {
  margin: 0 5px; }

.mw10 {
  margin: 0 10px; }

.mw15 {
  margin: 0 15px; }

.mw20 {
  margin: 0 20px; }

.mw25 {
  margin: 0 25px; }

.mw30 {
  margin: 0 30px; }

.mw35 {
  margin: 0 35px; }

.mw40 {
  margin: 0 40px; }

.mw45 {
  margin: 0 45px; }

.mw50 {
  margin: 0 50px; }

.mv5 {
  margin: 5px 0; }

.mv10 {
  margin: 10px 0; }

.mv15 {
  margin: 15px 0; }

.mv20 {
  margin: 20px 0; }

.mv25 {
  margin: 25px 0; }

.mv30 {
  margin: 30px 0; }

.mv35 {
  margin: 35px 0; }

.mv40 {
  margin: 40px 0; }

.mv45 {
  margin: 45px 0; }

.mv50 {
  margin: 50px 0; }

/*--------------------------------------
@Left Center Right
----------------------------------------*/
.left {
  *display: inline;
  float: left; }

.right {
  *display: inline;
  float: right; }

.center {
  text-align: center;
  position: relative;
  margin: 0 auto; }

.text_left {
  text-align: left; }

.text_right {
  text-align: right; }

.text_center {
  text-align: center; }

.floatl {
  float: left; }

.floatr {
  float: right; }

.txt {
  overflow: hidden;
  zoom: 1; }

/*--------------------------------------
@Position
----------------------------------------*/
.pos_a {
  position: absolute; }

.pos_r {
  position: relative; }

.pos_top {
  top: 0; }

.pos_right {
  right: 0; }

.pos_left {
  left: 0; }

.pos_bottom {
  bottom: 0; }

/*--------------------------------------
@font size
----------------------------------------*/
.text_s {
  font-size: 1.2rem; }

/*--------------------------------------
@display_none
----------------------------------------*/
@media only screen and (min-width: 1200px) {
  .pc_none {
    display: none; } }

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .tablet_none {
    display: none; } }

@media only screen and (max-width: 767px) {
  .sp_none {
    display: none; } }

/*--------------------------------------
@display_none
----------------------------------------*/
@media only screen and (max-width: 767px) {
  .sp_img100 img {
    width: 100%;
    height: auto; } }

@media only screen and (max-width: 767px) {
  .sp_none {
    display: none; } }

/*--------------------------------------
@color
----------------------------------------*/
.gray {
  color: #4b4a4a; }


/*--------------------------------------
@visible
----------------------------------------*/
@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}

.visible-sm {
  display: none !important;
}

.visible-md {
  display: none !important;
}

.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table !important;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table !important;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table !important;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table !important;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}





