@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
========================================================================== */
/* ==========================================================================
   #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: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #666666;
}

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

p, li, td, a {
  line-height: 175%;
  letter-spacing: .1em;
  font-weight: 400;
}

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

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

/* ==========================================================================
   #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 {
  font-size: 15px;
}
html .container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 3vw;
}
html .section {
  margin-top: 140px;
}
html .row {
  display: flex;
}
html .link a {
  position: relative;
  color: #fff;
  line-height: 50px;
  border-radius: 5px;
  background: #9F6464;
  width: 100%;
  max-width: 300px;
  padding: 0 30px;
  font-size: 13px;
  margin: 0 auto;
}
html .link a::after {
  position: absolute;
  content: '→';
  top: 0;
  right: 30px;
}
html .home_sec_title {
  text-align: center;
}
html .home_sec_title h2 {
  position: relative;
  font-family: 'Roboto Slab', serif;
  font-size: 33px;
  font-weight: 600;
  line-height: 100%;
  color: #9F6464;
}
html .subpage_title {
  padding-top: 120px;
  padding-bottom: 100px;
}
html .subpage_title h1 {
  line-height: 100%;
  color: #9F6464;
}
html .subpage_title h1 span {
  font-family: 'Roboto Slab', serif;
  font-size: 36px;
  font-weight: 600;
  margin-right: 15px;
}
html .subpage_sec_title {
  font-family: 'Roboto Slab', serif;
  font-size: 28px;
  font-weight: 600;
}
html .ornament {
  display: flex;
  align-items: center;
}
html .ornament .line {
  width: 100%;
  height: 1px;
  background: #9F6464;
}
html .ornament .img {
  padding: 0 20px;
}
html .ornament .img img {
  width: 98px;
  margin: 0 auto;
}
html .breadcrumbs {
  display: flex;
  padding: 20px 3vw 0;
}
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-top: -10px;
  padding-top: 10px;
  padding-bottom: 200px;
  background: url("../images/common/bg_body.gif");
}
html .tb_block,
html .mb_block {
    display: none;
  }

@media (max-width: 1170px) {
  html {
    font-size: 13px;
  }
  html .section {
    margin-top: 80px;
  }
  html .link a {
    line-height: 44px;
    max-width: 260px;
    padding: 0 20px;
    font-size: 12px;
  }
  html .link a::after {
    right: 20px;
  }
  html .home_sec_title h2 {
    font-size: 24px;
  }
  html .subpage_title {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  html .subpage_title h1 span {
    font-size: 25px;
    margin-right: 15px;
  }
  html .subpage_sec_title {
    font-size: 21px;
  }
  html .ornament .img {
    padding: 0 20px;
  }
  html .ornament .img img {
    width: 70px;
  }
  html .breadcrumbs {
    padding: 15px 3vw 0;
  }
  html .breadcrumbs li {
    font-size: 10px;
    margin-right: 5px;
    padding-right: 14px;
  }
  html .breadcrumbs li a {
    font-size: 10px;
  }
  html .l_content {
    padding-bottom: 100px;
  }
  html .tb_none {
    display: none;
  }
	html .tb_block {
    display: block;
  }
}
@media (max-width: 760px) {
  html .container {
    padding: 0 20px;
  }
  html .subpage_title {
    padding-top: 60px;
    padding-bottom: 50px;
    text-align: center;
  }
  html .breadcrumbs {
    padding: 15px 20px 0;
  }
  html .l_content {
    padding-bottom: 80px;
  }
  html .row {
    display: inherit;
  }
  html .mb_none {
    display: none;
  }
  html .mb_block {
    display: block;
  }
}
/**
 * header css
 * #header
 */
/* ==========================================================================
   #header
========================================================================== */
.l_header {
  position: relative;
  z-index: 10;
}
.l_header .h_line {
  background: url("../images/common/bg_header_line.gif");
  height: 40px;
  padding: 0 3vw;
}
.l_header .h_line .sns {
  padding-top: 7px;
}
.l_header .h_line .sns ul {
  display: flex;
  justify-content: flex-end;
}
.l_header .h_line .sns ul li {
  margin-left: 30px;
}
.l_header .h_line .sns ul li:nth-child(1) {
  margin-left: 0;
}
.l_header .h_line .sns ul li a {
  line-height: 100%;
}
.l_header .h_line .sns ul li a svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}
.l_header .h_contents {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: url("../images/common/bg_header.gif");
  background-position: bottom;
  padding: 20px 3vw 25px;
}
.l_header .h_contents .logo {
  flex: 1;
}
.l_header .h_contents .logo a {
  display: inline-block;
}
.l_header .h_contents .logo a img {
  width: 100px;
}
.l_header .h_contents .menu .global_menu ul {
  display: flex;
}
.l_header .h_contents .menu .global_menu ul li {
  margin-left: 20px;
}
.l_header .h_contents .menu .global_menu ul li:nth-child(1) {
  margin-left: 0;
}
.l_header .h_contents .menu .global_menu ul li a {
  color: #fff;
}
.l_header .h_contents .menu .global_menu ul li a .en {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 600;
}
.l_header .h_contents .menu .global_menu ul li a .min {
  display: none;
}
.l_header .h_contents .contact {
  display: flex;
  margin-left: 30px;
}
.l_header .h_contents .contact .bt {
  width: 60px;
  height: 60px;
  border: solid #fff 2px;
  border-radius: 8px;
  margin-left: 10px;
}
.l_header .h_contents .contact .bt a {
  line-height: 100%;
}
.l_header .h_contents .contact .bt a svg {
  width: 40px;
  height: 40px;
  margin-top: 9px;
  margin-left: 8px;
  fill: #fff;
}
.l_header .h_contents .contact .bt.trigger {
  display: none;
}
.l_header .h_hide_menu {
  display: none;
}
.l_header .h_pagetop {
  position: fixed;
  right: 40px;
  bottom: 60px;
  width: 70px;
  height: 70px;
  border: solid #666666 1px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  z-index: 90;
}
.l_header .h_pagetop a {
  line-height: 100%;
}
.l_header .h_pagetop a svg {
  width: 50px;
  height: 50px;
  margin-top: 10px;
  margin-left: 10px;
  fill: #666666;
}

@media (max-width: 1170px) {
  .l_header .h_line {
    height: 40px;
  }
  .l_header .h_line .sns {
    padding-top: 8px;
  }
  .l_header .h_line .sns ul li {
    margin-left: 25px;
  }
  .l_header .h_line .sns ul li a svg {
    width: 18px;
    height: 18px;
  }
  .l_header .h_contents {
    padding: 20px 3vw 25px;
  }
  .l_header .h_contents .logo a img {
    width: 90px;
  }
  .l_header .h_contents .menu .global_menu ul li {
    margin-left: 15px;
  }
  .l_header .h_contents .menu .global_menu ul li a .en {
    font-size: 14px;
  }
  .l_header .h_contents .contact {
    margin-left: 15px;
  }
  .l_header .h_contents .contact .bt {
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-left: 8px;
  }
  .l_header .h_contents .contact .bt a svg {
    width: 34px;
    height: 34px;
    margin-top: 6px;
    margin-left: 6px;
  }
  .l_header .h_pagetop {
    right: 3vw;
    bottom: 50px;
    width: 54px;
    height: 54px;
  }
  .l_header .h_pagetop a svg {
    width: 34px;
    height: 34px;
    margin-top: 9px;
    margin-left: 9px;
  }
}
@media (max-width: 760px) {
  .l_header .h_line {
    padding: 0 15px;
  }
  .l_header .h_contents {
    padding: 10px 15px 15px;
  }
  .l_header .h_contents .logo a img {
    width: 80px;
  }
  .l_header .h_contents .menu {
    display: none;
  }
  .l_header .h_contents .contact {
    margin-left: 0;
  }
  .l_header .h_contents .contact .bt.trigger {
    display: block;
  }
  .l_header .h_contents .contact .bt.trigger .inner {
    position: relative;
    width: 22px;
    height: 8px;
    margin-top: 13px;
    margin-left: 11px;
  }
  .l_header .h_contents .contact .bt.trigger .inner span {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
  }
  .l_header .h_contents .contact .bt.trigger .inner span:nth-child(1) {
    top: 0;
  }
  .l_header .h_contents .contact .bt.trigger .inner span:nth-child(2) {
    bottom: 0;
  }
  .l_header .h_contents .contact .bt.trigger p {
    font-family: 'Roboto Slab', serif;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.05em;
    line-height: 100%;
    text-align: center;
    margin-top: 7px;
  }
  .l_header .h_hide_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 100px 20px 80px;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    z-index: 100;
  }
  .l_header .h_hide_menu.open {
    opacity: 1;
    visibility: visible;
  }
  .l_header .h_hide_menu .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .l_header .h_hide_menu .close .inner {
    position: relative;
    width: 23px;
    height: 8px;
    margin-top: 13px;
    margin-left: 14px;
  }
  .l_header .h_hide_menu .close .inner span {
    position: absolute;
    content: '';
    left: 0;
    width: 100%;
    height: 2px;
    background: #666666;
  }
  .l_header .h_hide_menu .close .inner span:nth-child(1) {
    top: 3px;
    transform: rotate(30deg);
  }
  .l_header .h_hide_menu .close .inner span:nth-child(2) {
    bottom: 3px;
    transform: rotate(-30deg);
  }
  .l_header .h_hide_menu .close p {
    font-family: 'Roboto Slab', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 100%;
    text-align: center;
    margin-top: 7px;
  }
  .l_header .h_hide_menu .contact .bt {
    margin-top: 8px;
  }
  .l_header .h_hide_menu .contact .bt:nth-child(1) {
    margin-top: 0;
  }
  .l_header .h_hide_menu .contact .bt a {
    display: flex;
    align-items: center;
    line-height: 100%;
    border: solid #666666 1px;
    border-radius: 3px;
    padding: 5px 15px;
  }
  .l_header .h_hide_menu .contact .bt a svg {
    width: 40px;
    height: 40px;
    fill: #666666;
  }
  .l_header .h_hide_menu .contact .bt a span {
    flex: 1;
    margin-left: 10px;
    font-size: 14px;
  }
  .l_header .h_hide_menu .menu {
    margin-top: 25px;
  }
  .l_header .h_hide_menu .menu .global_menu ul li {
    border-bottom: dotted #666666 1px;
    padding: 20px 0 5px;
  }
  .l_header .h_hide_menu .menu .global_menu ul li a {
    display: flex;
    justify-content: space-between;
  }
  .l_header .h_hide_menu .menu .global_menu ul li a .en {
    font-family: 'Roboto Slab', serif;
    font-size: 16px;
    font-weight: 600;
  }
  .l_header .h_hide_menu .menu .global_menu ul li a .min {
    font-size: 11px;
  }
  .l_header .h_pagetop {
    right: 15px;
    bottom: 15px;
  }
}
/**
 * footer css
 * #footer
 */
/* ==========================================================================
   #footer
========================================================================== */
.l_footer {
  position: relative;
  background: url("../images/common/bg_footer.gif");
}
.l_footer::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url("../images/common/bg_footer_line.gif");
}
.l_footer .f_conte {
  padding-top: 120px;
  padding-bottom: 100px;
}
.l_footer .f_conte .col {
  flex: 50;
}
.l_footer .f_conte .col .logo img {
  width: 100px;
}
.l_footer .f_conte .col .note .name {
  margin-top: 40px;
  color: #fff;
}
.l_footer .f_conte .col .note ul {
  display: flex;
  margin-top: 3px;
}
.l_footer .f_conte .col .note ul li {
  line-height: 160%;
  color: #fff;
}
.l_footer .f_conte .col .note ul li:nth-child(1) {
  position: relative;
  width: 90px;
}
.l_footer .f_conte .col .note ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_footer .f_conte .col .note ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}
.l_footer .f_conte .col .calendar {
  margin-top: 15px;
}
.l_footer .f_conte .col .calendar .cal_wrapper {
  position: relative;
}
.l_footer .f_conte .col .calendar .cal_wrapper .cal_ui {
  position: absolute;
  top: 3px;
  right: 0;
  display: flex;
}
.l_footer .f_conte .col .calendar .cal_wrapper .cal_ui li {
  width: 25px;
  height: 20px;
  color: #fff;
}
.l_footer .f_conte .col .calendar .cal_wrapper .cal_ui .cal_prev {
  position: relative;
}
.l_footer .f_conte .col .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 .calendar .cal_wrapper .cal_ui .cal_to {
  display: none;
}
.l_footer .f_conte .col .calendar .cal_wrapper .cal_ui .cal_next {
  position: relative;
  margin-left: 15px;
}
.l_footer .f_conte .col .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 .calendar .cal_wrapper #cal_0 p {
  margin-bottom: 5px;
  font-size: 14px;
  color: #fff;
}
.l_footer .f_conte .col .calendar .cal_wrapper #cal_0 .cal_main {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 10px;
  border-top: solid #fff 1px;
  border-left: solid #fff 1px;
}
.l_footer .f_conte .col .calendar .cal_wrapper #cal_0 .cal_main li {
  font-family: Arial, Helvetica, "sans-serif";
  width: 14.2857%;
  padding: 3px 0;
  text-align: center;
  letter-spacing: 0;
  color: #fff;
  border-right: solid #fff 1px;
  border-bottom: solid #fff 1px;
  font-size: 14px;
}
.l_footer .f_conte .col .calendar .cal_wrapper #cal_0 .cal_main .sun, .l_footer .f_conte .col .calendar .cal_wrapper #cal_0 .cal_main .holiday {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.l_footer .f_conte .col .txt {
  font-size: 14px;
  color: #fff;
}
.l_footer .f_conte .col .txt span {
  color: rgba(255, 255, 255, 0.25);
}
.l_footer .f_conte .col.cal {
  margin-left: 5vw;
}
.l_footer .f_conte .col.cal .inner {
  max-width: 400px;
  margin-left: auto;
}
.l_footer .f_conte .col.cal .inner .f_title {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.l_footer .f_copy {
  position: relative;
  border-top: solid rgba(255, 255, 255, 0.25) 1px;
  padding: 12px 0;
}
.l_footer .f_copy .sns {
  position: absolute;
  top: 13px;
  right: 3vw;
  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: #fff;
  width: 20px;
  height: 20px;
}
.l_footer .f_copy .copyright {
  font-family: 'Roboto Slab', serif;
  font-size: 12px;
  letter-spacing: .075em;
  color: #fff;
  text-align: center;
}

@media (max-width: 1170px) {
  .l_footer .f_conte {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .l_footer .f_conte .col .logo img {
    width: 80px;
  }
	.l_footer .f_conte .col .note .name {
		margin-top: 25px;
	}
  .l_footer .f_conte .col .note ul {
    margin-top: 2px;
  }
  .l_footer .f_conte .col .note ul li:nth-child(1) {
    width: 80px;
  }
  .l_footer .f_conte .col .calendar {
    margin-top: 10px;
  }
  .l_footer .f_conte .col .calendar .cal_wrapper .cal_ui {
    top: 2px;
  }
  .l_footer .f_conte .col .calendar .cal_wrapper #cal_0 p {
    font-size: 13px;
  }
  .l_footer .f_conte .col .calendar .cal_wrapper #cal_0 .cal_main li {
    font-size: 13px;
  }
  .l_footer .f_conte .col .txt {
    font-size: 13px;
  }
  .l_footer .f_conte .col.cal {
    margin-left: 5vw;
  }
  .l_footer .f_conte .col.cal .inner {
    max-width: 325px;
  }
  .l_footer .f_copy {
    padding: 10px 0;
  }
  .l_footer .f_copy .sns {
    top: 10px;
  }
  .l_footer .f_copy .sns li {
    margin-left: 25px;
  }
  .l_footer .f_copy .sns li a svg {
    width: 18px;
    height: 18px;
  }
  .l_footer .f_copy .copyright {
    font-size: 12px;
  }
}
@media (max-width: 760px) {
  .l_footer .f_conte {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .l_footer .f_conte .col.cal {
    margin-top: 30px;
    margin-left: 0;
  }
  .l_footer .f_conte .col.cal .inner {
    margin-left: 0;
  }
  .l_footer .f_conte .col.cal .inner .f_title {
    font-size: 16px;
  }
  .l_footer .f_copy {
    padding: 60px 0 15px;
  }
  .l_footer .f_copy .sns {
    top: 25px;
    right: 50%;
    transform: translateX(50%);
  }
  .l_footer .f_copy .sns li {
    margin-left: 30px;
  }
  .l_footer .f_copy .copyright {
    font-size: 11px;
  }
}
/**
 * home css
 * #home
 */
/* ==========================================================================
   #home
========================================================================== */
.l_content .p_home_slider {
  background: rgba(183, 138, 93, 0.1);
  margin-top: -10px;
  padding-top: 10px;
  padding: 40px 0 80px;
}
.l_content .p_home_slider .wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 3vw;
}
.l_content .p_home_slider .vo_slider {
  position: relative;
  height: 700px;
}
.l_content .p_home_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_content .p_home_slider .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide.current {
  opacity: 1;
}
.l_content .p_home_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_content .p_home_slider .link_box {
  margin-top: 10px;
}
.l_content .p_home_slider .link_box ul {
  display: flex;
  margin: -5px;
}
.l_content .p_home_slider .link_box ul li {
  padding: 5px;
}
.l_content .p_home_concept .ornament {
  margin-top: -18px;
  margin-bottom: 160px;
}
.l_content .p_home_concept .wrap {
  margin-top: 60px;
}
.l_content .p_home_concept .wrap .note h1 {
  font-size: 24px;
  text-align: center;
}
.l_content .p_home_concept .wrap .note .txt {
  margin-top: 35px;
}
.l_content .p_home_concept .wrap .note .txt p {
  margin-top: 15px;
  text-align: center;
}
.l_content .p_home_concept .wrap .note .txt p:nth-child(1) {
  margin-top: 0;
}
.l_content .p_home_concept .wrap .note .link {
  margin-top: 45px;
}
.l_content .p_home_concept .gallery {
  margin-top: 120px;
}
.l_content .p_home_concept .gallery ul {
  display: flex;
  padding: 0 3px;
}
.l_content .p_home_concept .gallery ul li {
  padding: 3px;
}
.l_content .p_home_concept .gallery ul li img {
  border-radius: 5px;
}
.l_content .p_home_topics .wrap.row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 1.5vw;
	grid-row-gap: 1.5vw;
  margin-top: 80px;
}
.l_content .p_home_topics .wrap .inner {
  background: #fff;
}
.l_content .p_home_topics .wrap .inner:nth-child(1) {
  margin-left: 0;
}
.l_content .p_home_topics .wrap .inner a .img {
  position: relative;
}
.l_content .p_home_topics .wrap .inner a .img .caption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}
.l_content .p_home_topics .wrap .inner a .img .caption li {
  font-size: 11px;
  line-height: 19px;
  background: #9F6464;
  color: #fff;
  padding: 0 10px;
}
.l_content .p_home_topics .wrap .inner a .img .caption li:nth-child(1) {
  position: relative;
}
.l_content .p_home_topics .wrap .inner a .img .caption li:nth-child(1)::after {
  position: absolute;
  content: '｜';
  top: 0;
  right: -5px;
}
.l_content .p_home_topics .wrap .inner a .note h3 {
  padding: 20px 15px;
}
.l_content .p_home_topics .link {
  margin-top: 50px;
}
.l_content .p_home_coupon .wrap {
  margin-top: 80px;
}
.l_content .p_home_coupon .wrap .row {
  background: #fff;
  margin-top: 20px;
  padding: 30px 25px;
}
.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 #666666 1px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .select {
  background: #e2a95e;
  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: 12px;
  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: 19px;
}
.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 {
  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 #e2a95e 1px;
  border-radius: 5px;
  text-align: center;
  line-height: 42px;
  color: #e2a95e;
  font-size: 14px;
}
.l_content .p_home_coupon .wrap .all .col.note .block:nth-child(1) .select {
  background: #88BFBF;
}
.l_content .p_home_coupon .wrap .all .col.contact ul li a {
  border: solid #88BFBF 1px;
  color: #88BFBF;
}
.l_content .p_home_recruit .wrap {
  margin-top: 80px;
}
.l_content .p_home_recruit .wrap .inner {
  flex: 50;
  margin-left: 4.5vw;
}
.l_content .p_home_recruit .wrap .inner:nth-child(1) {
  margin-left: 0;
}
.l_content .p_home_recruit .wrap .inner h2 {
  font-size: 21px;
}
.l_content .p_home_recruit .wrap .inner .txt {
  margin-top: 20px;
}
.l_content .p_home_recruit .wrap .inner .txt p {
  margin-top: 15px;
}
.l_content .p_home_recruit .wrap .inner .txt p:nth-child(1) {
  margin-top: 0;
}
.l_content .p_home_recruit .wrap .inner .link {
  margin-top: 40px;
}
.l_content .p_home_recruit .wrap .inner .link a {
  margin-left: 0;
}
.l_content .p_home_recruit .wrap .inner.note {
  padding-top: 10px;
}

@media (max-width: 1170px) {
  .l_content .p_home_slider {
    padding: 40px 0;
  }
  .l_content .p_home_slider .wrap {
    padding: 0 3vw;
  }
  .l_content .p_home_slider .vo_slider {
    height: 400px;
  }
  .l_content .p_home_concept .ornament {
    margin-top: -15px;
    margin-bottom: 80px;
  }
  .l_content .p_home_concept .wrap {
    margin-top: 40px;
  }
  .l_content .p_home_concept .wrap .note h1 {
    font-size: 20px;
  }
  .l_content .p_home_concept .wrap .note .txt {
    margin-top: 25px;
  }
  .l_content .p_home_concept .wrap .note .txt p {
    margin-top: 10px;
  }
  .l_content .p_home_concept .wrap .note .link {
    margin-top: 30px;
  }
  .l_content .p_home_concept .gallery {
    margin-top: 60px;
  }
  .l_content .p_home_topics .wrap {
    margin-top: 50px;
  }
  .l_content .p_home_topics .wrap .inner a .note h3 {
    padding: 15px 10px;
  }
  .l_content .p_home_topics .link {
    margin-top: 35px;
  }
  .l_content .p_home_coupon .wrap {
    margin-top: 50px;
  }
  .l_content .p_home_coupon .wrap .row {
    margin-top: 15px;
    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: 21px;
    font-size: 12px;
    line-height: 135%;
  }
  .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 h3 {
    font-size: 16px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .txt {
    font-size: 11px;
    margin-top: 3px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price {
    margin-top: 10px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .price li:nth-child(1) {
    font-size: 12px;
  }
  .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: 75px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact {
    width: 175px;
    margin-left: 20px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact ul li {
    margin-top: 8px;
  }
  .l_content .p_home_coupon .wrap .row .col.contact ul li a {
    line-height: 36px;
    font-size: 13px;
  }
  .l_content .p_home_recruit .wrap {
    margin-top: 50px;
  }
  .l_content .p_home_recruit .wrap .inner {
    margin-left: 3vw;
  }
  .l_content .p_home_recruit .wrap .inner h2 {
    font-size: 18px;
  }
  .l_content .p_home_recruit .wrap .inner .txt {
    margin-top: 20px;
  }
  .l_content .p_home_recruit .wrap .inner .txt p {
    margin-top: 10px;
  }
  .l_content .p_home_recruit .wrap .inner .link {
    margin-top: 30px;
  }
}
@media (max-width: 760px) {
  .l_content .p_home_slider .wrap {
    padding: 0 20px;
  }
  .l_content .p_home_slider .vo_slider {
    height: 350px;
  }
  .l_content .p_home_slider .link_box {
    margin-top: 10px;
  }
  .l_content .p_home_slider .link_box ul {
    flex-wrap: wrap;
    margin: -2px;
  }
  .l_content .p_home_slider .link_box ul li {
    width: 50%;
    padding: 2px;
  }
  .l_content .p_home_concept .ornament {
    margin-top: -15px;
  }
  .l_content .p_home_concept .wrap .note .txt {
    margin-top: 20px;
  }
  .l_content .p_home_concept .gallery {
    margin-top: 60px;
  }
  .l_content .p_home_concept .gallery ul {
    flex-wrap: wrap;
  }
  .l_content .p_home_concept .gallery ul li {
    width: 50%;
  }
	
	.l_content .p_home_topics .wrap.row {
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 25px;
		margin-top: 40px;
	}
  .l_content .p_home_topics .wrap {
    margin-top: 40px;
  }
  .l_content .p_home_topics .wrap .inner:nth-child(1) {
    margin-top: 0;
  }
  .l_content .p_home_topics .wrap .inner a .note h3 {
    padding: 20px 15px;
  }
  .l_content .p_home_topics .link {
    margin-top: 40px;
  }
  .l_content .p_home_coupon .wrap {
    margin-top: 40px;
  }
  .l_content .p_home_coupon .wrap .row {
    padding: 15px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .select {
    width: 60px;
    height: 60px;
    padding-top: 18px;
    font-size: 11px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box {
    margin-left: 12px;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box h3 {
    line-height: 145%;
  }
  .l_content .p_home_coupon .wrap .row .col.note .block:nth-child(1) .box .txt {
    margin-top: 0;
  }
  .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) {
    line-height: 125%;
    text-align: right;
  }
  .l_content .p_home_coupon .wrap .row .col.contact {
    width: 200px;
    margin-top: 15px;
    margin-left: 0;
  }
  .l_content .p_home_coupon .wrap .row .col.contact ul li a {
    font-size: 12px;
  }
  .l_content .p_home_recruit .wrap {
    margin-top: 40px;
  }
  .l_content .p_home_recruit .wrap .inner {
    padding-top: 0;
    margin-top: 20px;
    margin-left: 0;
  }
  .l_content .p_home_recruit .wrap .inner .txt {
    margin-top: 15px;
  }
  .l_content .p_home_recruit .wrap .inner .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 #666666 1px;
  border-bottom: solid #cccccc 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: #666666;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  padding: 0 10px;
}
.l_content .p_topics_archive .inner .info h2 {
  font-size: 20px;
  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: 15px;
}
.l_content .p_topics_archive .inner .row .col.note .mb30 {
  margin-bottom: 20px;
}
.l_content .p_topics_archive .inner .row .col.note a {
  display: inline-block;
  text-decoration: underline;
  color: #888;
}

@media (max-width: 1170px) {
  .l_content .p_topics_archive .inner {
    margin-top: -80px;
    margin-bottom: 80px;
    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: 16px;
  }
  .l_content .p_topics_archive .inner .row {
    margin-top: 30px;
  }
  .l_content .p_topics_archive .inner .row .col.note .small {
    font-size: 12px;
  }
  .l_content .p_topics_archive .inner .row .col.note .medium {
    font-size: 15px;
  }
  .l_content .p_topics_archive .inner .row .col.note .large {
    font-size: 17px;
  }
  .l_content .p_topics_archive .inner .row .col.note .mb10 {
    margin-bottom: 5px;
  }
  .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: 15px;
  }
}
@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 #cccccc 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: #e2a95e;
}
.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: Arial, Helvetica, "sans-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: 40;
}
.l_content .p_menu_pickup .wrap .row .col.note {
  flex: 60;
  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 #cccccc 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: Arial, Helvetica, "sans-serif";
  font-size: 21px;
}
.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: #666666;
}
.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 #cccccc 1px;
  padding: 20px 0;
}
.l_content .p_menu_list .wrap .inner .block ul:nth-child(1) {
  border-top: solid #666666 1px;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
  font-size: 11px;
  line-height: 160%;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(2) {
  flex: 50;
  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: 12px;
  }
  .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) {
    display: block;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
    font-size: 11px;
    margin-left: 0;
  }
  .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 #666666 1px;
    border-bottom: none;
    display: block;
    padding: 0;
  }
  .l_content .p_menu_list .wrap .inner .block ul:last-child {
    border-bottom: solid #666666 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 #666666 1px;
  }
  .l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
    margin-top: 0;
    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 #cccccc 1px;
  margin-bottom: 70px;
  padding-bottom: 70px;
}
.l_content .p_staff_list .wrap .row:nth-child(1) {
  border-top: solid #cccccc 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: 20px;
}
.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: 80px;
}
.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: 135px;
  }
  .l_content .p_staff_list .wrap .row .col.fig img {
    width: 135px;
    height: 135px;
  }
  .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: 65px;
  }
}
@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: 65px;
  }
}
/**
 * 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 #666666 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 #cccccc 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 #666666 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 #cccccc 1px;
  margin-left: 20px;
}
.l_content .p_recruit_req .inner:nth-child(2) ul li:nth-child(2) a,
.l_content .p_recruit_outline .inner:nth-child(2) ul li:nth-child(2) a {
  display: inline-block;
	color: #1F9EB9;
}
.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(183, 138, 93, 0.1);
  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;
    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;
  }
}
