@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: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #333333;
}
img {
  width: 100%;
  height: auto;
  display: block;
}
p, li, td, a {
  line-height: 175%;
  letter-spacing: .075em;
  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: .075em;
  -webkit-font-smoothing: antialiased;
}
a:link {
  color: #333333;
  display: block;
  text-decoration: none;
  -webkit-transition: all .25s;
  transition: all .25s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:visited {
  color: #333333;
}
a:hover {
  cursor: pointer;
  opacity: .75;
}
a:active {
  color: #333333;
}
/* ==========================================================================
   #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: 1250px;
  margin: 0 auto;
  padding: 0 40px;
}
html .section {
  margin-top: 140px;
}
html .row {
  display: flex;
}
html .col.left {
  flex: 27;
}
html .col.right {
  flex: 73;
  margin-left: 5vw;
}
html .link a {
  border: solid #D3D3D3 1px;
  border-radius: 22px;
  color: #D3D3D3;
  font-size: 14px;
  line-height: 44px;
  max-width: 300px;
  text-align: center;
}
html .home_sec_title h2 {
  font-family: Arial, Helvetica, "sans-serif";
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  position: relative;
}
html .home_sec_title h2::after {
  position: absolute;
  content: '';
  left: 10px;
  bottom: -20px;
  width: 80px;
  height: 2px;
  background: #D3D3D3;
}
html .subpage_title {
  border-bottom: solid #333333 1px;
  margin-top: 120px;
  padding-bottom: 25px;
}
html .subpage_title h1 {
  line-height: 1;
}
html .subpage_title h1 span {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 36px;
  font-weight: 600;
  margin-right: 20px;
}
html .subpage_sec_title {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 28px;
  font-weight: 600;
}
html .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  padding-top: 15px;
  margin-bottom: 120px;
}
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 {
  padding-bottom: 200px;
}
@media (max-width: 1170px) {
  html {
    font-size: 13px;
  }
  html .section {
    margin-top: 100px;
  }
  html .col.right {
    margin-left: 2vw;
  }
  html .link a {
    border-radius: 20px;
    font-size: 12px;
    line-height: 40px;
    max-width: 275px;
  }
  html .home_sec_title h2 {
    font-size: 30px;
  }
  html .subpage_title {
    margin-top: 100px;
    padding-bottom: 15px;
  }
  html .subpage_title h1 span {
    font-size: 30px;
  }
  html .subpage_sec_title {
    font-size: 26px;
  }
  html .breadcrumbs {
    padding: 10px 0 0;
    margin-bottom: 80px;
  }
  html .breadcrumbs li {
    font-size: 10px;
    margin-right: 5px;
    padding-right: 14px;
  }
  html .breadcrumbs li a {
    font-size: 10px;
  }
  html .l_content {
    padding-bottom: 120px;
  }
  html .tb_none {
    display: none;
  }
}
@media (max-width: 760px) {
  html .container {
    padding: 0 20px;
  }
  html .section {
    margin-top: 80px;
  }
  html .row {
    display: block;
  }
  html .col.right {
    margin-top: 50px;
    margin-left: 0;
  }
  html .home_sec_title h2 {
    font-size: 24px;
  }
  html .home_sec_title h2::after {
    left: 5px;
    bottom: -15px;
    width: 60px;
  }
  html .subpage_title {
    margin-top: 60px;
    padding-bottom: 10px;
  }
  html .subpage_title h1 span {
    font-size: 26px;
  }
  html .subpage_sec_title {
    font-size: 24px;
  }
  html .breadcrumbs {
    margin-bottom: 60px;
  }
  html .l_content {
    padding-bottom: 80px;
  }
  html .mb_none {
    display: none;
  }
}
/**
 * header css
 * #header
 */
/* ==========================================================================
   #header
========================================================================== */
.l_header .h_logo {
  position: absolute;
  top: 25px;
  left: 40px;
  z-index: 100;
}
.l_header .h_logo a {
  display: inline-block;
}
.l_header .h_logo a img {
  width: 125px;
  height: 78px;
}
.l_header .h_menu {
  position: absolute;
  top: 35px;
  right: 540px;
  z-index: 80;
}
.l_header .h_menu .global_menu ul li {
  margin-left: 35px;
}
.l_header .h_menu .global_menu ul li:first-child {
  margin-left: 0;
}
.l_header .h_menu .global_menu ul li a {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 50px;
}
.l_header .h_contact {
  position: fixed;
  top: 35px;
  right: 40px;
  display: flex;
  z-index: 90;
}
.l_header .h_contact .col {
  margin-left: 10px;
}
.l_header .h_contact .col:first-child {
  margin-left: 0;
}
.l_header .h_contact .col a {
  display: flex;
  align-items: center;
  width: 225px;
  background: #fff;
  border-radius: 25px;
  box-shadow: 0px 0px 15px 3px rgba(211, 211, 211, 0.35);
  line-height: 1;
  padding: 8px 0 5px 25px;
}
.l_header .h_contact .col a .fig svg {
  width: 36px;
  height: 36px;
  fill: #D3D3D3;
}
.l_header .h_contact .col a .txt {
  margin-left: 5px;
}
.l_header .h_contact .col a .txt p {
  font-size: 14px;
  color: #D3D3D3;
  font-weight: 600;
  line-height: 1;
}
.l_header .h_trigger {
  display: none;
}
.page_child .l_header {
  background: #D3D3D3;
  height: 120px;
}
@media (max-width: 1366px) {
  .l_header .h_logo {
    top: 20px;
    left: 30px;
  }
  .l_header .h_logo a img {
    width: 100px;
    height: 62px;
  }
  .l_header .h_menu {
    top: 25px;
    right: 380px;
  }
  .l_header .h_menu .global_menu ul li {
    margin-left: 15px;
  }
  .l_header .h_menu .global_menu ul li a {
    font-size: 14px;
  }
  .l_header .h_contact {
    top: 30px;
    right: 20px;
  }
  .l_header .h_contact .col a {
    width: 165px;
    border-radius: 25px;
    padding: 5px 0 5px 15px;
  }
  .l_header .h_contact .col a .fig svg {
    width: 30px;
    height: 30px;
  }
  .l_header .h_contact .col a .txt {
    margin-left: 5px;
  }
  .l_header .h_contact .col a .txt p {
    font-size: 12px;
  }
  .page_child .l_header {
    height: 100px;
  }
}
@media (max-width: 980px) {
  .l_header .h_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #D3D3D3;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
  }
  .l_header .h_menu.open {
    opacity: 1;
    visibility: visible;
  }
  .l_header .h_menu .global_menu {
    padding: 160px 30px;
  }
  .l_header .h_menu .global_menu ul {
    display: block;
  }
  .l_header .h_menu .global_menu ul li {
    margin-left: 0;
    margin-top: 50px;
  }
  .l_header .h_menu .global_menu ul li:first-child {
    margin-top: 0;
  }
  .l_header .h_menu .global_menu ul li a {
    position: relative;
    font-size: 18px;
    line-height: 1;
    border-bottom: dotted #fff 1px;
    padding-bottom: 15px;
  }
  .l_header .h_menu .global_menu ul li a::after {
    position: absolute;
    content: '>';
    top: 0;
    right: 0;
    font-weight: 400;
  }
  .l_header .h_contact {
    top: 20px;
    right: 30px;
  }
  .l_header .h_contact .col {
    margin-left: 10px;
  }
  .l_header .h_contact .col:first-child {
    margin-left: 0;
  }
  .l_header .h_contact .col a {
    display: flex;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 3px 0 0 10px;
  }
  .l_header .h_contact .col a .fig svg {
    width: 40px;
    height: 40px;
    fill: #D3D3D3;
  }
  .l_header .h_contact .col a .txt {
    display: none;
  }
  .l_header .h_trigger {
    position: fixed;
    top: 20px;
    right: 170px;
    width: 60px;
    height: 60px;
    display: block;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 3px rgba(211, 211, 211, 0.35);
    z-index: 90;
  }
  .l_header .h_trigger.active span:nth-child(1) {
    top: 29px;
    transform: rotate(45deg);
  }
  .l_header .h_trigger.active span:nth-child(2) {
    opacity: 0;
  }
  .l_header .h_trigger.active span:nth-child(3) {
    bottom: 29px;
    transform: rotate(-45deg);
  }
  .l_header .h_trigger span {
    position: absolute;
    left: 18px;
    width: 24px;
    height: 2px;
    background: #D3D3D3;
    transition: all .25s ease;
  }
  .l_header .h_trigger span:nth-child(1) {
    top: 22px;
  }
  .l_header .h_trigger span:nth-child(2) {
    top: 29px;
  }
  .l_header .h_trigger span:nth-child(3) {
    bottom: 22px;
  }
}
@media (max-width: 760px) {
  .l_header .h_logo {
    top: 15px;
    left: 15px;
  }
  .l_header .h_logo a img {
    width: 80px;
    height: 50px;
  }
  .l_header .h_menu .global_menu {
    padding: 120px 20px;
  }
  .l_header .h_menu .global_menu ul li {
    margin-top: 40px;
  }
  .l_header .h_menu .global_menu ul li a {
    font-size: 14px;
  }
  .l_header .h_contact {
    top: 15px;
    right: 15px;
  }
  .l_header .h_contact .col {
    margin-left: 8px;
  }
  .l_header .h_contact .col a {
    width: 50px;
    height: 50px;
    padding: 2px 0 0 9px;
  }
  .l_header .h_contact .col a .fig svg {
    width: 32px;
    height: 32px;
  }
  .l_header .h_trigger {
    top: 15px;
    right: 131px;
    width: 50px;
    height: 50px;
  }
  .l_header .h_trigger.active span:nth-child(1) {
    top: 24px;
  }
  .l_header .h_trigger.active span:nth-child(3) {
    bottom: 24px;
  }
  .l_header .h_trigger span {
    left: 15px;
    width: 20px;
  }
  .l_header .h_trigger span:nth-child(1) {
    top: 19px;
  }
  .l_header .h_trigger span:nth-child(2) {
    top: 24px;
  }
  .l_header .h_trigger span:nth-child(3) {
    bottom: 19px;
  }
  .page_child .l_header {
    height: 80px;
  }
}
/**
 * footer css
 * #footer
 */
/* ==========================================================================
   #footer
========================================================================== */
.l_footer {
  position: relative;
}
.l_footer .container {
  max-width: 1440px;
}
.l_footer .f_conte {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}
.l_footer .f_conte .col.info {
  width: 50%;
  padding: 0 5vw;
}
.l_footer .f_conte .col.info .logo img {
  width: 125px;
  height: 78px;
}
.l_footer .f_conte .col.info .note .name {
  margin-top: 20px;
}
.l_footer .f_conte .col.info .note ul {
  display: flex;
  margin-top: 3px;
}
.l_footer .f_conte .col.info .note ul li {
  line-height: 160%;
}
.l_footer .f_conte .col.info .note ul li:nth-child(1) {
  position: relative;
  width: 90px;
}
.l_footer .f_conte .col.info .note ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_footer .f_conte .col.info .note ul li:nth-child(2) {
  flex: 1;
  margin-left: 5px;
}
.l_footer .f_conte .col.cal {
  width: 50%;
  border-left: solid #D3D3D3 1px;
  padding: 0 40px;
}
.l_footer .f_conte .col.cal .inner {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.l_footer .f_conte .col.cal .inner .f_title {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 18px;
  font-weight: 600;
}
.l_footer .f_conte .col.cal .calendar {
  margin-top: 15px;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper {
  position: relative;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper .cal_ui {
  position: absolute;
  top: 3px;
  right: 0;
  display: flex;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper .cal_ui li {
  width: 25px;
  height: 20px;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper .cal_ui .cal_prev {
  position: relative;
}
.l_footer .f_conte .col.cal .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.cal .calendar .cal_wrapper .cal_ui .cal_to {
  display: none;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper .cal_ui .cal_next {
  position: relative;
  margin-left: 15px;
}
.l_footer .f_conte .col.cal .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.cal .calendar .cal_wrapper #cal_0 p {
  margin-bottom: 5px;
  font-size: 14px;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper #cal_0 .cal_main {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 10px;
  border-top: solid #333333 1px;
  border-left: solid #333333 1px;
}
.l_footer .f_conte .col.cal .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: #333333;
  border-right: solid #333333 1px;
  border-bottom: solid #333333 1px;
  font-size: 14px;
}
.l_footer .f_conte .col.cal .calendar .cal_wrapper #cal_0 .cal_main .sun, .l_footer .f_conte .col.cal .calendar .cal_wrapper #cal_0 .cal_main .holiday {
  background: #D3D3D3;
  color: #fff;
}
.l_footer .f_conte .col.cal .txt {
  font-size: 14px;
}
.l_footer .f_conte .col.cal .txt span {
  color: #D3D3D3;
}
.l_footer .f_copy {
  position: relative;
  border-top: solid #D3D3D3 1px;
  padding: 15px 0;
}
.l_footer .f_copy .sns {
  position: absolute;
  top: 15px;
  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: #D3D3D3;
  width: 20px;
  height: 20px;
}
.l_footer .f_copy .copyright {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 12px;
  letter-spacing: .075em;
  text-align: center;
}
.page_child .l_footer {
  border-top: solid #D3D3D3 2px;
}
@media (max-width: 1170px) {
  .l_footer .f_conte {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .l_footer .f_conte .col.info {
    padding: 0 40px 0 0;
  }
  .l_footer .f_conte .col.info .logo img {
    width: 100px;
    height: 62px;
  }
  .l_footer .f_conte .col.info .note ul li:nth-child(1) {
    width: 80px;
  }
  .l_footer .f_conte .col.cal {
    padding: 0 0 0 40px;
  }
  .l_footer .f_conte .col.cal .inner .f_title {
    font-size: 16px;
  }
  .l_footer .f_conte .col.cal .calendar {
    margin-top: 15px;
  }
  .l_footer .f_conte .col.cal .calendar .cal_wrapper #cal_0 p {
    font-size: 13px;
  }
  .l_footer .f_conte .col.cal .calendar .cal_wrapper #cal_0 .cal_main li {
    font-size: 13px;
  }
  .l_footer .f_conte .col.cal .txt {
    font-size: 13px;
  }
  .l_footer .f_copy .sns {
    right: 40px;
  }
  .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: 11px;
  }
}
@media (max-width: 760px) {
  .l_footer .f_conte {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .l_footer .f_conte .col.info {
    width: 100%;
  }
  .l_footer .f_conte .col.info .note ul li:nth-child(1) {
    width: 76px;
  }
  .l_footer .f_conte .col.cal {
    width: 100%;
    border-left: none;
    border-top: solid #D3D3D3 1px;
    padding: 40px 0 0;
    margin-top: 40px;
  }
  .l_footer .f_conte .col.cal .inner .f_title {
    font-size: 16px;
  }
  .l_footer .f_conte .col.cal .calendar {
    margin-top: 12px;
  }
  .l_footer .f_copy .sns {
    top: 30px;
    right: 50%;
    transform: translateX(50%);
  }
  .l_footer .f_copy .copyright {
    font-size: 11px;
    padding-top: 50px;
  }
}
/**
 * home css
 * #home
 */
/* ==========================================================================
   #home
========================================================================== */
.page_home .l_content {
  padding-bottom: 0;
}
.l_content .p_home_hero {
  background: #D3D3D3;
}
.l_content .p_home_hero .vo_slider {
  position: relative;
  height: 100vh;
}
.l_content .p_home_hero .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 120px;
  padding-left: 20vw;
  opacity: 0;
  transition: all 3s ease;
}
.l_content .p_home_hero .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide.current {
  opacity: 1;
}
.l_content .p_home_hero .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_hero .catch {
  position: absolute;
  left: 6vw;
  bottom: 20vh;
  max-width: 600px;
}
.l_content .p_home_hero .catch h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 90px;
  line-height: 1.15;
  color: #fff;
}
.l_content .p_home_hero .catch .sns ul {
  display: flex;
  margin-top: 60px;
}
.l_content .p_home_hero .catch .sns ul li {
  margin-left: 25px;
}
.l_content .p_home_hero .catch .sns ul li:first-child {
  margin-left: 0;
}
.l_content .p_home_hero .catch .sns ul li a svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.l_content .p_home_concept {
  margin-top: 200px;
}
.l_content .p_home_concept .wrap .col.right h1 {
  font-size: 24px;
}
.l_content .p_home_concept .wrap .col.right .note {
  margin-top: 25px;
}
.l_content .p_home_concept .wrap .col.right .note p {
  margin-top: 10px;
}
.l_content .p_home_concept .wrap .col.right .note p:nth-child(1) {
  margin-top: 0;
}
.l_content .p_home_concept .wrap .col.right .link {
  margin-top: 35px;
}
.l_content .p_home_concept .gallery {
  margin-top: 160px;
}
.l_content .p_home_concept .gallery ul {
  display: flex;
}
.l_content .p_home_concept .gallery ul li {
  width: calc(100%/4);
}
.l_content .p_home_topics {
  background: #D3D3D3;
  padding: 140px 0;
}
.l_content .p_home_topics .wrap .col.left .home_sec_title h2 {
  color: #fff;
}
.l_content .p_home_topics .wrap .col.left .home_sec_title h2::after {
  background: #fff;
}
.l_content .p_home_topics .wrap .col.right .block .inner {
  background: #fff;
  padding: 25px 30px 20px;
  margin-top: 10px;
}
.l_content .p_home_topics .wrap .col.right .block .inner:first-child {
  margin-top: 0;
}
.l_content .p_home_topics .wrap .col.right .block .inner a .caption {
  display: flex;
  align-items: center;
}
.l_content .p_home_topics .wrap .col.right .block .inner a .caption li {
  line-height: 18px;
}
.l_content .p_home_topics .wrap .col.right .block .inner a .caption .cat {
  background: #D3D3D3;
  border-radius: 9px;
  color: #fff;
  font-size: 12px;
  margin-left: 10px;
  padding: 0 10px;
}
.l_content .p_home_topics .wrap .col.right .block .inner a h3 {
  font-size: 16px;
  margin-top: 10px;
}
.l_content .p_home_topics .wrap .col.right .link {
  margin-top: 50px;
}
.l_content .p_home_topics .wrap .col.right .link a {
  border: solid #fff 1px;
  color: #fff;
}
.l_content .p_home_coupon .wrap .col.right .inner {
  border: solid #333333 1px;
  margin-top: 20px;
  padding: 25px;
}
.l_content .p_home_coupon .wrap .col.right .inner:first-child {
  margin-top: 0;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first {
  display: flex;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select {
  width: 76px;
  height: 76px;
  background: #D3D3D3;
  border-radius: 50%;
  padding-top: 24px;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box {
  flex: 1;
  margin-top: 5px;
  margin-left: 20px;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box h3 {
  font-size: 20px;
  line-height: 1.5;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box p {
  font-size: 12px;
  line-height: 1.5;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price {
  align-items: flex-end;
  justify-content: flex-end;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li {
  font-family: Arial, Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li:nth-child(2) {
  color: red;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li:nth-child(2) span {
  font-size: 22px;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second {
  border-top: solid #333333 1px;
  margin-top: 5px;
  padding-top: 12px;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul {
  display: flex;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul li {
  font-size: 13px;
  line-height: 1.5;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul li:nth-child(1) {
  position: relative;
  width: 76px;
  margin-right: 5px;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul li:nth-child(1)::after {
  position: absolute;
  content: '／';
  top: 0;
  right: 0;
}
.l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul li:nth-child(2) {
  flex: 1;
}
.l_content .p_home_coupon .wrap .col.right .inner .contact {
  margin-top: 15px;
}
.l_content .p_home_coupon .wrap .col.right .inner .contact ul li {
  width: 25%;
  margin-left: 8px;
}
.l_content .p_home_coupon .wrap .col.right .inner .contact ul li:nth-child(1) {
  margin-left: 0;
}
.l_content .p_home_coupon .wrap .col.right .inner .contact ul li a {
  border: solid #D3D3D3 1px;
  border-radius: 3px;
  color: #D3D3D3;
  line-height: 36px;
  text-align: center;
  font-size: 14px;
}
.l_content .p_home_coupon .wrap .col.right .inner.all {
  border: solid #8fd0ae 1px;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first {
  display: flex;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .select {
  background: #8fd0ae;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .box h3 {
  color: #8fd0ae;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .box p {
  color: #8fd0ae;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .box .price li {
  color: #8fd0ae;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .box .price li:nth-child(2) {
  color: red;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.first .box .price li:nth-child(2) span {
  font-size: 22px;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.second {
  border-top: solid #8fd0ae 1px;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .article .block.second ul li {
  color: #8fd0ae;
}
.l_content .p_home_coupon .wrap .col.right .inner.all .contact ul li a {
  border: solid #8fd0ae 1px;
  color: #8fd0ae;
}
.l_content .p_home_recruit {
  background: #D3D3D3;
}
.l_content .p_home_recruit .wrap {
  align-items: center;
}
.l_content .p_home_recruit .wrap .col {
  width: 50%;
}
.l_content .p_home_recruit .wrap .col.figure .img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 700px;
}
.l_content .p_home_recruit .wrap .col.article {
  padding: 80px 6vw;
}
.l_content .p_home_recruit .wrap .col.article h2 {
  font-size: 22px;
  color: #fff;
}
.l_content .p_home_recruit .wrap .col.article .txt {
  margin-top: 20px;
  color: #fff;
}
.l_content .p_home_recruit .wrap .col.article .link {
  margin-top: 35px;
}
.l_content .p_home_recruit .wrap .col.article .link a {
  border: solid #fff 1px;
  color: #fff;
}
@media (max-width: 1366px) {
  .l_content .p_home_hero .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide {
    padding-top: 100px;
  }
}
@media (max-width: 1170px) {
  .l_content .p_home_hero .catch h2 {
    font-size: 74px;
  }
  .l_content .p_home_hero .catch .sns ul {
    display: flex;
    margin-top: 50px;
  }
  .l_content .p_home_concept {
    margin-top: 120px;
  }
  .l_content .p_home_concept .wrap .col.right h1 {
    font-size: 20px;
  }
  .l_content .p_home_concept .wrap .col.right .note {
    margin-top: 20px;
  }
  .l_content .p_home_concept .wrap .col.right .link {
    margin-top: 30px;
  }
  .l_content .p_home_concept .gallery {
    margin-top: 100px;
  }
  .l_content .p_home_topics {
    padding: 100px 0;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner {
    padding: 22px 25px 17px;
    margin-top: 8px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a .caption li {
    line-height: 16px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a .caption .cat {
    border-radius: 8px;
    font-size: 10px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a h3 {
    font-size: 14px;
    margin-top: 8px;
  }
  .l_content .p_home_topics .wrap .col.right .link {
    margin-top: 40px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner {
    margin-top: 15px;
    padding: 20px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select {
    width: 66px;
    height: 66px;
    padding-top: 20px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select p {
    font-size: 12px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box {
    margin-left: 15px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box h3 {
    font-size: 18px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box p {
    font-size: 11px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li:nth-child(2) span {
    font-size: 22px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.second ul li:nth-child(1) {
    width: 76px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .contact {
    margin-top: 12px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .contact ul li {
    width: 25%;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .contact ul li a {
    line-height: 32px;
    font-size: 12px;
  }
  .l_content .p_home_recruit .wrap .col.figure .img {
    height: 500px;
  }
  .l_content .p_home_recruit .wrap .col.article {
    padding: 80px 4vw;
  }
  .l_content .p_home_recruit .wrap .col.article h2 {
    font-size: 18px;
  }
  .l_content .p_home_recruit .wrap .col.article .txt {
    margin-top: 20px;
  }
  .l_content .p_home_recruit .wrap .col.article .link {
    margin-top: 35px;
  }
}
@media (max-width: 760px) {
  .l_content .p_home_hero .vo_slider .vo_slider_container .vo_slider_inner .vo_slider_slide {
    padding-top: 80px;
    padding-left: 40px;
  }
  .l_content .p_home_hero .catch {
    left: 0;
    bottom: 15vh;
  }
  .l_content .p_home_hero .catch h2 {
    font-size: 50px;
    padding: 0 20px;
  }
  .l_content .p_home_hero .catch .sns {
    padding: 0 20px;
  }
  .l_content .p_home_hero .catch .sns ul {
    margin-top: 40px;
  }
  .l_content .p_home_hero .catch .sns ul li {
    margin-left: 20px;
  }
  .l_content .p_home_hero .catch .sns ul li a svg {
    width: 26px;
    height: 26px;
  }
  .l_content .p_home_concept {
    margin-top: 80px;
  }
  .l_content .p_home_concept .wrap .col.right h1 {
    font-size: 18px;
  }
  .l_content .p_home_concept .gallery {
    margin-top: 70px;
  }
  .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 {
    padding: 70px 0;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner {
    padding: 22px 15px 15px;
    margin-top: 8px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a .caption li {
    line-height: 14px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a .caption .cat {
    border-radius: 7px;
    font-size: 10px;
  }
  .l_content .p_home_topics .wrap .col.right .block .inner a h3 {
    font-size: 14px;
    margin-top: 5px;
  }
  .l_content .p_home_topics .wrap .col.right .link {
    margin-top: 40px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner {
    margin-top: 15px;
    padding: 15px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select {
    width: 60px;
    height: 60px;
    padding-top: 18px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .select p {
    font-size: 11px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box {
    margin-left: 10px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box h3 {
    font-size: 17px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price {
    margin-top: 10px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li:nth-child(2) {
    text-align: right;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .article .block.first .box .price li:nth-child(2) span {
    font-size: 20px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .contact {
    margin-top: 10px;
  }
  .l_content .p_home_coupon .wrap .col.right .inner .contact ul li {
    width: 80%;
    margin-top: 5px;
    margin-left: 0;
  }
  .l_content .p_home_recruit .wrap .col {
    width: 100%;
  }
  .l_content .p_home_recruit .wrap .col.figure .img {
    height: 275px;
  }
  .l_content .p_home_recruit .wrap .col.article {
    padding: 60px 20px 60px;
  }
  .l_content .p_home_recruit .wrap .col.article .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 #333333 1px;
  border-bottom: solid #D3D3D3 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: #D3D3D3;
  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 #D3D3D3 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: #D3D3D3;
}
.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: 24px;
  }
  .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 #D3D3D3 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: #333333;
}
.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 #D3D3D3 1px;
  padding: 20px 0;
}
.l_content .p_menu_list .wrap .inner .block ul:nth-child(1) {
  border-top: solid #333333 1px;
}
.l_content .p_menu_list .wrap .inner .block ul li:nth-child(1) .min {
  font-size: 12px;
  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;
}
.l_content .p_menu_list .wrap .inner .inner_wrap {
	margin-top: 50px;
}
.l_content .p_menu_list .wrap .inner .inner_wrap.first {
	margin-top: 40px;
}
.l_content .p_menu_list .wrap .inner .inner_wrap .cat_title {
	line-height: 1;
	font-size: 115%;
	font-weight: 700;
}
@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;
  }
	.l_content .p_menu_list .wrap .inner .inner_wrap {
		margin-top: 40px;
	}
	.l_content .p_menu_list .wrap .inner .inner_wrap.first {
		margin-top: 30px;
	}
}
@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 #333333 1px;
    border-bottom: none;
    display: block;
    padding: 0;
  }
  .l_content .p_menu_list .wrap .inner .block ul:last-child {
    border-bottom: solid #333333 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 #333333 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;
  }
	.l_content .p_menu_list .wrap .inner .inner_wrap {
		margin-top: 35px;
	}
	.l_content .p_menu_list .wrap .inner .inner_wrap.first {
		margin-top: 25px;
	}
}
/**
 * staff css
 * #staff
 */
/* ==========================================================================
   #content
========================================================================== */
.l_content .p_staff_list .wrap .row {
  border-bottom: solid #D3D3D3 1px;
  margin-bottom: 70px;
  padding-bottom: 70px;
}
.l_content .p_staff_list .wrap .row:nth-child(1) {
  border-top: solid #D3D3D3 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: 130px;
}
.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: 115px;
  }
}
@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: 125px;
  }
}
/**
 * recruit css
 * #recruit
 */
/* ==========================================================================
   #recruit
========================================================================== */
.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 #333333 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 #D3D3D3 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 #333333 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 #D3D3D3 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: #D3D3D3;
  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;
  }
}