@charset "UTF-8";
/*　////////////////////////////////
mixin
//////////////////////////////////　*/
/*
@include css3(transition, 0.5s);
*/
/*　////////////////////////////////
HTML5の場合は値を「false」から「true」にする
//////////////////////////////////　*/
/*　////////////////////////////////
// 汎用クラスを使用するか
//////////////////////////////////　*/
/*　////////////////////////////////
ブレイクポイント
//////////////////////////////////　*/
/*　////////////////////////////////
ベースフォント
//////////////////////////////////　*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&family=Noto+Serif+JP:wght@400;600&display=swap");
/*　////////////////////////////////
カラー
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
flex include
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
初期値top:50%; left:50%;
[@include set-top();] [@include set-left();]
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*  -----※縦中央、横中央は併用不可------  */
/*縦中央*/
/*横中央*/
/* -----上下左右中央、%指定で調整可能----- */
/*　////////////////////////////////
flex 設定
//////////////////////////////////　*/
/*　////////////////////////////////
三角形
//////////////////////////////////　*/
/*　////////////////////////////////
矢印
//////////////////////////////////　*/
/*　////////////////////////////////////////////////////////////////////////////////////////////////
font-size
//////////////////////////////////////////////////////////////////////////////////////////////////　*/
/*　////////////////////////////////
汎用style
//////////////////////////////////　*/
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

/*　////////////////////////////////
テキスト
//////////////////////////////////　*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSerifJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSerifJP-Black.woff") format("woff");
  font-display: swap;
}
.mincho {
  font-family: "NotoSerifJP", "游明朝", YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ 明朝", serif;
}

/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb30 {
    margin-bottom: 15px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }
  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #f69077;
  color: #fff;
}
::selection {
  background: #f69077;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover,
a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #000;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background-color: #f1d476;
  color: #333;
  padding: 10px;
  display: inline-block;
}

/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  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;
}

input,
select {
  vertical-align: middle;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container02 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1080px;
}

@media (min-width: 1220px) {
  .container {
    width: 1024px;
  }
  .container02 {
    width: 1080px;
  }
}
.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.txet-center {
  text-align: center;
}

.lg-center {
  text-align: left;
}
@media (min-width: 1220px) {
  .lg-center {
    text-align: center;
  }
}

.md-center {
  text-align: left;
}
@media (min-width: 987px) {
  .md-center {
    text-align: center;
  }
}

.sm-center {
  text-align: left;
}
@media (min-width: 768px) {
  .sm-center {
    text-align: center;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

/*改行時１文字分先頭から空ける*/
.indent-txt {
  text-indent: -1em;
  margin-left: 1em;
}

.grecaptcha-badge {
  bottom: 80px !important;
}

.menu-toggle, .menu-toggle span {
  display: inline-block;
  transition: all 0.6s;
  box-sizing: border-box;
}

.menu-toggle {
  position: fixed;
  top: 0px;
  left: 13px;
  width: 25px;
  height: 60px;
  z-index: 120;
  background: none;
  border: none;
}
@media (min-width: 987px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle p {
  font-size: 13px;
  margin-top: 46px;
  color: #f1d476;
  letter-spacing: 1px;
}
.menu-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #555;
  z-index: 120;
}
.menu-toggle span:nth-of-type(1) {
  top: 14px;
}
.menu-toggle span:nth-of-type(2) {
  top: 24px;
}
.menu-toggle span:nth-of-type(3) {
  top: 34px;
}

.menu-toggle.active {
  opacity: 1;
  background-color: initial;
  border: none;
}
.menu-toggle.active p {
  color: #fff;
}
.menu-toggle.active span {
  background-color: #555;
}
.menu-toggle.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-of-type(3) {
  transform: translateY(-11px) rotate(-45deg);
  bottom: 33px;
}

@media (max-width: 987px) {
  .main-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
  }
  .main-menu .global-nav {
    width: 50%;
    background: #fff;
    top: -20px;
    position: absolute;
  }
  .main-menu .global-nav li {
    text-align: left !important;
    padding: 10px;
    margin: 0 30px !important;
  }
  .main-menu ul {
    margin: 20px 0;
    padding: 20px 0;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(-200px);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.6s ease;
    will-change: transform, animation, position;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
  }
  .main-menu ul li {
    list-style-type: none;
    text-align: left;
    padding: 10px !important;
    border-bottom: 1px solid #ccc !important;
  }
  .main-menu ul li:hover {
    background: none !important;
  }
  .main-menu ul li:hover a {
    color: #000 !important;
  }
  .main-menu ul li a {
    display: inline-block;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    font-size: 1.6rem;
    padding: 0 !important;
    opacity: 1;
  }
  .main-menu ul li a:hover {
    background: none !important;
    color: #000 !important;
    opacity: 0.3 !important;
    transition: all 0.4s;
  }
  .main-menu.active {
    right: 0;
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }
  .main-menu.active ul {
    transform: translateX(0);
    opacity: 1;
    transition: transform 1s ease, opacity 0.9s ease;
  }
  button:focus:not(.focus-visible) {
    outline: none;
  }
}
@media (max-width: 768px) {
  .main-menu .global-nav {
    width: 60%;
  }
}
@media (max-width: 480px) {
  .main-menu .global-nav {
    width: 80%;
  }
}
/*　////////////////////////////////
clearfix[@extend .clearfix];
//////////////////////////////////　*/
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  content: "";
  clear: both;
}

html {
  font-size: 62.5%;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-weight: 100;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
body ul li {
  list-style-type: none;
}

/*　////////////////////////////////
テキスト
//////////////////////////////////　*/
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/NotoSerifJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/NotoSerifJP-Black.woff") format("woff");
  font-display: swap;
}
.mincho {
  font-family: "NotoSerifJP", "游明朝", YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "ＭＳ 明朝", serif;
}

/*　////////////////////////////////
改行
//////////////////////////////////　*/
.pc-br {
  display: none;
}
@media (min-width: 480px) {
  .pc-br {
    display: block;
  }
}

@media (min-width: 480px) {
  .sp-br {
    display: none;
  }
}

.tb-br {
  display: none;
}
@media (min-width: 768px) {
  .tb-br {
    display: block;
  }
}

@media (min-width: 768px) {
  .br-tb {
    display: none;
  }
}

.md-br {
  display: none;
}
@media (min-width: 987px) {
  .md-br {
    display: block;
  }
}

@media (min-width: 987px) {
  .br-md {
    display: none;
  }
}

.lg-br {
  display: none;
}
@media (min-width: 1220px) {
  .lg-br {
    display: block;
  }
}

@media (min-width: 1220px) {
  .br-lg {
    display: none;
  }
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .mb30 {
    margin-bottom: 15px;
  }
}

.mb40 {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px;
  }
}

/*　////////////////////////////////
画像切り替え
//////////////////////////////////　*/
.pc-img {
  display: none !important;
}

.sp-img {
  display: block !important;
}

@media (min-width: 768px) {
  .pc-img {
    display: block !important;
  }
  .sp-img {
    display: none !important;
  }
}
/*　////////////////////////////////
OP
//////////////////////////////////　*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*　////////////////////////////////
テキストselection
//////////////////////////////////　*/
::-moz-selection {
  background: #f69077;
  color: #fff;
}
::selection {
  background: #f69077;
  color: #fff;
}

/*　////////////////////////////////
a
//////////////////////////////////　*/
a:hover,
a {
  text-decoration: none;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: #000;
}

a:active {
  text-decoration: none;
}

/*　////////////////////////////////
img
//////////////////////////////////　*/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 480px) {
  img {
    max-width: 100%;
  }
}

/*　////////////////////////////////
pagetop
//////////////////////////////////　*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}
.pagetop a {
  background-color: #f1d476;
  color: #333;
  padding: 10px;
  display: inline-block;
}

/*　////////////////////////////////
reset
//////////////////////////////////　*/
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  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;
}

input,
select {
  vertical-align: middle;
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}

/*　////////////////////////////////
共通
//////////////////////////////////　*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
}

.container02 {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1080px;
}

@media (min-width: 1220px) {
  .container {
    width: 1024px;
  }
  .container02 {
    width: 1080px;
  }
}
.container:before,
.container:after {
  content: " ";
  display: table;
}

.container:after {
  clear: both;
}

.txet-center {
  text-align: center;
}

.lg-center {
  text-align: left;
}
@media (min-width: 1220px) {
  .lg-center {
    text-align: center;
  }
}

.md-center {
  text-align: left;
}
@media (min-width: 987px) {
  .md-center {
    text-align: center;
  }
}

.sm-center {
  text-align: left;
}
@media (min-width: 768px) {
  .sm-center {
    text-align: center;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

/*改行時１文字分先頭から空ける*/
.indent-txt {
  text-indent: -1em;
  margin-left: 1em;
}

.grecaptcha-badge {
  bottom: 80px !important;
}

body {
  font-size: 1.6rem;
  color: #000;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 4s ease 0s 1 normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  line-height: 1.8;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  body {
    max-width: 1024px;
  }
}
@media (min-width: 1220px) {
  body {
    width: 100%;
    max-width: initial;
  }
}
body p,
body a,
body li,
body dt,
body dd {
  font-weight: bold;
}
body ul {
  margin: 0;
}
body ul li {
  list-style-type: none;
}
body a span:hover,
body a:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  transition: 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

.all-wrapper {
  font-weight: normal;
  color: #3e3a39;
  /*　////////////////////////////////
  header
  //////////////////////////////////　*/
  /*パンくず*/
  /*------------------------
  ページナビ
  -------------------------*/
  /*　////////////////////////////////
  footer
  //////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  共通
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////
  liスタイル
  //////////////////////////////////　*/
  /*　////////////////////////////////
  見出しスタイル
  //////////////////////////////////　*/
  /*　////////////////////////////////
  ボタンスタイル
  //////////////////////////////////　*/
  /*　////////////////////////////////
  テーブルスタイル
  //////////////////////////////////　*/
  /*　////////////////////////////////
  flex
  //////////////////////////////////　*/
  /*------- flex-style ---------*/
  /*　////////////////////////////////
  3列枠　スタイル
  //////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  top
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  施術事例
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  お客様の声
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  施術解説
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  メニュー・料金
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  お問い合わせ　リンクエリア
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  店舗情報
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  新着情報
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  よくあるご質問
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  フッター上リンクエリア
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  採用情報
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*　////////////////////////////////////////////////////////////////////////////////////////////////
  アーカイブページ設定
  //////////////////////////////////////////////////////////////////////////////////////////////////　*/
  /*固定予約ボタン*/
  /* / .all-wrapper */
}
.all-wrapper .lower-wrapper {
  padding-top: 100px;
}
.all-wrapper .lower-header-fixed {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 10;
  left: 0;
  top: 0;
}
.all-wrapper .lower-header {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 10px auto 10px;
  align-items: baseline;
}
.all-wrapper .lower-header .logo-area {
  width: calc(100% - 160px);
  text-align: center;
}
.all-wrapper .lower-header .logo-area img {
  max-height: 33px;
  width: auto;
}
.all-wrapper .lower-header .lower-menu {
  position: absolute;
}
.all-wrapper .lower-header .lower-menu .global-nav li {
  display: block;
  box-sizing: border-box;
  text-align: center;
}
.all-wrapper .lower-header .lower-menu .global-nav li:hover {
  background: #8fcaca;
  opacity: 1;
}
.all-wrapper .lower-header .lower-menu .global-nav li:hover a {
  color: #fff;
  opacity: 1;
}
.all-wrapper .lower-header .lower-menu .global-nav li a {
  padding: 15px;
  box-sizing: border-box;
  font-size: 1.5rem;
}
.all-wrapper .lower-header .btnA {
  margin-left: auto;
  width: 160px;
}
.all-wrapper .lower-header .btnA a {
  font-size: 1.3rem;
  padding: 6px 5px 6px 25px;
}
.all-wrapper .lower-header .btnA a .arrow::before {
  width: 14px;
  height: 14px;
}
@media (min-width: 768px) {
  .all-wrapper .lower-header .logo-area {
    width: calc(100% - 200px);
  }
  .all-wrapper .lower-header .btnA {
    margin-left: auto;
    width: 200px;
  }
  .all-wrapper .lower-header .btnA a {
    font-size: 1.6rem;
    padding: 7px 10px 7px 40px;
  }
  .all-wrapper .lower-header .btnA a .arrow::before {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 987px) {
  .all-wrapper .lower-wrapper {
    padding-top: 150px;
  }
  .all-wrapper .lower-header .logo-area {
    width: 13%;
  }
  .all-wrapper .lower-header .lower-menu {
    display: block;
    position: static;
    width: calc(87% - 200px);
  }
  .all-wrapper .lower-header .lower-menu .main-menu {
    display: block;
  }
  .all-wrapper .lower-header .lower-menu .global-nav {
    display: flex;
    justify-content: center;
  }
  .all-wrapper .lower-header .lower-menu .global-nav li {
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
  }
  .all-wrapper .lower-header .lower-menu .global-nav li:hover {
    background: #8fcaca;
    opacity: 1;
  }
  .all-wrapper .lower-header .lower-menu .global-nav li:hover a {
    color: #fff;
    opacity: 1;
  }
  .all-wrapper .lower-header .lower-menu .global-nav li a {
    display: block;
    padding: 15px;
    box-sizing: border-box;
    font-size: 1.3rem;
  }
}
@media (min-width: 1220px) {
  .all-wrapper .lower-header .lower-menu .global-nav li a {
    font-size: 1.5rem;
  }
}
.all-wrapper .breadcrumb-wrap {
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  margin: 0 0 20px;
  padding: 0;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 1.2rem;
  line-height: 1;
  color: #000;
  font-weight: bold;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li a {
  text-decoration: none;
  color: darkblue;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li a:hover {
  text-decoration: underline;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li:after {
  content: "＞";
  padding: 0 3px;
}
.all-wrapper .breadcrumb-wrap .breadcrumb li:last-child:after {
  content: "";
}
.all-wrapper .pagenavi {
  text-align: center;
}
.all-wrapper .pagenavi a.page-numbers {
  padding: 5px 7px;
  border: 1px solid #f1d476;
  color: #f1d476;
}
.all-wrapper .pagenavi .current {
  padding: 5px 7px;
  border: 1px solid #f1d476;
  background-color: #f1d476;
  color: #fff;
}
.all-wrapper .pagenavi2 {
  text-align: center;
}
.all-wrapper .pagenavi2 h2.screen-reader-text {
  display: none;
}
.all-wrapper .pagenavi2 ul li {
  display: inline-block;
  margin-bottom: 20px;
}
.all-wrapper .pagenavi2 ul li a {
  padding: 5px 7px;
  border: 1px solid #f1d476;
  color: #f1d476;
}
.all-wrapper .pagenavi2 ul li span.current {
  background-color: #f1d476;
  color: #fff;
  border: 1px solid #f1d476;
  padding: 5px 7px;
}
.all-wrapper .pagenavi2 ul li span.dots {
  border: 1px solid #808080;
  color: #808080;
  padding: 5px 10px;
}
.all-wrapper footer.footer {
  background: #8fcaca;
  padding-top: 20px;
  width: 100%;
}
.all-wrapper footer.footer p,
.all-wrapper footer.footer a,
.all-wrapper footer.footer th,
.all-wrapper footer.footer td,
.all-wrapper footer.footer li {
  color: #fff;
  border-color: #fff;
}
.all-wrapper footer.footer .store-info-wrap {
  margin-top: 0;
}
.all-wrapper footer.footer .store-info-wrap .info-table {
  margin-bottom: 20px;
}
.all-wrapper footer.footer .store-info-wrap .info-table .foot-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.all-wrapper footer.footer .store-info-wrap .info-table th,
.all-wrapper footer.footer .store-info-wrap .info-table td {
  padding: 5px 12px;
}
.all-wrapper footer.footer .store-info-wrap .info-table th {
  border-right: 1px solid #fff;
}
.all-wrapper footer.footer .store-info-wrap .info-table td a {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.all-wrapper footer.footer .store-info-wrap .foot-sns-area {
  margin-bottom: 20px;
}
.all-wrapper footer.footer .store-info-wrap .foot-sns-area ul {
  text-align: center;
}
.all-wrapper footer.footer .store-info-wrap .foot-sns-area ul li {
  display: inline-block;
}
.all-wrapper footer.footer .store-info-wrap .foot-sns-area ul li:not(:last-child) {
  margin-right: 10%;
}
.all-wrapper footer.footer .store-info-wrap .foot-sns-area img {
  height: 30px;
  width: auto;
}
.all-wrapper footer.footer .store-info-wrap .btnA {
  max-width: 350px;
  width: 100%;
  background: #fff;
  border-color: #fff;
  padding: 10px;
  margin: 0 auto;
}
.all-wrapper footer.footer .store-info-wrap .btnA a {
  font-size: 1.6rem;
  color: #000;
}
.all-wrapper footer.footer .store-info-wrap .btnA a .arrow::before {
  background-image: url("../img/arrow_b.svg");
}
.all-wrapper footer.footer .store-info-wrap .footer-nav li {
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
}
.all-wrapper footer.footer .store-info-wrap .footer-nav li a {
  display: block;
  font-size: 1.5rem;
  padding: 10px;
}
.all-wrapper footer.footer .copyright {
  padding: 5px;
  background: #000;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .all-wrapper footer.footer .store-info-wrap .info-table {
    margin-bottom: 0;
  }
  .all-wrapper footer.footer .store-info-wrap .info-table .foot-title {
    font-size: 1.8rem;
  }
  .all-wrapper footer.footer .copyright {
    text-align: right;
    padding: 5px 5%;
  }
}
.all-wrapper section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .all-wrapper section {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .all-wrapper .sm-mt {
    margin-top: 30px;
  }
}
@media (max-width: 987px) {
  .all-wrapper .md-mt {
    margin-top: 30px;
  }
}
.all-wrapper .li-style li {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .li-style li::before {
  content: "・";
}
.all-wrapper .border-title {
  font-size: 1.8rem;
  line-height: 1.5;
  border-bottom: 1px solid #8fcaca;
  margin-bottom: 15px;
  padding-bottom: 2px;
}
.all-wrapper .h-style-a {
  font-size: 1.7rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  border-bottom: solid 1px #707070;
  width: 100%;
  margin: 0 auto 30px;
}
.all-wrapper .h-style-a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30%;
  background: #8fcaca;
  left: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  .all-wrapper .h-style-a {
    font-size: 2.2rem;
    margin: 0 auto 40px;
    width: 44%;
  }
}
.all-wrapper .h-style-b {
  font-size: 1.7rem;
  font-weight: bold;
  position: relative;
  border-bottom: solid 1px #707070;
  width: 100%;
  margin-bottom: 30px;
}
.all-wrapper .h-style-b::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 30%;
  background: #8fcaca;
  left: 0;
  bottom: -1px;
}
@media (min-width: 768px) {
  .all-wrapper .h-style-b {
    font-size: 2.2rem;
    width: 44%;
    margin-bottom: 50px;
  }
}
.all-wrapper .h-style-c {
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  position: relative;
  border-bottom: solid 1px #707070;
  width: 100%;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .all-wrapper .h-style-c {
    font-size: 2.8rem;
    margin: 0 auto 40px;
  }
}
.all-wrapper .h-style-s {
  text-align: center;
  font-size: 1.8rem;
  margin: 60px auto 30px;
  border-bottom: 1px solid black;
  width: 280px;
}
.all-wrapper .h-border-lr {
  border-left: 10px solid #8fcaca;
  border-right: 10px solid #8fcaca;
  margin: 40px 20px 30px;
  text-align: center;
  padding: 0 7px;
}
.all-wrapper .h-style-bg {
  background: #8fcaca;
  border-radius: 5px;
  font-size: 1.7rem;
  color: #fff;
  padding: 10px;
  margin-bottom: 30px;
}
.all-wrapper .h-border {
  font-size: 1.6rem;
  border-bottom: 1px solid #8fcaca;
  margin-bottom: 25px;
}
.all-wrapper .btnA {
  width: 200px;
  background-color: #f69077;
  border-radius: 6px;
  border: solid 1px #f69077;
  margin: auto 0;
  box-sizing: border-box;
  text-align: center;
}
.all-wrapper .btnA a {
  color: #fff;
  padding: 7px 10px 7px 40px;
  box-sizing: border-box;
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
}
.all-wrapper .btnA a .arrow {
  position: relative;
}
.all-wrapper .btnA a .arrow::before {
  content: "";
  position: absolute;
  background-image: url("../img/arrow_w.svg");
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
}
.all-wrapper .table-style {
  width: 100%;
  box-sizing: border-box;
  border-right: 1px solid #f8f8f8;
  border-left: 1px solid #f8f8f8;
  border-top: 1px solid #f8f8f8;
}
.all-wrapper .table-style th,
.all-wrapper .table-style td {
  display: block;
  box-sizing: border-box;
  padding: 10px;
  line-height: 1.5;
  font-size: 1.5rem;
}
.all-wrapper .table-style th {
  background: #f8f8f8;
}
.all-wrapper .table-style td {
  border-bottom: 1px solid #f8f8f8;
}
.all-wrapper .table-style .td-contents {
  margin-bottom: 12px;
}
.all-wrapper .table-style .td-contents .square,
.all-wrapper .table-style .td-contents .kome {
  text-indent: -1em;
  margin-left: 1em;
}
.all-wrapper .table-style .td-contents .square::before {
  content: "■";
}
.all-wrapper .table-style .td-contents .kome::before {
  content: "※";
}
@media (min-width: 768px) {
  .all-wrapper .table-style {
    width: 100%;
  }
  .all-wrapper .table-style th,
.all-wrapper .table-style td {
    display: table-cell;
  }
  .all-wrapper .table-style th {
    width: 25%;
  }
  .all-wrapper .table-style th:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .all-wrapper .table-style td {
    width: 75%;
  }
}
.all-wrapper .flex-style {
  display: flex;
  flex-wrap: wrap;
  zoom: 1;
}
.all-wrapper .flex-style:after {
  display: block;
  content: "";
  clear: both;
}
.all-wrapper .flex-style .box-3,
.all-wrapper .flex-style .box-2a,
.all-wrapper .flex-style .box-2b,
.all-wrapper .flex-style .box-4 {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .all-wrapper .flex-style .box-2a, .all-wrapper .flex-style .box-2b {
    margin-bottom: 40px;
  }
  .all-wrapper .flex-style .box-2a {
    width: 48%;
    margin-right: 4%;
  }
  .all-wrapper .flex-style .box-2b {
    width: 48%;
  }
  .all-wrapper .col-reverse .box-2a {
    margin-right: 0;
  }
  .all-wrapper .col-reverse .box-2b {
    margin-right: 4%;
  }
}
@media (min-width: 768px) {
  .all-wrapper .flex-style .box-3 {
    width: 30.66%;
    margin-bottom: 30px;
  }
  .all-wrapper .flex-style .box-3:not(:nth-child(3n)) {
    margin-right: 4%;
  }
}
.all-wrapper .flex-style .box-4 {
  width: 48%;
  margin-bottom: 30px;
}
.all-wrapper .flex-style .box-4:not(:nth-child(4n)) {
  margin-right: 4%;
}
@media (min-width: 768px) {
  .all-wrapper .flex-style .box-4 {
    width: 22.75%;
  }
  .all-wrapper .flex-style .box-4:not(:nth-child(4n)) {
    margin-right: 3%;
  }
}
.all-wrapper .three-tile {
  display: flex;
  flex-wrap: wrap;
}
.all-wrapper .three-tile .tile-box {
  box-sizing: border-box;
  margin-bottom: 30px;
  width: 100%;
}
.all-wrapper .three-tile .tile-box .bg-title {
  background: #8fcaca;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  margin: 15px auto;
  padding: 8px;
  box-sizing: border-box;
  text-align: center;
}
@media (min-width: 480px) {
  .all-wrapper .three-tile .tile-box {
    width: 48%;
    margin-bottom: 40px;
  }
  .all-wrapper .three-tile .tile-box:nth-child(2n) {
    margin-left: 4%;
  }
}
@media (min-width: 768px) {
  .all-wrapper .three-tile .tile-box {
    width: 32%;
    margin-bottom: 50px;
  }
  .all-wrapper .three-tile .tile-box:nth-child(2n) {
    margin-left: 0;
  }
  .all-wrapper .three-tile .tile-box:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .all-wrapper .three-tile .tile-box .bg-title {
    font-size: 1.7rem;
  }
}
.all-wrapper .top-header {
  margin-top: 10px;
}
.all-wrapper .top-header .logo-area {
  height: 60px;
  width: auto;
  margin: 0 auto;
  text-align: center;
}
.all-wrapper .top-header .logo-area img {
  height: 50px;
  width: auto;
}
.all-wrapper .top-header .main-visual {
  width: 100%;
  height: 320px;
  background-image: url("../img/top_main.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.all-wrapper .top-header .main-visual .main-visual-txt {
  position: absolute;
  font-size: 1.8rem;
  writing-mode: vertical-rl;
  line-height: 1.8;
  letter-spacing: 0.2em;
  display: inline-block;
  height: auto;
  top: 50%;
  left: 90%;
  transform: translate(-90%, -50%);
  height: 230px;
}
.all-wrapper .top-header .main-visual .main-visual-txt .txt_2 {
  margin-top: 1em;
  display: inline-block;
}
.all-wrapper .top-header .main-visual .main-visual-txt .txt_3 {
  margin-top: 3em;
  display: inline-block;
}
.all-wrapper .top-header .main-menu {
  display: flex;
  flex-wrap: wrap;
}
.all-wrapper .top-header .main-menu .global-nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 200px);
}
.all-wrapper .top-header .main-menu .global-nav li {
  display: inline-block;
  width: 12.5%;
  box-sizing: border-box;
  text-align: center;
}
.all-wrapper .top-header .main-menu .global-nav li:hover {
  background: #8fcaca;
  opacity: 1;
}
.all-wrapper .top-header .main-menu .global-nav li:hover a {
  color: #fff;
  opacity: 1;
}
.all-wrapper .top-header .main-menu .global-nav li a {
  display: block;
  padding: 15px;
  box-sizing: border-box;
}
.all-wrapper .top-header .main-menu .reserve-btn {
  width: 200px;
  background-color: #f69077;
  border-radius: 6px;
  border: solid 1px #f69077;
  margin: auto 0;
  box-sizing: border-box;
  text-align: center;
}
.all-wrapper .top-header .main-menu .reserve-btn a {
  color: #fff;
  padding: 15px 10px 15px 40px;
  box-sizing: border-box;
  display: block;
  font-weight: bold;
  font-size: 1.4rem;
}
.all-wrapper .top-header .main-menu .reserve-btn a .arrow {
  position: relative;
}
.all-wrapper .top-header .main-menu .reserve-btn a .arrow::before {
  content: "";
  position: absolute;
  background-image: url("../img/arrow_w.svg");
  background-size: contain;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
}
.all-wrapper .top-header .pc-menu {
  display: none;
  margin: 0 auto 20px;
}
.all-wrapper .top-header .sp-menu {
  display: block;
  margin: 0 auto 20px;
  width: 92%;
}
.all-wrapper .top-header .sp-menu .global-nav {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #8fcaca;
}
.all-wrapper .top-header .sp-menu .global-nav li {
  width: 33.33%;
  box-sizing: border-box;
  text-align: center;
  padding: 10px;
}
.all-wrapper .top-header .sp-menu .global-nav li:not(:nth-child(3n)) {
  border-right: 1px dashed #d6d6d6;
}
.all-wrapper .top-header .sp-menu .global-nav li:first-child, .all-wrapper .top-header .sp-menu .global-nav li:nth-child(2), .all-wrapper .top-header .sp-menu .global-nav li:nth-child(3) {
  border-bottom: 1px dashed #d6d6d6;
}
.all-wrapper .top-header .sp-menu .global-nav li img {
  display: inline-block;
  height: 37px;
  width: auto;
  margin: 10px 0;
}
.all-wrapper .top-header .sp-menu .global-nav li p {
  font-size: 1.2rem;
}
@media (min-width: 480px) {
  .all-wrapper .top-header .main-visual {
    width: 92%;
    margin: 0 auto;
    height: 400px;
  }
  .all-wrapper .top-header .pc-menu {
    width: 92%;
  }
}
@media (min-width: 768px) {
  .all-wrapper .top-header .logo-area {
    width: 22%;
    margin-left: 4%;
  }
  .all-wrapper .top-header .main-visual {
    height: 500px;
    width: 88%;
  }
  .all-wrapper .top-header .main-visual .main-visual-txt {
    font-size: 2.2rem;
    height: 280px;
    left: 70%;
    transform: translate(-70%, -50%);
  }
}
@media (min-width: 987px) {
  .all-wrapper .top-header .pc-menu {
    display: block;
    width: 100%;
  }
  .all-wrapper .top-header .sp-menu {
    display: none;
  }
}
@media (min-width: 1220px) {
  .all-wrapper .top-header .main-visual {
    height: 560px;
  }
  .all-wrapper .top-header .pc-menu {
    width: 88%;
    position: relative;
    z-index: 1;
  }
}
.all-wrapper #top .top-first .li-style {
  margin: 15px 0;
}
.all-wrapper .works .works-list li {
  margin-bottom: 15px;
  transition-duration: 0.3s;
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 30px 15px;
}
.all-wrapper .works .works-list li:hover {
  box-shadow: 0px 0px 10px #9f9f9f;
  border-radius: 4px;
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.all-wrapper .works .li-inner .img-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 160px;
}
.all-wrapper .works .li-inner .post-title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin: 15px 0 10px;
}
.all-wrapper .works .li-inner .excerpt {
  font-size: 1.4rem;
  line-height: 1.5;
}
.all-wrapper .works .li-inner .more-btn {
  text-align: right;
  margin-top: 15px;
}
.all-wrapper .works .li-inner .more-btn span {
  display: inline-block;
  background: #f1d476;
  padding: 6px 15px;
  color: #333;
  line-height: 1;
  font-weight: normal;
  box-shadow: 0px 0px 10px #9f9f9f;
}
.all-wrapper .works .works-btn {
  text-align: center;
  margin-top: 60px;
}
.all-wrapper .works .works-btn a {
  width: 200px;
  display: inline-block;
  box-sizing: border-box;
  padding: 10px 10px;
  background: #f69077;
  color: #fff;
  box-shadow: 0px 0px 10px #9f9f9f;
}
@media (min-width: 768px) {
  .all-wrapper .works .li-inner .img-area {
    height: 200px;
  }
}
.all-wrapper .user-voice .user-voice-wrap .voice-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.all-wrapper .user-voice .user-voice-wrap .voice-box .img-box,
.all-wrapper .user-voice .user-voice-wrap .voice-box .txt-box {
  width: 100%;
  box-sizing: border-box;
}
.all-wrapper .user-voice .user-voice-wrap .voice-box .img-box {
  margin-bottom: 20px;
}
.all-wrapper .user-voice .user-voice-wrap .voice-box .txt-box {
  padding: 30px;
  background: #8fcaca;
  color: #fff;
  font-size: 1.5rem;
}
@media (min-width: 480px) {
  .all-wrapper .user-voice .user-voice-wrap .voice-box {
    max-width: 800px;
    margin: 0 auto 50px;
  }
  .all-wrapper .user-voice .user-voice-wrap .voice-box .img-box {
    width: 43%;
    margin-right: 2%;
    margin-bottom: 0;
  }
  .all-wrapper .user-voice .user-voice-wrap .voice-box .txt-box {
    width: 55%;
  }
  .all-wrapper .user-voice .user-voice-wrap .voice-box:not(:nth-child(2n)) {
    flex-direction: row-reverse;
  }
  .all-wrapper .user-voice .user-voice-wrap .voice-box:not(:nth-child(2n)) .img-box {
    margin-right: 0;
    margin-left: 2%;
  }
}
.all-wrapper .explanation .tile-box .explain {
  margin-top: 25px;
  font-size: 1.5rem;
  line-height: 1.5;
}
.all-wrapper .explanation .tile-box .img-box {
  position: relative;
}
.all-wrapper .explanation .tile-box .img-box::after {
  content: "1";
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
  padding: 6px 17px;
  background: #fff;
  border-radius: 50%;
  border: 3px solid #8fcaca;
  color: #8fcaca;
  font-size: 1.8rem;
  font-weight: bold;
}
.all-wrapper .explanation .tile-box:nth-child(2) .img-box::after {
  content: "2";
}
.all-wrapper .explanation .tile-box:nth-child(3) .img-box::after {
  content: "3";
}
.all-wrapper .explanation .tile-box:nth-child(4) .img-box::after {
  content: "4";
}
.all-wrapper .explanation .tile-box:nth-child(5) .img-box::after {
  content: "5";
}
.all-wrapper .explanation .tile-box:nth-child(6) .img-box::after {
  content: "6";
}
.all-wrapper .explanation .tile-box:nth-child(7) .img-box::after {
  content: "7";
}
.all-wrapper .explanation .tile-box:nth-child(8) .img-box::after {
  content: "8";
}
.all-wrapper .explanation .tile-box:nth-child(9) .img-box::after {
  content: "9";
}
.all-wrapper .explanation .tile-box:nth-child(10) .img-box::after {
  content: "10";
}
.all-wrapper .menu-price .price-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.all-wrapper .menu-price .price-box .img-box,
.all-wrapper .menu-price .price-box .txt-box {
  width: 100%;
}
.all-wrapper .menu-price .price-box .img-box {
  margin-bottom: 15px;
}
.all-wrapper .menu-price .price-box .txt-box .menu-title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}
.all-wrapper .menu-price .price-box .txt-box .menu-title .menu-name,
.all-wrapper .menu-price .price-box .txt-box .menu-title .price {
  width: 100%;
}
.all-wrapper .menu-price .price-box .txt-box .menu-title .menu-name {
  font-size: 1.6rem;
  line-height: 1.5;
}
.all-wrapper .menu-price .price-box .txt-box .menu-title .price {
  text-align: right;
  color: red;
  font-size: 1.8rem;
  line-height: 1.5;
}
.all-wrapper .menu-price .price-box .txt-box .menu-title .price span {
  font-size: 1.1rem;
}
.all-wrapper .menu-price .price-box .txt-box .contents:not(:last-child) {
  margin-bottom: 15px;
}
.all-wrapper .menu-price .price-box .txt-box .contents .contents-title,
.all-wrapper .menu-price .price-box .txt-box .contents li,
.all-wrapper .menu-price .price-box .txt-box .contents p {
  line-height: 1.5;
  font-size: 1.5rem;
}
.all-wrapper .menu-price .single-menu .menu-inner {
  width: 100%;
}
.all-wrapper .menu-price .single-menu .menu-inner .menu-title {
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
  text-align: center;
  font-size: 1.6rem;
}
.all-wrapper .menu-price .single-menu .menu-inner .menu-contents .wrap {
  zoom: 1;
  width: 90%;
  margin: 0 auto 10px;
}
.all-wrapper .menu-price .single-menu .menu-inner .menu-contents .wrap:after {
  display: block;
  content: "";
  clear: both;
}
.all-wrapper .menu-price .single-menu .menu-inner .menu-contents dt {
  width: calc(100% - 120px);
  float: left;
  text-align: left;
}
.all-wrapper .menu-price .single-menu .menu-inner .menu-contents dd {
  width: 120px;
  margin-left: calc(100% - 120px);
  text-align: right;
}
@media (min-width: 480px) {
  .all-wrapper .menu-price .price-box {
    margin-bottom: 40px;
  }
  .all-wrapper .menu-price .price-box .img-box,
.all-wrapper .menu-price .price-box .txt-box {
    width: 48%;
    margin: 0 1%;
  }
}
@media (min-width: 768px) {
  .all-wrapper .menu-price .price-box {
    margin-bottom: 80px;
  }
  .all-wrapper .menu-price .price-box:not(:nth-child(2n)) {
    flex-direction: row-reverse;
  }
  .all-wrapper .menu-price .price-box .txt-box .menu-title .menu-name {
    width: 70%;
  }
  .all-wrapper .menu-price .price-box .txt-box .menu-title .price {
    width: 28%;
    margin-left: 2%;
  }
  .all-wrapper .menu-price .single-menu .menu-inner {
    width: 50%;
  }
  .all-wrapper .menu-price .single-menu .menu-inner .menu-title {
    font-size: 1.8rem;
  }
}
.all-wrapper .contact .contact-link {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
.all-wrapper .contact .contact-link .link-box {
  width: 100%;
}
.all-wrapper .contact .contact-link .link-box .txt {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 12px;
}
.all-wrapper .contact .contact-link .link-btn a {
  box-sizing: border-box;
  display: block;
  padding: 15px;
  border: 1px solid #000;
  text-align: center;
}
.all-wrapper .contact .contact-link .link-btn img {
  width: 22px;
  height: auto;
  vertical-align: -6px;
}
.all-wrapper .contact .contact-link .link-btn span {
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .all-wrapper .contact .contact-link {
    margin-top: 40px;
  }
  .all-wrapper .contact .contact-link .link-box {
    width: 31.33%;
  }
  .all-wrapper .contact .contact-link .link-box:not(:nth-child(3n)) {
    margin-right: 3%;
  }
}
.all-wrapper .store-info-wrap {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}
.all-wrapper .store-info-wrap .info-table {
  width: 100%;
  margin-bottom: 30px;
}
.all-wrapper .store-info-wrap .info-table table {
  margin-bottom: 30px;
}
.all-wrapper .store-info-wrap .info-table th,
.all-wrapper .store-info-wrap .info-table td {
  padding: 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.6;
}
.all-wrapper .store-info-wrap .info-table th {
  width: 120px;
  text-align: left;
  border-right: 1px solid #000;
}
.all-wrapper .store-info-wrap .info-table td {
  width: calc(100% - 120px);
}
.all-wrapper .store-info-wrap .info-table td a {
  display: inline-block;
  border-bottom: 1px solid #8fcaca;
  color: #8fcaca;
}
.all-wrapper .store-info-wrap .info-table .btnA {
  margin: 0 auto;
}
.all-wrapper .store-info-wrap .right-area {
  width: 100%;
}
@media (min-width: 768px) {
  .all-wrapper .store-info-wrap .info-table {
    width: 49%;
    margin-bottom: 0;
  }
  .all-wrapper .store-info-wrap .right-area {
    width: 49%;
    margin-left: 2%;
  }
}
.all-wrapper .store-page .store-info-wrap .info-table .btnA {
  display: none;
}
.all-wrapper .store-page .access .tile-box .img-box {
  position: relative;
}
.all-wrapper .store-page .access .tile-box .img-box::after {
  content: "1";
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 6px 17px;
  background: #fff;
  border-radius: 100px;
  border: 3px solid #8fcaca;
  color: #8fcaca;
  font-size: 1.8rem;
  font-weight: bold;
}
.all-wrapper .store-page .access .tile-box:nth-child(2) .img-box::after {
  content: "2";
}
.all-wrapper .store-page .access .tile-box:nth-child(3) .img-box::after {
  content: "3";
}
.all-wrapper .store-page .access .tile-box:nth-child(4) .img-box::after {
  content: "4";
}
.all-wrapper .store-page .access .tile-box:nth-child(5) .img-box::after {
  content: "5";
}
.all-wrapper .store-page .access .tile-box:nth-child(6) .img-box::after {
  content: "6";
}
.all-wrapper .store-page .access .tile-box:nth-child(7) .img-box::after {
  content: "7";
}
.all-wrapper .store-page .access .tile-box:nth-child(8) .img-box::after {
  content: "8";
}
.all-wrapper .store-page .access .tile-box:nth-child(9) .img-box::after {
  content: "9";
}
.all-wrapper .store-page .access .tile-box:nth-child(10) .img-box::after {
  content: "10";
}
.all-wrapper .store-page .access .tile-box:nth-child(11) .img-box::after {
  content: "11";
}
.all-wrapper .store-page .access .tile-box:nth-child(12) .img-box::after {
  content: "12";
}
.all-wrapper .store-page .access .detail {
  margin-top: 8px;
}
.all-wrapper .list-news-wrap ul li {
  border-bottom: 1px dotted #000;
  margin-bottom: 5px;
}
.all-wrapper .list-news-wrap ul li span {
  display: block;
  font-size: 1.5rem;
}
.all-wrapper .list-news-wrap ul li .day {
  font-family: "Noto Serif JP", serif;
  color: #5f5f5f;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .all-wrapper .list-news-wrap ul {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  .all-wrapper .list-news-wrap ul li span {
    display: inline-block;
  }
}
.all-wrapper .faq .faq-inner dt,
.all-wrapper .faq .faq-inner dd {
  padding-left: 40px;
  position: relative;
}
.all-wrapper .faq .faq-inner dt::before,
.all-wrapper .faq .faq-inner dd::before {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 2.4rem;
}
.all-wrapper .faq .faq-inner dt {
  margin-bottom: 15px;
}
.all-wrapper .faq .faq-inner dt::before {
  content: "Q";
}
.all-wrapper .faq .faq-inner dd {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.all-wrapper .faq .faq-inner dd::before {
  content: "A";
}
@media (min-width: 768px) {
  .all-wrapper .faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .all-wrapper .faq .faq-inner dt,
.all-wrapper .faq .faq-inner dd {
    padding-left: 80px;
  }
  .all-wrapper .faq .faq-inner dt {
    margin-bottom: 25px;
  }
  .all-wrapper .faq .faq-inner dd {
    margin-bottom: 35px;
    padding-bottom: 30px;
  }
}
.all-wrapper .foot-link-area ul {
  display: flex;
  flex-wrap: wrap;
}
.all-wrapper .foot-link-area ul li {
  box-sizing: border-box;
  width: 48%;
  margin-bottom: 20px;
}
.all-wrapper .foot-link-area ul li:nth-child(2n) {
  margin-left: 4%;
}
.all-wrapper .foot-link-area ul li a {
  background: #f69077;
  display: block;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  padding: 14px;
}
.all-wrapper .foot-link-area .btnA {
  max-width: 350px;
  width: 100%;
  background: #f69077;
  border-color: #f69077;
  padding: 10px;
  margin: 0 auto;
}
.all-wrapper .foot-link-area .btnA a {
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .all-wrapper .foot-link-area ul li {
    width: 31.33%;
    margin-bottom: 35px;
  }
  .all-wrapper .foot-link-area ul li:nth-child(2n) {
    margin-left: 0;
  }
  .all-wrapper .foot-link-area ul li:not(:nth-child(3n)) {
    margin-right: 3%;
  }
}
.all-wrapper .recruit .h-style-a {
  font-size: 2.4rem;
}
.all-wrapper .recruit .article-inner p {
  line-height: 1.4;
}
.all-wrapper .recruit .movie-inner,
.all-wrapper .recruit .img-inner {
  max-width: 640px;
  margin: 10px 0;
}
.all-wrapper .recruit .youtube-inner {
  width: 100%;
  aspect-ratio: 16/9;
}
.all-wrapper .recruit .youtube-inner iframe {
  width: 100%;
  height: 100%;
}
.all-wrapper .recruit .interview .interview-box {
  margin-bottom: 50px;
}
.all-wrapper .recruit .recruit-contact .line-btn {
  margin: 30px 0;
}
.all-wrapper .recruit .recruit-contact .line-btn img {
  max-width: 230px;
  height: auto;
}
.all-wrapper .recruit .recruit-contact .li-style {
  margin: 30px 10px;
}
@media (min-width: 768px) {
  .all-wrapper .recruit .h-style-a {
    font-size: 2.8rem;
  }
  .all-wrapper .recruit .interview .interview-box {
    margin-bottom: 80px;
  }
}
.all-wrapper .archive .archive-list li {
  margin-bottom: 15px;
  transition-duration: 0.3s;
  background: #fff;
  border: solid 1px #e0e0e0;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 30px 15px;
}
.all-wrapper .archive .archive-list li:hover {
  box-shadow: 0px 0px 10px #9f9f9f;
  border-radius: 4px;
  transform: scale(1.1);
  transition-duration: 0.3s;
}
.all-wrapper .archive .li-inner .img-area {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 200px;
  position: relative;
}
.all-wrapper .archive .li-inner .cat {
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: -17px;
  background: #f1d476;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  width: 40%;
  text-align: center;
}
.all-wrapper .archive .li-inner .post-title {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  margin: 15px 0 10px;
}
.all-wrapper .archive .li-inner .excerpt {
  font-size: 1.3rem;
  line-height: 1.5;
}
.all-wrapper .archive .li-inner .day {
  margin-top: 10px;
  padding-bottom: 3px;
  border-bottom: 1px solid #ccc;
}
.all-wrapper .archive .li-inner .day span {
  color: #969696;
  font-size: 1rem;
}
.all-wrapper .archive .li-inner .day img {
  width: 10px !important;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .all-wrapper .archive .li-inner .img-area {
    height: 160px;
  }
  .all-wrapper .archive .li-inner .post-title {
    font-size: 1.8rem;
  }
}
.all-wrapper .booking-btn {
  position: fixed;
  bottom: 30px;
  z-index: 99;
  transition: 0.4s ease;
  left: 50%;
  transform: translateX(-50%);
}
.all-wrapper .booking-btn a {
  display: inline-block;
  text-align: center;
  width: clamp(250px, 30vw, 350px);
  background: #f69077;
  color: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 15px;
}
.all-wrapper .booking-btn a img {
  width: 25px;
  height: auto;
}
.all-wrapper .pagetop {
  bottom: 96px;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .all-wrapper .pagetop {
    bottom: 20px;
  }
  .all-wrapper .booking-btn {
    bottom: 75px;
    right: 15px;
    transform: initial;
    left: initial;
  }
}

.all-wrapper .top-header.new {
  margin: 0;
}
.all-wrapper .top-header.new .logo-height {
  height: 70px;
}
@media (min-width: 987px) {
  .all-wrapper .top-header.new .logo-height {
    display: none;
  }
}
.all-wrapper .top-header.new .logo-area {
  padding: 10px 0 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10000;
  margin: 0 !important;
}
@media (min-width: 987px) {
  .all-wrapper .top-header.new .logo-area {
    position: relative;
    width: 88%;
    margin: 0 auto !important;
  }
}
.all-wrapper .top-header.new .millet {
  position: absolute;
  right: 0;
  width: 390px;
}
@media screen and (max-width: 1219px) {
  .all-wrapper .top-header.new .millet {
    width: 350px;
  }
}
@media screen and (max-width: 986px) {
  .all-wrapper .top-header.new .millet {
    display: none;
  }
}
.all-wrapper .top-header.new .millet img {
  width: 100%;
  height: 100%;
}
.all-wrapper .top-header.new .millet.sp {
  display: block;
  position: unset;
  margin: 10px auto 24px;
  max-width: 350px;
  width: 100%;
}
.all-wrapper .top-header.new .main-visual {
  padding: 0 0 20px;
}
.all-wrapper .top-header.new .main-visual::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 82px;
  background: url(../img/more_beautiful_01.svg) center/contain no-repeat;
  rotate: -16deg;
  bottom: 30px;
  left: 20px;
  z-index: 3;
}
@media (min-width: 768px) {
  .all-wrapper .top-header.new .main-visual::before {
    width: 200px;
    height: 106px;
    bottom: 70px;
    left: 60px;
  }
}
.all-wrapper .top-header.new .main-visual::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 47px;
  background: url(../img/mv_wave_01.svg) center top/cover no-repeat;
  bottom: -10px;
  left: 0;
}
@media (min-width: 768px) {
  .all-wrapper .top-header.new .main-visual::after {
    height: 5vw;
  }
}
.all-wrapper .top-header.new .main-visual-txt {
  font-size: 30px;
  font-weight: 500;
  writing-mode: unset;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  left: unset;
  right: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: unset;
}
@media (max-width: 768px) {
  .all-wrapper .top-header.new .main-visual-txt {
    font-size: 20px;
    text-align: right;
    top: -130px;
    left: unset;
    right: 3%;
    letter-spacing: 0;
  }
}
.all-wrapper .top-header.new .main-visual-txt::after {
  content: "";
  width: 31.84px;
  height: 107.02px;
  position: absolute;
  bottom: -130px;
  right: -20px;
  left: 0;
  margin: auto;
  background: url(../img/scroll_01.svg) center/contain no-repeat;
}
@media (min-width: 768px) {
  .all-wrapper .top-header.new .main-visual-txt::after {
    display: none;
  }
}
.all-wrapper .top-header.new .main-visual-txt .txt_2,
.all-wrapper .top-header.new .main-visual-txt .txt_3 {
  margin-top: 0;
}

.gnav-btn {
  position: fixed;
  width: 40px;
  height: 18px;
  right: 20px;
  top: 24px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .gnav-btn {
    display: none;
  }
}
.gnav-btn span {
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  border-radius: 2px;
}

.gnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  background: #fff;
  padding: 0 20px;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  translate: 100vw 0;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .gnav {
    display: none;
  }
}
.gnav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 70px 0 0;
  margin: 0 auto 24px;
}
.gnav ul li {
  width: 100%;
}
.gnav ul li a {
  font-size: 16px;
  padding: 15px 0;
  text-align: center;
  display: block;
  width: 100%;
  line-height: 1;
  border-bottom: 1px dashed #000;
}
.gnav .gnav-link:first-of-type {
  margin: 0 0 8px;
}
.gnav .gnav-link p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin: 0 auto 4px;
}
.gnav .gnav-link .shadow {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}

#gnav-btn {
  display: none;
}
#gnav-btn:checked ~ .gnav {
  translate: 0;
}

.top-wrapper .booking-btn.new,
.all-wrapper .booking-btn.new {
  max-width: 355px;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  transform: unset;
  width: calc(100% - 20px);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
@media (min-width: 768px) {
  .top-wrapper .booking-btn.new,
.all-wrapper .booking-btn.new {
    right: 20px;
    left: unset;
  }
}
.top-wrapper .booking-btn.new a,
.all-wrapper .booking-btn.new a {
  display: block;
  background: unset;
  width: 100%;
  padding: 0;
}
.top-wrapper .booking-btn.new a img,
.all-wrapper .booking-btn.new a img {
  width: 100%;
}

.pagetop.new {
  bottom: 90px;
}
.pagetop.new a {
  background: unset;
  padding: 0;
  width: 50px;
  height: 50px;
}

.title-parts {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 20px 0;
  margin: 0 auto 10px;
  background: url(../img/img_title_parts_01.png) center/59px no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  .title-parts {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 110px;
    margin: 0 auto 24px;
  }
}
.title-parts.commitment::before {
  content: "";
  width: 175px;
  height: 34px;
  background: url(../img/title_01.svg) center/contain no-repeat;
  position: absolute;
  top: -8px;
  left: 0;
  rotate: -16deg;
}
.title-parts.works::before {
  content: "";
  width: 200px;
  height: 60px;
  background: url(../img/title_02.svg) center/contain no-repeat;
  position: absolute;
  top: -28px;
  left: 0;
  rotate: -16deg;
}
.title-parts.explanation::before {
  content: "";
  width: 182px;
  height: 34px;
  background: url(../img/title_03.svg) center/contain no-repeat;
  position: absolute;
  top: -13px;
  left: -6px;
  rotate: -16deg;
}
.title-parts.contact::before {
  content: "";
  width: 190px;
  height: 35px;
  background: url(../img/title_04.svg) center/contain no-repeat;
  position: absolute;
  top: -13px;
  left: -6px;
  rotate: -16deg;
}

#top.new .box-2a,
#top.new .box-2b {
  margin-bottom: 0;
}
#top.new .border-title {
  font-size: 16px;
  text-align: center;
  border-bottom: unset;
  position: relative;
  padding: 16px 0 13px;
}
@media (min-width: 768px) {
  #top.new .border-title {
    font-size: 20px;
  }
}
#top.new .border-title::after {
  content: "";
  height: 1px;
  width: 110px;
  background: #ee6c54;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#top.new .border-title + p {
  font-weight: 400;
  font-size: 14px;
}
#top.new .border-title + p + ul {
  background: #fff8f8;
  width: calc(100% + 30px);
  padding: 20px;
  margin: 35px 0 0 -15px !important;
}
@media (min-width: 768px) {
  #top.new .border-title + p + ul {
    width: 100%;
    padding: 30px 30px 16px;
    margin: 35px 0 0 !important;
  }
}
#top.new .border-title + p + ul li {
  font-size: 14px;
  line-height: 20px;
  position: relative;
  padding: 13px 0 13px 24px;
  border-top: 1px dashed #f38e7d;
  margin: 0;
  display: flex;
  text-indent: unset;
}
#top.new .border-title + p + ul li:last-of-type {
  border-bottom: 1px dashed #f38e7d;
}
#top.new .border-title + p + ul li::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: url(../img/parts_dot_01.png) center/contain no-repeat;
  top: 18px;
  left: 0;
}
#top.new .border-title + p + ul + p {
  font-size: 16px;
  text-align: center;
  width: calc(100% + 30px);
  padding: 0 0 24px;
  margin: 0 0 0 -15px !important;
  background: #fff8f8;
}
@media (min-width: 768px) {
  #top.new .border-title + p + ul + p {
    width: 100%;
    margin: 0 !important;
  }
}
#top.new .border-title + p + ul + p span {
  font-size: 20px;
  position: relative;
}
#top.new .border-title + p + ul + p span::after {
  width: 100%;
  height: 12px;
  background: #fff;
  position: absolute;
  bottom: -10px;
}
#top.new .feature .three-tile {
  justify-content: space-between;
  gap: 5px 0;
}
#top.new .feature .three-tile .tile-box {
  padding: 70px 0 0;
  margin: -70px 0 16px;
  display: flex;
  flex-direction: column;
}
#top.new .feature .three-tile .tile-box:nth-of-type(1) .bg-title {
  background: url(../img/point_01.svg) center top/71.56px no-repeat;
}
#top.new .feature .three-tile .tile-box:nth-of-type(2) .bg-title {
  background: url(../img/point_02.svg) center top/73.84px no-repeat;
}
#top.new .feature .three-tile .tile-box:nth-of-type(3) .bg-title {
  background: url(../img/point_03.svg) center top/75.58px no-repeat;
}
#top.new .feature .three-tile .tile-box:nth-of-type(4) .bg-title {
  background: url(../img/point_04.svg) center top/74.23px no-repeat;
}
#top.new .feature .three-tile .tile-box:nth-of-type(5) .bg-title {
  background: url(../img/point_05.svg) center top/73.96px no-repeat;
}
#top.new .feature .three-tile .tile-box:nth-of-type(6) .bg-title {
  background: url(../img/point_06.svg) center top/71.98px no-repeat;
}
#top.new .feature .three-tile .tile-box .bg-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: #000;
  background: unset;
  position: relative;
  padding: 44px 0 13px;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  #top.new .feature .three-tile .tile-box .bg-title {
    height: 107px;
  }
}
#top.new .feature .three-tile .tile-box .bg-title::after {
  content: "";
  width: 110px;
  height: 1px;
  background: #f58304;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#top.new .feature .three-tile .tile-box .bg-title ~ p {
  font-size: 14px;
  font-weight: 400;
  margin: 16px 0 0;
}

.all-wrapper .works .works-list:has(.new) {
  gap: 40px 20px;
}
.all-wrapper .works .works-list li.new {
  padding: 0;
  border: unset;
  margin: 0 !important;
}
@media (min-width: 768px) {
  .all-wrapper .works .works-list li.new {
    width: calc((100% - 40px) / 3);
  }
}
.all-wrapper .works .works-list li.new:hover {
  transform: unset;
  box-shadow: unset;
}
.all-wrapper .works .works-list li.new .li-inner .img-area {
  background-size: contain;
  height: 180px;
}
.all-wrapper .works .works-list li.new .post-title {
  line-height: 25px;
  padding: 0 0 16px;
  margin: 16px 0;
  position: relative;
}
.all-wrapper .works .works-list li.new .post-title::after {
  content: "";
  background: #5abab7;
  position: absolute;
  width: 110px;
  height: 1px;
  left: 0;
  bottom: 0;
}
.all-wrapper .works .works-list li.new .excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
.all-wrapper .works .works-list li.new .more-btn {
  font-size: 14px;
  color: #5abab7;
  text-align: center;
  width: 170px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: unset;
  border: 1px solid #5abab7;
  border-radius: 30px;
  margin: 15px auto 0;
}
.all-wrapper .works .works-list li.new .more-btn span {
  background: unset;
  box-shadow: unset;
  color: #5abab7;
}

.explanation.new .three-tile .tile-box {
  display: flex;
  flex-direction: column;
}
.explanation.new .three-tile .tile-box .bg-title {
  font-size: 16px;
  background: unset;
  color: #000;
  position: relative;
  padding: 20px 0 0;
  margin: 0 auto 15px;
  background: url(../img/step_01.svg) bottom left/77px no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.explanation.new .three-tile .tile-box .bg-title span {
  font-size: 14px;
  margin: -5px 0 0;
}
.explanation.new .three-tile .tile-box:nth-of-type(2) .bg-title {
  background: url(../img/step_02.svg) bottom left/79px no-repeat;
}
.explanation.new .three-tile .tile-box:nth-of-type(3) .bg-title {
  background: url(../img/step_03.svg) bottom left/82px no-repeat;
}
.explanation.new .three-tile .tile-box:nth-of-type(4) .bg-title {
  background: url(../img/step_04.svg) bottom left/80px no-repeat;
}
@media (min-width: 768px) {
  .explanation.new .three-tile .tile-box:nth-of-type(4) .bg-title {
    height: 69px;
  }
}
.explanation.new .three-tile .tile-box:nth-of-type(5) .bg-title {
  background: url(../img/step_05.svg) bottom left/80px no-repeat;
  padding: 20px 0 0 20px;
}
.explanation.new .three-tile .tile-box:nth-of-type(6) .bg-title {
  background: url(../img/step_06.svg) bottom left/82px no-repeat;
  padding: 20px 0 0 80px;
}
.explanation.new .three-tile .tile-box:nth-of-type(7) .bg-title {
  background: url(../img/step_07.svg) bottom left/82px no-repeat;
}
.explanation.new .three-tile .tile-box .img-box::after {
  display: none;
}
.explanation.new .three-tile .tile-box .explain {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 12px;
}

.contact.new .sm-center {
  font-size: 14px;
  font-weight: 400;
}
.contact.new .contact-link {
  gap: 20px 0;
  justify-content: center;
}
.contact.new .contact-link .link-box .txt {
  font-size: 16px;
  font-weight: 600;
  padding: 0 30px;
  margin: 0 auto 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.contact.new .contact-link .link-box .txt::before, .contact.new .contact-link .link-box .txt::after {
  content: "";
  width: 26px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0;
  bottom: 14px;
  rotate: 70deg;
}
.contact.new .contact-link .link-box .txt::after {
  left: unset;
  right: 0;
  rotate: -70deg;
}
.contact.new .contact-link .link-box a {
  border: unset;
  padding: 0;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
.contact.new .contact-link .link-box img {
  width: 100%;
}

.pc {
  display: none;
}
@media (min-width: 768px) {
  .pc {
    display: block;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.booking-btn.hidden,
.pagetop.hidden {
  visibility: hidden;
  opacity: 0;
}

.recruit.new .h-border-lr {
  font-size: 20px;
  border: none;
  padding: 0 0 15px;
  margin: 40px auto 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit.new .h-border-lr {
    margin: 20px auto;
  }
}
.recruit.new .h-border-lr::after {
  content: "";
  width: 110px;
  height: 1px;
  background: #ee6c54;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.recruit.new p.first {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  margin: 0 0 40px;
  line-height: 28px;
}
@media screen and (max-width: 768px) {
  .recruit.new p.first {
    font-size: 14px;
    line-height: 24px;
    text-align: left;
  }
}
.recruit.new .info {
  background: #fff8f8;
  padding: 50px 40px;
}
@media screen and (max-width: 768px) {
  .recruit.new .info {
    padding: 20px 20px;
  }
}
.recruit.new .info > p:first-of-type {
  text-align: center;
  font-size: 20px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .recruit.new .info > p:first-of-type {
    text-align: left;
    font-size: 18px;
    margin: 0 auto 16px;
  }
}
@media screen and (max-width: 768px) {
  .recruit.new .info > p:first-of-type br {
    display: none;
  }
}
.recruit.new .info > p:first-of-type span {
  font-size: 30px;
  padding-bottom: 2px;
  border-bottom: 2px solid #ee6c54;
}
@media screen and (max-width: 768px) {
  .recruit.new .info > p:first-of-type span {
    font-size: 25px;
  }
}
.recruit.new .info > p:nth-of-type(2) {
  font-size: 20px;
  text-align: center;
  line-height: 30px;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  .recruit.new .info > p:nth-of-type(2) {
    text-align: left;
    font-size: 18px;
    margin: 0 auto 16px;
  }
}
.recruit.new .info .info-list {
  display: flex;
  flex-direction: column;
  max-width: 650px;
  width: 100%;
  margin: 0 auto 40px;
}
.recruit.new .info .info-list li {
  padding: 13px 0 13px 24px;
  border-bottom: 1px dashed #f38e7d;
  background: url(../img/parts_dot_01.png) top 22px left/12px no-repeat;
}
@media screen and (max-width: 768px) {
  .recruit.new .info .info-list li {
    font-size: 14px;
    padding: 10px 0 10px 24px;
    line-height: 21px;
    background-position: top 13px left;
  }
}
.recruit.new .info .info-list li:first-of-type {
  border-top: 1px dashed #f38e7d;
}
.recruit.new .env-list {
  display: flex;
  gap: 0 27px;
}
@media screen and (max-width: 768px) {
  .recruit.new .env-list {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}
.recruit.new .env-list li {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 33.3333333333%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit.new .env-list li {
    width: 100%;
  }
}
.recruit.new .env-list li p:first-of-type {
  font-size: 18px;
  text-align: center;
  line-height: 30px;
  color: #ee6b54;
  margin: 0 0 20px;
}
@media screen and (max-width: 985px) {
  .recruit.new .env-list li p:first-of-type {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .recruit.new .env-list li p:first-of-type {
    height: auto;
  }
}
.recruit.new .env-list li p:last-of-type {
  font-size: 14px;
  margin: 20px 0 0;
}
.recruit.new .env-list li p:last-of-type span {
  color: #ee6b54;
  font-weight: 600;
}
.recruit.new .env-list li img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit.new iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560/315;
}
.recruit.new .charm {
  padding: 100px 40px 50px;
  margin: -100px auto 0;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .recruit.new .charm {
    padding: 100px 20px 30px;
  }
}
.recruit.new .h-border-lr:has(~ .article-inner .charm), .recruit.new .h-border-lr:has(~ .article-inner .flow) {
  margin: 80px auto 20px;
}
.recruit.new .h-border-lr:has(~ .article-inner .charm)::after, .recruit.new .h-border-lr:has(~ .article-inner .flow)::after {
  background: #58bbb6;
}
.recruit.new .h-border-lr:has(~ .article-inner .flow)::after {
  background: #f58304;
}
.recruit.new .h-border-lr:has(~ .article-inner .apply)::after {
  background: #58bbb6;
}
.recruit.new .charm-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 27px;
}
.recruit.new .charm-list > li {
  width: calc((100% - 54px) / 3);
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media screen and (max-width: 1010px) {
  .recruit.new .charm-list > li {
    width: calc((100% - 27px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .recruit.new .charm-list > li {
    width: 100%;
  }
}
.recruit.new .charm-list > li .charm-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 102px;
  margin: 0 0 16px;
}
@media screen and (max-width: 768px) {
  .recruit.new .charm-list > li .charm-title {
    height: unset;
  }
}
.recruit.new .charm-list > li .charm-title img {
  width: auto;
  height: 36px;
}
.recruit.new .charm-list > li .charm-title .mincho {
  font-size: 17px;
  text-align: center;
  margin: 16px 0 0;
}
@media screen and (max-width: 1219px) {
  .recruit.new .charm-list > li .charm-title .mincho {
    font-size: 16px;
  }
}
.recruit.new .charm-list > li .charm-title + p br {
  display: none;
}
.recruit.new .charm-list .charm-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
}
.recruit.new .charm-list .charm-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.recruit.new .charm-list .charm-text p strong {
  font-weight: 600;
}
.recruit.new .voice-list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list {
    width: 100%;
  }
}
.recruit.new .voice-list > li {
  display: flex;
  gap: 0 20px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list > li {
    flex-direction: column;
    align-items: center;
  }
}
.recruit.new .voice-list > li > p {
  display: none;
}
.recruit.new .voice-list > li img {
  width: 200px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list > li img {
    width: 100%;
    max-width: 170px;
    display: block;
    margin: 0 auto 20px;
  }
}
.recruit.new .voice-list > li p:first-of-type {
  font-size: 20px;
  color: #f26b54;
  margin: 0 0 13px;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list > li p:first-of-type {
    font-size: 16px;
  }
}
.recruit.new .voice-list > li p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list > li p:nth-of-type(2) {
    line-height: 25px;
  }
}
.recruit.new .voice-list > li p:nth-of-type(3) {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .recruit.new .voice-list > li p:nth-of-type(3) {
    font-size: 14px;
    margin: 8px 0 0;
  }
}
.recruit.new .flow {
  padding: 100px 40px 50px;
  margin: -100px auto 0;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .recruit.new .flow {
    padding: 100px 20px 30px;
  }
}
.recruit.new .flow-list {
  display: flex;
  gap: 0 20px;
  margin: 0 0 30px;
}
@media screen and (max-width: 1219px) {
  .recruit.new .flow-list {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
}
.recruit.new .flow-list li {
  padding: 10px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 20%;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 1219px) {
  .recruit.new .flow-list li {
    width: calc((100% - 20px) / 2);
  }
}
.recruit.new .flow-list li:not(:last-of-type)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent #f58304;
  border-width: 10px 0px 10px 17.32px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -18px;
  margin: auto;
}
.recruit.new .flow-list li p:nth-of-type(1) {
  font-size: 16px;
  line-height: 26px;
  background: #f58304;
  color: #fff;
  text-align: center;
  margin: 0 0 20px;
}
.recruit.new .flow-list li p:nth-of-type(2) {
  font-size: 16px;
  text-align: center;
  margin: 0 0 20px;
}
@media screen and (max-width: 1219px) {
  .recruit.new .flow-list li p:nth-of-type(2) {
    height: 39px;
  }
}
.recruit.new .flow-list li p:nth-of-type(2) span {
  font-size: 12px;
  font-weight: 400;
  margin: 0 -6px 0 -5px;
}
@media screen and (max-width: 1219px) {
  .recruit.new .flow-list li p:nth-of-type(2) span {
    display: block;
  }
}
.recruit.new .flow-list li p:last-of-type {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  margin: 10px 0 0;
}
.recruit.new .flow-list + p {
  margin: 0 0 24px;
}
.recruit.new .flow-list + p ~ p {
  font-size: 18px;
  margin: 0 0 16px;
}
.recruit.new .flow-list + p ~ ul {
  margin: 0 0 40px;
}
.recruit.new .flow-list + p ~ ul li {
  padding: 13px 0 13px 24px;
  border-bottom: 1px dashed #f58304;
  background: url(../img/parts_dot_01.png) top 22px left/12px no-repeat;
}
.recruit.new .flow-list + p ~ ul li:first-of-type {
  border-top: 1px dashed #f58304;
}
.recruit.new .flow-list + p ~ ul:last-of-type {
  margin: 0;
}
.recruit.new .apply-list {
  display: flex;
  gap: 0 30px;
}
@media screen and (max-width: 768px) {
  .recruit.new .apply-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.recruit.new .apply-list li {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit.new .apply-list li {
    width: calc((100% - 20px) / 2);
  }
}
.recruit.new .apply-list li > img {
  width: auto;
  height: 36px;
}
.recruit.new .apply-list li .apply-title {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin: 10px auto 20px;
}
.recruit.new .apply-list li .apply-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  margin: 24px 0 0;
}
.recruit.new .apply-list + p {
  font-size: 14px;
  text-align: center;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .recruit.new .apply-list + p {
    text-align: left;
  }
}
.recruit.new .recruit-info {
  background: #f4f4f4;
  padding: 1px 40px 40px;
}
@media screen and (max-width: 768px) {
  .recruit.new .recruit-info {
    padding: 1px 10px 30px;
  }
}
.recruit.new .recruit-info p,
.recruit.new .recruit-info div {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
}
.recruit.new .recruit-info th {
  font-size: 14px;
  color: #fff;
  background: #b1b1b1;
}
.recruit.new .recruit-info td {
  padding: 20px 22px;
  background: #fff;
}
.recruit.new .recruit-info .kome {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .recruit.new .recruit-info .kome {
    line-height: 19px;
  }
}
.recruit.new .recruit-info .kome:not(:last-of-type) {
  margin-bottom: 20px;
}
.recruit.new .recruit-info .kome:has(+ .kome) {
  margin-bottom: 0;
}
.recruit.new .recruit-info .td-contents:not(:last-of-type) {
  margin-bottom: 20px;
}
.recruit.new .recruit-info .table-style,
.recruit.new .recruit-info .table-style th {
  border: none !important;
  border-spacing: 4px;
  border-collapse: separate;
}
.recruit.new .faq .faq-list {
  max-width: unset;
}
.recruit.new .faq .faq-inner {
  margin-bottom: 13px;
}
.recruit.new .faq .faq-inner dt,
.recruit.new .faq .faq-inner dd {
  font-size: 16px;
  color: #f58304;
  background: #fffcf8;
  padding: 17px 70px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit.new .faq .faq-inner dt,
.recruit.new .faq .faq-inner dd {
    font-size: 15px;
    padding: 17px 60px;
  }
}
.recruit.new .faq .faq-inner dt::before,
.recruit.new .faq .faq-inner dd::before {
  font-size: 32px;
  color: #f58304;
  top: -2px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .recruit.new .faq .faq-inner dt::before,
.recruit.new .faq .faq-inner dd::before {
    font-size: 24px;
    top: 5px;
  }
}
.recruit.new .faq .faq-inner dt {
  cursor: pointer;
}
.recruit.new .faq .faq-inner dt::after {
  content: "";
  background: #f58304;
  position: absolute;
  width: 24px;
  height: 2px;
  top: 30.5px;
  right: 20px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .recruit.new .faq .faq-inner dt::after {
    top: 30px;
  }
}
.recruit.new .faq .faq-inner dt span {
  background: #f58304;
  position: absolute;
  width: 24px;
  height: 2px;
  top: 30.5px;
  bottom: unset;
  right: 20px;
  rotate: 90deg;
}
@media screen and (max-width: 768px) {
  .recruit.new .faq .faq-inner dt span {
    top: 30px;
  }
}
.recruit.new .faq .faq-inner dt:has(+ .active) span {
  display: none;
}
.recruit.new .faq .faq-inner dd {
  background: #fafafa;
  line-height: unset;
  font-size: 14px;
  color: #000;
  padding-top: 16px;
  border-bottom: unset;
  display: none;
}
.recruit.new .faq .faq-inner dd.active {
  display: block;
}
.recruit.new .spec {
  padding: 100px 40px 50px;
  margin: -100px auto 0;
  background: #f4f4f4;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec {
    padding: 100px 20px 30px;
  }
}
.recruit.new .spec-first {
  background: #fff;
  max-width: 560px;
  width: 100%;
  padding: 10px 40px 40px;
  margin: 0 auto 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-first {
    padding: 10px 20px 20px;
  }
}
.recruit.new .spec-first p:first-of-type {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  color: #58bbb6;
  margin: 0 auto 10px;
}
.recruit.new .spec-first p:nth-of-type(3) {
  font-size: 14px;
  text-align: center;
  line-height: 25px;
  margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-first p:nth-of-type(3) {
    text-align: left;
  }
}
.recruit.new .spec-list {
  display: flex;
  flex-direction: column;
}
.recruit.new .spec-list li {
  padding: 12px 0 12px 24px;
  border-bottom: 1px dashed #ee6c54;
  background: url(../img/parts_dot_01.png) top 16px left/12px no-repeat;
  filter: hue-rotate(146deg);
  font-size: 14px;
  line-height: 20px;
}
.recruit.new .spec-list li:first-of-type {
  border-top: 1px dashed #ee6c54;
}
.recruit.new .spec-second p:first-of-type {
  font-size: 20px;
  text-align: center;
  margin: 0 auto 20px;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-second p:first-of-type {
    font-size: 18px;
    margin: 0 auto 8px;
  }
}
.recruit.new .spec-flex {
  display: flex;
  gap: 0 50px;
  margin: -20px auto 0;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-flex {
    flex-direction: column;
    gap: 30px 0;
  }
}
.recruit.new .spec-flex > p {
  display: none;
}
.recruit.new .spec-flex > ul {
  width: 50%;
  background: #fff;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-flex > ul {
    width: 100%;
    padding: 20px;
  }
}
.recruit.new .spec-flex > ul li:first-of-type {
  background: unset;
  padding: 0;
  text-align: center;
  font-size: 20px;
  margin: 0 0 10px;
  border: unset;
}
@media screen and (max-width: 768px) {
  .recruit.new .spec-flex > ul li:first-of-type {
    font-size: 18px;
  }
}
.recruit.new .spec-flex > ul li:nth-of-type(2) {
  border-top: 1px dashed #ee6c54;
}
.recruit.new .link .first + p {
  font-size: 16px;
  text-align: center;
  padding: 0 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.recruit.new .link .first + p::before, .recruit.new .link .first + p::after {
  content: "";
  width: 1px;
  height: 24px;
  position: absolute;
  background: #000;
  right: 0;
  bottom: 0;
  rotate: 16deg;
}
.recruit.new .link .first + p::before {
  left: 0;
  right: unset;
  rotate: -16deg;
}
.recruit.new .link a {
  width: 335px;
  margin: 8px auto 0;
  display: block;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
}
.recruit.new .link a br {
  display: none;
}
.recruit.new .h-border-lr:has(~ .article-inner .link) {
  margin-top: 0;
}
.recruit.new .last div {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin: 24px 0 0;
}
.recruit.new .last div p {
  font-size: 14px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .recruit.new .last div p {
    line-height: 24px;
  }
}
.recruit.new .last div p:nth-last-of-type(2) {
  text-align: right;
}

.lower-wrapper:has(.recruit.new) {
  padding-top: 77px;
}
/*# sourceMappingURL=style.css.map */