@charset "UTF-8";
/**
 * setting css
 * #reset
 * #scss
 * #font
 * #base
 * #animation
 */
/* ==========================================================================
   #reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* ==========================================================================
   #scss
========================================================================== */
/* ==========================================================================
   #font
========================================================================== */
/*
@font-face {
  font-family: 'NotoSerifJP';
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSerifJP-Regular.woff") format("woff"), url("../font/NotoSerifJP-Regular.eot") format("eot");
  font-display: swap;
}
@font-face {
  font-family: 'NotoSerifJP';
  font-style: normal;
  font-weight: 500;
  src: url("../font/NotoSerifJP-SemiBold.woff") format("woff"), url("../font/NotoSerifJP-SemiBold.eot") format("eot");
  font-display: swap;
}
*/
/* ==========================================================================
   #base
========================================================================== */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  color: #53473F;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

p, li, td, a {
  line-height: 175%;
  letter-spacing: .05em;
  font-weight: 400;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 165%;
  letter-spacing: .05em;
}

a:link {
  color: #53473F;
  display: block;
  text-decoration: none;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:visited {
  color: #53473F;
}
a:hover {
  cursor: pointer;
  opacity: .75;
}
a:active {
  color: #53473F;
}

/* ==========================================================================
   #animation
========================================================================== */
body {
  animation: fadeIn 2.5s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  transform: translateY(20px);
  transition: all .75s ease .25s;
  opacity: 0;
}
.fade.active {
  transform: translateY(0);
  opacity: 1;
}

/**
 * common css
 * #common
 */
/* ==========================================================================
   #common
========================================================================== */
html {
  background: url("../images/common/bg_body.jpg");
  font-size: 16px;
}
html .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
}
html .section {
  margin-top: 140px;
}
html .row {
  display: flex;
}
html .link {
  margin-top: 50px;
}
html .link a {
  border: solid #53473F 1px;
  border-radius: 25px;
  font-size: 14px;
  line-height: 50px;
  max-width: 325px;
  margin: 0 auto;
  text-align: center;
}
html .top_sec_title {
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 42px;
  line-height: 100%;
  letter-spacing: .075em;
  margin-bottom: 70px;
  text-align: center;
}
html .subpage_title {
  margin-top: 100px;
  margin-bottom: 100px;
}
html .subpage_title h1 span {
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 36px;
  font-weight: 400;
  margin-right: 20px;
  letter-spacing: .075em;
}
html .subpage_sec_title {
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 27px;
  letter-spacing: .075em;
}
html .breadcrumbs {
  display: flex;
  margin-top: 15px;
  padding: 0 2.9411vw;
}
html .breadcrumbs li {
  font-size: 13px;
  position: relative;
  margin-right: 8px;
  padding-right: 20px;
}
html .breadcrumbs li::after {
  position: absolute;
  content: '>';
  top: -1px;
  right: 0;
}
html .breadcrumbs li:last-child {
  margin-right: 0;
  padding-right: 0;
}
html .breadcrumbs li:last-child::after {
  display: none;
}
html .breadcrumbs li a {
  font-size: 13px;
  text-decoration: underline;
}
html .l_content {
  margin-bottom: 160px;
}
html .l_content.no_bottom {
  margin-bottom: 0;
}
html .mb_block {
  display: none;
}

@media (max-width: 1170px) {
  html {
    font-size: 14px;
  }
  html .section {
    margin-top: 100px;
  }
  html .link {
    margin-top: 50px;
  }
  html .link a {
    border-radius: 20px;
    font-size: 13px;
    line-height: 40px;
    max-width: 275px;
  }
  html .top_sec_title {
    font-size: 33px;
    margin-bottom: 50px;
  }
  html .subpage_title {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  html .subpage_title h1 span {
    font-size: 30px;
    margin-right: 20px;
  }
  html .subpage_sec_title {
    font-size: 24px;
  }
  html .breadcrumbs {
    margin-top: 15px;
    padding: 0 40px;
  }
  html .breadcrumbs li {
    font-size: 12px;
  }
  html .breadcrumbs li a {
    font-size: 12px;
  }
  html .l_content {
    margin-bottom: 100px;
  }
  html .tb_none {
    display: none;
  }
}
@media (max-width: 760px) {
  html .container {
    padding: 0 20px;
  }
  html .section {
    margin-top: 80px;
  }
  html .row {
    display: inherit;
  }
  html .link {
    margin-top: 40px;
  }
  html .link a {
    margin-left: 0;
  }
  html .top_sec_title {
    text-align: left;
    margin-bottom: 40px;
  }
  html .subpage_title {
    margin-top: 70px;
    margin-bottom: 50px;
  }
  html .subpage_title h1 span {
    font-size: 30px;
    margin-right: 10px;
  }
  html .subpage_sec_title {
    font-size: 24px;
  }
  html .mb_none {
    display: none;
  }
  html .breadcrumbs {
    padding: 0 20px;
  }
  html .mb_none {
    display: none;
  }
	html .mb_block {
  display: block;
}
}
/**
 * header css
 * #header
 */
/* ==========================================================================
   #header
========================================================================== */
.l_header {
  position: relative;
  border-top: solid #53473F 10px;
}
.l_header .h_sns {
  position: absolute;
  top: 20px;
  left: 40px;
}
.l_header .h_sns ul {
  display: flex;
}
.l_header .h_sns ul li {
  margin-left: 25px;
}
.l_header .h_sns ul li:nth-child(1) {
  margin-left: 0;
}
.l_header .h_sns ul li a svg {
  width: 38px;
  height: 38px;
  fill: #53473F;
}
.l_header .h_contact {
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  z-index: 100;
}
.l_header .h_contact .bt a {
  display: flex;
  align-items: center;
	justify-content: center;
  background: #4da7b7;
  border-radius: 3px;
  color: #fff;
  width: 250px;
  padding: 8px 30px;
}
.l_header .h_contact .bt a svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.l_header .h_contact .bt a span {
  font-size: 15px;
  margin-left: 15px;
	margin-right: 10px;
	font-weight: 700;
}
.l_header .h_contact .bt.contact_2 {
  margin-left: 10px;
}
.l_header .h_trigger {
  display: none;
}
.l_header .h_logo {
  margin: 100px 0 60px;
  text-align: center;
}
.l_header .h_logo a {
  display: inline-block;
}
.l_header .h_logo a img {
  width: 300px;
  height: 112px;
}
.l_header .h_slider .vo_slider {
  position: relative;
  height: 800px;
  margin: 0 auto;
}
.l_header .h_slider .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 3s ease;
}
.l_header .h_slider .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide.current {
  opacity: 1;
}
.l_header .h_slider .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
}
.l_header .h_menu {
  background: rgba(224, 213, 165, 0.25);
}
.l_header .h_menu .global_menu {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 40px;
}
.l_header .h_menu .global_menu ul {
  display: flex;
  justify-content: space-between;
}
.l_header .h_menu .global_menu ul li {
  padding: 40px 0 35px;
}
.l_header .h_menu .global_menu ul li a {
  line-height: 100%;
  text-align: center;
}
.l_header .h_menu .global_menu ul li a .en {
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 24px;
  letter-spacing: .1em;
}
.l_header .h_menu .global_menu ul li a .min {
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

@media (max-width: 1170px) {
  .l_header .h_sns {
    top: 20px;
    left: 20px;
  }
  .l_header .h_sns ul li {
    margin-left: 25px;
  }
  .l_header .h_sns ul li a svg {
    width: 35px;
    height: 35px;
  }
  .l_header .h_contact .bt a {
    width: 200px;
    padding: 8px 20px;
  }
  .l_header .h_contact .bt a svg {
    width: 25px;
    height: 25px;
  }
  .l_header .h_contact .bt a span {
    font-size: 13px;
    margin-left: 5px;
  }
  .l_header .h_contact .bt.contact_2 {
    margin-left: 10px;
  }
  .l_header .h_logo {
    margin: 90px 0 50px;
  }
  .l_header .h_logo a img {
    width: 250px;
    height: 94px;
  }
  .l_header .h_slider .vo_slider {
    height: 450px;
  }
  .l_header .h_menu .global_menu ul li {
    padding: 30px 0 25px;
  }
  .l_header .h_menu .global_menu ul li a .en {
    font-size: 21px;
  }
  .l_header .h_menu .global_menu ul li a .min {
    font-size: 11px;
    margin-top: 8px;
  }
}
@media (max-width: 760px) {
  .l_header .h_sns {
    top: 20px;
    left: 20px;
  }
  .l_header .h_sns ul li {
    margin-left: 20px;
  }
  .l_header .h_sns ul li a svg {
    width: 30px;
    height: 30px;
  }
  .l_header .h_contact {
    right: 61px;
  }
  .l_header .h_contact .bt a {
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
  }
  .l_header .h_contact .bt a svg {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 30px;
    height: 30px;
  }
  .l_header .h_contact .bt a span {
    display: none;
  }
  .l_header .h_contact .bt.contact_2 {
    margin-left: 5px;
  }
  .l_header .h_trigger {
    position: fixed;
    top: 20px;
    right: 10px;
    display: block;
    width: 46px;
    height: 46px;
    background: #B28247;
    border-radius: 3px;
    z-index: 100;
  }
  .l_header .h_trigger .inner {
    position: relative;
    width: 22px;
    height: 6px;
    margin: 13px 0 0 12px;
  }
  .l_header .h_trigger .inner span {
    position: absolute;
    content: '';
    left: 0;
    width: 22px;
    height: 1px;
    background: #fff;
    transition: all .25s ease;
  }
  .l_header .h_trigger .inner span:nth-child(1) {
    top: 0;
  }
  .l_header .h_trigger .inner span:nth-child(2) {
    bottom: 0;
  }
  .l_header .h_trigger .inner.active span:nth-child(1) {
    top: 2px;
    transform: rotate(30deg);
  }
  .l_header .h_trigger .inner.active span:nth-child(2) {
    bottom: 3px;
    transform: rotate(-30deg);
  }
  .l_header .h_trigger p {
    font-family: "Times New Roman", Times, "serif";
    font-size: 13px;
    letter-spacing: .025em;
    line-height: 100%;
    color: #fff;
    text-align: center;
    margin-top: 3px;
  }
  .l_header .h_logo {
    margin: 100px 0 30px;
  }
  .l_header .h_slider .vo_slider {
    height: 400px;
  }
  .l_header .h_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: url("../images/common/bg_body.jpg");
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
  }
  .l_header .h_menu.open {
    opacity: 1;
    visibility: visible;
  }
  .l_header .h_menu .global_menu {
    padding: 0 25px;
    margin-top: 100px;
  }
  .l_header .h_menu .global_menu ul {
    display: inherit;
  }
  .l_header .h_menu .global_menu ul li {
    padding: 40px 0 0;
  }
  .l_header .h_menu .global_menu ul li a {
    text-align: left;
  }
  .l_header .h_menu .global_menu ul li a .en {
    font-size: 24px;
  }
  .l_header .h_menu .global_menu ul li a .min {
    display: inline-block;
    font-size: 12px;
    margin-top: 0;
    margin-left: 20px;
  }
}
/**
 * footer css
 * #footer
 */
/* ==========================================================================
   #footer
========================================================================== */
.l_footer {
  position: relative;
  background: #acd0d6;
}
.l_footer::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/common/bg_footer.png");
  opacity: .125;
}
.l_footer .f_conte {
  position: relative;
  padding-top: 140px;
  padding-bottom: 140px;
  z-index: 10;
}
.l_footer .f_conte .col {
  flex: 50;
  border: solid #B28247 1px;
  padding: 5px;
}
.l_footer .f_conte .col .inner {
  background: #fff;
  width: 100%;
  height: 100%;
  padding: 30px 40px;
}
.l_footer .f_conte .col .inner .f_title {
  position: relative;
  background: #B28247;
  color: #fff;
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 40px;
  text-align: center;
  overflow: hidden;
}
.l_footer .f_conte .col .inner .f_title::before, .l_footer .f_conte .col .inner .f_title::after {
  position: absolute;
  content: '';
  top: 0;
  width: 40px;
  height: 40px;
  background: #fff;
  transform: rotate(45deg);
}
.l_footer .f_conte .col .inner .f_title::before {
  left: -15px;
}
.l_footer .f_conte .col .inner .f_title::after {
  right: -15px;
}
.l_footer .f_conte .col .inner .box {
  margin-top: 30px;
}
.l_footer .f_conte .col .inner .box .logo img {
  width: 100px;
  height: 74px;
  margin: 0 auto;
}
.l_footer .f_conte .col .inner .box .note .name {
  margin-top: 20px;
}
.l_footer .f_conte .col .inner .box .note ul {
  display: flex;
  margin-top: 3px;
}
.l_footer .f_conte .col .inner .box .note ul li {
  line-height: 160%;
}
.l_footer .f_conte .col .inner .box .note ul li:nth-child(1) {
  position: relative;
  width: 90px;
}
.l_footer .f_conte .col .inner .box .note ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_footer .f_conte .col .inner .box .note ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}
.l_footer .f_conte .col .inner .box .calendar {
  margin-top: 20px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper {
  position: relative;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui {
  position: absolute;
  top: 6px;
  right: 0;
  display: flex;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui li {
  width: 25px;
  height: 20px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui .cal_prev {
  position: relative;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui .cal_prev::before {
  position: absolute;
  content: '<';
  top: 50%;
  left: 50%;
  line-height: 20px;
  transform: translateX(-50%) translateY(-50%);
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui .cal_to {
  display: none;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui .cal_next {
  position: relative;
  margin-left: 15px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper .cal_ui .cal_next::before {
  position: absolute;
  content: '>';
  top: 50%;
  left: 50%;
  line-height: 20px;
  transform: translateX(-50%) translateY(-50%);
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 p {
  margin-bottom: 5px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 10px;
  border-top: solid #53473F 1px;
  border-left: solid #53473F 1px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main li {
  font-family: "Times New Roman", Times, 'NotoSerifJP', "serif";
  width: 14.2857%;
  padding: 3px 0;
  text-align: center;
  letter-spacing: 0;
  color: #53473F;
  border-right: solid #53473F 1px;
  border-bottom: solid #53473F 1px;
  font-size: 15px;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main .sun,
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main .holiday {
  background: #77665a;
  color: #fff;
}
.l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main .shortday {
  background: #77bad5;
  color: #fff;
}
.l_footer .f_conte .col .inner .box .txt {
  font-size: 15px;
}
.l_footer .f_conte .col .inner .box .txt span {
  color: #77665a;
}
.l_footer .f_conte .col .inner .box .txt._short span {
  color: #77bad5;
}
.l_footer .f_conte .col.cal {
  margin-left: 5vw;
}
.l_footer .f_copy {
  position: relative;
  border-top: solid #53473F 1px;
  padding: 30px 0;
  z-index: 10;
}
.l_footer .f_copy .sns {
  position: absolute;
  top: 25px;
  right: 40px;
  display: flex;
}
.l_footer .f_copy .sns li {
  margin-left: 30px;
}
.l_footer .f_copy .sns li:nth-child(1) {
  margin-left: 0;
}
.l_footer .f_copy .sns li a svg {
  fill: #53473F;
  width: 25px;
  height: 25px;
}
.l_footer .f_copy .copyright {
  font-family: "Times New Roman", Times, "serif";
  font-size: 13px;
  letter-spacing: .075em;
  text-align: center;
}

@media (max-width: 1170px) {
  .l_footer .f_conte {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .l_footer .f_conte .col .inner {
    padding: 25px 30px;
  }
  .l_footer .f_conte .col .inner .f_title {
    font-size: 14px;
    line-height: 32px;
  }
  .l_footer .f_conte .col .inner .f_title::before, .l_footer .f_conte .col .inner .f_title::after {
    width: 32px;
    height: 32px;
  }
  .l_footer .f_conte .col .inner .box {
    margin-top: 25px;
  }
  .l_footer .f_conte .col .inner .box .note .name {
    margin-top: 20px;
  }
  .l_footer .f_conte .col .inner .box .note ul {
    margin-top: 3px;
  }
  .l_footer .f_conte .col .inner .box .note ul li:nth-child(1) {
    width: 80px;
  }
  .l_footer .f_conte .col .inner .box .calendar {
    margin-top: 20px;
  }
  .l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main {
    margin: 5px 0 10px;
  }
  .l_footer .f_conte .col .inner .box .calendar .cal_wrapper #cal_0 .cal_main li {
    font-size: 12px;
  }
  .l_footer .f_conte .col.cal {
    margin-left: 5vw;
  }
  .l_footer .f_copy {
    padding: 20px 0;
  }
  .l_footer .f_copy .sns {
    top: 20px;
    right: 40px;
  }
  .l_footer .f_copy .sns li a svg {
    width: 20px;
    height: 20px;
  }
  .l_footer .f_copy .copyright {
    font-size: 12px;
  }
	.l_footer .f_conte .col .inner .box .logo img {
  width: 80px;
  height: 60px;
}
}
@media (max-width: 760px) {
  .l_footer .f_conte {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l_footer .f_conte .col {
    padding: 3px;
  }
  .l_footer .f_conte .col .inner {
    padding: 20px;
  }
  .l_footer .f_conte .col .inner .f_title::before {
    left: -20px;
  }
  .l_footer .f_conte .col .inner .f_title::after {
    right: -20px;
  }
  .l_footer .f_conte .col.cal {
    margin-top: 20px;
    margin-left: 0;
  }
  .l_footer .f_copy {
    padding: 60px 0 20px;
  }
  .l_footer .f_copy .sns {
    top: 25px;
    right: 50%;
    transform: translateX(50%);
  }
	.l_footer .f_conte .col .inner .box .txt {
  font-size: 12px;
}
}
/**
 * home css
 * #home
 */
/* ==========================================================================
   #home
========================================================================== */
.l_content .p_home_concept .wrap h1 {
  font-size: 24px;
  text-align: center;
}
.l_content .p_home_concept .wrap .txt {
  margin-top: 35px;
}
.l_content .p_home_concept .wrap .txt p {
  margin-top: 15px;
  text-align: center;
}
.l_content .p_home_concept .gallery {
  display: flex;
  margin-top: 120px;
}
.l_content .p_home_concept .gallery li {
  width: 25%;
}
.l_content .p_home_topics .wrap .col {
  border-bottom: solid #b5a79e 1px;
}
.l_content .p_home_topics .wrap .col:nth-child(1) {
  border-top: solid #b5a79e 1px;
}
.l_content .p_home_topics .wrap .col a {
  display: flex;
  align-items: center;
  padding: 35px 0 30px;
}
.l_content .p_home_topics .wrap .col a ul {
  display: flex;
  width: 250px;
}
.l_content .p_home_topics .wrap .col a ul li {
  line-height: 20px;
}
.l_content .p_home_topics .wrap .col a ul li:nth-child(2) {
  background: #53473F;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  margin-left: 10px;
  padding: 0 10px;
}
.l_content .p_home_topics .wrap .col a h3 {
  flex: 1;
  font-size: 18px;
}
.l_content .p_home_topics .link {
  margin-top: 70px;
}
.l_content .p_home_coupon .wrap .row {
  background: rgba(255, 255, 255, 0.3);
  margin-top: 20px;
  padding: 35px;
}
.l_content .p_home_coupon .wrap .row:nth-child(1) {
  margin-top: 0;
}
.l_content .p_home_coupon .wrap .row .col.note {
  flex: 1;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) {
  display: flex;
  border-bottom: solid #53473F 1px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .select {
  background: #4da7b7;
  border-radius: 50%;
  color: #fff;
  line-height: 130%;
  width: 80px;
  height: 80px;
  padding-top: 23px;
  text-align: center;
  font-size: 14px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box {
  flex: 1;
  margin-top: 5px;
  margin-left: 20px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box h3 {
  font-size: 20px;
  line-height: 150%;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .txt {
  font-size: 13px;
  line-height: 160%;
  margin-top: 5px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  margin-top: 10px;
  letter-spacing: .05em;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price li:nth-child(2) {
  color: red;
  margin-left: 5px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price li:nth-child(2) span {
  font-size: 20px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul {
  display: flex;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li {
  font-size: 15px;
  line-height: 150%;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li:nth-child(1) {
  position: relative;
  width: 85px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) .limit {
  margin-top: 2px;
}
.l_content .p_home_coupon .wrap .row .col.contact {
  width: 250px;
  margin-left: 30px;
}
.l_content .p_home_coupon .wrap .row .col.contact ul li {
  margin-top: 10px;
}
.l_content .p_home_coupon .wrap .row .col.contact ul li:nth-child(1) {
  margin-top: 0;
}
.l_content .p_home_coupon .wrap .row .col.contact ul li a {
  border: solid #4da7b7 1px;
  border-radius: 5px;
  text-align: center;
  line-height: 42px;
  color: #4da7b7;
  font-size: 14px;
}
.l_content .p_home_coupon .wrap .all .col.note .block:nth-child(1) .select {
  background: #B28247;
}
.l_content .p_home_coupon .wrap .all .col.contact ul li a {
  border: solid #B28247 1px;
  color: #B28247;
}
.l_content .p_home_recruit .wrap .col {
  flex: 50;
}
.l_content .p_home_recruit .wrap .col.img .figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 100%;
}
.l_content .p_home_recruit .wrap .col.note {
  background: rgba(224, 213, 165, 0.25);
  padding: 120px 0;
}
.l_content .p_home_recruit .wrap .col.note .inner {
  padding: 0 8vw;
}
.l_content .p_home_recruit .wrap .col.note h2 {
  font-size: 21px;
}
.l_content .p_home_recruit .wrap .col.note .txt {
  margin-top: 35px;
}
.l_content .p_home_recruit .wrap .col.note .link a {
  margin-left: 0;
}

@media (max-width: 1170px) {
  .l_content .p_home_concept .wrap h1 {
    font-size: 20px;
  }
  .l_content .p_home_concept .wrap .txt {
    margin-top: 25px;
  }
  .l_content .p_home_concept .wrap .txt p {
    margin-top: 10px;
  }
  .l_content .p_home_concept .gallery {
    margin-top: 80px;
  }
  .l_content .p_home_topics .wrap .col a {
    padding: 25px 0 20px;
  }
  .l_content .p_home_topics .wrap .col a ul {
    width: 200px;
  }
  .l_content .p_home_topics .wrap .col a ul li {
    line-height: 16px;
  }
  .l_content .p_home_topics .wrap .col a ul li:nth-child(2) {
    border-radius: 8px;
    font-size: 12px;
    margin-left: 10px;
    padding: 0 10px;
  }
  .l_content .p_home_topics .wrap .col a h3 {
    font-size: 14px;
  }
  .l_content .p_home_topics .link {
    margin-top: 50px;
  }
  .l_content .p_home_coupon .wrap .row {
    padding: 20px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .select {
    width: 70px;
    height: 70px;
    padding-top: 22px;
    font-size: 12px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box h3 {
    font-size: 16px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .txt {
    font-size: 11px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price li:nth-child(2) span {
    font-size: 18px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li:nth-child(1) {
    width: 78px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul.limit {
    margin-top: 3px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact {
    width: 200px;
    margin-left: 20px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact ul li a {
    line-height: 36px;
    font-size: 12px;
  }
  .l_content .p_home_recruit .wrap .col.note {
    padding: 80px 0;
  }
  .l_content .p_home_recruit .wrap .col.note .inner {
    padding: 0 5vw;
  }
  .l_content .p_home_recruit .wrap .col.note h2 {
    font-size: 18px;
  }
  .l_content .p_home_recruit .wrap .col.note .txt {
    margin-top: 25px;
  }
  .l_content .p_home_recruit .wrap .col.note .link {
    margin-top: 40px;
  }
}
@media (max-width: 760px) {
  .l_content .p_home_concept .wrap h1 {
    text-align: justify;
  }
  .l_content .p_home_concept .wrap .txt p {
    text-align: justify;
  }
  .l_content .p_home_concept .gallery {
    flex-wrap: wrap;
    margin-top: 60px;
  }
  .l_content .p_home_concept .gallery li {
    width: 50%;
  }
  .l_content .p_home_topics .wrap .col a {
    display: inherit;
  }
  .l_content .p_home_topics .wrap .col a ul {
    width: 100%;
  }
  .l_content .p_home_topics .wrap .col a ul li {
    line-height: 14px;
    font-size: 12px;
  }
  .l_content .p_home_topics .wrap .col a ul li:nth-child(2) {
    border-radius: 7px;
    font-size: 10px;
  }
  .l_content .p_home_topics .wrap .col a h3 {
    margin-top: 10px;
  }
  .l_content .p_home_topics .link {
    margin-top: 50px;
  }
  .l_content .p_home_coupon .wrap .row {
    padding: 15px 15px 20px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .select {
    font-size: 12px;
    width: 60px;
    height: 60px;
    padding-top: 17px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box {
    margin-left: 15px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price {
    display: inherit;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price li:nth-child(2) {
    text-align: right;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li {
    font-size: 13px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul li:nth-child(1) {
    width: 75px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(2) ul.limit {
    margin-top: 3px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact {
    margin-top: 15px;
    margin-left: 0;
  }
  .l_content .p_home_coupon .wrap .row .col.contact ul li {
    margin-top: 8px;
  }
  .l_content .p_home_recruit .wrap .col.img .figure {
    height: 250px;
  }
  .l_content .p_home_recruit .wrap .col.note {
    padding: 50px 0;
  }
  .l_content .p_home_recruit .wrap .col.note .inner {
    padding: 0 20px;
  }
  .l_content .p_home_recruit .wrap .col.note h2 {
    font-size: 18px;
  }
  .l_content .p_home_recruit .wrap .col.note .txt {
    margin-top: 20px;
  }
  .l_content .p_home_recruit .wrap .col.note .link {
    margin-top: 30px;
  }
}
/**
 * topics css
 * #topics
 */
/* ==========================================================================
   #topics
========================================================================== */
.l_content .p_topics_archive .inner {
  margin-top: -100px;
  margin-bottom: 140px;
  padding-top: 100px;
}
.l_content .p_topics_archive .inner:last-child {
  margin-bottom: 0;
}
.l_content .p_topics_archive .inner .info {
  border-top: solid #53473F 1px;
  border-bottom: solid #b5a79e 1px;
  padding: 25px 0 20px;
}
.l_content .p_topics_archive .inner .info ul {
  display: flex;
  align-items: center;
}
.l_content .p_topics_archive .inner .info ul li {
  font-size: 13px;
  line-height: 18px;
  letter-spacing: .075em;
}
.l_content .p_topics_archive .inner .info ul li:nth-child(2) {
  background: #53473F;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  padding: 0 10px;
}
.l_content .p_topics_archive .inner .info h2 {
  font-size: 21px;
  margin-top: 5px;
}
.l_content .p_topics_archive .inner .row {
  margin-top: 40px;
}
.l_content .p_topics_archive .inner .row .col.img {
  flex: 34;
}
.l_content .p_topics_archive .inner .row .col.note {
  flex: 66;
  margin-left: 5vw;
}
.l_content .p_topics_archive .inner .row .col.note .small {
  font-size: 14px;
}
.l_content .p_topics_archive .inner .row .col.note .medium {
  font-size: 17px;
}
.l_content .p_topics_archive .inner .row .col.note .large {
  font-size: 20px;
}
.l_content .p_topics_archive .inner .row .col.note .red {
  color: red;
}
.l_content .p_topics_archive .inner .row .col.note .blue {
  color: blue;
}
.l_content .p_topics_archive .inner .row .col.note .green {
  color: green;
}
.l_content .p_topics_archive .inner .row .col.note .bold {
  font-weight: 600;
}
.l_content .p_topics_archive .inner .row .col.note .italic {
  font-style: italic;
}
.l_content .p_topics_archive .inner .row .col.note .mb10 {
  margin-bottom: 10px;
}
.l_content .p_topics_archive .inner .row .col.note .mb20 {
  margin-bottom: 20px;
}
.l_content .p_topics_archive .inner .row .col.note .mb30 {
  margin-bottom: 30px;
}
.l_content .p_topics_archive .inner .row .col.note a {
  display: inline-block;
  text-decoration: underline;
  color: #517fb2;
}

@media (max-width: 1170px) {
  .l_content .p_topics_archive .inner {
    margin-top: -80px;
    margin-bottom: 100px;
    padding-top: 80px;
  }
  .l_content .p_topics_archive .inner .info {
    padding: 20px 0 15px;
  }
  .l_content .p_topics_archive .inner .info ul li {
    font-size: 12px;
    line-height: 14px;
  }
  .l_content .p_topics_archive .inner .info ul li:nth-child(2) {
    border-radius: 7px;
    color: #fff;
    font-size: 10px;
  }
  .l_content .p_topics_archive .inner .info h2 {
    font-size: 18px;
  }
  .l_content .p_topics_archive .inner .row {
    margin-top: 30px;
  }
  .l_content .p_topics_archive .inner .row .col.note .small {
    font-size: 13px;
  }
  .l_content .p_topics_archive .inner .row .col.note .medium {
    font-size: 16px;
  }
  .l_content .p_topics_archive .inner .row .col.note .large {
    font-size: 18px;
  }
  .l_content .p_topics_archive .inner .row .col.note .mb10 {
    margin-bottom: 8px;
  }
  .l_content .p_topics_archive .inner .row .col.note .mb20 {
    margin-bottom: 10px;
  }
  .l_content .p_topics_archive .inner .row .col.note .mb30 {
    margin-bottom: 20px;
  }
}
@media (max-width: 760px) {
  .l_content .p_topics_archive .inner {
    margin-top: -60px;
    margin-bottom: 80px;
    padding-top: 60px;
  }
  .l_content .p_topics_archive .inner .info h2 {
    font-size: 16px;
  }
  .l_content .p_topics_archive .inner .row {
    margin-top: 25px;
  }
  .l_content .p_topics_archive .inner .row .col.note {
    margin-top: 25px;
    margin-left: 0;
  }
}
/**
 * salon css
 * #salon
 */
/* ==========================================================================
   #salon
========================================================================== */
.l_content .p_salon_gallery ul {
  display: flex;
  flex-wrap: wrap;
}
.l_content .p_salon_gallery ul li {
  width: 50%;
}
.l_content .p_salon_concept .inner {
  border-bottom: solid #b5a79e 1px;
  margin-bottom: 45px;
  padding-bottom: 45px;
}
.l_content .p_salon_concept .inner:last-child {
  margin-bottom: 0;
}
.l_content .p_salon_concept .inner h2 {
  font-size: 20px;
  color: #4da7b7;
}
.l_content .p_salon_concept .inner p {
  margin-top: 15px;
}
.l_content .p_salon_info .row .col {
  flex: 50;
}
.l_content .p_salon_info .row .col.note {
  margin-left: 5vw;
  padding-top: 40px;
}
.l_content .p_salon_info .row .col.note .tel {
  margin: 10px 0;
}
.l_content .p_salon_info .row .col.note .tel span {
  font-family: "Times New Roman", Times, "serif";
  font-size: 27px;
  margin-left: 10px;
}
.l_content .p_salon_info .row .col.note ul {
  display: flex;
  margin-top: 5px;
}
.l_content .p_salon_info .row .col.note ul li {
  line-height: 160%;
}
.l_content .p_salon_info .row .col.note ul li:nth-child(1) {
  position: relative;
  width: 90px;
}
.l_content .p_salon_info .row .col.note ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_content .p_salon_info .row .col.note ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}
.l_content .p_salon_info .map {
  margin-top: 80px;
}
.l_content .p_salon_info .map iframe {
  width: 100%;
  height: 450px;
}

@media (max-width: 1170px) {
  .l_content .p_salon_concept .inner {
    margin-bottom: 35px;
    padding-bottom: 35px;
  }
  .l_content .p_salon_concept .inner h2 {
    font-size: 18px;
  }
  .l_content .p_salon_concept .inner p {
    margin-top: 10px;
  }
  .l_content .p_salon_info .row .col.note {
    padding-top: 10px;
  }
  .l_content .p_salon_info .row .col.note .tel {
    margin: 8px 0 5px;
  }
  .l_content .p_salon_info .row .col.note .tel span {
    font-size: 18px;
  }
  .l_content .p_salon_info .row .col.note ul {
    margin-top: 3px;
  }
  .l_content .p_salon_info .row .col.note ul li:nth-child(1) {
    width: 80px;
  }
  .l_content .p_salon_info .map {
    margin-top: 60px;
  }
  .l_content .p_salon_info .map iframe {
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 760px) {
  .l_content .p_salon_gallery ul li {
    width: 100%;
  }
  .l_content .p_salon_info .row .col.note {
    margin-left: 0;
    padding-top: 30px;
  }
}
/**
 * menu css
 * #menu
 */
/* ==========================================================================
   #menu
========================================================================== */
.l_content .p_menu_pickup .wrap .row {
  margin-top: 50px;
}
.l_content .p_menu_pickup .wrap .row:nth-child(1) {
  margin-top: 0;
}
.l_content .p_menu_pickup .wrap .row:nth-child(2n) {
  flex-direction: row-reverse;
}
.l_content .p_menu_pickup .wrap .row:nth-child(2n) .col.note {
  margin-left: 0;
  margin-right: 4vw;
}
.l_content .p_menu_pickup .wrap .row .col.img {
  flex: 34;
}
.l_content .p_menu_pickup .wrap .row .col.note {
  flex: 66;
  margin-left: 5vw;
  padding-top: 10px;
}
.l_content .p_menu_pickup .wrap .row .col.note h2 {
  font-size: 20px;
}
.l_content .p_menu_pickup .wrap .row .col.note .price {
  border-bottom: solid #b5a79e 1px;
  letter-spacing: .075em;
  margin-bottom: 15px;
  padding-bottom: 10px;
  text-align: right;
}
.l_content .p_menu_pickup .wrap .row .col.note .price span {
  font-family: "Times New Roman", Times, "serif";
  font-size: 24px;
}
.l_content .p_menu_pickup .wrap .row .col.note .txt {
  font-size: 15px;
}
.l_content .p_menu_list .wrap .inner {
  margin-top: 80px;
}
.l_content .p_menu_list .wrap .inner:nth-child(1) {
  margin-top: 0;
}
.l_content .p_menu_list .wrap .inner .note {
  font-size: 13px;
  color: #53473F;
}
.l_content .p_menu_list .wrap .inner .block {
  margin-top: 30px;
}
.l_content .p_menu_list .wrap .inner .block ul {
  display: flex;
  border-bottom: solid #b5a79e 1px;
  padding: 20px 0;
}
.l_content .p_menu_list .wrap .inner .block ul:nth-child(1) {
  border-top: solid #53473F 1px;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) {
  flex: 66;
  display: flex;
  align-items: baseline;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
  flex: 1;
  font-size: 13px;
  line-height: 160%;
  margin-left: 15px;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(2) {
  flex: 34;
  letter-spacing: .05em;
  text-align: right;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(2) .length {
  font-size: 11px;
}
.l_content .p_menu_list .notice {
  margin-top: 100px;
}

@media (max-width: 1170px) {
  .l_content .p_menu_pickup .wrap .row {
    margin-top: 40px;
  }
  .l_content .p_menu_pickup .wrap .row .col.note {
    padding-top: 10px;
  }
  .l_content .p_menu_pickup .wrap .row .col.note h2 {
    font-size: 16px;
  }
  .l_content .p_menu_pickup .wrap .row .col.note .price {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  .l_content .p_menu_pickup .wrap .row .col.note .price span {
    font-size: 18px;
  }
  .l_content .p_menu_pickup .wrap .row .col.note .txt {
    font-size: 13px;
  }
  .l_content .p_menu_list .wrap .inner {
    margin-top: 60px;
  }
  .l_content .p_menu_list .wrap .inner .note {
    font-size: 11px;
  }
  .l_content .p_menu_list .wrap .inner .block {
    margin-top: 20px;
  }
  .l_content .p_menu_list .wrap .inner .block ul {
    padding: 15px 0;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
    font-size: 11px;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(2) .length {
    font-size: 10px;
  }
  .l_content .p_menu_list .notice {
    margin-top: 60px;
  }
}
@media (max-width: 760px) {
  .l_content .p_menu_pickup .wrap .row:nth-child(2n) .col.note {
    margin-right: 0;
  }
  .l_content .p_menu_pickup .wrap .row .col.note {
    padding-top: 20px;
    margin-left: 0;
  }
  .l_content .p_menu_list .wrap .inner {
    margin-top: 50px;
  }
  .l_content .p_menu_list .wrap .inner .block ul {
    border-top: solid #53473F 1px;
    border-bottom: none;
    display: block;
    padding: 0;
  }
  .l_content .p_menu_list .wrap .inner .block ul:last-child {
    border-bottom: solid #53473F 1px;
  }
  .l_content .p_menu_list .wrap .inner .block ul li {
    padding: 12px 0;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) {
    display: block;
    border-bottom: dotted #53473F 1px;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
    margin-top: 2px;
    margin-left: 0;
  }
  .l_content .p_menu_list .notice {
    margin-top: 60px;
  }
}
/**
 * staff css
 * #staff
 */
/* ==========================================================================
   #content
========================================================================== */
.l_content .p_staff_list .wrap .row {
  border-bottom: solid #b5a79e 1px;
  margin-bottom: 70px;
  padding-bottom: 70px;
}
.l_content .p_staff_list .wrap .row:nth-child(1) {
  border-top: solid #b5a79e 1px;
  padding-top: 60px;
}
.l_content .p_staff_list .wrap .row .col.fig {
  width: 200px;
}
.l_content .p_staff_list .wrap .row .col.fig img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.l_content .p_staff_list .wrap .row .col.note {
  flex: 1;
  margin-left: 5vw;
}
.l_content .p_staff_list .wrap .row .col.note .block:nth-child(1) {
  margin-top: 0;
}
.l_content .p_staff_list .wrap .row .col.note .block:nth-child(2) {
  margin-top: 20px;
}
.l_content .p_staff_list .wrap .row .col.note .block:nth-child(3) {
  margin-top: 10px;
}
.l_content .p_staff_list .wrap .row .col.note .block h2 {
  font-size: 21px;
}
.l_content .p_staff_list .wrap .row .col.note .block .lank {
  font-size: 13px;
}
.l_content .p_staff_list .wrap .row .col.note .block ul {
  display: flex;
}
.l_content .p_staff_list .wrap .row .col.note .block ul li:nth-child(1) {
  position: relative;
  width: 140px;
}
.l_content .p_staff_list .wrap .row .col.note .block ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_content .p_staff_list .wrap .row .col.note .block ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}

@media (max-width: 1170px) {
  .l_content .p_staff_list .wrap .row {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  .l_content .p_staff_list .wrap .row:nth-child(1) {
    padding-top: 50px;
  }
  .l_content .p_staff_list .wrap .row .col.fig {
    width: 165px;
  }
  .l_content .p_staff_list .wrap .row .col.fig img {
    width: 165px;
    height: 165px;
  }
  .l_content .p_staff_list .wrap .row .col.note .block {
    margin-top: 10px;
  }
  .l_content .p_staff_list .wrap .row .col.note .block h2 {
    font-size: 18px;
  }
  .l_content .p_staff_list .wrap .row .col.note .block .lank {
    font-size: 11px;
  }
  .l_content .p_staff_list .wrap .row .col.note .block ul li:nth-child(1) {
    position: relative;
    width: 120px;
  }
}
@media (max-width: 760px) {
  .l_content .p_staff_list .wrap .row .col.fig {
    margin: 0 auto;
  }
  .l_content .p_staff_list .wrap .row .col.note {
    margin-top: 25px;
    margin-left: 0;
  }
  .l_content .p_staff_list .wrap .row .col.note .block {
    margin-top: 10px;
  }
  .l_content .p_staff_list .wrap .row .col.note .block ul li:nth-child(1) {
    width: 115px;
  }
}
/**
 * recruit css
 * #recruit
 */
/* ==========================================================================
   #recruit
========================================================================== */
.page_recruit .l_content {
  padding-bottom: 0;
}

.l_content .p_recruit_concept .wrap,
.l_content .p_recruit_message .wrap {
  padding: 0 10vw;
}
.l_content .p_recruit_concept .wrap .inner.fig,
.l_content .p_recruit_message .wrap .inner.fig {
  width: 60%;
}
.l_content .p_recruit_concept .wrap .inner.note,
.l_content .p_recruit_message .wrap .inner.note {
  width: 60%;
  background: #fff;
  margin-top: -30vh;
  margin-left: auto;
  padding: 5vw;
}
.l_content .p_recruit_concept .wrap .inner.note h2,
.l_content .p_recruit_message .wrap .inner.note h2 {
  font-size: 21px;
  margin-bottom: 25px;
}
.l_content .p_recruit_concept .wrap .inner.note p,
.l_content .p_recruit_message .wrap .inner.note p {
  margin-top: 10px;
}
.l_content .p_recruit_concept .wrap .inner.note p.name,
.l_content .p_recruit_message .wrap .inner.note p.name {
  margin-top: 25px;
}
.l_content .p_recruit_req .inner:nth-child(1) h2,
.l_content .p_recruit_outline .inner:nth-child(1) h2 {
  text-align: center;
}
.l_content .p_recruit_req .inner:nth-child(1) .min,
.l_content .p_recruit_outline .inner:nth-child(1) .min {
  font-size: 14px;
  text-align: center;
}
.l_content .p_recruit_req .inner:nth-child(2),
.l_content .p_recruit_outline .inner:nth-child(2) {
  margin-top: 60px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul,
.l_content .p_recruit_outline .inner:nth-child(2) ul {
  display: flex;
}
.l_content .p_recruit_req .inner:nth-child(2) ul:nth-child(1) li:nth-child(1),
.l_content .p_recruit_outline .inner:nth-child(2) ul:nth-child(1) li:nth-child(1) {
  border-top: solid #53473F 1px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul:nth-child(1) li:nth-child(2),
.l_content .p_recruit_outline .inner:nth-child(2) ul:nth-child(1) li:nth-child(2) {
  border-top: solid #b5a79e 1px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li,
.l_content .p_recruit_outline .inner:nth-child(2) ul li {
  padding-top: 30px;
  padding-bottom: 30px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(1),
.l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(1) {
  flex: 25;
  border-bottom: solid #53473F 1px;
  font-weight: 600;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2),
.l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) {
  flex: 75;
  border-bottom: solid #b5a79e 1px;
  margin-left: 20px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2) p,
.l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) p {
  margin-top: 10px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2) p:nth-child(1),
.l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) p:nth-child(1) {
  margin-top: 0;
}
.l_content .p_recruit_gallery ul li {
  flex: 25;
}
.l_content .p_recruit_contact {
  background: rgba(224, 213, 165, 0.25);
  padding: 80px 0;
}
.l_content .p_recruit_contact .wrap .row .col {
  flex: 50;
}
.l_content .p_recruit_contact .wrap .row .col.contact_2 {
  margin-left: 1vw;
}
.l_content .p_recruit_contact .wrap .row .col a {
  background: #fff;
  text-align: center;
  padding: 50px 0;
}
.l_content .p_recruit_contact .wrap .row .col a .min {
  font-size: 13px;
  line-height: 100%;
  text-align: center;
}
.l_content .p_recruit_contact .wrap .row .col a h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 100%;
  margin-top: 10px;
}

@media (max-width: 1170px) {
  .l_content .p_recruit_concept .wrap,
  .l_content .p_recruit_message .wrap {
    padding: 0 40px;
  }
  .l_content .p_recruit_concept .wrap .inner.note,
  .l_content .p_recruit_message .wrap .inner.note {
    width: 70%;
    padding: 40px 0 0 40px;
    margin-top: -80px;
  }
  .l_content .p_recruit_concept .wrap .inner.note h2,
  .l_content .p_recruit_message .wrap .inner.note h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .l_content .p_recruit_concept .wrap .inner.note p,
  .l_content .p_recruit_message .wrap .inner.note p {
    margin-top: 8px;
  }
  .l_content .p_recruit_concept .wrap .inner.note p.name,
  .l_content .p_recruit_message .wrap .inner.note p.name {
    margin-top: 20px;
  }
  .l_content .p_recruit_req .inner:nth-child(1) .min,
  .l_content .p_recruit_outline .inner:nth-child(1) .min {
    font-size: 12px;
  }
  .l_content .p_recruit_req .inner:nth-child(2),
  .l_content .p_recruit_outline .inner:nth-child(2) {
    margin-top: 50px;
  }
  .l_content .p_recruit_req .inner:nth-child(2) ul li,
  .l_content .p_recruit_outline .inner:nth-child(2) ul li {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2) p,
  .l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) p {
    margin-top: 8px;
  }
  .l_content .p_recruit_contact {
    padding: 40px 0;
  }
  .l_content .p_recruit_contact .wrap .row .col a {
    padding: 30px 0;
  }
  .l_content .p_recruit_contact .wrap .row .col a .min {
    font-size: 12px;
  }
  .l_content .p_recruit_contact .wrap .row .col a h2 {
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  .l_content .p_recruit_concept .wrap,
  .l_content .p_recruit_message .wrap {
    padding: 0 20px;
  }
  .l_content .p_recruit_concept .wrap .inner.fig,
  .l_content .p_recruit_message .wrap .inner.fig {
    width: 100%;
  }
  .l_content .p_recruit_concept .wrap .inner.note,
  .l_content .p_recruit_message .wrap .inner.note {
    width: 100%;
    background: inherit;
    padding: 0;
    margin-top: 35px;
  }
  .l_content .p_recruit_concept .wrap .inner.note h2,
  .l_content .p_recruit_message .wrap .inner.note h2 {
    margin-bottom: 15px;
  }
  .l_content .p_recruit_req .inner:nth-child(1) .min,
  .l_content .p_recruit_outline .inner:nth-child(1) .min {
    font-size: 12px;
  }
  .l_content .p_recruit_req .inner:nth-child(2),
  .l_content .p_recruit_outline .inner:nth-child(2) {
    margin-top: 50px;
  }
  .l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(1),
  .l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(1) {
    flex: 28;
  }
  .l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2),
  .l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) {
    flex: 72;
    margin-left: 8px;
  }
  .l_content .p_recruit_gallery {
    padding: 0 20px;
  }
  .l_content .p_recruit_contact .wrap .row .col.contact_2 {
    margin-top: 8px;
    margin-left: 0;
  }
  .l_content .p_recruit_contact .wrap .row .col a .min {
    font-size: 11px;
  }
}
