@charset "UTF-8";
/*
Theme Name :
Theme URI:
Author:
Author URI:
Description:
Version: 1.0
*/
/*---font------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css?family=PT+Serif");
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

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

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #353434;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-style: normal;
  font-weight: 400;
}

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

a {
  color: #353434;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
}

a:hover {
  opacity: 0.7;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fade_in {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/* layout
---------------------------------------------------------------------------------------*/
/* clearfix
---------------------------------------------------------------------------------------*/
.clr:after {
  content: " ";
  display: block;
  height: 0;
  line-height: 0;
  clear: both;
  visibility: hidden;
}

.clr {
  display: inline-block;
  min-height: 1%;
}

/* Hides from IE-mac \*/
* html .clr {
  height: 1%;
}

.clr {
  display: block;
}

/* btn
---------------------------------------------------------------------------------------*/
/* header
---------------------------------------------------------------------------------------*/
/*

  HOME

*/
.header_top {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  /* Safari */
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .header_top {
    height: -webkit-calc(90vh - 60px);
    height: calc(90vh - 60px);
    margin-top: 60px;
  }
}

.header_top_left {
  width: 50%;
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  -o-background-size: cover;
}

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

.header_top_left .inr {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  -webkit-align-items: center;
  /* Safari */
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header_top_left .inr {
    height: -webkit-calc(90vh - 60px);
    height: calc(90vh - 60px);
  }
}

.header_top_left .inr img {
  width: 230px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .header_top_left .inr img {
    width: 190px;
  }
}

.header_top_right {
  width: 50%;
  height: 100vh;
  position: relative;
}

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

.header_top_right:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: '';
  width: 2px;
  height: 55px;
  background: #a40014;
}

.header_top_right .inr {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  /* Safari */
  display: flex;
  -webkit-justify-content: center;
  /* Safari */
  justify-content: center;
  -webkit-align-items: center;
  /* Safari */
  align-items: center;
  text-align: center;
}

.header_top_right .inr nav p {
  width: 193px;
  margin-bottom: 80px;
}

.header_top_right .inr nav p img {
  width: 100%;
}

.header_top_right .inr nav ul li {
  margin-bottom: 30px;
}

.header_top_right .inr nav ul li:last-child {
  margin-bottom: 0;
}

.header_top_right .inr nav ul li a {
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.header_top_right .inr nav ul li a:after {
  display: block;
  content: '';
  width: 32px;
  height: 1px;
  background: #fff;
  margin: 10px auto 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
}

.header_top_right .inr nav ul li a:hover {
  color: #a40014;
}

.header_top_right .inr nav ul li a:hover:after {
  display: block;
  content: '';
  width: 32px;
  height: 1px;
  background: #a40014;
  margin: 10px auto 0;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 1.5s;
  transition-duration: 1.5s;
}

.sp_header {
  border-bottom: 1px solid #a40014;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #fff;
  z-index: 999;
}

.sp_header_logo {
  text-align: center;
  padding-top: 12px;
}

.sp_header_logo img {
  width: 140px;
}

.g_nav .drawer-menu {
  text-align: center;
}

.g_nav .drawer-menu li {
  border-bottom: 1px solid #d0d0d0;
  padding: 25px 0;
  font-size: 2.2rem;
  width: 80%;
  margin: 0 auto;
}

.g_nav .drawer-menu li:last-child {
  border-bottom: none;
}

/*head-change*/
#head-change {
  display: none;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 15px 80px;
  border-bottom: 1px solid #a40014;
}

@media screen and (max-width: 999px) {
  #head-change {
    padding: 15px 25px;
  }
}

#head-change .head-change_logo {
  float: left;
}

#head-change .head-change_logo img {
  width: 215px;
}

#head-change .head-change_nav {
  float: right;
}

#head-change .head-change_nav ul li {
  float: left;
  padding: 15px 35px 0;
}

@media screen and (max-width: 999px) {
  #head-change .head-change_nav ul li {
    padding: 15px;
  }
}

#head-change .head-change_nav ul li a {
  display: block;
}

#head-change .head-change_nav ul li a:hover {
  margin-top: 6px;
  opacity: 1;
}

#head-change .gnav {
  padding: 0 30px;
}

/* nav
---------------------------------------------------------------------------------------*/
/*!------------------------------------*    Base
\*!------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer-open {
    overflow: hidden !important;
  }
  .drawer-nav {
    position: fixed;
    z-index: 101;
    top: 60px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: #000;
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .drawer-nav {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .drawer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 3.75rem;
    display: block;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    text-decoration: none;
    color: #222;
  }
  .drawer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .drawer-menu-item {
    font-size: 1rem;
    display: block;
    padding: 0.75rem;
    text-decoration: none;
    color: #222;
  }
  .drawer-menu-item:hover {
    text-decoration: underline;
    color: #555;
    background-color: transparent;
  }
  /*! overlay */
  .drawer-overlay {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: white;
  }
  .drawer-open .drawer-overlay {
    display: block;
  }
}

/*!------------------------------------*    Right
\*!------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer--right .drawer-nav {
    right: -100%;
    transition: right 1s cubic-bezier(0.19, 1, 0.22, 1);
  }
  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
  }
  .drawer--right.drawer-open .drawer-hamburger {
    right: 0;
  }
}

/*!------------------------------------*    Hamburger
\*!------------------------------------*/
@media screen and (max-width: 767px) {
  .drawer-hamburger {
    position: absolute;
    z-index: 104;
    top: 0px;
    right: 0px;
    display: block;
    box-sizing: content-box;
    width: 50px;
    height: 54px;
    transform: translate3d(0, 0, 0);
    border: none;
    outline: 0;
    border-radius: 0;
    background-color: #fff;
  }
  .drawer-hamburger:hover {
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
  }
  .drawer-hamburger:hover {
    cursor: pointer;
  }
  .drawer-hamburger-icon {
    position: relative;
    display: block;
    margin-top: 0px;
  }
  .drawer-hamburger-icon,
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    width: 22px;
    height: 1px;
    margin: auto;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
    background-color: #a40014;
  }
  .drawer-hamburger-icon:after,
  .drawer-hamburger-icon:before {
    position: absolute;
    top: -8px;
    left: 0;
    content: ' ';
  }
  .drawer-hamburger-icon:after {
    top: 8px;
  }
  .drawer-open .drawer-hamburger-icon {
    background-color: transparent;
  }
  .drawer-open .drawer-hamburger-icon:after,
  .drawer-open .drawer-hamburger-icon:before {
    top: 0;
  }
  .drawer-open .drawer-hamburger-icon:before {
    transform: rotate(45deg);
  }
  .drawer-open .drawer-hamburger-icon:after {
    transform: rotate(-45deg);
  }
}

/*!------------------------------------*    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*    Navbar
\*!------------------------------------*/
.drawer--navbarTopGutter {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-navbar-header {
  border-bottom: 1px solid #ddd;
  background-color: #fff;
}

.drawer-navbar {
  z-index: 102;
  top: 0;
  width: 100%;
}

/*! .drawer-navbar modifier */
.drawer-navbar--fixed {
  position: fixed;
}

.drawer-navbar-header {
  position: relative;
  z-index: 102;
  box-sizing: border-box;
  width: 100%;
  height: 3.75rem;
  padding: 0 0.75rem;
  text-align: center;
}

.drawer-navbar .drawer-brand {
  line-height: 3.75rem;
  display: inline-block;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
}

.drawer-navbar .drawer-brand:hover {
  background-color: transparent;
}

.drawer-navbar .drawer-nav {
  padding-top: 3.75rem;
}

.drawer-navbar .drawer-menu {
  padding-bottom: 7.5rem;
}

@media (min-width: 64em) {
  .drawer-navbar {
    height: 3.75rem;
    border-bottom: 1px solid #ddd;
    background-color: #fff;
  }
  .drawer-navbar .drawer-navbar-header {
    position: relative;
    display: block;
    float: left;
    width: auto;
    padding: 0;
    border: 0;
  }
  .drawer-navbar .drawer-menu--right {
    float: right;
  }
  .drawer-navbar .drawer-menu li {
    float: left;
  }
  .drawer-navbar .drawer-menu-item {
    line-height: 3.75rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  .drawer-navbar .drawer-hamburger {
    display: none;
  }
  .drawer-navbar .drawer-nav {
    position: relative;
    left: 0;
    overflow: visible;
    width: auto;
    height: 3.75rem;
    padding-top: 0;
    transform: translate3d(0, 0, 0);
  }
  .drawer-navbar .drawer-menu {
    padding: 0;
  }
  /*! dropdown */
  .drawer-navbar .drawer-dropdown-menu {
    position: absolute;
    width: 16.25rem;
    border: 1px solid #ddd;
  }
  .drawer-navbar .drawer-dropdown-menu-item {
    padding-left: 0.75rem;
  }
}

/*!------------------------------------*    Container
\*!------------------------------------*/
.drawer-container {
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 64em) {
  .drawer-container {
    max-width: 60rem;
  }
}

@media (min-width: 75em) {
  .drawer-container {
    max-width: 70rem;
  }
}

@media screen and (max-width: 767px) {
  .nav_pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .nav_sp {
    display: none !important;
  }
}

/* main
---------------------------------------------------------------------------------------*/
main {
  display: block;
}

/* footer
---------------------------------------------------------------------------------------*/
footer {
  width: 100%;
  padding: 39px 0 38px;
  background: #e8e8e8;
  text-align: center;
}

footer .logo {
  width: 235px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  footer .logo {
    width: 210px;
  }
}

footer .logo img {
  width: 100%;
}

footer .copy {
  font-family: "PT Serif", serif;
  margin-top: 15px;
  color: #a40014;
}

@media screen and (max-width: 767px) {
  footer .copy {
    font-size: .9rem;
  }
}
