@charset "UTF-8";
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * for tablet and Pc. large viewport
 */
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
/** extend */
.scroll_up {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0; }
.scroll_up.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1; }
.scroll_left {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }
.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0); }
.scroll {
  -webkit-transition: 0.8s ease-in-out;
  transition: 0.8s ease-in-out;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0; }
.scroll.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1; }
.fade_up {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
.fade_up_delay {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0); } }
.fade_up_delay1 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s; }
.fade_up_delay2 {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s; }
.fade_left {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
.fade_left_delay {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0); } }
.fade {
  -webkit-animation-name: fadeAnime;
          animation-name: fadeAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
.fade_delay {
  -webkit-animation-name: fadeAnime;
          animation-name: fadeAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0; }
@-webkit-keyframes fadeAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeAnime {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
.anime_wrap {
  position: relative;
  overflow: hidden; }
.zoomOut .swiper-slide {
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 1.5s;
  transition: 1.5s; }
.zoomOut.show .swiper-slide {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1); }
.pattern::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 2;
  -webkit-transition: 1s;
  transition: 1s; }
.pattern.show::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%); }
.pattern img {
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s; }
.pattern.show img {
  opacity: 1; }
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none; }
html {
  line-height: 1.5; }
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: 0.5px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background: white;
  color: #595757; }
a {
  color: #231815;
  text-decoration: none;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 600; }
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
p {
  margin: 0;
  padding: 0; }
h1,
h2,
h3,
h4 {
  color: #231815; }
p {
  font-size: 1.1rem; }
.accent-color {
  color: #a30018; }
ul,
ol,
li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  vertical-align: bottom; }
figure {
  margin: 0;
  padding: 0; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type="number"] {
  -moz-appearance: textfield; }
.l-footer__wrapper {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/footer-background.png");
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/footer-background.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  padding: 2rem;
  gap: 1rem; }
.l-footer__wrapper__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.l-footer__wrapper__contact a {
      font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; }
.l-footer__wrapper__contact button {
      background: unset;
      border: 1px solid white;
      color: white;
      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;
      padding: 0.8rem;
      gap: 2rem;
      cursor: pointer;
      font-size: 2rem;
      font-weight: normal;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content;
      -webkit-transition: 0.5s all;
      transition: 0.5s all; }
.l-footer__wrapper__contact button:hover {
        background: white;
        color: unset; }
.l-footer__wrapper__contact button:hover .c-arrow-grey {
          background: #a30018; }
.l-footer__wrapper__log-nav-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%; }
.l-footer__wrapper__log-nav-wrapper__logo img {
      width: 80px; }
.l-footer__wrapper__log-nav-wrapper__nav {
      display: none; }
.l-footer__wrapper__log-nav-wrapper__nav a {
        -webkit-transition: 0.5s all;
        transition: 0.5s all; }
.l-footer__wrapper__log-nav-wrapper__nav a:hover {
        color: #999999; }
.l-footer__wrapper__log-nav-wrapper nav ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
      gap: 1.5rem; }
.l-footer__wrapper__log-nav-wrapper nav ul li a {
        color: #eaeaea; }
.l-footer__copyright {
  padding: 1rem 2rem;
  text-align: right;
  background-color: #a30018;
  color: #eaeaea; }
.l-header {
  height: 80px;
  width: 100vw;
  position: fixed;
  z-index: 100;
  background-color: white; }
.l-header .l-header-wrapper {
    position: fixed;
    top: 0;
    z-index: 100;
    height: 80px;
    padding-left: 2rem;
    background: white;
    left: 0;
    width: 100%;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.l-header .l-header-wrapper img {
      width: 80%; }
.l-header nav {
  display: none; }
.l-header nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem; }
.l-header nav ul a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 0.5rem;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
.l-header nav ul a:hover .nav-circle {
        border-color: #a30018; }
.wpml-ls-legacy-dropdown.wpml-ls {
  width: unset; }
.wpml-ls-legacy-dropdown.wpml-ls > ul {
    width: 150px; }
.wpml-ls-legacy-dropdown.wpml-ls > ul > li {
      width: 100%;
      position: relative; }
.wpml-ls-legacy-dropdown.wpml-ls > ul > li::before {
        content: '';
        display: block;
        background-image: url(../images/earth-icon.png);
        width: 17px;
        height: 17px;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        left: 5px;
        z-index: 1; }
.wpml-ls-legacy-dropdown.wpml-ls a {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem; }
.wpml-ls-legacy-dropdown .wpml-ls-sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0; }
.wpml-ls-legacy-dropdown a span {
  text-align: center; }
.wpml-ls-sub-menu .wpml-ls-item {
  width: 100%; }
/**
 * main.scss
 */
.l-main {
  padding: 80px 0 0 0;
  position: relative; }
.p-about__heading {
  background-image: url("../images/about/about-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative; }
.p-about__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-about__contents {
  margin: 8rem 2rem 8rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem; }
.p-about__contents__philosophy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin: auto;
    max-width: 800px; }
.p-about__contents__philosophy h1 {
      text-align: center; }
.p-about__contents__philosophy__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem; }
.p-about__contents__philosophy__wrapper__greyLineContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
.p-about__contents__philosophy__wrapper__bold {
        font-weight: bold; }
.p-about__contents__purpose {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin: auto;
    max-width: 800px; }
.p-about__contents__purpose h1 {
      text-align: center; }
.p-about__contents__purpose h2 {
      text-align: center;
      color: #595757; }
.p-about__contents__purpose__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem; }
.p-about__contents__purpose__wrapper__greyLineContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
.p-about__contents__purpose__wrapper__bold {
        font-weight: bold; }
.p-about__team {
  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;
  gap: 3rem;
  padding: 5rem 2rem;
  background-color: #ebeee8;
  position: relative; }
.p-about__team__members {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
    gap: 2rem; }
.p-about__team__members__wrapper {
      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; }
.p-about__team__members__wrapper img {
        width: 250px;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover; }
.p-about__team__members__wrapper__role {
        padding-top: 0.5rem;
        font-size: 0.9rem; }
.p-about__team__members__wrapper__name {
        font-size: 1.2rem; }
.p-about__about-company {
  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;
  gap: 2rem;
  margin: 5rem 2rem; }
.p-about__about-company h1 {
    text-align: center; }
.p-about__about-company__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; }
.p-about__about-company__wrapper__greyLineContainer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
.p-about__about-company__wrapper table tr td:nth-child(1) {
      padding-right: 3rem; }
.p-about__locations {
  background-color: #ebeee8;
  position: relative; }
.p-about__locations__container {
    padding: 5rem 2rem 8rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; }
.p-about__locations__container h1 {
      text-align: center; }
.p-about__locations__container__locationsAnimation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      max-width: 1000px;
      margin: auto; }
.p-about__locations__container__locationsAnimation__greyLineContainer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
.p-about__locations__container__locationsAnimation__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-about__locations__container__locationsAnimation__wrapper__osaka, .p-about__locations__container__locationsAnimation__wrapper__beppu {
          margin-top: 2rem;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1rem; }
.p-about__locations__container__locationsAnimation__wrapper__osaka__textWrapper, .p-about__locations__container__locationsAnimation__wrapper__beppu__textWrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            gap: 1rem; }
.p-about__locations__container__locationsAnimation__wrapper__osaka h4, .p-about__locations__container__locationsAnimation__wrapper__beppu h4 {
            color: #595757; }
.p-about__locations__container__locationsAnimation__wrapper__osaka iframe, .p-about__locations__container__locationsAnimation__wrapper__beppu iframe {
            width: 100%;
            height: 240px; }
.p-contact__heading {
  background-image: url("../images/contact/contact_policy-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  color: white;
  position: relative; }
.p-contact__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-contact__wrapper {
  max-width: 1000px;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  padding: 0 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
.p-contact__wrapper__animationWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%; }
.p-contact p {
  text-align: center; }
.p-contact p a {
    color: #a30018;
    font-size: 1.1rem;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; }
.p-home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6rem; }
.p-home__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    padding: 0 3rem; }
.p-home__about__heading {
      text-align: center;
      font-size: 1.4rem; }
.p-home__about__greyLineWrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
.p-home__about__contentsWrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      text-align: left; }
.p-home__about__buttonWrapper a {
      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;
      gap: 1rem; }
.p-home__about__buttonWrapper a:hover .c-btn {
        color: #a30018; }
.p-home__about__buttonWrapper a:hover .c-arrow-grey {
        background: #a30018; }
.p-home__services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #f5f2e9;
    position: relative;
    margin-bottom: -6rem; }
.p-home__services__heading {
      background-image: url("../images/service.jpg");
      background-size: 200%;
      background-repeat: no-repeat;
      height: 260px;
      -webkit-animation: parallaxMini linear both;
              animation: parallaxMini linear both;
      animation-timeline: view();
      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;
      position: relative;
      margin-bottom: 6rem; }
.p-home__services h1 {
      color: white;
      letter-spacing: 7px;
      font-size: 2.8rem; }
.p-home__services__land-operator-service, .p-home__services__regional-revitalization-service {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      max-width: 700px;
      padding: 0 2rem 2rem 2rem;
      margin: auto;
      z-index: 10; }
.p-home__services__land-operator-service__wrapper, .p-home__services__regional-revitalization-service__wrapper {
        background-color: #fefefd;
        padding: 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; }
.p-home__services__land-operator-service__wrapper__contents, .p-home__services__regional-revitalization-service__wrapper__contents {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem;
          z-index: 10;
          -webkit-box-flex: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1; }
.p-home__services__land-operator-service table th, .p-home__services__regional-revitalization-service table th {
        text-align: start;
        font-size: 1.1rem; }
.p-home__services__land-operator-service p, .p-home__services__regional-revitalization-service p {
        font-size: 1rem; }
.p-home__services__land-operator-service img, .p-home__services__regional-revitalization-service img {
        width: 100%; }
.p-home__services__regional-revitalization-service {
      margin-bottom: 5rem; }
.p-home__services__btn-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: space-evenly;
          -ms-flex-pack: space-evenly;
              justify-content: space-evenly;
      padding-top: 1rem; }
.p-home__services__btn-wrapper a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0.3rem; }
.p-home__services__btn-wrapper a:hover .c-btn {
          color: #a30018; }
.p-home__services__btn-wrapper a:hover .c-arrow-grey {
          background: #a30018; }
.p-home__news__heading {
    background-image: url("../images/news-background.jpg");
    background-size: 170%;
    background-repeat: no-repeat;
    height: 260px;
    -webkit-animation: parallaxNewsMini linear both;
            animation: parallaxNewsMini linear both;
    animation-timeline: view();
    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;
    position: relative;
    margin-bottom: 5rem; }
.p-home__news h1 {
    color: white;
    letter-spacing: 7px;
    font-size: 2.8rem; }
.p-home__news__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    margin: 5rem auto;
    padding: 0 2rem;
    max-width: 800px; }
.p-home__news__wrapper__btn-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
.p-home__news__wrapper__btn-wrapper a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 0.3rem; }
.p-home__news__wrapper__btn-wrapper a:hover .c-btn {
          color: #a30018; }
.p-home__news__wrapper__btn-wrapper a:hover .c-arrow-grey {
          background: #a30018; }
@-webkit-keyframes parallaxMini {
  from {
    background-position: center -8px; }
  to {
    background-position: center -120px; } }
@keyframes parallaxMini {
  from {
    background-position: center -8px; }
  to {
    background-position: center -120px; } }
@-webkit-keyframes parallaxNewsMini {
  from {
    background-position: -100px -50px; }
  to {
    background-position: -100px -160px; } }
@keyframes parallaxNewsMini {
  from {
    background-position: -100px -50px; }
  to {
    background-position: -100px -160px; } }
@-webkit-keyframes parallaxNewsMobileBig {
  from {
    background-position: center -100px; }
  to {
    background-position: center -230px; } }
@keyframes parallaxNewsMobileBig {
  from {
    background-position: center -100px; }
  to {
    background-position: center -230px; } }
@-webkit-keyframes parallaxNewsMobileExtra {
  from {
    background-position: center -180px; }
  to {
    background-position: center -300px; } }
@keyframes parallaxNewsMobileExtra {
  from {
    background-position: center -180px; }
  to {
    background-position: center -300px; } }
@-webkit-keyframes parallaxNewsMobileMax {
  from {
    background-position: center -180px; }
  to {
    background-position: center -300px; } }
@keyframes parallaxNewsMobileMax {
  from {
    background-position: center -180px; }
  to {
    background-position: center -300px; } }
@-webkit-keyframes parallaxMobile {
  from {
    background-position: center -100px; }
  to {
    background-position: center; } }
@keyframes parallaxMobile {
  from {
    background-position: center -100px; }
  to {
    background-position: center; } }
@-webkit-keyframes parallaxNewsLarge {
  from {
    background-position: center -100px; }
  to {
    background-position: center -250px; } }
@keyframes parallaxNewsLarge {
  from {
    background-position: center -100px; }
  to {
    background-position: center -250px; } }
@-webkit-keyframes parallaxNewsDesktop {
  from {
    background-position: center -300px; }
  to {
    background-position: center -450px; } }
@keyframes parallaxNewsDesktop {
  from {
    background-position: center -300px; }
  to {
    background-position: center -450px; } }
.p-news__heading {
  background-image: url("../images/news/news-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative; }
.p-news__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-news__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 1100px;
  margin: 5rem 2rem; }
.p-news__wrapper__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem; }
.p-news__wrapper__heading__title {
      font-size: 2rem; }
.p-news__wrapper__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.p-news__wrapper__content img {
      width: 100%;
      height: 20rem;
      -o-object-fit: cover;
         object-fit: cover; }
.p-newslist__heading {
  background-image: url("../images/news/news-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative; }
.p-newslist__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-newslist__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 5rem auto;
  padding: 2rem; }
.p-newslist__wrapper__newsWrapper__news {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin: 1.5rem auto;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; }
.p-policy__heading {
  background-image: url("../images/contact/contact_policy-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative; }
.p-policy__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 1.8rem;
    text-align: center; }
.p-policy__contents {
  max-width: 1000px;
  margin: auto;
  margin-top: 8rem;
  margin-bottom: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5rem;
  padding: 0 2rem; }
.p-policy__contents__sectionWrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem; }
.p-policy__contents__sectionWrapper__numsWrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      padding-left: 1rem; }
.p-policy__contents__sectionWrapper__numsWrapper__num {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem; }
.p-policy__contents__sectionWrapper__subContainer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem; }
.p-policy__contents__sectionWrapper__subSection {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 1rem; }
.p-policy__contents__sectionWrapper__subSection p {
        padding-left: 1rem; }
.p-policy__contents__sectionWrapper__greyLineWrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
.p-policy__contents__sectionWrapper:nth-child(1) h1,
  .p-policy__contents__sectionWrapper:nth-child(1) h2 {
    text-align: center; }
.p-policy__contents__sectionWrapper:nth-child(4) {
    gap: 5rem; }
.p-policy__contents__numLine {
    padding-left: 1rem; }
.p-policy__contents__helpline {
    text-align: center;
    border: 1px solid #a30018;
    max-width: 1000px;
    padding: 3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-grid-column-align: center;
        justify-self: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.5rem;
    position: relative; }
.p-policy__contents__helpline a {
      font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
      font-weight: unset;
      color: blue;
      text-decoration: underline; }
.p-recruitment__heading {
  background-image: url("../images/recruitment/recruit-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative; }
.p-recruitment__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-recruitment__contents {
  margin: 5rem 2rem;
  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;
  gap: 2rem; }
.p-recruitment__contents__animationWrapper {
    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;
    gap: 2rem; }
.p-recruitment__contents__animationWrapper__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse;
      gap: 2rem; }
.p-recruitment__contents__animationWrapper__wrapper img {
        width: 100%; }
.p-recruitment__contents__animationWrapper__wrapper__contents {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        gap: 2rem; }
.p-recruitment__contents__animationWrapper__wrapper__contents a button {
          border: 1px solid #a30018;
          color: white;
          background-color: #a30018;
          width: 100%;
          padding: 1.5rem 1rem;
          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;
          gap: 1rem;
          cursor: pointer;
          font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
          font-size: 1.3rem;
          max-width: 600px;
          -webkit-transition: 0.5s all;
          transition: 0.5s all; }
.p-recruitment__contents__animationWrapper__wrapper__contents a button .c-arrow-white {
            -webkit-transition: 0.5s all;
            transition: 0.5s all; }
.p-recruitment__contents__animationWrapper__wrapper__contents a:hover button {
          color: #a30018;
          background-color: white; }
.p-recruitment__contents__animationWrapper__wrapper__contents a:hover button .c-arrow-white {
            background: #a30018; }
.p-recruitment__contents__animationWrapper__wrapper__contents a:hover button .c-arrow-white::after {
              content: "";
              border-color: white; }
.p-service__heading {
  background-image: url("../images/service/service-top.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  height: 300px;
  background-position: center;
  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;
  position: relative;
  z-index: 10; }
.p-service__heading h1 {
    color: white;
    letter-spacing: 6px;
    font-size: 2rem;
    text-align: center; }
.p-service__second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  max-width: 800px; }
.p-service__second h2 {
    color: #595757; }
.p-service__contents {
  background-color: #f3eaec;
  margin-top: -50px;
  padding-top: 6rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
.p-service__contents__wrapper {
    margin: 2rem;
    max-width: 1600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5rem;
    background: white;
    padding: 3rem 2rem 0 2rem;
    z-index: 10;
    position: relative; }
.p-service__contents__wrapper__land-operator-service {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin: auto;
      max-width: 800px; }
.p-service__contents__wrapper__land-operator-service__animationWrapper {
        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;
        gap: 2rem; }
.p-service__contents__wrapper__imgWrapper img {
      width: 100%; }
.p-service__contents__wrapper__achievements-to-date {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      gap: 2rem; }
.p-service__contents__wrapper__achievements-to-date h2 {
        color: #595757; }
.p-service__contents__wrapper__achievements-to-date table tr td:nth-child(1) {
        padding-right: 0.3rem; }
.p-service__contents__wrapper__details {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 3rem; }
.p-service__contents__wrapper__details__international-crew {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper p {
            font-size: 1rem; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper table th {
            text-align: left; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper__btn-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper__btn-wrapper a {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              gap: 0.3rem; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper__btn-wrapper a:hover .c-btn {
                color: #a30018; }
.p-service__contents__wrapper__details__international-crew__contents__wrapper__btn-wrapper a:hover .c-arrow-grey {
                background: #a30018; }
.p-service__contents__wrapper__details__international-crew .anime_wrap img {
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
.p-service__contents__wrapper__details__case-study {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-service__contents__wrapper__details__case-study__contents__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem; }
.p-service__contents__wrapper__details__case-study__contents__wrapper p {
            font-size: 1rem; }
.p-service__contents__wrapper__details__case-study .anime_wrap img {
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
.p-service__contents__wrapper__details__check-tours {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper p {
            font-size: 1rem; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper__btn-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper__btn-wrapper a {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              gap: 0.3rem; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper__btn-wrapper a:hover .c-btn {
                color: #a30018; }
.p-service__contents__wrapper__details__check-tours__contents__wrapper__btn-wrapper a:hover .c-arrow-grey {
                background: #a30018; }
.p-service__contents__wrapper__details__check-tours .anime_wrap img {
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
.p-service__contents__wrapper__details__achievements {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-service__contents__wrapper__details__achievements__contents__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem; }
.p-service__contents__wrapper__details__achievements__contents__wrapper p {
            font-size: 1rem; }
.p-service__contents__wrapper__details__achievements__contents__wrapper__btn-wrapper {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
                -ms-flex-pack: center;
                    justify-content: center; }
.p-service__contents__wrapper__details__achievements__contents__wrapper__btn-wrapper a {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex;
              gap: 0.3rem; }
.p-service__contents__wrapper__details__achievements__contents__wrapper__btn-wrapper a:hover .c-btn {
                color: #a30018; }
.p-service__contents__wrapper__details__achievements__contents__wrapper__btn-wrapper a:hover .c-arrow-grey {
                background: #a30018; }
.p-service__contents__wrapper__details__achievements .anime_wrap img {
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
.p-service__contents__wrapper__details__specific-activities {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 2rem; }
.p-service__contents__wrapper__details__specific-activities__contents__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
              -ms-flex-direction: column;
                  flex-direction: column;
          gap: 1.5rem; }
.p-service__contents__wrapper__details__specific-activities__contents__wrapper p {
            font-size: 1rem; }
.p-service__contents__wrapper__details__specific-activities .anime_wrap img {
          -o-object-fit: cover;
             object-fit: cover;
          width: 100%; }
.p-service__contents__wrapper__regional-development-business {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
.p-service__contents__wrapper__regional-development-business__animationWrapper {
        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;
        gap: 2rem; }
.p-service .content2 {
  background-color: #ebeee8;
  padding-top: 4rem;
  padding-bottom: 4rem; }
.p-service .content2__wrapper {
    margin-bottom: 0; }
.p-service .content2__wrapper__regional-development-business {
      margin: auto;
      max-width: 800px; }
.c-arrow-grey {
  position: relative;
  background: #999999;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all; }
.c-arrow-grey::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 8.5px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); }
.c-arrow-red {
  position: relative;
  background: #a30018;
  height: 25px;
  width: 25px;
  border-radius: 50%; }
.c-arrow-red::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  top: 8.5px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); }
.c-arrow-white {
  position: relative;
  background: white;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all; }
.c-arrow-white::after {
  content: "";
  position: absolute;
  left: 7px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #a30018;
  border-left: 2px solid #a30018;
  top: 8.5px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg); }
.c-btn {
  cursor: pointer;
  background-color: unset;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: black;
  -webkit-transition: 0.5s all;
  transition: 0.5s all; }
.c-contact-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #999999;
  flex-direction: column;
  gap: 2rem;
  width: 100%; }
.c-contact-form form {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem; }
.c-contact-form form .c-contact-form__wrapper {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 0.5rem; }
.c-contact-form form .c-contact-form__wrapper label {
        color: #595757; }
.c-contact-form form .c-contact-form__wrapper select {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        padding: 0.8rem;
        color: #999999;
        border-color: #999999; }
.c-contact-form form .c-contact-form__wrapper input {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        padding: 0.8rem;
        color: #999999;
        border: 1px solid #999999;
        width: 100%; }
.c-contact-form form .c-contact-form__wrapper__checkboxWrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        gap: 0.5rem;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1; }
.c-contact-form form .c-contact-form__wrapper__checkboxWrapper__checkbox {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          gap: 0.5rem;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          min-width: 13rem; }
.c-contact-form form .c-contact-form__wrapper__checkboxWrapper__checkbox input#inquiry {
            width: 18px;
            height: 18px;
            -webkit-box-flex: unset;
                -ms-flex-positive: unset;
                    flex-grow: unset; }
.c-contact-form form .c-contact-form__wrapper__checkboxWrapper__checkbox label {
            -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                    flex-grow: 1;
            color: #999999; }
.c-contact-form form .c-contact-form__wrapper textarea {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border: 1px solid #999999;
        height: 10rem; }
.c-contact-form form p {
      color: #999999; }
.c-contact-form__btnWrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
.c-contact-form__btnWrapper button {
      background-color: #a30018;
      color: white;
      border: 1px solid #a30018;
      padding: 1rem 5rem;
      font-size: 1.5rem;
      -webkit-transition: 0.5s all;
      transition: 0.5s all;
      cursor: pointer; }
.c-contact-form__btnWrapper:hover button {
    color: #a30018;
    background-color: white; }
.c-contact-form .wpcf7 {
    width: 100%; }
.c-contact-form .wpcf7-form-control-wrap {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
.c-contact-form form .c-contact-form__wrapper select {
    width: 100%; }
.c-contact-form form .c-contact-form__wrapper textarea {
    width: 100%; }
.c-contact-form form .c-contact-form__wrapper .wpcf7-list-item {
    margin-left: 0; }
.c-contact-form form .c-contact-form__wrapper .wpcf7-list-item label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.5rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-width: 208px; }
.c-contact-form form .c-contact-form__wrapper .wpcf7-list-item label input {
    width: 18px;
    height: 18px; }
.c-contact-form form .c-contact-form__wrapper .wpcf7-list-item label span {
    width: 182px;
    color: #999; }
.wpcf7-form .c-contact-form__btnWrapper {
  display: none; }
.c-contact-form__btnWrapper {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important; }
.wpcf7-submit {
  background-color: #a30018;
  color: #fff;
  border: 1px solid #a30018;
  padding: 1rem 5rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  cursor: pointer;
  font-size: 24px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic; }
.wpcf7-submit:hover {
    color: #a30018;
    background-color: #fff; }
.c-grey-dash-line {
  border-bottom: 1px dashed #999999; }
.c-grey-line {
  width: 50px;
  border-bottom: 1px solid #595757; }
.l-menu-btn {
  z-index: 4610;
  position: fixed;
  right: 20px;
  width: 30px;
  height: 30px;
  margin: auto; }
.l-menu-btn:hover .l-menu-btn__border span:nth-of-type(2) {
    -webkit-transform: translate(0, 4px);
            transform: translate(0, 4px); }
.l-menu-btn:hover .l-menu-btn__border span:nth-of-type(3) {
    -webkit-transform: translate(0, -4px);
            transform: translate(0, -4px); }
.l-menu-btn.on .l-menu-btn__border span:nth-of-type(2) {
    -webkit-transform: translate(0, 0px) rotate(-45deg);
            transform: translate(0, 0px) rotate(-45deg); }
.l-menu-btn.on .l-menu-btn__border span:nth-of-type(3) {
    -webkit-transform: translate(0, 0px) rotate(45deg);
            transform: translate(0, 0px) rotate(45deg); }
.l-menu-open {
  display: none;
  z-index: 90;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  padding: 5rem;
  padding-top: 8rem; }
.l-menu-open.open {
    display: block; }
.l-menu-open__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.l-menu-open__inner ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 2rem;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; }
.l-menu-open__inner ul a {
        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;
        gap: 0.5rem; }
.l-menu-open__inner ul a .nav-circle {
          border-color: #a30018; }
.l-menu-btn.on .l-menu-btn__border span {
  background-color: #000; }
.activeMenu .l-menu-btn .l-menu-btn__border span {
  background-color: #000; }
.l-menu-btn__border {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer; }
.l-menu-btn__border span {
  pointer-events: none;
  display: block;
  width: 30px;
  height: 2px;
  margin: auto;
  background-color: #000;
  -webkit-transition: background-color 0.5s, opacity ease-out 0.2s, -webkit-transform ease-out 0.1s;
  transition: background-color 0.5s, opacity ease-out 0.2s, -webkit-transform ease-out 0.1s;
  transition: background-color 0.5s, transform ease-out 0.1s, opacity ease-out 0.2s;
  transition: background-color 0.5s, transform ease-out 0.1s, opacity ease-out 0.2s, -webkit-transform ease-out 0.1s; }
.p-top .l-menu-btn__border span {
  background-color: #fff; }
.l-menu-btn__border span:nth-of-type(2) {
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: translate(0, 7px);
  transform: translate(0, 7px); }
.l-menu-btn__border span:nth-of-type(3) {
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: translate(0, -7px);
  transform: translate(0, -7px); }
.l-menu-btn__border span:nth-of-type(1) {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  opacity: 0; }
.l-menu-btn__border span:nth-of-type(1)::before,
.l-menu-btn__border span:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #000;
  -webkit-transition: -webkit-transform ease-out 0.2s 0.1s;
  transition: -webkit-transform ease-out 0.2s 0.1s;
  transition: transform ease-out 0.2s 0.1s;
  transition: transform ease-out 0.2s 0.1s, -webkit-transform ease-out 0.2s 0.1s; }
.l-menu-btn.active .l-menu-btn__border span:nth-of-type(2) {
  -webkit-transform: translate(0, 0px) rotate(-45deg);
  transform: translate(0, 0px) rotate(-45deg); }
.l-menu-btn.active .l-menu-btn__border span:nth-of-type(3) {
  -webkit-transform: translate(0, 0px) rotate(45deg);
  transform: translate(0, 0px) rotate(45deg); }
.l-menu-btn__border:hover span:nth-of-type(2) {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px); }
.l-menu-btn__border:hover span:nth-of-type(3) {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px); }
.l-menu-open__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start; }
.l-menu-btn__border:hover span:nth-of-type(2) {
  -webkit-transform: translate(0, 4px);
  transform: translate(0, 4px); }
.l-menu-btn__border:hover span:nth-of-type(3) {
  -webkit-transform: translate(0, -4px);
  transform: translate(0, -4px); }
.c-hero {
  position: relative; }
.c-hero .c-hero-catchcopy {
    position: absolute;
    top: 55%;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    letter-spacing: 2px;
    font-size: 0.7rem; }
.c-hero .c-hero-catchcopy h1 {
      background-color: white;
      padding: 0 1rem;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content; }
.c-hero .red-circle {
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -70px; }
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }
.c-language-select select {
  padding: 0.4rem;
  background-color: transparent;
  padding-left: 25px;
  background-color: transparent;
  background-image: url("../images/earth-icon.png");
  background-repeat: no-repeat;
  background-position: 5px 50%;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: bold;
  border: 1px solid black;
  font-size: 1rem;
  color: black;
  width: 150px; }
.nav-circle {
  width: 1.1rem;
  height: 1.1rem;
  border: 2px solid #cccccc;
  border-radius: 50%;
  -webkit-transition: 0.5s all;
  transition: 0.5s all; }
.c-news__item {
  width: 100%;
  display: inline-block; }
.c-news__item__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    margin: 0.5rem auto 1.5rem auto;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; }
.c-news__item + a.c-news__item:before {
  content: "";
  border-bottom: 1px dashed #999999;
  width: 100%;
  display: block;
  margin-bottom: 1.5rem; }
.c-num-pagination {
  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; }
.c-num-pagination .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem; }
.c-num-pagination .pagination a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    border: 1px solid black;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    cursor: pointer; }
.c-num-pagination .pagination a.active {
    background-color: #a30018;
    border-color: #a30018;
    color: white; }
.c-num-pagination .pagination a:hover:not(.active) {
    background-color: #a30018;
    border-color: #a30018;
    color: white; }
.c-pagination {
  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; }
.c-pagination .pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 90%; }
.c-pagination .pagination a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 35px;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-decoration: none;
    border: 1px solid black;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    cursor: pointer; }
.c-pagination .pagination a.active {
    background-color: #a30018;
    border-color: #a30018;
    color: white; }
.c-pagination .pagination a:hover:not(.active) {
    background-color: #a30018;
    border-color: #a30018;
    color: white; }
.c-red-circle {
  width: 112px;
  height: 112px;
  border: 13px solid #a30018;
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -56px; }
.c-shippou-background {
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }
.c-shippou-background .box {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
.c-shippou-background .shippou {
    background-size: 90px 90px;
    background-image: radial-gradient(farthest-corner, rgba(255, 255, 255, 0) 68%, #e8e4dc 68% 70%, rgba(255, 255, 255, 0) 70% 100%), radial-gradient(circle at top left, rgba(255, 255, 255, 0) 34%, #e8e4dc 34% 35%, rgba(255, 255, 255, 0) 35% 100%), radial-gradient(circle at top right, rgba(255, 255, 255, 0) 34%, #e8e4dc 34% 35%, rgba(255, 255, 255, 0) 35% 100%), radial-gradient(circle at bottom left, rgba(255, 255, 255, 0) 34%, #e8e4dc 34% 35%, rgba(255, 255, 255, 0) 35% 100%), radial-gradient(circle at bottom right, rgba(255, 255, 255, 0) 34%, #e8e4dc 34% 35%, rgba(255, 255, 255, 0) 35% 100%);
    background-repeat: repeat; }
.c-small-red-circle {
  width: 30px;
  height: 30px;
  border: 3px solid #a30018;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  background: white; }
.c-sns-icon {
  position: relative;
  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;
  width: 45px;
  height: 45px;
  border: 1px solid white;
  -webkit-transition: border-color ease-out 0.2s;
  transition: border-color ease-out 0.2s;
  border-radius: 50%; }
.c-sns-icon svg {
    fill: white;
    z-index: 10;
    -webkit-transition: fill ease-out 0.4s 0.1s;
    transition: fill ease-out 0.4s 0.1s; }
.c-sns-icon:hover {
    border: 1px solid rgba(255, 255, 255, 0); }
.c-sns-icon:hover svg {
      fill: black; }
.bgcenterout:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: white;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transform-origin: center;
          transform-origin: center; }
.bgcenterout:hover:before {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1); }
.c-swiper {
  height: calc(80vh - 80px);
  width: 100%; }
.c-swiper .swiper-slide {
    background-position: center;
    background-size: cover; }
.c-swiper .swiper-slide img {
    width: 100vw;
    height: calc(80vh - 80px);
    -o-object-fit: cover;
       object-fit: cover; }
.c-white-circle {
  width: 112px;
  height: 112px;
  border: 13px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  bottom: -56px;
  left: 0;
  right: 0;
  margin: auto; }
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post_article strong {
  font-weight: bold; }
.c-wp-post_article em {
  font-style: italic; }
.c-wp-post_article ul {
  margin-left: 1em;
  display: block;
  list-style-type: disc !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article ol {
  display: block;
  list-style-type: decimal !important;
  margin-before: 1em;
  margin-after: 1em;
  margin-start: 0px;
  margin-end: 0px;
  padding-start: 40px; }
.c-wp-post_article li {
  display: list-item;
  text-align: match-parent; }
.c-wp-post_article img {
  width: auto; }
.c-wp-post_article .alignleft {
  display: inline;
  float: left; }
.c-wp-post_article .alignright {
  display: inline;
  float: right; }
.c-wp-post_article .aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto; }
.c-wp-post_article blockquote.alignleft,
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article img.alignleft {
  margin: 0.4em 1.6em 1.6em 0; }
.c-wp-post_article blockquote.alignright,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article img.alignright {
  margin: 0.4em 0 1.6em 1.6em; }
.c-wp-post_article blockquote.aligncenter,
.c-wp-post_article .wp-caption.aligncenter,
.c-wp-post_article img.aligncenter {
  clear: both;
  margin-top: 0.4em;
  margin-bottom: 1.6em; }
.c-wp-post_article .wp-caption.alignleft,
.c-wp-post_article .wp-caption.alignright,
.c-wp-post_article .wp-caption.aligncenter {
  margin-bottom: 1.2em; }
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block; }
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.u-hide {
  display: none; }
.u-click {
  cursor: pointer; }
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px; }
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite; }
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px; }
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0; }
  60% {
    opacity: .5; }
  100% {
    opacity: .5; } }
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (min-width: 960px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
    .ex-link:hover {
      opacity: .5; }
  .l-footer__wrapper {
    padding: 3rem 6rem 2rem 6rem; }
    .l-footer__wrapper__contact button {
      padding: 1rem 3rem 1rem 3rem; }
    .l-footer__wrapper__log-nav-wrapper__logo img {
      width: 100px; }
    .l-footer__wrapper__log-nav-wrapper__nav {
      display: block; }
  .l-footer__copyright {
    padding: 1rem 5rem; }
  .l-header .l-header-wrapper {
    padding: 1rem; }
    .l-header .l-header-wrapper img {
      width: 100%; }
  .l-header nav {
    display: block; }
    .l-header nav ul {
      gap: 1rem; }
      .p-about__contents__purpose {
        min-width: 800px; }
  .p-about__heading {
    height: 400px; }
  .p-about__team {
    padding: 5rem; }
    .p-about__team__members {
      gap: 5rem; }
  .p-about__locations__container__locationsAnimation {
    width: unset; }
    .p-about__locations__container__locationsAnimation p {
      padding: 0 3rem; }
    .p-about__locations__container__locationsAnimation__wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      gap: 5rem; }
      .p-about__locations__container__locationsAnimation__wrapper__osaka iframe, .p-about__locations__container__locationsAnimation__wrapper__beppu iframe {
        width: 400px;
        height: 300px; }
  .p-contact__heading {
    height: 400px; }
  .p-contact__wrapper {
    margin-top: 8rem; }
  .p-home {
    gap: 10rem; }
    .p-home__about {
      gap: 3rem;
      width: 1080px;
      margin: auto; }
      .p-home__about__contentsWrapper {
        gap: 3rem; }
    .p-home__services {
      margin-bottom: -10rem; }
      .p-home__services__heading {
        height: 400px;
        background-size: cover;
        margin-bottom: 10rem; }
        .p-home__services__heading h1 {
          left: 45%;
          font-size: 3.4rem; }
      .p-home__services__land-operator-service, .p-home__services__regional-revitalization-service {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin: 0;
        max-width: unset;
        padding: 0; }
        .p-home__services__land-operator-service div:nth-child(1), .p-home__services__regional-revitalization-service div:nth-child(1) {
          width: 30rem;
          height: 500px; }
        .p-home__services__land-operator-service img, .p-home__services__regional-revitalization-service img {
          height: 500px;
          width: 40vw;
          -o-object-fit: cover;
             object-fit: cover; }
      .p-home__services__land-operator-service {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: end;
        margin-left: 4rem; }
      .p-home__services__regional-revitalization-service {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        margin-bottom: 10rem;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: start;
        margin-right: 4rem; }
    .p-home__news__heading {
      height: 400px;
      -webkit-animation: parallaxNewsLarge linear both;
              animation: parallaxNewsLarge linear both;
      animation-timeline: view();
      background-size: cover; }
    .p-home__news__wrapper {
      margin: 8rem auto;
      max-width: unset;
      width: 70%; }
  .p-news__heading {
    height: 400px; }
  .p-news__wrapper {
    margin: 8rem auto; }
    .p-news__wrapper__heading__title {
      font-size: 2rem; }
    .p-news__wrapper__content img {
      width: 900px;
      height: 500px; }
  .p-newslist__heading {
    height: 400px; }
  .p-newslist__wrapper {
    margin: 8rem auto; }
    .p-newslist__wrapper__newsWrapper__news {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      gap: 6rem;
      width: 80%; }
  .p-policy__heading {
    height: 400px; }
  .p-policy__contents {
    margin-bottom: 8rem;
    gap: 6rem; }
  .p-recruitment__heading h1 {
    font-size: 2.8rem; }
  .p-recruitment__heading {
    height: 400px; }
  .p-recruitment__contents {
    margin: 8rem 0;
    gap: 3rem; }
    .p-recruitment__contents__animationWrapper__wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .p-recruitment__contents__animationWrapper__wrapper img {
        height: 450px;
        width: 50%;
        -o-object-fit: cover;
           object-fit: cover; }
      .p-recruitment__contents__animationWrapper__wrapper__contents {
        min-width: 500px;
        max-width: 600px;
        padding-right: 8rem; }
        .p-recruitment__contents__animationWrapper__wrapper__contents a button {
          gap: 2rem; }
    .p-service__second {
      min-width: 800px; }
  .p-service__heading h1 {
    font-size: 2.8rem; }
  .p-service__btn-wrapper a {
    gap: 1rem; }
  .p-service__heading {
    height: 400px; }
  .p-service__contents {
    padding-top: 9rem; }
    .p-service__contents__wrapper {
      padding: 6rem 3rem;
      gap: 6rem; }
      .p-service__contents__wrapper__achievements-to-date table tr td:nth-child(1) {
        padding-right: 3rem; }
      .p-service__contents__wrapper__details {
        gap: 0; }
        .p-service__contents__wrapper__details__international-crew, .p-service__contents__wrapper__details__check-tours, .p-service__contents__wrapper__details__achievements {
          margin-right: -5rem;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row;
          gap: 0; }
          .p-service__contents__wrapper__details__international-crew__contents, .p-service__contents__wrapper__details__check-tours__contents, .p-service__contents__wrapper__details__achievements__contents {
            width: 50rem;
            padding: 1rem; }
            .p-service__contents__wrapper__details__international-crew__contents__wrapper table, .p-service__contents__wrapper__details__check-tours__contents__wrapper table, .p-service__contents__wrapper__details__achievements__contents__wrapper table {
              width: 60%; }
          .p-service__contents__wrapper__details__international-crew .anime_wrap, .p-service__contents__wrapper__details__check-tours .anime_wrap, .p-service__contents__wrapper__details__achievements .anime_wrap {
            height: 500px;
            margin-left: 0;
            margin-right: 0; }
            .p-service__contents__wrapper__details__international-crew .anime_wrap img, .p-service__contents__wrapper__details__check-tours .anime_wrap img, .p-service__contents__wrapper__details__achievements .anime_wrap img {
              -o-object-fit: cover;
                 object-fit: cover;
              height: 500px; }
        .p-service__contents__wrapper__details__case-study, .p-service__contents__wrapper__details__specific-activities {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse;
          margin-left: -5rem;
          gap: 0; }
          .p-service__contents__wrapper__details__case-study__contents, .p-service__contents__wrapper__details__specific-activities__contents {
            width: 50rem;
            padding: 2rem; }
          .p-service__contents__wrapper__details__case-study .anime_wrap, .p-service__contents__wrapper__details__specific-activities .anime_wrap {
            height: 500px;
            margin-right: 0; }
            .p-service__contents__wrapper__details__case-study .anime_wrap img, .p-service__contents__wrapper__details__specific-activities .anime_wrap img {
              -o-object-fit: cover;
                 object-fit: cover;
              height: 500px; }
      .p-service__contents__wrapper__regional-development-business {
        width: 1080px;
        margin: auto; }
  .c-contact-form {
    padding: 1rem;
    gap: 3rem; }
    .c-contact-form form .c-contact-form__wrapper {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .c-contact-form form .c-contact-form__wrapper label {
        width: 20%; }
      .c-contact-form form .c-contact-form__wrapper__checkboxWrapper {
        width: 80%; }
    .c-contact-form__btnWrapper button {
      padding: 1rem 8rem; }
    .wpcf7-submit {
      padding: 1rem 8rem; }
  .l-menu-btn,
  .l-menu-open {
    display: none; }
  .c-hero .c-hero-catchcopy {
    font-size: 1.2rem;
    top: 50%; }
    .c-hero .c-hero-catchcopy h1 {
      padding: 0.5rem 3rem 0.5rem 3rem; }
  .c-news__item__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 6rem;
    width: 100%;
    margin: 0.5rem auto 1.5rem auto; }
  .c-red-circle {
    width: 140px;
    height: 140px;
    bottom: -70px; }
  .c-swiper {
    height: calc(100vh - 80px); }
    .c-swiper .swiper-slide img {
      height: calc(100vh - 80px); }
  .c-white-circle {
    width: 140px;
    height: 140px;
    bottom: -70px; }
  .for-mobile {
    display: none; } }
@media (min-width: 400px) {
  html,
  body {
    width: 100%;
    height: 100%; }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  div,
  dl,
  dt,
  dd,
  p {
    margin: 0;
    padding: 0; }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto; }
  .p-about__heading h1 {
    font-size: 2.8rem; }
  .p-contact__heading h1 {
    font-size: 2.8rem; }
  .p-home__about__heading {
    font-size: 2rem; }
  .p-home__services__heading {
    -webkit-animation: parallaxMobile linear both;
            animation: parallaxMobile linear both;
    animation-timeline: view(); }
  .p-news__heading h1 {
    font-size: 2.8rem; }
  .p-news__wrapper {
    gap: 2rem; }
  .p-newslist__heading h1 {
    font-size: 2.8rem; }
  .p-policy__heading h1 {
    font-size: 2.8rem; }
  .for-large {
    display: none; } }
@media (min-width: 1350px) {
  .l-header .l-header-wrapper {
    padding: 1rem 6rem; }
  .p-home__services__land-operator-service img, .p-home__services__regional-revitalization-service img {
    width: 58vw; }
  .p-home__services__btn-wrapper a {
    gap: 1rem; }
  .p-home__news__heading {
    -webkit-animation: parallaxNewsDesktop linear both;
            animation: parallaxNewsDesktop linear both;
    animation-timeline: view(); }
  .p-home__news__wrapper__btn-wrapper a {
    gap: 1rem; } }
@media (min-width: 600px) {
  .p-about__team {
    gap: 5rem; }
    .p-about__team__members {
      -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr); }
  .p-about__locations__container__locationsAnimation p {
    padding: 0 1rem; }
  .p-about__locations__container__locationsAnimation__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0; }
    .p-about__locations__container__locationsAnimation__wrapper p {
      padding: 0; }
    .p-about__locations__container__locationsAnimation__wrapper__osaka, .p-about__locations__container__locationsAnimation__wrapper__beppu {
      gap: 1rem;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .p-about__locations__container__locationsAnimation__wrapper__osaka img, .p-about__locations__container__locationsAnimation__wrapper__beppu img {
        height: 240px;
        width: 500px; }
      .p-about__locations__container__locationsAnimation__wrapper__osaka iframe, .p-about__locations__container__locationsAnimation__wrapper__beppu iframe {
        height: 240px;
        width: 100%; } }
@media (min-width: 400px) and (max-width: 600px) {
  .p-home__news__heading {
    -webkit-animation: parallaxNewsMobileBig linear both;
            animation: parallaxNewsMobileBig linear both;
    animation-timeline: view();
    background-size: 180%; } }
@media (min-width: 601px) and (max-width: 800px) {
  .p-home__news__heading {
    -webkit-animation: parallaxNewsMobileExtra linear both;
            animation: parallaxNewsMobileExtra linear both;
    animation-timeline: view();
    background-size: 150%; } }
@media (min-width: 801px) and (max-width: 959px) {
  .p-home__news__heading {
    -webkit-animation: parallaxNewsMobileMax linear both;
            animation: parallaxNewsMobileMax linear both;
    animation-timeline: view();
    background-size: 100%; } }
/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
