@charset "UTF-8";
/**
 * setting css
 * #reset
 * #scss
 * #fonts
 * #base
 * #animation
 */
/* ==========================================================================
   #reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;700&display=swap");
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;
}

/* ==========================================================================
   #fonts
========================================================================== */
/* ==========================================================================
   #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: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #333333;
}

_:-ms-input-placeholder, :root body {
  font-family: Meiryo, sans-serif;
}

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

p, li, td, a, h1, h2, h3, h4, h5, h6 {
  line-height: 1.65;
  letter-spacing: .1em;
  font-weight: 400;
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  -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;
}

/* ==========================================================================
   #font size
========================================================================== */
html {
  font-size: 14px;
}

@media (max-width: 599px) {
  html {
    font-size: 13px;
  }
}
/* ==========================================================================
   #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
========================================================================== */
.subpage {
  margin-top: 150px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 60px;
}

.container_wide {
  padding: 0 10vw;
}

.section {
  margin-top: 160px;
}

.section_subpage {
  margin-top: 120px;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.common_title {
  position: relative;
  margin-bottom: 70px;
}
.common_title p {
  font-size: .857rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.common_title h2 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
}
.common_title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #333333;
}
.common_title.white p, .common_title.white h2 {
  color: #fff;
}
.common_title.white::before {
  background: #fff;
}

.common_link {
  margin-top: 50px;
}
.common_link a {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: block;
  width: 225px;
  border: solid #2CAFAD 1px;
  border-radius: 25px;
  background: #2CAFAD;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin: 0 auto;
  padding: 15px 0 13px;
  text-align: center;
}
.common_link a:hover {
  background: none;
  color: #2CAFAD;
}

.common_post {
  display: flex;
  flex-wrap: wrap;
  margin: -12px;
}
.common_post .col {
  width: 25%;
  margin-top: 20px;
  padding: 12px;
}
.common_post .col .figure a span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 62.5%;
}
.common_post .col .term {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}
.common_post .col .term li {
  font-size: .85rem;
  letter-spacing: 0;
  color: #B3B3B3;
}
.common_post .col .term .link a {
  font-size: .85rem;
  letter-spacing: 0;
  color: #2CAFAD;
}
.common_post .col .post-categories {
  display: flex;
  flex-wrap: wrap;
  margin-top: 5px;
}
.common_post .col .post-categories li {
  margin-right: 5px;
}
.common_post .col .post-categories li:last-child {
  margin-right: 0;
}
.common_post .col .post-categories li a {
  font-size: .85rem;
  letter-spacing: 0;
  color: #B3B3B3;
}
.common_post .col h3 {
  margin-top: 5px;
}
.common_post .col h3 a {
  font-size: .9rem;
  line-height: 1.65;
}
.common_post.vertical .col .figure a span {
  padding-top: 140%;
}

.common_category_list {
  margin-bottom: 60px;
}
.common_category_list ul {
  display: flex;
  justify-content: center;
}
.common_category_list ul li {
  position: relative;
  margin-left: 25px;
}
.common_category_list ul li:nth-child(1) {
  margin-left: 0;
}
.common_category_list ul li:nth-child(1)::before {
  display: none;
}
.common_category_list ul li::before {
  position: absolute;
  content: "／";
  top: 1px;
  left: -20px;
  font-size: .9rem;
}
.common_category_list ul li a {
  font-size: .95rem;
  letter-spacing: .05em;
}

.common_pager {
  margin-top: 80px;
}
.common_pager .pg_inner {
  display: flex;
  justify-content: center;
}
.common_pager .pg_inner .page-numbers {
  width: 34px;
  line-height: 34px;
  border: solid #E6E6E6 1px;
  font-size: .9rem;
  margin-left: 10px;
  text-align: center;
}
.common_pager .pg_inner .page-numbers:nth-child(1) {
  margin-left: 0;
}
.common_pager .pg_inner .page-numbers.current {
  background: #2CAFAD;
  color: #fff;
}

.subpage_header {
  padding: 0 60px;
}
.subpage_header .title p {
  font-size: .85rem;
  font-weight: 700;
  text-align: center;
}
.subpage_header .title h1 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1;
  margin-top: 10px;
  text-align: center;
}
.subpage_header .breadcrumb {
  border-top: solid #B3B3B3 1px;
  margin-top: 30px;
  padding-top: 15px;
}
.subpage_header .breadcrumb p span, .subpage_header .breadcrumb p a {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #B3B3B3;
  font-size: .85rem;
  letter-spacing: .05em;
}
.subpage_header .breadcrumb p a {
  display: inline-block;
}

@media (max-width: 1366px) {
  .container_wide {
    padding: 0 60px;
  }

  .section {
    margin-top: 120px;
  }

  .section_subpage {
    margin-top: 80px;
  }
}
@media (max-width: 920px) {
  .common_post .col {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .subpage {
    margin-top: 140px;
  }

  .container {
    padding: 0 25px;
  }

  .container_wide {
    padding: 0 25px;
  }

  .section {
    margin-top: 80px;
  }

  .section_subpage {
    margin-top: 60px;
  }

  .row {
    display: block;
  }

  .common_title {
    margin-bottom: 50px;
  }
  .common_title::before {
    bottom: -12px;
    width: 26px;
    height: 2px;
  }

  .common_link {
    margin-top: 40px;
  }
  .common_link a {
    width: 200px;
    font-size: .9rem;
    padding: 12px 0 11px;
  }

  .common_post {
    margin: -8px;
  }
  .common_post .col {
    margin-top: 15px;
    padding: 8px;
  }
  .common_post .col .term {
    margin-top: 10px;
  }
  .common_post .col .term li {
    font-size: 10px;
  }
  .common_post .col .term .link a {
    font-size: 10px;
  }
  .common_post .col .category li a {
    font-size: 10px;
  }
  .common_post .col h3 {
    margin-top: 3px;
  }

  .common_category_list {
    margin-bottom: 40px;
  }
  .common_category_list ul li {
    margin-left: 25px;
  }
  .common_category_list ul li::before {
    left: -18px;
    font-size: .8rem;
  }
  .common_category_list ul li a {
    font-size: .85rem;
  }

  .common_pager {
    margin-top: 50px;
  }
  .common_pager .pg_inner .page-numbers {
    width: 30px;
    line-height: 30px;
    font-size: .85rem;
    margin-left: 8px;
  }

  .subpage_header {
    padding: 0 25px;
  }
  .subpage_header .breadcrumb {
    margin-top: 30px;
    padding-top: 10px;
  }
  .subpage_header .breadcrumb p span, .subpage_header .breadcrumb p a {
    font-size: 10px;
  }
}
/**
 * header css
 * #header
 */
/* ==========================================================================
   #header
========================================================================== */
.l_header {
  position: fixed;
  top: 0;
  left: 0;
  padding: 35px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  width: 100%;
  z-index: 100;
  transition: padding .5s ease;
}
.l_header.is_fixed {
  padding: 15px 40px;
  border-bottom: solid #f5f5f5 1px;
}
.l_header.is_fixed .h_logo a img {
  width: 100px;
}

.l_sns {
  position: fixed;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
.l_sns ul:nth-child(1) {
  margin-top: 0;
}
.l_sns ul li {
  margin-top: 25px;
}
.l_sns ul li a {
  width: 18px;
  height: 18px;
}

.h_logo {
  flex-grow: 2;
}
.h_logo a {
  display: inline-block;
}
.h_logo a img {
  width: 125px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all .5s ease;
}
.h_logo.is_opening_logo a img {
  transform: translateY(0);
  opacity: 1;
}

.h_nav {
  display: flex;
  align-items: center;
}
.h_nav .global_nav div ul {
  display: flex;
  transform: translateY(-20px);
  opacity: 0;
  transition: all .5s .25s ease;
}
.h_nav .global_nav div ul li a {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: block;
  font-size: .925rem;
  letter-spacing: .075em;
  padding: 8px;
}
.h_nav .contact {
  display: flex;
  margin-left: 10px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all .5s .5s ease;
}
.h_nav .contact .col {
  margin-left: 8px;
}
.h_nav .contact .col a {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 100%;
}
.h_nav .contact .col a img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.h_nav .contact .col.trigger {
  display: none;
}
.h_nav .contact .col.tel a {
  background: #2CAFAD;
}
.h_nav .contact .col.line a {
  background: #B3B3B3;
}
.h_nav.is_opening_nav .global_nav div ul {
  transform: translateY(0);
  opacity: 1;
}
.h_nav.is_opening_nav .contact {
  transform: translateY(0);
  opacity: 1;
}

.btn_entry {
  position: fixed;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  z-index: 90;
}
.btn_entry a {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #fff;
  line-height: 1;
  border-radius: 30px;
  background: #71bdc7;
  font-size: 1.1rem;
  padding: 20px 60px 18px;
}

@media (max-width: 1366px) {
  .l_header {
    padding: 30px 30px;
  }
  .l_header.is_fixed {
    padding: 15px 25px;
    border-bottom: solid #f5f5f5 1px;
  }
  .l_header.is_fixed .h_logo a img {
    width: 90px;
  }

  .l_sns {
    right: 20px;
  }

  .h_logo a img {
    width: 100px;
  }

  .h_nav .global_nav div ul li a {
    padding: 8px;
    font-size: .85rem;
  }

  .btn_entry {
    bottom: 35px;
  }
  .btn_entry a {
    border-radius: 30px;
    font-size: 1rem;
    padding: 18px 60px 16px;
  }
}
@media (max-width: 920px) {
  .h_nav .global_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 275px;
    height: 100vh;
    background: #fff;
    padding: 15vh 40px 40px;
    transform: translateX(275px);
    transition: transform .5s ease;
  }
  .h_nav .global_nav div ul {
    display: inherit;
  }
  .h_nav .global_nav div ul li {
    margin-top: 5px;
    transform: translateX(20px);
    opacity: 0;
  }
  .h_nav .global_nav div ul li a {
    padding: 5px;
    font-size: .925rem;
  }
  .h_nav .global_nav.is_show {
    transform: translateX(0);
  }
  .h_nav .global_nav.is_show div ul li {
    transform: translateX(0);
    opacity: 1;
    transition: all .5s ease;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(1) {
    transition-delay: 400ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(2) {
    transition-delay: 450ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(3) {
    transition-delay: 500ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(4) {
    transition-delay: 550ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(5) {
    transition-delay: 600ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(6) {
    transition-delay: 650ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(7) {
    transition-delay: 700ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(8) {
    transition-delay: 750ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(9) {
    transition-delay: 800ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(10) {
    transition-delay: 850ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(11) {
    transition-delay: 900ms;
  }
  .h_nav .global_nav.is_show div ul li:nth-child(12) {
    transition-delay: 950ms;
  }
  .h_nav .contact .col.trigger {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    background: #fff;
    margin-right: 10px;
  }
  .h_nav .contact .col.trigger span {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 1px;
    background: #333333;
    transition: all .5s ease;
  }
  .h_nav .contact .col.trigger span:nth-child(1) {
    top: 13px;
  }
  .h_nav .contact .col.trigger span:nth-child(2) {
    top: 20px;
  }
  .h_nav .contact .col.trigger span:nth-child(3) {
    bottom: 12px;
  }
  .h_nav .contact .col.trigger.is_cross span:nth-child(1) {
    top: 20px;
    transform: rotate(45deg);
  }
  .h_nav .contact .col.trigger.is_cross span:nth-child(2) {
    opacity: 0;
  }
  .h_nav .contact .col.trigger.is_cross span:nth-child(3) {
    bottom: 19px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 599px) {
  .l_header {
    padding: 35px 20px 20px;
  }
  .l_header.is_fixed {
    padding: 12px 15px;
  }
  .l_header.is_fixed .h_logo a img {
    width: 80px;
    margin-top: 5px;
  }

  .l_sns {
    position: absolute;
    top: 125px;
    right: 50px;
    transform: translateY(0);
    mix-blend-mode: multiply;
    z-index: 90;
  }
  .l_sns ul {
    display: flex;
  }
  .l_sns ul li {
    margin-top: 0;
    margin-left: 15px;
  }
  .l_sns ul li a {
    width: 16px;
    height: 16px;
  }

  .h_logo a img {
    width: 90px;
  }

  .h_nav .global_nav {
    width: 250px;
    padding: 15vh 30px 30px;
    transform: translateX(250px);
  }
  .h_nav .global_nav div ul li {
    margin-top: 2px;
  }
  .h_nav .global_nav div ul li a {
    padding: 5px;
  }
  .h_nav .contact .col.trigger {
    width: 36px;
    height: 36px;
    margin-right: 0;
  }
  .h_nav .contact .col.trigger span {
    left: 9px;
    width: 18px;
  }
  .h_nav .contact .col.trigger span:nth-child(1) {
    top: 13px;
  }
  .h_nav .contact .col.trigger span:nth-child(2) {
    top: 18px;
  }
  .h_nav .contact .col.trigger span:nth-child(3) {
    bottom: 12px;
  }
  .h_nav .contact .col.trigger.is_cross span:nth-child(1) {
    top: 18px;
  }
  .h_nav .contact .col.trigger.is_cross span:nth-child(3) {
    bottom: 17px;
  }
  .h_nav .contact .col a {
    width: 36px;
    height: 36px;
  }
  .h_nav .contact .col a img {
    width: 20px;
    height: 20px;
  }

  .btn_entry {
    bottom: 35px;
  }
  .btn_entry a {
    border-radius: 30px;
    font-size: 1rem;
    padding: 16px 40px 14px;
  }
}
/**
 * footer css
 * #footer
 */
/* ==========================================================================
   #footer
========================================================================== */
.l_footer {
  background: #E6E6E6;
  margin-top: 160px;
  padding: 60px 100px 20px;
}
.l_footer .wrapper {
  background: #fff;
}

.f_content .col {
  width: 33.3333%;
  padding: 80px 40px;
  border-left: solid #E6E6E6 1px;
}
.f_content .col:nth-child(1) {
  border-left: none;
}
.f_content .col:nth-child(4) {
  width: 100%;
  border-top: solid #E6E6E6 1px;
  border-left: none;
  padding: 80px 0;
}
.f_content .col:nth-child(4) img {
  width: 115px;
  margin: 0 auto;
}
.f_content .col .f_title {
  position: relative;
  margin-bottom: 40px;
}
.f_content .col .f_title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #333333;
}
.f_content .col .f_title h2 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
}
.f_content .col .note.block_info p {
  font-size: .95rem;
  text-align: center;
}
.f_content .col .note.block_info p a {
  display: inline-block;
  text-decoration: underline;
}
.f_content .col .note.block_info .map {
  margin-top: 10px;
}
.f_content .col .note.block_info .sns {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.f_content .col .note.block_info .sns li {
  margin-left: 15px;
}
.f_content .col .note.block_info .sns li:nth-child(1) {
  margin-left: 0;
}
.f_content .col .note.block_info .sns li a img {
  width: 20px;
  height: 20px;
}
.f_content .col .note.block_contact .tel {
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid #B3B3B3 1px;
  margin: 0 auto;
  padding: 8px 0;
  width: 80%;
}
.f_content .col .note.block_contact .tel img {
  width: 20px;
  height: 20px;
}
.f_content .col .note.block_contact .tel a {
  font-size: 1.1rem;
  letter-spacing: .05em;
}
.f_content .col .note.block_contact .notice {
  font-size: .85rem;
  margin-top: 15px;
  text-align: center;
}

.f_copy {
  margin-top: 20px;
}
.f_copy p {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: .85rem;
  letter-spacing: .05em;
  text-align: center;
}

.calendar {
  max-width: 400px;
  margin: 0 auto;
}
.calendar .xo-event-calendar table.xo-month .month-header > span {
  font-size: .9rem;
}
.calendar .xo-event-calendar table.xo-month button > span {
  font-size: .9rem;
}
.calendar .xo-event-calendar table.xo-month > thead th.sunday,
.calendar .xo-event-calendar table.xo-month > thead th.saturday {
  color: #333333;
}
.calendar .xo-event-calendar table.xo-month > thead th {
  font-weight: 400;
  font-size: .85rem;
  padding: 8px 0;
  background: #f5f5f5;
}
.calendar .xo-event-calendar table.xo-month .month-dayname td div {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: .8rem;
  letter-spacing: .05em;
}
.calendar .xo-event-calendar p.holiday-title {
  font-size: .8rem;
}
.calendar .xo-event-calendar p.holiday-title span {
  border: none;
  padding: 0 0 0 15px;
}
.calendar .xo-event-calendar table.xo-month .month-dayname td div.today {
  color: #2CAFAD;
}
.calendar .xo-event-calendar table.xo-month .month-dayname-space {
  height: 10px;
}

@media (max-width: 1366px) {
  .l_footer {
    margin-top: 140px;
    padding: 50px 60px 20px;
  }

  .f_content .col {
    width: 50%;
    padding: 50px 20px;
  }
  .f_content .col:nth-child(3) {
    border-top: solid #E6E6E6 1px;
  }
  .f_content .col:nth-child(4) {
    position: relative;
    width: 50%;
    border-left: solid #E6E6E6 1px;
    padding: 50px 20px;
  }
  .f_content .col:nth-child(4) img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
  }
}
@media (max-width: 920px) {
  .f_content .col {
    width: 100%;
    padding: 60px 40px;
  }
  .f_content .col:nth-child(2) {
    border-top: solid #E6E6E6 1px;
  }
  .f_content .col:nth-child(2) {
    border-left: none;
  }
  .f_content .col:nth-child(3) {
    border-left: none;
  }
  .f_content .col:nth-child(4) {
    width: 100%;
    border-left: none;
    padding: 120px 40px;
  }
  .f_content .col:nth-child(4) img {
    position: relative;
    top: auto;
    left: auto;
    transform: translate(0);
    width: 100px;
  }
}
@media (max-width: 599px) {
  .l_footer {
    margin-top: 80px;
    padding: 35px 25px 15px;
  }

  .f_content .col {
    padding: 50px 20px;
  }
  .f_content .col:nth-child(4) {
    padding: 100px 20px;
  }
  .f_content .col:nth-child(4) img {
    width: 90px;
  }
  .f_content .col .note.block_info .sns li a img {
    width: 16px;
    height: 16px;
  }

  .f_copy {
    margin-top: 15px;
  }
  .f_copy p {
    font-size: 10px;
  }
}
/**
 * home css
 * #home
 */
/* ==========================================================================
   #home
========================================================================== */
.p_home_hero {
  width: 100vw;
  height: 100vh;
  padding: 120px 100px 60px;
}
.p_home_hero .swiper-container {
  border: solid #B3B3B3 1px;
  height: 100%;
  padding: 10px;
}
.p_home_hero .swiper-container .swiper-wrapper {
  overflow: hidden;
}
.p_home_hero .swiper-container .swiper-wrapper .swiper-slide .figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100%;
  height: 100%;
}
.p_home_hero .swiper-container .swiper-pagination-bullets {
  bottom: 50px;
}
.p_home_hero .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none;
  margin: 0 15px;
}
.p_home_hero .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
  color: #2CAFAD;
}

.p_home_concept {
  padding-top: 80px;
}
.p_home_concept .block_head .container_wide .figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: relative;
  height: 500px;
}
.p_home_concept .block_head .container_wide .figure .common_title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
.p_home_concept .block_body {
  margin-top: 100px;
}
.p_home_concept .block_body .container .box_note {
  margin-bottom: 80px;
}
.p_home_concept .block_body .container .box_note .note h1, .p_home_concept .block_body .container .box_note .note h3 {
  font-size: 1.5rem;
  letter-spacing: .3em;
  text-align: center;
}
.p_home_concept .block_body .container .box_note .note p {
  line-height: 2;
  letter-spacing: .2em;
  margin-top: 40px;
  text-align: center;
}

.p_home_topics .container .block_body .box_post .col {
  background: #f5f5f5;
  margin-top: 5px;
  padding: 20px 30px;
}
.p_home_topics .container .block_body .box_post .col:nth-child(1) {
  margin-top: 0;
}
.p_home_topics .container .block_body .box_post .col .term {
  display: flex;
  justify-content: space-between;
}
.p_home_topics .container .block_body .box_post .col .term li {
  font-size: .85rem;
  letter-spacing: 0;
  color: #B3B3B3;
}
.p_home_topics .container .block_body .box_post .col .term .link a {
  font-size: .85rem;
  letter-spacing: 0;
  color: #2CAFAD;
}
.p_home_topics .container .block_body .box_post .col h3 {
  margin-top: 3px;
}
.p_home_topics .container .block_body .box_post .col .post-categories {
  display: flex;
  margin-top: 10px;
}
.p_home_topics .container .block_body .box_post .col .post-categories li {
  margin-left: 10px;
}
.p_home_topics .container .block_body .box_post .col .post-categories li:nth-child(1) {
  margin-left: 0;
}
.p_home_topics .container .block_body .box_post .col .post-categories li a {
  font-size: .85rem;
  letter-spacing: 0;
  color: #B3B3B3;
}

.p_home_common .container_wide .wrapper {
  align-items: center;
}
.p_home_common .container_wide .wrapper .col {
  width: 50%;
}
.p_home_common .container_wide .wrapper .col .figure span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 115%;
}
.p_home_common .container_wide .wrapper .col .note p {
  text-align: center;
}
.p_home_common .container_wide .wrapper .col.box_note {
  padding: 20px 20px 20px 80px;
}

.p_home_style .container_wide .wrapper .col .swiper-container .swiper-wrapper .swiper-slide .figure {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 115%;
}
.p_home_style .container_wide .wrapper .col .swiper-container .swiper-pagination-bullets {
  bottom: 40px;
}
.p_home_style .container_wide .wrapper .col .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
  background: none;
  margin: 0 15px;
  font-size: 1em;
}
.p_home_style .container_wide .wrapper .col .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet-active {
  color: #2CAFAD;
}

.p_home_instagram .container_wide .wrapper {
  flex-direction: row-reverse;
}
.p_home_instagram .container_wide .wrapper .col .note .insta_gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}
.p_home_instagram .container_wide .wrapper .col .note .insta_gallery ul li {
  width: 20%;
  padding: 3px;
}
.p_home_instagram .container_wide .wrapper .col.box_note {
  padding: 20px 80px 20px 20px;
}

.p_home_movie .container_wide .wrapper .col .note .movie_gallery ul {
  display: flex;
  margin: -5px;
}
.p_home_movie .container_wide .wrapper .col .note .movie_gallery ul li {
  width: 33.3333%;
  padding: 5px;
}
.p_home_movie .container_wide .wrapper .col .note .movie_gallery ul li div {
  position: relative;
  padding-top: 62.5%;
}
.p_home_movie .container_wide .wrapper .col .note .movie_gallery ul li div iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p_home_recruit {
  padding-top: 160px;
}

@media (max-width: 1366px) {
  .p_home_hero {
    padding: 100px 60px 50px;
  }
  .p_home_hero .swiper-container .swiper-pagination-bullets {
    bottom: 40px;
  }

  .p_home_concept .block_head .container_wide .figure {
    height: 350px;
  }

  .p_home_recruit {
    padding-top: 120px;
  }
}
@media (max-width: 920px) {
  .p_home_common .container_wide .wrapper {
    align-items: center;
  }
  .p_home_common .container_wide .wrapper .col {
    width: 100%;
  }
  .p_home_common .container_wide .wrapper .col .figure span {
    padding-top: 100%;
  }
  .p_home_common .container_wide .wrapper .col.box_note {
    padding: 80px 40px 100px;
  }

  .p_home_style .container_wide .wrapper .col .swiper-container .swiper-wrapper .swiper-slide .figure {
    padding-top: 100%;
  }

  .p_home_movie .container_wide .wrapper .col.box_note {
    padding: 80px 40px 0;
  }
}
@media (max-width: 599px) {
  .p_home_hero {
    padding: 100px 20px 40px;
    height: 80vh;
  }
  .p_home_hero .swiper-container {
    padding: 8px;
  }
  .p_home_hero .swiper-container .swiper-pagination-bullets {
    bottom: 24px;
  }
  .p_home_hero .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 12px;
    font-size: 12px;
  }

  .p_home_concept {
    padding-top: 30px;
  }
  .p_home_concept .block_head .container_wide .figure {
    height: 225px;
  }
  .p_home_concept .block_body {
    margin-top: 45px;
  }
  .p_home_concept .block_body .container .box_note {
    margin-bottom: 50px;
  }
  .p_home_concept .block_body .container .box_note .note h1, .p_home_concept .block_body .container .box_note .note h3 {
    font-size: 1.4rem;
  }
  .p_home_concept .block_body .container .box_note .note p {
    margin-top: 20px;
  }

  .p_home_topics .container .block_body .box_post .col {
    padding: 20px 20px;
  }
  .p_home_topics .container .block_body .box_post .col .term {
    display: flex;
    justify-content: space-between;
  }
  .p_home_topics .container .block_body .box_post .col .term li {
    font-size: 10px;
  }
  .p_home_topics .container .block_body .box_post .col .term .link a {
    font-size: 10px;
  }
  .p_home_topics .container .block_body .box_post .col h3 {
    margin-top: 3px;
  }
  .p_home_topics .container .block_body .box_post .col .cat {
    margin-top: 5px;
  }
  .p_home_topics .container .block_body .box_post .col .cat li a {
    font-size: 10px;
  }

  .p_home_common .container_wide .wrapper .col.box_note {
    padding: 60px 20px 80px;
  }

  .p_home_style .container_wide .wrapper .col .swiper-container .swiper-pagination-bullets {
    bottom: 24px;
  }
  .p_home_style .container_wide .wrapper .col .swiper-container .swiper-pagination-bullets .swiper-pagination-bullet {
    font-size: 12px;
    margin: 0 12px;
  }

  .p_home_instagram .container_wide .wrapper .col .note .insta_gallery ul li {
    width: 33.3333%;
  }
  .p_home_instagram .container_wide .wrapper .col .note .insta_gallery ul li:last-child {
    display: none;
  }

  .p_home_movie .container_wide .wrapper .col .note .movie_gallery ul {
    flex-wrap: wrap;
  }
  .p_home_movie .container_wide .wrapper .col .note .movie_gallery ul li {
    width: 50%;
  }
  .p_home_movie .container_wide .wrapper .col.box_note {
    padding: 60px 20px 0;
  }

  .p_home_recruit {
    padding-top: 80px;
  }
}
/**
 * concept css
 * #concept
 */
/* ==========================================================================
   #concept
========================================================================== */
.p_concept_content .container .wrap .block {
  align-items: center;
}
.p_concept_content .container .wrap .block:nth-child(2n) {
  flex-direction: row-reverse;
}
.p_concept_content .container .wrap .block:nth-child(2n) .col .note {
  padding: 40px 80px 40px 40px;
}
.p_concept_content .container .wrap .block .col {
  width: 50%;
}
.p_concept_content .container .wrap .block .col .figure span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 72.5%;
}
.p_concept_content .container .wrap .block .col .note {
  padding: 40px 40px 40px 80px;
}

@media (max-width: 920px) {
  .p_concept_content .container .wrap .block:nth-child(2n) .col .note {
    padding: 20px 50px 20px 20px;
  }
  .p_concept_content .container .wrap .block .col .note {
    padding: 20px 20px 20px 50px;
  }
}
@media (max-width: 599px) {
  .p_concept_content .container .wrap .block:nth-child(2n) .col .note {
    padding: 40px 10px 0;
  }
  .p_concept_content .container .wrap .block .col {
    width: 100%;
  }
  .p_concept_content .container .wrap .block .col .note {
    padding: 40px 10px 60px;
  }
}
/**
 * salon css
 * #salon
 */
/* ==========================================================================
   #salon
========================================================================== */
.p_salon_gallery .block .col {
  width: 50%;
}
.p_salon_gallery .block .col span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 62.5%;
}
.p_salon_gallery .block .col:nth-child(3), .p_salon_gallery .block .col:nth-child(4), .p_salon_gallery .block .col:nth-child(5) {
  width: 33.3333%;
}

.p_salon_info .container {
  max-width: 780px;
}
.p_salon_info .container .block_logo img {
  width: 125px;
  margin: 0 auto;
}
.p_salon_info .container .block_contact {
  margin-top: 120px;
}
.p_salon_info .container .block_contact .tel a {
  display: flex;
  align-items: center;
  width: 100%;
}
.p_salon_info .container .block_contact .tel a span {
  text-align: center;
  letter-spacing: .05em;
  padding: 10px 0;
  height: 100%;
}
.p_salon_info .container .block_contact .tel a span:nth-child(1) {
  width: 40%;
  background: #333333;
  color: #fff;
}
.p_salon_info .container .block_contact .tel a span:nth-child(2) {
  flex: 1;
  background: #f2f2f2;
  font-size: 1.15rem;
}
.p_salon_info .container .block_contact .note {
  margin-top: 20px;
}
.p_salon_info .container .block_contact .note p {
  font-size: .9rem;
}
.p_salon_info .container .block_contact .credit {
  margin-top: 20px;
}
.p_salon_info .container .block_contact .credit ul {
  display: flex;
  flex-wrap: wrap;
  margin: -2px;
}
.p_salon_info .container .block_contact .credit ul li {
  width: 12.5%;
  padding: 2px;
}
.p_salon_info .container .block_info {
  margin-top: 80px;
}
.p_salon_info .container .block_info ul {
  display: flex;
  border-top: solid #B3B3B3 1px;
  padding: 20px 0;
}
.p_salon_info .container .block_info ul:last-child {
  border-bottom: solid #B3B3B3 1px;
}
.p_salon_info .container .block_info ul li:nth-child(1) {
  width: 20%;
}
.p_salon_info .container .block_info ul li:nth-child(2) {
  flex: 1;
}

.p_salon_map iframe {
  width: 100% !important;
  height: 550px !important;
  vertical-align: bottom;
}

@media (max-width: 920px) {
  .p_salon_gallery .block.row {
    display: flex;
  }
}
@media (max-width: 599px) {
  .p_salon_gallery .block.row {
    display: block;
  }
  .p_salon_gallery .block .col {
    width: 100%;
  }
  .p_salon_gallery .block .col:nth-child(3), .p_salon_gallery .block .col:nth-child(4), .p_salon_gallery .block .col:nth-child(5) {
    width: 100%;
  }

  .p_salon_info .container .block_logo img {
    width: 100px;
  }
  .p_salon_info .container .block_contact {
    margin-top: 60px;
  }
  .p_salon_info .container .block_contact .tel a span {
    font-size: .9rem;
    height: 100%;
  }
  .p_salon_info .container .block_contact .tel a span:nth-child(1) {
    width: 42.5%;
  }
  .p_salon_info .container .block_contact .tel a span:nth-child(2) {
    font-size: 1rem;
  }
  .p_salon_info .container .block_contact .note {
    margin-top: 20px;
  }
  .p_salon_info .container .block_contact .credit {
    margin-top: 20px;
  }
  .p_salon_info .container .block_contact .credit ul li {
    width: 20%;
  }
  .p_salon_info .container .block_info {
    margin-top: 60px;
  }
  .p_salon_info .container .block_info ul {
    display: inherit;
    padding: 20px 0;
  }
  .p_salon_info .container .block_info ul li:nth-child(1) {
    width: 25%;
    font-size: .85rem;
    font-weight: 600;
  }
  .p_salon_info .container .block_info ul li:nth-child(2) {
    margin-top: 3px;
  }

  .p_salon_map iframe {
    height: 450px !important;
  }
}
/**
 * menu css
 * #menu
 */
/* ==========================================================================
   #menu
========================================================================== */
.p_menu_archive .block {
  margin-top: 80px;
}
.p_menu_archive .block:first-child {
  margin-top: 0;
}
.p_menu_archive .block .menu_sec_title h2 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .025em;
}
.p_menu_archive .block .menu_sec_title .note {
  font-size: .8rem;
  margin-top: 5px;
}
.p_menu_archive .block .list {
  margin-top: 25px;
}
.p_menu_archive .block .list .col {
  display: flex;
  border-bottom: solid #B3B3B3 1px;
}
.p_menu_archive .block .list .col:first-child {
  border-top: solid #333333 1px;
}
.p_menu_archive .block .list .col .menu_name, .p_menu_archive .block .list .col .menu_price {
  padding: 15px 0;
}
.p_menu_archive .block .list .col .menu_name {
  width: 55%;
}
.p_menu_archive .block .list .col .menu_name .min {
  color: #B3B3B3;
  font-size: .8rem;
}
.p_menu_archive .block .list .col .menu_price {
  flex: 1;
}
.p_menu_archive .block .list .col .menu_price p {
  letter-spacing: .05em;
  text-align: right;
}
.p_menu_archive .block .notice p {
  font-size: .9rem;
}

@media (max-width: 599px) {
  .p_menu_archive .block {
    margin-top: 60px;
  }
  .p_menu_archive .block .menu_sec_title h2 {
    font-size: 1.75rem;
  }
  .p_menu_archive .block .menu_sec_title .note {
    font-size: 10px;
  }
  .p_menu_archive .block .list {
    margin-top: 20px;
  }
  .p_menu_archive .block .list .col {
    display: block;
  }
  .p_menu_archive .block .list .col .menu_name, .p_menu_archive .block .list .col .menu_price {
    padding: 10px 0;
  }
  .p_menu_archive .block .list .col .menu_name {
    width: 100%;
  }
  .p_menu_archive .block .list .col .menu_name .min {
    font-size: 10px;
  }
  .p_menu_archive .block .list .col .menu_price {
    flex: 1;
    border-top: dotted #B3B3B3 1px;
  }
  .p_menu_archive .block .notice p {
    font-size: .9rem;
  }
}
/**
 * coupon css
 * #coupon
 */
/* ==========================================================================
   #coupon
========================================================================== */
.p_coupon_archive .container .list .item {
  background: #f2f2f2;
  margin-top: 30px;
  padding: 10px;
}
.p_coupon_archive .container .list .item:nth-child(1) {
  margin-top: 0;
}
.p_coupon_archive .container .list .item .inner {
  background: #fff;
  padding: 25px;
}
.p_coupon_archive .container .list .item .inner .block_head .select p {
  background: #2CAFAD;
  color: #fff;
  display: inline-block;
  font-size: .9rem;
  font-weight: 600;
  padding: 3px 15px 2px;
}
.p_coupon_archive .container .list .item .inner .block_head .select.all p {
  background: #B3B3B3;
}
.p_coupon_archive .container .list .item .inner .block_head .title {
  margin-top: 15px;
}
.p_coupon_archive .container .list .item .inner .block_head .title h2 {
  font-size: 1.25rem;
}
.p_coupon_archive .container .list .item .inner .block_head .price {
  align-items: baseline;
  justify-content: flex-end;
}
.p_coupon_archive .container .list .item .inner .block_head .price li {
  letter-spacing: .05em;
}
.p_coupon_archive .container .list .item .inner .block_head .price .n_price {
  position: relative;
  margin-right: 20px;
}
.p_coupon_archive .container .list .item .inner .block_head .price .n_price::before {
  position: absolute;
  content: "→";
  top: 0;
  right: -15px;
}
.p_coupon_archive .container .list .item .inner .block_head .price .s_price {
  color: #2CAFAD;
  font-weight: 600;
}
.p_coupon_archive .container .list .item .inner .block_head .price .s_price span {
  font-size: 1.5rem;
  font-weight: 700;
}
.p_coupon_archive .container .list .item .inner .block_body {
  border-top: solid #333333 1px;
  margin-top: 5px;
  padding-top: 20px;
}
.p_coupon_archive .container .list .item .inner .block_body .note p {
  font-size: .9rem;
}
.p_coupon_archive .container .list .item .inner .block_body .notice {
  margin-top: 15px;
}
.p_coupon_archive .container .list .item .inner .block_body .notice .col:nth-child(1) {
  width: 60%;
}
.p_coupon_archive .container .list .item .inner .block_body .notice .col:nth-child(2) {
  flex: 1;
  margin-left: 30px;
}
.p_coupon_archive .container .list .item .inner .block_body .notice .col p {
  font-size: .9rem;
}
.p_coupon_archive .container .list .item .inner .block_body .notice .col .bold {
  font-weight: 600;
}
.p_coupon_archive .container .list .item .inner .block_foot {
  margin-top: 15px;
}
.p_coupon_archive .container .list .item .inner .block_foot ul {
  margin: -5px;
}
.p_coupon_archive .container .list .item .inner .block_foot ul li {
  padding: 5px;
}
.p_coupon_archive .container .list .item .inner .block_foot ul li a {
  width: 200px;
  font-size: .9rem;
  border: solid #2CAFAD 1px;
  border-radius: 17px;
  line-height: 34px;
  letter-spacing: .05em;
  color: #2CAFAD;
  text-align: center;
}

@media (max-width: 920px) {
  .p_coupon_archive .container .list .item .inner .block_foot ul li a {
    width: 175px;
  }
}
@media (max-width: 599px) {
  .p_coupon_archive .container .list .item {
    margin-top: 25px;
    padding: 8px;
  }
  .p_coupon_archive .container .list .item .inner {
    padding: 20px;
  }
  .p_coupon_archive .container .list .item .inner .block_head .select p {
    font-size: .85rem;
    padding: 3px 15px 2px;
  }
  .p_coupon_archive .container .list .item .inner .block_head .title {
    margin-top: 12px;
  }
  .p_coupon_archive .container .list .item .inner .block_head .title h2 {
    font-size: 1.25rem;
  }
  .p_coupon_archive .container .list .item .inner .block_head .price.row {
    display: flex;
  }
  .p_coupon_archive .container .list .item .inner .block_head .price .n_price {
    font-size: 11px;
  }
  .p_coupon_archive .container .list .item .inner .block_head .price .s_price {
    font-size: .9rem;
  }
  .p_coupon_archive .container .list .item .inner .block_head .price .s_price span {
    font-size: 1.45rem;
  }
  .p_coupon_archive .container .list .item .inner .block_body {
    margin-top: 5px;
    padding-top: 15px;
  }
  .p_coupon_archive .container .list .item .inner .block_body .note p {
    font-size: .9rem;
  }
  .p_coupon_archive .container .list .item .inner .block_body .notice {
    margin-top: 15px;
  }
  .p_coupon_archive .container .list .item .inner .block_body .notice .col:nth-child(1) {
    width: 100%;
  }
  .p_coupon_archive .container .list .item .inner .block_body .notice .col:nth-child(2) {
    flex: 1;
    margin-top: 10px;
    margin-left: 0;
  }
  .p_coupon_archive .container .list .item .inner .block_foot {
    margin-top: 20px;
  }
  .p_coupon_archive .container .list .item .inner .block_foot ul {
    margin: -3px;
  }
  .p_coupon_archive .container .list .item .inner .block_foot ul li {
    padding: 3px;
  }
  .p_coupon_archive .container .list .item .inner .block_foot ul li a {
    width: 200px;
  }
}
/**
 * recruit css
 * #recruit
 */
/* ==========================================================================
   #recruit
========================================================================== */
.p_recruit_about .note .container h2 {
  font-size: 1.5rem;
  letter-spacing: .25em;
  text-align: center;
}
.p_recruit_about .note .container p {
  line-height: 2;
  letter-spacing: .2em;
  margin-top: 30px;
  text-align: center;
}
.p_recruit_about .figure {
  margin-top: 120px;
  padding: 0 100px;
}
.p_recruit_about .figure span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 450px;
}

.p_recruit_content .container .wrap {
  position: relative;
  margin-top: 160px;
}
.p_recruit_content .container .wrap:nth-child(1) {
  margin-top: 0;
}
.p_recruit_content .container .wrap:nth-child(2) {
  margin-top: 80px;
}
.p_recruit_content .container .wrap::before {
  position: absolute;
  content: "";
  top: 50px;
  left: 0;
  width: 85%;
  height: 400px;
  background: #2CAFAD;
  opacity: .15;
  z-index: -10;
}
.p_recruit_content .container .wrap .block_title {
  margin-left: 40px;
}
.p_recruit_content .container .wrap .block_title p {
  font-size: .85rem;
}
.p_recruit_content .container .wrap .block_title h2 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 3.5rem;
  font-weight: 700;
  color: #2CAFAD;
  line-height: 1;
  letter-spacing: .075em;
  margin-top: 10px;
}
.p_recruit_content .container .wrap .block_body {
  margin-top: 80px;
}
.p_recruit_content .container .wrap .block_body .owner {
  width: 50%;
  margin-left: auto;
}
.p_recruit_content .container .wrap .block_body .owner a span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 62.5%;
}
.p_recruit_content .container .wrap .block_body .owner h3 {
  font-size: .9rem;
  margin-top: 15px;
}
.p_recruit_content .container .wrap .block_body .box_post {
  width: 95%;
  margin-left: auto;
}
.p_recruit_content .container .wrap .block_body .box_post .col {
  width: 33.3333%;
}
.p_recruit_content .container .wrap .block_body .box_post .col h3 {
  margin-top: 15px;
}

.p_recruit_list.first {
  margin-top: 200px;
}
.p_recruit_list .container .title {
  position: relative;
  margin-bottom: 80px;
}
.p_recruit_list .container .title::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #333333;
}
.p_recruit_list .container .title p {
  font-size: .8rem;
  font-weight: 700;
  text-align: center;
}
.p_recruit_list .container .title h2 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .05em;
  margin-top: 10px;
  text-align: center;
}
.p_recruit_list .container .list ul {
  display: flex;
}
.p_recruit_list .container .list ul li {
  padding: 20px 0;
}
.p_recruit_list .container .list ul li:nth-child(1) {
  width: 25%;
  border-top: solid #B3B3B3 1px;
}
.p_recruit_list .container .list ul li:nth-child(2) {
  flex: 1;
  border-top: dotted #B3B3B3 1px;
  margin-left: 10px;
}
.p_recruit_list .container .list ul:last-child li:nth-child(1) {
  border-bottom: solid #B3B3B3 1px;
}
.p_recruit_list .container .list ul:last-child li:nth-child(2) {
  flex: 1;
  border-bottom: dotted #B3B3B3 1px;
}

.p_recruit_gallery {
  padding: 0 100px;
}
.p_recruit_gallery ul li {
  width: 25%;
}
.p_recruit_gallery ul li span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 62.5%;
}

.l_btn {
  position: fixed;
  right: 40px;
  bottom: 40px;
}
.l_btn a {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.25rem;
  font-weight: 700;
  width: 125px;
  height: 125px;
  line-height: 1.25;
  border-radius: 100%;
  background: #2CAFAD;
  color: #fff;
  padding-top: 55px;
  text-align: center;
}

@media (max-width: 1366px) {
  .p_recruit_about .figure {
    padding: 0 60px;
  }
  .p_recruit_about .figure span {
    height: 350px;
  }

  .p_recruit_gallery {
    padding: 0 60px;
  }

  .l_btn {
    right: 30px;
    bottom: 30px;
  }
  .l_btn a {
    font-size: 1.15rem;
    width: 100px;
    height: 100px;
    padding-top: 45px;
  }
}
@media (max-width: 920px) {
  .p_recruit_content .container .wrap {
    margin-top: 120px;
  }
  .p_recruit_content .container .wrap::before {
    width: 85%;
    height: 300px;
  }
  .p_recruit_content .container .wrap .block_body {
    margin-top: 40px;
  }
  .p_recruit_content .container .wrap .block_body .box_post {
    width: 100%;
  }

  .p_recruit_list.first {
    margin-top: 160px;
  }

  .p_recruit_gallery {
    padding: 0 60px;
  }
  .p_recruit_gallery ul li {
    width: 50%;
  }
}
@media (max-width: 599px) {
  .p_recruit_about .figure {
    margin-top: 60px;
    padding: 0 25px;
  }
  .p_recruit_about .figure span {
    height: 225px;
  }

  .p_recruit_content .container .wrap {
    margin-top: 60px;
  }
  .p_recruit_content .container .wrap:nth-child(2) {
    margin-top: 60px;
  }
  .p_recruit_content .container .wrap::before {
    top: 35px;
    width: 85%;
    height: 200px;
  }
  .p_recruit_content .container .wrap .block_title {
    margin-left: 20px;
  }
  .p_recruit_content .container .wrap .block_title p {
    font-size: 10px;
  }
  .p_recruit_content .container .wrap .block_title h2 {
    font-size: 2.5rem;
    margin-top: 5px;
  }
  .p_recruit_content .container .wrap .block_body {
    margin-top: 40px;
  }
  .p_recruit_content .container .wrap .block_body .owner {
    width: 90%;
  }
  .p_recruit_content .container .wrap .block_body .box_post {
    width: 90%;
    margin-right: 0;
  }
  .p_recruit_content .container .wrap .block_body .box_post .col {
    width: 100%;
    padding: 0;
    margin-top: 25px;
  }

  .p_recruit_list.first {
    margin-top: 100px;
  }
  .p_recruit_list .container .title {
    margin-bottom: 60px;
  }
  .p_recruit_list .container .title::before {
    bottom: -12px;
    width: 26px;
  }
  .p_recruit_list .container .list ul li {
    padding: 15px 0;
    font-size: .9rem;
  }
  .p_recruit_list .container .list ul li:nth-child(2) {
    margin-left: 5px;
  }

  .p_recruit_gallery {
    padding: 0 25px;
  }
  .p_recruit_gallery ul li {
    width: 100%;
  }

  .l_btn {
    right: 15px;
    bottom: 20px;
  }
  .l_btn a {
    font-size: 1rem;
    width: 76px;
    height: 76px;
    padding-top: 34px;
  }
}
/**
 * post css
 * #common
 * #style
 * #staff
 */
/* ==========================================================================
   #common
========================================================================== */
.p_post_content .wrap .article {
  flex: 1;
}
.p_post_content .wrap .article .header h2 {
  font-size: 1.4rem;
}
.p_post_content .wrap .article .header .term {
  border-top: solid #333333 1px;
  border-bottom: solid #B3B3B3 1px;
  margin-top: 15px;
  padding: 10px 0;
}
.p_post_content .wrap .article .editor {
  margin-top: 50px;
}
.p_post_content .wrap .article .editor h3 {
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: 3px;
  position: relative;
  margin-bottom: 10px;
}
.p_post_content .wrap .article .editor h3::before, .p_post_content .wrap .article .editor h3::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 2px;
}
.p_post_content .wrap .article .editor h3::before {
  width: 100%;
  background: #DCDCDC;
}
.p_post_content .wrap .article .editor h3::after {
  width: 30%;
  background: #2CAFAD;
}
.p_post_content .wrap .article .editor h4 {
  font-size: 1.15rem;
  font-weight: 600;
  padding-left: 12px;
  position: relative;
  margin-bottom: 5px;
}
.p_post_content .wrap .article .editor h4::before {
  position: absolute;
  content: '';
  top: 2px;
  left: 0;
  width: 5px;
  height: 24px;
  background: #2CAFAD;
}
.p_post_content .wrap .article .editor h5 {
  font-size: 1.05rem;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
  margin-bottom: 5px;
}
.p_post_content .wrap .article .editor h5::before {
  position: absolute;
  content: '●';
  top: 0;
  left: 0;
  color: #B3B3B3;
}
.p_post_content .wrap .article .editor strong {
  font-weight: 600;
}
.p_post_content .wrap .article .editor em {
  font-style: italic;
}
.p_post_content .wrap .article .editor a {
  display: inline-block;
  text-decoration: underline;
  color: #551a8b;
}
.p_post_content .wrap .article .editor hr {
  margin: 0;
}
.p_post_content .wrap .sideber {
  width: 275px;
  margin-left: 80px;
}
.p_post_content .wrap .sideber .inner {
  margin-top: 40px;
}
.p_post_content .wrap .sideber .inner:first-child {
  margin-top: 0;
}
.p_post_content .wrap .sideber .inner h3 {
  font-family: 'Catamaran', -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.p_post_content .wrap .sideber .inner .list_post .box {
  display: flex;
  border-top: dotted #B3B3B3 1px;
  padding: 12px 0;
}
.p_post_content .wrap .sideber .inner .list_post .box:last-child {
  border-bottom: dotted #B3B3B3 1px;
}
.p_post_content .wrap .sideber .inner .list_post .box .img {
  width: 80px;
}
.p_post_content .wrap .sideber .inner .list_post .box .img a span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 71.5%;
}
.p_post_content .wrap .sideber .inner .list_post .box .note {
  flex: 1;
  margin-left: 12px;
}
.p_post_content .wrap .sideber .inner .list_post .box .note h4 {
  font-size: .85rem;
}
.p_post_content .wrap .sideber .inner .list_style {
  display: flex;
  flex-wrap: wrap;
  margin: -3px;
}
.p_post_content .wrap .sideber .inner .list_style .box {
  width: 33.3333%;
  padding: 3px;
}
.p_post_content .wrap .sideber .inner .list_style .box a span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 125%;
}
.p_post_content .wrap .sideber .inner .link {
  margin-top: 15px;
}
.p_post_content .wrap .sideber .inner .link a {
  color: #2CAFAD;
  font-size: .9rem;
  letter-spacing: .05em;
}
.p_post_content .term {
  display: flex;
}
.p_post_content .term .date {
  font-size: .8rem;
  letter-spacing: .05em;
  margin-right: 10px;
}
.p_post_content .post-categories {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3px;
}
.p_post_content .post-categories li {
  margin-right: 5px;
}
.p_post_content .post-categories li a {
  color: #B3B3B3;
  font-size: .8rem;
  letter-spacing: .05em;
}
.p_post_content .post-categories li:last-child {
  margin-right: 0;
}

@media (max-width: 1366px) {
  .p_post_content .wrap .sideber {
    width: 250px;
    margin-left: 60px;
  }
  .p_post_content .term .date {
    font-size: 10px;
  }
  .p_post_content .post-categories li a {
    font-size: 10px;
  }
}
@media (max-width: 599px) {
  .p_post_content .wrap .article .header h2 {
    font-size: 1.35rem;
  }
  .p_post_content .wrap .article .editor h3 {
    font-size: 1.35rem;
  }
  .p_post_content .wrap .article .editor h4 {
    font-size: 1.25rem;
  }
  .p_post_content .wrap .article .editor h5 {
    font-size: 1.15rem;
  }
  .p_post_content .wrap .sideber {
    width: 100%;
    margin-top: 80px;
    margin-left: 0;
  }
}
/* ==========================================================================
   #style, #staff
========================================================================== */
.p_post_style_content .wrap .col.img,
.p_post_staff_content .wrap .col.img {
  width: 50%;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery,
.p_post_staff_content .wrap .col.img .thumbnail_gallery {
  display: flex;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery .main,
.p_post_staff_content .wrap .col.img .thumbnail_gallery .main {
  flex: 1;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery .main #thumbnail_fig,
.p_post_staff_content .wrap .col.img .thumbnail_gallery .main #thumbnail_fig {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 140%;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery .sub,
.p_post_staff_content .wrap .col.img .thumbnail_gallery .sub {
  width: 100px;
  margin-left: 5px;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery .sub ul li,
.p_post_staff_content .wrap .col.img .thumbnail_gallery .sub ul li {
  margin-bottom: 5px;
}
.p_post_style_content .wrap .col.img .thumbnail_gallery .sub ul li .thumbnail_child,
.p_post_staff_content .wrap .col.img .thumbnail_gallery .sub ul li .thumbnail_child {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 140%;
}
.p_post_style_content .wrap .col.note,
.p_post_staff_content .wrap .col.note {
  flex: 1;
  margin-left: 120px;
}
.p_post_style_content .wrap .col.note .header h2,
.p_post_staff_content .wrap .col.note .header h2 {
  font-size: 1.4rem;
}
.p_post_style_content .wrap .col.note .header .term,
.p_post_staff_content .wrap .col.note .header .term {
  border-top: solid #333333 1px;
  border-bottom: solid #B3B3B3 1px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  padding: 10px 0;
}
.p_post_style_content .wrap .col.note .header .term .date,
.p_post_staff_content .wrap .col.note .header .term .date {
  font-size: .8rem;
  letter-spacing: .05em;
}
.p_post_style_content .wrap .col.note .header .term .cat,
.p_post_staff_content .wrap .col.note .header .term .cat {
  margin-left: 10px;
}
.p_post_style_content .wrap .col.note .header .term .cat ul,
.p_post_staff_content .wrap .col.note .header .term .cat ul {
  display: flex;
}
.p_post_style_content .wrap .col.note .header .term .cat ul li,
.p_post_staff_content .wrap .col.note .header .term .cat ul li {
  color: #B3B3B3;
  font-size: .8rem;
  letter-spacing: .05em;
  margin-right: 5px;
}
.p_post_style_content .wrap .col.note .header .term .cat ul li:last-child,
.p_post_staff_content .wrap .col.note .header .term .cat ul li:last-child {
  margin-right: 0;
}
.p_post_style_content .wrap .col.note .note,
.p_post_staff_content .wrap .col.note .note {
  margin-top: 25px;
}
.p_post_style_content .wrap .col.note .txt,
.p_post_staff_content .wrap .col.note .txt {
  margin-top: 25px;
}
.p_post_style_content .wrap .col.note .sns,
.p_post_staff_content .wrap .col.note .sns {
  margin-top: 25px;
}
.p_post_style_content .wrap .col.note .sns ul,
.p_post_staff_content .wrap .col.note .sns ul {
  display: flex;
}
.p_post_style_content .wrap .col.note .sns ul li,
.p_post_staff_content .wrap .col.note .sns ul li {
  margin-left: 15px;
}
.p_post_style_content .wrap .col.note .sns ul li:first-child,
.p_post_staff_content .wrap .col.note .sns ul li:first-child {
  margin-left: 0;
}
.p_post_style_content .wrap .col.note .sns ul li svg,
.p_post_staff_content .wrap .col.note .sns ul li svg {
  width: 20px;
  height: 20px;
  fill: #dcdcdc;
}
.p_post_style_content .wrap .col.note .sns ul li a svg,
.p_post_staff_content .wrap .col.note .sns ul li a svg {
  fill: #333333;
}
.p_post_style_content .wrap .col.note .staff,
.p_post_staff_content .wrap .col.note .staff {
  display: flex;
  align-items: center;
  background: #f2f2f2;
  border-radius: 3px;
  margin-top: 30px;
  padding: 20px;
}
.p_post_style_content .wrap .col.note .staff .col_img,
.p_post_staff_content .wrap .col.note .staff .col_img {
  width: 90px;
}
.p_post_style_content .wrap .col.note .staff .col_img span,
.p_post_staff_content .wrap .col.note .staff .col_img span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 100%;
  border-radius: 50%;
}
.p_post_style_content .wrap .col.note .staff .col_note,
.p_post_staff_content .wrap .col.note .staff .col_note {
  flex: 1;
  margin-left: 20px;
}
.p_post_style_content .wrap .col.note .staff .col_note .min,
.p_post_staff_content .wrap .col.note .staff .col_note .min {
  font-size: .8em;
  color: #B3B3B3;
}
.p_post_style_content .wrap .col.note .staff .col_note .name,
.p_post_staff_content .wrap .col.note .staff .col_note .name {
  font-size: 1.1rem;
}
.p_post_style_content .wrap .col.note .staff .col_note .link,
.p_post_staff_content .wrap .col.note .staff .col_note .link {
  border-top: solid #B3B3B3 1px;
  margin-top: 10px;
  padding-top: 5px;
  text-align: right;
}
.p_post_style_content .wrap .col.note .staff .col_note .link a,
.p_post_staff_content .wrap .col.note .staff .col_note .link a {
  font-size: .8rem;
  display: inline-block;
}
.p_post_style_content .wrap .col.note .gallery,
.p_post_staff_content .wrap .col.note .gallery {
  margin-top: 50px;
}
.p_post_style_content .wrap .col.note .gallery p,
.p_post_staff_content .wrap .col.note .gallery p {
  font-size: .85rem;
  margin-bottom: 20px;
}
.p_post_style_content .wrap .col.note .gallery ul,
.p_post_staff_content .wrap .col.note .gallery ul {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}
.p_post_style_content .wrap .col.note .gallery ul li,
.p_post_staff_content .wrap .col.note .gallery ul li {
  width: 25%;
  padding: 5px;
}
.p_post_style_content .wrap .col.note .gallery ul li span,
.p_post_staff_content .wrap .col.note .gallery ul li span {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  padding-top: 125%;
}

@media (max-width: 1366px) {
  .p_post_style_content .wrap .col.img .thumbnail_gallery .sub,
  .p_post_staff_content .wrap .col.img .thumbnail_gallery .sub {
    width: 80px;
    margin-left: 5px;
  }
  .p_post_style_content .wrap .col.img .thumbnail_gallery .sub ul li,
  .p_post_staff_content .wrap .col.img .thumbnail_gallery .sub ul li {
    margin-bottom: 5px;
  }
  .p_post_style_content .wrap .col.note,
  .p_post_staff_content .wrap .col.note {
    margin-left: 60px;
  }
  .p_post_style_content .wrap .col.note .header .term .date,
  .p_post_staff_content .wrap .col.note .header .term .date {
    font-size: 10px;
  }
  .p_post_style_content .wrap .col.note .header .term .cat ul li,
  .p_post_staff_content .wrap .col.note .header .term .cat ul li {
    font-size: 10px;
  }
  .p_post_style_content .wrap .col.note .staff .col_note .min,
  .p_post_staff_content .wrap .col.note .staff .col_note .min {
    font-size: 10px;
  }
}
@media (max-width: 599px) {
  .p_post_style_content .wrap .col.img,
  .p_post_staff_content .wrap .col.img {
    width: 100%;
  }
  .p_post_style_content .wrap .col.img .thumbnail_gallery .sub,
  .p_post_staff_content .wrap .col.img .thumbnail_gallery .sub {
    width: 60px;
  }
  .p_post_style_content .wrap .col.note,
  .p_post_staff_content .wrap .col.note {
    margin-top: 50px;
    margin-left: 0;
  }
  .p_post_style_content .wrap .col.note .header h2,
  .p_post_staff_content .wrap .col.note .header h2 {
    font-size: 1.35rem;
  }
  .p_post_style_content .wrap .col.note .sns ul li svg,
  .p_post_staff_content .wrap .col.note .sns ul li svg {
    width: 18px;
    height: 18px;
  }
  .p_post_style_content .wrap .col.note .sns ul li a svg,
  .p_post_staff_content .wrap .col.note .sns ul li a svg {
    width: 18px;
    height: 18px;
  }
  .p_post_style_content .wrap .col.note .staff .col_img,
  .p_post_staff_content .wrap .col.note .staff .col_img {
    width: 75px;
  }
  .p_post_style_content .wrap .col.note .gallery ul li,
  .p_post_staff_content .wrap .col.note .gallery ul li {
    width: 33.3333%;
  }
}
/**
 * entry css
 * #entry
 */
/* ==========================================================================
   #entry
========================================================================== */
.p_entry_note h2 {
  font-size: 1.5rem;
}
.p_entry_note .note {
  margin-top: 30px;
}
.p_entry_note .note p {
  margin-top: 10px;
}
.p_entry_note .note p:nth-child(1) {
  margin-top: 0;
}

.p_entry_form {
  margin-top: 80px;
}
.p_entry_form .container .form_content {
  background: #f2f2f2;
  padding: 60px 60px;
}
.p_entry_form .container .form_content .block {
  display: flex;
  margin-top: 25px;
}
.p_entry_form .container .form_content .block:nth-child(1) {
  margin-top: 0;
}
.p_entry_form .container .form_content .block .title {
  width: 275px;
  display: flex;
  align-items: center;
}
.p_entry_form .container .form_content .block .title p {
  line-height: 1;
}
.p_entry_form .container .form_content .block .title .min {
  font-size: .8rem;
  background: #2CAFAD;
  border-radius: 3px;
  color: #fff;
  margin-right: 8px;
  padding: 3px 5px;
}
.p_entry_form .container .form_content .block .title .min.ano {
  background: #B3B3B3;
}
.p_entry_form .container .form_content .block .note {
  flex: 1;
}
.p_entry_form .container .form_content .block.radio {
  padding: 15px 0;
}
.p_entry_form .container .form_content .block.birthday .note {
  display: flex;
}
.p_entry_form .container .form_content .block.birthday .note .col {
  display: flex;
  align-items: flex-end;
  width: 100px;
  margin-left: 10px;
}
.p_entry_form .container .form_content .block.birthday .note .col:nth-child(1) {
  width: 200px;
  margin-left: 0;
}
.p_entry_form .container .form_content .block.birthday .note .col p {
  margin-left: 3px;
}
.p_entry_form .container .form_content .block.add .note .col {
  width: 182px;
}
.p_entry_form .container .form_content .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: .8rem;
  line-height: 1.25;
}
.p_entry_form .container .submit {
  margin-top: 60px;
  text-align: center;
}
.p_entry_form .container .wpcf7-spinner {
  display: none;
}
.p_entry_form .container .wpcf7-response-output {
  font-size: .9rem;
  margin: 40px 0 0 0;
  padding: 20px;
  border-width: 1px;
  line-height: 1.25;
  text-align: center;
}
.p_entry_form input[type="text"], .p_entry_form input[type="email"], .p_entry_form input[type="submit"], .p_entry_form textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p_entry_form input[type="text"], .p_entry_form input[type="email"], .p_entry_form textarea {
  background: #fff;
  width: 100%;
  padding: 15px 20px;
  line-height: 1.65;
  letter-spacing: .1em;
  font-weight: 400;
  font-feature-settings: "palt";
  text-justify: inter-ideograph;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  color: #333333;
}
.p_entry_form input[type="submit"] {
  cursor: pointer;
  position: relative;
  border: solid #2CAFAD 1px;
  border-radius: 25px;
  background: #fff;
  color: #2CAFAD;
  font-size: .9rem;
  line-height: 50px;
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
  padding: 0 30px;
  transition: all .5s ease;
}
.p_entry_form input[type="submit"]:hover {
  background: #2CAFAD;
  color: #fff;
}

@media (max-width: 920px) {
  .p_entry_form {
    margin-top: 60px;
  }
  .p_entry_form .container .form_content {
    padding: 40px 40px;
  }
  .p_entry_form .container .form_content .block {
    display: inherit;
    margin-top: 25px;
  }
  .p_entry_form .container .form_content .block .title {
    width: 100%;
  }
  .p_entry_form .container .form_content .block .note {
    margin-top: 15px;
  }
  .p_entry_form .container .form_content .block.radio {
    padding: 0;
  }
  .p_entry_form .container .form_content .block.radio .note {
    margin-top: 30px;
    margin-bottom: 35px;
  }
  .p_entry_form input[type="text"], .p_entry_form input[type="email"], .p_entry_form textarea {
    padding: 12px 15px;
  }
}
@media (max-width: 599px) {
  .p_entry_note h2 {
    font-size: 1.4rem;
  }
  .p_entry_note .note {
    margin-top: 20px;
  }

  .p_entry_form {
    margin-top: 50px;
  }
  .p_entry_form .container .form_content {
    padding: 30px 20px;
  }
  .p_entry_form .container .form_content .block {
    margin-top: 20px;
  }
  .p_entry_form .container .form_content .block .note {
    margin-top: 12px;
  }
  .p_entry_form .container .form_content .block.radio {
    padding: 0;
  }
  .p_entry_form .container .form_content .block.radio .note {
    margin-top: 25px;
    margin-bottom: 30px;
  }
  .p_entry_form .container .form_content .block.birthday .note .col {
    width: 70px;
  }
  .p_entry_form .container .form_content .block.birthday .note .col:nth-child(1) {
    width: 110px;
  }
  .p_entry_form .container .form_content .block.add .note .col {
    width: 125px;
  }
  .p_entry_form .container .submit {
    margin-top: 40px;
  }
  .p_entry_form .container .wpcf7-response-output {
    font-size: .85rem;
    padding: 15px 10px;
  }
  .p_entry_form input[type="text"], .p_entry_form input[type="email"], .p_entry_form textarea {
    padding: 8px 10px;
  }
  .p_entry_form input[type="submit"] {
    border-radius: 22px;
    line-height: 44px;
    max-width: 200px;
    padding: 0 10px;
  }
}
