@charset "UTF-8";

/* CSS Document */
/********************************************

Common CSS

********************************************/
html {
    font-size: 62.5%;
    /*フォントの基準を10pxに*/
}

.wp-core-ui select {
    margin-bottom: 5px !important;
}

body {
    color: #484848;
    background: #000;
    font-size: 1rem;
    width: 100%;
    margin: 0;
    font-family: YuMincho, Hiragino Mincho ProN, Yu Mincho, MS PMincho, Times New Roman, serif;
    ;
    box-sizing: border-box;
    overflow-y: scroll;
    overflow-x: hidden;
    font-feature-settings: "palt"1;
    /*文字詰め*/
    letter-spacing: .04em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
}

.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

.hidden {
    display: none;
}

.txt_under {
    text-decoration: underline;
}

img {
    vertical-align: top;
}

/*テキストを選択した時の装飾*/
::selection {
    background: #537895;
    color: #fff;
}

::-moz-selection {
    background: #537895;
    color: #fff;
}

li {
    list-style-type: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 100;
    color: white;
    display: none;
    font-family: 'source_sans_proregular';
    line-height: 25px;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/*********************************

Font

**********************************/
.bold_400 {
    font-weight: 400 !important;
}

.bold_600 {
    font-weight: 600 !important;
}

.bold_700 {
    font-weight: 700 !important;
}

.bold_800 {
    font-weight: 800 !important;
}

.bold_900 {
    font-weight: 900 !important;
}

.txt_08em {
    font-size: 0.8em !important;
}

.txt_09em {
    font-size: 0.9em !important;
}

.txt_12em {
    font-size: 1.2em !important;
}

.txt_15em {
    font-size: 1.5em !important;
}

.txt_20em {
    font-size: 2em !important;
}

.color_r_red {
    color: #BF0000 !important;
}

.color_yel {
    color: #FBF91B !important;
}

.color_blue {
    color: #406DD1 !important;
}

.color_white {
    color: #fff !important;
}

.color_bk {
    color: #333 !important;
}

.txt_line {
    text-decoration: line-through !important;
}

.bg_yel {
    background: #fcf91c;
}

.bg_bk {
    background-color: #000 !important;
}

.bg_r_red {
    background-color: #BE0000 !important;
}

.bg_yel_txt {
    background: #FBF91B !important;
    color: #333 !important;
    font-weight: 900;
}

.dot {
    position: relative;
}

.dot::after {
    position: absolute;
    content: "";
    background-image: url("../images/dot.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.1rem;
    height: 1.1rem;
    top: -3%;
    left: 50%;
    transform: translateX(-50%);
}

.under_line {
    text-decoration: underline !important;
}

/*********************************
PC/MOBILE
**********************************/
.pc {
    display: none;
}

.mb {
    display: block;
}

/*********************************
スムース表示エフェクト
**********************************/
/* 滑らかに変形して出現 */
.open {
    animation-name: openAnime;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    transform-origin: left;
    opacity: 0;
}

@keyframes openAnime {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        display: none;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
/* 初期状態からサイズを固定 */
.fadeUpTrigger3 {
  opacity: 0;
  transform: translateY(100px);
  height: auto; /* 高さを自動設定 */
  will-change: transform, opacity; /* パフォーマンス最適化 */
  backface-visibility: hidden; /* ちらつき軽減 */
}

/* アニメーションはopacityとtransformのみに限定 */
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s; /* 短くする */
  animation-fill-mode: forwards;
  animation-timing-function: ease-out; /* イージング変更 */
  opacity: 0;
}
@media screen and (max-width: 767px) {
  /* 全体のレイアウト調整 */
  #todays_schedule .article-wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap; /* 折り返しさせない */
    width: 90%;
    margin: 0 auto;
  }
  
}
/* 要素同士が重ならないようにする */
.model-item {
  overflow: visible;
  z-index: 1;
}

/* アクティブな要素（hover時など）を手前に */
.model-item:hover {
  z-index: 2;
}

/* 滑らかに変形して出現 */
.smooth {
    animation-name: smoothAnime;
    animation-duration: 1.2s;
    animation-fill-mode: forwards;
    transform-origin: left;
    opacity: 0;
}

@keyframes smoothAnime {
    from {
        transform: translate3d(0, 100%, 0) skewY(12deg);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0) skewY(0);
        opacity: 1;
    }
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*********************************
DatePicker UI
**********************************/
/* 土曜日の色設定 */
td.ui-datepicker-week-end:last-child a.ui-state-default {
    color: #00f !important;
    /* 文字色：青 */
}

/* 日曜日の色設定 */
td.ui-datepicker-week-end:first-child a.ui-state-default {
    color: #f00 !important;
    /* 文字色：赤 */
}

/*********************************

年齢確認モーダル

**********************************/
/*モーダル*/
  /* モーダルの基本スタイル */
  .modal-container {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    box-shadow: 0 0 5px #fff;
    background-color: rgba(0, 0, 0, 0.8); /* 背景の半透明ブラック */
  }
  .modal{
    width: 90%;
    margin: 0 auto;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("../images/model-bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
  }

  .modal .logo{
    position: relative;
    width: 100%;
    height: 320px;
  }

  .modal .logo img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%,-50%);
  }

  .modal-content{
    background: #dcdcdc;
    padding: 1rem 1.2rem 2rem;
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .modal-content .ttl{
    margin: 0 auto;
    font-size: 18px;
  }
  .modal-content .txt{
    margin: 1rem auto;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -.05em;
    font-weight: 400;
  }
  .btn-wrap{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .btn-wrap button{
    /* 幅を50%に設定 */
    width: 45%;
    /* 上下左右の内側の余白を設定 */
    padding: 0.5em;
    /* フォントサイズを1.8remに設定 */
    font-size: 1.8rem;
    /* フォントファミリーをTimes New Romanに設定 */
    font-family: 'Times New Roman', Times, serif;
  }
  #denyAge{
    background-color: #fff;
    border: none;
  }
  #confirmAge{
    background-color: #ca245B ;
    color: #fff!important;
    border: none;
  }
  @media only screen and (min-width: 767px) {
    .modal{
        width: auto;
    }
}

/*********************************
メイン
**********************************/
main {
    position: relative;
    width: 100%;
    height: 100%;
}

/*********************************
header
**********************************/
header {
    position: fixed;
    width: 100%;
    z-index: 999;
    background: #000;
}

header .wrap {
    display: flex;
    width: 100%;
    position: relative;
    justify-content: space-between;
    flex-flow: nowrap;
    align-items: center;
}

header .wrap h1 {
    width: 20%;
    height: auto;
    margin: 0;
}

header .wrap .gnav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-flow: nowrap;
    align-items: center;
    height: 7.5rem;
}

header .wrap .gnav a {
    width: 6.5rem;
    height: 100%;
    display: flex;
    padding: 1.5rem 0;
    flex-flow: column;
    font-size: 1.2rem;
    letter-spacing: .05em;
    color: #fff;
    text-align: center;
    align-items: center;
    opacity: 0;
}

header .wrap .gnav a img {
    width: 25%;
    height: auto;
    margin: 0.5rem;
}

header .gnav .list_menu {
    display: none;
    -ms-flex-wrap: wrap;
}

header .wrap .gnav h1 a {
    width: 100%;
    opacity: 1;
}

header .wrap .gnav h1 a img {
    width: 100%;
}

/**********************************
ハンバーガーメニュー
***********************************/
.hmb_wrap {
    display: block;
    position: relative;
    width: 7.5rem;
    height: 7.5rem;
    z-index: 99999;
}

.hmb_menu {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    width: 6.5rem;
    height: 6.5rem;
    z-index: 99999;
}

.hmb_menu span {
    display: inline-block;
    transition: all .4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 1.4rem;
    height: 0.1rem;
    border-radius: 0.2rem;
    background: #fff;
}

.hmb_menu span:nth-of-type(1) {
    top: 35%;
    width: 50%;
}

.hmb_menu span:nth-of-type(2) {
    top: 50%;
    width: 40%;
}

.hmb_menu span:nth-of-type(3) {
    top: 65%;
    width: 30%;
}

.hmb_menu.active span:nth-of-type(1) {
    top: 22px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
}

.hmb_menu.active span:nth-of-type(2) {
    opacity: 0;
}

.hmb_menu.active span:nth-of-type(3) {
    top: 33px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}

/**********************************
SP用ナビゲーション
***********************************/
#nav .con_menu.open {
    margin-right: 0;
    opacity: 1;
}

#nav .con_menu {
    position: fixed;
    top: 0;
    right: 0;
    margin-right: -100%;
    /*Javascript実装後に-100%修正*/
    width: 100%;
    background-color: #AC002E;
    transition: .5s;
    opacity: 0;
    /*Js実装後に0に戻す*/
    z-index: 99;
}

#nav .con_menu.active {
    margin-right: 0;
    /*Javascript実装後に-100%修正*/
    opacity: 1;
    /*Js実装後に0に戻す*/
}

#nav .con_menu .box_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    width: 100%;
    min-height: 100vh;
    font-size: 1.6rem;
    color: #fff;
}

#nav .con_menu .box_menu .list_menu {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 auto;
    padding-left: 0;
    height: 100%;
    width: 80%;
    list-style-type: square;
}

#nav .con_menu .box_menu .list_menu>li {
    display: flex;
    width: 100%;
    position: relative;
    padding: 0.3em;
    font-size: 1.8rem;
    line-height: 2;
}

#nav .con_menu .box_menu .list_menu>li a {
    color: #fff;
    display: block;
    text-align: center;
    width: 100%;
}

/************************************
キービジュアル
*************************************/
.kv {
    width: 100%;
    position: relative;
}

.kv_open {
    background: rgba(255, 255, 255, 1);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    z-index: 999;
    position: fixed;
}

.kv .kv_wrap {
    width: 100%;
    position: relative;
    height: 100vh;
    padding: calc(75 / 390 * 100vw) 0 1rem;
    overflow: hidden;
}

.kv .kv_wrap::before {
    content: "";
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.kv .kv-ttl {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 3;
    color: #fff;
    font-weight: 400;
    font-size: 2rem;
    padding: 0 2rem;
    transform: translateY(-5%);
}

.kv .kv-ttl h2 {
    font-weight: 400;
    font-size: 2.1rem;
    text-align: center;
    margin: 0 auto 1.5rem;
    text-shadow: 0 0 3px #333;
    line-height: 1.7;
}

.kv .kv-ttl .shop-info {
    text-align: center;
    border: 1px solid #fff;
    padding: 1rem;
}

.kv .kv-ttl .shop-info {
    position: relative;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 1rem;
    font-size: 1.4rem;
    overflow: hidden;
    z-index: 3;
}

.kv .kv-ttl .shop-info .head,
.kv .kv-ttl .shop-info .sub {
    margin: 0 auto;
    letter-spacing: .08em;
    line-height: 1.2;
}

.kv .kv-ttl .shop-info .head {
    font-size: 2.4rem;
    margin: 0 auto .8rem;
}

/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: relative;
    width: 100%;
    text-align: center;
    /*全体の高さ*/
    margin: 2rem auto 1rem;
}

/*Scrollテキストの描写*/
.scrolldown span {
    /*描画位置*/
    /*テキストの形状*/
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.07em;
    position: relative;
}

/* 線の描写 */
.scrolldown::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 50%;
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.5s ease-in-out infinite;
    opacity: 0;
}

.bg_red_diamond {
    width: 44%;
    display: block;
    position: relative;
    opacity: 0.2;
    margin: 0 auto;
    z-index: 0;
    transform: translateY(0%);
    animation: rotateAnime 20s infinite;
}

@keyframes rotateAnime {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
    0% {
        height: 0;
        top: 1.5rem;
        opacity: 0;
    }

    30% {
        height: 3.5rem;
        opacity: 1;
    }

    100% {
        height: 0;
        top: 6rem;
        opacity: 0;
    }
}

/* slick */
.slider {
    position: relative;
    width: 100%;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: auto;
    /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    padding-left: 0;
    margin: 0 auto;
}

.slider-item {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    position: relative;
    filter: contrast(1.1);
}

.slider-item img {
    width: 100%;
    /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
}

/*ドットナビゲーションの設定*/
.slick-dots {
    position: relative;
    display: flex;
    z-index: 3;
    text-align: left;
    margin: 0rem 0 0 0;
    padding: 1.5rem 3rem;
    background: #000;
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 5px;
    height: 5px;
    padding: 5px;
    display: block;
    border-radius: 50%;
    background: #fff;
    border: none;
}

.slick-dots .slick-active button {
    background: #CA245B;
    /*ドットボタンの現在地表示の色*/
}

/************************************
キービジュアル他ページ
*************************************/
.kv_main {
    width: 100%;
    height: 30rem;
    position: relative;
}

.kv_main .kv_wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 7.5rem;
}

.kv_main .kv_wrap img {
    width: 100%;
}

.kv_main .kv_wrap .kv_title {
    width: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 1.2rem 2rem;
    background: #CA245B;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin: 0;
    letter-spacing: -.03em;
}

/**************************************
今すぐ予約するボタン
***************************************/
#top_reserved_btn {
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 100px);
    display: block;
    width: 96%;
    z-index: 9;
    opacity: 0;
    animation: yureru-s 0.5s infinite;
    border-radius: .6rem;
    overflow: hidden;
}

#top_reserved_btn .diamond {
    position: absolute;
    right: -3%;
    width: 30%;
    bottom: 1%;
    z-index: 1;
}

#top_reserved_btn a {
    color: #fff;
    font-size: 2rem;
    display: block;
    text-align: center;
    padding: 2% 3%;
    width: 100%;
    font-weight: bold;
    font-family: Arial, Helvetica, "sans-serif";
    z-index: 3;
    background: radial-gradient(ellipse farthest-corner at right bottom, #FEDB37 0%, #FDB931 8%, #9f7928 30%, #8A6E2F 40%, transparent 80%), radial-gradient(ellipse farthest-corner at left top, #FFFFFF 0%, #FFFFAC 8%, #D1B464 25%, #5d4a1f 62.5%, #5d4a1f 100%);
}

#top_reserved_btn .invoice {
    width: 70%;
    display: block;
    margin: 0 auto;
    border: 1px solid #fff;
    padding: .6% 3%;
    font-size: 1.4rem;
    color: #fff;
}

/********************************
固定メニューバー
*********************************/
#fixedBtnMenu {
    /*
    background: rgba(0,0,0,0.7);*/
    background: rgba(193, 164, 112, .9);
    bottom: 0;
    position: fixed;
    width: 100%;
    padding: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    padding-bottom: .5rem;
}

#fixedBtnMenu ul {
    display: flex;
    justify-content: space-between;
    margin: 0;
    height: 100%;
    padding-left: 0;
}

#fixedBtnMenu .invoice {
    width: 70%;
    display: block;
    margin: 0 auto;
    font-size: 1.3rem;
    color: #fff;
    text-align: center;
}

#fixedBtnMenu ul li {
    font-size: 1rem;
    text-align: center;
    width: calc(100%/4);
}

#fixedBtnMenu ul li a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #fff;
    align-items: center;
    padding: 1.2rem 0.5rem 0rem;
    height: 6.4rem
}

#fixedBtnMenu ul li a .menu-icon {
    width: auto;
    height: 2.5rem;
    margin-bottom: .5rem;
}

#fixedBtnMenu ul li a span {
    font-size: 1.2rem;
    font-family: Arial, Helvetica, "sans-serif";
}

#fixedBtnMenu ul li:last-of-type a .menu-icon {
    height: 2.7rem;
    width: auto;
}

#fixedBtnMenu ul li:nth-child(3) a .menu-icon {
    width: 2rem;
}

#top_reserved_btn.UpMove {
    animation: UpAnime .8s forwards;
}

@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translate(-50%, 150rem);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/*　下に下がる動き　*/
#top_reserved_btn.DownMove {
    animation: DownAnime 0.8s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 150rem);
    }
}


/**************************************
見出し
***************************************/
.headline {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1;
    margin-bottom: 4rem;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 3;
}

.headline h3 {
    margin: 0 auto .5rem;
    font-family: "Didot", "Didot LT STD";
}

.headline .sub {
    font-size: .6em;
}

.headline p {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 0;
    padding: 0;
}

.txt-left {
    text-align: left !important;
}

.opacity_flg {
    opacity: 1 !important;
}

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

/**************************************
CAMPAIGN
***************************************/
.campaign {
    width: 100%;
    position: relative;
    padding: 8rem 0 9rem;
    /* background: url("../images/campaign_bg.png") no-repeat top center;*/
    background: #000;
    background-size: cover;
}

.banner_wrap {
    width: 100%;
    position: relative;
    padding-left: 0;
    opacity: 0;
}

.banner {
    flex-wrap: nowrap;
    width: 100%;
    margin-bottom: 1rem;
}

.banner-img-wrap {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-img-wrap img {
    width: 100%;
    height: auto;
}

/**************************************
NEW FACE
***************************************/
.newface {
    width: 100%;
    position: relative;
}

.newface .wrapper {
    width: 100%;
    position: relative;
    /* background: #B87782;*/
    padding: 4rem 0 6rem;
    /*background: url("../images/new_bg.jpg")no-repeat;
    background-size: cover;*/
    background: linear-gradient(45deg, #B87782 0%, #f6d6e6 40%, #B87782 80%);
}

/***************************************
モデル紹介のボックス
****************************************/
.articlePanel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.mgt_30 {
    margin-top: 3rem;
}
.article-wrap {
    width: 90%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: row; /* columnからrowに変更 */
    flex-wrap: wrap; /* nowrapからwrapに変更 */
    justify-content: center; /* 中央揃えを追加 */
    opacity: 0;
}

.opc_open {
    opacity: 1 !important;
}

.article {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
    overflow: hidden;
}
/* 修正前 */
.model-item {
    width: 50%!important;
}

/* 修正後 */
.model-item {
    width: 48%!important; /* 49%から48%に変更して余白を確保 */
    margin: 0 1% 2% 1%; /* 上下左右の余白を追加 */
}

.article .model_link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: 1s all;
}

.article .model_link::after {
    position: absolute;
    content: "";/*VIEW MORE消す*/
    width: 100%;
    display: block;
    text-align: center;
    font-size: 2rem;
    font-family: "Didot", "Didot LT STD";
    padding: 2%;
    color: #fff;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .6s all;
}

.article .model_link .box::after {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
    opacity: 0;
    transition: .6s all;
}

.article .model_link:hover .box::after {
    opacity: 1;
}

.article .model_link:hover::after {
    opacity: 1;
}

.article .model_link:hover::after {
    letter-spacing: .2em;
}
.model_link .intro {
    color: #fff;
    text-shadow: 0 0 6px #777;
    line-height: 1.4;
    margin: .5rem 0 0 0;
    text-align: center;
    font-size: 1.8rem;
    align-content: center;
    position: relative; /* 四隅の装飾位置を基準にするため */
    padding: 0 16px;
}

.model_link .intro .corner {
    content: "";
    position: absolute;
    background-image: url('../images/deco-corner.png');
    background-size: contain;
    width: 25px;
    height: 25px;
}

.model_link .intro .top-left {
    top: 0;
    left: 0;
    transform: scaleX(-1);
}

.model_link .intro .top-right {
    top: 0;
    right: 0;
    transform: scaleX(1); /* 右上の角を反転 */
}

.model_link .intro .bottom-left {
    bottom: 0;
    left: 0;
    transform: scale(-1,-1); /* 左下の角を反転 */
}

.model_link .intro .bottom-right {
    bottom: 0;
    right: 0;
    transform: scale(1, -1); /* 右下の角を反転 */
}


.special-intro-class{
    font-size:1.8rem!important;
    letter-spacing: -0.005em;
}
.normal-intro-class{
    font-size: 1.3rem!important;/*2ページ目以降*/
    letter-spacing: -0.005em;
}

.article .box {
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    overflow: hidden;
}

#todays_schedule .article .box,
#model .article .box {
    opacity: 0;
}

.article .box::before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 70%);
}

.article .box .rank_label {
    position: absolute;
    left: -18%;
    top: 0;
    width: 60%;
    transform: rotate(-45deg);
    z-index: 3;
}

.article .box .rank_label img {
    width: 100%;
}

.article .box .new_label {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    background: #C92F59;
    padding: 3% 6%;
    z-index: 3
}

.splide__list .box .photo {
    width: 100%;
    filter: brightness(1.1);
    transition: .6s all;
}

.article .model_link:hover .photo {
    transform: scale(1.2);
}

.rank {
    text-align: center;
    font-family: "Didot", "Didot LT STD";
    margin: 0 auto;
    padding: .5rem 1rem;
    font-size: 1.6rem;
    color: #fff;
    width: 100%;
}

/*ランク毎のカラー*/
.red_diamond {
    background: rgb(85, 2, 16);
    background: linear-gradient(90deg, rgba(85, 2, 16, 1) 0%, rgba(178, 0, 20, 1) 15%, rgba(217, 5, 34, 1) 60%, rgba(83, 5, 14, 1) 95%);
    color: #fff;
}

.black_rank,
.black {
    background: rgb(20, 20, 20);
    background: linear-gradient(90deg, rgba(20, 20, 20, 1) 0%, rgba(52, 52, 52, 1) 35%, rgba(66, 66, 66, 1) 50%, rgba(52, 52, 52, 1) 65%, rgba(20, 20, 20, 1) 100%);
    color: #fff;
}

.diamond_rank,
.diamond {
    background: rgb(56, 84, 99);
    background: linear-gradient(90deg, rgba(56, 84, 99, 1) 0%, rgba(113, 172, 209, 1) 10%, rgba(255, 255, 253, 1) 30%, rgba(120, 175, 205, 1) 50%, rgba(120, 175, 205, 1) 70%, rgba(255, 255, 253, 1) 80%, rgba(113, 172, 209, 1) 100%);
    color: #fff;
    text-shadow: 0 0 3px #999;
}

.platinum_rank,
.platinum {
    background: rgb(198, 189, 196);
    background: linear-gradient(90deg, rgba(198, 189, 196, 1) 0%, rgba(254, 243, 247, 1) 50%, rgba(198, 189, 196, 1) 100%);
    color: #fff;
    text-shadow: 0 0 3px #555;
}

.article .box .prof_box {
    width: 100%;
    padding: 1rem 0.3rem .5rem;
    letter-spacing: -0.008em;
    font-size: 1.1rem;
    line-height: 1.3;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.prof_box .intro {
    font-size: 1.8rem;
    text-align: left;
    width: 100%;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: .8px solid #fff;
    margin: 0 0 .5rem;
}

.prof_box .prof {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 0;
}

.prof_box .prof .name_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 0;
    letter-spacing: .08em;
}
.special-name-class{
    font-size:1.8rem!important;
}
.normal-name-class{
    font-size:1.6rem !important;
}

.prof_box .prof .name_wrap .name {
    text-align: left;
    margin: 0;
    display: inline-block;
    margin-right: 1rem;
}

.prof_box .prof .name_wrap .age {
    display: inline-block;
}

.prof_box .prof .size {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: .5rem;
}
.special-size-class{
    font-size: 1.6rem;
}
.normal-size-class{
    font-size: 1.2rem;
}

.prof_box .prof .size span {
    margin-right: .6rem;
}

.prof_box .prof .size span:last-child {
    margin-right: 0rem;
}

.prof_box .tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    margin-bottom: .5rem;
}

.prof_box .tag span {
    width: 48%;
    background: #B39959;
    border-radius: 0.7rem;
    padding: 0.4em 0.2rem;
    margin-bottom: 0.5rem;
}

.prof_box .schedule {
    width: 100%;
    text-align: center;
    line-height: 1.5rem;
    padding: 2% 1%;
    background: rgba(193, 164, 112, .8);
}

.prof_box .schedule p {
    margin: 0 auto;
    color: #FFF;
    font-size: 1.3rem;
}
.prof_box .schedule_sub p{
    margin: .5em auto;
    color: #FFF;
    font-size: 1.3rem;
    text-align: center;
}

/*Next,Prevボタン*/
.slick-prev,
.slick-next,
.slick-prev2,
.slick-next2 {
    position: absolute;
    /*絶対位置で指定する*/
    top: 50%;
    /*この値は各コンテンツに併せて調整*/
    cursor: pointer;
    /*マウスカーソルを指マークに変更*/
    outline: none;
    /*クリックしたら出てくる枠線を消す*/
    height: 15px;
    /*縦:横15pxの正方形を作成して、trasform:rotateプロパティを使って45degと-135deg回転*/
    width: 15px;
    z-index: 3;
}

.slick-prev2,
.slick-next2 {
    top: 15%;
}

.slick-prev {
    left: -4vw;
}

.slick-prev2 {
    left: 0vw;
}

.slick-prev::before {
    content: url("../images/prev2.png");
    transform: scale(0.4);
    display: block;
    opacity: .7;
}

.slick-prev2::before {
    content: url("../images/prev2.png");
    transform: scale(0.4);
    display: block;
    opacity: .7;
}

.slick-next {
    right: 0vw;
}

.slick-next2 {
    right: 3vw;
}

.slick-next::after {
    content: url(../images/next2.png);
    transform: scale(0.4);
    display: block;
    opacity: .7;
}

.slick-next2::after {
    content: url(../images/next2.png);
    transform: scale(0.4);
    display: block;
    opacity: .7;
}

/**************************************************
article_wrap2用
***************************************************/
.article-wrap2 {
    width: 95%;
    position: relative;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: 0;
}

.article-wrap2 .article {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 49%;
    /*横並びで2つ表示*/
    overflow: hidden;
}

.article-wrap2 .article:nth-child(odd) {
    margin-right: 2%;
}

.article-wrap2 .article .model_link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.article-wrap2 .article .model_link::after {
    position: absolute;
    content: "";/*VIEW MORE消す*/
    width: 100%;
    display: block;
    text-align: center;
    font-size: 2rem;
    font-family: "Didot", "Didot LT STD";
    padding: 2%;
    color: #fff;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .6s all;
}

.article-wrap2 .article .box .new_label {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #C92F59;
    padding: 3% 6%;
    z-index: 3;
}

.article-wrap2 .prof_box .intro {
    font-size: 1.3rem;
    text-align: left;
    width: 100%;
    line-height: 1.3;
    padding-bottom: 0.5rem;
    border-bottom: 0.8px solid #fff;
    margin: 0 0 0.5rem;
}

.article-wrap2 .prof_box .prof {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}

.article-wrap2 .prof_box .prof .name_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    letter-spacing: .08em;
}

.article-wrap2 .prof_box .prof .size {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-wrap2 .prof_box .schedule {
    width: 100%;
    text-align: center;
    line-height: 1.5rem;
    padding: 2% 1%;
    background: rgba(193, 164, 112, .8);
}

.article-wrap2 .prof_box .schedule p {
    margin: 0 auto;
    color: #FFF;
    font-size: 1.2rem;
}

.article-wrap2 .article .model_link::before {
    position: absolute;
    content: "";
    background: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5;
    opacity: 0;
    transition: .6s all;
}

.article-wrap2 .article .model_link:hover::before,
.article .model_link:hover::after {
    opacity: 1;
}

.article-wrap2 .article .model_link:hover::before {
    transform: scale(1.2);
}

.article-wrap2 .article .model_link:hover::after {
    letter-spacing: .2em;
}

.article-wrap2 .box .photo {
    width: 100%;
    filter: brightness(1.1);
    transition: .6s all;
}

.article-wrap2 .article .model_link:hover .photo {
    transform: scale(1.2);
}

.article-wrap2 .box .prof_box {
    width: 100%;
    padding: 1rem 0.8rem;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.am-block-schedule {
    opacity: 0 !important;
}

/**************************************************
本日のスケジュール
***************************************************/
.todays_schedule {
    position: relative;
    width: 100%;
}

.todays_schedule .wrapper {
    position: relative;
    background: #000;
    padding: 6rem 0;
    width: 100%;
}

/*アコーディオン全体*/
.accordion-area {
    list-style: none;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
}

.accordion-area .search {}

/*アコーディオンタイトル*/
.accordion-area .search .search_title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: normal;
    padding: 3% 3% 3% 5rem;
    background: #C92F59;
    color: #fff;
    transition: all .5s ease;
    margin: 0 auto;
}

/*アイコンの＋と×*/
.accordion-area .search .search_title::before,
.accordion-area .search .search_title::after {
    position: absolute;
    content: '';
    width: 1.5rem;
    height: .2rem;
    background-color: #fff;
}

.accordion-area .search .search_title::before {
    top: 48%;
    left: 1.5rem;
    transform: rotate(0deg);
}

.accordion-area .search .search_title::after {
    top: 48%;
    left: 1.5rem;
    transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.accordion-area .search .search_title.close::before {
    transform: rotate(45deg);
}

.accordion-area .search .search_title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.accordion-area .search .box {
    display: none;
    /*はじめは非表示*/
    background: #fff;
    padding: 3%;
}

/*検索ボックス*/
.sort-btn {
    padding: 1.5rem 1rem;
    font-size: 1.6rem;
    margin: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: flex-start;
}

.sort-btn dl {
    margin: 0;
}

.sort-btn dt {
    font-weight: bold;
    margin: 0 0 10px 0;
}

.sort-btn dd {
    margin: 0 0 10px 0;
}

.sort-btn ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 2rem;
    line-height: 1.8;
}

.sort-btn li {
    margin: 0;
}

.sort-btn ul li {
    position: relative;
    cursor: pointer;
    padding: 0 0 0 3rem;
    margin: 0 1.5rem 0 0;
}

/*チェックマークの設定*/
.sort-btn ul li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    top: 50%;
    transform: translateY(-50%);
}

.sort-btn ul li.active::after {
    /*現在地＝activeというクラス名がついたらチェックマークを出現*/
    content: '';
    position: absolute;
    left: .5rem;
    top: 50%;
    /*チェックマークの色や形*/
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    width: 1.6rem;
    height: .9rem;
    transform: translateY(-100%) rotate(-45deg);
}

/*ソート対応のグリッド*/
.grid {
    display: flex;
}
.grid-checkmark{
    flex-wrap: nowrap!important; /* 要素が折り返されないように設定 */
    overflow-x: auto!important; /* 横スクロールを可能にする */
    white-space: nowrap!important; /* 要素が改行されないように設定 */
}

.item {
    position: absolute !important;
    padding: 10px 5px;
}

/*もっと見るボタン*/
.more_btn {
    width: 95%;
    display: block;
    margin: 3rem auto 0;
    background: #C92F59;
    position: relative;
    text-align: center;
    border: none;
}

.more_btn::after {
    content: "";
    background: url(../images/r-arrow.png) 100% 100% / cover;
    position: absolute;
    width: 2rem;
    height: .7rem;
    top: 50%;
    right: 1%;
    transform: translateY(-50%);
}

.more_btn a {
    display: block;
    padding: 3% 3%;
    width: 100%;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #fff;
}

/**********************************
404 ERROR
***********************************/
.error404 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background: #000;
}

.error404 .wrapper {
    width: 100%;
    padding: 10% 10%;
    margin-top: 7.5rem;
}

.error404 .wrapper .error_image {
    width: 100%;
}

/**********************************
NEWS
***********************************/
.news {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
    overflow: hidden;
    background: url("../images/news_bg.png") no-repeat center;
    background-size: cover;
}

.news .wrapper {
    position: relative;
    padding: 6rem 0;
    width: 100%;
}

.news_wrap {
    width: 90%;
    margin: 0 auto;
}

.news_wrap .news_box {
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 0 0 0rem;
    margin: 0 auto 3rem;
}

.news_wrap .news_box .news_list {
    width: 100%;
    margin: 0 auto 5rem;
    padding-left: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.news_wrap .news_box .news_list li {
    width: 100%;
    display: flex;
    flex-flow: column;
    font-size: 1.4rem;
    padding: 1em 1.7rem;
    /* border-top: 1px solid #b1b1b1; */
    background: #fff;
    position: relative;
}

.pd_adj {
    padding: 3rem 0 !important;
}
.news_wrap .news_box .news_list li:last-child {
    border-bottom: 1px solid #b1b1b1;
}

.news_wrap .news_box .news_list li .date-area {
    margin-bottom: .5em;
    font-size: 1.4rem;
    font-family: Montserrat;
}

.news_wrap .news_box .news_list li .date-area .post-categories {
    display: inline-block;
    padding-left: 0;
}

.news_wrap .news_box .news_list li .date-area .post-categories li {
    border: none;
}

.news_wrap .news_box .news_list li .date-area time {
    font-size: 1.4rem;
    margin-right: 1em;
    font-weight: bold;
}

.news_wrap .news_box .news_list li .date-area .post-categories li a {
    background-color: #C92F59;
    padding: .3em 1em;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

.news_wrap .news_box .news_list li p a {
    color: #333;
    width: 95%;
    /* display: block; */
    line-height: 1.3;
}

.news_wrap .news_box .news_list li p {
    margin: 0 0 .3rem;
    display: block;
    width: 100%;
}
#news .news .photo{
    width: 95%;
    margin: 0 auto;
    height: 100%;
    padding: 1rem;
}

/*もっと見るボタン*/
.more_btn_news {
    width: 80%;
    border: 2px solid #C92F59;
    border-radius: 2rem;
    display: block;
    margin: 3rem auto 0;
    background: #fff;
    position: relative;
    text-align: center;
    transition: all .5s;
}

.more_btn_news a {
    display: block;
    margin: 0 auto;
    font-size: 1.8rem;
    color: #C92F59;
    padding: 3% 3%;
    transition: all .5s;
}

.more_btn_news:hover {
    background: #C92F59;
}

.more_btn_news:hover a {
    color: #FFFFFF;
}

/***********************************
RECRUIT
************************************/
.recruit {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.recruit .wrapper {
    position: relative;
    padding: 6rem 0;
    background: #000;
    width: 100%;
}

.recruit_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0 0 3rem;
}

.recruit_box a {
    display: block;
    width: 100%;
}

.recruit_box a img {
    width: 100%;
}

.recruitment {
    display: flex;
    justify-content: center;
}

.recruitment .form {
    width: fit-content;
    padding: 2rem 0rem;
}

/***********************************
CONTACT US
************************************/
.contact {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.contact .wrapper {
    position: relative;
    padding: 7rem 0;
    width: 100%;
    background: url("../images/contact_bg_mb.png") no-repeat top;
    background-size: cover;
}

.contact .wrapper::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .3);
    z-index: 1;
}

/*お問い合わせボタン*/
.btn_contact {
    width: 90%;
    display: block;
    margin: 5rem auto 0;
    padding: 3% 3%;
    background: #C92F59;
    position: relative;
    text-align: center;
    border: none;
    z-index: 3;
}

.btn_contact::after {
    content: "";
    background: url(../images/r-arrow.png) 100% 100% / cover;
    position: absolute;
    width: 3rem;
    height: .7rem;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
}

.btn_contact a {
    margin: 0 auto;
    padding: 1%;
    font-family: "Didot", "Didot LT STD";
    font-size: 1.8rem;
    color: #fff;
    display: block;
}

.txt_shadow {
    text-shadow: 0 0 5px #777;
}

/*********************************
公式SNS
**********************************/
.sns {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.sns .wrapper {
    position: relative;
    padding: 7rem 1.5rem;
    width: 100%;
    background: #000;
    color: #fff;
}

.sns .wrapper p {
    text-align: left !important;
}

.sns-box {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: 0 auto
}

.sns-box .line,
.sns-box .telegram {
    width: 48%;
    text-align: center;
}

.sns-box .line img,
.sns-box .telegram img {
    width: 50%;
}

.sns-box .line p,
.sns-box .telegram p {
    text-align: center !important;
    font-size: 1.6rem;
}

/*********************************
メルマガ登録
**********************************/
.mailmagazine {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.mailmagazine .wrapper {
    position: relative;
    padding: 7rem 1.5rem;
    width: 100%;
    background: #F0F3F5;
}

.mailmagazine .inner {
    background: #000;
    color: #fff;
}

.mailmagazine .wrapper .left_txt {
    text-align: left !important;
}

.mailmagazine .mailForm {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.mailmagazine .mailForm .mail {
    width: 100%;
    font-size: 1.6rem;
    padding: 1.5rem 1rem;
    border: 1px solid #999;
    background: #fff;
    margin-bottom: 3%;
}

.mailmagazine .mailForm .div {
    display: flex;
    gap: 2%;
}

.mailmagazine .mailForm .button {
    width: 65%;
    margin: 0 auto;
    padding: 1.5rem;
    border-radius: 50px;
    background: #C92F59;
    color: #fff !important;
    font-size: 1.6rem;
    cursor: pointer;
    float: inline-end;
}

.mailmagazine .mailForm input {
    -webkit-appearance: none;
    appearance: none;
}

.concept_box {
    width: 90%;
    margin: 0 auto;
}


/************************************
FOOTER
*************************************/
footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

footer .wrapper {
    position: relative;
    width: 100%;
    padding: 4rem 1.5rem 2rem;
    background: #000;
    font-size: 1.6rem;
    color: #fff;
}

.logo_gold {
    width: 100%;
    font-size: 1.6rem;
}

.logo_gold .shopname {
    font-size: 1.6rem;
    margin: 0 auto;
    font-weight: 400;
}

.logo_gold .open_f {
    margin: 0 auto;
    letter-spacing: .05em;
}


.logo_gold .tell {
    color: #fff;
    line-height: 1.4;
    font-size: 1.6rem;
    letter-spacing: .05em;
}

.logo_gold img {
    width: 35%;
    margin-bottom: 1rem;
}

.footer_menu {
    width: 100%;
    padding: 1% 0;
}

.footer_menu .list_menu {
    display: flex;
    padding-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    font-family: 'Noto Sans Japanese';
}

.footer_menu .list_menu a {
    color: #fff;
    width: 100%;
    display: block;
    font-size: 1.6rem;
    margin-bottom: 0.5em;
    margin: 0 auto 0.5em;
    padding: 0 0.5em 0;
    text-align: center;
    line-height: 1;
    border-right: 1px solid #fff;
}

.footer .attention {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: .05em
}

.footer .alr_txt {
    font-size: 1.2rem;
    margin: 0 auto;
}

/***************************
channel
****************************/
.channels {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-size: 1.6rem;
}

.channels .phone {
    width: 100%;
    margin-bottom: 1.5rem;
}

.channels .phone h4 {
    font-size: 2rem;
    padding: .3rem 1rem;
    background: #333;
    color: #fff;
    margin-bottom: .5em;
}

.channels .phone .phone-num {
    font-family: "Arial Black", Gadget, "sans-serif";
    font-size: 3.2rem;
    position: relative;
    color: #333;
    padding-left: 1em;
}

.channels .phone .phone-num::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    height: 2.8rem;
    transform: translateY(-50%);
    width: 2.8rem;
    background: url(../images/phoneicon.png) no-repeat top center;
    background-size: contain;
}

/***************************
headline
****************************/
.headline {
    position: relative;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
}

.headline .back_txt {
    position: absolute;
    top: 50%;
    left: 50%;
    font-family: "Arial Black", Gadget, "sans-serif";
    font-weight: 900;
    font-size: 8rem;
    transform: translate(-50%, -50%);
    color: #f1f1f1;
    text-align: center;
    z-index: -1;
    line-height: .8;
    margin-top: 0;
}

.headline .ttl_en {
    color: #CA245B;
    font-family: Montserrat;
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    z-index: 3
}

.headline .headline_ttl {
    font-family: Montserrat;
    font-weight: 800;
    font-size: 3.1rem;
    line-height: 1.33;
    color: rgb(17, 17, 17);
    text-align: center;
    z-index: 3;
}

.headline .headline_txt {
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
    color: rgb(48, 48, 48);
    line-height: 1.5;
    font-weight: 600;
    margin-top: 3.2rem;
    font-size: 1.4rem;
    text-align: center;
    padding: 0 1em;
    z-index: 3;
}

.color_wh05 {
    color: rgba(255, 255, 255, .3) !important;
}

/***************************
パンくずリスト
****************************/
.breadcrumbs {
    position: relative;
    width: 100%;
    margin: 0 auto 1rem;
    overflow: hidden;
    padding: 1% 5% 1% 0;
}

.breadcrumbs .breadcrumb_inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    font-size: 1.2rem;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    line-height: 2;
}

.breadcrumbs .breadcrumb_inner span {
    color: #fff;
    margin-right: .5em;
}

.breadcrumbs .breadcrumb_inner.color_bk span {
    color: #333;
}

.breadcrumbs .breadcrumb_inner.color_bk .rank {
    font-size: 1.2rem;
    padding: 0.1em;
}

.breadcrumbs .breadcrumb_inner i {
    margin-right: .5em;
}

/***********************************
管理画面ダッシュボード
************************************/
.input-group-btn:first-child>.btn {
    margin: 1rem !important;
    border-radius: 5px !important;
}

.lank-list {}

/******************************
コンセプト
*******************************/
.concept {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.opacity_clear {
    opacity: 1 !important;
}

.concept .wrapper {
    width: 100%;
    position: relative;
    background: url("../images/concept_bg.png")no-repeat top center;
    background-size: cover;
    padding: 2rem 1.4rem 6rem;
}

.concept_title {
    width: 90%;
    margin: 3rem auto 3rem;
    font-size: 2.8rem;
    text-align: left;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.concept_box {
    width: 100%;
    margin: 0 auto;
}

.concept_box .txt {
    font-size: 1.4rem;
    line-height: 2;
    text-align: left;
    font-weight: 400;
    letter-spacing: .1em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/******************************
料金システム
*******************************/
.system {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.system .wrapper {
    width: 100%;
    position: relative;
    background: #000;
    background-size: cover;
    padding: 2rem 1.4rem 1rem;
}

.ex_wrap,
.flow_wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.model_info .ex_wrap {
    opacity: 0;
}

/********************************
説明見出し
*********************************/
.ex_headline {
    font-size: 2.4rem;
    padding-left: 3.5rem;
    color: #fff;
    text-align: left;
    position: relative;
    line-height: 1;
    margin: 0 auto 1.5rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ex_headline::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 2.5rem;
    height: 100%;
    background: #D53965;
}

.ex_txt {
    font-size: 1.4rem;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 2rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bk_txt {
    color: #444 !important;
    margin-bottom: 1rem;
}

.channels {
    width: 95%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    font-size: 1.6rem;
}

.channels .phone {
    width: 100%;
    margin-bottom: 1.5rem;
}

.channels .phone h4 {
    font-size: 2rem;
    padding: .3rem 1rem;
    background: #333;
    color: #fff;
    margin-bottom: .5em;
}

.channels .phone .phone-num {
    font-family: "Arial Black", Gadget, "sans-serif";
    font-size: 3.2rem;
    position: relative;
    color: #333;
    padding-left: 1em;
}

.channels .lineapp {
    position: relative;
    width: 100%;
    border-radius: 3rem;
    background: #06C755;
    color: #fff !important;
    padding: 1.5rem;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.channels .lineapp a, .channels .telegram-app a {
    font-weight: bold;
    color: #fff;
}

.channels .telegram-app {
    position: relative;
    width: 100%;
    border-radius: 3rem;
    background: #48CAE4;
    color: #fff !important;
    padding: 1.5rem;
    font-size: 1.8rem;
}

/**********************************
料金テーブル
***********************************/
.ex_wrap .price_info_ttl {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    padding: 3%;
    color: #fff;
    font-family: "Didot", "Didot LT STD";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    width: 100%;
}

.ex_wrap .price {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #555;
    font-size: 1.6rem;
    text-align: left;
    background: #fff;
    color: #333;
    font-family: Arial, Helvetica, "sans-serif";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ex_wrap .price tr th,
.ex_wrap .price tr td {
    border: 1px solid #555;
    padding: 0.8em 0.5em;
    font-weight: normal;
    text-align: center;
}

.ex_wrap .price tr th {
    width: 40%;
}

.ex_wrap .price tr td {
    width: 60%;
}

.sub_ex {
    padding: 0 0 3rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sub_ex_ttl {
    font-size: 1.6rem;
    padding-left: 1rem;
    border-left: 1rem solid #D53965;
    line-height: 1.1;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.sub_ex_txt {
    font-size: 1.4rem;
    margin: 0 auto 2em;
    font-family: Arial, Helvetica, "sans-serif";
}

.sub_ex ul {
    padding-left: 0;
    width: 100%;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 1.4rem;
    line-height: 2;
}

.annotations {
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 0 auto 1rem;
    font-family: Arial, Helvetica, "sans-serif";
}

.color_gold {
    color: #E0B34E !important;
}

.mgb_10 {
    margin-bottom: 1rem !important;
}

/**********************************
フロー
***********************************/
.flow_design {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.flow {
    padding-left: 0;
    border-bottom: solid 1px #E1E8ED;
}

.flow>li {
    list-style-type: none;
    display: flex;
    padding: 20px 0;
    border-top: solid 1px #E1E8ED;
}

.flow>li dl dt {
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 400;
    margin-bottom: 10px;
}

.flow>li .icon {
    line-height: 1;
    font-size: 2.4rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    width: 10%;
    position: relative;
    margin-top: 0;
}

.flow>li .icon::before {
    content: 'STEP';
    font-size: 0.4em;
    font-family: Arial, Helvetica, "sans-serif";
    display: block;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.flow>li .icon::after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 40px);
    background-color: #858585;
    position: absolute;
    left: 0;
    right: 0;
    top: 60px;
    margin: auto;
}

.flow>li dl dd {
    margin: 0;
}

.flow>li dl ul {
    margin: 0 auto 1rem;
    padding: 3% 3% 3% 5%;
    font-size: 1.4rem;
    background: #fff;
    color: #333;
    text-indent: -0.5em;
    font-family: Arial, Helvetica, "sans-serif";
}

.flow>li dl dd p {
    margin: 0 auto 1rem;
    text-align: left;
    font-size: 1.4rem;
    font-family: Arial, Helvetica, "sans-serif";
}

.flow>li dl {
    width: calc(90%);
    margin-top: 0.8em;
    margin-bottom: 0;
}

.color_pink {
    color: #D53965 !important;
}

.cancel_policy {
    width: 100%;
    font-size: 1.4rem;
    color: #fff;
    padding-left: 2rem;
    font-family: Arial, Helvetica, "sans-serif";
    list-style-type: disc;
    margin-bottom: 4rem;
}

.cancel_policy li {
    width: 100%;
    line-height: 1.8;
    margin-bottom: 1.8rem;
    list-style-type: disc;
}

.cancel_policy li p {
    margin: .5rem auto;
    font-size: 1.4rem;
}

.bg_w {
    background: #fff;
    color: #333 !important;
    padding: 7% 5% 7% 10%;
    position: relative;
}

.bg_w::after {
    position: absolute;
    content: "";
    left: 5px;
    right: 5px;
    bottom: 5px;
    top: 5px;
    border: #555 solid 1px;
}

.bg_w li {
    list-style-type: decimal;
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 0.7rem;
    font-family: Arial, Helvetica, "sans-serif";
}

/*********************************
NEWS PAGE
**********************************/
.article-container {
    padding: 3rem 1.7rem;
}

.article-container .wrapper {
    width: 100%;
    padding: 3rem 1.7rem;
    background: #fff;
    margin-right: auto;
    margin-bottom: 2.5em;
    margin-left: auto;
    overflow: hidden;
}

.article-container .wrapper .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    letter-spacing: 1px;
}

.content_body {
    margin-bottom: 3rem;
}

.content_title {
    width: 100%;
    margin: 0 auto 3rem;
    font-size: 2.8rem;
    text-align: left;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content_title span {
    font-size: 1.6rem;
}

.content .content_aside {
    width: 100%;
}

.content .content_asideList-top {
    padding-top: 0;
    border-top: none;
}

.content .content_asideList {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #000;
}

.content .content_header {
    position: relative !important;
    background: #fff;
    color: #333;
    z-index: 1;
}

.article-container .wrapper .breadcrumbs .breadcrumb_inner {
    color: #333;
}

.article-container .wrapper .breadcrumbs .breadcrumb_inner span {
    color: #333;
}

.content .content_title {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #000;
    font-size: 2.4rem;
}

.content dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0;
    align-items: center;
}

.content dl dt {
    font-weight: bold;
    margin-bottom: .5rem;
    font-size: 1.2rem;
    padding-left: 1rem;
    white-space: nowrap;
    background: #CA245B;
    padding: .3rem 1.5rem;
    border-radius: .5rem;
    color: #fff;
    flex: 1;
}

.content dl dd,
.content dl time,
.content dl ul {
    line-height: 1.5em;
    font-weight: normal;
    margin: 0 5px;
    font-size: 1.4rem;
    width: 100%;
    padding: .2rem 1rem;
}

.content dl ul li a {
    color: #333;
}

.social .social_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: -54px 0 30px !important;
}

.social.social-projects .social_list {
    margin: 0px 0 0px !important;
}

.social .social_list .social_item {
    line-height: 1;
    margin: 0 !important;
    padding: 0 10px !important;
}

.social .social_list .social_item a {
    font-size: 20px !important;
    font-size: 3rem !important;
}

.social .social_list .social_item.social_item-twitter a {
    color: #1da1f2;
}

.social .social_list .social_item.social_item-facebook a {
    color: #4267b2;
}

.social .social_list .social_item.social_item-line a {
    color: #06c755;
}

.content p {
    line-height: 1.8em;
    padding: .5rem 0;
    font-size: 1.6rem;
}

/*********************************
NEWS 一覧
**********************************/
.article-container .wrapper .content .news-list-title {
    font-size: 2.8rem;
    font-weight: 400;
}

.article-container .wrapper .content .news_wrap {
    width: 100%;
}

#news-all-container .content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    letter-spacing: 1px;
}

#news-all-container .archive {
    margin-bottom: 3rem;
}

#news-all-container .archive_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -1rem;
    margin-right: -1rem;
    margin-bottom: -1rem;
    padding-left: 0;
}

#news-all-container .archive_list li {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-bottom: 1rem;
}

#news-all-container .archive_list li a {
    position: relative;
    font-weight: bold;
    line-height: 1.4;
    display: inline-block;
    padding: 1rem 3rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid #707070;
    color: #000;
    font-size: 1.4rem;
}

#news-all-container .archive_list li.current-cat a {
    color: #fff;
    background-color: #000;
    border-color: #000;
}

/*********************************
POSTLINK
**********************************/
.postLinks {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    color: #333;
    padding-top: 1rem;
    border-top: 0.75px #555 solid;
}

.postLinks .postLink {
    width: 50%;
}

.postLinks .postLink-prev i {
    margin-right: .5rem;
}

.postLinks .postLink-next i {
    margin-left: .5rem;
}

.postLinks .postLink a {
    color: #333;
}

/*********************************
RECRUIT PAGE
**********************************/
.recruit_page {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.recruit_page .wrapper {
    width: 100%;
    position: relative;
    background: #000;
    background-size: cover;
    padding: 3rem 1.7rem 1rem;
}

/**********************************
Tab 採用内容切り替え
***********************************/
/*tabの形状*/
.tab {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding-left: 0;
    margin-top: 0;
}

.tab li {
    flex-grow: 1;
}

.tab li a {
    display: block;
    background: rgba(245, 245, 245, .2);
    margin: 0 2px;
    padding: 1rem;
    font-size: 1.2rem;
    font-family: Arial, Helvetica, "sans-serif";
    color: #fff;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
    background: #D53965;
    color: #fff;
    border: 2px solid #fff;
    font-weight: bold;
}

/*エリアの表示非表示と形状*/
.area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    background: #fff;
    padding: 2rem 1.7rem;
    font-family: Arial, Helvetica, "sans-serif";
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

/*****************************
DatePicker制御
******************************/
/* 例：ミリ秒、マイクロ秒、タイムゾーンのUI要素を非表示にするCSS */
.ui_tpicker_second_label,
.ui_tpicker_second {
    display: none !important;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.area .head {
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #D53965;
    margin-top: 0;
    color: #D53965;
}

.area .sub_ex_ttl {
    font-size: 1.6rem;
    padding-left: 1rem;
    border-left: 1rem solid #D53965;
    line-height: 1.1;
    margin: 0 auto 2rem;
    color: #333;
    font-weight: bold;
}

.area .sub_ex_txt {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 auto 1.5em;
    font-family: Arial, Helvetica, "sans-serif";
    color: #333;
}

.area .sub_ex_txt2 {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 auto;
    font-family: Arial, Helvetica, "sans-serif";
    color: #333;
}

.area .ex_text_indent {
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 0 auto;
    font-family: Arial, Helvetica, "sans-serif";
    color: #333;
    text-indent: -1rem;
    padding-left: 2rem;
}

.area .salary {
    width: 100%;
    margin: 2rem auto;
    padding: 3%;
    font-size: 1.4rem;
    font-weight: bold;
    font-family: Arial, Helvetica, "sans-serif";
    border: 1px solid #D53965;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    color: #333;
}

.area .salary h4 {
    font-size: 1.6rem;
    margin: 0 auto 1rem;
    width: 100%;
}

.area .salary .box {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}

.area .salary ._rank {
    width: 40%;
    text-align: left;
    margin: .3em 0;
}

.area .salary .amount {
    width: 60%;
    text-align: right;
    margin: 0 auto;
}

.area .benefit {
    padding-left: 1rem;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    font-size: 1.3rem;
    color: #333;
}

.area .benefit li {
    padding: 3%;
    border: 1px solid #D53965;
    font-family: Arial, Helvetica, "sans-serif";
    margin-right: 1rem;
    margin-bottom: 0.6rem;
}

/****************************
フォームリセット
*****************************/
input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
    color: #333 !important;
}

.tel-input {
    display: inline-block !important;
    width: 30% !important;
}

/* 最後の要素のみ右マージンを0にする */
.tel-input:last-child {
    margin-right: 0;
}

/*****************************
応募フォーム
******************************/
.form {
    width: 100%;
    position: relative;
    font-family: Arial, Helvetica, "sans-serif";
}

.form dl {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    font-size: 1.6rem;
    color: #333;
}

.form dl dt {
    margin-bottom: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.form dl dt span {
    font-size: 1.1rem;
    color: #BF0000;
    padding: 0.2em 0.6em;
    border: 1px solid #bf0000;
    text-align: center;
    margin-left: 1rem;
}

.form dl dd {
    margin-left: 0;
}

.form dl dd .wide,
textarea {
    padding: 3%;
    border: 1px solid #777;
    width: 100%;
    border-radius: 0.5rem;
}

input::placeholder {
    color: #c1c1c1;
}

.age {
    display: flex;
    align-items: center;
}

._age {
    width: 50% !important;
}

.height {
    display: flex;
    align-items: center;
}

._height {
    width: 50% !important;
}

.weight {
    display: flex;
    align-items: center;
}

._weight {
    width: 50% !important;
}

.bust {
    display: flex;
    align-items: center;
}

._bust {
    width: 50% !important;
}

.lady {
    display: flex;
    align-items: center;
    gap: 10px
}

._lady {
    width: 50% !important;
}

.form dl .tt {
    position: relative;
}

.form dl .tt::after {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4.5px solid #555;
    content: "";
    position: absolute;
    right: 54%;
    top: 50%;
    width: 0;
    transform: translateY(-50%);
}

.form dl dd .tattoo {
    width: 50%;
    padding: 3%;
    border: 1px solid #777;
    border-radius: 0.5rem;
    position: relative;
}

.prf_title {
    margin: 1rem 0;
}

.preferred {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.preferred .date,
.preferred .time_range,
.cource {
    width: 48%;
    padding: 3%;
    border: 1px solid #777;
    border-radius: 0.5rem;
    text-align: center;
    position: relative;
    line-height: 1.7;
}

.recruit_btn {
    margin: 0 auto;
    padding: 3%;
    font-family: "Didot", "Didot LT STD";
    font-size: 1.8rem;
    color: #fff !important;
    display: block;
    background: #C92F59;
    width: 80%;
    border-radius: 1rem;
    margin-bottom: 2rem;
    cursor: pointer;
}

.mgt_30 {
    margin-top: 3rem !important;
}

.mgb_30 {
    margin-bottom: 3rem !important;
}

.my_trigger {
    padding-left: 2rem;
    width: 100%;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 1.6rem;
    color: #333;
    padding: 3.5% 3.5% 3.5% 8%;
    margin-bottom: 2rem;
    background: #FADADD;
}

.my_trigger li {
    list-style-type: square;
    line-height: 1.7;
    font-weight: bold;
}

.reward_box {
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 1.6rem;
    margin-bottom: 3rem;
}

.reward_box .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    align-items: center;
}

.reward_box .row .base,
.reward_box .row .backrate {
    font-weight: bold;
    padding: 3%;
    text-align: center;
    flex-grow: 1;
    color: #333;
    margin: 1rem 0;
}

.reward_box .row .base {
    border: 1px solid #333;
    border-radius: .5rem;
}

.reward_box .row .backrate {
    color: #AC002E;
    font-size: 1.2em;
}

.ttl_rev {
    background: #D53965 !important;
    border: none !important;
    margin-top: 0;
    color: #FFFFFF !important;
}

.sim_box {
    width: 100%;
    position: relative;
    font-size: 1.6rem;
}

.sim_box dl dt {
    width: 100%;
    border: 2px solid #333;
    font-size: 1.6rem;
    color: #333;
    text-align: center;
    padding: 2% 5%;
    margin-bottom: 2rem;
}

.sim_box dl dd {
    margin-left: 1rem;
}

/*****************************
オンライン予約ページ
******************************/
.reservation {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.reservation .wrapper {
    width: 100%;
    position: relative;
    background: #000;
    background-size: cover;
    padding: 2rem 0 1rem;
}

.rsv_ex {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 1.6rem;
    line-height: 1.5;
}

.rsv_ex dt {
    font-size: 1.8rem;
    text-align: center;
    padding: 1rem;
    border: 2px solid #D53965;
    margin-top: 0;
    margin-bottom: 1rem;
    color: #D53965;
    font-family: Arial, Helvetica, "sans-serif";
}

.rsv_ex dd {
    margin-left: 0;
    font-size: .9em;
}

.form_wrap {
    background: #fff;
    padding: 0% 3% 3%;
    margin-bottom: 2rem;
}

/************************************
在籍モデル一覧
*************************************/
.model {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.model .wrapper {
    width: 100%;
    position: relative;
    background: #000;
    background-size: cover;
    padding: 3rem 1rem 1rem;
}

.model .wrapper .articlePanel .article-wrap {
    width: 100%;/*スマホ2ページ目*/
    /*width: 95%;*/

}

/************************************
在籍モデル出勤状況一覧
*************************************/
.schedule {
    width: 100%;
    position: relative;
    color: #fff !important;
}

.schedule .wrapper {
    width: 100%;
    position: relative;
    background: #000;
    background-size: cover;
    padding: 3rem 1rem 1rem;
}

.width_100 {
    width: 100% !important;
}

.schedule .wrapper .articlePanel .article-wrap {
    width: 95%;
}

#am-block-schedule {
    margin-bottom: 5em;
}

.am-header {
    display: flex;
    margin-bottom: 1em;
    padding-left: 0;
    flex-wrap: wrap;
    gap: calc(9* 100vw / 750) 0;
    justify-content: space-between;
    width: 100%;
}

.am-header .am-header-item a {
    line-height: 45px;
    display: inline-block;
    width: 100%;
    height: 100%;
    background: var(--bgcolor-am-header);
    color: var(--color-am-header);
    border: 1px solid #ddd;
    transition: 0s;
    text-decoration: none;
    font-size: 1.6rem;
}

.am-header .am-header-item.active a,
.am-header .am-header-item a:hover {
    background: #C92F59 !important;
    border: 1px solid #C92F59 !important;
    color: #fff;
}

.am-header-item {
    list-style: none;
    width: 32% !important;
    text-align: center;
}

/************************************
モデル個別ページ
*************************************/
.model_info {
    width: 100%;
    position: relative;
    color: #333 !important;
}

.model_info .wrapper {
    width: 100%;
    position: relative;
    background-size: cover;
    padding: 7.5rem 1.4rem 1rem;
    background: url("../images/model_bg.jpeg") no-repeat center center;
}

.profiles {
    position: relative;
    width: 100%;
}

.profiles .main_ttl {
    font-size: 3.6rem;
    text-align: center;
    font-family: "Didot", "Didot LT STD";
    color: #333;
    margin-top: 0;
}
.profiles .intro{
    font-size: 1.6rem;
    letter-spacing: -.03em;
    text-align: center;
    line-height: 1.3;
}
.prof_wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.prof_wrap .prof_photo{
    width: 100%;
    margin-bottom: 1.5rem;
}
.prof_wrap .prof_init{
    width: 100%;
}
.prof_init p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 auto 1em;
}

.prof_init .prof_copy {
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 2rem;
    border: 1px solid #D53965;
    padding: 0.2em 0;
    background: #fff;
}

.prof_init .prof_head {
    font-size: 1.4rem;
    text-align: left;
    margin: 0 auto .5rem;
    font-family: Arial, Helvetica, "sans-serif";
    border-left: 1rem solid #D53965;
    padding-left: 1rem;
}

.prof_init .base {
    margin: .3rem 0;
    font-size: 1.2rem;
    padding: .1em .5em;
    text-align: left;
    font-family: Arial, Helvetica, "sans-serif";
    color: #555;
}

.prof_init .detail {
    width: 100%;
    text-align: left;
    position: relative;
    padding: 1% 0%;
    display: flex;
    flex-direction: column;
}

.prof_init .detail .row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.prof_init .detail .row p {
    margin: .2em 0;
    font-size: 1.2rem;
    background: #fff;
}

.prof_init .detail .row p:first-child {
    width: 35%;
    border: 1px solid #777;
    padding: .5% 3%;
    margin-right: 1rem;
}

.prof_init .detail .row p:nth-child(2) {
    width: 65%;
    border: 1px solid #777;
    padding: .5% 3%;
}

.feature_home{
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}
.feature_home span{
    flex-grow: 1;
    font-size: 1.1rem;
    text-align: center;
    align-content: center;
    margin-right: 1rem;
    margin-bottom: .5rem;
    min-width: 18%;
    color: #fff;
    font-family: Arial, Helvetica, "sans-serif";
    padding: .5% 2%;
    border: 1px solid #D53965;
    background-color: #D53965;
    border-radius: .5rem;
}
.special-feature-class{
    padding: .5% 2%!important;
}
.normal-feature-class{
    padding: .1% 2%!important;
}

.prof_init .feature {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.prof_init .feature span {
    flex-grow: 1;
    font-size: 1.1rem;
    text-align: center;
    margin-right: 1rem;
    margin-bottom: 1rem;
    min-width: 20%;
    color: #D53965;
    font-family: Arial, Helvetica, "sans-serif";
    padding: .5% 2%;
    border: 1px solid #D53965;
    border-radius: .5rem;
    background: #fff;
}

.plof_slider {
    /*横幅94%で左右に余白を持たせて中央寄せ*/
    width: 94%;
    margin: 0 auto;
    padding: 3rem 0;
}

.plof_slider img {
    width: 60vw;
    /*スライダー内の画像を60vwにしてレスポンシブ化*/
    height: auto;
}

.plof_slider .slick-slide {
    transform: scale(0.8);
    /*左右の画像のサイズを80%に*/
    transition: all .5s;
    /*拡大や透過のアニメーションを0.5秒で行う*/
    opacity: 0.5;
    /*透過50%*/
}

.plof_slider .slick-slide.slick-center {
    transform: scale(1);
    /*中央の画像のサイズだけ等倍に*/
    opacity: 1;
    /*透過なし*/
}

.prof_photo .slider img {
    width: 100%;
}

.prof_photo ul li {
    position: relative;
}

.prof_photo ul li::after {
    content: "";
    z-index: 1;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 20%, rgba(0, 0, 0, 0) 70%);
}

.prof_photo ul li .prof_box {
    width: 100%;
    padding: 1rem 0.8rem;
    font-size: 1.4rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    bottom: 0;
    z-index: 3;
}

.prof_photo .slick-prev,
.prof_photo.slick-next,
.prof_photo.slick-prev2,
.prof_photo.slick-next2 {
    position: absolute;
    top: 35%;
    cursor: pointer;
    outline: none;
    height: 15px;
    width: 15px;
    z-index: 3;
}
.news-img{
    width: 100%!important;
}

.prof_photo .slick-next {
    right: 3vw;
}

.prof_photo .slick-prev {
    left: 0;
}

.prof_ex {
    width: 100%;
    padding: 5% 0% 3%;
}

.prof_ex p {
    font-size: 1.6rem;
    line-height: 1.8;
}

.prof_ex .prof_copy {
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 2rem;
    border: 1px solid #D53965;
    padding: 0.2em 0;
    background: #fff;
}

.prof_ex .prof_head {
    font-size: 1.8rem;
    text-align: left;
    margin: 0 auto 1rem;
    font-family: Arial, Helvetica, "sans-serif";
    border-left: 1rem solid #D53965;
    padding-left: 1rem;
}

.prof_ex .base {
    margin: .3rem 0 2rem;
    font-size: 1.6rem;
    padding: .2em .5em;
    text-align: left;
    font-family: Arial, Helvetica, "sans-serif";
    color: #555;
}

.prof_ex .detail {
    width: 100%;
    text-align: left;
    position: relative;
    padding: 2% 0%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.prof_ex .detail .row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.prof_ex .detail .row p {
    margin: .2em 0;
    font-size: 1.6rem;
    background: #fff;
}

.prof_ex .detail .row p:first-child {
    width: 35%;
    border: 1px solid #777;
    padding: 2%;
    margin-right: 1rem;
}

.prof_ex .detail .row p:nth-child(2) {
    width: 65%;
    border: 1px solid #777;
    padding: 2% 3%;
}

.prof_ex .feature {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.prof_ex .feature span {
    flex-grow: 1;
    font-size: 1.6rem;
    text-align: center;
    margin-right: 1rem;
    margin-bottom: 1rem;
    min-width: 35%;
    color: #D53965;
    font-family: Arial, Helvetica, "sans-serif";
    padding: 1% 2%;
    border: 1px solid #D53965;
    border-radius: .5rem;
    background: #fff;
}

/****************************************
スケジュール
*****************************************/
.schedule_box {
    width: 100%;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.schedule_box .ttl {
    font-size: 2rem;
    font-family: Arial, Helvetica, "sans-serif";
    padding: 1% 2%;
    border: 1px solid #D53965;
    color: #fff;
    width: 100%;
    text-align: center;
    background: #D53965;
}

.schedule_box .wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.schedule_box .wrap .head {
    background: #999;
    color: #fff;
    text-align: center;
    padding: 1% 2%;
    font-size: 1.6rem;
}

.schedule_box .wrap .cell {
    background: #fff;
    color: #333;
    text-align: center;
    padding: 1% 2%;
    font-size: 1.6rem;
    border: #777 1px solid;
}

._btn {
    margin: 0 auto;
    padding: 3%;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 1.8rem;
    color: #C92F59;
    display: block;
    background: #fff;
    border: 1px solid #C92F59;
    width: 90%;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

._btn a {
    color: #C92F59;
}
.rv_leady{
    padding: 1% 2%!important;
}

/*ディスプレイ幅が768px(タブレット)より大きい端末のみへの記述*/
@media only screen and (min-width: 767px) {
    .concept_box {
        max-width: 76rem;
        margin: 0 auto;
    }
    .model_link .intro {
    font-size: 1.4rem;
    height: 4em;
}
    .feature_home{
        justify-content: flex-start;
    }
    .feature_home span{
        flex-grow: 0;
        font-size: .9rem;
        text-align: center;
        align-content: center;
        margin-right: .3rem;
        margin-bottom: .5rem;
    }
    .recruit_page .wrapper {
        width: 100%;
        position: relative;
        background: #000;
        background-size: cover;
        padding: 6rem 10% 1rem;
    }

    .model .wrapper {
        width: 100%;
        position: relative;
        background: #000;
        background-size: cover;
        padding: 6rem 10% 1rem;
    }

    .schedule .wrapper {
        padding: 6rem 10% 1rem;
    }

    #top_reserved_btn {
        width: 40%;
    }

    #top_reserved_btn a {
        font-size: 2.6rem;
        padding: 1% 2%;
    }

    #top_reserved_btn .invoice {
        font-size: 1.8rem;
        width: 70%;
    }

    header .wrap h1 {
        width: auto;
        height: 8rem;
    }

    header .wrap h1 img {
        height: 5rem;
        width: 100%;
    }

    header .wrap .gnav {
        height: 8rem;
    }

    .kv .kv_wrap {
        padding-top: 8rem;
    }

    #nav .con_menu .box_menu .list_menu {
        padding-top: 8rem;
    }

    .hmb_menu.active span:nth-of-type(1) {
        top: 30px;
        left: 30px;
    }

    .hmb_menu.active span:nth-of-type(3) {
        top: 41px;
        left: 30px;
    }

    header .wrap .gnav a {
        font-size: 1.6rem;
        width: 8rem;
        padding: 1rem;
        background: #C92F59;
    }

    header .wrap .gnav h1 a {
        width: 100%;
        background: #000;
        padding: .5em;
    }

    header .wrap .gnav h1 a img {
        height: auto;
        width: 25%;
        margin: 0 auto;
    }

    .hmb_wrap {
        width: 12rem;
        height: 12rem;
    }

    .hmb_menu {
        width: 8rem;
        height: 8rem;
    }

    .hmb_menu span:nth-of-type(1) {
        width: 60%;
    }

    .vertical-txt {
        width: 12rem;
        font-size: 3rem;
        font-weight: 400;
        line-height: 1.2;
        top: 12rem;
    }

    .slick-dots {
        padding: 3rem 3rem;
    }

    .kv .kv_wrap::before {
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
    }

    .kv .kv-ttl {
        transform: translateY(-1%);
    }

    .kv .kv-ttl h2 {
        font-size: 4rem;
        text-shadow: none;
        letter-spacing: .08em;
    }

    .kv .kv-ttl .shop-info .head {
        font-size: 3rem;
        margin: 0 auto 1rem;
    }

    .kv .kv-ttl .shop-info {
        font-size: 1.8rem;
        width: 40%;
        display: block;
        background: rgba(255, 255, 255, 0);
        margin: 0 auto;
        transition: .6s all;
        letter-spacing: .005em;
    }

    .kv .kv-ttl .shop-info:hover {
        background: rgba(255, 255, 255, .2);
        letter-spacing: .08em !important;
    }

    .scrolldown span {
        font-size: 1.8rem;
    }

    .campaign {
        padding: 6rem 0 11rem;
    }

    .campaign .slider {
        width: 50%;
    }

    .banner_wrap {
        width: 50%;
    }

    .headline {
        font-size: 4rem;
        letter-spacing: .08em;
        margin-bottom: 7rem
    }

    .headline p {
        font-size: 1.8rem;
    }

    .newface .wrapper {
        padding: 10rem 0 10rem;
    }

    .slick-next {
        right: 0.3vw;
    }

    .slick-next2 {
        right: 0vw;
        top: 32%;
    }

    .slick-prev {
        left: -0.5vw;
    }

    .slick-prev2 {
        left: -1vw;
        top: 32%;
    }

    .bg_red_diamond {
        width: 10%;
        opacity: 0.2;
        margin-top: -3%;
    }

    .rank {
        font-size: 2rem;
        padding: 1.5rem 3rem;
    }

    .prof_box .intro {
        font-size: 1.4rem;
        width: 100%;
    }

    .prof_box .schedule p {
        font-size: 1.6rem;
    }

    .articlePanel {
        margin: 0 auto;
        width: 80%;
    }

    .article .box .prof_box {
        padding: .5rem 1rem;
        font-size: 1.6rem;
    }
    .model-item {
        width: 33.3%!important;
    }
    .prof_box .schedule_sub p {
        margin: 0.2em auto;
    }
    .prof_box .prof .size {
        margin-bottom: 0;
    }
    .prof_box .prof .name_wrap {
        font-size: 1.6rem;
        margin-bottom: 0;
    }

    .prof_box .prof .size {
        font-size: 1.6rem;
    }

    .article {
        width: 33%;
    }

    .article .model_link {
        padding: 2%;
    }

    .prof_box .tag {
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .todays_schedule .wrapper {
        padding: 10rem 0;
    }

    .accordion-area .search .search_title {
        width: 75%;
        padding: 1% 6% 1% 6%;
    }

    .accordion-area .search .box {
        padding: 1% 2%;
        width: 75%;
        margin: 0 auto;
    }

    .accordion-area .search .search_title::before {
        left: 2.5rem;
    }

    .accordion-area .search .search_title::after {
        left: 2.5rem;
    }

    .more_btn {
        width: 50%;
    }

    .detail_recruit {
        width: 90% !important;
        margin: 0 auto;
    }

    .more_btn::after {
        right: 3%;
    }

    .more_btn p {
        font-size: 2.4rem;
    }

    .news {
        padding-bottom: 0rem;
    }

    .news .wrapper {
        position: relative;
        padding: 10rem 0;
    }

    .news_wrap .news_box {
        width: 80%;
    }

    .news_wrap {
        width: 100%;
    }

    .news_wrap .news_box .news_list {
        width: 100%;
    }

    .news_wrap .news_box .news_list li .date-area time {
        font-size: 1.8rem;
    }

    .news_wrap .news_box .news_list li {
        padding: 1.5em 2.5em;
    }

    .news_wrap .news_box .news_list li p {
        font-size: 1.6rem;
    }
    .news-area-wrap{
        width: 60%;
        padding: 0px 10px 0 25px;
    }
    .news-img{
        width: 48% !important;
    height: 100%;
    }
    .more_btn_news a {
        padding: 0 3%;
    }
    #news .news .photo{
        width: 40%;
        height: 100%;
        padding: 2rem 1rem;
    }
    #news-all-container .news_wrap .news_box {
        width: 100%;
    }
    .news_wrap .news_box .news_list li .date-area .post-categories li {
        border: none;
        padding: 1.5rem;
    }

    #news-all-container .news_wrap .news_box .news_list li {
        padding: 1rem 2.5rem;
        font-size: 1.3rem;
    }
    .news_wrap .news_box .news_list li {
        flex-flow: wrap;
        font-size: 1.4rem;
        padding: 2.5em 2em;
        /* border-top: 1px solid #b1b1b1; */
        background: #fff;
        position: relative;
    }

    #news-all-container .news_wrap .news_box .news_list li .date-area time {
        font-size: 1.6rem;
        font-weight: bold;
        color: #333;
    }

    #news-all-container .news_wrap .news_box .news_list li p {
        padding: 1rem;
        line-height: 1.1;
    }

    #news-all-container .news_wrap .news_box .news_list li p a {
        width: 100%;
        font-size: 1.6rem;
    }

    .more_btn_news {
        width: 40%;
        padding: 1% 3%;
    }

    .more_btn_news a {
        font-size: 2rem;
    }

    .recruit .wrapper {
        padding: 10rem 0;
        width: 100%;
    }

    .contact .wrapper {
        position: relative;
        padding: 10rem 0;
        background-size: cover;
    }

    .recruit_box {
        flex-direction: row;
        width: 80%;
        margin: 0 auto;
    }

    .btn_contact {
        width: 50%;
        padding: 1% 3%;
    }

    .btn_contact a {
        padding: 3%;
        font-size: 2.4rem;
    }

    /*********************************
公式SNS
**********************************/
    .sns .wrapper p {
        text-align: center !important;
    }

    .sns-box {
        display: flex;
        justify-content: center;
        width: 70%;
        margin: 0 auto
    }

    .sns-box .line,
    .sns-box .telegram {
        width: 30%;
        text-align: center;
    }

    .sns-box .line img,
    .sns-box .telegram img {
        width: 30%;
    }

    .sns-box .line p,
    .sns-box .telegram p {
        text-align: center !important;
        font-size: 1.6rem;
    }

    .mailmagazine .wrapper {
        padding: 10rem 1.5rem;
        margin: 0 auto;
    }

    .mailmagazine .wrapper p {
        text-align: center;
        width: 100%;
        margin: 3rem auto 3rem;
    }

    .mailmagazine .mailForm .mail {
        font-size: 1.8rem;
        padding: 2rem 2.5rem;
    }

    .mailmagazine .mailForm .button {
        font-size: 1.8rem;
    }

    footer .wrapper {
        padding: 2rem 5rem 2rem;
        font-size: 1.6rem;
    }

    .logo_gold {
        font-size: 1.8rem;
        letter-spacing: .07em;
    }

    .logo_gold .shopname {
        font-size: 1.8rem;
    }

    .logo_gold img {
        width: 10%;
        margin-bottom: 1rem;
    }

    .footer_menu .list_menu a {
        padding: 0 0.7em 0;
    }

    .kv_main {
        height: 40vh;
    }

    .kv_main .kv_wrap {
        overflow: hidden;
        height: 100%;
    }

    .kv_main .kv_wrap .kv_title {
        width: 35%;
        font-size: 2.4rem;
    }

    .breadcrumbs .breadcrumb_inner {
        width: 100%;
        font-size: 1.4rem;
    }

    .ex_wrap,
    .flow_wrap {
        width: 100%;
    }

    .ex_headline {
        font-size: 3.2rem;
    }

    .ex_txt {
        font-size: 1.6rem;
    }

    .model_info .wrapper {
        background-size: cover;
        max-width: 960px;
        margin: 0 auto;
        padding: 10rem 3rem 5rem;
    }

    .profiles .main_ttl {
        font-size: 4.8rem;
    }

    .prof_photo {
        width: 50%;
        margin: 0 auto;
    }

    .plof_slider {
        width: 60%;
    }

    .plof_slider img {
        width: 30vw;
    }

    .prof_ex {
        width: 100%;
        margin: 0 auto;
    }

    .prof_ex .prof_copy {
        font-size: 2.8rem;
        margin: 0px auto 3rem;
        border: 1px solid #D53965;
        padding: 0.7em 0;
    }

    .prof_ex .prof_head {
        font-size: 2.4rem;
    }

    .prof_ex .base {
        font-size: 2rem;
    }

    .prof_ex .detail .row p {
        font-size: 2rem;
    }

    .prof_ex .detail .row p:nth-child(2) {
        width: 65%;
        border: 1px solid #777;
        padding: 1% 3%;
    }

    .prof_ex .detail .row p:first-child {
        width: 35%;
        border: 1px solid #777;
        padding: 1% 2%;
        margin-right: 1rem;
    }

    .ex_wrap .price_info_ttl {
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        padding: 1% 3%;
        color: #fff;
        font-family: "Didot", "Didot LT STD";
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        margin: 0;
        width: 100%;
    }

    ._btn {
        margin: 0 auto;
        padding: 1% 3%;
        font-size: 2.2rem;
        width: 90%;
    }

    .system .wrapper {
        width: 80%;
        position: relative;
        background: #000;
        background-size: cover;
        padding: 2rem 0 1rem;
        margin: 0 auto;
    }

    /********************************
    ERROR PAGE
    *********************************/
    .error404 .wrapper .error_image {
        width: 40%;
        margin: 5rem auto;
        display: block;
    }

    /*********************************
NEWS PAGE
**********************************/
    .article-container {
        padding: 6rem 10%;
    }
    .article-container .wrapper {
        width: 100%;
        padding-right: 4rem;
        padding-left: 4rem;
        padding-top: 8rem;
        padding-bottom: 8rem;
        background: #fff;
        margin-right: auto;
        margin-bottom: 2.5em;
        margin-left: auto;
    }
    .content .content_aside {
        width: 100;
    }

    .content .content_asideList-top {
        padding-top: 0;
        border-top: none;
    }

    .content .content_asideList {
        margin-bottom: 2rem;
        padding: 2rem 0;
        border-top: none;
        border-bottom: none;
    }

    .content .content_body {
        position: relative;
        width: 100%;
    }

    .content .content_header {
        position: relative !important;
        background: #fff;
        color: #333;
        z-index: 1;
    }

    .content .content_title {
        font-weight: bold;
        margin-top: 0;
        margin-bottom: 1.5rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #000;
        font-size: 2.4rem;
    }

    .content dl {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
    }

    .content dl dt {
        font-weight: bold;
        font-size: 1.4rem;
        padding-left: 1rem;
        white-space: nowrap;
        background: #CA245B;
        padding: .3rem 1.5rem;
        border-radius: .5rem;
        color: #fff;
    }

    .content dl dd {
        line-height: 1.5em;
        font-weight: normal;
        margin: 0 5px;
        font-size: 1.4rem;
        width: 100%;
        text-align: left;
        padding: .2rem 1rem;
    }

    .social .social_list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin: -54px 0 30px !important;
    }

    .social.social-projects .social_list {
        margin: 0px 0 0px !important;
    }

    .social .social_list .social_item {
        line-height: 1;
        margin: 0 !important;
        padding: 0 10px !important;
    }

    .social .social_list .social_item a {
        font-size: 20px !important;
        font-size: 3rem !important;
    }

    .social .social_list .social_item.social_item-twitter a {
        color: #1da1f2;
    }

    .social .social_list .social_item.social_item-facebook a {
        color: #4267b2;
    }

    .social .social_list .social_item.social_item-line a {
        color: #06c755;
    }

    .content p {
        line-height: 1.8em;
        padding: 2rem 0;
        font-size: 1.6rem;
    }

    #fixedBtnMenu {
        display: none;
    }

    /********************************
    CONCEPT
  *********************************/
    .concept .wrapper {
        padding: 10rem 10%;
        background: url(../images/concept_bg_pc.jpg)no-repeat top center;
        background-attachment: fixed;
        position: relative;
        background-size: cover;
    }

    .concept .wrapper::before {
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
        position: absolute;
        display: none;
        /*後で削除*/
    }

    .concept_title {
        max-width: 76rem;
        margin: 0 auto 5rem;
        position: relative;
        font-size: 3.2rem;
        z-index: 9;
    }

    .concept_box {
        max-width: 76rem;
        margin: 0 auto;
    }

    .concept_box .txt {
        font-size: 1.6rem;
        line-height: 2;
        position: relative;
        z-index: 9;
    }

    /*********************************
    採用
    *******************************/
    .form dl dd .tattoo {
        padding: 1%;
    }

    .recruit_btn {
        padding: 1%;
        width: 65%;
    }

    .area {
        padding: 5% 5%;
    }

    .tab li a {
        padding: 1rem 2rem;
        font-size: 1.6rem;
    }

    .area .ex_text_indent {
        font-size: 1.6rem;
        line-height: 1.7;
    }

    .area .salary {
        padding: 2%;
        font-size: 1.6rem;
    }

    .area .benefit li {
        padding: 1%;
    }

    .area .sub_ex_txt {
        font-size: 1.6rem;
    }

    .area .sub_ex_txt2 {
        font-size: 1.6rem;
    }

    .form dl dd .wide,
    textarea {
        padding: 1% 2%;
    }

    .reward_box .row .base,
    .reward_box .row .backrate {
        padding: 1%;
    }

    .sim_box dl dt {
        padding: 1% 3%;
    }

    .my_trigger {
        padding: 2% 2% 2% 5%;
    }

    .channels {
        width: 76rem;
    }
    .prof_wrap{
    width: 100%;
    display: flex;
    flex-direction: row;
}
.prof_wrap .prof_photo{
    width: 48%;
}
.prof_wrap .prof_init{
    width: 48%;
}
.prof_init p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 auto;
}

.prof_init .prof_copy {
    font-size: 2rem;
    text-align: center;
    margin: 0 auto 2rem;
    border: 1px solid #D53965;
    padding: 0.2em 0;
    background: #fff;
}

.prof_init .prof_head {
    font-size: 1.4rem;
    text-align: left;
    margin: 0 auto .5rem;
    font-family: Arial, Helvetica, "sans-serif";
    border-left: 1rem solid #D53965;
    padding-left: 1rem;
}

.prof_init .base {
    margin: .3rem 0;
    font-size: 1.2rem;
    padding: .1em .5em;
    text-align: left;
    font-family: Arial, Helvetica, "sans-serif";
    color: #555;
}

.prof_init .detail {
    width: 100%;
    text-align: left;
    position: relative;
    padding: 1% 0%;
    display: flex;
    flex-direction: column;
}

.prof_init .detail .row {
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

.prof_init .detail .row p {
    margin: .2em 0;
    font-size: 1.2rem;
    background: #fff;
}

.prof_init .detail .row p:first-child {
    width: 35%;
    border: 1px solid #777;
    padding: .5% 3%;
    margin-right: 1rem;
}

.prof_init .detail .row p:nth-child(2) {
    width: 65%;
    border: 1px solid #777;
    padding: .5% 3%;
}

.prof_init .feature {
    display: flex;
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
}

.prof_init .feature span {
    flex-grow: 1;
    font-size: 1.1rem;
    text-align: center;
    margin-right: 1rem;
    margin-bottom: 1rem;
    min-width: 20%;
    color: #D53965;
    font-family: Arial, Helvetica, "sans-serif";
    padding: .5% 2%;
    border: 1px solid #D53965;
    border-radius: .5rem;
    background: #fff;
}
}

#main-slider .splide__arrow {
    display: none;
}

.prof_box {
    width: 250px;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}


.privacy {
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
}

.privacy .ttl {
    margin: 20px 0;
    font-size: 2em;
    font-weight: 700;
}

.privacy .inner {
    display: block;
}

.privacy .inner .policy {
    max-width: 100%;
}

.privacy .inner .policy p {
    font-size: 1.6rem;
    text-align: left;
}

.content .info {
    text-align: left;
    font-size: 1.6rem;
}

.privacy .inner .policy ul {
    padding-left: 0;
}

.privacy .inner .policy li {
    font-size: 1.4rem;
    text-align: left;
    line-height: 2;
    padding-left: 1em;
    text-indent: -.6em;
}

/* Reception page */
.reception table {

    border: 1px solid #ccc;
    border-collapse: collapse;
    padding: 0;
    margin: 0;
    width: 100%;
}

.reception table tr {
    border: 1px solid #ccc;
    padding: .35em;
}

.reception table th,
.reception table td {
    padding: .625em;
    text-align: center;
}

.reception table th {
    background: #f8f8f8;
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reception .modal-body .w-30 {
    width: 30%;
    background-color: #f8f8f8;
    border-right: 1px solid #ddd;
}

.view-button {
    display: flex;
    justify-content: center;
}

.view-button .openModelDetails {
    display: flex;
    gap: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-left: 0px;
    align-items: center;
}

.pagination li {
    padding: 5px;
    font-size: 14px;
}

.pagination li:first-child, .pagination li:last-child {
    font-size: 20px;
    padding-top: 5px;
}

.pagination a {
    color: #fff;
}

.pagination li.active {
    background-color: #CA245B;
    color: white;
}

.pagination li:hover:not(.active) {
    background-color: #ddd;

}

/* Media Queries*/

@media screen and (max-width: 600px) {
    .reception table {
        border: 0;
    }

    .reception table thead {
        display: none;
    }

    .reception table tr {
        border-bottom: 3px solid #ddd;
        display: block;
        margin-bottom: .625em;
    }

    .reception table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    .reception table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    .reception table td:last-child {
        border-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    .single-column {
        width: 100%;
    }

    .double-column {
        width: 50%;
    }
}

.detail_recruit {
    width: 90%;
    display: block;
    background: #C92F59;
    position: relative;
    text-align: center;
    border: none;
    margin: 30px auto 20px;
    border-radius: 10px;
    font-family: Arial, Helvetica, "sans-serif";
}

.detail_recruit a {
    display: block;
    padding: 1% 3%;
    width: 100%;
    margin: 0 auto;
    font-size: 2.2rem;
    color: #fff;
}
/* newface セクションのスタイル調整 */
@media screen and (max-width: 767px) {
  #newface .article-wrap {
    width: 80%;
    margin: 0 auto;
  }
  
  #newface .article {
    width: 100%;
    max-width: 100%;
  }
}

/* モバイル端末用のスタイル */
@media (max-width: 768px) {
    .detail_recruit a {
        font-size: 1.8rem;
        padding: 3%;
    }
}

.alert-success {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    color: #0a3622;
    background-color: #d1e7dd;
    border: 1px solid #a3cfbb;
    border-radius: 0.375rem;
    margin: 10px 0px;
    font-size: 16px;
}

.alert-danger {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    color: #58151c;
    background-color: #f8d7da;
    border: 1px solid #f1aeb5;
    border-radius: 0.375rem;
    margin: 10px 0px;
    font-size: 16px;
}
@media only screen and (min-width: 767px) {
  .model-item {
    width: calc(33.3333% - 10px) !important; /* マージンを考慮した計算 */
    box-sizing: border-box !important;
    margin: 0 5px 10px !important;
    float: left !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }
  .article-wrap {
    display: block !important;
    width: 100% !important;
    font-size: 0; /* インライン要素の隙間を消す */
    height:100%!important;
  }
  /* Muuriのスタイルを完全に無効化 */
  .muuri, .muuri-item, .muuri-item-shown {
    position: relative !important;
    transform: none !important;
  }
}
@media screen and (max-width: 767px) {
    /* モバイル用（767px以下）: 2列レイアウト */
    .model-item {
      width: 48%!important; /* 49%から48%に変更して余白を確保 */
      margin: 0 1% 2% 1%; /* 上下左右の余白を追加 */
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      float: left;
    }
    
    .article-wrap {
      display: flex;
      flex-wrap: wrap;
      height: auto !important;
    }
    
    /* Muuriのスタイルを完全に無効化 */
    .muuri, .muuri-item, .muuri-item-shown {
      position: relative !important;
      transform: none !important;
    }
  }
  
  @media only screen and (min-width: 767px) {
    /* PC用（767px以上）: 3列レイアウト */
    .model-item {
      width: calc(33.3333% - 10px) !important; /* マージンを考慮した計算 */
      box-sizing: border-box !important;
      margin: 0 5px 10px !important;
    }
  }

  /* public/assets/css/style.css に追加 */
.model_link .intro {
    height: 5em!important; /* 固定高さを設定 */
    overflow: hidden!important;
    /* WebKit系ブラウザ用の行数制限 */
    display: -webkit-box!important;
    -webkit-line-clamp: 3!important;
    -webkit-box-orient: vertical!important;
    /* 非WebKit系ブラウザ用のフォールバック */
    display: block!important;
    max-height: 5em!important; /* 行の高さに基づいて調整 */
    position: relative!important;
    margin: 1rem 0!important;
  }

  @media screen and (max-width: 767px) {
    /* モバイル用の2列レイアウト */
    .model-item {
      width: 48% !important; /* 幅を48%に設定 */
      margin: 0 1% 10px 1% !important; /* 余白を調整 */
      float: left !important; /* 左フロートで横並びに */
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
    }
    
    /* 親要素のクリアフィックス */
    .article-wrap {
      display: block !important;
      width: 100% !important;
      overflow: hidden !important;
    }
    
    /* Muuriのスタイルを完全に無効化 */
    .muuri, .muuri-item, .muuri-item-shown {
      position: relative !important;
      transform: none !important;
    }
    
    /* 画像サイズの調整 */
    .model-item .photo {
      width: 100% !important;
      height: auto !important;
    }
    
    /* コンテンツエリアのレイアウト調整 */
    #todays_schedule .article-wrap {
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      width: 90%;
      margin: 0 auto;
    }
  }
  @media screen and (max-width: 767px) {
    /* モバイル用の2列レイアウト - フロートベース */
    .model-item {
      width: 48% !important; /* 48%に設定してマージンを確保 */
      margin: 0 1% 15px 1% !important; /* 上下左右のマージン調整 */
      float: left !important; /* 左フロート */
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
      clear: none !important; /* 明示的にclearを無効化 */
    }
    
    /* 2つおきに左マージンをクリア */
    .model-item:nth-child(2n+1) {
      clear: left !important; /* 奇数番目の要素で改行 */
    }
    
    /* 親要素はoverflow: hiddenでクリアフィックス */
    .article-wrap {
      overflow: hidden !important;
      width: 98% !important;
      margin: 0 auto !important;
    }
    #article-slider{
        width:90%!important;
    }
    
    /* 画像サイズの統一 */
    .model-item .photo {
      width: 100% !important;
      height: auto !important;
    }
    
    /* intro部分のサイズ統一 */
    .model_link .intro {
      min-height: 4em !important; /* 最小高さを指定 */
      overflow: hidden !important;
      margin: 0.5rem 0 !important;
    }
  }
/* PC用スタイル（768px以上） */
@media only screen and (min-width: 768px) {
    /* モデルアイテムのレイアウト */
    .model-item {
      width: calc(33.3333% - 10px) !important;
      margin: 0 5px 20px !important;
      float: left !important;
      position: relative !important;
      left: auto !important;
      top: auto !important;
      transform: none !important;
    }
    
    /* PCでの3列表示のためのクリア */
    .model-item:nth-child(3n+1) {
      clear: left !important;
    }
    
    /* 2列表示のクリアルールを上書き */
    .model-item:nth-child(2n+1):not(:nth-child(3n+1)) {
      clear: none !important;
    }
    
    /* モデルアイテムを囲むコンテナのスタイル */
    .article-wrap {
      display: block !important;
      width: 100% !important;
      overflow: hidden !important;
      font-size: 0; /* インライン要素の隙間を消す */
    }
    
    /* Muuri関連のスタイルを強制上書き */
    .muuri-item, .muuri-item-shown {
      position: relative !important;
      transform: none !important;
      left: auto !important;
      top: auto !important;
    }
    
    /* PCでの親コンテナの3列表示用スタイル */
    .article-wrap.grid {
      display: flex !important;
      flex-wrap: wrap !important;
      justify-content: flex-start !important;
    }
  }
  
/* 年齢認証モーダル - バナー統合版 */

/* モーダル全体の調整 */
.modal-container .enhanced-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ロゴ背景を元画像に変更 */
.modal-container .enhanced-logo {
    background-image: url("../images/model-bg.webp");
    background-size: cover;
    background-position: center;
    position: relative;
}

.modal-container .enhanced-logo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(201, 47, 89, 0.8) 0%, rgba(142, 31, 37, 0.8) 100%);
    z-index: 1;
}

.modal-container .enhanced-logo img {
    position: relative;
    z-index: 2;
}

/* バナーセクション */
.banner-section {
    background: linear-gradient(to bottom, #fff 0%, #f8f9fa 100%);
    padding: 25px 30px 30px;
    border-top: 1px solid #eee;
}

.banner-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.banner-container {
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.banner-container:hover {
    transform: translateY(-2px);
}

/* バナーテーブル */
.banner-table {
    width: 100%;
    max-width: 468px;
    margin: 0 auto;
    border: 2px solid #8e1f25;
    border-radius: 8px;
    overflow: hidden;
    line-height: 0;
    font-size: 0;
}

.banner-table img {
    width: 100%;
    display: block;
    transition: opacity 0.3s ease;
}

.banner-table a:hover img {
    opacity: 0.9;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .modal-container {
        padding: 5px;
    }

    .modal-container .enhanced-modal {
        width: 100%;
        max-width: 95vw;
        border-radius: 15px;
    }

    .banner-section {
        padding: 20px 10px 25px;
    }

    .banner-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* モバイルでバナーを大きく見やすく */
    .banner-table {
        transform: scale(1.1);
        border-width: 1px;
    }

    .banner-container {
        padding: 5px;
        overflow-x: auto;
    }
}

@media (max-width: 480px) {
    .modal-container .enhanced-modal {
        max-width: 98vw;
        border-radius: 10px;
    }

    .banner-section {
        padding: 15px 5px 20px;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-table {
        transform: scale(1.05);
    }
}

@media (max-width: 380px) {
    .banner-table {
        transform: scale(0.95);
    }
    
    .banner-section {
        padding: 10px 2px 15px;
    }
}