@import url(https://fonts.googleapis.com/css?family=Pacifico);
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Josefin+Sans);
@import url(https://fonts.googleapis.com/css?family=Cinzel+Decorative);

@charset "utf-8";
:root{
  /* ===== Design Tokens ===== */
  /* Colors */
  --c-white: #fff;
  --c-black: #000;

  /* Text (soft plum-brown) */
  --c-text: #5a2a44;      /* base text */
  --c-text-2: #6a2f4f;    /* deep text */
  --c-text-3: #53253f;
  --c-text-4: #7a3a5a;
  --c-text-5: #8a4163;

  --c-ink: #3a1428;       /* headings/strong */
  --c-ink-2: #4a1c33;

  /* Pink accents (reference-like) */
  --c-primary: #f97ab6;    /* main accent */
  --c-primary-2: #ffd0e6;  /* light accent */
  --c-primary-3: #ff9fcb;  /* mid accent */
  --c-primary-4: #e85e9d;  /* deep accent */

  --c-border: #f5b6d3;
  --c-border-2: #f7c6de;

  /* Backgrounds / surfaces */
  --c-bg: #ffe3f0;
  --c-surface-muted: #ffffff;
  --c-surface-2: #fff6fb;
  --c-surface-3: #ffeaf4;
  --c-surface-4: #fff1f8;

  /* Neutrals */
  --c-gray-200: #f2f2f2;
  --c-gray-300: #e7e7e7;
  --c-gray-600: #6d6d6d;
  --c-gray-700: #535353;
  --c-gray-800: #333;
  --c-gray-850: #3c3c3c;

  --c-placeholder: #c48aa8;

  /* Status / brand */
  --c-accent-blue: #2fa9ff; /* twitter etc */
  --c-success: #32c56a;
  --c-warning: #d28a00;

  /* Legacy named colors (keep variable names used in file) */
  --c-cyan: #f77db6;
  --c-night: #2b0f1b;

  --c-outline: #fff3f9;
  --c-mark: #fffbcc;

  /* Alphas */
  --a-white-45: rgba(255,255,255,0.45);
  --a-white-60: rgba(255, 255, 255, 0.6);
  --a-white-80: rgba(255, 255, 255, 0.8);
  --a-white-85: rgba(255, 255, 255, 0.85);
  --a-white-90: rgba(255, 255, 255, 0.9);
  --a-white-95: rgba(255, 255, 255, 0.95);

  --a-primary-0: rgba(249, 122, 182, 0);
  --a-primary-60: rgba(249, 122, 182, 0.6);
  --a-primary-100: rgba(249, 122, 182, 1);

  --a-concept-75: rgba(58, 20, 40, 0.75);

  /* Shadows */
  --shadow-rgba-04: rgba(0, 0, 0, 0.04);
  --shadow-rgba-05: rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 0 10px var(--shadow-rgba-04);
  --shadow-md: 0 0 15px var(--shadow-rgba-04);
  --shadow-float: 10px 10px 30px var(--shadow-rgba-05);

  /* Inset shadow helper used by reserve_btn */
  --c-shadow-inset: rgba(0, 0, 0, 0.14);

  /* Radius */
  --r-2: 2px;
  --r-8: 0.5rem;

  /* Motion */
  --t-fast: .3s;
  --t-base: .4s ease-in-out;

  /* Typography */
  --ff-sans: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --ff-serif: "FOT-筑紫オールド明朝 Pro R","TsukuOldMinPro-R","ヒラギノ明朝 Pro W3","Hiragino Mincho Pro","ＭＳ Ｐ明朝","MS PMincho","HiraMinProN-W3","HGS明朝E", serif;
  --ff-deco: "Cinzel Decorative", cursive;
}


html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
	font-size: 100%;
	margin: 0;
	padding: 0px;
	outline: 0;
	border: 0;
	vertical-align: baseline;
}
/*paddingによる幅を無くします*/
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}
html{
	font-size: 62.5%;
	overflow-x: hidden;
}
body {
	width: 100%;
	min-width: 320px;
	min-height: 800px;
	background: url(../images/bg.png);
	background-repeat: repeat;
    background-position: center;
    background-size: 200px;
	
	-webkit-text-size-adjust: 100%;
	overflow: hidden;
	color: var(--c-text);
	line-height: 1.4;
	letter-spacing: 0.1rem;
	text-indent: 0.1rem;
	text-align: center;
	font-family: var(--ff-sans);
	font-size: 1.4rem;
	animation: fade 1.6s ease-in-out;
}
@keyframes fade {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display: block;
}
h1, h2, h3, h4, h5, h6, th {
	font-weight: normal;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
	content: none;
}
a {
	padding: 0;
	margin: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: var(--c-primary);
	text-decoration: none;
	outline: none;
}
p {
	max-height: 999999px;
}
ins {
	background-color: var(--c-mark);
	color: var(--c-text);
	text-decoration: none;
}
mark {
	background-color: var(--c-mark);
	color: var(--c-text);
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid var(--c-border);
	margin: 1em 0;
	padding: 0;
}
img {
	vertical-align: middle;
}
/* from */
label {
	padding: 10px;
	display: block;
}
textarea {
	width: 100%;
	height: 100px;
	resize: none;
}
select {
	width: 100%;
	margin-bottom: 5px;
	display: block;
}
select:last-child {
	margin-bottom: 0;
}
.select_box {
	position: relative;
}
.select_box::after {
	content: "\f0d7";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	right: 15px;
	top: 15px;
	z-index: 100;
}
.select_type {
	width: 95px;
	display: inline-block;
	vertical-align: unset;
}
.select_type:last-child {
	margin-left: 20px;
}
.select_type select {
	text-indent: 25px;
}
input, textarea, select {
	padding: 10px;
	background: 0;
	border: 0;
	border-bottom: 1px dotted var(--c-border-2);
	text-align: justify;
}
button, textarea, select {
	-moz-appearance: none;
	-webkit-appearance: none;
	border-radius: 0;
	border: 0;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
	outline: 0;
}
input[type="text"],
input[type="email"] {
	width: 100%;
}
input[type="submit"],
input[type="reset"],
input[type="button"] {
	cursor : pointer;
}
input[type=radio],
input[type=checkbox] {
	display: inline;
	background: var(--c-gray-200);
	padding: 5px 10px;
}
input[type="text"],
input[type="email"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="hidden"] {
	border-radius: 0;
	-webkit-appearance: none;
}
::placeholder {
	color: var(--c-placeholder);
}
:focus::placeholder {
	color: transparent;
}
#contents_form {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}
.form_reset{
	-webkit-appearance: none;
	border:none;
	background-color: transparent;
}
/* common */
.atten_01,
a.atten_01 {
	color: var(--c-ink);
}
.atten_02,
a.atten_02 {
	color: var(--c-primary);
}
/* margin */
.mb_5 {
	margin-bottom: 5px;
	    color: var(--c-primary);
}
.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mb_40 {
	margin-bottom: 40px;
}

/* Animation Timers
---------------------------------*/
.delay-02s {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
.delay-03s {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}
.delay-04s {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}

.delay-05s {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}
.delay-06s {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

.delay-07s {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}
.delay-08s {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}

.delay-09s {
	animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
}
.delay-1s {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
.delay-12s {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}


/* font */
.fs_08 {
	font-size: 0.8rem;
}

.fs_10 {
	font-size: 1rem;
}
.fs_12 {
	font-size: 1.2rem;
}
.fs_14 {
	font-size: 1.4rem;
}
.fs_16 {
	font-size: 1.6rem;
}
.fs_18 {
	font-size: 1.8rem;
}
.fs_20 {
	font-size: 2rem;
}
.fs_24 {
	font-size: 2.4rem;
}
.fs_w {
	font-weight: 600;
}
/* text-align */
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
/* transition */
.link_act_01 {
	opacity: 1;
	transition: var(--t-base);
}
.link_act_01:hover {
	opacity: 0.6;
}
.link_act_02 {
	opacity: 1;
	transform: scale(1);
	transition: all var(--t-base);
}
.link_act_02:hover {
	opacity: 0.6;
	transform: scale(1.1);
}

/* btn-border */

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all var(--t-fast);
  transition: all var(--t-fast);
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: var(--c-ink);
  border-radius: var(--r-8);
}


a.btn-border {
  border: 2px solid var(--c-primary);
  border-radius: 0;
  background: var(--c-white);

  -webkit-transform-style: preserve-3d;

  transform-style: preserve-3d;
}

a.btn-border:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 15px;
  height: 100%;

  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);

  border-radius: 0 50% 50% 0;
  background: var(--c-primary);
}

a.btn-border:hover:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: bold;
  line-height: 30px;

  width: 30px;
  height: 30px;

  content: '\f061';
  -webkit-transform: translateX(730%) translateY(.5rem);
  transform: translateX(730%) translateY(.5rem);

  color: var(--c-white);
  border-radius: 50%;
}

/* btn_01 */
.btn_01,
.btn_01 a {
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	background: var(--c-text);
	line-height: 60px;
	display: block;
	color: var(--c-white);
	font-size: 1.6rem;
	font-family: var(--ff-serif);
	text-align: center;
	transition: var(--t-base);
	position: relative;
	cursor: pointer;
}
.btn_01::after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: 0;
	right: 15px;
}
.btn_01 input {
	width: 100%;
	padding: 0;
	line-height: 60px;
	display: block;
	text-align: center;
	color: var(--c-white);
	transition: var(--t-base);
}
.btn_01:hover,
.btn_01:hover a,
.btn_01 input:hover {
	background: var(--c-gray-600);
}
/* btn_02 */
.btn_02,
.btn_02 a {
	width: 100%;
	max-width: 300px;
	margin: 15px auto;
	background: var(--c-primary-2);
	border: 1px solid var(--c-primary-2);
	line-height: 45px;
	display: block;
	color: var(--c-text);
	text-align: center;
	transition: var(--t-base);
	position: relative;
	cursor: pointer;
}
.btn_02::after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: 0;
	right: 15px;
}
.btn_02:hover,
.btn_02:hover {
	background: 0;
	border: 1px solid var(--c-primary-2);
	color: var(--c-white);
}
/* inner */
.inner {
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
	padding: 0 10px;
}
/* outer */
.outer {
	padding: 3% 0;
	background: hsla(0, 0%, 100%, .5);
	
}
/* outer */
.bg_type {
	padding: 4%;
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}
/* title */

.sectionTitleLine {
    position: relative;
    padding-bottom: 0px;
}


.title {
	width: 100%;
	margin-bottom: 10px;
	padding-top: 10px;
	background: url(../images/bg_titile.png) center no-repeat;
	background-size: 260px;
	font-size: 3.2rem;
	font-family: var(--ff-deco);
	letter-spacing: .4rem;
	text-indent: .4rem;
	color: var(--c-primary);
}

.title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 200px;
    background-image: linear-gradient(
90deg
, var(--a-primary-0), var(--a-primary-100) 50%, var(--a-primary-0) 100%);
}


.small_title {
	display: block;
	font-size: 1.3rem;
	font-weight: bold;
    color: var(--c-primary);
}


.title2 {
	width: 100%;
	margin-bottom: 10px;
	padding-top: 10px;
	background-size: 260px;
	font-size: 3.2rem;
	font-family: var(--ff-deco);
	letter-spacing: .4rem;
	text-indent: .4rem;
	color: var(--c-white);
    -webkit-text-stroke: 1px var(--c-primary);
    text-stroke: 1px var(--c-primary);
}

.title2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 200px;
    background-image: linear-gradient(
90deg
, var(--a-primary-0), var(--a-primary-100) 50%, var(--a-primary-0) 100%);
}


.small_title2 {
	display: block;
	clear:both;
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--c-white);
}



.title span {
	display: block;
	font-size: 1.3rem;
	font-weight: bold;
    color: var(--c-primary);
}


/* subtitle */
.subtitle {
	width: 100%;
	padding-left: 8px;
	border-left: 3px solid var(--c-primary-2);
	font-size: 2.4rem;
	font-family: var(--ff-serif);
	text-align: left;
	line-height: 1;
}
.subtitle span {
	color: var(--c-ink-2);
	font-size: 1.2rem;
	vertical-align: middle;
}
/* table_01 */
.table_01 {
	width: 100%;
	padding: 20px;
	border: 1px solid var(--c-text-5);
	color: var(--c-text);
	text-align: left;
}
.table_01 th,
.table_01 td {
	width: 100%;
	padding: 15px;
	border-bottom: 1px solid var(--c-black);
	display: block;
}
.table_01 th {
    color: var(--c-primary-2);
	position: relative;
  	padding: 1rem 2rem;
  	border-bottom: 6px solid var(--c-primary-2);
}
.table_01 th:before {
	position: absolute;
  bottom: -6px;
  left: 0;
  width: 20%;
  height: 6px;
  content: '';
  background: var(--c-text-4);
}
.table_01 tr:last-child td {
	border-bottom: 0;
}
.table_01 a {
	color: var(--c-text-4);
}
.table_01 a.tel {
	width:50%;
	margin-bottom: 10px;
    padding: 10px;
    background: var(--c-primary-3);
    border-radius: var(--r-2);
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.2;
    color: var(--c-white);
    display: block;
}


.table_01 a.mail {
	margin-bottom: 10px;
	padding: 10px;
	background: var(--c-ink);
	border-radius: var(--r-2);
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.2;
	color: var(--c-white);
	display: block;
}
.table_01 a.line {
	margin-bottom: 10px;
	padding: 10px;
	background: var(--c-success);
	border-radius: var(--r-2);
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.2;
	color: var(--c-white);
	display: block;
}
.table_01 a span {
	font-size: 1.2rem;
	letter-spacing: .4rem;
	display: block;
}
.table_01 a i {
	margin-right: 3px;
}
/* atten_txt */
.table_01 .atten_txt {
	color: var(--c-ink);
	font-size: 1.2rem;
}
/* deco_txt */
.table_01 .deco_txt {
	padding: 10px;
	background: var(--c-surface-2);
	border-radius: var(--r-2);
	color: var(--c-text);
}
/* example_box */
.table_01 .example_box {
	padding: 20px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.table_01 .example_box li {
	width: 48%;
	border: 1px solid var(--c-ink-2);
	text-align: center;
}
.table_01 .example_box li .tit {

	padding: 5px;
	background: var(--c-ink);
	font-size: 1.6rem;
}
.table_01 .example_box li .tit span {
	font-size: 1rem;
	font-weight: 600;
	display: block;
}
.table_01 .example_box li .salary {
	padding: 15px 0;
	background: var(--c-surface-2);
	color: var(--c-text);
}
.table_01 .example_box li .salary  span {
	color: var(--c-ink);
	font-size: 2rem;
	line-height: 1;
}
/* txt_box_01 */
.txt_box_01 {
	padding: 15px;
	background: var(--c-text);
	border: 4px double var(--c-border);
	color: var(--c-white);
	text-align: justify;
}
/* link_box */
.link_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	box-sizing: border-box;
	font-size: 1rem;
}
.link_box li {
	margin: 0 10px 10px 0;
}
.link_box li a {
	display: block;
}
/* tab */
.tab_group {
	width: 100%;
	padding: 0 1%;
	margin-bottom: 16px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
}
.tab_group .tab {
	width: 15%;
	margin-bottom: 4px;
	padding: 15px;
	background: var(--c-white);
	border: 1px solid var(--c-text);
	box-sizing: border-box;
	color: var(--c-text);
	font-size: 1.6rem;
	font-family: var(--ff-serif);
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: all .4s ease-out;
}
.tab_group .tab.active,
.tab_group .tab:hover {
	background: var(--c-ink);
	border: 1px solid var(--c-ink);
	color: var(--c-white);
}
/* panel_group */
.panel_group h3 {
	width: 98%;
	margin: 0 auto 20px;
	padding: 5px;
	background-color: var(--a-primary-60);
	color: var(--c-white);
	font-size: 2rem;
	font-family: var(--ff-serif);
}
.panel_group {
	display: none;
}
.panel_group.show {
	display: block;
	animation: fade 1.2s forwards;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* cast */
.cast_box {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.cast_box:last-child {
	margin-bottom: 0;
}
.cast_box li {
	width: 23%;

	margin: 0 1% 2% 1%;
	padding: 5px;
	background-color: var(--a-white-45);
	box-shadow: 2px 2px 0 var(--c-primary);
	position: relative;
}
.cast_box li a {
	display: block;
}
/* img_box */
.cast_box li .img_box {
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
}
.cast_box li .img_box:before {
	content:"";
	display: block;
	padding-top: 150%;
}
.cast_box li .img_box img.staff {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
/* icon_new */
.cast_box li .icon_new {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}

.cast_box li .icon_new img {
	display: block;
}

.cast_box li .icon_check {
	width: 100px;
	height: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.cast_box li .icon_check img {
	display: block;
}

/* class */
.cast_box li .class span {
	background: var(--a-white-85);
	color: var(--c-ink);
	text-align: center;
	font-weight: 600;
	font-family: var(--ff-serif);
	line-height: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
/* name */
.cast_box li .name {
	font-size: 1.6rem;
}
/* size */
.cast_box li .size {
	margin-bottom: 5px;
	font-size: 1.2rem;
}
.cast_box li .size span {
	font-size: 1rem;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
    font-weight: normal;
    color: var(--c-black);
}
/* time */
.cast_box li .time {
	border: 1px solid var(--c-primary-2);
	background: var(--c-text);
	color: var(--c-primary-2);
	font-size: 1rem;
	font-weight: 600;
	line-height: 2;
}
/* twitter */
.cast_box li .icon_twitter {
	color: var(--c-accent-blue);
	display: inline-block;
}
/* reserve */
.cast_box li .reserve {
	margin-bottom: 3px;
	border: 1px solid var(--c-ink);
	background: var(--c-text);
	color: var(--c-ink);
	font-size: 1rem;
	font-weight: 600;
	line-height: 2;
}
/* date_box */
.cast_box li .date_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.cast_box li .date_box p {
	width: 100%;
	margin: 0 1%;
}
/* txt_box */
.cast_box li .txt_box {
	width: 100%;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
    font-weight: normal;
    color: var(--c-black);
}
/* header */
header {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	background: var(--c-white);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 9999;
	transition: var(--t-base);
}
header.fixed {
	background: var(--a-white-95);
	box-shadow: var(--shadow-float);
}
header section.inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header h1 {
	width: 220px;
	line-height: 80px;
}
/* pc menu */
header .nav ul {
	font-family: var(--ff-serif);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
header .nav ul li {
	border-right: 1px solid var(--c-gray-300);
}
header .nav ul li:last-child{
	border-right: 0;
}
header .nav ul li a {
	padding: 0 20px;
	display: block;
	position: relative;
	transition: var(--t-base);
	position: relative;
	font-size:14px;
}
header .nav ul li a:hover {
	color: var(--c-primary-2);
}
header .nav ul li a::after {
	width: 0;
	height: 1px;
	background-color: var(--c-primary-2);
	position: absolute;
	left: 15%;
	bottom: -10px;
	content: '';
	transition: var(--t-base);
}
header .nav ul li a:hover::after {
	width: 70%;
}
/* full screen menu */
body.fixed {
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
}
/* nav_btn */
#nav_btn {
	width: 70px;
	height: 70px;
	background-color: var(--a-primary-60);
	padding-top: 30px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 9999;
	display: none;
	cursor: pointer;
	transition: var(--t-base);
}
/* swch */
#nav_btn.swch {
	background: 0;
}
.nav_line {
	width: 25px;
	height: 15px;
	margin: 0 auto;
	display: block;
	position: relative;
}
.nav_line span {
	width: 100%;
	height: 1px;
	background: var(--c-white);
	display: block;
	position: absolute;
	transition: var(--t-base);
}
.nav_line span:nth-child(2){
	top: 7px;
}
.nav_line span:nth-child(3){
	bottom: 0;
}
/* swch */
#nav_btn.swch .nav_line span {
	background: var(--c-primary);
	
}
/* swch */
#nav_btn.swch .nav_line span:nth-child(1) {
	top: 9px;
	transform: rotate(45deg);
}
#nav_btn.swch .nav_line span:nth-child(2) {
	transform: scaleX(0);
}
#nav_btn.swch .nav_line span:nth-child(3) {
	bottom: 5px;
	transform: rotate(135deg);
}
#nav_menu {
	width: 100%;
	height: 100%;
	background-color: var(--a-white-90);
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9998;
	overflow: hidden;
	overflow-y: auto;
	display: none;
}
.nav_content {
	width: 100%;
	min-height: 100%;
	padding: 5%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.nav_box {
	width: 100%;
	max-width: 320px;
	height: auto;
	font-size: 1.3rem;
	font-family: var(--ff-serif);
}
.nav_box nav ul {
	margin-bottom: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.nav_box nav ul li {
	width: 46%;
	border-bottom: 1px solid var(--c-primary);
}
.nav_box nav ul li a {
	padding: 15px 0;
	color: var(--c-primary);
	display: block;
	text-align: left;
	position: relative;
}
.nav_box nav ul li a::after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	color: var(--c-primary);
	position: absolute;
	top: 18px;
	right: 0;
}
/* nav_icon_box */
.nav_box .nav_icon_box {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav_box .nav_icon_box li {
	width: 30%;
	margin: 0 1.5%;
	border: 1px solid var(--c-primary-3);
}
.nav_box .nav_icon_box li.nav_icon_credit {
	border: 1px solid var(--c-primary-3);;
}
.nav_box .nav_icon_box li.nav_icon_blog {
	border: 1px solid var(--c-ink);
}
.nav_box .nav_icon_box li.nav_icon_twitter {
	border: 1px solid var(--c-accent-blue);
}
.nav_box .nav_icon_box li.nav_icon_report {
	border: 1px solid var(--c-success);
}
.nav_box .nav_icon_box li.nav_icon_reserve {
	border: 1px solid var(--c-warning);
}
.nav_box .nav_icon_box li a {
	padding: 5px;
	display: block;
	color: var(--c-primary-3);
	line-height: 1;
}
.nav_box .nav_icon_box li.nav_icon_credit a {
	color: var(--c-primary-3);
}
.nav_box .nav_icon_box li.nav_icon_blog a {
	color: var(--c-ink);
}
.nav_box .nav_icon_box li.nav_icon_twitter a {
	color: var(--c-accent-blue);
}
.nav_box .nav_icon_box li.nav_icon_report a{
	color: var(--c-success);
}
.nav_box .nav_icon_box li.nav_icon_reserve a{
	color: var(--c-warning);
}
.nav_box .nav_icon_box li a::before {
	margin-bottom: 5px;
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	display: block;
}
.nav_box .nav_icon_box li.nav_icon_credit a::before {
	content: "\f09d";
}
.nav_box .nav_icon_box li.nav_icon_blog a::before {
	content: "\f4ad";
}
.nav_box .nav_icon_box li.nav_icon_twitter a::before {
	content: "\f099";
	font-weight: 400;
	font-family: "Font Awesome 5 Brands";
}
.nav_box .nav_icon_box li.nav_icon_report a::before {
	content: "\f2b9";
}
.nav_box .nav_icon_box li.nav_icon_reserve a::before {
	content: "\f073";
}
/* nav_info_box */
.nav_box .nav_info_box {
	font-size: 2rem;
	color: var(--c-primary);
}
.nav_box .nav_info_box li span {
	margin-right: 5px;
	font-size: 1.2rem;
}
.nav_box .nav_info_box li a {
	padding: 10px;
	display: block;
	color: var(--c-primary);
}
/* main */
main.inner {
	margin: 4% auto 0;
}
/* mainvisual */
.mainvisual {
	width: 100%;
	/*height: 100%;*/
	height: 70vh;
	margin-top: 80px;
	background: url(../images/bg_mainvisual.jpg) no-repeat;
	background-attachment: fixed;
    background-position: bottom left;
	background-size: cover;
	border-bottom: 3px solid var(--c-primary-2);
	position: relative;
}
.mainvisual::after {
	position: absolute;
	bottom: -10px;
	right: 0;
	content: 'Men’s Esthetic';
	display: block;
	font-size: 7.2rem;
	font-family: var(--ff-serif);
	letter-spacing: .8rem;
	line-height: 1;
	opacity: .2;
	color: var(--c-ink);
}
/* mainvisual_inner */
.mainvisual_inner {
	width: 100%;
	max-width: 780px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.mainvisual_inner > div {
	width: 100%;
	min-height: 580px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}


.main_staff .storeDesc {
    bottom: 75px;
    left: 5px;
}


.marquee {
    width: 100%;
    overflow: hidden;
 }  
 
 .main_staff .storeDesc p {
    font-size: 18px;
    color: var(--c-white);
    font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", serif;
    text-shadow: 2px 1px 1px rgba(58,20,40,0.55);
} 

.marquee .marqueeTxt {
    margin: 0;
    padding-left: 100%;
    display: inline-block;
    white-space: nowrap;
    -webkit-animation-name: marqueeRL;
    -webkit-animation-timing-function: linear;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-name: marqueeRL;
    -moz-animation-timing-function: linear;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -ms-animation-name: marqueeRL;
    -ms-animation-timing-function: linear;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -o-animation-name: marqueeRL;
    -o-animation-timing-function: linear;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    animation-name: marqueeRL;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation-iteration-count: infinite;
}

　

@-webkit-keyframes marqueeRL{from{-webkit-transform:translate(0)}to{-webkit-transform:translate(-100%)}}

@keyframes marqueeRL{from{-webkit-transform:translate(0);transform:translate(0)}to{-webkit-transform:translate(-100%);transform:translate(-100%)}}
　

/* main_bnr */
div.main_bnr {
	max-width: 340px;
	background: var(--a-white-60);
	box-shadow: var(--shadow-md);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
div.main_bnr ul li img {
	/*max-width: 280px;*/
}
/* main_staff */
div.main_staff {
	width: 90%;
}
div.main_staff ul li img {
	background: var(--a-white-80);
	padding: 5px;
	box-shadow: var(--shadow-md);
}
div.main_staff p {	　
	padding-top: 20px;
}
/* info_box */
.mainvisual .info_box {
	width: 100%;
	max-width: 380px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.mainvisual .info_box li {
	font-size: 2rem;
	line-height: 1;
	color: var(--c-white);
}
.mainvisual .info_box li span {
	margin-right: 5px;
}
.mainvisual .info_box li a {
	color: var(--c-white);
	display: block;
}
/* subvisual */
.subvisual {
	width: 100%;
	height: 340px;
	margin-top: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/* pankuzu */
.pankuzu {
	max-width: 800px;
	margin-top: -30px;
	padding: 20px 0;
	background: var(--c-cyan);
	font-size: 1.2rem ;
}
.pankuzu ol li {
	display: inline-block;
	color: var(--c-white);
}
.pankuzu ol li:first-child:before {
	content: none;
}
.pankuzu ol li:before {
	content: '\f054';
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	color: var(--c-primary-2);
	vertical-align: text-bottom;
}
.pankuzu ol li:first-child {
	color: var(--c-white);
}
.pankuzu ol li a {
	color: var(--c-primary-2);
}
/* footer */
footer {
	background: var(--c-bg);
}
/* info_box */
footer .info_box {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
footer .info_box li {
	width: 200px;
	color: var(--c-primary);
	font-size: 2rem;
	font-family: var(--ff-serif);
}
footer .info_box li span {
	color: var(--c-primary-4);
	margin-right: 3px;
	font-size: 1.3rem;
}
footer .info_box a {
	font-size: 2rem;
	color: var(--c-primary);
}
/* footer_btn */
footer .footer_btn {
	width: 100%;
	background: var(--c-surface-muted);
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
	display: none;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
footer .footer_btn li {
	width: calc(100% / 3);
	padding: 10px 0;
}
footer .footer_btn li a {
	width: 80%;
    margin: 0.5%;
    padding: 15px 0;
    z-index: 999;
    border: 1px solid var(--c-border);
    background: var(--a-white-90);
    box-shadow: 0 0 10px rgba(0,0,0,0.10);
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    font-feature-settings: "palt";
    color: #1f5e6f;
    line-height: 1.4;
}
footer .footer_btn li:last-child a {
	border-right: 1;
}
footer .inner {
	padding: 40px 10px;
}
/* logo */
footer .logo {
	width: 220px;
	margin-bottom: 10px;
}
footer nav {
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--c-primary);
}
/* menu */
footer nav .menu {
	color: var(--c-primary-3);
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: .4rem;
	display: none;
	padding: 1rem 2rem;
  	border-top: 3px double var(--c-primary-3);
  	border-bottom: 3px double var(--c-primary-3);
}
/* footer_nav */
footer .footer_nav {
	font-family: var(--ff-serif);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer .footer_nav li{
	width: 16%;
}
footer .footer_nav li a {
	width: 100%;
	padding: 10px;
	color: var(--c-primary);
	display: block;
	position: relative;
	transition: var(--t-base);
}
footer .footer_nav li a:hover {
	color: var(--c-primary-2);
}
footer .footer_nav li a::after {
	width: 0;
	height: 1px;
	margin: 0 auto;
	background-color: var(--c-primary-2);
	position: absolute;
	left: 30%;
	bottom: 5px;
	content: '';
	transition: var(--t-base);
}
footer .footer_nav li a:hover::after {
	width: 40%;
}
footer .footer_sns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer .footer_sns li {
	margin: 0 10px;
}
footer .footer_sns li a {
	width: 40px;
	height: 40px;
	border: 1px solid var(--c-white);
	border-radius: 50%;
	line-height: 40px;
	color: var(--c-white);
	display: block;
	font-size: 1.6rem;
}
/* copywriter */
footer .copywriter {
	padding: 5px 0;
	background: var(--c-white);
	font-size: 1rem;
}

/*--------------------------------------
top page
--------------------------------------*/
/* today_schedule */
.section_today_schedule {
	background-color: var(--c-surface-4);
}
/* btn_01 */
.section_today_schedule .btn_01 {
	background: var(--c-bg);
}
/* topics */
.section_topics .title {
	color: var(--c-primary);
}
.section_topics .inner {
	max-width: 820px;
}
.section_topics article {
	margin-bottom: 1px;
	padding: 15px;
	background: var(--c-white);
	text-align: left;
	cursor: pointer;
}
.section_topics article h3 {
	font-family: var(--ff-serif);
	position: relative;
	transition: .2s ease-in-out;
}
.section_topics article h3::after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: 5px;
	right: 0;
	transform: rotate(0deg);
	transition: .2s ease-in-out;
}
.section_topics article:first-child h3::after {
	transform: rotate(90deg);
}
.section_topics article:first-child h3.open::after {
	transform: rotate(0deg);
}
#topics_page.section_topics article:first-child h3::after {
	transform: rotate(0deg);
}
#topics_page.section_topics article:first-child h3.open::after {
	transform: rotate(90deg);
}
.section_topics article h3.open {
	/* margin-bottom: 10px;*/
}
.section_topics article h3.open::after {
	transform: rotate(90deg);
}
.section_topics article h3 time {
	margin-right: 5px;
	padding: 5px;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 1rem;
	font-family: sans-serif;
	display: inline-block;
	vertical-align: 2px;
}
.section_topics article:first-child .topics_txt {
	display: block;
}
#topics_page.section_topics article:first-child .topics_txt {
	display: none;
}
.section_topics article .topics_txt {
	display: none;
}
.section_topics article .topics_txt img {
	max-width: 260px !important;
	height: auto !important;
}
.section_topics .btn_01 {
	margin-top: 20px;
}
.topics_txt{
	margin-top: 10px;
}
.topics .btn_blog ul a {
	width: 140px;
	height: auto;
	background: var(--c-text);
	color: var(--c-white);
}
/*topicspage*/
/* section_topics */
.subvisual.topics {
	background: url(../images/bg_subvisual_schedule.jpg) top center no-repeat;
	background-size: cover;
}
/* .pagination{
    max-width: 800px;
    margin: 10px auto;
    display: flex;
}
.pagination li{
    width: 40px;
}
.pagination li a {
	margin: 0 auto;
    background: var(--c-gray-850);
    line-height: 60px;
    display: block;
    color: var(--c-white);
    font-size: 1.6rem;
    font-family: var(--ff-serif);
    text-align: center;
    transition: var(--t-base);
    position: relative;
    cursor: pointer;
}
.pagination li a:hover{
	opacity: 0.5;
}
.pagination li.active a{
    background: var(--c-black);
    } */
    /* section_therapist */
	
    .section_therapist {
    	background: var(--c-bg);
    }
    .section_therapist .inner {
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: wrap;
    	flex-wrap: wrap;
    	-webkit-box-pack: justify;
    	-ms-flex-pack: justify;
    	justify-content: space-between;
    	-webkit-box-align: stretch;
    	-ms-flex-align: stretch;
    	align-items: stretch;
    }
    .section_therapist .inner > section {
    	width: 96%;
    }
    /* cast_box */
    .section_therapist .cast_box {
    	margin-bottom: 0;
    	-ms-flex-wrap: nowrap;
    	flex-wrap: nowrap;
    }
    .section_therapist .cast_box li {
    	margin: 0;
    }
    /* section_recruit */
	
	
    .section_recruit {
    	background:
    	url(../images/bg_recruit.png) 100% 0% no-repeat,
    	url(../images/bg_vis_02.jpg) center repeat;
    	background-size: auto;
    	text-align: left;
    	position: relative;
    }
    .section_recruit::after {
    	position: absolute;
    	bottom: -10px;
    	right: 0;
    	content: 'RECRUIT';
    	display: block;
    	font-size: 7.2rem;
    	font-family: var(--ff-serif);
    	letter-spacing: .8rem;
    	line-height: 1;
    	opacity: .4;
    	color: var(--c-ink);
    }
    .section_recruit .inner {
    	max-width: 820px;
    }
    .section_recruit h2 {
    	margin-bottom: 30px;
    	font-size: 4.8rem;
    	font-family: var(--ff-serif);
    	color: var(--c-ink);
    	line-height: 1.2;
    	letter-spacing: .8rem;
    }
    .section_recruit h2 span {
    	margin-bottom: 10px;
    	font-size: 1.6rem;
    	display: block;
    }
    .section_recruit p {
    	margin-bottom: 20px;
    	font-size: 2rem;
    }
    .section_recruit .btn_01 {
    	max-width: 300px;
    	display: inline-block;
    	line-height: 50px;
    	letter-spacing: .2rem;
    }
    /* section_sns */
    .section_sns {
    	background: url(../images/bg_sns.jpg) center no-repeat;
    	background-size: cover;
    }
    .section_sns.outer {
    	padding: 2.5% 0;
		background: hsla(0, 0%, 100%, .5);
    }
    .section_sns ul {
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: nowrap;
    	flex-wrap: nowrap;
    	-webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
    	-webkit-box-align: stretch;
    	-ms-flex-align: stretch;
    	align-items: stretch;
    }
    .section_sns ul li {
    	max-width: 640px;
    	margin: 0 10px;
    }
    /* section_concept */
    .section_concept {
    	/* iOSで動かないからスマホサイズでfiex外す */
    	background: var(--a-concept-75);
 
    }
    .section_concept .inner {
    	max-width: 820px;
    }
    .section_concept h2 {
    	width: 100%;
    	margin-bottom: 20px;
    	padding: 5px 0;
    	background: url(../images/bg_titile.png) center no-repeat;
    	background-size: 260px;
    	font-size: 3.2rem;
    	font-family: var(--ff-serif);
    	letter-spacing: .4rem;
    	text-indent: .4rem;
    	color: var(--c-border);
    }
    .section_concept h2 span {
    	display: block;
    	font-size: 1.3rem;
    	color: var(--c-white);
    	letter-spacing: .8rem;
    }
    .section_concept .concept_txt {
    	margin-bottom: 20px;
    	color: var(--c-white);
    }
    .section_concept .concept_txt .sub {
    	margin-bottom: 10px;
    	font-size: 1.6rem;
    }
    /* concept_box */
    .section_concept .concept_box li {
    	min-height: 460px;
    	margin-bottom: 40px;
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: wrap;
    	flex-wrap: wrap;
    	-webkit-box-align: start;
    	-ms-flex-align: start;
    	align-items: flex-start;
    	position: relative;
    }
    /* div.txt */
    .section_concept .concept_box li div.txt {
    	width: 100%;
    	max-width: 540px;
    	margin: 160px auto 0 0;
    	padding: 4%;
    	background: url(../images/bg_vis_01.jpg) center repeat;
    	background-size: auto;
    	border: 1px solid var(--c-text);
    	outline: solid 2px var(--c-outline);
    	text-align: justify;
    	z-index: 100;
    }
    .section_concept .concept_box li:nth-child(even) div.txt {
    	margin: 160px 0 0 auto;
    }
    .section_concept .concept_box li div.txt h3 {
    	margin-bottom: 10px;
    	font-size: 2.4rem;
    	font-family: var(--ff-serif);
    	text-align: center;
    	color: var(--c-ink);
    }
    .section_concept .concept_box li div.txt p {
    	line-height: 1.6;
    }

    /* figure */
    .section_concept .concept_box li figure {
    	max-width: 480px;
    	position: absolute;
    	top: 0;
    	right: 0;
    }
    .section_concept .concept_box li:nth-child(even) figure {
    	left: 0;
    	right: auto ;
    }
    /* credit */
    .credit {
    	padding: 5px;
    	background: var(--c-night) url(../images/bg_credit.jpg) center right no-repeat;
    	background-size: contain;
    }
    .credit a {
    	padding: 6%;
    	border: 1px solid var(--a-white-60);
    	display: block;
    	color: var(--c-white);

    	font-size: 2.4rem;
    	font-family: var(--ff-serif);
    	line-height: 1;
    	text-align: left;
    	letter-spacing: .4rem;
    }
    .credit a span {
    	margin-bottom: 10px;
    	color: var(--c-border);
    	font-size: 1.3rem;
    	display: block;
    }
    .credit a i {
    	margin-left: 5px;
    	font-size: 1.3rem;
    	vertical-align: middle;
    }
    /* bnr_box */
    .section_bnr.outer {
    	padding: 2.5% 0;
    }
    .section_bnr .bnr_box {
    	display: -webkit-box;
    	display: -ms-flexbox;
    	display: flex;
    	-ms-flex-wrap: wrap;
    	flex-wrap: wrap;
    	-webkit-box-pack: center;
    	-ms-flex-pack: center;
    	justify-content: center;
    	-webkit-box-align: center;
    	-ms-flex-align: center;
    	align-items: center;
    }
    .section_bnr .bnr_box li {
    	width: 24%;
    	margin: 0 0.5%;
    	padding: 3px;
    }
    .section_bnr .bnr_box li:nth-child(3) {
    	background: url(../images/bg_bnr_blog.jpg) top center no-repeat;
    	background-size: cover;
    }
    .section_bnr .bnr_box li:nth-child(2) {
    	background: url(../images/bg_bnr_recruit.jpg) top center no-repeat;
    	background-size: cover;
    }
    .section_bnr .bnr_box li:nth-child(1) {
    	background: url(../images/bg_bnr_access.jpg) top center no-repeat;
    	background-size: cover;
    }
    .section_bnr .bnr_box li:nth-child(4) {
    	background: url(../images/bg_bnr_therapist.jpg) top center no-repeat;
    	background-size: cover;
    }
    .section_bnr .bnr_box li a {
    	width: 100%;
    	height: 100%;
    	padding: 80px 10px 10px 10px;
    	border: 1px solid var(--a-white-60);
    	display: block;
    	color: var(--c-white);
		/* 描边（Chrome / Edge / Safari） */
		-webkit-text-stroke: 1px var(--c-primary);
		text-stroke: 1px var(--c-primary); /* 非标准，留着不影响 */
    	font-family: var(--ff-serif);
    	text-align: left;
    }
    .section_bnr .bnr_box li h2 {
    	font-size: 2rem;
    }
    .section_bnr .bnr_box li p {
    	font-size: 1rem;
    }

/*--------------------------------------
system page
--------------------------------------*/
.system.inner {
	max-width: 820px;
}
.subvisual.system {
	background: url(../images/bg_subvisual_system.jpg) top center no-repeat;
	background-size: cover;
}
/* event_box */
/* .contents_system .event_box {
	margin-bottom: 20px;
	padding: 5px;
	background: url(../images/bg_system_event.jpg) top center no-repeat;
	background-size: cover;
	} */
	/* txt_box */
	.contents_system .txt_box {
		padding: 10% 5%;
		border: 1px solid var(--c-white);
		color: var(--c-white);
	}
	.contents_system .txt_box h3 {
		font-size: 2.4rem;
		font-family: var(--ff-serif);
	}
	.contents_system .txt_box p {
		padding: 10px 0;
	}
	.contents_system .system_box {
		margin-bottom: 40px;
		width: 100%;
    	border: 3px solid var(--c-primary);
    	padding: 6px;
		background: var(--c-white);
	}
	.contents_system .system_inner {
		padding: 10px;
		border: 1px solid var(--c-primary);
    	width: 100%;
   		height: 100%;
	}
	/* title_system */
	.contents_system .title_system {
		padding: 5px;
		background: var(--c-primary);
	}
	.contents_system .title_system {
		padding: 10px;
		font-size: 2.4rem;
		font-family: var(--ff-serif);
		color: var(--c-white);
		letter-spacing: .6rem;
	}
	.contents_system .title_system span {
		font-size: 1.2rem;
		display: block;
		color: var(--c-white);
	}
	/* txt_system_01 */
	.contents_system .txt_system_01 {
		margin-bottom: 30px;
		padding: 10px;
		background: url(../images/bg_vis_01.jpg) repeat;
	}
	/* txt_system_02 */
	.contents_system .txt_system_02 {
		margin-bottom: 10px;
		padding-left: 10px;
		border-left: 2px solid var(--c-ink);
		color: var(--c-ink);
		text-align: left;
	}
	/* table_system */
	.contents_system .table_system {
		width: 100%;
		padding: 20px;
		font-size: 1.6rem;
	}
	.contents_system .table_system span {
		font-size: 1rem;
		font-weight: 600;
	}
	.contents_system .table_system th,
	.contents_system .table_system td {
		padding: 15px;
		border: 1px solid var(--c-border-2);
		vertical-align: middle;
		color: var(--c-gray-700);
		line-height: 1;
	}
	.contents_system .table_system th {
		background: var(--c-primary);
		color: var(--c-white);
	}
	.contents_system .table_system td:first-child {
		background: var(--c-surface-3);
	}
	/* credit_box */
	.contents_system .credit_box {
		margin-bottom: 40px;
		text-align: left;
	}
	/* credit_info */
	.contents_system .credit_info h4 {
		margin-bottom: 10px;
		padding: 10px;
		background: var(--c-text);
		border: 4px double var(--c-border);
		text-align: center;
		font-size: 1.6rem;
		color: var(--c-white);
	}
	.contents_system .credit_info p {
		margin-bottom: 20px;
	}
	.contents_system .credit_info p a {
		color: var(--c-ink);
		text-decoration: underline;
	}
/*--------------------------------------
staff page
--------------------------------------*/
.subvisual.staff {
	background: url(../images/bg_subvisual_staff.jpg) top center no-repeat;
	background-size: cover;
}
.contents_staff .tab_group {
	justify-content: center;
}
.contents_staff .tab_group .tab {
	margin: 1%;
	width: 18%;
}
/*--------------------------------------
profile page
--------------------------------------*/
.subvisual.profile {
	background: url(../images/bg_subvisual_staff.jpg) top center no-repeat;
	background-size: cover;
}
/* profile_box */
.profile_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	transition: var(--t-base);
}
/* profile_box_right */
.profile_box_right {
	width: 65%;
}
/* name */
.profile_box_right .name {
	margin-bottom: 5px;
	font-size: 1.6rem;
	text-align: center;
}
.profile_box_right .name span {
	margin-right: 5px;
	font-size: 1.3rem;
	color: var(--c-primary-2);
}
/* size */
.profile_box_right .size  {
	text-align: center;
}
.profile_box_right .size span {
	font-size: 1rem;
	color: var(--c-primary-2);
}
/* date_box */
.profile_box_right .date_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.profile_box_right .date_box li {
	width: 50%;
	max-width: 140px;
	margin: 10px 1% 0 1%;
	padding: 5px;
	background: var(--c-ink-2);
	border: 1px double var(--c-ink);
	text-align: center;
	color: var(--c-ink);
}
.profile_box_right .date_box li:last-child {
	border: 1px double var(--c-primary-2);
	color: var(--c-primary-2);
}
/* profile_box_left */
.profile_box_left {
	width: 30%;
}
/* img_wrap */
.profile_box_left .slider_prof{
	width: 100%;
	max-width: 280px;
	margin: 0 auto 10px;
	/*padding: 10px;*/
	border: 10px solid var(--c-text);
}
.profile_box_left .img_wrap {
	/*width: 100%;
	max-width: 280px;
	margin: 0 auto 20px;
	padding: 10px;
	background: var(--c-text);*/
}
/* img_box */
.profile_box_left .img_box {
	width: 100%;
	height: auto;
	overflow: hidden;
	position: relative;
}
.profile_box_left .img_box::before {
	content: "";
	display: block;
	padding-top: 150%;
}
/* img */
.profile_box_left .img_box img.staff {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.profile_box_left img.cast_thumb {
	width: 50px;
	height: 75px;
	margin-bottom: 20px;
}
/* icon_new */
.profile_box_left .img_box .icon_new {
	width: 80px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.profile_box_left .img_box .icon_new img {
	display: block;
}

.profile_box_left .img_box .icon_check {
	width: 130px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.profile_box_left .img_box .icon_check img {
	display: block;
}

/* class */
.profile_box_left .img_box .class {
	background: var(--a-white-85);
	color: var(--c-ink);
	text-align: center;
	font-weight: 600;
	line-height: 2;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.profile_center{
	width: 100%;
}
.reserve_btn{
	width: 100%;
	max-width: 800px;
	display: flex;
	margin: 0px auto 75px;
	background: var(--c-bg);
	box-shadow: 0 -8px 14px -3px var(--c-shadow-inset) inset;
}
.reserve_btn a{
	color: var(--c-white);
	font-size: 20px;
	display: block;
	margin: auto;
	width: 100%;
	height: 100%;
	padding: 20px 0px;
	font-family: 'Noto Serif JP', 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif
}

/*プロフィール画像swipe設定*/
.swiper-container .slider-thumbnail {
	border: 1px solid var(--c-gray-800);
}
.swiper-container .swiper-wrapper .swiper-slide {
	opacity: 1;
	overflow: hidden;
	padding: 2px;
	font-size: 0;
}
.swiper-slide {
	cursor: pointer;
	border-collapse: collapse;
	box-sizing: border-box;
}
.swiper-slide img.staff,
.swiper-slide img.cast_thumb {
	object-fit: cover;
	width: auto;
	height: 300px;
}
.swiper-slide-thumb-active {
	opacity: .3!important;
}
.slider-thumbnail .swiper-slide img{
	/*margin: 10px 0;*/
	width: 50px;
	height: 75px;
}
/*.swiper-button-next,
.swiper-container-rtl .swiper-button-prev{
	background-image: url(../images/arrow_right.png) !important;
	background-size: 15px !important;
	right: 0 !important;
}
.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	background-image: url(../images/arrow_left.png) !important;
	background-size: 15px !important;
	left: 0 !important;
	}*/
	.swiper-button-next,
	.swiper-container-rtl .swiper-button-prev,
	.swiper-button-prev,
	.swiper-container-rtl .swiper-button-next{
		display: none !important;
	}




	/* profile_twitter */
	.profile_box_left .profile_twitter {
		padding: 10px;
		background: var(--c-text);
	}
	.profile_box_left .profile_twitter .twitter-timeline {
		width: 99999px !important;
	}
	.profile_box_left .schedule_box {
		margin-bottom: 0;
	}
	/* table_sch */
	.table_sch {
		width: 100%;
		padding: 70px 15px 15px 15px;
		background: var(--c-text);
		color: var(--c-white);
		display: block;
		text-align: left;
	}
	.table_sch tbody {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		border: 1px solid var(--c-text-3);
	}
	.table_sch tr {
		width: 50%;
	}
	.table_sch th,
	.table_sch td {
		min-height: 60px;
		padding: 10px 0;
		border-bottom: 1px solid var(--c-text-3);
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.table_sch th:nth-child(7),
	.table_sch td:nth-child(7),
	.table_sch th:nth-child(14),
	.table_sch td:nth-child(14) {
		border-bottom: 0;
	}
	.table_sch th {
		background: var(--c-ink-2);
		border-right: 1px solid var(--c-text-3);
		color: var(--c-primary-2);
	}
	/* shop */
	.table_sch td p.shop {
		width: 100%;
		text-align: center;
		font-size: 1.2rem;
	}
	/* reserve */
	.table_sch td span.reserve {
		color: #bd82a0;
		font-weight: 600;
	}
	/* time */
	.table_sch td p.time {
		width: 100%;
		text-align: center;
		font-size: 1.6rem;
		letter-spacing: .3rem;
		line-height: 1;
	}
	/* comment */
	.comment img {
		max-width: 100% !important;
		height: auto !important;
	}
	/* flexslider */
	.contents_profile .schedule_box .flex-direction-nav a {
		width: 120px;
		height: 40px;
		margin: 0 auto;
		border-radius: 20px;
		line-height: 40px;
		top: 15px;
	}
	.contents_profile .schedule_box .flex-direction-nav .flex-next {
		right: 15px;
	}
	.contents_profile .schedule_box .flex-direction-nav .flex-prev {
		left: 15px;
	}
	.contents_profile .schedule_box .flex-direction-nav .flex-next::after {
		right: 10px;
	}
	.contents_profile .schedule_box .flex-direction-nav .flex-prev::after {
		left: 10px;
	}
/*--------------------------------------
schedule page
--------------------------------------*/
.subvisual.schedule {
	background: url(../images/bg_subvisual_schedule.jpg) top center no-repeat;
	background-size: cover;
}
/* schedule_box */
.schedule_box {
	position: relative;
}
/* schedule_nav */
.schedule_box .schedule_nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.schedule_box .schedule_nav li {
	width: 10.5%;
}
.schedule_box .schedule_nav li a {
	padding: 10px;
	background: #f5f5f5;
	border: 2px solid var(--c-white);
	box-sizing: border-box;
	font-size: 1.2rem;
	display: block;
	transition: var(--t-base);
}
.schedule_box .schedule_nav li a span {
	display: block;
	font-size: 1.4rem;
}
.schedule_box .schedule_nav li a:hover {
	background: var(--c-text-2);
	color: var(--c-white);
}
/* active */
.schedule_box .schedule_nav li.active a {
	background: var(--c-text-2);
	color: var(--c-white);
}
/* flexslider */
.schedule_box .flex-direction-nav a {
	width: 58px;
	height: 58px;
	margin: 0;
	background: var(--c-white);
	border: 1px solid var(--c-text-2);
	border-radius: 50%;
	text-align: center;
	line-height: 58px;
	position: absolute;
	top: 0;
	opacity: 1;
	text-shadow: none;
}
.schedule_box .flex-direction-nav a:hover {
	background: var(--c-text-2);
	color: var(--c-white);
}
.schedule_box .flex-direction-nav a:before {
	display: none;
}
.schedule_box .flex-direction-nav .flex-next {
	right: 0;
}
.schedule_box .flex-direction-nav .flex-next::after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: -1px;
	right: 5px;
}
.schedule_box .flex-direction-nav .flex-prev {
	left: 0;
}
.schedule_box .flex-direction-nav .flex-prev::after {
	margin: 0;
	content: "\f053";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: -1px;
	left: 5px;
}
.schedule_box .flex-direction-nav .flex-disabled {
	pointer-events: none; background-color: transparent;
}

/*--------------------------------------
access page
--------------------------------------*/
.access.inner {
	max-width: 820px;
}
.subvisual.access {
	background: url(../images/bg_subvisual_system.jpg) top center no-repeat;
	background-size: cover;
}
/* access_box */
.access_box {
	padding: 20px;
	border: 4px double var(--c-border);
}
/* txt */
.access_box li {
	margin-bottom: 40px;
	color: var(--c-white);
	text-align: justify;
}
.access_box li:last-child {
	margin-bottom: 0;;
}
.access_box li h4 {
	margin-bottom: 10px;
	padding: 10px;
	background: var(--c-primary);
	font-size: 2rem;
	font-family: var(--ff-serif);
	color: var(--c-white);
}
.access_box li p i {
	margin-right: 3px;
	font-size: 1.2rem;
	vertical-align: 2px;
}

/*--------------------------------------
recruit page
--------------------------------------*/
.contents_recruit{
	width: 100%;
    border: 3px solid var(--c-text-5);
    padding: 6px;
    background: var(--c-white);
	}


.recruit.inner {
	max-width: 820px;
}
.subvisual.recruit {
	background: url(../images/bg_subvisual_recruit.jpg) 80% 100% no-repeat;
	background-size: cover;
}
/* recruit_box */
.contents_recruit .recruit_box {
	margin-bottom: 40px;
	padding: 5px;
	background: url(../images/bg_recruit_txt.jpg) center no-repeat;
	background-size: cover;
}
/* txt_desc */
.contents_recruit .txt_desc {
	padding: 5% 15%;
	border: 1px solid var(--c-white);
}
.contents_recruit .txt_desc h3 {
	margin-bottom: 10px;
	padding: 10px;
	font-size: 4rem;
	font-family: var(--ff-serif);
	color: #e8d9b7;
}
.contents_recruit .txt_desc h3 span {
	font-size: 1.6rem;
	font-weight: normal;
	display: block;
	opacity: .8;
	letter-spacing: .8rem;
}
/* txt_area */
.contents_recruit .txt_area {
	padding: 20px;
	border-top: 4px double var(--c-border);
	border-bottom: 4px double var(--c-border);
	font-size: 1.6rem;
	color: var(--c-white);
}
.contents_recruit .sub {
	font-size: 2.4rem;
	color: var(--c-white);
}
.contents_recruit .txt_area ul {
	padding: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.contents_recruit .txt_area ul li {
	width: 48%;
	max-width: 220px;
	padding: 10px;
	margin: 0 1% 2% 1%;
	background: var(--a-white-90);
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
	color: var(--c-text);
	font-size: 2rem;
}
.contents_recruit .txt_area ul li:nth-last-child(-n+2) {
	margin-bottom: 0;
}
.contents_recruit .txt_area ul li::before {
	margin-right: 5px;
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1.2rem;
	color: var(--c-ink);
	vertical-align: middle;
}
/* recruit_list */
.contents_recruit .recruit_list li {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	position: relative;
}
/* div.txt */
.contents_recruit .recruit_list li div.txt {
	width: 100%;
	max-width: 600px;
	margin-top: 40px;
	padding: 4%;
	background: var(--a-white-80);
	border: 1px solid var(--c-text-2);
	outline: solid 2px var(--c-white);
	box-shadow: var(--shadow-sm);
	text-align: justify;
	z-index: 100;
}
.contents_recruit .recruit_list li:nth-child(even) div.txt {
	margin-left: auto;
}
.contents_recruit .recruit_list li div.txt h3 {
	margin-bottom: 10px;
	font-size: 2.4rem;
	font-family: var(--ff-serif);
	text-align: center;
	color: var(--c-ink);
}
.contents_recruit .recruit_list li div.txt h3 span {
	display: block;
	font-size: 1.4rem;
	letter-spacing: .8rem;
	text-indent: .8rem;
}
.contents_recruit .recruit_list li div.txt p {
	line-height: 1.6;
}
/* figure */
.contents_recruit .recruit_list li figure {
	max-width: 480px;
	box-shadow: var(--shadow-sm);
	position: absolute;
	top: 0;
	right: 0;
}
.contents_recruit .recruit_list li:nth-child(even) figure {
	left: 0;
	right: auto;
}
.contents_recruit .recruit_list li figure img {
	padding: 3px;
	background: var(--c-white);
}
/*--------------------------------------
blog page
--------------------------------------*/
#blog {
	background: #f6fdff;
}
.subvisual.blog {
	background: url(../images/bg_subvisual_blog.jpg) top center no-repeat;
	background-size: cover;
}
/* contents_blog */
.contents_blog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.contents_blog img{
	max-width: 100%;
}
/* main_blog */
.main_blog {
	width: 68%;
}
.main_blog .blog_box {
	margin-bottom: 20px;
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}
.main_blog .blog_box h3 {
	padding: 15px;
	background: var(--c-text);
	color: var(--c-white);
	font-size: 1.6rem;
	font-family: var(--ff-serif);
	text-align: left;
}
.main_blog .blog_box h3::before {
	margin: 0;
	vertical-align: 1px;
	font-weight: bold;
	font-size: 1.2rem;
	content: "\f00a";
	font-family: "Font Awesome 5 Free";
}
/* blog_list */
.main_blog .blog_list article a {
	padding: 4%;
	border-bottom: 1px solid var(--c-gray-200);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.main_blog .blog_list article:last-child a {
	border-bottom: 0;
}
/* img_box */
.main_blog .blog_list .img_box {
	width: 100%;
	max-width: 140px;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
}
.main_blog .blog_list .img_box:before {
	content:"";
	display: block;
	padding-top: 100%;
}
.main_blog .blog_list .img_box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
/* txt_box */
.main_blog .blog_list .txt_box {
	width: 100%;
	margin-left: 4%;
	text-align: justify;
}
.main_blog .blog_list .txt_box time {
	color: var(--c-ink);
	font-size: 1rem;
	font-weight: 600;
}
.main_blog .blog_list .txt_box h4 {
	margin-bottom: 10px;
	font-size: 2rem;
	font-family: var(--ff-serif);
}
.main_blog .blog_list .txt_box p {
	padding: 10px;
	background: #f6fdff;
	font-size: 1.2rem;
	color: #828282;
	position: relative;
}
.main_blog .blog_list .txt_box p::before {
	margin-top: -5px;
	border: 5px solid transparent;
	border-right: 10px solid #f3f3f3;
	content: "";
	position: absolute;
	top: 50%;
	left: -15px;
}
.main_blog .blog_list .txt_box p.sp {
	display: none;
}
/* btn_blog */
.btn_blog ul {
	margin-bottom: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn_blog ul li {
	margin: 1%;
}
.btn_blog ul a {
	width: 40px;
	height: 40px;
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
	line-height: 40px;
	text-align: center;
	display: block;
	transition: var(--t-base);
	color: var(--c-text);
}
.btn_blog ul li a:hover {
	background: var(--c-text);
	color: var(--c-white);
}
.btn_blog ul li.active a {
	background: var(--c-text);
	color: var(--c-white);
}

/* side_blog */
.side_blog {
	width: 28%;
}
/* tablist */
.tablist h3 {
	padding: 15px;
	background: var(--c-text);
	color: var(--c-white);
	font-size: 1.6rem;
	font-family: var(--ff-serif);
	text-align: left;
}
.tablist h3:before {
	margin: 0;
	margin-right: 5px;
	vertical-align: 1px;
	font-weight: bold;
	font-size: 1.2rem;
	content: "\f02c";
	font-family: "Font Awesome 5 Free";
}
.tablist ul {
	margin-bottom: 15px;
	padding: 10px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.tablist li {
	margin: 10px 5px;
}
.tablist li a {
	padding: 10px;
	background: var(--c-white);
	border-radius: 2em;
	box-shadow: var(--shadow-sm);
	line-height: 1;
	letter-spacing: 0;
	color: var(--c-ink);
	font-size: 1.2rem;
	transition: var(--t-base);
}
.tablist li a::before {
	margin-right: -3px;
	content: "#";
}
/* tag_select */
.tag_select {
	padding-top: 10px;
	border-top: 1px solid var(--c-gray-200);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.tag_select li {
	margin: 5px 3px;
}
.tag_select li a {
	padding: 5px 10px;
	background: var(--c-white);
	border: 1px solid var(--c-ink);
	border-radius: var(--r-2);
	line-height: 1;
	letter-spacing: 0;
	color: var(--c-ink);
	font-size: 1.2rem;
	transition: var(--t-base);
}
.tag_select li a::before {
	margin-right: -3px;
	content: "#";
}
/* search */
.search {
	margin-bottom: 30px;
}
.search form {
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}
.search input {
	height: 55px;
	padding: 0 15px;
	background: 0;
	border: 0;
	text-align: justify;
	font-size: 1.6rem;
}
.search form {
	position: relative;
	cursor: pointer;
}
.search button {
	width: 55px;
	height: 55px;
	background: var(--c-text);
	line-height: 55px;
	position: absolute;
	top: 0;
	right: 0;
	color: var(--c-white);
	font-size: 1.6rem;
	display: block;
}
/* archive */
.archive {
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
}
.archive h3 {
	padding: 0 15px;
	font-size: 1.6rem;
	text-align: left;
	cursor: pointer;
	position: relative;
	line-height: 55px;
}
.archive h3:after {
	margin: 0;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: bold;
	font-size: 1rem;
	position: absolute;
	top: 0;
	right: 15px;
	transform: rotate(90deg);
	transition: var(--t-base);
}
.archive h3.open:after {
	transform: rotate(-90deg);
}
.archive ul {
	display: none;
}
.archive ul li {
	border-bottom: 1px solid var(--c-gray-200);
	position: relative;
}
.archive ul li:first-child {
	border-top: 1px solid var(--c-gray-200);
}
.archive ul li:last-child {
	border-bottom: 0;
}
.archive ul li a {
	padding: 15px;
	display: block;
	color: var(--c-ink);
	text-align: left;
	transition: var(--t-base);
}
.archive ul li a span {
	width: 20px;
	height: 20px;
	background: var(--c-ink);
	border-radius: 50%;
	line-height: 20px;
	color: var(--c-white);
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	position: absolute;
	right: 10px;
}
/* blog_sp */
.blog_sp {
	display: none;
}
/*--------------------------------------
blog_detail page
--------------------------------------*/
.subvisual.blog_detail {
	background: url(../images/bg_subvisual_blog.jpg) top center no-repeat;
	background-size: cover;
}
/* blog_detail_box */
.main_blog .blog_detail_box {
	margin-bottom: 20px;
	padding: 4%;
	background: var(--c-white);
	box-shadow: var(--shadow-sm);
	text-align: justify;
}
.main_blog .blog_detail_box time {
	color: var(--c-ink);
}
.main_blog .blog_detail_box h3 {
	margin-bottom: 10px;
	font-size: 2.4rem;
	font-family: var(--ff-serif);
}
/* tablist */
.main_blog .blog_detail_box .tablist ul {
	margin-bottom: 0;
}
/* editor_box */
.main_blog .editor_box img {
	max-width: 100% !important;
	height: auto !important;
}
/*--------------------------------------
report page
--------------------------------------*/
.subvisual.report {
	background: url(../images/bg_subvisual_blog.jpg) top center no-repeat;
	background-size: cover;
}
.report_date{
	font-size: 1rem;
	font-weight: 600;
}
/*--------------------------------------
report_datail page
--------------------------------------*/
.subvisual.report_detail {
	background: url(../images/bg_subvisual_blog.jpg) top center no-repeat;
	background-size: cover;
}

/*--------------------------------------
media page
--------------------------------------*/
.media.inner {
	max-width: 820px;
}
.subvisual.media {
	background: url(../images/bg_subvisual_link.jpg) top center no-repeat;
	background-size: cover;
}

/*--------------------------------------
error page
--------------------------------------*/
.err.inner {
	max-width: 820px;
}
.subvisual.err {
	background: url(../images/bg_subvisual_err.jpg) top center no-repeat;
	background-size: cover;
}
.contents_err .err_title {
	color: var(--c-ink);
	font-size: 3.2rem;
}
.contents_err .err_subtitle {
	margin-bottom: 20px;
	font-size: 1.6rem;
}

/*--------------------------------------
tablet css
--------------------------------------*/
@media screen and (max-width: 1024px) {

	/* pc menu*/
	header .nav {
		display: none;
	}
	/* nav_btn */
	#nav_btn {
		display: block;
	}
	/* header */
	header {
		height: 70px;
	}
	header section.inner {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	header h1 {
		width: 190px;
		line-height: 70px;
	}
	/* title */
	.title {
		background-size: 220px;
		color: var(--c-primary);
		font-size: 3.4rem;
		letter-spacing: .2rem;
		text-indent: .2rem;		
	}
	.title span {
		font-size: 1.5rem;
	}
	/* subtitle */
	.subtitle {
		line-height: 1.2;
	}
	.subtitle span {
		display: block;
	}
	/* mainvisual */
	.mainvisual {
		margin-top: 70px;
		background: url(../images/bg_mainvisual_sm.jpg) 10% 0 no-repeat;
		background-attachment: initial;
		background-size: cover;
	}
	/* subvisual */
	.subvisual {
		height: 160px;
		margin-top: 70px;
	}
	/* pankuzu */
	.pankuzu {
		max-width: 100%;
		margin-top: 0;
		padding: 10px 0;
	}
}

/*------------------------------------------
mobile css
------------------------------------------*/
@media screen and (max-width: 768px) {
	
	body {
    	background-size: 70px;
	}

	/* table_01 */
	.table_01 .example_box li {
		width: 100%;
	}
	.table_01 .example_box li:first-child {
		margin-bottom: 10px;
	}

	/* cast_box */
	.cast_box li {
		width: 31.333%;
	}
	/* tab_group 本日の出勤 */
	.section_today_schedule .tab_group .tab {
		padding: 10px;
		width: 33%;
	}
	/* tab_group スケジュールページ */
	.contents_schedule .tab_group .tab {
		padding: 10px;
		width: 33%;
	}
	/* tab_group セラピスト一覧 */
	.contents_staff .tab_group .tab {
		padding: 10px;
		width: 33%;
	}


	/* panel_group */
	.panel_group h3 {
		width: 100%;
		font-size: 1.6rem;
	}
	/* footer */
	footer {
		padding-bottom: 55px;
	}
	/* menu */
	footer nav .menu {
		display: block;
	}
	footer .footer_nav li {
		width: 50%;
		text-align: center;
	}
	footer .footer_nav li a::after {
		content: none;
	}
	footer .footer_nav li a {
		font-size: 1.6rem;
	}
	footer .footer_sns {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	/* info_box */
	footer .info_box li {
		width: 160px;
		font-size: 1.6rem;
	}
	footer .info_box a {
		font-size: 1.6rem;
	}
	/* footer_btn */
	footer .footer_btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	/* mainvisual */
	.mainvisual::after {
		font-size: 4rem;
		letter-spacing: .2rem;
		bottom: -7px;
	}
	/* mainvisual_inner */
	.mainvisual_inner > div {
		min-height: 580px;
	}
	div.main_bnr {
		max-width: 260px;
	}
	div.main_bnr ul li img {
		max-width: 200px;
	}
	div.main_staff {
		width: 90%;
	}
	div.main_staff p {
		padding-top: 10px;
	}
	/* section_therapist */
	.section_therapist .inner > section {
		width: 100%;
	}
	.section_therapist .new_therapist {
		margin-bottom: 4%;
	}
	/* section_recruit */
	.section_recruit {
		background:
		url(../images/bg_recruit.png) 100% 0% no-repeat,
		url(../images/bg_vis_02.jpg) center repeat;
		background-size: 80%, auto;
	}
	.section_recruit::after {
		font-size: 4rem;
		letter-spacing: .2rem;
		bottom: -7px;
	}
	.section_recruit.outer {
		padding: 8% 4%;
	}
	.section_recruit h2 {
		margin-bottom: 10px;
		font-size: 2.4rem;
	}
	.section_recruit h2 span {
		font-size: 1.2rem;
	}
	.section_recruit p {
		font-size: 1.4rem;
	}
	.section_recruit .btn_01 {
		max-width: 240px;
	}
	/* section_concept */
	.section_concept h2 {
		background-size: 220px;
		font-size: 2.4rem;
		letter-spacing: .2rem;
		text-indent: .2rem;
	}
	.section_concept .concept_box li {
		min-height: auto;
		margin-bottom: 30px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.section_concept .concept_box li div.txt,
	.section_concept .concept_box li:nth-child(even) div.txt {
		margin: -140px 0 0 0;
		order: 1;
	}
	.section_concept .concept_box li div.txt h3 {
		font-size: 1.6rem;
	}
	.section_concept .concept_box li figure {
		max-width: 360px;
		margin-bottom: 10px;
		position: static;
		top: auto;
		right: auto;
	}
	/* section_bnr */
	.section_bnr .bnr_box li {
		width: 48%;
		margin: 1%;
	}
	.section_bnr .bnr_box li h2 {
		font-size: 1.6rem;
	}
	/* schedule page */
	.contents_schedule .schedule_box {
		padding-top: 50px;
	}
	.contents_schedule .schedule_box .schedule_nav li {
		width: 25%;
	}
	.contents_schedule .schedule_box .schedule_nav li a {
		padding: 5px;
	}
	.contents_schedule .schedule_box .flex-direction-nav a {
		width: 120px;
		height: 40px;
		margin: 0 auto;
		border-radius: 20px;
		line-height: 40px;
	}
	/* profile page */
	.profile_box_left,
	.profile_box_right {
		width: 100%;
	}
	.profile_box_left .profile_twitter {
		margin-bottom: 40px;
	}
	.profile_box_left .img_wrap {
		max-width: 220px;
	}
	.profile_box_left .img_box .icon_new {
		width: 60px;
	}
	.profile_box_left .img_box .icon_check {
		width: 100px;
	}
	.profile_box_right .schedule_box {
		padding-top: 0;
	}

	/* recruit page */
	.contents_recruit .txt_desc {
		padding: 4%;
	}
	.contents_recruit .txt_desc h3 {
		font-size: 2.4rem;
	}
	.contents_recruit .txt_desc h3 span {
		font-size: 1.2rem;
	}
	.contents_recruit .txt_area {
		padding: 20px 0;
		font-size: 1.4rem;
	}
	.contents_recruit .txt_area .sub {
		font-size: 2rem;
	}
	.contents_recruit .txt_area ul li {
		padding: 5px;
		font-size: 1.6rem;
	}
	.contents_recruit .recruit_list {
		margin-bottom: 40px;
		padding: 4%;
		background: var(--c-white);
		box-shadow: var(--shadow-sm);
	}
	.contents_recruit .recruit_list li {
		margin-bottom: 40px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.contents_recruit .recruit_list li:last-child {
		margin-bottom: 0;
	}
	.contents_recruit .recruit_list li div.txt,
	.contents_recruit .recruit_list li:nth-child(even) div.txt {
		margin: 0;
		padding: 0;
		background: 0;
		border: 0;
		box-shadow: none;
		outline: 0;
		order: 1;
	}
	.contents_recruit .recruit_list li div.txt h3 {
		margin-bottom: 5px;
		font-size: 1.6rem;
	}
	.contents_recruit .recruit_list li div.txt h3 span {
		font-size: 1rem;
	}
	.contents_recruit .recruit_list li figure {
		max-width: 400px;
		margin-bottom: 10px;
		box-shadow: none;
		position: static;
		top: auto;
		right: auto;
	}
	.contents_recruit .recruit_list li figure img {
		padding: 0;
	}
	/* media page */
	.contents_media .table_01 {
		display: none;
	}
	/* blog page */
	.main_blog {
		width: 100%;
		margin-bottom: 40px;
	}
	.side_blog {
		width: 100%;
	}
}

@media screen and (max-width: 480px) {

	.bg_type {
		padding: 15px;
	}

	/* cast_box */
	.cast_box li {
		width: 48%;
	}
	/* name */
	.cast_box li .name {
		font-size: 1.4rem;
	}
	/* size */
	.cast_box li .size {
		font-size: 1rem;
	}
	/* icon_new */
	.cast_box li .icon_new {
		width: 50px;
		height: 50px;
	}
	.cast_box li .icon_check {
		width: 80px;
		height: 70px;
	}
	/* tab */
	/* tab_group 本日の出勤 */
	.section_today_schedule .tab_group .tab {
		width: 49.5%;
	}
	/* btn_01 */
	.btn_01,
	.btn_01 a {
		max-width: 260px;
		line-height: 45px;
	}
	/* info_box */
	footer .info_box li {
		width: 100%;
	}
	/* mainvisual */
	.mainvisual_inner > div {
		/*min-height: 290px;*/
	}
	div.main_bnr {
		max-width: 170px;
	}
	div.main_bnr ul li img {
		max-width: 170px;
	}
	div.main_staff {
		width: 90%;
	}
	div.main_staff ul li img {
		padding: 3px;
	}
	div.main_staff p {
		max-width: 100px;
	}
	.section_topics article {
		padding: 10px;
	}
	.section_topics article h3::after {
		top: 15px;
	}
	.section_topics article h3 time {
		width: 80px;
		margin: 0 0 2px 0;
		padding: 3px;
		display: block;
		text-align: center;
	}
	/* section_recruit */
	.section_recruit {
		background:
		url(../images/bg_recruit.png) 300% 0% no-repeat,
		url(../images/bg_vis_02.jpg) center repeat;
		background-size: 90%, auto;
	}
	.section_recruit::after {
		content: '';
	}
	.section_recruit h2 {
		letter-spacing: .1rem;
	}
	.section_recruit h2 span {
		margin-bottom: 5px;
		font-size: 1rem;
		letter-spacing: .6rem;
	}
	.section_recruit p {
		margin-bottom: 10px;
		font-size: 1.2rem;
	}
	.section_recruit .btn_01 {
		max-width: 140px;
		font-size: 1rem;
		line-height: 30px;
	}
	.section_recruit .btn_01::after {
		right: 10px;
	}
	/* section_sns */
	.section_sns {
		background: url(../images/bg_sns_s.jpg) center no-repeat;
		background-size: cover;
	}
	.section_sns.outer {
		padding: 6% 0;
	}
	.section_sns ul {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.section_sns ul li:last-child {
		margin-bottom: 0;
	}
	.section_sns ul li {
		max-width: 640px;
		margin: 0 0 10px 0;
	}
	/* section_concept */
	.section_concept {
		background: var(--a-concept-75);
	}
	.section_concept .concept_box li figure {
		max-width: 100%;
		margin: 0 ;
	}
	/* credit */
	.credit a {
		font-size: 1.6rem;
	}
	/* bnr_box */
	.section_bnr.outer {
		padding: 4% 0;
	}
	/* system page */
	.contents_system .system_inner {
		padding: 10px;
	}
	.contents_system .title_system {
		font-size: 1.6rem;
	}
	.contents_system .title_system span {
		font-size: 1rem;
	}
	.contents_system .table_system {
		font-size: 1.4rem;
	}
	.contents_system .credit_info h4 {
		padding: 5px;
		font-size: 1.4rem;
	}
	.credit a span {
		font-size: 1rem;
	}
	.credit a i {
		font-size: 1rem;
		vertical-align: 2px;
	}
	/* staff page */
	.contents_staff .tab_group .tab {
		width: 48%;
	}
	/* schedule page */
	.contents_schedule .tab_group .tab {
		width: 49.5%;
	}

	/* recruit page */
	.contents_recruit .recruit_list li figure {
		max-width: 100%;
		margin-bottom: 20px;
	}
	/* access page */
	.access_box {
		padding: 10px;
	}
	.access_box li {
		font-size: 1.3rem;
	}
	.access_box li h4 {
		font-size: 1.6rem;
	}
	/* blog page */
	.main_blog .blog_list article a {
		padding: 3%;
	}
	.main_blog .blog_list .txt_box h4 {
		margin-bottom: 5px;
		font-size: 1.4rem;
	}
	.main_blog .blog_list .txt_box p {
		font-size: 1rem;
	}
	.main_blog .blog_list .txt_box p.pc {
		display: none;
	}
	.main_blog .blog_list .txt_box p.sp {
		display: block;
	}
	.main_blog .blog_list .img_box {
		max-width: 80px;
	}
	.main_blog .blog_detail_box h3 {
		font-size: 1.6rem;

	}
	.main_blog .blog_detail_box time {
		font-size: 1.2rem;
	}
	/* blog_sp */
	.blog_sp {
		display: block;
	}
	.blog_sp .tablist ul {
		margin-bottom: 0;
		padding: 20px 0;
		overflow-x: auto;
		white-space: nowrap;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.blog_sp .search {
		margin-bottom: 0;
		padding: 0 10px;
	}
	.reserve_btn{
		padding: 0px;
	}
	.reserve_btn a{
		font-size: 14px;
		padding: 10px;
	}
}

@media screen and (max-width: 320px) {
	header h1 {
		width: 170px;
		line-height: 70px;
	}
}
/*------------------------------------------
swiper slide
------------------------------------------*/
.effect_slide .swiper-button-next,
.effect_slide .swiper-container-rtl .swiper-button-prev,
.effect_slide .swiper-button-prev,
.effect_slide .swiper-container-rtl .swiper-button-next {
	background-image:none;
}
.effect_slide .swiper-button-next {
	right: 0;
}
.effect_slide .swiper-button-prev {
	left: 0;
}
.effect_slide .swiper-button-next,
.effect_slide .swiper-button-prev {
	width: 25px;
	height: 50px;
	margin-top: -50px;
	background: var(--c-white);
	opacity: .8;
}
.effect_slide .swiper-button-next i,
.effect_slide .swiper-button-prev i {
	line-height: 50px;
	color: var(--c-text);
}
.effect_slide .swiper-pagination {
	padding-top: 10px;
	position: initial;
	/*bottom: 0 !important;*/
}
.effect_slide .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	background: var(--c-white);
	opacity: .8;
}
.effect_slide .swiper-pagination-bullet-active {
	background-color: var(--c-ink);
	opacity: 1;
}

/*------------------------------------------
swiper fade
------------------------------------------*/
.effect_fade .swiper-pagination-bullet {
	width: 40px;
	height: 2px;
	background: var(--c-text);
	border-radius: 0;
	opacity: .4;
}
.effect_fade .swiper-pagination-bullet-active {
	background-color: var(--c-ink);
	opacity: 1;
}