/*--------------------------
color
---------------------------*/
/*----------------------------------------
Reset
----------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*--------------------------
Tag Default
---------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  position: relative;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #000;
  overflow-x: hidden;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.wrap {
  overflow-x: hidden;
}

a {
  color: #000;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

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

p {
  line-height: 2.25;
}
@media only screen and (max-width: 768px) {
  p {
    line-height: 1.85;
  }
}

.sp_none {
  display: block;
}
@media only screen and (max-width: 768px) {
  .sp_none {
    display: none !important;
  }
}

.pc_none {
  display: none;
}
@media only screen and (max-width: 768px) {
  .pc_none {
    display: block !important;
  }
}

.tab_none {
  display: block;
}
@media only screen and (max-width: 1170px) {
  .tab_none {
    display: none !important;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.iv {
  opacity: 0;
}

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

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

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

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

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*--------------------------
FontSet Default
---------------------------*/
@font-face {
  font-family: "Marcellus", serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/Marcellus-Regularwoff2.html") format("woff2"), url("../font/Marcellus-Regularwoff.html") format("woff"), url("../font/Marcellus-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 300;
  src: url("../font/NotoSerifJP-Bold.woff2") format("woff2"), url("../font/NotoSerifJP-Bold.woff") format("woff"), url("../font/NotoSerifJP-Bold.ttf.html") format("truetype");
}
@font-face {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSerifJP-Medium.woff2") format("woff2"), url("../font/NotoSerifJP-Medium.woff") format("woff"), url("../font/NotoSerifJP-Medium.ttf.html") format("truetype");
}
@font-face {
  font-family: "Noto Serif JP", serif;
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSerifJP-Regular.woff2") format("woff2"), url("../font/NotoSerifJP-Regular.woff") format("woff"), url("../font/NotoSerifJP-Regular.ttf.html") format("truetype");
}
/*--------------------------
header
---------------------------*/
#header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  padding: 2px 0 0;
  margin: 0 auto;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 9998;
}
#header.head-animation {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media only screen and (max-width: 1170px) {
  #header {
    height: 70px;
    background: #fff;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 380px) {
  #header {
    height: 50px;
  }
}
@media only screen and (max-width: 1170px) {
  #header::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: #000;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    pointer-events: none;
    opacity: 0;
  }
  #header.is-open::before {
    opacity: 0.5;
  }
}
#header .hd_logo {
  margin: 0 0 0 2.5%;
}
#header .hd_logo a {
  display: block;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
#header .hd_logo a:hover {
  opacity: 0.7;
}
#header .sp-nav-btn {
  position: absolute;
  display: none;
  width: 50px;
  height: 50px;
  right: 0;
  z-index: 9999;
}
@media only screen and (max-width: 1170px) {
  #header .sp-nav-btn {
    display: block;
  }
}
@media only screen and (max-width: 380px) {
  #header .sp-nav-btn {
    width: 50px;
    height: 50px;
  }
}
#header .sp-nav-btn > a,
#header .sp-nav-btn span {
  display: inline-block;
  background: #fff;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#header .sp-nav-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
}
#header .sp-nav-btn a span {
  position: absolute;
  width: 35px;
  height: 2px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: #ff741f;
}
@media only screen and (max-width: 380px) {
  #header .sp-nav-btn a span {
    width: 25px;
  }
}
#header .sp-nav-btn a span:nth-of-type(1) {
  top: calc(50% - 10px);
}
@media only screen and (max-width: 380px) {
  #header .sp-nav-btn a span:nth-of-type(1) {
    top: calc(50% - 8px);
  }
}
#header .sp-nav-btn a span:nth-of-type(2) {
  top: 50%;
}
#header .sp-nav-btn a span:nth-of-type(3) {
  top: calc(50% + 10px);
}
@media only screen and (max-width: 380px) {
  #header .sp-nav-btn a span:nth-of-type(3) {
    top: calc(50% + 8px);
  }
}
#header .sp-nav-btn.is-active a {
  background: transparent;
}
#header .sp-nav-btn.is-active span {
  background: #fff;
}
#header .sp-nav-btn.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
#header .sp-nav-btn.is-active span:nth-of-type(2) {
  opacity: 0;
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}
#header .sp-nav-btn.is-active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
          transform: translateY(-10px) rotate(45deg);
}
#header .nav_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
#header .nav_wrap #global-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap #global-nav {
    position: fixed;
    display: block;
    width: 60%;
    height: 100vh;
    top: 0;
    right: -60%;
    margin-top: 0;
    padding-top: calc(5% + 70px);
    padding-left: 5%;
    background: #ff741f;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    z-index: 9998;
    opacity: 0;
  }
  #header .nav_wrap #global-nav.is-open {
    right: 0;
    opacity: 1;
  }
}
#header .nav_wrap #global-nav .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap #global-nav .menu {
    display: block;
    margin: 0 0 30px;
  }
}
#header .nav_wrap #global-nav .menu li {
  margin: 0 0 0 25px;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap #global-nav .menu li {
    margin: 0 0 20px;
  }
}
@media only screen and (max-width: 768px) {
  #header .nav_wrap #global-nav .menu li {
    margin: 0 0 30px;
  }
}
#header .nav_wrap #global-nav .menu li a {
  position: relative;
  display: block;
  font-size: 14px;
  color: #fff;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap #global-nav .menu li a {
    display: inline-block;
    color: #fff;
  }
}
#header .nav_wrap #global-nav .menu li a:hover {
  color: #ff741f;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap #global-nav .menu li a:hover {
    color: #fff;
  }
}
#header .nav_wrap .contact_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 360px;
  margin: 0 0 0 50px;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap .contact_nav {
    margin: 0 70px 0 10px;
  }
}
@media only screen and (max-width: 380px) {
  #header .nav_wrap .contact_nav {
    margin: 0 50px 0 10px;
  }
}
#header .nav_wrap .contact_nav a .pc {
  display: block;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap .contact_nav a .pc {
    display: none;
  }
}
#header .nav_wrap .contact_nav a .sp {
  display: none;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap .contact_nav a .sp {
    display: block;
  }
}
#header .nav_wrap .contact_nav a:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1170px) {
  #header .nav_wrap .contact_nav a {
    display: block;
    width: 70px;
    height: 70px;
  }
}
@media only screen and (max-width: 380px) {
  #header .nav_wrap .contact_nav a {
    width: 50px;
    height: 50px;
  }
}
#header.fixed {
  background: #fff;
}
#header.fixed .nav_wrap #global-nav .menu li a {
  color: #000;
}
@media only screen and (max-width: 1170px) {
  #header.fixed .nav_wrap #global-nav .menu li a {
    color: #fff;
  }
}
#header.fixed .nav_wrap #global-nav .menu li a:hover {
  color: #ff741f;
}

/* -------------------------------------------
footer
---------------------------------------------*/
#footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 108px;
  padding: 0 5%;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  #footer {
    height: 60px;
  }
}
#footer .copy {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  #footer .copy {
    font-size: 12px;
  }
}

/* -------------------------------------------
page-top
---------------------------------------------*/
#page-top {
  position: fixed;
  display: block;
  bottom: 25px;
  right: 1.25%;
  z-index: 999;
}
@media only screen and (max-width: 1170px) {
  #page-top {
    bottom: 100px;
  }
}
#page-top a {
  position: relative;
  display: block;
  width: 64px;
  height: 64px;
  background: #001026;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 999;
}
@media only screen and (max-width: 768px) {
  #page-top a {
    width: 40px;
    height: 40px;
  }
}
#page-top a::after {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 55%;
  left: 50%;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  #page-top a::after {
    width: 14px;
    height: 14px;
  }
}
#page-top a:hover {
  opacity: 0.7;
}