@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&display=swap");
@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/*------------------------------------------------------------
	clearfix（float解除）
------------------------------------------------------------*/
.u-clearfix {
  *zoom: 1;
}
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*------------------------------------------------------------
    Default
------------------------------------------------------------*/
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, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, button,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

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

body, table,
input, textarea, select, option, button,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
}

table,
input, textarea, select, option {
  line-height: 1.5;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: middle;
  max-width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

iframe {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  font-weight: 500;
}

a {
  color: #050505;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.5s !important;
  transition: all 0.5s !important;
}

a:hover,
a:hover img {
  opacity: 0.8 !important;
  filter: alpha(opacity=80) !important;
  -ms-filter: "alpha(opacity=80)" !important;
}

.u-pd70 {
  padding: 70px 0;
}
.u-bgcover {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-bg01 {
  background-color: #F9F9F9;
}

.u-df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .u-df {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.u-df--jf {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.u-df--al {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.u-df-left, .u-df-right {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .u-df-left, .u-df-right {
    width: 100%;
  }
}

.u-slheight .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.u-slheight .slick-slide {
  height: inherit !important;
}

.u-hover .u-bgcover {
  display: block;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}

.u-hover .u-bgcover:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.u-hover:hover .u-bgcover:after {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*------------------------------------------------------------
  effect（ページ遷移）
------------------------------------------------------------*/
.u-effect {
  position: relative;
}

.u-effect::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F9F9F9;
  background-image: url(../images/common/nav-logo.svg);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

.u-effect.show::after {
  opacity: 1;
}

.u-effect.show article {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/*------------------------------------------------------------
	Layout
------------------------------------------------------------*/
body {
  color: #333333;
  line-height: 1.5;
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

.l-container {
  width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) and (min-width: 767px) {
  .l-container {
    width: 94%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    width: 92%;
  }
}

section {
  position: relative;
}

section:not(:first-child) {
  overflow: hidden;
}

.l-wrap {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
.l-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  position: fixed;
}
.l-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 50px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header-inner {
    margin: 20px;
  }
}
.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
  padding: 10px 25px;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    display: block;
    text-align: center;
    padding: 10px 15px 8px;
  }
  .l-header__logo img {
    width: 70px;
  }
}
.l-header__logo p {
  font-size: 20px;
  margin-left: 10px;
}
@media screen and (max-width: 1100px) and (min-width: 767px) {
  .l-header__logo p {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header__logo p {
    font-size: 1.3rem;
    margin: 3px 0 0;
  }
}
@media screen and (max-width: 350px) {
  .l-header__logo p {
    font-size: 3vw;
  }
}
.l-header__nav {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin-right: 20px;
}
.l-header__nav-list li {
  padding: 0 20px;
}

.wpml-ls-display {
  display: none;
}
.wpml-ls, .l-header__language {
  width: 125px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #333333;
  font-family: "YuGothic", sans-serif;
}
.wpml-ls ul {
  display: flex;
}
@media screen and (max-width: 767px) {
  .wpml-ls, .l-header__language {
    width: 100px;
  }
}
.wpml-ls li, .l-header__language li {
  position: relative;
}
.wpml-ls-current-language a, .l-header__language li.active a {
  color: #C7C7C7 !important;
}
.wpml-ls-current-language:after, .l-header__language li:after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  background-color: #A5A5A5;
}
.wpml-ls-item-en, .l-header__language li.en {
  padding-right: 10px;
}
.wpml-ls-item-ja, .l-header__language li.ja {
  padding-left: 10px;
}
.wpml-ls-item-en:after, .l-header__language li.en:after {
  right: 0;
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
}
.wpml-ls-item-ja:after, .l-header__language li.ja:after {
  left: 0;
  -webkit-transform: rotate(-33deg);
          transform: rotate(-33deg);
}
.wpml-ls a, .l-header__language a {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 70px;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
  }
  .l-header__menu div {
    width: 30px;
    height: 20px;
    position: relative;
  }
  .l-header__menu span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 20px;
    -webkit-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .l-header__menu span:nth-child(1) {
    top: 0px;
  }
  .l-header__menu span:nth-child(2) {
    top: 9px;
  }
  .l-header__menu span:nth-child(3) {
    top: 18px;
  }
  .l-header__menu.on span:nth-child(1) {
    top: 9px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-header__menu.on span:nth-child(2) {
    width: 0;
    left: 50%;
  }
  .l-header__menu.on span:nth-child(2)::before, .l-header__menu.on span:nth-child(2)::after {
    width: 0;
    height: 0;
  }
  .l-header__menu.on span:nth-child(3) {
    top: 9px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header__nav {
    visibility: hidden;
    position: relative;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .l-header__nav.open {
    visibility: visible;
    -webkit-transition: opacity 0.24s ease;
    transition: opacity 0.24s ease;
  }
  .l-header__nav.open .l-header__nav-wrap {
    visibility: visible;
    opacity: 1;
  }
  .l-header__nav-wrap {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 998;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow-x: hidden;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    background-color: #F5F8F6;
  }
  .l-header__nav-list li {
    padding: 10px 0;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0, 3rem, 0);
            transform: translate3d(0, 3rem, 0);
    -webkit-transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s linear, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .l-header__nav-list li.fade {
    opacity: 1;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.l-footer {
  color: #fff;
  background-color: #333333;
}
.l-footer__inner {
  padding: 200px 0 55px;
}
.l-footer__infor--logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .l-footer__infor--logo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__infor--logo p {
  margin-left: 15px;
}
.l-footer__infor--addr {
  font-size: 18px;
  margin-top: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .l-footer__infor--addr {
    font-size: 1.7rem;
  }
}
.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6.5%;
}
@media screen and (max-width: 767px) {
  .l-footer__list {
    margin-top: 50px;
  }
}
.l-footer__list--ttl {
  font-size: 18px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .l-footer__list--ttl {
    font-size: 1.7rem;
  }
}
.l-footer__list ul + ul {
  margin-left: 25px;
}
.l-footer__list li {
  padding: 3px 0;
}
.l-footer__list a {
  color: #fff;
}
.l-footer__copyright {
  font-size: 12px;
  text-align: center;
  padding-bottom: 20px;
}

/*------------------------------------------------------------
    c-title
------------------------------------------------------------*/
.c-title01 {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}
.c-title01 h2 {
  color: #EDEBDB;
  font-size: 150px;
  line-height: 0.8;
  letter-spacing: -3px;
  font-family: "din-condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title01 h2 {
    font-size: 100px;
  }
}
.c-title01 p {
  font-size: 40px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .c-title01 p {
    font-size: 3rem;
  }
}
.c-title01:after {
  content: "";
  width: 50px;
  height: 3px;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background-color: #DDD3AE;
}

.c-text01__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.c-text01__ttl h3 {
  z-index: 1;
  font-size: 36px;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media screen and (max-width: 1400px) and (min-width: 768px) {
  h3.c-text01__ttl--res {
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 767px) {
  .c-text01__ttl h3 {
    font-size: 3rem;
    white-space: normal;
  }
  .c-text01__ttl.en h3 {
    line-height: 1;
  }
  .c-text01__ttl.en {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
}
.c-text01__ttl span {
  color: #EDEBDB;
  font-size: 130px;
  line-height: 1;
  display: block;
  letter-spacing: -5px;
  margin: 0 0 -23px -15px;
  font-family: "din-condensed", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-text01__ttl span {
    font-size: 100px;
    margin: 0 0 -18px -15px;
  }
}
.c-text01__desc {
  font-size: 17px;
  line-height: 1.9;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .c-text01__desc {
    font-size: 1.6rem;
  }
}
.c-text01__desc p + p {
  margin-top: 28px;
}

.c-title02 {
  font-size: 30px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    font-size: 2.6rem;
  }
}
.c-title02:before {
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
  position: absolute;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #9D9161;
}

/*------------------------------------------------------------
    c-btn
------------------------------------------------------------*/
/*------------------------------------------------------------
    c-list
------------------------------------------------------------*/
/*------------------------------------------------------------
    c-table
------------------------------------------------------------*/
.c-table01 td {
  font-size: 20px;
  padding: 15px;
  border-bottom: 1px solid #9A9A9A;
}
@media screen and (max-width: 767px) {
  .c-table01 td {
    font-size: 1.8rem;
    display: block;
  }
}
.c-table01 td:first-child {
  width: 26%;
}
@media screen and (max-width: 767px) {
  .c-table01 td:first-child {
    width: 100%;
  }
}
.c-table01 td:last-child {
  color: #707070;
}

/*------------------------------------------------------------
	c-other
------------------------------------------------------------*/
.slick-arrow {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  padding: 0;
  line-height: 0;
  outline: none;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #656565;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.slick-arrow:hover, .slick-arrow:focus {
  opacity: 0.8;
}

.slick-arrow.slick-disabled:before {
  opacity: 0.25;
}

.slick-arrow::before {
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  position: absolute;
  border: solid #050505;
  border-width: 0 2px 2px 0;
  padding: 3px;
}
.slick-prev {
  left: -19px;
}
@media screen and (max-width: 767px) {
  .slick-prev {
    left: -12px;
  }
}

.slick-next {
  right: -19px;
}
@media screen and (max-width: 767px) {
  .slick-next {
    right: -12px;
  }
}

.slick-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
          transform: translate(-50%, -50%) rotate(135deg);
}

.slick-next::before {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.slick-dots {
  z-index: 2;
  text-align: center;
  position: absolute;
}

.slick-dots li {
  position: relative;
  cursor: pointer;
}

.slick-dots li button {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: block;
  outline: none;
  line-height: 0;
  color: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 3px;
}

.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:hover {
  background-color: #1746E3;
}

.slick-dots li.slick-active button {
  background-color: #1746E3;
}

/* section-mainvisual
------------------------------------------------------------*/
/* c-breadcrumb
------------------------------------------------------------*/
/* section-contact
------------------------------------------------------------*/
.s-contact {
  margin: 70px 0 -100px;
}
@media screen and (max-width: 767px) {
  .s-contact {
    margin: 50px 0 -100px;
  }
}
.s-contact__img {
  height: 360px;
  position: relative;
  background: url(../images/top/contact-bg.jpg);
}
@media screen and (max-width: 767px) {
  .s-contact__img {
    height: 70vw;
    max-height: 400px;
  }
}
.s-contact__img:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: rgba(93, 93, 93, 0.6);
}

/*------------------------------------------------------------
p-top
------------------------------------------------------------*/
.p-top .s-visual, .p-top .s-visual__slider--item {
  height: 833px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .s-visual, .p-top .s-visual__slider--item {
    height: 72vh;
  }
}
.p-top .s-visual:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  mix-blend-mode: overlay;
  background-color: rgba(30, 91, 96, 0.43);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(30, 91, 96, 0.43)));
  background: linear-gradient(rgba(30, 91, 96, 0.43));
}
.p-top .s-visual__slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.p-top .s-visual__slider--item {
  overflow: hidden;
  position: relative;
  opacity: 1 !important;
}
.p-top .s-visual__slider--item span {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: transparent no-repeat center center;
  background-size: cover;
  opacity: 0;
  -webkit-transform: scale(1.4, 1.4);
          transform: scale(1.4, 1.4);
  -webkit-transition: 0s;
  transition: 0s;
}
.p-top .s-visual__slider--item.slick-start span {
  opacity: 1;
  -webkit-transform: scale(1.4, 1.4);
          transform: scale(1.4, 1.4);
  -webkit-transition: ease 0s;
  transition: ease 0s;
}
.p-top .s-visual__slider--item.slick-active span {
  opacity: 1;
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}
.p-top .s-visual__slider--item.slick-continue span {
  opacity: 0;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: ease 12s;
  transition: ease 12s;
}
.p-top .s-visual__logo {
  top: 53%;
  left: 0;
  right: 0;
  color: #fff;
  z-index: 1;
  text-align: center;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-top .s-visual__logo img {
    width: 195px;
  }
}
.p-top .s-visual__logo p {
  font-size: 27px;
  font-family: "YuGothic", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top .s-visual__logo p {
    font-size: 2.6rem;
  }
}
.p-top .s-visual__title {
  left: 0;
  right: 0;
  bottom: -9px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.56);
  text-align: center;
  position: absolute;
  -webkit-filter: blur(5px);
  filter: blur(5px);
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s;
  transition: filter 1.5s, opacity 1.5s, transform 1.5s, -webkit-filter 1.5s, -webkit-transform 1.5s;
}
.p-top .s-visual.is-show .s-visual__title {
  -webkit-filter: blur(0);
  filter: blur(0);
  opacity: 0.999;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.s-visual__title svg {
  width: 100%;
}


.p-top .s-aboutus .c-title01 {
  text-align: left;
  margin-bottom: 35px;
}
.p-top .s-aboutus .c-title01::after {
  right: auto;
  background-color: #ADADAD;
}
.p-top .s-aboutus__img {
  width: 50%;
  height: 378px;
  margin-left: -5%;
  background: url(../images/top/aboutus-img.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-aboutus__img {
    width: 100%;
    height: 70vw;
    max-height: 400px;
    margin: 0 0 60px;
  }
}
.p-top .s-aboutus__txt {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-top .s-aboutus__txt {
    width: 100%;
  }
}
.p-top .s-aboutus__txt--desc {
  font-size: 18px;
  line-height: 1.7;
  font-family: "Hiragino Kaku Gothic ProN", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top .s-aboutus__txt--desc {
    font-size: 1.6rem;
  }
}
.p-top .s-aboutus__txt--desc p + p {
  margin-top: 30px;
}

.p-top .s-service__item {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-top .s-service__item--img {
  right: 0;
  bottom: 12%;
  position: absolute;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__item--img {
    position: unset;
    padding: 0 0 40px;
  }
}
.p-top .s-service__item--pic {
  height: 553px;
  background: url(../images/top/service-img.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-service__item--pic {
    height: 70vw;
    max-height: 500px;
  }
}
.p-top .s-service__list {
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__list {
    padding-top: 10px;
  }
}
.p-top .s-service__list--item {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__list--item {
    margin-top: 50px;
  }
}
.p-top .s-service__list--item.item01 .s-service__list--thumb {
  background: url(../images/top/service-thumb01.jpg);
}
.p-top .s-service__list--item.item02 .s-service__list--thumb {
  background: url(../images/top/service-thumb02.jpg);
}
.p-top .s-service__list--item.item03 .s-service__list--thumb {
  background: url(../images/top/service-thumb03.jpg);
}
.p-top .s-service__list--thumb {
  width: 42%;
  min-height: 140px;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__list--thumb {
    width: 100%;
    height: 60vw;
    max-height: 400px;
  }
}
.p-top .s-service__list--txt {
  width: 53%;
}
@media screen and (max-width: 767px) {
  .p-top .s-service__list--txt {
    width: 100%;
    margin-top: 20px;
  }
}
.p-top .s-service__list--ttl {
  font-size: 17px;
}
.p-top .s-service__list--note {
  font-size: 11px;
  margin-top: 6px;
}
.p-top .s-service__list--label, .p-top .s-service__list--desc {
  font-size: 15px;
  margin-top: 5px;
}
.p-top .s-service__list--label {
  color: #9D9161;
  font-weight: 500;
}
.p-top .s-porary {
  overflow: visible;
}
.p-top .s-porary__title {
  left: 0;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-top .s-porary__title img {
    width: 40%;
  }
}
.p-top .s-porary__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-top .s-porary__item--txt {
  width: 65%;
}
.p-top .s-porary__item--btn {
  color: #fff;
  display: block;
  padding: 35px 15px;
  margin: 70px 0 0;
  max-width: 684px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  background: url(../images/top/porary-btnbg.png) center no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top .s-porary__item--btn {
    padding: 25px 15px;
    margin: 60px 0 0;
  }
}
.p-top .s-porary__item--btn:after {
  content: "";
  width: 27px;
  height: 28px;
  right: 3.5%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  background: url(../images/top/porary-btnicon.svg) center no-repeat;
}
@media screen and (max-width: 767px) {
  .p-top .s-porary__item--btn:after {
    right: 15px;
    display: none;
  }
}
.p-top .s-porary__item--btn .btnlogo {
  margin: 0 16px 0 -8%;
}
@media screen and (max-width: 767px) {
  .p-top .s-porary__item--btn .btnlogo {
    display: block;
    width: 50px;
    margin: 0 auto 15px;
  }
}
@media screen and (max-width: 767px) {
  .p-top .s-porary__item--btn .btntxt {
    width: 200px;
  }
}
.p-top .s-department__item {
  margin-bottom: 50px;
}
.p-top .s-department__item--txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top .s-department__item--txt {
    width: 100%;
    margin-bottom: 40px;
  }
}
.p-top .s-department__item--img {
  width: 24%;
  height: 195px;
  background: url(../images/top/department-img.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-department__item--img {
    width: 100%;
    height: 70vw;
    max-height: 400px;
  }
}
.p-top .s-department__label {
  font-size: 28px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top .s-department__label {
    font-size: 2.6rem;
  }
}
.p-top .s-department__list--item {
  width: 46.5%;
}
@media screen and (min-width: 768px) {
  .p-top .s-department__list--item:not(:nth-child(2n)) {
    margin-right: 7%;
  }
}
@media screen and (max-width: 767px) {
  .p-top .s-department__list--item {
    width: 100%;
  }
  .p-top .s-department__list--item + .s-department__list--item {
    margin-top: 70px;
  }
}
.p-top .s-department__list--img {
  height: 333px;
  background: url(../images/top/department-list01.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-department__list--img {
    height: 70vw;
    max-height: 400px;
  }
}
.p-top .s-department__list--txt {
  padding: 28px 4% 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top .s-department__list--txt {
    padding: 25px 4% 0;
  }
}
.p-top .s-department__list--ttl {
  color: #908765;
  font-size: 25px;
}
.p-top .s-department__list--desc {
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-top .s-business__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-top .s-business__item--img {
  width: 58%;
  height: 473px;
  margin-left: -15%;
  background: url(../images/top/business-img.jpg);
}
@media screen and (max-width: 767px) {
  .p-top .s-business__item--img {
    width: 100%;
    height: 70vw;
    max-height: 470px;
    margin: 80px 0 0;
  }
}
.p-top .s-business__item--txt {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-top .s-business__item--txt {
    width: 100%;
  }
}
.p-top .s-business__item--btn {
  color: #fff;
  padding: 13px;
  display: block;
  margin: 60px 0 0;
  max-width: 220px;
  text-align: center;
  border-radius: 5px;
  background-color: #333333;
  background-image: url(../images/top/ic-link.svg);
  background-repeat: no-repeat;
  background-position: center right 15px;
}
@media screen and (max-width: 767px) {
  .p-top .s-business__item--btn {
    margin-left: auto;
    margin-right: auto;
  }
}
.p-top .s-business__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-top .s-business__list--item.item01 {
  width: 27%;
  height: 192px;
  margin-top: -10px;
  background: url(../images/top/business-list01.jpg);
  /* -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite; */
}
@media screen and (max-width: 767px) {
  .p-top .s-business__list--item.item01 {
    width: 27vw;
    height: 17vw;
    margin-top: 20px;
  }
}
.p-top .s-business__list--item.item02 {
  width: 33%;
  height: 240px;
  margin-top: 20px;
  background: url(../images/top/business-list02.jpg);
  /* -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s; */
}
@media screen and (max-width: 767px) {
  .p-top .s-business__list--item.item02 {
    width: 30vw;
    height: 20vw;
    margin-top: 40px;
  }
}
.p-top .s-business__list--item.item03 {
  width: 16%;
  height: 240px;
  margin-top: -8%;
  background: url(../images/top/business-list03.jpg);
  /* -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s; */
}
@media screen and (max-width: 767px) {
  .p-top .s-business__list--item.item03 {
    width: 19vw;
    height: 27vw;
    margin-top: -4%;
  }
}
@keyframes float {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}
.p-top .company-title {
  color: rgba(227, 225, 203, 0.4);
  z-index: 1;
  font-size: 220px;
  top: 3%;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .p-top .company-title img {
    width: 50%;
  }
}
.p-top .s-company__inner, .p-top .s-history__inner {
  z-index: 1;
  max-width: 800px;
  position: relative;
}
.p-top .s-access__inner {
  max-width: 800px;
}
.p-top .s-access__map {
  padding-top: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top .s-access__map {
    padding-top: 70%;
  }
}

/*------------------------------------------------------------
p-porary
------------------------------------------------------------*/
.page-porary .l-header-inner {
  margin: 0 !important;
}
.page-porary .l-header__logo {
  padding: 20px 0 0px 35px;
}
@media screen and (max-width: 767px) {
  .page-porary .l-header__logo {
    padding: 12px 0 0 20px;
  }
}
.page-porary .l-header__nav {
  visibility: hidden;
}
.page-porary .l-header__language {
  background-color: #fff;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
}
@media screen and (max-width: 767px) {
  .page-porary .l-header__language {
    border-right: 1px solid #707070;
  }
}
.page-porary .l-header__language a {
  color: #272727;
}
.page-porary .l-footer {
  color: #333333;
  text-align: center;
  background-color: #fff;
}
.page-porary .l-footer__infor--logo {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .page-porary .l-footer__infor--logo img {
    max-width: 80%;
  }
}
.page-porary .l-footer__infor--addr {
  font-size: 14px;
  font-weight: 300;
  margin-top: 50px;
}
.page-porary .l-footer__copyright {
  padding-top: 70px;
}
@media screen and (max-width: 767px) {
  .page-porary .l-footer__copyright {
    padding-top: 50px;
  }
}

.s-visual__inner {
  text-align: center;
  padding: 272px 0 200px;
}
@media screen and (max-width: 767px) {
  .s-visual__inner {
    padding: 237px 0 160px;
  }
  .s-visual__inner img {
    max-width: 70%;
  }
}

.p-porary {
  font-weight: 300;
  font-family: "Catamaran", sans-serif;
}
.p-porary .c-title03 {
  text-align: center;
}
.p-porary .c-title03__ttl {
  color: #9D9161;
  font-size: 52px;
  font-weight: 300;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-porary .c-title03__ttl {
    font-size: 4.8rem;
  }
}
.p-porary .c-title03__desc {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 48px;
}
.p-porary .c-title03__desc:after {
  content: "";
  width: 50px;
  height: 3px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background-color: #ADADAD;
}
@media screen and (max-width: 767px) {
  .p-porary .c-title03__desc img {
    max-width: 80%;
  }
}
.p-porary .s-aboutus__inner {
  max-width: 600px;
}
.p-porary .s-aboutus__txt {
  line-height: 1.9;
  text-align: center;
}
.p-porary .s-aboutus__social {
  margin: 100px 4% 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-porary .s-gallery__title {
  text-align: center;
  margin-bottom: 50px;
}
.p-porary .s-gallery__item-right {
  padding-left: 4%;
}
.p-porary .s-gallery__item--img {
  height: 359px;
  background: url(../images/porary/gallery-img.jpg);
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__item--img {
    height: 70vw;
    max-height: 400px;
  }
}
.p-porary .s-gallery__item--note {
  line-height: 1.7;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__item--social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 20px 0 30px;
  }
}
.p-porary .s-gallery__item--social li + li {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__item--social li + li {
    margin: 0 0 0 20px;
  }
}
.p-porary .s-gallery__item--txt {
  line-height: 1.9;
}
.p-porary .s-gallery__item--txt p + p {
  margin-top: 30px;
}
.p-porary .s-gallery__box {
  padding: 30px;
  margin-top: 70px;
  background-color: #F9F9F9;
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__box {
    padding: 20px;
  }
}
.p-porary .s-gallery__box--img {
  width: 29%;
  min-height: 367px;
  background: url(../images/porary/gallery-art.jpg);
  background-size: contain !important;
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__box--img {
    width: 100%;
    height: 70vw;
    min-height: auto;
    max-height: 400px;
  }
}
.p-porary .s-gallery__box--txt {
  width: 68%;
}
@media screen and (max-width: 767px) {
  .p-porary .s-gallery__box--txt {
    width: 100%;
    margin-top: 40px;
  }
}
.p-porary .s-gallery__box--txt p {
  margin-top: 23px;
}
.p-porary .s-gallery__box--desc {
  line-height: 1.6;
}
.p-porary .s-gallery__box--note {
  font-size: 14px;
  line-height: 1.7;
}
.p-porary .s-past__box {
  height: 720px;
  overflow-x: hidden;
}
.p-porary .s-past__items {
  padding: 60px 0;
  border-bottom: 1px solid #C7C498;
}
.p-porary .s-past__items:nth-child(1) {
  padding-top: 20px;
}
.p-porary .s-past__items--img {
  width: 32%;
  padding: 0 3%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-porary .s-past__items--img {
    width: 100%;
    padding: 0;
  }
}
.p-porary .s-past__items--txt {
  width: 70%;
  margin-left: 1%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-porary .s-past__items--txt {
    width: 100%;
    margin: 60px 0 0;
  }
}
.p-porary .s-past__items--ttl {
  line-height: 2;
}
.p-porary .s-past__items--ttl + .s-past__items--ttl {
  margin-top: 40px;
}
.p-porary .s-past__items--desc + .s-past__items--ttl {
  margin-top: 30px;
}
.p-porary .s-past__items--desc {
  line-height: 2;
  margin-top: 6px;
}