@charset "UTF-8";

:root {
  /*--main-color: #f5a594;*/
  --main-color: #f3b5a8;
  --sub-color: #aed2d2;

  /* 画面端までの余白 */
  --margin-for-device-side: -15px;
}

@media (min-width:768px) {
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}

@media (min-width:992px) {
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}

@media (min-width:1200px) {
  :root {
    --margin-for-device-side: calc(555px - 50vw);
  }
}

@media (min-width:1536px) {
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}

@media (min-width:1720px) {
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}

/* 基本フォント: ゴシック */
body {
  font-family: "Zen Maru Gothic", serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
  color: #555;

  background-image: url(/system_panel/uploads/images/bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



/* 管理画面の余白調整 */
.gjs-dashed #wrapper {
  padding-bottom: 150px;
}

@media (max-width:767px) {
  #chatbot-btn {
    bottom: 55px !important;
    z-index: 5;
  }
}

.mincho {
  font-family: 'Noto Serif JP', serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  letter-spacing: 0.075em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
}

a {
  color: inherit;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}

img {
  max-width: 100%;
  width: auto;
}

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

.img_fit {
  position: relative;
}

.img_fit:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.img_fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit {
  display: block;
}

a .img.img_fit img {
  transition: 0.2s all;
}

a:hover .img.img_fit img {
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe {
  max-width: 100%;
}

.responsive_video {
  position: relative;
}

.responsive_video:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.gjs-dashed .responsive_video:before {
  display: none;
}

.gjs-dashed .responsive_video [data-gjs-type="video"]:before {
  content: "";
  display: block;
  padding-top: 56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1200px) {
  .md:not(.pc) {
    display: none !important;
  }

  .tb:not(.pc) {
    display: none !important;
  }

  .sp:not(.pc) {
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  .pc:not(.md) {
    display: none !important;
  }

  .tb:not(.md) {
    display: none !important;
  }

  .sp:not(.md) {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .pc:not(.tb) {
    display: none !important;
  }

  .md:not(.tb) {
    display: none !important;
  }

  .sp:not(.tb) {
    display: none !important;
  }
}

@media (max-width:767px) {
  .pc:not(.sp) {
    display: none !important;
  }

  .md:not(.sp) {
    display: none !important;
  }

  .tb:not(.sp) {
    display: none !important;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px) {
  .pc_nobr br {
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px) {
  .md_nobr br {
    display: none !important;
  }
}

@media (min-width:768px) and (max-width:1023px) {
  .tb_nobr br {
    display: none !important;
  }
}

@media (max-width:767px) {
  .sp_nobr br {
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.txt_ellipsis_line1 {
  -webkit-line-clamp: 1;
}

.txt_ellipsis_line2 {
  -webkit-line-clamp: 2;
}

.txt_ellipsis_line3 {
  -webkit-line-clamp: 3;
}

.txt_ellipsis_line4 {
  -webkit-line-clamp: 4;
}

.txt_ellipsis_line5 {
  -webkit-line-clamp: 5;
}




/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv {
  position: relative;
  z-index: 1;
}

.mv_img {
  position: relative;
  z-index: 1;
}

.mv_img.img_fit:before {
  padding-top: calc(100vh - 66px - 71px);
}

.mv_img.img_fit:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(74deg, rgba(255, 255, 255, 1) 2%, rgba(255, 255, 255, 1) 11%, rgba(255, 255, 255, 0.8575805322128851) 18%, rgba(255, 255, 255, 0.21612394957983194) 55%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.top_mv_img.mv_img.img_fit:after {
  content: unset;
}

/* MVテキスト */
.mv_txt {
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #555555;
  font-weight: 400;
  line-height: 1.3888;
  letter-spacing: 0;
}

.mv_txt_p1 {
  font-size: 32px;
  font-weight: 400;
  text-shadow: 10px 10px 50px rgba(255, 255, 255, 1);
}

.mv_txt_p2 {}

/* スライダーの場合 */
.mv_slider {}

.mv_slider_item {
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item {
  background: #CCC;
  padding: 15px 15px;
}

@media (max-width:767px) {
  .mv_txt_p1 {
    /*filter:
      drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF)
      drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF)
      drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);*/

    text-shadow:
      2px 2px 1px #ffffff,
      -2px 2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px 0px 1px #ffffff,
      0px 2px 1px #ffffff,
      -2px 0px 1px #ffffff,
      0px -2px 1px #ffffff;
  }

  .mv_img.img_fit:after {
    background: linear-gradient(74deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5662640056022409) 48%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (min-width:768px) {

  /* MV */
  .mv {}

  .mv_img {}

  .mv_img.img_fit:before {
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 40px;
  }

  .mv_txt_p2 {}

}

@media (min-width:1024px) {


  /* MV */
  .mv {}

  .mv_img {}

  .mv_img.img_fit:before {
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 50px;
  }

  .mv_txt_p2 {}

}

@media (min-width:1200px) {

  /* MV */
  .mv {}

  .mv_img {}

  .mv_img.img_fit:before {
    padding-top: 820px;
  }

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 60px;
  }

  .mv_txt_p2 {}

}

@media (min-width:1366px) {

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 60px;
  }

  .mv_txt_p2 {}

}

@media (min-width:1536px) {

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 72px;
    margin-left: -120px;
  }

  .mv_txt_p2 {}
}

@media (min-width:1720px) {

  /* MVテキスト */
  .mv_txt {}

  .mv_txt_p1 {
    font-size: 72px;
    margin-left: -160px;
  }

  .mv_txt_p2 {}
}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar {
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn {
  display: block;
}

.sidebar_bn img {
  width: 40px;
  transition: 0.2s all;
}

.sidebar_bn:hover {}

.sidebar_bn:hover img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.sidebar a:hover {
  transform: scale(1.1);
}

/*オンラインショップ*/
.reserve_popup {
  display: none;
}

.gjs-dashed .reserve_popup {
  display: flex;
  justify-content: center;
  background: #FFF;
  border-radius: 50px;
  margin-top: 50px;
}

.modaal-container {
  border-radius: 30px;
}

.modaal-inner-wrapper {
  padding: 60px 10px;
}

.modaal-content-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.reserve_box {}

.reserve_tt {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

@media (max-width:767px) {
  .reserve_box+.reserve_box {
    margin-top: 24px;
  }
}

@media (min-width:768px) {

  /* サイドバー */
  .sidebar {
    top: 80%;
  }

  .sidebar a {
    display: block;
    width: 95px;
  }

  /* バナー */
  .sidebar_bn {}

  .sidebar_bn img {
    width: 60px;
  }

  /*オンラインショップ*/
  .modaal-container {
    border-radius: 42px;
  }

  .modaal-content-container {}

  .reserve_box {
    width: 50%
  }

  .reserve_tt {
    font-size: 20px;
  }

  .reserve_tt+.read_more {
    margin-top: 10px;
  }
}

@media (min-width:1024px) {

  /* サイドバー */
  .sidebar {
    top: 70%;
  }

  .sidebar a {}


  /*オンラインショップ*/
  .modaal-content-container {}

  .reserve_box {}

  .reserve_tt {
    font-size: 24px;
  }
}

@media (min-width:1200px) {

  /* サイドバー */
  .sidebar {
    top: 50%;
    top: 80%;
  }

  .sidebar a {
    display: block;
    width: auto;
  }


  /* バナー */
  .sidebar_bn {}

  .sidebar_bn img {
    width: auto;
  }

}




/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.table_rows {
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.table_rows_tr {
  display: table-row;
}

.table_rows_th,
.table_rows_td {
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}

.table_rows_th {
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}

.table_rows_td {
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}

.table_rows_td_pad0 {
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows {}

.table_rows .table_rows>.table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows>.table_rows_tr:first-child .table_rows_td {
  border-top: 0;
}

.table_rows .table_rows>.table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows>.table_rows_tr:last-child .table_rows_td {
  border-bottom: 0;
}

.table_rows .table_rows>.table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows>.table_rows_tr .table_rows_td:first-child {
  border-left: 0;
}

.table_rows .table_rows>.table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows>.table_rows_tr .table_rows_td:last-child {
  border-right: 0;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}

.webgene-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.webgene-pagination li {
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}

.webgene-pagination li.selected {
  border: 0;
  background: #e5e5e5;
}

.webgene-pagination li.next a:after {
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}

.webgene-pagination li.prev a:before {
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor {
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}

.read_more a {
  width: 291px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  border-radius: 26px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.read_more a p {
  letter-spacing: 0;
}

.read_more a:after {
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}

.read_more a:hover {
  color: #FFF;
  background: var(--sub-color);
}

.read_more a:hover:after {
  margin-right: -5px;
}

.read_more a.blue {
  background: var(--sub-color);
}

.read_more a.blue:hover {
  background: var(--main-color);
}


/* 見出し */
.tt2 {
  text-align: center;
  margin-bottom: 30px;
}

.tt2_en {
  font-size: 16px;
  font-weight: 900;
  /*font-weight: 700;*/
  letter-spacing: 0.01em;
  font-family: "Zen Maru Gothic", serif;
  line-height: 1;
  color: var(--main-color);
}

.tt2_ja {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 7px;
}

.tt2_ja em {
  font-style: normal;

}

.tt2_ja.illust1 {}

.tt2_ja.illust1 em {
  position: relative;
  z-index: 1;

}

.tt2_ja.illust1 em:after {
  content: "";
  background-image: url('/system_panel/uploads/images/tt2_illust1.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  aspect-ratio: 107 / 93;
  position: absolute;
  z-index: 1;
  top: 32%;
  left: calc(100% + 5px);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.tt2_ja2 {
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}

.tt2_ja2 strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section.sec1 {
  padding-top: 0;
}

.section:last-child {
  padding-bottom: 0;
}

/* セクション背景 */
.section.beige {
  padding: 0;
  background: none;
  background-image: url('/system_panel/uploads/images/section_bg_base.jpg');
  background-repeat: repeat;
  background-size: auto auto;
  background-position: center;
  position: relative;
  z-index: 0;
}

.section.beige:before,
.section.beige:after {
  content: "";
  display: block;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 60px;
  position: absolute;
  z-index: 1;
  left: 0;
}

.section.beige:before {
  bottom: 100%;
  background-image: url('/system_panel/uploads/images/section_bg_top.png');
}

.section.beige:after {
  top: 100%;
  background-image: url('/system_panel/uploads/images/section_bg_bottom.png');
}

.section.beige.type2:before,
.section.beige.type2:after {
  height: 60px;
}

.section.beige.type2:before {
  background-image: url('/system_panel/uploads/images/section_bg_top2.png');
}

.section.beige.type2:after {
  background-image: url('/system_panel/uploads/images/section_bg_bottom2.png');
}

.sec_illust_parts {
  position: absolute;
  z-index: 2;
  background-repeat: no-repeat;
  background-size: contain;
}

.sec_illust_parts.pos1 {
  width: 38px;
  aspect-ratio: 76 / 62;
  left: 15px;
  bottom: -70px;
  background-image: url('/system_panel/uploads/images/sec_illust_parts1.png');
}

.sec_illust_parts.pos2 {
  width: 45px;
  aspect-ratio: 89 / 101;
  left: calc(100% - 60px);
  top: -40px;
  background-image: url('/system_panel/uploads/images/sec_illust_parts2.png');
}

.sec_illust_parts.pos3 {
  width: 35px;
  aspect-ratio: 69 / 71;
  left: 15px;
  bottom: -75px;
  background-image: url('/system_panel/uploads/images/sec_illust_parts3.png');
}

/* コンテナ */
.container.wide {}


/* 概要 */
.cmn_about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.cmn_about_box1 {
  width: 100%;
  margin-bottom: 15px;
}

.cmn_about_title {
  font-size: 38px;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
}

.cmn_about_txt {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 2.1875;
  line-height: 1.875;
  text-align: justify;
  margin-top: 15px;
}

.cmn_about_txt * {
  letter-spacing: 0;
}

.cmn_about_img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: relative;
  z-index: 1;
}

.cmn_about_img img {
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}

.cmn_about_img.fr1 {
  width: 43%;
  aspect-ratio: 271 / 255;
  background-image: url('/system_panel/uploads/images/illust_bg1.png');
}

.cmn_about_img.fr2 {
  width: 45%;
  aspect-ratio: 249 / 254;
  background-image: url('/system_panel/uploads/images/illust_bg2.png');
}

.cmn_about_img.fr3 {
  width: 45%;
  aspect-ratio: 257 / 269;
  background-image: url('/system_panel/uploads/images/illust_bg3.png');
}

.cmn_about_img.fr1 img {
  width: 101.10%;
  aspect-ratio: 274 / 248;
  left: 8px;
  -webkit-mask-image: url('/system_panel/uploads/images/illust_frame1.png');
}

.cmn_about_img.fr2 img {
  width: 104.41%;
  aspect-ratio: 260 / 241;
  left: -8px;
  -webkit-mask-image: url('/system_panel/uploads/images/illust_frame2.png');
}

.cmn_about_img.fr3 img {
  width: 103.52%;
  aspect-ratio: 266 / 260;
  left: -10px;
  -webkit-mask-image: url('/system_panel/uploads/images/illust_frame3.png');
}

.cmn_about_img.fr4 {
  width: 43%;
  aspect-ratio: 436 / 404;
  background-image: url('/system_panel/uploads/images/illust_bg4.png');
}

.cmn_about_img.fr5 {
  width: 45%;
  aspect-ratio: 438 / 382;
  background-image: url('/system_panel/uploads/images/illust_bg5.png');
}

.cmn_about_img.fr4 img {
  width: 94.72%;
  aspect-ratio: 413 / 428;
  left: 10px;
  top: auto;
  bottom: 3px;
  -webkit-mask-image: url('/system_panel/uploads/images/illust_frame4.png');
}

.cmn_about_img.fr5 img {
  width: 98.40%;
  aspect-ratio: 431 / 399;
  left: 0;
  top: auto;
  bottom: 3px;
  -webkit-mask-image: url('/system_panel/uploads/images/illust_frame5.png');
}



.cmn_about_img.pos1_1 {}

.cmn_about_img.pos1_2 {
  left: 10px;
}

.cmn_about_img.pos1_3 {
  bottom: -36px;
  right: -83px;
}

/* 装飾 */
.cmn_about_img:after {
  content: "";
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}

.cmn_about_img.parts1:after {
  width: 26.19%;
  aspect-ratio: 71 / 66;
  top: 94%;
  right: 6%;
  background-image: url('/system_panel/uploads/images/illust_parts1.png');
}

.cmn_about_img.parts2:after {
  width: 26.10%;
  aspect-ratio: 65 / 91;
  top: 92%;
  left: 12%;
  background-image: url('/system_panel/uploads/images/illust_parts2.png');
}

.cmn_about_img.parts3:after {
  width: 27.23%;
  aspect-ratio: 70 / 74;
  top: 70%;
  left: -34%;
  background-image: url('/system_panel/uploads/images/illust_parts3.png');
}


/* 特徴 */
.cmn_feature {
  padding-bottom: 5px;
}

.cmn_feature_row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.cmn_feature_row+.cmn_feature_row {
  margin-top: 50px;
}

.cmn_feature_box1 {
  width: 100%;
  position: relative;
  z-index: 1;
}

.cmn_feature_box1:after {
  content: "";
  top: 5px;

  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  border-radius: 25px;
  background: #CCC;
}

.cmn_feature_box2 {
  width: 100%;
  margin-top: 30px;
}

.cmn_feature_img {
  border-radius: 25px;
  overflow: hidden;
}

.cmn_feature_img.img_fit:before {
  padding-top: 94.73%;
}

.cmn_feature_title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.371;
  color: #f5a594;
}

.cmn_feature_txt {
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
  margin-top: 10px;
}

.cmn_feature_txt p {
  letter-spacing: 0;
}

.cmn_feature_row:nth-child(odd) .cmn_feature_box1:after {
  left: 5px;
  background-image: url('/system_panel/uploads/images/home_entrance_bg2.png');
}

.cmn_feature_row:nth-child(even) .cmn_feature_box1:after {
  right: 5px;
  background-image: url('/system_panel/uploads/images/home_entrance_bg1.png');
}


.cmn_feature_floor {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  z-index: 2;
  top: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  aspect-ratio: 95 / 95;
  font-size: 18px;
  padding-bottom: 0.8571em;
}

.cmn_feature_floor p {
  letter-spacing: 0;
  line-height: 1;
}

.cmn_feature_floor_p1 {
  font-size: 1.428em;
}

.cmn_feature_floor_p2 {}

.cmn_feature_row:nth-child(odd) .cmn_feature_floor {
  left: 0;
  -webkit-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  background-image: url('/system_panel/uploads/images/feature_floor_num1.png');
}

.cmn_feature_row:nth-child(even) .cmn_feature_floor {
  right: 0;
  -webkit-transform: translate(20%, -50%);
  transform: translate(20%, -50%);
  background-image: url('/system_panel/uploads/images/feature_floor_num2.png');
}

@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {

  /* スマホ用テーブル */
  .table_rows.resp {}

  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td {
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp {
    border: 1px solid #dcdcdc;
    border-top: 0;
  }

  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td {
    border-top: 1px solid #dcdcdc;
  }


  .cmn_about_txt {
    margin-bottom: 20px;
  }

}

@media (min-width:768px) {

  /* セクション背景 */
  .section.beige {}

  .section.beige:before,
  .section.beige:after {
    height: 100px;
  }

  .section.beige.type2:before,
  .section.beige.type2:after {
    height: 180px;
    height: 100px;
  }

  .sec_illust_parts.pos1 {
    width: 76px;
    /*left: calc(50% - 560px);*/
    bottom: -125px;
  }

  .sec_illust_parts.pos2 {
    width: 89px;
    left: calc(100% - 104px);
    top: -75px;
  }

  .sec_illust_parts.pos3 {
    width: 69px;
    /*left: calc(50% - 585px);*/
    bottom: -130px;
  }


  .anchor {
    top: -100px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .read_more {
    margin-top: 35px;
  }

  .read_more.center {
    justify-content: center;
  }

  .read_more.left {
    justify-content: flex-start;
  }

  .read_more.right {
    justify-content: flex-end;
  }

  .read_more a {
    width: 291px;
    font-size: 16px;
    padding: 17px 20px;
    margin: 5px 5px;
  }

  .read_more a:after {
    content: "";
    width: 6px;
    height: 10px;
    background-image: url(/system_panel/uploads/images/right.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    top: 50%;
    right: 29px;
  }

  .read_more a:hover:after {
    margin-right: -5px;
  }

  /* 見出し */
  .tt2 {
    margin-bottom: 50px;
  }

  .tt2_en {
    font-size: 16px;
  }

  .tt2_ja {
    font-size: 36px;
    margin-top: 0;
  }

  .tt2_ja.illust1 em:after {
    width: 90px;
    top: 26%;
    left: calc(100% + 15px);

  }

  .tt2_ja2 {

    margin-top: 30px;
  }

  /* 概要 */
  .cmn_about {}

  .cmn_about_box1 {
    margin-bottom: 30px;
  }

  .cmn_about_title {
    font-size: 30px;
  }

  .cmn_about_txt {
    font-size: 16px;
    text-align: center;
  }

  .cmn_about_img.fr1 {
    width: 40%;
  }

  .cmn_about_img.fr2 {
    width: 40%;
    /*left: 20%;*/
  }

  .cmn_about_img.fr3 {
    width: 40%;
    right: -190px;
  }

  .cmn_about_img.fr4 {
    width: 40%;
  }

  .cmn_about_img.fr5 {
    width: 40%;
  }

  /* 特徴 */
  .cmn_feature {}

  .cmn_feature_row {}

  .cmn_feature_row+.cmn_feature_row {
    margin-top: 70px;
  }

  .cmn_feature_box1 {
    width: 34.23%;
  }

  .cmn_feature_box2 {
    width: 59.90%;
    margin-top: -10px;
  }

  .cmn_feature_img {
    border-radius: 25px;
  }

  .cmn_feature_title {
    font-size: 28px;
  }

  .cmn_feature_txt {
    font-size: 16px;
    line-height: 2.1875;
    margin-top: 20px;
  }

  .cmn_feature_row:nth-child(odd) .cmn_feature_box1 {}

  .cmn_feature_row:nth-child(odd) .cmn_feature_box2 {}

  .cmn_feature_row:nth-child(even) .cmn_feature_box1 {
    order: 2;
  }

  .cmn_feature_row:nth-child(even) .cmn_feature_box2 {
    order: 1;
  }

  .cmn_feature_floor {
    width: 70px;
    font-size: 24px;
  }

  .cmn_feature_row:nth-child(odd) .cmn_feature_floor {
    left: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .cmn_feature_row:nth-child(even) .cmn_feature_floor {
    right: 0;
    -webkit-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
  }

}

@media (min-width:1024px) {

  .section.beige.type2:before,
  .section.beige.type2:after {
    height: 180px;
  }

  .sec_illust_parts.pos3 {
    bottom: -205px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 120px;
  }

  .posts_list .webgene-pagination {
    margin-top: 80px;
  }

  /* 見出し */
  .tt2 {
    margin-bottom: 50px;
  }

  .tt2_en {
    font-size: 20px;
  }

  .tt2_ja {
    font-size: 48px;
    margin-top: 7px;
  }

  /* 概要 */
  .cmn_about {
    justify-content: center;
  }

  .cmn_about_box1 {}

  .cmn_about_box1 {
    width: 730px;
  }

  .cmn_about_title {
    font-size: 38px;
  }

  .cmn_about_txt {
    font-size: 16px;
    line-height: 2.1875;
    text-align: center;
    margin-top: 30px;
  }

  .cmn_about_img {
    position: absolute;
    z-index: 1;
  }

  .cmn_about_img.fr1 {
    width: calc(271px * 0.8);
  }

  .cmn_about_img.fr2 {
    width: calc(249px * 0.8);
  }

  .cmn_about_img.fr3 {
    width: calc(257px * 0.8);
  }

  .cmn_about_img.fr4 {
    width: calc(436px * 0.6);
  }

  .cmn_about_img.fr5 {
    width: calc(438px * 0.6);
  }

  /*.cmn_about_img.fr1 img{
    left: 8px;
  }
  .cmn_about_img.fr2 img{
    left: -8px;
  }
  .cmn_about_img.fr3 img{
    left: -10px;
  }*/

  .cmn_about_img.pos1_1 {
    top: 43%;
    left: -40px;
  }

  .cmn_about_img.pos1_2 {
    top: 0;
    right: -20px;
    left: auto;
  }

  .cmn_about_img.pos1_3 {
    bottom: 0;
    right: -50px;
  }

  .cmn_about_img.pos3_1 {
    top: 3%;
    left: -50px;
  }

  .cmn_about_img.pos3_2 {
    bottom: -110px;
    right: -90px;
  }

}

@media (min-width:1200px) {

  .sec_illust_parts.pos1 {
    width: 76px;
    left: calc(50% - 560px);
    bottom: -125px;
  }

  .sec_illust_parts.pos2 {
    width: 89px;
    left: calc(50% + 460px);
    top: -75px;
  }

  .sec_illust_parts.pos3 {
    width: 69px;
    left: calc(50% - 585px);
    bottom: -200px;
  }

  .tt2_ja.illust1 em:after {
    width: 107px;
    top: 26%;
    left: calc(100% + 15px);

  }



  /* 概要 */
  .cmn_about_img.fr1 {
    width: 271px;
  }

  .cmn_about_img.fr2 {
    width: 249px;
  }

  .cmn_about_img.fr3 {
    width: 257px;
  }


  .cmn_about_img.pos1_1 {
    top: 40%;
    left: -30px;
  }

  .cmn_about_img.pos1_2 {
    top: 0;
    right: -40px;
  }

  .cmn_about_img.pos1_3 {
    bottom: -140px;
    right: 5px;
  }

  .cmn_about_img.pos3_1 {
    top: 3%;
    left: -50px;
  }

  .cmn_about_img.pos3_2 {
    bottom: -110px;
    right: -90px;
  }

  /* 特徴 */
  .cmn_feature {}

  .cmn_feature_row {}

  .cmn_feature_row+.cmn_feature_row {
    margin-top: 120px;
  }

  .cmn_feature_box1 {
    width: 34.23%;
  }

  .cmn_feature_box2 {
    width: 59.90%;
  }

  .cmn_feature_title {
    font-size: 35px;
  }

  .cmn_feature_txt {
    margin-top: 25px;
  }

  .cmn_feature+.read_more {
    margin-top: 65px;
  }




  .cmn_feature_floor {
    width: 95px;
    font-size: 35px;
    padding-bottom: 0.8571em;
  }

}

@media (min-width:1536px) {

  /* 概要 */
  .cmn_about_img.fr1 {
    width: 271px;
  }

  .cmn_about_img.fr2 {
    width: 249px;
  }

  .cmn_about_img.fr3 {
    width: 257px;
  }

  .cmn_about_img.fr4 {
    width: 436px;
  }

  .cmn_about_img.fr5 {
    width: 438px;
  }

  .cmn_about_img.pos1_1 {
    top: 45%;
    left: -128px;
  }

  .cmn_about_img.pos1_2 {
    top: -11px;
    right: -135px;
  }

  .cmn_about_img.pos1_3 {
    bottom: -250px;
    right: -85px;
  }

  .cmn_about_img.pos3_1 {
    top: 3%;
    left: -245px;
  }

  .cmn_about_img.pos3_2 {
    bottom: -203px;
    right: -238px;
  }

}


/*******************************
*　HOME
********************************/
.pg_home {}

.pg_home .section.sec1 {
  padding-top: 50px;
  padding-bottom: 40px;
}

.pg_home .section.sec2 {
  padding-top: 30px;
}

.pg_home .section.sec3 {
  padding-top: 140px;
  padding-bottom: 90px;
}

.pg_home .section.sec4 {
  padding-top: 30px;
}

.pg_home .section.sec5 {
  padding-top: 90px;
}

.pg_home .section.sec6 {
  padding-top: 0;
}

/* 代表の想い */
.home_message {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.home_message_box1 {
  width: 100%;
  border-top: 2px solid #f3b5a8;
  border-bottom: 2px solid #f3b5a8;
  padding: 20px 0;
  position: relative;
  z-index: 1;
}

.home_message_box2 {
  width: 100%;
  margin-top: 20px;
}

.home_message_txt {
  font-size: 16px;
  line-height: 2.1875;
  text-align: justify;
}

.home_message_txt p {
  letter-spacing: 0;
}

.home_message_img {
  border-radius: 25px;
  overflow: hidden;
}

.home_message_img.img_fit:before {
  padding-top: 139.71%;
}

.home_message_illust {
  width: 80px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 10px;
}

.gjs-dashed .home_message_illust img {
  background-color: rgba(0, 0, 0, 0.2);
}

/* 入口 */
.home_entrance {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.home_entrance_item {
  width: 100%;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.home_entrance_item:after {
  content: "";
  display: block;
  border-radius: 50px 0 50px 0;
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat;
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: -5px;
  left: 15px;
  right: 5px;
}

.home_entrance_item:nth-child(n+2) {
  margin-top: 90px;
}

.home_entrance_item_inner {
  background: #FFF;
  border: 2px solid #ccc;
  border-radius: 50px 0 50px 0;
  padding: 15px 15px;
  height: 100%;
  position: relative;
  z-index: 1;
}

.home_entrance_item_label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  aspect-ratio: 1 / 1;
  /*background: #FFF;*/
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  /*border: 2px solid #CCC;*/
  /*border-radius: 50%;*/
  position: absolute;
  z-index: 1;
  top: 0;
  right: 10px;
  -webkit-transform: translate(0, -69.35%);
  transform: translate(0, -69.35%);

}

.home_entrance_item_label p {
  font-size: 23px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.304;
  letter-spacing: 0;
}

.home_entrance_item_illust {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100px;
  aspect-ratio: 136 / 203;
  text-align: center;
  margin: -60px auto 0;
}

.home_entrance_item_title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.home_entrance_item_title:after {
  content: "";
  display: block;
  width: 244px;
  height: 2px;
  background: #CCC;
  margin: 10px auto 0;
}

.home_entrance_item_txt {
  font-size: 16px;
  line-height: 2.1875;
  line-height: 1.875;
  text-align: justify;
}

.home_entrance_item_txt p {
  letter-spacing: 0;
}

.home_entrance_item .read_more {
  margin-top: 10px;
}

/* カラバリ設定 */
.home_entrance_item.color1 .home_entrance_item_inner,
.home_entrance_item.color1 .home_entrance_item_label {
  border-color: #aed2d2;
}

.home_entrance_item.color2 .home_entrance_item_inner,
.home_entrance_item.color2 .home_entrance_item_label {
  border-color: #f4d0c9;
}

.home_entrance_item.color1 .home_entrance_item_title:after {
  background-color: #aed2d2;
}

.home_entrance_item.color2 .home_entrance_item_title:after {
  background-color: #f4d0c9;
}

.home_entrance_item.color1 .home_entrance_item_label {
  background-image: url('/system_panel/uploads/images/home_entrance_label1.png');
}

.home_entrance_item.color2 .home_entrance_item_label {
  background-image: url('/system_panel/uploads/images/home_entrance_label2.png');
}

.home_entrance_item.color1:after {
  background-image: url('/system_panel/uploads/images/home_entrance_bg1.png');
}

.home_entrance_item.color2:after {
  background-image: url('/system_panel/uploads/images/home_entrance_bg2.png');
}





/* コピー用 */
@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {}

@media (min-width:768px) {

  .pg_home .section.sec1 {
    padding-top: 60px;
    padding-bottom: 130px;
  }

  .pg_home .section.sec2 {
    padding-top: 30px;
    padding-bottom: 25px;
  }

  .pg_home .section.sec3 {
    padding-top: 220px;
    padding-bottom: 100px;
  }

  .pg_home .section.sec4 {
    padding-top: 5px;
  }

  .pg_home .section.sec5 {
    padding-top: 180px;
  }

  .pg_home .section.sec6 {
    padding-top: 20px;
  }

  /* 代表の想い */
  .home_message {}

  .home_message_box1 {
    width: 65.76%;
    padding: 32px 0;
  }

  .home_message_box2 {
    width: 31.53%;
    margin-top: 0;
  }

  .home_message_txt {
    font-size: 16px;
    line-height: 2.1875;
  }

  .home_message_img {
    border-radius: 25px;
  }

  .home_message_illust {
    width: 120px;
    left: 20px;
  }


  /* 入口 */
  .home_entrance {
    margin: 0 -15px;
  }

  .home_entrance_item {
    width: 50%;
    padding: 0 15px;
  }

  .home_entrance_item:after {
    border-radius: 50px 0 50px 0;
    top: 5px;
    bottom: -5px;
    left: 20px;
    right: 10px;
  }

  .home_entrance_item:nth-child(n+2) {
    margin-top: 0;
  }

  .home_entrance_item:nth-child(n+3) {
    margin-top: 30px;
  }

  .home_entrance_item_inner {
    border-radius: 50px 0 50px 0;
    padding: 15px 15px 30px;
  }

  .home_entrance_item_label {}

  .home_entrance_item_label p {}

  .home_entrance_item_illust {
    margin-top: -85px;
  }

  .home_entrance_item_title {
    font-size: 20px;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .home_entrance_item_title:after {
    width: 244px;
    margin-top: 15px;
  }

  .home_entrance_item_txt {
    font-size: 16px;
    line-height: 2.1875;
  }

  .home_entrance_item .read_more {
    margin-top: 25px;
  }
}

@media (min-width:1024px) {}

@media (min-width:1200px) {

  .pg_home .section.sec1 {
    padding-top: 115px;
    padding-bottom: 210px;
  }

  .pg_home .section.sec2 {
    padding-top: 70px;
    padding-bottom: 25px;
  }

  .pg_home .section.sec3 {
    padding-top: 320px;
    padding-bottom: 330px;
  }

  .pg_home .section.sec4 {
    padding-top: 5px;
  }

  .pg_home .section.sec5 {
    padding-top: 325px;
  }

  .pg_home .section.sec6 {
    padding-top: 85px;
  }

  /* 代表の想い */
  .home_message_illust {
    width: auto;
    left: 50px;
  }

  /* 入口 */
  .home_entrance {
    margin: 0 -15px;
  }

  .home_entrance_item {
    width: 50%;
    padding: 0 15px;
  }

  .home_entrance_item:after {
    border-radius: 50px 0 50px 0;
    top: 5px;
    bottom: -5px;
    left: 20px;
    right: 10px;
  }

  .home_entrance_item:nth-child(n+2) {
    margin-top: 0;
  }

  .home_entrance_item:nth-child(n+3) {
    margin-top: 30px;
  }

  .home_entrance_item_inner {
    border-radius: 50px 0 50px 0;
    padding: 15px 15px 30px;
  }

  .home_entrance_item_label {
    width: 124px;
    right: 35px;
  }

  .home_entrance_item_label p {
    font-size: 23px;
  }

  .home_entrance_item_illust {
    width: 136px;
    margin-top: -85px;
  }

  .home_entrance_item_title {
    font-size: 35px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .home_entrance_item_txt {
    padding: 0 46px;
  }
}





/*******************************
*　
********************************/
.pg_xxx {}

.pg_xxx .section.sec1 {}

.pg_xxx .section.sec2 {}

.pg_xxx .section.sec3 {}

@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {

  .artist_info_rental_item {
    padding-bottom: 5px;
    padding-right: 5px;
  }

  .artist_info_rental_item:nth-child(n+2) {
    margin-top: 30px;
  }
}

@media (min-width:768px) {
  .pg_xxx {}

  .pg_xxx .section.sec1 {}

  .pg_xxx .section.sec2 {}

  .pg_xxx .section.sec3 {}

  .artist_info_item:nth-child(odd) .artist_info_item_content_left {}

  .artist_info_item:nth-child(odd) .artist_info_item_content_right {}

  .artist_info_item:nth-child(even) .artist_info_item_content_left {
    order: 2;
  }

  .artist_info_item:nth-child(even) .artist_info_item_content_right {
    order: 1;
  }


  .artist_info_rental_item:nth-child(n+4) {
    margin-top: 40px;
  }

}

@media (min-width:1024px) {}

@media (min-width:1200px) {}



/*******************************
*　
********************************/
.pg_general {}

.pg_general .section.sec1 {}

.pg_general .section.sec2 {
  padding-top: 30px;
}

.pg_general .section.sec3 {
  padding-top: 100px;
}

.artist_info_item_gallerys.general .artist_info_item_gallery_img .img_fit:before {
  padding-top: 71.42%;
}

.artist_info_item_gallerys.general+.content_desc {
  margin-top: 30px;
}

.swiper+.content_desc {
  margin-top: 30px;
}

.artist_info_rental_msg+.swiper {
  margin-top: 30px;
}

.artist_info_rental_msg {
  position: relative;
  z-index: 1;
}

.artist_info_rental_msg p.sub {
  font-size: 14px;
  /*position: absolute;*/
  /*z-index: 1;*/
  /*top: 100%;*/
  /*left: 0;*/
  width: 100%;
  text-align: center;
  background: none;
}

.artist_info_rental_msg p.sub:after {
  display: none;
}

.pg_header_tt {
  line-height: 1.666;
}

.section.general_feature_section {
  margin: 80px 0 130px;
}

.pg_home .section.top_floor_section{
  padding-top: 100px;
  padding-bottom: 80px;
}

/* コピー用 */
@media (max-width:374px) {}

@media (min-width:375px) {}

@media (max-width:767px) {

  .pg_general .section.sec3 {
    padding-bottom: 20px;
  }

}

@media (min-width:768px) {
  .pg_general {}

  .pg_general .section.sec1 {
    padding-bottom: 80px;
  }

  .pg_general .section.sec2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pg_general .section.sec3 {
    padding-top: 190px;
  }


  .tt2+.artist_info_item_gallerys {
    margin-top: -8px;
  }

  .artist_info_item_gallerys.general+.content_desc {
    margin-top: 45px;
  }

  .artist_info_rental_msg p.sub {
    font-size: 18px;
  }
}

@media (min-width:1024px) {

  .artist_info_price_wrap.general {
    width: 790px;
    margin-left: auto;
    margin-right: auto;
  }

  .artist_info_price_wrap.general .artist_info_price_tbl_img {
    width: 109px;
    top: -31%;
    left: -9.5%;
  }

  .artist_news_box+.read_more,
  .artist_info_rental_items+.read_more {
    margin-top: 60px;
  }

  .pg_home .section.top_floor_section{
padding-top: 290px;
padding-bottom: 160px;
  }
}

@media (min-width:1200px) {

  .pg_general {}


  .pg_general .section.sec1 {
    padding-bottom: 240px;
  }

  .pg_general .section.sec2 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pg_general .section.sec3 {
    padding-top: 290px;
  }

  .section.general_feature_section {
    margin: 160px 0 260px;
  }

}