@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  background-color: #fff;
  color: #836d61;
  font-size: 1.6em;
  font-weight: 500;
}

.wrapper {
  overflow: hidden;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  transition: 0.3s;
  text-decoration: none;
  color: #836d61;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

p {
  letter-spacing: 0.1em;
  line-height: 1.7;
}

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

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

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

/* パンくずリスト */
.bread {
  width: 100%;
}
.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}
.bread ul {
  display: flex;
}
.bread ul li {
  padding: 5px;
}
.bread ul li a {
  transition: 0.15s;
}
@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}
.bread ul li a:hover {
  opacity: 0.7;
}
.bread ul li:after {
  content: ">";
  margin-left: 10px;
  margin-right: 10px;
}
.bread ul li:last-child:after {
  content: "";
}

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

.between {
  justify-content: space-between;
}

.align_start {
  align-items: flex-start;
}

.align_center {
  align-items: center;
}

.align_end {
  align-items: flex-end;
}

.flex_center {
  justify-content: center;
}

.flex_start {
  justify-content: flex-start;
}

.flex_end {
  justify-content: flex-end;
}

.stretch {
  align-items: stretch;
}

.reverse {
  flex-direction: row-reverse;
}

.nowrap {
  flex-wrap: nowrap;
}

/* inner */
.inner {
  width: 90%;
  margin: 0 auto;
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}
@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (min-width: 928px) {
  .tab_dn {
    display: none;
  }
}

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

.ank {
  margin-top: -58px;
  padding-top: 58px;
}
@media (min-width: 1200px) {
  .ank {
    margin-top: -120px;
    padding-top: 120px;
  }
}

.line_btn {
  margin-top: 30px;
}
.line_btn a {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 180px;
  margin: auto;
  padding: 1rem 4rem;
  font-weight: bold;
  border: 2px solid #06c755;
  background: #06c755;
  color: #fff;
  border-radius: 100vh;
  transition: 0.5s;
}
.line_btn a:hover {
  color: #06c755;
  background: #fff;
}

.top_btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  width: 80px;
  height: 80px;
  transition: 0.3s;
  z-index: 10000;
  opacity: 0;
}
@media (min-width: 928px) {
  .top_btn {
    bottom: 60px;
    right: -20px;
  }
}
@media (max-width: 599px) {
  .top_btn {
    bottom: 40px;
    right: -20px;
  }
}
.top_btn img {
  border-radius: 3px;
  width: 50%;
}

.top_btn.active {
  opacity: 1;
}

.mb_0 {
  margin-bottom: 0 !important;
}

.btn_readmore {
  display: block;
  border: 1px solid #836d61;
  margin: 0 auto;
  width: 160px;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
.btn_readmore a {
  color: #836d61;
}
.btn_readmore a img {
  width: 100%;
  height: auto;
  max-width: 14px;
  vertical-align: middle;
}

/* 下層ページ共通 */
.slick-next {
  right: 12px;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  padding: 10px;
  color: #fff;
  background-color: #836d61;
  border-radius: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fc .fc-button-primary:disabled {
  background-color: #fd999b;
  border: 1px solid #fd999b;
}

.fc .fc-button-primary {
  background-color: #fd999b;
  border: 1px solid #fd999b;
}

.fc .fc-button-primary:hover {
  background-color: #ffc2c3;
  border-color: #ffc2c3;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background-color: #ffc2c3;
  border-color: #ffc2c3;
  color: var(--fc-button-text-color);
}

@media (max-width: 599px) {
  .fc .fc-view-harness {
    height: 570px !important;
  }
}

@media (max-width: 599px) {
  .fc-daygrid-dot-event {
    display: inline-block;
  }
}

.fc-daygrid-event-dot {
  border: calc(var(--fc-daygrid-event-dot-width) / 2) solid var(--fc-event-border-color);
  border-radius: calc(var(--fc-daygrid-event-dot-width) / 2);
  box-sizing: content-box;
  height: 0;
  margin: 0 0px;
  width: 0;
}
@media (max-width: 599px) {
  .fc-daygrid-event-dot {
    display: inline-block;
  }
}

@media (max-width: 599px) {
  .fc-direction-ltr .fc-daygrid-event .fc-event-time {
    font-size: 10px;
    display: inline-block;
  }
}

@media (max-width: 599px) {
  .fc .fc-daygrid-body-unbalanced .fc-daygrid-day-events {
    height: 4em;
    overflow: hidden;
    width: 43px;
  }
}

@media (max-width: 599px) {
  .fc-daygrid-dot-event .fc-event-title {
    font-size: 0.5em;
  }
}

.common_btn {
  width: 320px;
  margin: 0 auto;
  display: block;
  border: 1px solid #836d61;
  padding: 12px 0;
  text-align: center;
}
@media (max-width: 599px) {
  .common_btn {
    width: 100%;
  }
}

.common_mv {
  margin-top: 100px;
  padding: 60px 0;
  background: url(../images/bg_concept.webp) center/cover no-repeat;
}
@media (max-width: 599px) {
  .common_mv {
    margin-top: 60px;
    padding: 40px 0;
  }
}
.common_mv .common_mv_ttl {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
}
@media (max-width: 599px) {
  .common_mv .common_mv_ttl {
    font-size: 2.8rem;
  }
}

.bread li {
  padding: 0.5rem;
}
@media (max-width: 599px) {
  .bread li {
    padding: 0;
  }
}
.bread li:after {
  content: ">";
  margin-left: 1rem;
  margin-right: 1rem;
  color: #836d61;
}
.bread li:last-child:after {
  content: "";
}

/* header */
header {
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
  height: 58px;
  z-index: 120000;
}
@media (min-width: 928px) {
  header {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  header {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@media (max-width: 599px) {
  header .inner .row {
    justify-content: space-between;
  }
}
header .header_hight {
  height: 58px;
}
@media (min-width: 928px) {
  header .header_hight {
    height: 100px;
  }
}
header .header_left {
  max-width: 180px;
  width: 100%;
  flex-basis: 80%;
}
@media (min-width: 928px) {
  header .header_left {
    flex-basis: 20%;
  }
}
header .header_left h1 {
  z-index: 1000;
  position: relative;
}
header .header_left h1 #header_logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 249/52;
  -o-object-fit: contain;
     object-fit: contain;
}
header .header_center {
  flex-basis: 80%;
  width: auto;
}
@media (min-width: 928px) {
  header .header_center {
    flex-basis: 60%;
  }
}
header .header_center .header_nav_pc a {
  position: relative;
}
header .header_center .header_nav_pc a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ff8093;
  bottom: -37px;
  /*アンダーラインが位置する、各リストの下端からの高さ　ヘッダーの下端に合わせています*/
  visibility: hidden;
  /*ホバー前に、アンダーラインを可視化しない*/
}
header .header_center .header_nav_pc a:hover::after {
  visibility: visible;
}
header .header_center .header_nav .row li {
  text-align: center;
  margin-right: 30px;
}
header .header_center .header_nav .row li:last-child {
  margin-right: 10px;
}
header .header_center .header_nav .row li a {
  font-size: 14px;
  color: #fff;
}
@media (min-width: 928px) {
  header .header_center .header_nav .row li a {
    color: #836d61;
  }
}
header .header_center .header_nav .row li span {
  font-size: 12px;
  color: #ff8093;
  display: block;
  margin-top: 3px;
}
header .header_center .header_nav_sp {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #836d61;
  z-index: 500;
  transition: 500ms ease-out;
  padding: 90px 0 0;
  text-align: center;
}
header .header_center .header_nav_sp .row {
  display: block;
}
header .header_center .header_nav_sp li {
  margin-bottom: 20px;
  margin-right: 0 !important;
}
header .header_center .header_nav_sp li a {
  color: #000;
  font-size: 18px;
}
header .header_center .header_tel {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
header .header_center .header_tel p span {
  font-size: 14px;
}
header .header_center .header_tel ul {
  display: flex;
}
header .header_center .header_tel ul li {
  padding: 0 5px;
}
header .header_center .header_tel img {
  max-width: 30px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
header .header_right {
  flex-basis: 0;
  display: none;
}
@media (min-width: 928px) {
  header .header_right {
    flex-basis: 20%;
    display: block;
    border: 1px solid #836d61;
    margin-left: 10px;
    width: 160px;
    height: 50px;
    text-align: center;
    line-height: 50px;
  }
  header .header_right a {
    color: #836d61;
    display: block;
  }
}

.menu_btn {
  display: block;
  width: 20px;
  height: 15px;
  position: relative;
  margin-top: 0;
  z-index: 4000;
  margin-left: auto;
}
.menu_btn span {
  display: inline-block;
  height: 2px;
  width: 30px;
  background-color: #ff8093;
  border-radius: 10px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.menu_btn span:nth-child(1) {
  top: 5px;
}
.menu_btn span:nth-child(2) {
  top: 13px;
}
.menu_btn span:nth-child(3) {
  top: 21px;
}
@media (min-width: 928px) {
  .menu_btn {
    display: none;
  }
}

.open .menu_btn {
  z-index: 1000;
}
.open .menu_btn span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}
.open .menu_btn span:nth-child(2) {
  opacity: 0;
}
.open .menu_btn span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .header_nav_sp {
  opacity: 1 !important;
  left: 0 !important;
}

/* footer */
.btm_menu {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 10;
}
.btm_menu .tel {
  position: relative;
  background-color: #836d61;
  width: 50%;
  padding: 6px;
  height: 40px;
}
.btm_menu .tel a {
  position: absolute;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btm_menu .reserve {
  position: relative;
  background-color: #ff8093;
  width: 50%;
  padding: 6px;
  height: 40px;
}
.btm_menu .reserve a {
  position: absolute;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 928px) {
  .btm_menu {
    display: none;
  }
}

footer {
  background-image: url(../images/bg_concept.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  padding: 30px 0 47px;
}
@media (min-width: 1200px) {
  footer {
    padding: 30px 0 0;
  }
}
footer h2 {
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
}
footer h2 img {
  height: auto;
  aspect-ratio: 439/92;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftr_tel,
footer .ftr_open {
  color: #62504a;
}
footer .ftr_tel {
  font-size: 22px;
}
footer .ftr_open {
  font-size: 14px;
}
footer .ftr_links ul {
  width: 275px;
  margin: 10px auto;
}
footer .ftr_links ul li {
  padding: 10px 5px;
}
footer .ftr_links img {
  width: 100%;
  max-width: 30px;
  height: auto;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .ftr_links .ftr_reserve {
  border: 1px solid #836d61;
  padding: 0;
}
footer .ftr_links .ftr_reserve a {
  color: #836d61;
  display: block;
  width: 156px;
  height: 50px;
  line-height: 50px;
}
footer address {
  font-style: normal;
  font-size: 14px;
}
footer .copyright {
  background-image: url(../images/bg_logo.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10px;
  font-size: 12px;
  margin-top: 30px;
}
footer .copyright a {
  color: #fff;
}
@media (min-width: 1200px) {
  footer .copyright {
    padding: 30px;
  }
}

/* top */
.mv {
  margin-top: 58px;
}
@media (min-width: 1200px) {
  .mv {
    margin-top: 100px;
  }
}
.mv .mov {
  width: 100%;
  height: auto;
}
.mv video {
  display: block;
  width: 100%;
  height: auto;
}

.concept {
  background-image: url(../images/bg_concept.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 10px 60px;
  margin: 0 auto;
}
.concept h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.concept h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.concept h2 i {
  display: block;
  font-style: normal;
  color: #ff8093;
  font-size: 12px;
  font-weight: 300;
}
.concept .concept_desc {
  text-align: center;
  font-size: 5rem;
  font-weight: bold;
}
@media (max-width: 599px) {
  .concept .concept_desc {
    font-size: 2.5rem;
  }
}
.concept .concept_newtext {
  text-align: center;
  background-color: #fff;
  padding: 30px 0;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
  border: 1px solid #836d61;
}
@media (max-width: 599px) {
  .concept .concept_newtext {
    text-align: left;
    margin-top: 20px 15px;
    width: 100%;
    padding: 20px;
  }
}
.concept .concept_newtext h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}
.concept .concept_newtext .text_bold {
  font-weight: bold;
}
@media (max-width: 599px) {
  .concept .concept_newtext .text_bold {
    text-align: center;
  }
}
@media (max-width: 599px) {
  .concept .concept_newtext p {
    font-size: 14px;
  }
}

.logo {
  background-image: url(../images/bg_logo.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  text-align: center;
}
@media (min-width: 1200px) {
  .logo {
    padding: 60px;
  }
}
.logo img {
  width: 100%;
  max-width: 140px;
  height: auto;
  aspect-ratio: 439/92;
  -o-object-fit: contain;
     object-fit: contain;
}

.first {
  background-image: url(../images/bg_first.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 10px 60px;
}
@media (min-width: 928px) {
  .first {
    padding: 20px 0 60px;
  }
}
.first h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.first h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.first .first_intro {
  margin-bottom: 30px;
}
.first .first_desc img {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
.first .first_desc h3 {
  font-size: 24px;
  text-align: center;
  padding: 5px 0;
}
@media (min-width: 928px) {
  .first .first_desc h3 {
    text-align: left;
  }
}
.first .first_desc .first_photo_desc {
  margin-top: 10px;
}
@media (min-width: 928px) {
  .first .photo02 {
    flex-direction: row-reverse;
  }
}
.first .photo01,
.first .photo02 {
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
  background: #fff;
}
@media (min-width: 928px) {
  .first .photo01,
  .first .photo02 {
    background: none;
    display: flex;
    padding: 0px;
    margin-bottom: 0;
  }
  .first .photo01 .first_photo_img,
  .first .photo02 .first_photo_img {
    position: relative;
    flex-basis: 40%;
  }
  .first .photo01 .first_photo_img .photo01_img img,
  .first .photo02 .first_photo_img .photo01_img img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
  }
}
@media (min-width: 928px) and (min-width: 1200px) {
  .first .photo01 .first_photo_img .photo01_img img,
  .first .photo02 .first_photo_img .photo01_img img {
    left: 20%;
  }
}
@media (min-width: 928px) {
  .first .photo01 .first_photo_img .photo02_img img,
  .first .photo01 .first_photo_img .photo03_img img,
  .first .photo01 .first_photo_img .photo04_img img,
  .first .photo02 .first_photo_img .photo02_img img,
  .first .photo02 .first_photo_img .photo03_img img,
  .first .photo02 .first_photo_img .photo04_img img {
    width: 50%;
    height: auto;
    position: absolute;
    transform: translateY(-50%);
    left: -10%;
    aspect-ratio: 16/9;
    -o-object-fit: contain;
       object-fit: contain;
    z-index: 1;
  }
  .first .photo01 .first_photo_img .photo02_img img,
  .first .photo02 .first_photo_img .photo02_img img {
    top: 20%;
  }
  .first .photo01 .first_photo_img .photo03_img img,
  .first .photo02 .first_photo_img .photo03_img img {
    top: 50%;
    left: 20%;
    z-index: 30;
  }
  .first .photo01 .first_photo_img .photo04_img img,
  .first .photo02 .first_photo_img .photo04_img img {
    top: 81%;
  }
}
.first .photo01 img,
.first .photo02 img {
  width: 100%;
  height: auto;
}
.first .first_photo_desc {
  background: #fff;
  height: auto;
}
@media (min-width: 928px) {
  .first .first_photo_desc {
    min-height: 400px;
    padding: 20px 60px;
    flex-basis: 60%;
  }
  .first .first_photo_desc .pink_line {
    position: relative;
  }
  .first .first_photo_desc .pink_line::after {
    content: "";
    display: block;
    width: 280px;
    height: 2px;
    background-color: #ff8093;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }
}
@media (min-width: 1200px) {
  .first .first_photo_desc {
    padding: 20px 160px;
  }
}
.first .first_photo_desc p span {
  margin-top: 20px;
}

.howto {
  position: relative;
  margin: 30px 0;
  padding: 0 10px;
}
@media (min-width: 928px) {
  .howto {
    margin: 0 0 120px;
    padding: 0;
  }
}
.howto .bg_howto {
  position: relative;
  width: 100%;
}
.howto .bg_howto .bg_howto_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 192/35;
  -o-object-fit: contain;
     object-fit: contain;
}
.howto .bg_howto .howto_logo {
  background-color: #fff;
  width: 200px;
  height: 200px;
  padding: 40px;
  border-radius: 50%;
  line-height: 70px;
  margin: 0 auto;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}
@media (min-width: 1200px) {
  .howto .bg_howto .howto_logo {
    top: 62%;
  }
}
.howto .bg_howto .howto_logo img {
  height: auto;
  aspect-ratio: 439/92;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 928px) {
  .howto .howtouse {
    padding-top: 120px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .howto .howtouse {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
  }
}
.howto .howtouse h2 {
  color: #ff8093;
  text-align: center;
}
.howto .howtouse h2::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 104px;
  /*画像の幅*/
  height: 54px;
  /*画像の高さ*/
  margin-left: 10px;
  background-image: url(../images/icon_howto.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.howto .howtouse .howtowrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 5px;
}
.howto .howtouse .howtowrapper::after {
  content: "";
  height: 1540px;
  display: block;
  border-left: 4px dotted #ff8093;
  position: absolute;
  top: 20px;
  left: 7%;
}
@media (max-width: 599px) {
  .howto .howtouse .howtowrapper::after {
    height: 1460px;
    left: 9%;
  }
}
.howto .howtouse .howtobox {
  margin: 30px 0 40px;
}
.howto .howtouse .howtobox .howto_icon {
  background-color: #ff8093;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 76px;
  position: relative;
}
.howto .howtouse .howtobox .howto_icon img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.howto .howtouse .howtobox .howto_desc {
  flex-basis: 76%;
  margin-left: 20px;
}
.howto .howtouse .howtobox .howto_desc p {
  margin: 5px 0;
}
.howto .howtouse .howtobox .howto_desc img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (min-width: 928px) {
  .howto .attention {
    padding-top: 30px;
    width: 90%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .howto .attention {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
  }
}
.howto .attention h2 {
  color: #ff8093;
}
.howto .attention h2::after {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 110px;
  /*画像の幅*/
  height: 26px;
  /*画像の高さ*/
  margin-left: 10px;
  background-image: url(../images/icon_using.webp);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media (min-width: 928px) {
  .howto .attention h2::after {
    width: 201px;
    height: 52px;
  }
}
.howto .attention p {
  padding: 5px;
  border-left: 1px solid pink;
  margin: 20px 0;
  color: #ff8093;
}

.news h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.news h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.news h2 i {
  display: block;
  font-style: normal;
  color: #ff8093;
  font-size: 12px;
  font-weight: 300;
}
.news .list_news {
  width: 90%;
  margin: 30px auto;
}
@media (min-width: 1200px) {
  .news .list_news {
    width: 100%;
    max-width: 980px;
  }
}
.news .list_news li {
  border-bottom: 1px solid #836d61;
  padding: 10px;
}
.news .list_news li a {
  color: #836d61;
}
.news .list_news li span {
  color: #ff8093;
}
.news .list_news li span::before {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 15px;
  /*画像の幅*/
  height: 15px;
  /*画像の高さ*/
  background-image: url(../images/icon_times.webp);
  background-size: contain;
  vertical-align: middle;
  margin-right: 3px;
}

.deco {
  margin: 60px 0;
}
.deco img {
  width: 100%;
  height: auto;
  aspect-ratio: 64/11;
  -o-object-fit: contain;
     object-fit: contain;
}

.calender {
  margin: 0 auto 60px;
  padding: 0 20px;
  max-width: 1000px;
}
.calender h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.calender h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.calender h2 i {
  display: block;
  font-style: normal;
  color: #ff8093;
  font-size: 12px;
  font-weight: 300;
}
.calender .calender_iframe {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
  height: auto;
}
.calender .calender_iframe iframe {
  width: 100%;
  height: 500px;
}
@media (min-width: 928px) {
  .calender .calender_iframe iframe {
    height: 600px;
  }
}

.bg_system {
  background-image: url(../images/bg_system_sp.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  padding-bottom: 30px;
}
@media (min-width: 928px) {
  .bg_system {
    background-image: url(../images/bg_system.webp);
  }
}
.bg_system .system {
  padding: 30px 0;
}
.bg_system .system h2 {
  background-color: #a78d80;
  padding: 10px;
  color: #FFF;
  text-align: center;
  margin: 0 auto;
}
.bg_system .system h2 i {
  display: block;
  font-style: normal;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
.bg_system .system .list_plan {
  width: 100%;
  max-width: 640px;
  margin: 20px auto;
}
.bg_system .system .list_plan .plan_item {
  background-color: #fff0c1;
  color: #866e62;
  padding: 10px;
  border-radius: 10px;
  max-width: 150px;
  width: 100%;
  font-size: 2.2rem;
  margin: 5px;
  position: relative;
}
.bg_system .system .list_plan .plan_item p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media (max-width: 599px) {
  .bg_system .system .list_plan .plan_item {
    max-width: 640px;
    padding: 30px;
    margin: 10px 5px 0;
  }
}
.bg_system .system .plan_desc {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 470px;
  margin: 5px;
}
.bg_system .system .plan_desc .plan_30min,
.bg_system .system .plan_desc .plan_1hour {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  width: 49%;
  border-radius: 5px;
  display: inline-block;
  padding: 5px;
}
.bg_system .system .plan_desc .plan_30min span,
.bg_system .system .plan_desc .plan_1hour span {
  display: block;
  font-weight: normal;
  font-size: 1.2rem;
}
.bg_system .system .plan_desc .plan_30min {
  background-color: #fd999b;
}
.bg_system .system .plan_desc .plan_1hour {
  background-color: #faa379;
}
.bg_system .system .plan_desc .price_box {
  display: inline-block;
  width: 49%;
}
.bg_system .system .plan_desc .price_box .price {
  font-size: 2.2rem;
  text-align: center;
  font-weight: bold;
}
.bg_system .system .plan_desc .price_box p {
  width: 100%;
}
.bg_system .system .plan_desc .all_data {
  font-size: 4rem;
  color: #ff8093;
  font-weight: bold;
  text-align: center;
}
.bg_system .system .plan_desc .nop {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
}
.bg_system .system .plan_desc .nop span {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
}

.insta {
  margin: 30px 0;
  padding: 0 10px;
}
.insta h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.insta h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.insta h2 i {
  display: block;
  font-style: normal;
  color: #ff8093;
  font-size: 12px;
  font-weight: 300;
}

.faq {
  margin-bottom: 60px;
  /* 質問 */
  /* 答え */
  /* 質問を開いた時の仕様 */
  /* --アイコン */
  /* --答えの高さ */
  /* 質問をクリックした時のアイコンの動き */
}
.faq h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.faq h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.faq h2 i {
  display: block;
  font-style: normal;
  color: #ff8093;
  font-size: 12px;
  font-weight: 300;
}
.faq .cp_qa *,
.faq .cp_qa *:after,
.faq .cp_qa *:before {
  box-sizing: border-box;
}
.faq .cp_qa {
  border-top: 1px solid #1b2538;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .faq .cp_qa {
    width: 100%;
    max-width: 1000px;
  }
}
.faq .cp_qa .cp_actab {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1px;
  color: #ff8093;
}
.faq .cp_qa .cp_actab input {
  position: absolute;
  opacity: 0;
}
.faq .cp_qa .cp_actab label {
  font-weight: bold;
  line-height: 1.6;
  position: relative;
  display: block;
  margin: 0 0 0 0;
  padding: 1em 2em 1em 1em;
  cursor: pointer;
  border-bottom: 1px solid #1b2538;
}
.faq .cp_qa .cp_actab label:hover {
  color: #ff8093;
}
.faq .cp_qa .cp_actab .cp_actab-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  color: #836d61;
}
.faq .cp_qa .cp_actab .cp_actab-content p {
  margin: 1em;
}
.faq .cp_qa .cp_actab input:checked ~ label {
  color: #ff8093;
}
.faq .cp_qa .cp_actab input:checked ~ .cp_actab-content {
  max-height: 40em;
}
.faq .cp_qa .cp_actab label::after {
  line-height: 1.6;
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 3em;
  margin-top: -12.5px;
  transition: all 0.5s ease;
  text-align: center;
}
.faq .cp_qa .cp_actab input[type=checkbox] + label::after {
  content: "▼";
}
.faq .cp_qa .cp_actab input[type=checkbox]:checked + label::after {
  transform: rotateX(180deg);
}

.access {
  padding: 43px 0 0;
  position: relative;
  background-image: url(../images/bg_access.webp);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media (max-width: 599px) {
  .access {
    padding: 100px 0 0;
    background-size: cover;
  }
}
.access h2 {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff8093;
  padding: 10px;
  border-radius: 5px;
  color: #FFF;
  text-align: center;
  width: 160px;
  margin: 0 auto;
}
.access h2 i {
  display: block;
  font-style: normal;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
.access iframe {
  display: block;
}

.news_inner {
  width: 90%;
  margin: 70px auto 30px;
}
@media (min-width: 1200px) {
  .news_inner {
    margin: 160px auto 30px;
  }
}
.news_inner h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.news_inner h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .news_inner .flex_box_news {
    width: 60%;
  }
}
.news_inner #newsdata .news_desc {
  width: 100%;
  border: 1px solid #ff8093;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.news_inner #newsdata .news_desc .date {
  color: #ff8093;
  font-weight: 300;
}
.news_inner #newsdata .news_desc h3 {
  padding: 5px 0;
  border-bottom: 1px dotted;
  margin-bottom: 10px;
}
.news_inner #ymdata {
  width: 100%;
  text-align: center;
}
@media (min-width: 1200px) {
  .news_inner #ymdata {
    width: 30%;
  }
}
.news_inner #ymdata h2 {
  text-align: center;
  position: relative;
  margin: 20px 0 30px;
}
.news_inner #ymdata h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ff8093;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.news_inner #ymdata .yearlist {
  background-color: #836d61;
  color: #fff;
}
.news_inner #ymdata .monlist a {
  display: block;
  width: 100%;
  padding: 10px;
  border: 1px solid #836d61;
  color: #836d61;
}
.news_inner #ymdata .monlist a:first-child {
  border-bottom: none;
}

.fade {
  opacity: 0;
}
.fade.active {
  animation-name: fade;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

.fade-time1 {
  opacity: 0;
}
.fade-time1.active {
  animation-name: fade;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

.fade-time2 {
  opacity: 0;
}
.fade-time2.active {
  animation-name: fade;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.2s;
}

.fade-time3 {
  opacity: 0;
}
.fade-time3.active {
  animation-name: fade;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.fade-up {
  opacity: 0;
  transform: translateY(-20px);
}
.fade-up.active {
  animation-name: fadeUp;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(-20px);
}
.fade-up.active {
  animation-name: fadeUp;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-r {
  opacity: 0;
  transform: translateX(-20px);
}
.fade-r.active {
  animation-name: fadeR;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
}

@keyframes fadeR {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-l {
  opacity: 0;
  transform: translateX(20px);
}
.fade-l.active {
  animation-name: fadeL;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

@keyframes fadeL {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.page_kiyaku {
  padding: 6.4rem 0;
}
@media (max-width: 599px) {
  .page_kiyaku {
    padding: 4rem 0;
  }
}
.page_kiyaku .page_kiyaku_item {
  margin-bottom: 4.8rem;
}
@media (min-width: 928px) {
  .page_kiyaku .page_kiyaku_item {
    margin-bottom: 3.2rem;
  }
}
.page_kiyaku .page_kiyaku_ttl {
  font-size: 2.4rem;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px dashed #836d61;
}
@media (max-width: 599px) {
  .page_kiyaku .page_kiyaku_ttl {
    font-size: 2rem;
  }
}
.page_kiyaku .page_kiyaku_list {
  padding-left: 2rem;
}/*# sourceMappingURL=style.css.map */