@charset "UTF-8";
*, ::after, ::before {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%
}

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

ul {
  list-style: none
}

ol {
  list-style: decimal;
  list-style-position: outside;
  padding-left: 1.5em
}

blockquote, q {
  quotes: none
}

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

a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  background: 0 0;
  text-decoration: none;
  vertical-align: baseline
}

del {
  text-decoration: line-through
}

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

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

table td, table th {
  word-wrap: break-word
}

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

input, select {
  vertical-align: middle
}

img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  background-color: transparent;
  border-radius: 0;
  cursor: pointer
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer
}

select::-ms-expand {
  display: none
}

.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden
}

.clearfix {
  display: inline-table
}

* html .clearfix {
  height: 1%
}

.clearfix {
  display: block
}

iframe {
  vertical-align: bottom
}

svg {
  max-width: 100%;
  -webkit-transition: fill .3s ease;
  transition: fill .3s ease;
  will-change: fill
}

[role=button], a, area, button, input:not([type=range]), label, select, summary, textarea {
  touch-action: manipulation
}

a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: color .3s ease, background-color .3s ease;
  transition: color .3s ease, background-color .3s ease;
  will-change: color, background-color
}

body {
  position: relative;
  color: #404040;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  line-height: 1.8;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  word-wrap: break-word
}

@media all and (-ms-high-contrast:none) {
  body {
    font-family: 'メイリオ', Meiryo, sans-serif
  }
}

#wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  opacity: 0;
  -webkit-transition: opacity .8s cubic-bezier(.455, .03, .515, .955);
  transition: opacity .8s cubic-bezier(.455, .03, .515, .955)
}

@media only screen and (max-width:767px) {
  #wrapper {
    padding-top: 60px
  }
}

.is-loaded #wrapper {
  opacity: 1
}

@media screen and (-ms-high-contrast:active), (-ms-high-contrast:none) {
  #wrapper {
    display: block;
    height: 100%;
    overflow: hidden
  }
}

main {
  width: 100%
}

footer {
  margin-top: auto
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(10px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
  }
  to {
    opacity: 1;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="0" /></filter></svg>#filter');
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

[data-animation] {
  opacity: 0
}

[data-animation=fadeIn] {
  will-change: opacity filter;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

[data-animation=fadeIn].is-show {
  -webkit-animation: fadeIn .8s cubic-bezier(.455, .03, .515, .955) forwards;
  animation: fadeIn .8s cubic-bezier(.455, .03, .515, .955) forwards
}

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

@keyframes fadeOut {
  from {
    opacity: 1
  }
  to {
    opacity: 0
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
  }
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px)
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes scale-in {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0)
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@keyframes scale-in {
  from {
    opacity: 1;
    -webkit-transform: scale(0);
    transform: scale(0)
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }
}

@-webkit-keyframes effect-start {
  from {
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%)
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes effect-start {
  from {
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%)
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@-webkit-keyframes effect-end {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(105%);
    transform: translateX(105%)
  }
}

@keyframes effect-end {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  to {
    -webkit-transform: translateX(105%);
    transform: translateX(105%)
  }
}

@-webkit-keyframes show-element {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

@keyframes show-element {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}

.js-invisible {
  opacity: 0
}

.js-fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn .8s ease forwards;
  animation: fadeIn .8s ease forwards;
  will-change: opacity
}

.js-fadeInUp {
  opacity: 0;
  -webkit-animation: fadeInUp .4s ease forwards;
  animation: fadeInUp .4s ease forwards;
  will-change: transform, opacity
}

.js-fadeInDown {
  opacity: 0;
  -webkit-animation: fadeInDown .4s ease forwards;
  animation: fadeInDown .4s ease forwards;
  will-change: transform, opacity
}

.js-fadeInLeft {
  opacity: 0;
  -webkit-animation: fadeInLeft .4s ease forwards;
  animation: fadeInLeft .4s ease forwards;
  will-change: transform, opacity
}

.js-fadeInRight {
  opacity: 0;
  -webkit-animation: fadeInRight .4s ease forwards;
  animation: fadeInRight .4s ease forwards;
  will-change: transform, opacity
}

[data-delay="100"] {
  -webkit-animation-delay: .1s;
  animation-delay: .1s
}

[data-delay="200"] {
  -webkit-animation-delay: .2s;
  animation-delay: .2s
}

[data-delay="300"] {
  -webkit-animation-delay: .3s;
  animation-delay: .3s
}

[data-delay="400"] {
  -webkit-animation-delay: .4s;
  animation-delay: .4s
}

[data-delay="500"] {
  -webkit-animation-delay: .5s;
  animation-delay: .5s
}

[data-delay="600"] {
  -webkit-animation-delay: .6s;
  animation-delay: .6s
}

[data-delay="700"] {
  -webkit-animation-delay: .7s;
  animation-delay: .7s
}

[data-delay="800"] {
  -webkit-animation-delay: .8s;
  animation-delay: .8s
}

[data-delay="900"] {
  -webkit-animation-delay: .9s;
  animation-delay: .9s
}

[data-delay="1000"] {
  -webkit-animation-delay: 1s;
  animation-delay: 1s
}

[data-delay="1100"] {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s
}

[data-delay="1200"] {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s
}

[data-delay="1300"] {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s
}

[data-delay="1400"] {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s
}

[data-delay="1500"] {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s
}

[data-delay="1600"] {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s
}

[data-delay="1700"] {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s
}

[data-delay="1800"] {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s
}

[data-delay="1900"] {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s
}

[data-delay="2000"] {
  -webkit-animation-delay: 2s;
  animation-delay: 2s
}

[data-delay="2100"] {
  -webkit-animation-delay: 2.1s;
  animation-delay: 2.1s
}

[data-delay="2200"] {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s
}

[data-delay="2300"] {
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s
}

[data-delay="2400"] {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s
}

[data-delay="2500"] {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s
}

[data-delay="2600"] {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s
}

[data-delay="2700"] {
  -webkit-animation-delay: 2.7s;
  animation-delay: 2.7s
}

[data-delay="2800"] {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s
}

[data-delay="2900"] {
  -webkit-animation-delay: 2.9s;
  animation-delay: 2.9s
}

[data-delay="3000"] {
  -webkit-animation-delay: 3s;
  animation-delay: 3s
}

@font-face {
  font-family: icomoon;
  src: url(../fonts/icomoon.eot?upgcmq);
  src: url(../fonts/icomoon.eot?upgcmq#iefix) format("embedded-opentype"), url(../fonts/icomoon.ttf?upgcmq) format("truetype"), url(../fonts/icomoon.woff?upgcmq) format("woff"), url(../fonts/icomoon.svg?upgcmq#icomoon) format("svg");
  font-weight: 400;
  font-style: normal
}

[class*=" icon-"], [class^=icon-] {
  font-family: icomoon!important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.icon-chevron-down:before {
  content: "\e900"
}

.icon-chevron-right:before {
  content: "\e901"
}

.icon-chevron-up:before {
  content: "\e902"
}

.icon-arrow:before {
  content: "\e903";
  color: #fff
}

.icon-blank:before {
  content: "\e904";
  color: #fff
}

.d-flex{
  display: flex;
}

@media only screen and (max-width:767px) {
  .d-flex{
    display: inline-block;
  }
}

.l-column {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto
}

@media only screen and (max-width:767px) {
  .l-column {
    padding-left: 20px;
    padding-right: 20px
  }
}

.l-section {
  padding-top: 100px;
  padding-bottom: 100px
}

@media only screen and (max-width:767px) {
  .l-section {
    padding-top: 60px;
    padding-bottom: 60px
  }
}

.c-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 15px
}

.c-title .c-caption {
  width: 210px
}

.c-title p {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  padding-top: 8px
}

@media only screen and (max-width:767px) {
  .c-title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0
  }
  .c-title .c-caption {
    width: 100%
  }
  .c-title p {
    font-size: 16px;
    padding-top: 0
  }
}

.c-caption {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1
}

.c-caption span {
  display: block;
  color: #b29671;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: .1em
}

@media only screen and (max-width:767px) {
  .c-caption span {
    font-size: 30px
  }
}

.c-caption_md {
  position: relative;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 40px;
  padding-top: 15px
}

.c-caption_md:before {
  position: absolute;
  content: "";
  width: 140px;
  height: 1px;
  background-color: #b29671;
  top: 0;
  left: 0
}

@media only screen and (max-width:767px) {
  .c-caption_md {
    font-size: 20px;
    margin-bottom: 30px
  }
}

.c-caption_sm {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  margin-bottom: 10px
}

@media only screen and (max-width:767px) {
  .c-caption_sm {
    font-size: 16px
  }
}

.c-breadcrumbs {
  background-color: #ccc;
  padding: 5px 0
}

.c-breadcrumbs li {
  float: left;
  font-size: 12px;
  margin-right: 5px
}

.c-breadcrumbs li:after {
  content: "\e901";
  font-family: icomoon;
  font-size: 11px;
  padding-left: 5px
}

.c-breadcrumbs li:last-child:after {
  display: none
}

.c-breadcrumbs a {
  color: #404040
}

.c-breadcrumbs a:hover {
  color: #b29671
}

.c-page_vis {
  position: relative;
  height: 490px
}

.c-page_vis:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 50%;
  -webkit-transform: translateX(550px);
  transform: translateX(550px);
  z-index: -1
}

.c-page_vis .c-page_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-top: 100px
}

.c-page_vis .c-page_inner .txt {
  position: relative;
  width: 83%;
  height: 490px;
  padding: 100px 50px 100px 100px
}

.c-page_vis .c-page_inner .txt:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .9);
  top: 0;
  right: -50px;
  z-index: -1
}

.c-page_vis .c-page_inner .txt .description {
  margin-left: 210px
}

.c-page_vis .c-page_inner .txt .description ul li {
  margin-top: 25px
}

@media only screen and (max-width:767px) {
  .c-page_vis {
    height: auto
  }
  .c-page_vis:before {
    right: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  .c-page_vis .c-page_inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding-top: 60px
  }
  .c-page_vis .c-page_inner .txt {
    width: 100%;
    height: auto;
    padding: 40px 20px 40px 40px
  }
  .c-page_vis .c-page_inner .txt:before {
    right: -20px
  }
  .c-page_vis .c-page_inner .txt .description {
    margin-left: 0
  }
  .c-page_vis .c-page_inner .txt .description ul li {
    margin-top: 15px
  }
}

.c-img_right {
  position: relative;
  color: #fff;
  min-height: 460px;
  background-color: #000021;
  z-index: 1
}

@media only screen and (max-width:767px) {
  .c-img_right {
    min-height: auto
  }
}

.c-img_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin: 0 auto
}

.c-img_inner .img {
  position: absolute;
  width: 33%;
  height: 460px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  right: 0
}

.c-img_inner .txt {
  position: relative;
  width: 100%;
  padding-right: 37%;
  z-index: 1
}

@media only screen and (max-width:767px) {
  .c-img_inner {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0
  }
  .c-img_inner .img {
    position: relative;
    width: 100%;
    height: 350px
  }
  .c-img_inner .txt {
    padding: 60px 20px
  }
}

.c-point_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 25px
}

.c-point_list li {
  width: 32%;
  text-align: center
}

.c-point_list li span {
  display: block;
  color: #b29671;
  font-family: "EB Garamond", serif;
  font-size: 30px;
  margin-bottom: 10px
}

.c-point_list li p {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  background-color: #f1f2f4;
  padding: 35px 0
}

@media only screen and (max-width:767px) {
  .c-point_list {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0
  }
  .c-point_list li {
    width: 100%;
    margin-bottom: 25px
  }
  .c-point_list li span {
    font-size: 24px
  }
  .c-point_list li p {
    font-size: 16px;
    padding: 25px 0
  }
}

.c-table tr {
  border-bottom: 1px dashed #b29671
}

.c-table tr:first-child {
  border-top: 1px dashed #b29671
}

.c-table td, .c-table th {
  padding-top: 20px;
  padding-bottom: 20px
}

.c-table th {
  font-weight: 700;
  padding-right: 20px;
  text-align: left;
  vertical-align: top
}

@media only screen and (min-width:768px) {
  .c-table th {
    width: 180px;
    padding-left: 50px
  }
}

@media only screen and (max-width:767px) {
  .c-table th {
    width: 130px;
    padding-left: 20px
  }
}

@media only screen and (min-width:768px) {
  .c-table td {
    padding-right: 50px
  }
}

@media only screen and (max-width:767px) {
  .c-table td {
    padding-right: 20px
  }
}

@media only screen and (max-width:767px) {
  .c-table {
    width: 100%
  }
}

@media only screen and (max-width:767px) {
  .c-table_wrap {
    overflow-x: scroll
  }
}

.c-cancel-policy h3 {
  margin-bottom: 40px
}

@media only screen and (max-width:767px) {
  .c-cancel-policy h3 {
    margin-bottom: 20px
  }
}

.c-page_list {
  background-color: #000021;
  padding: 50px 0
}

.c-page_list ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.c-page_list ul li {
  width: 32%;
  margin-right: 2%
}

.c-page_list ul li:nth-child(3n) {
  margin-right: 0
}

.c-page_list ul li:nth-child(n+4) {
  margin-top: 25px
}

@media only screen and (max-width:767px) {
  .c-page_list {
    padding: 30px 0
  }
  .c-page_list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .c-page_list ul li {
    width: 100%;
    margin: 0 0 20px 0
  }
  .c-page_list ul li:nth-child(n+4) {
    margin-top: 0
  }
  .c-page_list ul li:last-child {
    margin-bottom: 0
  }
}

.c-btn {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  color: #fff;
  max-width: 270px;
  font-size: 14px;
  font-weight: 700;
  background-color: #000021;
  border: 1px solid #b29671;
  padding: 10px 45px 10px 15px;
  letter-spacing: .1em;
  line-height: 1.1;
  text-decoration: none;
  -webkit-transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease, -webkit-transform .3s ease
}

@media only screen and (max-width:767px) {
  .c-btn {
    margin-left: auto;
    margin-right: auto
  }
}

.c-btn:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 26px;
  background-color: #fff;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.c-btn:after {
  position: absolute;
  content: "\e903";
  color: #fff;
  font-family: icomoon;
  font-size: 10px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%) scale(.9);
  transform: translateY(-50%) scale(.9)
}

.c-btn:hover {
  background-color: #b29671
}

.c-btn_lg {
  position: relative;
  -webkit-appearance: none;
  appearance: none;
  display: block;
  color: #000;
  max-width: 320px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  padding: 25px 45px 25px 25px;
  letter-spacing: .1em;
  line-height: 1.1;
  text-decoration: none;
  -webkit-transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease, -webkit-transform .3s ease
}

.c-btn_lg span {
  display: block;
  color: #1e1e1e;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 12px;
  letter-spacing: -.01em;
  margin-top: 10px
}

.d-flex .c-btn_lg{
  min-width: 35%;
}

.d-flex .c-btn_lg span{
  display: inline-block;
  margin-top: 0;
  -webkit-transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease;
  transition: color .3s ease, background-color .3s ease, transform .3s ease, -webkit-transform .3s ease
}

@media only screen and (max-width:767px) {
  .c-btn_lg {
    font-size: 16px
  }
}

.c-btn_lg:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background-color: #b29671;
  top: 50%;
  right: 35px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

.c-btn_lg:after {
  position: absolute;
  content: "\e903";
  color: #b29671;
  font-family: icomoon;
  font-size: 10px;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%) scale(.9);
  transform: translateY(-50%) scale(.9)
}

.c-btn_lg:hover {
  color: #fff!important;
  background-color: #b29671
}

.c-btn_lg:hover span {
  color: #fff
}

.c-btn_lg:hover:before {
  background-color: #fff
}

.c-btn_lg:hover:after {
  color: #fff
}

.c-form_area {
  position: relative;
  background-color: #f1f2f4;
  margin-top: 100px;
  padding-bottom: 100px
}

.c-form_area:before {
  position: absolute;
  content: "";
  width: 1100px;
  height: 100%;
  background-color: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1
}

.c-form_area .l-column {
  position: relative;
  z-index: 2
}

@media only screen and (max-width:767px) {
  .c-form_area {
    margin-top: 60px;
    padding-bottom: 60px
  }
  .c-form_area:before {
    width: 100%
  }
}

.c-table_form {
  width: 100%;
  margin-bottom: 30px
}

.c-table_form th {
  position: relative;
  width: 240px;
  padding: 20px 0 10px 0;
  text-align: left;
  vertical-align: top
}

.c-table_form th span {
  position: absolute;
  display: inline-block;
  color: #ef1826;
  font-size: 12px;
  border: 1px solid #ef1826;
  padding: 0 10px;
  top: 20px;
  right: 0
}

.c-table_form td {
  padding: 10px 20px
}

.c-table_form td ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.c-table_form td ul li {
  margin: 0 30px 20px 0
}

.c-table_form input[type=text] {
  width: 350px;
  font-size: 16px;
  background: #f1f2f4;
  border: 1px solid #f1f2f4;
  padding: .7em 1em
}

.c-table_form textarea {
  width: 640px;
  height: 300px;
  font-size: 16px;
  background: #f1f2f4;
  border: 1px solid #f1f2f4;
  padding: .7em 1em
}

@media only screen and (max-width:767px) {
  .c-table_form th {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0 0 0
  }
  .c-table_form th span {
    position: relative;
    margin-left: 10px;
    padding: 0 10px;
    top: 0
  }
  .c-table_form td {
    display: block;
    width: 100%;
    padding: 10px 0
  }
  .c-table_form td ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .c-table_form td ul li {
    margin-right: 0
  }
  .c-table_form input[type=text] {
    width: 100%
  }
  .c-table_form textarea {
    width: 100%;
    height: 200px
  }
}

.toggle-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex
}

.toggle-buttons label {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  position: relative
}

.toggle-buttons [type=checkbox], .toggle-buttons [type=radio] {
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none
}

.toggle-buttons :checked+.button {
  color: #fff;
  background-color: #b29671
}

_:-ms-lang(x)::-ms-backdrop, .toggle-buttons [type=radio], _:-ms-lang(x)::-ms-backdrop, .toggle-buttons [type=checkbox] {
  visibility: hidden
}

.button {
  display: inline-block;
  color: #404040;
  width: 250px;
  background-color: #fff;
  border: 1px solid #b29671;
  padding: .5em 1em;
  text-align: center;
  cursor: pointer;
  z-index: 1
}

.button:hover {
  color: #fff;
  background-color: #b29671
}

.c-form_privacy {
  background-color: #f1f2f4;
  margin-bottom: 20px;
  padding: 30px 30px 10px 30px
}

.c-form_privacy p {
  margin-bottom: 20px
}

@media only screen and (max-width:767px) {
  .c-form_privacy {
    padding: 20px 20px 5px 20px
  }
}

button[type=button], button[type=submit] {
  display: inline-block;
  color: #b29671;
  width: 80%;
  max-width: 800px;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid #b29671;
  margin: 10px 0;
  padding: 15px 0;
  text-align: center;
  -webkit-transition: color .3s ease, background-color .3s ease;
  transition: color .3s ease, background-color .3s ease;
  will-change: color, background-color
}

@media only screen and (max-width:767px) {
  button[type=button], button[type=submit] {
    width: 100%;
    padding: 10px 0
  }
}

button[type=button]:hover, button[type=submit]:hover {
  color: #fff;
  background-color: #b29671
}

.c-thanks p {
  margin-bottom: 30px
}

.c-form_guide {
  margin-bottom: 50px
}

.c-form_guide li {
  font-size: 13px;
  padding-left: 1em;
  text-indent: -1em
}

.c-form_guide li:before {
  content: "・"
}

@media only screen and (max-width:767px) {
  .c-form_guide {
    margin-bottom: 30px
  }
}

.u-ff-en {
  font-family: "EB Garamond", serif
}

.u-ff-gothic {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif
}

.u-ff-serif {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif
}

.u-bg_gray {
  background-color: #f1f2f4
}

.u-hover {
  position: relative;
  display: block
}

.u-hover:before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: " ";
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  z-index: 2
}

.u-hover:hover:before {
  opacity: .3
}

.u-hover.is-dark:before {
  background-color: #000
}

.u-hover.is-dark:hover:before {
  opacity: .2
}

.u-indent {
  text-indent: 1em
}

.u-notes li {
  padding-left: 1em;
  text-indent: -1em
}

.u-caution {
  color: #f11;
  font-size: 11px
}

.u-relative {
  position: relative
}

.u-strong {
  font-weight: 700
}

.u-none {
  display: none
}

.u-small {
  font-size: 11px
}

.u-bold {
  font-size: 125%;
  font-weight: 700;
  margin-bottom: 15px
}

.u-err {
  color: #f11
}

.u-taC {
  text-align: center
}

.u-taL {
  text-align: left
}

.u-taR {
  text-align: right
}

.u-mt0 {
  margin-top: 0!important
}

.u-mt5 {
  margin-top: 5px!important
}

.u-mt10 {
  margin-top: 10px!important
}

.u-mt15 {
  margin-top: 15px!important
}

.u-mt20 {
  margin-top: 20px!important
}

.u-mt25 {
  margin-top: 25px!important
}

.u-mt30 {
  margin-top: 30px!important
}

.u-mt35 {
  margin-top: 35px!important
}

.u-mt40 {
  margin-top: 40px!important
}

.u-mt45 {
  margin-top: 45px!important
}

.u-mt50 {
  margin-top: 50px!important
}

.u-mt60 {
  margin-top: 60px!important
}

.u-mt70 {
  margin-top: 70px!important
}

.u-mt80 {
  margin-top: 80px!important
}

.u-mt90 {
  margin-top: 90px!important
}

.u-mt100 {
  margin-top: 100px!important
}

.u-mb0 {
  margin-bottom: 0!important
}

.u-mb5 {
  margin-bottom: 5px!important
}

.u-mb10 {
  margin-bottom: 10px!important
}

.u-mb15 {
  margin-bottom: 15px!important
}

.u-mb20 {
  margin-bottom: 20px!important
}

.u-mb25 {
  margin-bottom: 25px!important
}

.u-mb30 {
  margin-bottom: 30px!important
}

.u-mb30 {
  margin-bottom: 35px!important
}

.u-mb40 {
  margin-bottom: 40px!important
}

.u-mb45 {
  margin-bottom: 40px!important
}

.u-mb50 {
  margin-bottom: 50px!important
}

.u-mb60 {
  margin-bottom: 60px!important
}

.u-mb70 {
  margin-bottom: 70px!important
}

.u-mb80 {
  margin-bottom: 80px!important
}

.u-mb90 {
  margin-bottom: 90px!important
}

.u-mb100 {
  margin-bottom: 100px!important
}

.u-pt0 {
  padding-top: 0!important
}

.u-pb0 {
  padding-bottom: 0!important
}

.u-bdN {
  border: none!important
}

.u-vaT {
  vertical-align: top!important
}

.u-w10 {
  width: 10%
}

.u-w15 {
  width: 15%
}

.u-w20 {
  width: 20%
}

.u-w25 {
  width: 25%
}

.u-w30 {
  width: 30%
}

.u-w35 {
  width: 35%
}

.u-w40 {
  width: 40%
}

.u-w45 {
  width: 45%
}

.u-w50 {
  width: 50%
}

.u-w55 {
  width: 55%
}

.u-w60 {
  width: 60%
}

.u-w65 {
  width: 65%
}

.u-w70 {
  width: 70%
}

.u-w75 {
  width: 75%
}

.u-w80 {
  width: 80%
}

.u-w85 {
  width: 85%
}

.u-w90 {
  width: 90%
}

.u-w95 {
  width: 95%
}

.u-w100 {
  width: 100%
}

@media only screen and (min-width:768px) {
  .is-sp {
    display: none
  }
}

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

@media only screen and (max-width:949px) {
  .is-mp {
    display: none
  }
}

@media only screen and (max-width:767px) {
  .is-mp {
    display: list-item
  }
}

.header {
  color: #fff;
  width: 100%;
  background-color: #000
}

.header a {
  color: #fff;
  text-decoration: none
}

@media only screen and (max-width:767px) {
  .header {
    position: fixed;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 9999
  }
}

.hd-inner {
  width: 100%;
  height: 100%;
  padding-top: 25px
}

@media only screen and (max-width:767px) {
  .hd-inner {
    padding-top: 8px
  }
}

h1 {
  position: relative;
  float: left;
  width: 210px;
  z-index: 9998
}

@media only screen and (max-width:767px) {
  h1 {
    width: 100%
  }
  h1 img {
    height: 45px
  }
}

.hd-contact {
  float: right;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 30px;
  padding-top: 5px
}

.hd-contact dd p {
  font-size: 13px;
  text-align: right
}

.hd-contact dd:last-child {
  margin-left: 15px
}

.hd-contact dd:last-child a {
  font-size: 15px;
  background-color: #000;
  padding: 12px 55px 12px 15px
}

.hd-contact dd:last-child a:hover {
  background-color: #b29671
}

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

.hd-contact_tel {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: right
}

.hd-contact_tel span {
  float: left;
  font-size: 11px;
  line-height: 1.2;
  margin-right: 10px
}

#gNavi {
  clear: both
}

#gNavi>ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center
}

#gNavi>ul li {
  margin: 0 15px;
}

#gNavi>ul li a {
  display: block;
  line-height: 58px
}

#gNavi>ul li a:hover {
  color: #b29671
}

#gNavi>ul li.current a {
  color: #b29671
}

#gNavi>ul li p a {
  position: relative;
  padding-right: 20px;
  line-height: 58px
}

#gNavi>ul li p a:after {
  position: absolute;
  content: "\e900";
  font-family: icomoon;
  font-size: 14px;
  top: 0;
  right: 0
}

@media only screen and (max-width:949px) {
  #gNavi>ul li {
    margin: 0 8px;
  }
}

@media only screen and (max-width:767px) {
  #gNavi {
    position: fixed;
    float: none;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    padding: 60px 0 20px;
    box-sizing: border-box;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, .156863) 0 3px 10px, rgba(0, 0, 0, .227451) 0 3px 10px;
    -webkit-transition: transform .5s ease;
    -webkit-transition: -webkit-transform .5s ease;
    transition: -webkit-transform .5s ease;
    transition: transform .5s ease;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-overflow-scrolling: touch;
    z-index: 9997
  }
  #gNavi::-webkit-scrollbar {
    display: none
  }
  #gNavi.open {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  #gNavi>ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  #gNavi>ul li {
    margin: 0
  }
  #gNavi>ul li a {
    position: relative;
    line-height: 1.8;
    background-color: #000021;
    border-bottom: 1px solid #fff;
    padding: 10px 4%
  }
  #gNavi>ul li a:before {
    position: absolute;
    display: inline-block;
    content: "\e901";
    width: 20px;
    height: 20px;
    font-family: icomoon;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    top: 50%;
    right: 4%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }
  #gNavi>ul li p a {
    position: relative;
    padding-right: 20px;
    line-height: 1.8
  }
  #gNavi>ul li p a:after {
    display: none
  }
  #gNavi>ul li div ul {
    padding: 0
  }
  #gNavi>ul li div ul a {
    padding-left: 10%
  }
}

@media only screen and (max-width:767px) {
  #trigger {
    position: fixed;
    display: inline-block;
    width: 60px;
    height: 60px;
    background: #b29671;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 9999
  }
  #trigger span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 20px;
    height: 2px;
    margin: -2px 0 0 -10px;
    background: #fff;
    -webkit-transition: .2s;
    transition: .2s
  }
  #trigger span:after, #trigger span:before {
    position: absolute;
    display: block;
    content: " ";
    width: 20px;
    height: 2px;
    background: #fff;
    top: 50%;
    left: 0;
    -webkit-transition: .3s;
    transition: .3s
  }
  #trigger span:before {
    margin-top: -8px
  }
  #trigger span:after {
    margin-top: 6px
  }
  #trigger.open span {
    background: 0 0
  }
  #trigger.open span:after, #trigger.open span:before {
    margin-top: 0
  }
  #trigger.open span:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
  #trigger.open span:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
  }
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 9997;
    visibility: visible;
    cursor: pointer;
    z-index: 9990
  }
}

.footer {
  color: #fff
}

.footer a {
  text-decoration: none
}

.ft-inner {
  width: 100%;
  background: #0a0a18 url(../images/common/bg_main.jpg) center bottom no-repeat;
  background-size: 100% auto;
  padding-bottom: 15%
}

@media only screen and (max-width:767px) {
  .ft-inner {
    padding-bottom: 20%
  }
}

.ft-txt_bold {
  color: #b29671;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center
}

@media only screen and (max-width:767px) {
  .ft-txt_bold {
    font-size: 16px;
    margin-bottom: 8%
  }
}

.ft-contact {
  margin-bottom: 100px
}

.ft-contact h2 {
  margin-bottom: 50px
}

.ft-contact ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background-color: #fff;
  padding: 40px 0
}

.ft-contact ul li {
  color: #000;
  width: 33.3333%;
  border-left: 1px solid #323244;
  padding: 5px 40px;
  text-align: center;
  overflow: hidden
}

.ft-contact ul li:first-child {
  border-left: none
}

.ft-contact ul li img {
  margin-bottom: 40px
}

.ft-contact ul li:first-child img {
  padding: 4px 0
}

.ft-contact ul li:nth-child(2) img {
  padding: 14px 0
}

.ft-contact ul li div {
  margin-bottom: 20px
}

.ft-contact ul li span {
  display: block;
  max-width: 270px;
  line-height: 1.1;
  border: 1px solid #323244;
  padding: 10px 0
}

@media only screen and (max-width:767px) {
  .ft-contact {
    margin-bottom: 60px
  }
  .ft-contact h2 {
    margin-bottom: 30px
  }
  .ft-contact ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    background-color: #fff;
    padding: 0
  }
  .ft-contact ul li {
    width: 100%;
    border-top: 1px solid #323244;
    border-left: none;
    padding: 8% 5%
  }
  .ft-contact ul li:first-child {
    border-top: none
  }
  .ft-contact ul li img {
    margin-bottom: 5%;
    padding: 0!important
  }
  .ft-contact ul li div {
    margin-bottom: 5%
  }
  .ft-contact ul li span {
    margin: 0 auto
  }
}

.txt-tel {
  color: #000;
  font-family: "EB Garamond", serif;
  font-size: 27px
}

.txt-tel a {
  color: #000
}

.ft-area_rec {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-bottom: 1px solid #aeaeae;
  margin-bottom: 40px;
  padding-bottom: 50px
}

.ft-area_rec dd {
  position: relative;
  width: 50%;
  padding: 0 0 50px 30px
}

.ft-area_rec dd:last-child {
  border-left: 1px solid #aeaeae;
  padding-left: 80px
}

.ft-area_rec dd:last-child img {
  position: absolute;
  top: 110px;
  right: 0
}

.ft-area_rec dd:last-child a {
  max-width: 170px
}

.ft-area_rec dd p {
  margin-bottom: 30px
}

.ft-area_rec dd p.ft-txt_bold {
  color: #fff;
  text-align: left
}

@media only screen and (max-width:767px) {
  .ft-area_rec {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding-bottom: 30px;
    margin-bottom: 30px
  }
  .ft-area_rec dd {
    width: 100%;
    padding: 0 0 30px 0
  }
  .ft-area_rec dd:last-child {
    border-top: 1px solid #aeaeae;
    border-left: none;
    padding: 30px 0 0 0
  }
  .ft-area_rec dd:last-child img {
    width: 30%;
    top: 30%
  }
  .ft-area_rec dd:last-child a {
    max-width: 270px
  }
}

.ft-info {
  position: relative
}

.ft-info dd {
  float: left;
  width: 26%;
  font-size: 13px
}

.ft-info dd:last-child {
  float: right;
  width: 65%;
  margin-top: 30px;
  padding-right: 50px
}

.ft-info dd img {
  margin-bottom: 15px
}

@media only screen and (max-width:767px) {
  .ft-info dd {
    float: none;
    width: 100%
  }
  .ft-info dd:last-child {
    display: none
  }
}

.ft-navi {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}

.ft-navi ul.child {
  margin-left: 1em
}

.ft-navi ul.child li a:before {
  content: "- "
}

.ft-navi a:hover {
  color: #b29671
}

.c-pagetop {
  position: absolute;
  right: 0;
  bottom: 0
}

.c-pagetop a {
  position: relative;
  display: block;
  color: #fff;
  width: 35px;
  height: 35px;
  font-size: 22px;
  background-color: #b29671;
  text-align: center
}

.c-pagetop a:hover {
  background-color: #cfbb9b
}

.ft-company {
  float: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 0 50px 0 0;
  overflow: hidden
}

.ft-company li {
  display: block;
  font-size: 12px;
  line-height: 36px;
  white-space: nowrap
}

.ft-company li:first-of-type span {
  padding-left: 15px
}

.ft-company li:nth-of-type(1) {
  z-index: 4
}

.ft-company li:nth-of-type(2) {
  z-index: 3
}

.ft-company li:nth-of-type(3) {
  z-index: 2
}

.ft-company li:nth-of-type(4) {
  z-index: 1
}

.ft-company li a {
  position: relative;
  background: #fff;
  display: inline-block;
  line-height: 36px;
  padding: 0 15px 0 35px;
  text-decoration: none
}

.ft-company li a::after {
  position: absolute;
  display: block;
  content: '';
  width: 36px;
  height: 36px;
  background: inherit;
  border: 1px solid #b29671;
  right: -21px;
  top: 0;
  -webkit-transform: rotate(45deg) skew(10deg, 10deg);
  transform: rotate(45deg) skew(10deg, 10deg);
  z-index: -1
}

.ft-company li a:hover img {
  opacity: .7
}

.ft-company li a img {
  vertical-align: middle
}

.ft-company li span {
  position: relative;
  color: #fff;
  background: #b29671;
  display: inline-block;
  line-height: 36px;
  padding: 0 15px 0 35px
}

.ft-company li span::after {
  position: absolute;
  display: block;
  content: '';
  width: 36px;
  height: 36px;
  background: inherit;
  border: 1px solid #b29671;
  right: -10px;
  top: 0;
  -webkit-transform: rotate(45deg) skew(10deg, 10deg);
  transform: rotate(45deg) skew(10deg, 10deg);
  z-index: -1
}

@media only screen and (max-width:767px) {
  .ft-company {
    float: none;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0
  }
  .ft-company li {
    margin-bottom: 1px;
    border-bottom: 1px solid #b29671
  }
  .ft-company li:nth-of-type(2n+1) {
    width: 35%
  }
  .ft-company li:nth-of-type(2n+1) span {
    display: block
  }
  .ft-company li:nth-of-type(2n) {
    width: 65%
  }
  .ft-company li a {
    display: block;
    padding-left: 20px
  }
  .ft-company li a::after {
    display: none
  }
  .ft-company li span {
    padding: 0 15px
  }
  .ft-company li span::after {
    display: none
  }
}

.copyright {
  float: right;
  color: grey;
  font-size: 11px;
  line-height: 36px;
  text-align: right
}

.copyright a {
  color: grey
}

@media only screen and (max-width:767px) {
  .copyright {
    float: none;
    text-align: center
  }
}

.p-top_visual {
  position: relative;
  color: #fff;
  width: 100%;
  min-height: 650px;
  background: url(../images/top/bg_main.jpg) center bottom no-repeat;
  background-size: cover;
  text-align: center
}

.p-top_visual h2 {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  top: 40%;
  left: 50%
}

@media only screen and (max-width:767px) {
  .p-top_visual {
    min-height: 380px
  }
  .p-top_visual h2 {
    width: 90%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-filter: blur(10px);
    filter: blur(10px);
    top: 25%;
    left: 5%
  }
}

.p-top_service {
  position: relative
}

.p-top_service:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000021;
  top: 0;
  left: 0;
  z-index: -1
}

.p-top_service .c-title {
  color: #fff
}

.p-top_service ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}

.p-top_service ul li {
  color: #fff;
  width: 33.3333%;
  border-left: 1px solid #323244;
  padding: 0 40px
}

.p-top_service ul li:first-child {
  border-left: none
}

.p-top_service ul li img {
  display: block;
  margin: 0 auto 50px auto
}

.p-top_service ul li:nth-child(2) img {
  padding: 7px 0
}

.p-top_service ul li:nth-child(3) img {
  padding: 25px 0
}

.p-top_service ul li h3 {
  color: #fff;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 10px
}

.p-top_service ul li h3 span {
  color: #b29671;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 18px;
  margin-left: 15px
}

.p-top_service ul li p {
  color: #d4d4d4;
  line-height: 1.6;
  margin-bottom: 20px
}

@media only screen and (max-width:767px) {
  .p-top_service:before {
    left: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  .p-top_service ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
  }
  .p-top_service ul li {
    width: 100%;
    border-top: 1px solid #323244;
    border-left: none;
    padding: 30px 0
  }
  .p-top_service ul li:first-child {
    border-top: none
  }
  .p-top_service ul li img {
    margin-bottom: 30px;
    padding: 0!important
  }
  .p-top_service ul li h3 {
    font-size: 24px
  }
  .p-top_service ul li h3 span {
    font-size: 16px
  }
}

.golf_ribbon{
  background: url(../images/top/enrich_golf_ribbon.svg) top left no-repeat;
  background-color: #FFF;
  background-size: 140px;
}

.bg_contract {
  background: url(../images/top/bg_contract.jpg) center center no-repeat;
  background-size: cover;
  padding-bottom: 80px
}

.bg_contract ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.bg_contract ul li {
  width: 32%;
  margin: 0 2% 20px 0
}

.bg_contract ul li:nth-child(3n) {
  margin-right: 0
}

.bg_contract ul li .c-btn_lg {
  color: #b29671
}

@media only screen and (max-width:767px) {
  .bg_contract {
    padding-bottom: 40px
  }
  .bg_contract ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .bg_contract ul li {
    width: 100%;
    margin-right: 0
  }
}

.p-top_hire .c-page_vis {
  height: auto;
  margin-bottom: 100px
}

.p-top_hire .c-page_vis:before {
  background-image: url(../images/top/bg_hire.jpg)
}

.p-top_hire .c-page_vis .c-page_inner .txt {
  height: auto
}

@media only screen and (max-width:767px) {
  .p-top_hire .c-page_vis {
    margin-bottom: 60px
  }
}

.p-top_about .c-title+p {
  width: 60%;
  margin-bottom: 25px
}

.p-top_about .c-img_right {
  margin-bottom: 100px
}

.p-top_about .c-img_inner .img {
  background-image: url(../images/top/photo_about.jpg)
}

@media only screen and (max-width:767px) {
  .p-top_about .c-title+p {
    width: 100%
  }
  .p-top_about .c-img_right {
    margin-bottom: 60px
  }
}

.c-accordion dt {
  text-align: center
}

.c-accordion dt span {
  position: relative;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  border-bottom: 1px solid #b29671;
  padding: 0 25px 8px 0
}

.c-accordion dt span:after {
  position: absolute;
  content: "\e900";
  font-family: icomoon;
  font-size: 14px;
  top: 0;
  right: 0
}

.c-accordion dd {
  display: none;
  margin-top: 50px
}

.c-accordion dd table {
  width: 100%
}

.c-accordion dd td, .c-accordion dd thead th:nth-child(n+2) {
  width: 325px
}

@media only screen and (max-width:767px) {
  .c-accordion dt span {
    font-size: 16px;
    padding-right: 20px
  }
  .c-accordion dt span:after {
    font-size: 13px
  }
}

.p-company .c-page_vis:before {
  background-image: url(../images/company/bg_company.jpg)
}

.p-company_about .c-table {
  margin-bottom: 100px
}

.p-company_about .c-img_right {
  position: relative;
  color: #404040;
  min-height: 410px;
  background: 0 0;
  z-index: 1
}

.p-company_about .c-img_inner .img {
  height: 410px;
  background-image: url(../images/company/photo_nnb.jpg);
  background-position: left bottom;
  background-size: contain
}

.p-company_about .c-img_inner .txt p {
  margin-bottom: 25px
}

@media only screen and (max-width:767px) {
  .p-company_about .c-table {
    margin-bottom: 0
  }
  .p-company_about .c-img_right {
    min-height: auto
  }
  .p-company_about .c-img_inner .img {
    height: 350px;
    margin: 0 20px
  }
}

.p-service_shuttle .c-page_vis:before {
  background-image: url(../images/service/bg_shuttle.jpg)
}

.p-service_tourism .c-page_vis:before {
  background-image: url(../images/service/bg_tourism.jpg)
}

.p-service_spot .c-page_vis:before {
  background-image: url(../images/service/bg_spot.jpg)
}

.p-service_case {
  position: relative;
  margin-top: 100px;
  padding-top: 0;
  overflow: hidden
}

.p-service_case:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #f1f2f4;
  top: 150px;
  left: 0;
  z-index: -1
}

.p-service_case dl {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  background-color: #fff;
  margin-bottom: 50px
}

.p-service_case dl dt {
  width: 45.5%
}

.p-service_case dl dd {
  width: 55.5%;
  padding: 40px 40px 0 40px
}

.p-service_case dl dd h4 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 25px;
  margin-bottom: 15px
}

.p-service_case dl dd h4 span {
  display: inline-block;
  color: #b29671;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  border: 1px solid #b29671;
  margin-left: 8px;
  padding: 2px 10px;
  vertical-align: text-top
}

.p-service_case dl dd h4 span:first-of-type {
  margin-left: 30px
}

.p-service_case dl dd a {
  color: #404040
}

.p-service_case dl dd a:hover {
  color: #b29671
}

.p-service_case .c-btn {
  margin: 0 auto
}

@media only screen and (max-width:767px) {
  .p-service_case {
    margin-top: 60px
  }
  .p-service_case dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px
  }
  .p-service_case dl dt {
    width: 100%
  }
  .p-service_case dl dd {
    width: 100%;
    padding: 20px
  }
  .p-service_case dl dd h4 {
    font-size: 20px
  }
  .p-service_case dl dd h4 span {
    font-size: 12px
  }
  .p-service_case dl dd h4 span:first-of-type {
    margin-left: 0
  }
}

@media only screen and (max-width:767px) and (max-width:375px) {
  .p-service_case dl dd h4 span:nth-of-type(3) {
    margin-left: 0
  }
}

.p-service_course {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 30px
}

.p-service_course li {
  width: 50%
}

@media only screen and (max-width:767px) {
  .p-service_course {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .p-service_course li {
    width: 100%
  }
}

.p-service_original .c-img_right {
  min-height: 530px
}

.p-service_original .c-img_inner .img {
  height: 530px;
  background-image: url(../images/service/photo_original.jpg)
}

.p-service_original .c-img_inner .txt p {
  margin-bottom: 20px
}

.p-service_original .c-img_inner .txt .c-caption_sm {
  margin-bottom: 40px
}

@media only screen and (max-width:767px) {
  .p-service_original .c-img_right {
    min-height: auto
  }
  .p-service_original .c-img_inner .img {
    height: 350px
  }
  .p-service_original .c-img_inner .txt .c-caption_sm {
    margin-bottom: 30px
  }
}

.p-contract_spot .c-page_vis:before {
  background-image: url(../images/contract/bg_spot.jpg)
}

.p-contract_exclusive .c-page_vis:before {
  background-image: url(../images/contract/bg_exclusive.jpg)
}

.p-contract_shuttle .c-page_vis:before {
  background-image: url(../images/contract/bg_shuttle.jpg)
}

.p-contract_operation .c-page_vis:before {
  background-image: url(../images/contract/bg_operation.jpg)
}

.p-contract_merit ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap
}

.p-contract_merit ul li {
  width: 32%;
  margin-right: 2%;
  text-align: center
}

.p-contract_merit ul li:nth-child(3n) {
  margin-right: 0
}

.p-contract_merit ul li:nth-child(n+4) {
  margin-top: 40px
}

.p-contract_merit ul li span {
  position: relative;
  display: block;
  color: #b29671;
  font-family: "EB Garamond", serif;
  font-size: 30px;
  margin-bottom: 10px
}

.p-contract_merit ul li span:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  background-color: #b29671;
  left: 50%;
  bottom: -30px
}

.p-contract_merit ul li div {
  border: 1px solid #b29671;
  padding: 40px 0 30px 0;
  text-align: center
}

.p-contract_merit ul li div h4 {
  margin-bottom: 25px
}

.p-contract_merit ul li div p {
  padding: 0 20px
}

@media only screen and (max-width:767px) {
  .p-contract_merit ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .p-contract_merit ul li {
    width: 100%;
    margin: 0 0 20px 0
  }
  .p-contract_merit ul li:nth-child(n+4) {
    margin-top: 0
  }
  .p-contract_merit ul li:last-child {
    margin-bottom: 0
  }
  .p-contract_merit ul li span {
    font-size: 24px
  }
  .p-contract_merit ul li span:before {
    height: 30px;
    bottom: -24px
  }
  .p-contract_merit ul li div {
    padding: 30px 0 20px 0
  }
  .p-contract_merit ul li div h4 {
    margin-bottom: 20px
  }
}

.p-contract_flow {
  background-color: #f1f2f4
}

.p-contract_flow dl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #fff;
  margin-bottom: 25px;
  padding: 20px
}

.p-contract_flow dl dt {
  border: 1px solid #b29671;
  margin-right: 40px
}

.p-contract_flow dl dt span {
  display: table-cell;
  color: #b29671;
  width: 125px;
  height: 125px;
  font-family: "EB Garamond", serif;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  vertical-align: middle
}

.p-contract_flow dl dt em {
  display: block;
  font-size: 40px;
  font-style: normal
}

.p-contract_flow dl dd h4 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  margin-bottom: 15px
}

.p-contract_flow dl:after {
  position: absolute;
  content: "";
  width: 50px;
  height: 25px;
  background: url(../images/contract/arrow.svg) center top no-repeat;
  left: 50%;
  bottom: -25px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

.p-contract_flow dl:last-child {
  margin-bottom: 0
}

.p-contract_flow dl:last-child:after {
  display: none;
  margin-bottom: 0
}

.p-contract_flow dl:last-child dt {
  background-color: #b29671
}

.p-contract_flow dl:last-child dt span {
  color: #fff
}

@media only screen and (max-width:767px) {
  .p-contract_flow dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .p-contract_flow dl dt {
    margin: 0 0 20px 0
  }
  .p-contract_flow dl dt span {
    width: 200px;
    height: auto;
    font-size: 16px;
    padding: 5px 0
  }
  .p-contract_flow dl dt em {
    display: inline-block;
    font-size: 26px;
    margin-left: 5px
  }
  .p-contract_flow dl dd h4 {
    font-size: 16px
  }
  .p-contract_flow dl:after {
    position: absolute;
    content: "";
    width: 50px;
    height: 25px;
    background: url(../images/contract/arrow.svg) center top no-repeat;
    left: 50%;
    bottom: -25px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }
  .p-contract_flow dl:last-child {
    margin-bottom: 0
  }
  .p-contract_flow dl:last-child:after {
    display: none;
    margin-bottom: 0
  }
  .p-contract_flow dl:last-child dt {
    background-color: #b29671
  }
  .p-contract_flow dl:last-child dt span {
    color: #fff
  }
}

.p-contract_notes .txt {
  background-color: #f1f2f4;
  padding: 40px 50px
}

.p-contract_notes .txt ul li {
  padding-left: 1.7em;
  text-indent: -1.7em
}

@media only screen and (max-width:767px) {
  .p-contract_notes .txt {
    padding: 20px 30px
  }
}

.p-hire .c-page_vis:before {
  background-image: url(../images/hire/bg_hire.jpg)
}

.p-hire_option {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px
}

.p-hire_option li {
  color: #b29671;
  border: 1px solid #b29671;
  margin-right: 20px;
  padding: 0 10px
}

@media only screen and (max-width:767px) {
  .p-hire_option {
    margin-bottom: 5px
  }
  .p-hire_option li {
    margin: 0 10px 10px 0;
    padding: 0 10px
  }
}

.p-hire_list p {
  margin-bottom: 50px
}

@media only screen and (max-width:767px) {
  .p-hire_list p {
    margin-bottom: 30px
  }
}

.p-hire_capacity {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 50px
}

.p-hire_capacity li {
  width: 32%;
  font-weight: 700;
  border: 1px solid #b29671;
  margin-right: 2%;
  padding: 15px 0;
  text-align: center
}

.p-hire_capacity li:last-child {
  margin-right: 0
}

.p-hire_capacity li span {
  display: block;
  color: #b29671;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 25px;
  font-weight: 400
}

@media only screen and (max-width:767px) {
  .p-hire_capacity {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px
  }
  .p-hire_capacity li {
    width: 100%;
    margin: 0 0 2% 0;
    padding: 10px 0
  }
  .p-hire_capacity li:last-child {
    margin-bottom: 0
  }
  .p-hire_capacity li span {
    font-size: 20px
  }
}

.p-hire_photo {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between
}

.p-hire_photo li {
  width: 49%
}

@media only screen and (max-width:767px) {
  .p-hire_photo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column
  }
  .p-hire_photo li {
    width: 100%
  }
  .p-hire_photo li:first-child {
    margin-bottom: 2%
  }
}

.p-safety .c-page_vis:before {
  background-image: url(../images/safety/bg_safety.jpg)
}

.p-safety .c-point_list {
  margin-bottom: 50px
}

.p-safety .c-point_list p {
  padding: 50px 0
}

@media only screen and (max-width:767px) {
  .p-safety .c-point_list {
    margin-bottom: 30px
  }
  .p-safety .c-point_list p {
    padding: 25px 0
  }
}

.p-safety_point {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 4px solid #d3d3d3;
  margin-bottom: 50px;
  padding: 50px 0
}

.p-safety_point dt {
  width: 330px;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  text-align: center
}

.p-safety_point dt span {
  display: block;
  color: #b29671;
  font-family: "EB Garamond", serif;
  font-size: 68px;
  line-height: 1
}

.p-safety_point dd {
  border-left: 1px solid #b29671;
  padding: 0 40px
}

.p-safety_point dd h4 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  margin-bottom: 35px
}

.p-safety_point dd p {
  width: 72%
}

@media only screen and (max-width:767px) {
  .p-safety_point {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    border: 3px solid #d3d3d3;
    margin-bottom: 30px;
    padding: 20px
  }
  .p-safety_point dt {
    width: 100%;
    font-size: 16px;
    margin-bottom: 20px
  }
  .p-safety_point dt span {
    font-size: 45px
  }
  .p-safety_point dd {
    border-top: 1px solid #b29671;
    border-left: none;
    padding: 20px 0 0 0
  }
  .p-safety_point dd h4 {
    font-size: 16px;
    margin-bottom: 25px
  }
  .p-safety_point dd p {
    width: 100%
  }
}

.p-safety_identity {
  color: #fff;
  background-color: #b29671;
  padding: 30px 20px;
  text-align: center
}

.p-safety_identity h3 {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 25px;
  line-height: 1.5;
  margin-bottom: 30px
}

.p-safety_identity ul li {
  margin-bottom: 10px
}

@media only screen and (max-width:767px) {
  .p-safety_identity {
    padding: 20px
  }
  .p-safety_identity h3 {
    font-size: 20px
  }
  .p-safety_identity ul li {
    padding-left: 2em;
    text-indent: -2em;
    text-align: left
  }
}

.p-recruit .c-page_vis:before {
  background-image: url(../images/recruit/bg_recruit.jpg)
}

.p-recruit_msg p {
  margin-bottom: 30px
}

.p-recruit_msg p:last-child {
  margin-bottom: 0
}

.p-recruit_info {
  background-color: #f1f2f4
}

.p-recruit_info .c-table {
  margin-bottom: 50px
}

.p-recruit_info .c-table a {
  color: #404040;
  text-decoration: none
}

@media only screen and (max-width:767px) {
  .p-recruit_info .c-table {
    margin-bottom: 30px
  }
}

.p-contact .c-page_vis:before {
  background-image: url(../images/contact/bg_contact.jpg)
}

@media only screen and (min-width:768px) {
  .menu-mobile {
    display: none;
    padding: 20px
  }
  .menu-mobile:after {
    position: relative;
    float: right;
    content: "\f394";
    font-family: Ionicons;
    font-size: 2.5rem;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%)
  }
  .menu-dropdown-icon:before {
    display: none;
    float: right;
    color: #333;
    content: "\f489";
    font-family: Ionicons;
    background: #fff;
    padding: 1.5em 2em;
    cursor: pointer
  }
  #gNavi>ul {
    position: relative;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box
  }
  #gNavi>ul>li>div {
    position: absolute;
    display: none;
    width: 100%;
    background: #000021;
    padding: 50px 0;
    top: 58px;
    left: 0;
    box-sizing: border-box;
    z-index: 9999
  }
  #gNavi>ul>li>div ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
  }
  #gNavi>ul>li>div ul li {
    width: 32%;
    margin: 0 2% 0 0
  }
  #gNavi>ul>li>div ul li:nth-child(3n) {
    margin-right: 0
  }
  #gNavi>ul>li>div ul li:nth-child(n+4) {
    margin-top: 25px
  }
  #gNavi>ul>li>div ul li a {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    display: block;
    color: #000;
    max-width: 320px;
    font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'ＭＳ 明朝', 'Noto Serif Japanese', serif;
    font-size: 18px;
    background-color: #fff;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 45px 25px 25px;
    letter-spacing: .1em;
    line-height: 1.1;
    text-decoration: none;
    -webkit-transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
    transition: color .3s ease, background-color .3s ease, -webkit-transform .3s ease;
    transition: color .3s ease, background-color .3s ease, transform .3s ease;
    transition: color .3s ease, background-color .3s ease, transform .3s ease, -webkit-transform .3s ease
  }
  #gNavi>ul>li>div ul li a:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 80%;
    background-color: #b29671;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }
  #gNavi>ul>li>div ul li a:after {
    position: absolute;
    content: "\e903";
    color: #b29671;
    font-family: icomoon;
    font-size: 10px;
    top: 50%;
    right: 12px;
    -webkit-transform: translateY(-50%) scale(.9);
    transform: translateY(-50%) scale(.9)
  }
  #gNavi>ul>li>div ul li a:hover {
    color: #fff!important;
    background-color: #b29671
  }
  #gNavi>ul>li>div ul li a:hover:before {
    background-color: #fff
  }
  #gNavi>ul>li>div ul li a:hover:after {
    color: #fff
  }
}

/*returnees*/

.p-returnees_hero{
    position: relative;
    width: 100vw;
    height: 480px;
    background-image: url(../images/returnees/bg_returnees.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
@media only screen and (max-width:767px) {
    .p-returnees_hero{
        height: 600px;
    }  
}

.p-returnees_hero_textarea{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 80%;
    max-width:720px;
    height:360px;
    background-color: #b29671;
}

.p-returnees_hero_inner{
    position:absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: center;
}

.p-returnees_hero_title{
    width: 80%;
    margin-right:auto;
    margin-left:auto;
    margin-bottom: 30px;
    padding-bottom:30px;
    border-bottom:1px solid #fff;
    font-size: 14px;
    font-weight: 700;
    color:#fff;
}

.p-returnees_hero_title_main{
    margin-bottom: 16px;
    font-size: 40px;
    font-weight: 400;
    color:#fff;
    letter-spacing: .1rem;
}
.p-returnees_hero_title_sub{
    font-size: 16px;
}
@media only screen and (max-width:767px) {
    .p-returnees_hero_title_main{
        display: block;
        margin-bottom: 0;
        font-size: 28px;
        line-height: 1;
    }
    .p-returnees_hero_title_sub{
        font-size: 12px;
    }
}

.p-returnees_hero_content_heading{
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
  font-size: 18px;
  margin-bottom: 12px;
}
@media only screen and (max-width:767px) {
    .p-returnees_hero_content_heading{
        font-size: 14px;
        margin-bottom: 20px;
        padding-top: 0px;
    }
    .p-returnees_hero_content_lead{
        font-size: 12px;
    }
}

.p-returnees_about_card{
  margin-bottom: 50px;
}
@media only screen and (max-width:767px) {
  .p-returnees_about_card{
      margin-bottom: 30px;
  }
}
.p-returnees_about_card_inner{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-top:50px;
    padding-bottom:50px;
    border: 4px solid #d3d3d3;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_card_inner{
        padding: 20px;
        border: 3px solid #d3d3d3;
    }
}
.p-returnees_about_card_content{
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    align-items: center;
}
.p-returnees_about_heading{
    width: 30%;
    max-width: 400px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
    font-size: 18px;
    text-align: center;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_heading{
      width: 100%;
      margin-bottom: 20px;
      font-size: 16px;
    }
}
.p-returnees_about_number{
    display: block;
    font-family: "EB Garamond", serif;
    font-size: 68px;
    color: #b29671;
    line-height: 1;
    text-align: center;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_number{
      font-size: 45px;
    }
}
.p-returnees_about_meta{
    max-width: 120px;
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    color:#000021;
    border: 1px solid #b29671;
  }
  
.p-returnees_about_media{
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    padding-left:24px;
    border-left: 1px solid #b29671;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_media{
      padding: 0;
      border-top: 1px solid #b29671;
      border-left: none;
    }
}
.p-returnees_about_media figure:first-of-type{
    max-width: 320px;
    max-height: 300px;
    margin-right :20px;
}
.p-returnees_about_media figure:nth-of-type(2){
    max-width: 200px;
    max-height: 300px;
}
.p-returnees_about_media img{
    width: 100%;
    height:100%;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_media figure{
      margin-left: auto;
      margin-right: auto;
    }
    .p-returnees_about_media figure:first-of-type{
      margin-top:20px;
      margin-right:auto;
      margin-left: auto;
      margin-bottom: 20px;
    }
    .p-returnees_about_media figure:nth-of-type(2){
        max-width: 320px;
    }
}

.p-returnees_about_caption{
  margin-top:10px;
}
@media only screen and (max-width:767px) {
    .p-returnees_about_caption{
      font-size:12px;
    }
}
.p-returnees_about .c-btn{
  margin-right:auto;
  margin-left:auto;
} 


.p-returnees_summary{
  background-color: #000021;
}

.p-returnees_summary_inner{
    width:95%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
}
@media only screen and (max-width:767px) {
    .p-returnees_summary_inner {
        padding-left: 20px;
        padding-right: 20px
    }
}

.p-returnees_summary_title{
    margin-bottom: 30px;
    font-family: "游明朝",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro","ＭＳ 明朝","Noto Serif Japanese",serif;
    font-size: 24px;
    color:#fff;
    text-align: center;
}
@media only screen and (max-width:767px) {
    .p-returnees_summary_title{
        margin-right: auto;
        margin-left: auto;
        font-size: 20px;
    }
}

.p-returnees_summary_grid{
    display: flex;
    flex-wrap: wrap;
}

.p-returnees_summary_grid_item{
    width: 25%;
    padding:0 10px;
    border-left: 1px solid #323244;
    color: #fff;
}
.p-returnees_summary_grid_item:last-of-type{
    border-right: 1px solid #323244;
}
@media only screen and (max-width:767px) {
  .p-returnees_summary_grid_item{
    width: 100%;
    padding: 30px 0;
    border-top: 1px solid #323244;
    border-left: none;
  }
  .p-returnees_summary_grid_item:first-child {
      border-top: none;
    }
  .p-returnees_summary_grid_item:last-of-type{
      border-right:none;
  }
}

.p-returnees_summary_card_inner{
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
}

.p-returnees_summary_card_media{
  max-width: 180px;
  margin-right: auto;
  margin-left: auto;
}
.p-returnees_summary_card_media img{
  width: 100%;
}
.p-returnees_summary_heading{
    margin-bottom: 10px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
}
@media only screen and (max-width:767px) {
    .p-returnees_summary_heading{
        font-size: 18px;
    }
}
.p-returnees_summary_text{
    margin-bottom: 20px;
    color: #d4d4d4;
    line-height: 1.6;
}


.p-returnees_detail_title{
    margin-bottom: 40px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "ＭＳ 明朝", "Noto Serif Japanese", serif;
    font-size: 25px;
    font-weight: 100;
    text-align: center;
    line-height: 1;
}
@media only screen and (max-width:767px) {
    .p-returnees_detail_title{
      font-size: 18px;
    }
}
.p-returnees_detail_title_sub{
  font-size: 18px;
}

.p-returnees_detail_stack{
    width: 100%;
}

.p-returnees_detail_grid{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.p-returnees_detail_grid_item{
    max-width: 480px;
    margin-right:10px;
    margin-left:10px;
}
@media only screen and (max-width:767px) {
    .p-returnees_detail_grid_item{
        margin:0;
    }
}

.p-returnees_detail_grid_item--6{
    width:50%;
}
@media only screen and (max-width:767px) {
    .p-returnees_detail_grid_item--6{
        width:100%;
    }
}

.p-returnees_detail_grid_item--full{
    width:100%;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
}

.p-returnees_detail_table{
    width: 100%;
}

.p-returnees_detail_table_heading{
    background-color: #000021;
    color:#fff;
}
.p-returnees_detail_table_heading:first-of-type,.p-returnees_detail_table_item:first-of-type{
    width: 85%;
}
@media only screen and (max-width:767px) {
    .p-returnees_detail_table_heading:first-of-type,.p-returnees_detail_table_item:first-of-type{
        width: 80%;
    }
}
.p-returnees_detail_table_item{
  font-size:12px;
  background-color:#fff;
}
@media only screen and (max-width:767px) {
  .p-returnees_detail_table_item{
    font-size:11px;
  }
}
.p-returnees_detail_table_heading,.p-returnees_detail_table_item{
    border:1px solid #000021;
    padding:5px;
}
@media only screen and (max-width:767px) {
    .p-returnees_detail_stack:first-of-type .p-returnees_detail_grid_item:first-of-type .p-returnees_detail_table_item:last-of-type,
    .p-returnees_detail_stack:first-of-type .p-returnees_detail_grid_item:first-of-type .p-returnees_detail_table_item:nth-last-of-type(2){
        border-bottom:0;
    }    
}
.p-returnees_detail_table tr:nth-child(odd) .p-returnees_detail_table_item{
    background-color:#f1f2f4;
}

.p-returnees_detail_lead{
  margin-top:10px;
  font-size: 10px;
}


.p-returnees_flow_textarea {
  padding: 40px 50px;
}
@media only screen and (max-width:767px) {
  .p-returnees_flow_textarea {
    padding: 20px 30px;
  }
}

/*returnees*/
