@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #0d1e44;
  --sub-color: #e7161a;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){
  /* コンテナサイズ:1440px */
  .container.mid{
    max-width: calc(1286px + 80px);
    padding-left: 100px;
    padding-right: 100px;
  }

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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


  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

}
@media (min-width:1720px){
  /* コンテナサイズ:1440px */
  .container.mid{
    max-width: calc(1440px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }


  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


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

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

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

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

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

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

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

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

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

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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


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


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

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


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


/*******************************
*　ヘッダー
********************************/
.header{
  background: #0d1e44;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }


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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  body.body_esthetics,
  body.body_foodAndBeverage{
    padding-top: 100px;
  }
  .header{
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 38px 30px 38px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    display: block;
    width: 140px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 16px;
    text-align: center;
    font-size: 13px;
    font-family: "Cardo", serif;
    font-weight: 700;
    padding: 7px 0 5px;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before{
    content: "";
    display: block;
    width: 17px;
    aspect-ratio:17 / 13;
    background-image: url(/system_panel/uploads/images/mail_wh.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-right: 7px;
    margin-bottom: 4px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 1px solid #0d1e44;
    color: #0d1e44;
  }
  .hdr_contact_btn:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_bl.png);
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 180px;
  }

  /* ヘッダースリム */
  .header.slim{

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }


}
@media (min-width:1024px){
  .header{
    padding: 30px 38px 30px 38px;
  }
  .header.food{
    padding: 30px 19px 30px 38px;
  }


  /* ロゴ */
  .hdr_logo img{
    width: 200px;
  }

  /* ヘッダースリム */
  .header.slim{

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

  /* ヘッダースリム */
  .header.slim{

  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  background: #0d1e44;
  padding-top: 0;
  position: relative;
  overflow: hidden;
}
.mv_inner:before{
  content: "";
  padding-top: calc(100vh - 54px - 60px);
}
.mv_img{
  position: relative;
  z-index: 1;
  height: 72.21%;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}
.mv_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  position: absolute;
  top: 0;
  left: 0;
}

.mv_box1{
  width: 21.87%;
  align-self: baseline;
  position: relative;
  z-index: 2;
  padding-left: 3.7%;
  padding-top: 7%;
}
.mv_box1_inner{
  position: relative;
}
.mv_box2{
  width: 78.125%;
  position: relative;
  z-index: 1;
}


/* MVテキスト */
.mv_txt{
  color: #fff;
}
.mv_txt_en{
  font-size: clamp(2rem, 0.4rem + 8vw, 10rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1.2em;
  white-space: nowrap;
}
.mv_txt_en p{
  letter-spacing: 0;
}
.mv_txt_ja{
  font-size:18px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 28px;
}
.circle_btn{
  width:9.3%;
  aspect-ratio:1;
  position: absolute;
  bottom: -4%;
  left: 5%;
}
.circle_btn.out{
  z-index: -1;
  filter: invert(1);
}
.circle_btn_inner{
  position: relative;
}
.circle_btn_inner:before{
  content: "";
  display: block;
  width: 17px;
  aspect-ratio:17 / 25;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.circle_btn_img{
  animation: rotation-r 10s linear infinite;
}
@keyframes rotation-r {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}


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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }
  .mv_inner:before{
    content: "";
    padding-top: 600px;
  }
  .mv_box1{
    padding-left: 3.7%;
    padding-top: 20%;
  }

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

  }
  .mv_txt_en{

  }
  .mv_txt_ja{
    font-size:20px;
  }
  .circle_btn{

  }
  .circle_btn_inner{

  }
  .circle_btn_img{

  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  .mv_inner:before{
    content: "";
    padding-top: 700px;
  }

  .mv_box1{
    padding-left: 3.7%;
    padding-top: 17%;
  }

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

  }
  .mv_txt_en{

  }
  .mv_txt_ja{

  }
  .circle_btn{

  }
  .circle_btn_inner{

  }
  .circle_btn_img{

  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
  .mv_inner:before{
    content: "";
    padding-top: 100vh;
  }

  .mv_box1{
    padding-left: 3.7%;
    padding-top: 7%;
  }

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

  }
  .mv_txt_en{

  }
  .mv_txt_ja{

  }
  .circle_btn{

  }
  .circle_btn_inner{

  }
  .circle_btn_img{

  }

}


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

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

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

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


@media (min-width:768px){

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 140px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

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


}

/*******************************
*　エステヘッダ-
********************************/
.header.esthe{
  background: #d9eaee;
  color: #000000;
}
.sub_header{
  padding: 16px
}
.sub_header_txt{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px solid #b3b3b3;
  padding-bottom: 7px;
}
.sub_header_h1{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-right: 9px;
}
.sub_header_en{
  font-size: 13px;
  font-weight: 700;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
}
@media (min-width:768px){
  .header.esthe .gnav .gnav_item a{
    color: #000;
  }
  .header.esthe .hdr_contact_btn{
    background: #fff;
    border: 1px solid #b3b3b3;
    color: #000;
  }
  .header.esthe .hdr_contact_btn:hover{
    background: #a2d1eb;
    border: 1px solid transparent;
  }
  .header.esthe .hdr_contact_btn:hover p:before{
    background-image:url(/system_panel/uploads/images/mail_wh.png);
  }
  .header.esthe .hdr_contact_btn p:before{
    background-image: url(/system_panel/uploads/images/mail_sky.png);
  }

  .sub_header{
    padding: 30px 30px
  }
  .sub_header_txt{

  }
  .sub_header_h1{
    font-size: 14px;
  }
  .sub_header_en{

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

  }
  .sub_header_txt{

  }
  .sub_header_h1{

  }
  .sub_header_en{

  }

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


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


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


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


}

/*******************************
*　ヘッダー飲食
********************************/
.body_foodAndBeverage .pagetop{
  display: none!important;
}

.sidebar.food{
  height: 100vh;
  background: #121212;
}
.sidebar.food .sidebar_bn{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  border-bottom: 1px solid #fff;
  height: 30%;
}
.sidebar.food .sidebar_bn.page_t{
  height: 10%;
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  text-align: center;

}
.sidebar.food .sidebar_bn.page_t:hover{
  color: #eee;
}

.sub_header.food{
  color: #fff;
  position: absolute;
  width: 100%;
  top: 65px;
  z-index: 4;
}

.scroll_food{
  position: absolute;
  left: 10.41%;
  bottom: 0;
  z-index: 2;
  height: 90px;
  color: #fff;
}
.scroll_food:before{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
.scroll_food:after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: #000;
  position: absolute;
  bottom: -100%;
  left: 0;
}
.scroll_food p{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 12.02px;
  font-weight: 700;
  font-family: "Cardo", serif;
  line-height: 1;
  padding-left: 10px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .scroll_food{
    height: 60px;
  }

  .sidebar.food{
    display: none;
  }

  .mv_inner{
    display: block;
  }
  .mv_txt_ja{
    white-space: initial;
    margin-top: 16px;
  }
  .mv_box1{
    width: 100%;
  }
  .mv_box2{
    margin-left: auto;
    margin-top: 27px;
  }

}
@media (min-width:768px){
  .scroll_food{
    height: 60px;
  }

  .sub_header.food{
    color: #fff;
    position: absolute;
    width: 100%;
    top: 100px;
  }
  .sidebar.food{
    height: 100vh;
    background: #121212;
    padding-top: 100px;
  }
  .sidebar.food .sidebar_bn{
    padding: 30px 10px;
    border-left: 1px solid #fff;
  }
  .sidebar.food img{
    width: auto;
  }
}
@media (min-width:1024px){
  .sidebar.food .sidebar_bn{
    padding: 15px 16px;
  }

  .sidebar.food img{
    width: 16px;
  }

}
@media (min-width:1200px){
  .scroll_food{
    height: 90px;
  }


  .sidebar.food .sidebar_bn{
    padding: 10px 8px;
  }

  .sidebar.food img{
    width: 16px;
  }
}
@media (min-width:1366px){
  .sidebar.food .sidebar_bn{
    padding: 16px 16px;
  }

  .sidebar.food img{
    width: 18px;
  }
}
@media (min-width:1440px){
  .sidebar.food .sidebar_bn{
    padding: 16px 16px;
  }

  .sidebar.food img{
    width: 20px;
  }

}
@media (min-width:1536px){
  .sidebar.food .sidebar_bn{
    padding: 11px 23px;
  }

  .sidebar.food img{
    width: 16px;
  }

}
@media (min-width:1720px){
  .sidebar.food .sidebar_bn{
    padding: 43px 27px;
  }
  .sidebar.food img{
    width: auto;
  }
}

/*******************************
*　フッター
********************************/

.footer{
  margin-top: 50px;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}


.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #fff;
  padding: 10px 0;
  margin-top: 40px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid var(--main-color);
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid var(--main-color);
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 50;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  position: relative;
  color: #fff;
}
.ftr_contact_img:before{
  padding-top: 303px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_inner{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt_en{
  color: #fff;
}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ftr_contact_box2_txt1{
  font-size: 28px;
  font-weight: 600;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr_contact_box2_txt1 a:hover{
  color: #ccc;
}
.ftr_contact_box2_txt1:before{
  content: "";
  display: block;
  width: 25px;
  ;
  aspect-ratio:25 / 32;
  ;
  background-image: url(/system_panel/uploads/images/phone.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.ftr_contact_box2_txt2{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ftr_contact_box3{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link_1{
  display: block;
  width: 75.54%;
  border: 1px solid #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  transition: all .2s;
  padding: 16px;
}
.link_1:hover{
  background: var(--main-color);
}
.link_1 p{
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}
.link_1 p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 27 / 20;
  background-image: url(/system_panel/uploads/images/mail_wh.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-right: 7px;
}

.ftr_contact_wrap.sub .link_1.web p.non-icon:before{
  display: none;
}

.ftr_1{
  background: var(--main-color);
  color: #fff;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_logo{

}
.ftr_add{

}
.ftr_1_add_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.25em;
}

.ftr_1_add_txt p{
  letter-spacing: 0.05em;
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_item1{
  padding-right: 10px;
  position: relative;
}
.ftr_add_item1:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #fff;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_add_item2{
  padding-left: 15px;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link p{

}
.ftr_link p:before{

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

}
@media (max-width:767px){
  .mv_img.img_fit:before{
    padding-top: calc(100vh - 64px - 183px - 27px);
  }
  body{
    padding-bottom: 56px;
  }

  .circle_btn{
    width: 15.3%;
  }

  .footer_fix{
    display: flex;
    transition: all .2s;
    transform: translateY(100%);
  }

  .ftr_contact_img:before{
    padding-top: 400px;
  }
  .ftr_contact_box1 .tt_en{
    font-size: 50px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
  .ftr_contact_box2{
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #fff;
  }
  .ftr_contact_box2_txt1{
    font-size: 30px;
  }
  .ftr_contact_box3{
    padding-top: 30px;
  }
  .link_1{
    width: 100%;
  }

  .ftr_1{
    padding: 50px 0 0;
  }
  .ftr_1_box1{
    justify-content: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add{
    width: 100%;
    text-align: center;
  }
  .ftr_add_item{
    display: block;
  }
  .ftr_add_item1:after{
    display: none;
  }

  .footer_fix.show{
    transform: translateY(0);
  }
  #chatbot-btn {
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show {
    transform: translateX(0);
  }
  .ftr_contact_box{
    top: 55%;
  }

  .ftr_contact_wrap.food .esthe_sub_box.food .link_1.web {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 350px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_inner{

  }
  .ftr_contact_box1{
    margin-bottom: 80px;
    ;
  }
  .ftr_contact_box1 .tt_en{
    font-size: 80px;
  }
  .ftr_contact_box2{
    width: 50%;
    position: relative;
  }
  .ftr_contact_box2:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_contact_box2_txt1{
    font-size: 30px;
  }
  .ftr_contact_box2_txt1:before{

  }
  .ftr_contact_box2_txt2{
  }
  .ftr_contact_box3{
    width: 50%;
  }
  .link_1{
    width: 92.54%;
    font-size: 16px;
  }

  .ftr_1{
    padding-top: 68px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 47.51%;
    justify-content: space-between;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1_add_txt{

  }
  .ftr_1_add_txt a:hover{
    color: #ccc;
  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_item1{

  }
  .ftr_add_item2{

  }
  .ftr_1_box2{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 46.69%;
  }
  .ftr_links{
    width: 150px;
  }
  .ftr_link{
    display: block;
  }
  .ftr_link:nth-child(n+2){
    margin-top: 17px;
  }
  .ftr_link:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #fff;
  }
  .ftr_link p{
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding-bottom: 5px;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio: 1;
    background-image: url(/system_panel/uploads/images/arr5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px;
  }
  .ftr_link:hover{
    color: #ccc;
  }

  .ftr_copy{
    margin-top: 73px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 400px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_inner{

  }
  .ftr_contact_box1{
    margin-bottom: 80px;
    ;
  }
  .ftr_contact_box1 .tt_en{
    font-size: 120px;
  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2_txt1{
    font-size: 40px;
  }
  .ftr_contact_box2_txt1:before{

  }
  .ftr_contact_box2_txt2{

  }
  .ftr_contact_box3{
    width: 50%;
  }
  .link_1{
    font-size: 18px;
    width: 75.54%;
  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 47.51%;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_1_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_item1{

  }
  .ftr_add_item2{

  }
  .ftr_1_box2{
    width: 51.69%;
    padding-top: 11px;
  }
  .ftr_links{
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 124px;
    background: #fff;
    position: absolute;
    top: 0;
    right: -10px;
    ;
    ;
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{

  }
  .ftr_link p{

  }
  .ftr_link p:before{

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

  }
  .ftr_contact_img:before{
    padding-top: 303px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_inner{

  }
  .ftr_contact_box1{
    width: 41.111%;
    position: relative;
    margin-bottom: 0;
  }
  .ftr_contact_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 160px;
    background: #fff;
    position: absolute;
    position: absolute;
    top: 50%;
    right:0;
    transform: translateY(-50%);
  }
  .ftr_contact_box1 .tt_en{
    font-size: 100px;
  }
  .ftr_contact_box2{
    width: 25.92%;
  }
  .ftr_contact_box2_txt1{
    font-size: 40px;
  }
  .ftr_contact_box2_txt1:before{

  }
  .ftr_contact_box2_txt2{

  }
  .ftr_contact_box3{
    width: 32.95%;
  }
  .link_1{
    width: 95.54%;
  }

  .ftr_1_box1{
    width: 34.51%;
  }
  .ftr_1_box2{
    width: 46.69%;
  }

  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 124px;
    background: #fff;
    position: absolute;
    top: 0;
    right: -16px;
    ;
  }

  .ftr_logo{
    margin-bottom: 0;
    padding-top: 17px;
  }
}
@media (min-width:1366px){
  .ftr_links:after{
    top: 0;
    right: -25px;
    ;
  }
}
@media (min-width:1440px){
  .ftr_contact_box1 .tt_en{
    font-size: 120px;
  }
  .link_1{
    width: 75.54%;
  }

  .ftr_1_box2{
    width: 44.69%;
  }

  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 124px;
    background: #fff;
    position: absolute;
    top: 25%;
    right: -38px;
    ;
    ;
    transform: translateY(-50%);
  }
}

@media (min-width:1536px){
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 124px;
    background: #fff;
    position: absolute;
    top: 50%;
    right: -38px;
    ;
    ;
    transform: translateY(-50%);
  }
}
@media (min-width:768px) and (max-width:1023px){
  .ftr_contact_wrap.food .esthe_sub_box.food .link_1.web,
  .ftr_contact_wrap.food .esthe_sub_box.food .link_1.contact{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
  }
}

/*******************************
*　フッターサブ
********************************/

.ftr_contact_wrap.sub{
  padding: 50px 0;
}
.ftr_contact_wrap.esthe{
  background: #d9eaee;
  font-family: "Noto Serif JP", serif;
}
.ftr_contact_wrap.sub .ftr_contact_box{
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin-top: 31px;
}
.ftr_contact_wrap.sub .esthetics_tt{
  color: #fff;
}
.ftr_contact_wrap.sub .ftr_contact_inner{
  margin-top: 30px;
}

.ftr_contact_wrap.sub .link_1{
  display: block;
  display: block;
  width: 100%;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  transition: all .2s;
}
.esthe_sub_box{
  background: #fff;
  padding: 30px 16px;
  border-radius: 10px;
}

.ftr_contact_wrap.sub .link_1.web{
  background: linear-gradient(158deg,rgba(95, 228, 186, 1) 0%, rgba(128, 221, 152, 1) 52%, rgba(146, 215, 125, 1) 100%);
}
.body_esthetics .ftr_contact_wrap.sub .link_1.contact{
  border-radius: 30px;
  background: linear-gradient(55deg,rgba(144, 182, 221, 1) 0%, rgba(132, 215, 235, 1) 100%);
}

.ftr_contact_wrap.sub .link_1:hover{
  transform: scale(1.05);
  color: #fff;
}
.ftr_contact_wrap.sub .link_1{
  background-size: 200% 100%;
  background-position: 0% 50%;
}
.ftr_contact_wrap.sub .ftr_contact_box2_txt2{
  font-size: 13px;
  font-weight: 500;
}
.ftr_contact_wrap.sub .ftr_contact_box2_txt1:before{
  width: 20px;
  margin-right: 6px;
  background-image: url(/system_panel/uploads/images/phone_bk.png);
}
.ftr_contact_sub_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border-bottom: 1px solid #d9d9d9;
  color: #000;
  padding-bottom: 15px;
}
.ftr_contact_wrap.sub .ftr_contact_sub_tt{
  font-family: "Noto Serif JP", serif;
}
.esthe_sub_box .ftr_contact_box2{
  color: #000;
}

.sns_info_box{
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}
.sns_info_box .content_desc_s{
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  line-height: 1.75em;
}
.sns_info_box .content_desc_s p{
  letter-spacing: 0.05em;
}

.ftr_contact_wrap.sub .link_1.web:hover{

}

.sns_info_item img{
  transition: all .2s;
}
.sns_info_item:hover img{
  transform: scale(1.05);
}

.ftr_contact_wrap sub.food{

}
.ftr_contact_wrap.food .esthetics_tt{
  color: #121212;
}
.ftr_contact_wrap.food .link_1.web,
.ftr_contact_wrap.sub .link_1.contact{
  border-radius: 0;
  background: #000000;
}
.ftr_contact_wrap.food .link_1.web{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 11px 0;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .ftr_contact_wrap.sub .link_1.web{
    margin-bottom: 20px;
  }

  .sns_info_box{
    display: block;
  }
  .sns_info_items{
    text-align: center;
    margin-top: 20px;
  }
}
@media (min-width:768px){
  .ftr_contact_wrap.esthe{
    padding: 50px 0px;
  }
  .ftr_contact_wrap.sub .ftr_contact_box2:after{
    display: none;
  }
  .ftr_contact_wrap.sub .ftr_contact_inner{
    align-items: center;
    justify-content: center;
  }

  .ftr_contact_wrap.sub .link_1.web,
  .ftr_contact_wrap.sub .link_1.contact{
    width: 100%;
    max-width: 280px;
  }
  .esthe_sub_box{
    padding: 32px 30px;
  }
  .ftr_contact_wrap.sub .ftr_contact_box2_txt1{
    font-size: 30px;
  }
  .ftr_contact_wrap.sub .ftr_contact_box2_txt2{
    font-size: 13px;
  }
  .ftr_contact_wrap.sub .ftr_contact_box2{
    width: auto;
    margin-top: 30px;
  }
  .ftr_esthe_item{
    margin: 0 15px;
  }

  .ftr_contact_sub_tt{
    font-size: 22px;
  }

  .sns_info_items{
    padding-top: 24px;
    margin-left: 20px;
  }

  .ftr_contact_wrap.food{
    padding-bottom: 80px;
  }

  .ftr_contact_wrap.food .link_1.web p:first-child{
    font-size: 18px;
  }
  .ftr_contact_wrap.food .link_1.web p.non-icon{
    font-size: 24px;
    margin-left: 10px;
  }
}
@media (min-width:1024px){
  .body_foodAndBeverage .footer{
    margin-top: 80px;
  }

  .ftr_contact_wrap.esthe{
    padding: 87px 0 110px;
  }
  .ftr_contact_wrap.sub .link_1.web{
    width: 100%;
    max-width: 280px;
  }
  .ftr_contact_wrap.food .link_1.web{
    max-width: 500px;
  }
  .ftr_contact_wrap.sub .link_1.contact{
    width: 100%;
    max-width: 240px;
  }
  .ftr_contact_wrap.sub .ftr_contact_box2{
    margin-top: 0;
  }

  .ftr_contact_sub_tt{
    font-size: 24px;
  }

  .ftr_contact_wrap.food{
    padding-bottom: 127px;
  }
  .ftr_contact_wrap.food .link_1.web p.non-icon{
    font-size: 24px;
    margin-left: 20px;
  }
  .ftr_contact_wrap.food .sns_info_box .content_desc_s{
    font-size: 16px;
  }
  .ftr_contact_wrap.food .sns_info_box .content_desc_s p{
    letter-spacing: 0.05em;
  }
}
@media (min-width:1200px){
  .esthe_sub_box{
    padding: 32px 61px 42px;
  }

}


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


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

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

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


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;
  border: 1px solid #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 200px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #fff;

  border-radius: 20px;
  color: #FFF;
  padding: 10px 10px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more.wh a{
  color: #fff;
  background: transparent;
}
.read_more.br a{
  background: #0d1e44;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more.insta a{
  font-family: "Noto Serif JP", serif;
}
.read_more.insta a:after{
  background-image: url(/system_panel/uploads/images/che.png);
  right:10px;
}
.read_more a:after{
  content: "";
  display: block;
  width: 22px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  display: flex;
  flex-wrap: wrap;
  align-items: anchor-center;
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: clamp(3.75rem, 2.75rem + 5vw, 8.75rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
  margin-right: 28px;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
}
.tt2_ja_txt{
  font-size: 20px;
  letter-spacing: 0.05em;
  display: inline-block;
  background: var(--main-color);
  color: #fff;
  padding: 4px 10px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

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

}


@media (max-width:374px){

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

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

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

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

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

  .tt2_ja_txt{
    font-size: 17px;
    margin-top: 16px;
  }

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

  .anchor{
    top: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 200px;
    font-size: 16px;
    padding: 10px 18px;
    margin: 5px 5px;
  }
  .read_more a:after{

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

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

  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 15px;
  }
  .tt2_ja_txt{
    font-size: 20px;
  }
  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }


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

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

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


}


@media (min-width:1366px){

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

  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }
  .tt2_ja_txt{
    font-size: 20px;

  }

  .swiper-pagination{
    position: static;
    margin-top: 5px;
  }
  .swiper-pagination-bullet{
    background-color: var(--main-color);
  }
  .swiper-pagination-bullet-active{
    background-color: var(--sub-color);
  }
}


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

}
.pg_home .section.sec1{
  position: relative;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 1920px;
  ;
  aspect-ratio:1920 / 677;
  background-image: url(/system_panel/uploads/images/sec1_bg2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position:absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec1:after{
  content: "";
  display: block;
  width: 1920px;
  ;
  aspect-ratio:1920 / 1292;
  background-image: url(/system_panel/uploads/images/sec1_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position:absolute;
  bottom: -44%;
  left: 50%;
  transform:translateX(-50%);
  z-index: -2;
}
.pg_home .section.sec2{
  padding-top: 0;
  position: relative;
  z-index: 4;
}
.home_sec2_outer{
  position: relative;
}
.home_sec2_outer{

}
.pg_home .section.sec3{
  position: relative;
  padding: 0;
}
/*.pg_home .section.sec3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  mix-blend-mode: difference;
  z-index: 1;
}*/
.pg_home .section.sec4{
  position: relative;
  z-index: 4;
}
.pg_home .section.sec5{
  background: #fff;
  position: relative;
  z-index: 3;
  padding-top: 0;
}
.pg_home .section.sec5:after{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -100px;
  z-index: -1;
}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    margin-top: 50px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 50px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-bottom: 120px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    margin-top: 200px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-bottom: 186px;
  }
  .pg_home .section.sec3{
    margin-top: 370px;
  }
  .pg_home .section.sec4{
    padding-top: 50px;
  }
  .pg_home .section.sec5{
    padding-top: 250px;
  }

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


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


}

/*メイン*/

.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  padding-top: 70px;
  color: #000;
}
.home_contents1_box1{
  width: 100%;
  padding-right: 40px;
  margin-top: 20px;
  order: 2;
}
.gjs-dashed .home_contents1_box1_item{
  width: 500px;
}
.home_contents1_box1_inner{
  display: flex;
  align-items: flex-end;
}
.home_contents1_box1_pages{
  margin-left: 13px;
}
.home_contents1_box1_pages .swiper-pagination{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-bottom: -1.5px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  width: 3px;
  height: 30px;
  margin:1.5px 0;
}
.swiper-pagination-bullet{
  background: #999999;
  border-radius: 0;

}
.swiper-pagination-bullet-active{
  background: #040d20;
}
.home_contents1_box1_items{

}
.home_contents1_box1_item{

}
.home_contents1_box1_inner .swiper-slide{
  width: 250px;
}
.home_contents1_box1_item_img:before{

}
.home_contents1_box2{
  width: 100%;
  order: 1;
}
.home_contents1_box2_tt{
  font-size: 22px;
  font-weight: 900;
  line-height: 1.666em;
}
.home_contents1_box2_tt p{
  letter-spacing: 0.05em;
}
.content_desc{
  font-size: 16px;
  font-weight: 700;
  line-height:2em;
  text-align: justify;
}
.home_contents1_box2 .content_desc{
  margin-top: 20px;
}

/*our bisiness*/
.home_contents2_wrap{
  position: relative;
  color: #fff;
  padding-top:50px;
}
.home_contents2_wrap:before{
  content: "";
  display: block;
  width: 1700px;
  aspect-ratio:1700 / 1257;
  background-image: url(/system_panel/uploads/images/ad.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top:0%;
  left: 1%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents2_box1{
  width: 100%;
  position: relative;
  z-index: 2;
}
.home_contents3_box1{
  width: 100%;
}
.home_contents3_box2{
  width: 100%;
}
.home_contents3_box3{
  width: 100%;
}
.home_contents2_box1_en{
  font-size: 30px;
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1;
}
.home_contents2_box1_en p{
  letter-spacing: 0;
}
.home_contents2_box1 .content_desc{
  font-size: 16px;
  line-height: 2.5em;
  margin-top: 20px;
}
.home_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-inline:4.6%;
  position: relative;
  z-index: 2;
}

.home_contents3_box1{
  margin-bottom: 10px;
}
.home_contents3_box2{
  margin-bottom: 10px;
}
.home_contents3_box3{

}
.home_contents3_box1 a:hover{

}
.home_contents3_wrap a:hover .home_contents3_img img{

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

.home_contents3_box_inner{
  width: 100%;
  position: relative;
}
.home_contents3_box1 .home_contents3_box_inner{

}
.home_contents3_box2 .home_contents3_box_inner{

}
.home_contents3_box3 .home_contents3_box_inner{

}
.home_contents3_box1 .home_contents3_img:before{
  padding-top: 94.33%;
}
.home_contents3_box2 .home_contents3_img:before{
  padding-top: 89.8%;
}
.home_contents3_box3 .home_contents3_img:before{
  padding-top: 92%;
}


/*.home_contents3_box2,
.home_contents3_box3 { perspective: 1100px; }
.home_contents3_box2 .home_contents3_img,
.home_contents3_box3 .home_contents3_img {
  transform: rotateY(-18deg);          342deg と同義だが補間が18°になる 
  transition: transform .6s ease;
  backface-visibility: hidden;
}
.home_contents3_box2 a:hover .home_contents3_img,
.home_contents3_box3 a:hover .home_contents3_img {
  transform: rotateY(0deg);            none ではなく 0deg にする 
}*/

/*.home_contents3_box2 a:hover .home_contents3_img,
.home_contents3_box3 a:hover .home_contents3_img {
  transition: none;
  transform: none;
}*/


.home_contents3_img{
  overflow: hidden;
  transition: all .2s;
}
.home_contents3_img img{
  transition: all .2s;
}
.home_contents3_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.home_contents3_box_desc{
  position: absolute;
  top: 50%;
  left: 16.72%;
  transform: translateY(-50%);
  z-index: 1;

  color: #fff;
}
.home_contents3_box1 .home_contents3_box_desc{
  width: 49.45%;
}
.home_contents3_box_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.home_contents3_box_text{
  font-weight: 700;
  letter-spacing: 0.05em;
}
.home_contents3_box1 .home_contents3_box_text{
  font-size: 24px;

}
.home_contents3_box2 .home_contents3_box_text{
  font-size: 20px;
}
.home_contents3_box3 .home_contents3_box_text{
  font-size: 20px;
}
.home_contents3_box_tt .circle{
  width: 60px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/circle_.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.home_contents3_box_tt .circle:before{
  content: "";
  display: block;

}
.content_desc_s{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
.content_desc_s p{
  letter-spacing: 0;
}

/*our feature*/
.home_contents4_wrap_inner{
  position: relative;
}
.en_tt{
  font-size: clamp(3.125rem, -0.625rem + 18.75vw, 21.875rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1;
  position: absolute;
  top: 134%;
  right: -11%;
  transform: translateY(-50%);
  white-space: nowrap;
  mix-blend-mode: difference;
  z-index: 3;                  /* 画像(1)・マスク(2)より上 */
  pointer-events: none;
}
.en_tt p{
  letter-spacing: 0;
}
.home_contents4_img{
  position: relative;
  z-index: 1;
}
.home_contents4_img:before{
  padding-top: 600px;
}
.home_contents4_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_contents4_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 2;
}
.home_contents4_box{

}
.home_contents4_box .home_contents2_box1_en{
  color: #fff;
}
.home_contents4_box_tt{
  font-size: 22px;
  font-weight: 900;
  margin-top: 20px;
}
.home_contents4_box_tt p{
  letter-spacing: 0.05em;
  display: inline-block;
  background: #fff;
  padding: 3px 0px 3px 8px;
}
.home_contents4_box_tt p:nth-child(n+2){
  margin-top: 24px;
}
.home_contents4_box .content_desc_s{
  color: #fff;
  margin-top: 30px;
}
.home_contents4_box .read_more{

}

/* 1) ブレンドの対象を「画像＋マスク」に限定（はみ出し防止） 
.pg_home .section.sec3 { isolation: isolate; }

 2) マスクをテキストの“背面”に下げる（画像より上、テキストより下） 
.home_contents4_img { position: relative; z-index: 1; }
.home_contents4_img:after { z-index: 2; }  もとの 3 → 2 に下げる */

/* 3) 文字だけ反転。テキストは最前面に置く */
.en_tt{
  position: absolute;
  color: #fff;        /* 基本色 */
  /* 反転合成 */

}

/* （念のため）画像自体は最背面のまま */
.home_contents4_img img{
  z-index: 1;
}


/*company*/
.home_contents5_wrap{

}
.tt_en{
  font-size: clamp(2rem, 0.525rem + 7.38vw, 9.375rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0;
  color: var(--main-color);
}
.home_contents6_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
  margin-top: 20px;
}
.home_contents6_wrap:after{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f2f2f2;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.home_contents6_box1{
  width: 49%;
  order: 1;
  padding-top: 50px;
}
.home_contents6_box1_img:before{
  padding-top: 83%;
}
.home_contents6_box2{
  width: 100%;
  order: 3;
  margin-top: 20px;
}
.home_contents6_box2_tt{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.9444em;
}
.home_contents6_box2 .content_desc_s{

}
.home_contents6_box2 .read_more{

}
.home_contents6_box3{
  width: 49%;
  order: 2;
}
.home_contents6_box3_img{

}
.home_contents6_box3_img:before{

  padding-top: 133.33%;
}

/*news*/
.home_contents7_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents7_box1{
  width: 100%;
}
.home_contents7_box1 .content_desc_s{
  margin-top: 20px;
}
.home_contents7_wrap .read_more{
  width: 100%;
}
.home_contents7_box2{
  width: 100%;
  margin-top: 30px;
}
.home_contents7_box2 .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.home_contents7_box2 .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.home_contents7_box2 .webgene-item:nth-child(n+3){
  margin-top:0;
  ;
}
.home_contents7_box2 .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #000000;
  padding: 14px 0;
  position: relative;
}
.home_contents7_box2 .webgene-item a:hover{
  color: #000;
}
.home_contents7_box2 .webgene-item a:hover:after{
  right: 10px;
  ;
}
.home_contents7_box2 .webgene-item a:after{
  content: "";
  display: block;
  width: 22px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/arr3.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  ;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.home_contents7_box2 .webgene-item:last-child a{
  border-bottom: 1px solid #000000;
}
.home_contents7_box2 .webgene-item .box1{
  width: 100%;
}
.home_contents7_box2 .webgene-item .box1 .img:before{
  padding-top: 75%;
}
.home_contents7_box2 .webgene-item .box2{
  width: 100%;
  margin-top: 10px;
}
.home_contents7_box2 .webgene-item .box2 .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_contents7_box2 .webgene-item .box2 .category{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #FFF;
  border: 1px solid #000;
  color: #000;
  padding: 2px 13px;
  margin: 5px 0;
  margin-right: 21px;
  border-radius: 15px;
}
.home_contents7_box2 .webgene-item .box2 .date{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Cardo";
  margin: 5px 0;
}
.home_contents7_box2 .webgene-item .box2 .title{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  ;
  line-height: 1.875em;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_contents3_wrap{
    margin-top: 30px;
  }
  .home_contents3_box1 .home_contents3_box_desc,
  .home_contents3_box2 .home_contents3_box_desc,
  .home_contents3_box3 .home_contents3_box_desc{
    width: 75.45%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  .home_contents3_box1 .home_contents3_img:before{
    padding-top: 600px;
  }
  .home_contents3_box_tt .circle{
    width: 40px;
  }

  .home_contents4_wrap{
    padding: 0 30px;
  }
  .en_tt{
    font-size: 30px;
    top: -2px;
    right: 7px;
  }

  .home_contents7_box2 .webgene-item a{
    padding: 14px 0 40px;
  }
  .home_contents7_box2 .webgene-item:nth-child(even) a{
    border-bottom: 1px solid #000000;
  }
  .home_contents7_box2 .webgene-item a:after{
    top: auto;
    bottom: 0;
    right: 0px;
  }
}
@media (min-width:768px){
  /*メイン*/

  .home_contents1_wrap{
    padding-top: 100px;
  }
  .home_contents1_box1{
    padding-right: 40px;
    margin-top: 30px;
  }
  .home_contents1_box1_items{

  }
  .home_contents1_box1_item{

  }
  .home_contents1_box1_inner .swiper-slide{
    width: 700px;
  }
  .home_contents1_box1_item_img:before{

  }
  .home_contents1_box2{

  }
  .home_contents1_box2_tt{
    font-size: 50px;
  }
  .content_desc{
    font-size: 18px;
  }
  .home_contents1_box2 .content_desc{
    margin-top: 36px;
  }

  /*our bisiness*/
  .home_contents2_wrap{
    padding-top: 100px;
  }
  .home_contents2_box1{

  }
  .home_contents2_box1_en{
    font-size: 40px;
  }
  .home_contents2_box1 .content_desc{
    font-size: 18px;
    margin-top: 30px;
  }
  .home_contents3_wrap{
    align-items: flex-end;
    padding-inline:5%;
    margin-top: 50px;
  }
  .home_contents3_box1{
    width: 100%;
    margin-bottom: 20px;
  }
  .home_contents3_box2{
    width: 49%;
    margin-bottom: 0;
  }
  .home_contents3_box3{
    width: 49%;
  }
  .home_contents3_box_inner{

  }
  .home_contents3_box1 .home_contents3_box_inner{

  }
  .home_contents3_box2 .home_contents3_box_inner{

  }
  .home_contents3_box3 .home_contents3_box_inner{

  }
  .home_contents3_box1 .home_contents3_img:before{

  }
  .home_contents3_box2 .home_contents3_img:before{
    padding-top: 600px;
  }
  .home_contents3_box3 .home_contents3_img:before{
    padding-top: 600px;
  }
  .home_contents3_box_desc{

  }
  .home_contents3_box1 .home_contents3_box_desc{
    width: 66.45%;
    left: 14.72%;
    top: 71%;
  }
  .home_contents3_box2 .home_contents3_box_desc{
    width: 72.45%;
    top: 71%;
  }
  .home_contents3_box3 .home_contents3_box_desc{
    width: 72.45%;
    top: 71%;
  }
  .home_contents3_box_tt{
    padding-bottom: 20px;
  }
  .home_contents3_box2 .home_contents3_box_tt,
  .home_contents3_box3 .home_contents3_box_tt{

  }
  .home_contents3_box_text{

  }
  .home_contents3_box1 .home_contents3_box_text{
    font-size: 50px;
  }
  .home_contents3_box2 .home_contents3_box_text{
    font-size: 30px;
  }
  .home_contents3_box3 .home_contents3_box_text{
    font-size: 30px;
  }
  .home_contents3_box_tt .circle{

  }
  .home_contents3_box2 .circle,
  .home_contents3_box3 .circle{
    width: 40px;
  }
  .content_desc_s{
    margin-top: 20px;
  }

  /*our feature*/
  .home_contents4_img{
    margin-left: var(--margin-for-device-side);
  }
  .en_tt{
    top: 76%;
    right: 5%;
    transform: translateY(-50%);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .home_contents4_img:before{
    padding-top: 830px;
  }
  .home_contents4_wrap{

  }
  .home_contents4_box{
    width: 50.51%;
  }
  .home_contents2_box1_en{
    font-size: 30px;
  }
  .home_contents4_box_tt{
    font-size: 30px;
    margin-top: 30px;
  }
  .home_contents4_box_tt p{

  }
  .home_contents4_box .content_desc_s{
    margin-top: 45px;
  }
  .home_contents4_box .read_more{
    margin-top: 50px;
  }

  /*company*/
  .home_contents5_wrap{

  }
  .tt_en{

  }
  .home_contents6_wrap{
    margin-top: 50px;
  }
  .home_contents6_box1{
    padding-top: 150px;
  }
  .home_contents6_box1_img:before{

  }
  .home_contents6_box2{
    margin-top: 30px;
  }
  .home_contents6_box2_tt{
    font-size: 28px;
  }
  .home_contents6_box2 .content_desc_s{

  }
  .home_contents6_box2 .read_more{

  }
  .home_contents6_box3{

  }
  .home_contents6_box3_img{

  }
  .home_contents6_box3_img:before{

  }

  /*news*/
  .home_contents7_wrap{

  }
  .home_contents7_box1{

  }
  .home_contents7_box1 .content_desc_s{
    margin-top: 40px;
  }
  .home_contents7_wrap .read_more{
    width: 100%;
    margin-top: 57px;
  }
  .home_contents7_box2{
    margin-top: 40px;
  }
  .home_contents7_box2 .webgene-blog{
    display: block;
    margin: 0
  }
  .home_contents7_box2 .webgene-item{
    width: 100%;
    padding: 0;
  }
  .home_contents7_box2 .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents7_box2 .webgene-item a{

    padding: 30px 20px;
  }
  .home_contents7_box2 .webgene-item .box1{
    width: 20.4%;
  }
  .home_contents7_box2 .webgene-item .box1 .img:before{

  }
  .home_contents7_box2 .webgene-item .box2{
    width: 74.5%;
    margin-top: 0;
  }
  .home_contents7_box2 .webgene-item .box2 .meta{

  }
  .home_contents7_box2 .webgene-item .box2 .category{

  }
  .home_contents7_box2 .webgene-item .box2 .date{

  }
  .home_contents7_box2 .webgene-item .box2 .title{
    font-size: 20px;
    padding-right: 38px;
  }
}
@media (min-width:1024px){
  .home_contents3_wrap{
    padding-inline:4.6%;
  }

  .en_tt{
    top: 103%;
    right: 2%;
  }

  /*new*/
  .home_contents7_box1{
    width: 25.98%;
  }
  .home_contents7_box2{
    width: 65.78%;
    padding-top: 18px;
    margin-top: 0;
  }
  .home_contents7_wrap .read_more{
    width: auto;
  }

}
@media (min-width:1200px){
  /*メイン*/

  .home_contents1_wrap{
    padding-top: 170px;
  }
  .home_contents1_box1{
    width: 42.765%;
    padding-right: 40px;
    padding-top: 28px;
    margin-top:0;
    order: 1;
  }
  .home_contents1_box1_items{

  }
  .home_contents1_box1_item{

  }
  .home_contents1_box1_inner{
    margin-left: var(--margin-for-device-side);
  }
  .home_contents1_box1_item_img:before{

  }
  .home_contents1_box1_inner .swiper-slide{
    width: 500px;
  }
  .home_contents1_box2{
    width: 55.26%;
    padding-left: 28px;
    order: 2;
  }
  .home_contents1_box2_tt{
    font-size: 50px;
    margin-right: -20px;
  }
  .content_desc{
    font-size: 20px;
  }
  .home_contents1_box2 .content_desc{
    margin-top: 48px;
  }

  /*our bisiness*/
  .home_contents2_wrap{
    padding-top: 200px;
  }
  .home_contents2_wrap:before{
    margin-left: 0;
    margin-right:0;
  }
  .home_contents2_box1{
    width: 49.01%;
    margin-left: auto;
    padding-left: 30px;
  }
  .home_contents3_box2{
    width: 28.5%;
    margin-left: -111px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
  }
  .home_contents3_box3{
    width: 28.52%;
    margin-left: -50px;
  }
  .home_contents2_box1_en{
    font-size: 50px;
  }
  .home_contents2_box1 .content_desc{
    font-size: 20px;
    margin-top: 39px;
  }
  .home_contents3_wrap{
    margin-top: -300px;
    padding-inline:2.6%;
  }
  .home_contents3_box1{
    width: 49.45%;
    margin-left: 20px;
    margin-bottom: 0;
  }
  .home_contents3_box2{
    width: 27.47%;
    margin-bottom: -42px;
  }
  .home_contents3_box3{
    width: 27.52%;
    margin-bottom: 68px;
  }
  .home_contents3_box_inner{

  }
  .home_contents3_box1 .home_contents3_box_inner{

  }
  .home_contents3_box2 .home_contents3_box_inner{

  }
  .home_contents3_box3 .home_contents3_box_inner{

  }
  .home_contents3_box1 .home_contents3_img:before{
    padding-top: 900px;
  }
  .home_contents3_box2 .home_contents3_img:before{
    padding-top: 500px;
  }
  .home_contents3_box3 .home_contents3_img:before{
    padding-top: 530px;
  }
  .home_contents3_box1 .home_contents3_img{
    transition: all .6s;
    transform: perspective(1100px) /* 深さ */ rotateY(8deg);
  }
  .home_contents3_box2 .home_contents3_img{
    transform   : perspective(1100px) rotateY(342deg);
  }
  .home_contents3_box3 .home_contents3_img{
    transform   : perspective(1100px) rotateY(342deg);
  }
  .home_contents3_box1 a:hover .home_contents3_img{
    transform: none;
  }
  .home_contents3_box2 a:hover .home_contents3_img{
    transform: none;
    transform: perspective(1100px) rotateY(360deg)
  }
  .home_contents3_box3 a:hover .home_contents3_img{
    transform: none;
    transform: perspective(1100px) rotateY(360deg)
  }
  .home_contents3_box_desc{
    width: 66.45%;
  }
  .home_contents3_box1 .home_contents3_box_desc{
    width: 65.45%;
  }
  .home_contents3_box2 .home_contents3_box_desc{
    width: 76.45%;
    top: 71%;
  }
  .home_contents3_box3 .home_contents3_box_desc{
    width: 72.45%;
    top: 65%;
  }
  .home_contents3_box_tt{
    padding-bottom: 30px;
  }
  .home_contents3_box2 .home_contents3_box_tt,
  .home_contents3_box3 .home_contents3_box_tt{
    padding-bottom: 20px;
  }
  .home_contents3_box_text{

  }
  .home_contents3_box1 .home_contents3_box_text{
    font-size: 50px;
  }
  .home_contents3_box2 .home_contents3_box_text{
    font-size: 30px;
  }
  .home_contents3_box3 .home_contents3_box_text{
    font-size: 30px;
  }
  .home_contents3_box_tt .circle{

  }
  .content_desc_s{
    margin-top: 26px;
  }
  .home_contents3_box2 .content_desc_s,
  .home_contents3_box3 .content_desc_s{
    margin-top: 20px;
  }

  /*our feature*/
  .home_contents4_img{
    margin-left: var(--margin-for-device-side);
    margin-right: 34px;
  }
  .en_tt{
    top: 103%;
    right: 2%;
  }
  .home_contents4_img:before{

  }
  .home_contents4_wrap{

  }
  .home_contents4_box{
    width: 36.51%;
  }
  .home_contents2_box1_en{

  }
  .home_contents4_box_tt{
    font-size: 36px;
    margin-top: 40px;
  }
  .home_contents4_box_tt p{

  }
  .home_contents4_box .content_desc_s{

  }

  /*company*/
  .home_contents5_wrap{
    position: relative;
    top: 134px;
  }
  .home_contents6_wrap:after{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f2f2f2;
    position: absolute;
    left: 40.78%;
    top: 22.125%;
    margin-left: 0;
    margin-right: 0;
    z-index: -1;
  }
  .tt_en{

  }
  .home_contents6_wrap{
    padding: 0;
    margin-top: 0;
  }
  .home_contents6_box1{
    width: 26.31%;
    padding-top: 264px;
    order: 1;
  }
  .home_contents6_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .home_contents6_box1_img:before{

  }
  .home_contents6_box2{
    width: 33.52%;
    padding-top: 304px;
    order: 2;
    margin-top:0;
  }
  .home_contents6_box2_tt{
    font-size: 30px;
  }
  .home_contents6_box2 .content_desc_s{
    margin-top: 50px;
  }
  .home_contents6_box2 .read_more{
    margin-top: 61px;
  }
  .home_contents6_box3{
    width: 26.31%;
    order: 3;
  }
  .home_contents6_box3_img{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_contents6_box3_img:before{

  }

  /*news*/
  .home_contents7_wrap{

  }
  .home_contents7_box1{
    width: 25.98%;
  }
  .home_contents7_box1 .content_desc_s{
    margin-top: 61px;
  }
  .home_contents7_box1 .read_more{

  }
  .home_contents7_box2{
    width: 65.78%;
    padding-top: 18px;
  }
  .home_contents7_box2 .webgene-blog{

  }
  .home_contents7_box2 .webgene-item{

  }
  .home_contents7_box2 .webgene-item a{
    padding: 37px 20px 40px;
  }
  .home_contents7_box2 .webgene-item .box1{
    padding-top: 5px;
  }
  .home_contents7_box2 .webgene-item .box1 .img:before{

  }
  .home_contents7_box2 .webgene-item .box2{

  }
  .home_contents7_box2 .webgene-item .box2 .meta{

  }
  .home_contents7_box2 .webgene-item .box2 .category{

  }
  .home_contents7_box2 .webgene-item .box2 .date{

  }
  .home_contents7_box2 .webgene-item .box2 .title{
    font-size: 24px;
  }

  .home_contents3_box3 .home_contents3_img:before{
    padding-top: 530px;
  }
}
@media (min-width:1300px){
  .home_contents3_box1 .home_contents3_img:before{
    padding-top: 700px;
  }
  .home_contents3_wrap{
    margin-top: -50px;
  }
}
@media (min-width:1470px){
  /*our bisiness*/
  .home_contents2_wrap{
    padding-top: 202px;
  }
  .home_contents1_box2_tt{
    font-size: 50px;
  }


  .home_contents3_wrap{
    margin-top: -250px;
  }

  .home_contents6_box2_tt{
    font-size: 36px;
  }
  .home_contents3_box1 .home_contents3_img:before{
    padding-top: 900px;
  }
}
@media (min-width:1536px){
  .home_contents2_wrap{
    padding-top:100px;
  }
  .home_contents3_wrap{
    margin-top: -250px;
  }

  .home_contents3_box3 .home_contents3_img:before{
    padding-top: 530px;
  }
}
@media (min-width:1720px){
  .home_contents2_wrap{
    padding-top: 202px;
  }
  .home_contents1_box2_tt{
    font-size: 72px;
  }

  .home_contents3_wrap{
    margin-top: -278px;
  }

  .home_contents3_box1 .home_contents3_box_text{
    font-size: 60px;
  }
  .home_contents3_box2 .home_contents3_box_text{
    font-size: 40px;
  }
  .home_contents3_box3 .home_contents3_box_text{
    font-size: 40px;
  }
  .home_contents3_box1 .home_contents3_img:before{
    padding-top: 94.33%;
  }
  .home_contents3_box2 .home_contents3_img:before{
    padding-top: 89.8%;
  }
  .home_contents3_box3 .home_contents3_img:before{
    padding-top: 92%;
  }



}




/*******************************
*　about
********************************/

/* セクション設定 */
.pg_about{
  position: relative;
}
.pg_about:after{
  content: "";
  display: block;
  width: 1920px;
  ;
  aspect-ratio:1920 / 1826;
  background-image: url(/system_panel/uploads/images/lo3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: -180px;
  left: 50%;
  transform:translateX(-50%);
}
.pg_about .section.sec1{
  position: relative;
  z-index: 1;
}
.pg_about .section.sec1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 1200;
  background-image: url(/system_panel/uploads/images/map.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: -60px;
  ;
  left: 50%;
  transform:translateX(-50%);
}
.pg_about .section.sec2{
  position: relative;
  z-index: 1;
}
.pg_about .section.sec3{
  position: relative;
  z-index: 1;
}
.pg_about .section.sec3:before{
  content: "";
  display: block;
  width: 899px;
  aspect-ratio:899 / 1109;
  background-image: url(/system_panel/uploads/images/lo2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  position: absolute;
  top: -176px;
  left: 5px;
}
.pg_about .section.sec4{
  position: relative;
  z-index: 1;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_about:after{
    width: 1000px;
  }
  .pg_about .section.sec3:before{
    width: 300px;
    top: -50px;
  }
  .pg_about .section.sec4{
    padding-top: 0;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec1:before{
    top: -100px;
  }
  .pg_about .section.sec2{
    padding-top: 200px;
  }
  .pg_about .section.sec3{
    padding-top: 107px;
  }
  .pg_about .section.sec4{
    padding-top: 102px;
  }

}
@media (min-width:1024px){
  .pg_about .section.sec1:before{
    top: -140px;
  }
  .pg_about .section.sec3{
    padding-top: 107px;
  }
  .pg_about .section.sec4{
    padding-top: 102px;
  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec1:before{
    top: -160px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec2{
    padding-top: 296px;
  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding-top: 102px;
  }

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


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


}

/* メイン部分 */

/*見出し*/
.about_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents1_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.about_contents1_wrap .home_contents1_box2_tt{
  line-height: 1.38em;
}
.about_contents1_wrap .home_contents4_box_tt{

}
.about_contents1_wrap .home_contents4_box_tt p{
  letter-spacing: 0.075em;
  background: var(--main-color);
  color: #fff;
  padding: 4px 0px 10px 8px;
}
.about_contents1_box1 .content_desc{

}
.about_contents1_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline:-5px;
  margin-top: 20px;
  ;
  position: relative;
  z-index: 1;
}
.about_contents1_box2_item{
  width: 50%;
  padding-inline:5px;
}
.about_contents1_box2_item:first-child{
  padding-top: 50px;
}
.about_contents1_box2_img:before{
  padding-top: 111.11%;
}

/*多角的な企業姿勢*/
.about_contents2_wrap{

}
.about_contents2_wrap .en_tt{
  position: relative;
  font-size: clamp(2rem, -0.6rem + 13vw, 15rem);
  position: relative;
  inset:auto;
  transform: none;
  writing-mode: horizontal-tb;
  pointer-events: auto;
}
.about_contents2_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}
.about_contents2_box:before{
  content: "";
  display: block;
  width: 100vw;
  ;
  height: 113%;
  background: var(--main-color);
  position: absolute;
  top: -56px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.about_contents2_box1{
  width: 100%;
  position: relative;
  z-index: 2;
}
.about_contents2_box1_img{

}
.about_contents2_box1_img:before{
  padding-top: 87.5%;
}
.about_contents2_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-top: 20px;
  ;
}
.about_contents2_box2_tt{
  font-size: 20px;
  font-weight: 900;
  line-height: 2.08em;
  color: #fff;
}
.about_contents2_box2 .content_desc{
  color: #fff;
  line-height: 2.5em;
}

/*強み*/
.about_contents3_items{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.about_contents3_item{
  width: 100%;
}
.about_contents3_item:nth-child(n+2){
  margin-top: 30px;
  ;
}
.about_contents3_item.type1{

}
.about_contents3_item.type2{

}
.about_contents3_item_type1_tt{
  font-size:18px;
  font-weight: 700;
}
.about_contents3_item_type1_tt span{
  font-size: 60px;
  font-family: "Cardo", serif;
  line-height: 1;
}
.about_contents3_item_type1_tt strong{
  font-size:20px;

  font-weight: 700;
}
.about_contents3_item_type1_tt em{
  font-size:28px;
  font-style: normal;
}
.about_contents3_item_inner{

}
.about_contents3_item.type1 .about_contents3_item_inner{

}
.about_contents3_item.type2 .about_contents3_item_inner{
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  background: #fff;
}
.about_contents3_item_inner .content_desc_s{

}
.about_contents3_item_img:before{
  padding-top: 48.38%;
}
.about_contents3_item_meta{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.about_contents3_item_num{
  font-size:40px;
  font-weight: 700;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 17px;
}
.about_contents3_item_tt{
  font-size:18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.about_contents3_item.type2 .content_desc_s{
  margin-top: 11px;
}

.about_contents3_msg{
  font-size: 18px;
  font-weight: 900;
  line-height: 2;
  text-align: center;
  margin-top: 60px;
}
.about_contents3_msg p{
  letter-spacing: 0.05em;
}

/*その先*/
.about_contents4_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents4_box1{
  width: 100%;
}
.about_contents4_box1_img:before{
  padding-top: 50%;
}
.about_contents4_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.about_contents4_box2_tt{
  display: flex;
  align-items: center;
  color: var(--main-color);
}
.about_contents4_box2_tt_en{
  font-size: 40px;
  font-weight: 700;
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0;
  margin-right: 15px;
}
.about_contents4_box2_tt_ja{
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.content_desc_s{

}
.about_contents4_box2 .read_more{

}

.about_contents1_wrap .home_contents4_box_tt p{
  margin-left: -8px;
}
@media (max-width:767px){
  .about_contents4_box2_tt{
    display: block;
  }
  .about_contents4_box2_tt_ja{
    font-size: 21px;
  }
  .pg_about .section.sec1 .home_contents4_box_tt p:nth-child(n+2){
    margin-top: 5px;
  }
}
@media (min-width:768px){
  /*見出し*/
  .about_contents1_wrap{

  }
  .about_contents1_box1{

  }
  .about_contents1_wrap .home_contents1_box2_tt{

  }
  .about_contents1_wrap .home_contents4_box_tt{

  }
  .about_contents1_box1 .content_desc{

  }
  .about_contents1_box2{
    margin-top: 30px;
    ;
  }
  .about_contents1_box2_item{

  }
  .about_contents1_box2_item:first-child{
    padding-top: 99px;
  }
  .about_contents1_box2_img:before{

  }

  /*多角的な企業姿勢*/
  .about_contents2_wrap{

  }
  .about_contents2_box{
    margin-top: 85px;
  }
  .about_contents2_box:before{
    height: 1180px;
    top: -130px;
  }
  .about_contents2_box1{

  }
  .about_contents2_box1_img{

  }
  .about_contents2_box1_img:before{

  }
  .about_contents2_box2{
    margin-top: 50px;
  }
  .about_contents2_box2_tt{
    width: 24.51%;
    font-size: 35px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .about_contents2_box2 .content_desc{
    width: 65.16%;
  }

  /*強み*/
  .about_contents3_items{
    margin-inline:-20px;
  }
  .about_contents3_item{
    width: 50%;
    padding-inline:20px;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_contents3_item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .about_contents3_item.type1{

  }
  .about_contents3_item.type2{

  }
  .about_contents3_item:nth-child(2){
    margin-top: 25px;
  }
  .about_contents3_item:nth-child(3),
  .about_contents3_item:nth-child(5){
    margin-top: -120px;
  }
  .about_contents3_item:nth-child(5){
    margin-top: -290px;
  }
  .about_contents3_item_type1_tt{
    font-size: 24px;
  }
  .about_contents3_item_type1_tt span{
    font-size: 100px;
  }
  .about_contents3_item_type1_tt strong{
    font-size: 30px;
  }
  .about_contents3_item_type1_tt em{
    font-size: 50px;
  }
  .about_contents3_item_inner{

  }
  .about_contents3_item.type1 .about_contents3_item_inner{

  }
  .about_contents3_item.type2 .about_contents3_item_inner{
    padding: 30px;
  }
  .about_contents3_item_inner .content_desc_s{

  }
  .about_contents3_item_img:before{

  }
  .about_contents3_item_meta{
    margin-top: 32px;
  }
  .about_contents3_item_num{
    font-size: 50px;
  }
  .about_contents3_item_tt{
    font-size: 22px;
  }
  .about_contents3_item_cates .read_more{
    justify-content: flex-start;
  }
  .about_contents3_item_cates .read_more a{
    width: 180px;
  }

  .about_contents3_msg{
    font-size: 30px;
    margin-top: 90px;
  }

  /*その先*/
  .about_contents4_wrap{

  }
  .about_contents4_box1{

  }
  .about_contents4_box1_img:before{

  }
  .about_contents4_box2{
    margin-top: 30px;
    ;
  }
  .about_contents4_box2_tt{

  }
  .about_contents4_box2_tt_en{
    font-size: 50px;
  }
  .about_contents4_box2_tt_ja{
    font-size: 28px;
  }
  .about_contents4_box2 .content_desc_s{
    margin-top: 50px;
  }
  .about_contents4_box2 .read_more{
    margin-top: 53px;
  }

}
@media (min-width:1024px){
  .about_contents2_box:before{
    height: 1350px;
    top: -130px;
  }

  .about_contents3_item:nth-child(3),
  .about_contents3_item:nth-child(5){
    margin-top: -250px;
  }
  .about_contents3_item:nth-child(5){
    margin-top: -417px;
  }

}
@media (min-width:1200px){
  /*見出し*/
  .about_contents1_wrap{

  }
  .about_contents1_box1{
    width: 39.8%;
  }
  .about_contents1_wrap .home_contents1_box2_tt{

  }
  .about_contents1_wrap .home_contents4_box_tt{
    font-size: 24px;
    margin-top: 48px;
  }
  .about_contents1_box1 .content_desc_s{
    margin-top: 45px;
    padding-right: 22px;
  }
  .about_contents1_box2{
    width: 60.5%;
    padding-top: 18px;
    margin-top: 0;
  }
  .about_contents1_box2_item{

  }
  .about_contents1_box2_item:first-child{
    padding-top: 99px;
  }
  .about_contents1_box2_img:before{

  }

  /*多角的な企業姿勢*/
  .about_contents2_wrap{

  }
  .about_contents2_box{
    position: relative;
    margin-top: 85px;
  }
  .about_contents2_box:before{
    content: "";
    display: block;
    width: 100vw;
    ;
    height: 650px;
    background: var(--main-color);
    position: absolute;
    top: -150px;
    left: 1.3%;
    margin-left: 0;
    margin-right: 0;
  }
  .about_contents2_box1{
    width: 39.67%;
    padding-top: 13px;
  }
  .about_contents2_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .about_contents2_box1_img:before{

  }
  .about_contents2_box2{
    width: 51.98%;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }
  .about_contents2_box2_tt{
    width: 24.51%;
    font-size: 48px;
    padding-top: 10px;
  }
  .about_contents2_box2 .content_desc{
    width: 65.16%;
    padding-inline: 19px 5px;
  }

  /*強み*/
  .about_contents3_items{

  }
  .about_contents3_item{

  }
  .about_contents3_item.type1{

  }
  .about_contents3_item.type2{

  }
  .about_contents3_item:nth-child(3),
  .about_contents3_item:nth-child(5){
    margin-top: -12rem;
  }
  .about_contents3_item:nth-child(5){
    margin-top: -20.5rem;
  }
  .about_contents3_item_type1_tt{
    font-size: 36px;
  }
  .about_contents3_item_type1_tt span{
    font-size: 150px;
  }
  .about_contents3_item_type1_tt strong{
    font-size: 48px;
  }
  .about_contents3_item_type1_tt em{
    font-size: 60px;
  }
  .about_contents3_item_inner{

  }
  .about_contents3_item.type1 .about_contents3_item_inner{

  }
  .about_contents3_item.type2 .about_contents3_item_inner{
    padding: 60px;
  }
  .about_contents3_item_inner .content_desc_s{

  }
  .about_contents3_item_img:before{

  }
  .about_contents3_item_meta{

  }
  .about_contents3_item_num{
    font-size: 72px;
  }
  .about_contents3_item_tt{
    font-size: 36px;
  }

  .about_contents3_msg{
    font-size: 36px;
    margin-top: 138px;
  }

  /*その先*/
  .about_contents4_wrap{

  }
  .about_contents4_box1{
    width: 42.76%;
    padding: 0 24px;
  }
  .about_contents4_box1_img:before{

  }
  .about_contents4_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .about_contents4_box2_tt{

  }
  .about_contents4_box2_tt_en{
    font-size: 50px;
  }
  .about_contents4_box2_tt_ja{
    font-size: 30px;
  }
  .content_desc_s{

  }
  .about_contents4_box2 .read_more{

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


  .about_contents2_box:before{
    height: 760px;
    top: -180px;
  }

  .about_contents3_item:nth-child(3),
  .about_contents3_item:nth-child(5){
    margin-top: -19rem;
  }
  .about_contents3_item:nth-child(5){
    margin-top: -24rem;
  }

  .about_contents3_msg{
    font-size: 40px;
  }

  .about_contents4_box2_tt_en{
    font-size: 60px;
  }

}
@media (min-width:1720px){
  .about_contents1_box2{
    margin-right: -121px;
  }

  .about_contents2_box:before{
    height: 760px;
    top: -180px;
  }
  .about_contents2_wrap .en_tt{
    margin-left: -121px;
  }

  .msg_dummy_box p{
    left: -7%;
  }

}



/*******************************
*　運送
********************************/

/* セクション設定 */
.pg_logistics{

}
.pg_logistics .section.sec1{

}
.pg_logistics .section.sec2{

}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_logistics{

  }
  .pg_logistics .section.sec1{

  }
  .pg_logistics .section.sec2{
    padding-top: 131px;
  }
  .pg_logistics .section.sec3{
    padding-top: 100px;
  }
  .pg_logistics .section.sec4{
    padding-top: 100px;
  }

}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_logistics{

  }
  .pg_logistics .section.sec1{

  }
  .pg_logistics .section.sec2{
    padding-top: 131px;
  }
  .pg_logistics .section.sec3{
    padding-top: 120px;
  }
  .pg_logistics .section.sec4{
    padding-top: 120px;
  }

}
@media (min-width:1200px){
  /* セクション設定 */
  .pg_logistics{

  }
  .pg_logistics .section.sec1{

  }
  .pg_logistics .section.sec2{
    padding-top: 131px;
  }
  .pg_logistics .section.sec3{
    padding-top: 196px;
  }
  .pg_logistics .section.sec4{
    padding-top: 190px;
  }

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


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


}

/* メイン部分 */

.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.page_hdr_wrap.logistics{
  position: relative;
}
.page_hdr_wrap.logistics:before{
  content: "";
  display: block;
  width:1920px;
  ;
  aspect-ratio:1920 / 677;
  background-image: url(/system_panel/uploads/images/lo.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 67%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 0;
}
.page_hdr_box1{
  width: 49%;
  order: 2;
  position: relative;
  z-index: 2;
  position: relative;
  isolation: isolate; /* ← これを追加！ */
  z-index: 2;
  background: transparent;
}
.page_hdr_box1::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 0;                /* 画像より後ろにしたい場合は画像の z と調整 */
}
.page_hdr_box1_img{

}
.page_hdr_box1_img {
  position: relative;
  z-index: 1;           /* 画像を後ろに */
  overflow: visible;
}
.page_hdr_box1_img:before{

}
/*.cl_txt{
  font-size: clamp(3.75rem, 2.75rem + 5vw, 8.75rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  mix-blend-mode: difference;
  line-height: 1;
  position: relative;
  color: #fff;
  position: absolute;
  left: 0;
  bottom: -30px;
  pointer-events: none; 
  z-index: 3;  
}*/
.cl_txt {
  position: absolute;
  left: 0;
  bottom: -27px;       /* かぶせ量は調整 */
  font-size: clamp(3.75rem, 2.75rem + 5vw, 8.75rem);
  font-family: "Cardo", serif;
  line-height: 1;
  color: #fff;                  /* difference の元色は白推奨 */
  mix-blend-mode: difference;   /* 画像上→反転、白地上→黒になる */
  z-index: 2;
  pointer-events: none;

}
.cl_txt p{
  letter-spacing: 0;
}
.page_hdr_box2{
  width: 100%;
  order: 1;
  margin-bottom: 30px;
  ;
  position: relative;
  z-index: 1;
}
.page_hdr_box2 .home_contents1_box2_tt{
  line-height: 1.5em;
}
.page_hdr_box2 .content_desc_s{
  margin-top: 20px;
}
.page_hdr_box3{
  width: 49%;
  order: 3;
  position: relative;
  z-index: 1;
}
.page_hdr_box3_img{

}
.page_hdr_box3_img:before{
  padding-top: 157.89%;
}

/*サービス*/
.logistics_contents1_wrap{
  position: relative;
}
.logistics_contents1_wrap:before{
  content: "";
  display: block;
  width:1720px;
  ;
  height: 524px;
  aspect-ratio:1720 / 1124;
  background-image: url(/system_panel/uploads/images/bg_japan.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 60%;
  left: 0;
  transform: translateY(-50%);
  z-index: 0;
}
.logistics_contents1_hdr{
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  color: #fff;
}
.logistics_contents1_hdr .home_contents2_box1_en{

}
.logistics_contents1_hdr .content_desc_s{

}
.logistics_contents1_box{
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.logistics_contents1_box_tt{
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: #fff;
}
.logistics_contents1_box_tt:before{
  content: "";
  display: block;
  width: 8px;
  aspect-ratio:1;
  background: #fff;
  border-radius: 50%;
  margin-right: 8px;
}
.logistics_contents1_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 19px;
}
.logistics_contents1_item{
  width: 100%;
}
.logistics_contents1_item:nth-child(n+2){
  margin-top: 7px;
  ;
}
.logistics_contents1_item_inner{
  color: var(--main-color);
  background-image: url(/system_panel/uploads/images/grd.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 42px 0;
}
.logistics_contents1_item_txt1{
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.logistics_contents1_item_txt2{
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

/*強み*/
.logistics_contents2_items{

}
.logistics_contents2_item{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  position: relative;
}
.logistics_contents2_item:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  ;
  background: #f2f2f2;
  position: absolute;
  top: 20px;
  ;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.logistics_contents2_item:nth-child(n+2){
  margin-top: 50px;
}
.logistics_contents2_box1{
  width: 100%;
  order: 1;
  position: relative;
  z-index: 1;
}
.logistics_contents2_box1_img{

}
.logistics_contents2_box1_img:before{
  padding-top: 66.66%;
}
.logistics_contents2_box2{
  width: 100%;
  order: 2;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.logistics_contents2_box2_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logistics_contents2_box2_text{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.05em;
}
.logistics_contents2_box2_tt_num{
  font-size: clamp(3.125rem, 1.75rem + 6.88vw, 10rem);
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Cardo", serif;
  line-height: 1;
  color: rgba(13,30,68,0.1);
}
.logistics_contents2_box2 .content_desc_s{

}

/*流れ*/
.logistics_contents3_items{

}
.logistics_contents3_item{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0px 0px 16px 4px rgba(0, 0, 0, 0.05);
  border-left: 3px solid var(--main-color);
  padding: 30px 16px;
  overflow: hidden;
}
.logistics_contents3_item:nth-child(n+2){
  margin-top: 40px
}
.logistics_contents3_box1{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.logistics_contents3_box1_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.logistics_contents3_box1_num{
  font-size: 24px;
  font-weight: 700;
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0;
}
.logistics_contents3_box1_txt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.logistics_contents3_box2{
  width: 100%;
}
.logistics_contents3_box2 .content_desc_s{

}
.logistics_contents3_box2_contact{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 30px;
}
.logistics_contents3_box2_phone{
  text-align: center;
}
.logistics_contents3_box2_contact .ftr_contact_box2_txt1{
  font-weight: 700;
}
.logistics_contents3_box2_contact .ftr_contact_box2_txt1:before{
  background-image: url(/system_panel/uploads/images/phone2.png);
}
.logistics_contents3_box2_contact .ftr_contact_box2_txt2{

}
.logistics_contents3_box2_contact .link_1{
  border: 1px solid var(--main-color);
  color: #000;
}
.logistics_contents3_box2_contact .link_1 p{
  letter-spacing: 0;
}
.logistics_contents3_box2_contact .link_1:hover{
  color: #fff;
}
.logistics_contents3_box2_contact .link_1 p:before{
  background-image: url(/system_panel/uploads/images/mail2.png);
}
.logistics_contents3_box2_contact .link_1:hover p:before{
  background-image:url(/system_panel/uploads/images/mail2_wh.png);
}

.ftr_contact_wrap.sub .link_1.web p:first-child:before{
  background-image: url(/system_panel/uploads/images/chalender.png);
}

.msg_dummy_box{
  position: absolute;
  width: 100vw;
  height: 650px;
  background: var(--main-color);
  position: absolute;
  top: -150px;
  left: 1.3%;
  margin-left: 0;
  margin-right: 0;
}
.msg_dummy_box p{
  mix-blend-mode: difference;
  color: #fff;
  font-size: 120px;
  position: absolute;
  left: 0;
  top: -188px;
  font-size: clamp(3.125rem, 0.75rem + 11.88vw, 15rem);
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 500;
  z-index: 0;
}
@media (max-width:767px){
  .pg_logistics .section.sec2{
    background: #0c1e44;
  }
  .logistics_contents1_wrap{

  }
  .logistics_contents1_wrap:before{
    width: 450px;
    aspect-ratio:601 / 616;
    height: 345px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    left:auto;
    top: 50%;
    background-image: url(/system_panel/uploads/images/bg_japan_sp2.jpg);
    background-size: cover;
    top: 0;
    transform: none;
  }

  .logistics_contents2_item{
    padding-bottom: 16px;
  }
  .logistics_contents2_item:before{
    width: 100vw;
    left: auto;
  }
  .logistics_contents2_item:nth-child(n+2){
    margin-top: 70px;
  }

  .logistics_contents3_box1_num{
    margin-right: 16px;
  }
  .logistics_contents3_box2_contact{
    justify-content: center;
  }
  .logistics_contents3_box2_contact .link_1{
    margin-top: 30px;
  }
  .logistics_contents3_box2{
    border-top: 1px solid #f2f2f2;
    margin-top: 20px;
  }

  .msg_dummy_box{
    top: 0;
  }
  .msg_dummy_box p{
    top: -87px;
  }
}
@media (min-width:768px){
  .page_hdr_wrap{

  }
  .page_hdr_box1{

  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img:before{

  }
  .cl_txt{
    /*    margin-top: -30px;*/
    left: 45px;
    bottom: -47px;
  }
  .page_hdr_box2{
    margin-bottom: 50px;
    ;
  }
  .page_hdr_box2 .home_contents1_box2_tt{
    font-size: 32px;
  }
  .page_hdr_box2 .content_desc_s{
    margin-top: 47px;
  }
  .page_hdr_box3{

  }
  .page_hdr_box3_img{

  }
  .page_hdr_box3_img:before{

  }

  /*サービス*/
  .logistics_contents1_wrap{
    padding:30px;
  }
  .logistics_contents1_wrap:before{
    height:800px;
    height: 300px;
    top: 50%;
  }
  .logistics_contents1_hdr{
    align-items: center;
  }
  .logistics_contents1_hdr .home_contents2_box1_en{

  }
  .logistics_contents1_hdr .content_desc_s{
    padding-left: 57px;
    padding-top: 10px;
  }
  .logistics_contents1_box{
    margin-top: 50px;
  }
  .logistics_contents1_box_tt{
    font-size: 18px;
  }
  .logistics_contents1_items{
    margin-inline:-3.5px;
  }
  .logistics_contents1_item{
    width: 50%;
    padding-inline:3.5px;
  }
  .logistics_contents1_item:nth-child(n+2){
    margin-top:0;
    ;
  }
  .logistics_contents1_item:nth-child(n+3){
    margin-top: 7px;
    ;
  }
  .logistics_contents1_item_inner{
    height: 100%;
  }
  .logistics_contents1_item_txt1{
    font-size: 18px;
  }
  .logistics_contents1_item_txt2{

  }

  /*強み*/
  .logistics_contents2_items{
    margin-top: 60px;
  }
  .logistics_contents2_item{
    padding: 0 40px;
  }
  .logistics_contents2_item:before{
    height: 100%;
    top: 40px;
    left: auto;
  }
  .logistics_contents2_item:nth-child(n+2){
    margin-top: 80px;
  }
  .logistics_contents2_box1{

  }
  .logistics_contents2_box1_img{

  }
  .logistics_contents2_box1_img:before{

  }
  .logistics_contents2_box2{
    margin-top: 30px;
  }
  .logistics_contents2_box2_tt{

  }
  .logistics_contents2_box2_text{
    font-size: 28px;
    padding-top: 25px;
  }
  .logistics_contents2_box2_tt_num{

  }
  .logistics_contents2_box2 .content_desc_s{
    margin-top: 30px;
  }

  /*流れ*/
  .logistics_contents3_items{

  }
  .logistics_contents3_item{
    padding: 30px 16px;
  }
  .logistics_contents3_item:nth-child(n+2){
    margin-top: 40px;
  }
  .logistics_contents3_box1{
    width: 35%;
    position: relative;
  }
  .logistics_contents3_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 123%;
    background: #f2f2f2;
    position: absolute;
    top: 53%;
    right:0;
    transform: translateY(-50%);
  }
  .logistics_contents3_box1_tt{
    display: block;
  }
  .logistics_contents3_box1_num{
    font-size: 30px;
    margin-right: 22px;
  }
  .logistics_contents3_box1_txt{
    font-size: 22px;
  }
  .logistics_contents3_box2{
    width: 61.51%;
    padding-left: 11px;
  }
  .logistics_contents3_box2 .content_desc_s{
    margin-top: 0;
  }
  .logistics_contents3_box2_contact{

  }
  .logistics_contents3_box2_phone{
    margin-right: 46px;
  }
  .logistics_contents3_box2_contact .ftr_contact_box2_txt1{

  }
  .logistics_contents3_box2_contact .ftr_contact_box2_txt2{

  }
  .logistics_contents3_box2_contact .link_1{
    margin-top: 20px;
  }

  .logistics_contents3_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
  }
  .logistics_contents3_box1 {
    width: 36%;
  }
  .msg_dummy_box{
    top: -100px;
  }
  .msg_dummy_box p{
    top: -91px;
  }
}
@media (min-width:1024px){
  .page_hdr_box2 .home_contents1_box2_tt{
    font-size: 50px;
  }
  .cl_txt{
    margin-top: -50px;
  }

  .logistics_contents1_hdr .home_contents2_box1_en{
    font-size: 40px;
  }
  .logistics_contents1_hdr .content_desc_s{
    padding-left: 0;
  }
  .logistics_contents1_wrap:before{
    height:700px;
    height: 400px;
    top: 50%;
  }

  .logistics_contents2_item{
    min-height: 1000px;
  }
  .logistics_contents2_item:before{
    height: 100%;
    top: 40px;
    left: 0;
    margin-left: 0;
    margin-right:0;
  }

  .logistics_contents3_box1_tt{
    display: flex;
  }
  .logistics_contents3_box1_txt{
    font-size: 22px;
  }

  .logistics_contents3_box1:after{
    content: "";
    display: block;
    width: 1px;
    height: 123%;
  }
  .logistics_contents3_box1 {
    width: 37%;
  }
  .msg_dummy_box{
    top: -100px;
  }
  .msg_dummy_box p{
    top: -100px;
  }
}
@media (min-width:1200px){
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    width: 26.31%;
    order: 1;
    padding-top: 16px;
  }
  .page_hdr_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .page_hdr_box1_img:before{

  }
  .cl_txt{
    /*    margin-top: -50px;*/
  }
  .page_hdr_box2{
    width: 50%;
    order: 2;
    margin-bottom: 0;
  }
  .page_hdr_box2 .home_contents1_box2_tt{
    font-size: 50px;
  }
  .page_hdr_box2 .content_desc_s{

  }
  .page_hdr_box3{
    width: 11.84%;
    order: 3;
    padding-top: 16px;
  }
  .page_hdr_box3_img{
    margin-right: var(--margin-for-device-side-w);
  }
  .page_hdr_box3_img:before{

  }

  /*サービス*/
  .logistics_contents1_wrap{
    padding:30px 0 30px 100px;
  }
  .logistics_contents1_wrap:before{
    height: 524px;
    height: 400px;
    top: 60%;
  }
  .logistics_contents1_hdr{

  }
  .logistics_contents1_hdr .home_contents2_box1_en{
    font-size: 50px;
  }
  .logistics_contents1_hdr .content_desc_s{
    padding-left: 57px;
  }
  .logistics_contents1_box{

  }
  .logistics_contents1_box_tt{
    font-size: 20px;
  }
  .logistics_contents1_items{

  }
  .logistics_contents1_item{
    width: 25%;
  }
  .logistics_contents1_item:nth-child(n+3){
    margin-top: 0;
  }
  .logistics_contents1_item_inner{

  }
  .logistics_contents1_item_txt1{
    font-size: 20px;
  }
  .logistics_contents1_item_txt2{

  }

  /*強み*/
  .logistics_contents2_items{
    margin-top: 73px;
  }
  .logistics_contents2_item{
    padding: 0 80px;
    min-height: 430px;
  }
  .logistics_contents2_item:before{
    width: 100%;
    height: 400px;
    top: 85px;
  }
  .logistics_contents2_item:nth-child(n+2){
    margin-top: 140px;
  }
  .logistics_contents2_item:nth-child(odd) .logistics_contents2_box1{
    order: 1;
  }
  .logistics_contents2_item:nth-child(odd) .logistics_contents2_box2{
    order: 2;
  }
  .logistics_contents2_item:nth-child(even) .logistics_contents2_box1{
    order: 2;
  }
  .logistics_contents2_item:nth-child(even) .logistics_contents2_box2{
    order: 1;
  }
  .logistics_contents2_box1{
    width: 44.11%;
    padding-top: 20px;
  }
  .logistics_contents2_box1_img{

  }
  .logistics_contents2_box1_img:before{

  }
  .logistics_contents2_box2{
    width: 50%;
    margin-top:0;
  }
  .logistics_contents2_box2_tt{

  }
  .logistics_contents2_box2_text{
    font-size: 24px;
  }
  .logistics_contents2_box2_tt_num{

  }
  .logistics_contents2_box2 .content_desc_s{
    margin-top: -5px;
  }

  /*流れ*/
  .logistics_contents3_items{

  }
  .logistics_contents3_item{
    padding: 46px 20px 60px 56px;
  }
  .logistics_contents3_box1{
    width: 35%;
  }
  .logistics_contents3_box1_tt{

  }
  .logistics_contents3_box1_num{
    font-size: 36px;
  }
  .logistics_contents3_box1_txt{
    font-size: 24px;
  }
  .logistics_contents3_box2{

  }
  .logistics_contents3_box2 .content_desc_s{

  }
  .logistics_contents3_box2_contact{

  }
  .logistics_contents3_box2_phone{
    margin-right: 16px;
  }
  .logistics_contents3_box2_contact .ftr_contact_box2_txt1{

  }
  .logistics_contents3_box2_contact .ftr_contact_box2_txt2{

  }
  .logistics_contents3_box2_contact .link_1{
    width: 340px;
    margin-top: 0;
  }

  .msg_dummy_box{
    top: -150px;
  }
  .msg_dummy_box p{
    top: -100px;
  }
}
@media (min-width:1470px){
  .cl_txt{
    margin-top: -81px;
  }
  .page_hdr_box2 .home_contents1_box2_tt{
    font-size: 60px;
  }

  .logistics_contents2_item{
    min-height: inherit;
  }
  .logistics_contents2_item:before{
    height: 400px;
    top: 80px;
  }
  .logistics_contents2_box2_text{
    font-size: 30px;
  }



  .logistics_contents3_item{
    padding: 46px 57px 60px 56px;
  }
  .logistics_contents3_box2_contact .link_1{
    width: 380px;
  }
  .logistics_contents3_box1_txt{
    font-size: 30px;
  }
  .logistics_contents3_box2_phone{
    margin-right: 46px;
  }

  .msg_dummy_box p{
    top: -150px;
  }
}
@media (min-width:1720px){
  .cl_txt{
    /*    margin-top: -81px;
        margin-left: -158px;*/
  }

  .logistics_contents2_item:before{
    height: 400px;
    top: 100px;
  }

  .msg_dummy_box p{
    top: -188px;
    left: -7%;
  }
}




@media (min-width:768px) and (max-width:1199px){
  .logistics_contents1_wrap:before{
    width: 1000px;
    height: 500px;
    background-image: url(/system_panel/uploads/images/bg3_japan.jpg);
  }

}
@media (min-width:1200px) and (max-width:1535px){
  .logistics_contents1_wrap:before{
    width: 1450px;
    height: 500px;
    /*     background-image: url(/system_panel/uploads/images/bg3_japan.jpg);*/
  }
}

/*******************************
*　エステ
********************************/

/* mv */
.sub_mv{
  padding-left: 10.41%;
  padding-top: 20px;
  position: relative;
}
.sub_mv:before{
  content: "";
  display: block;
  width: 1720px;
  aspect-ratio:1720 / 1320;
  background-image: url(/system_panel/uploads/images/bjk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 410px;
  right: 10.41%;
}
.sub_mv_inner{
  position: relative;
  z-index: 1;
}
.sub_mv_left{
  width: 22.89%;
  position: absolute;
  left: -2%;
  top: 0;
  z-index: 2;
}
.sub_mv_logo{

}
.sub_mv_txt{
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  font-family: "Noto Serif JP", serif;
  margin-top:30px;
}
.sub_mv_txt_p{
  background: #fff;
  margin: 0 14px;
  line-height: 1.2em;
  padding: 12px 0;
}
.sub_mv_txt_p1{
  padding: 15px 8px;
}
.sub_mv_txt_p2{

}
.sub_mv_right{
  padding-top: 110px;
}
.sub_mv_img:before{
  padding-top: 50vh;
}
.sub_mv_img img{
  border-radius: 50px 0 0 50px;
}

/*セクション*/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}

.body_esthetics .logistics_contents1_item_inner{
  background: #fff;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .sub_mv:before{
    width: 1450px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    right: 0;
    top: 50vh;
  }
  .sub_mv_left{
    width: 100%;
  }
  .sub_mv_right{
    padding-top: 165px;
  }
  .sub_mv_logo{
    width: 170px;
  }
  .sub_mv_txt{
    margin-top: 10px;
  }
  .sub_mv_txt_p{
    padding: 6px 7px;
    margin: 5px 10px 5px 0;
  }
  .sub_mv_txt_p1{
    font-size: 12px;
  }
  .sub_mv_txt_p2{
    font-size: 20px;
  }
  .sub_mv_txt_p{
    writing-mode: vertical-rl;
  }

  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2{
    margin-top: 0;
    text-align: left;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img{
    width: 200px;
    margin: 0 auto;
  }
}
@media (min-width:768px){
  /* mv */
  .sub_mv{
    padding-left: 10.41%;
    padding-top: 20px;
  }
  .sub_mv:before{
    top: 300px;
  }
  .sub_mv_inner{

  }
  .sub_mv_left{

  }
  .sub_mv_logo{

  }
  .sub_mv_txt{
    margin-top: 59px;
  }
  .sub_mv_txt_p{
    display: inline-block;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .sub_mv_txt_p1{
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .sub_mv_txt_p2{
    font-size:24px;
    font-weight: 600;
    letter-spacing: 0.1em;
  }
  .sub_mv_right{
    padding-top: 60px;
  }
  .sub_mv_img:before{
    padding-top: 400px;
  }

  /*セクション*/
  .pg_esthetics{
    font-family: "Noto Serif JP", serif;
  }
  .pg_esthetics .section.sec1{
    padding-top: 80px;
  }
  .pg_esthetics .section.sec2{
    padding-top: 200px;
  }
  .pg_esthetics .section.sec3{
    padding-top: 92px;
  }
  .pg_esthetics .section.sec4{
    padding-top: 108px;
  }
  .pg_esthetics .section.sec5{
    padding-top: 93px;
  }
  .pg_esthetics .section.sec6{
    padding-top: 108px;
  }
  .pg_esthetics .section.sec7{
    padding-top: 90px;
  }

}
@media (min-width:1024px){
  /* mv */
  .sub_mv{
    padding-top: 50px;
  }
  .sub_mv:before{
    top: 350px;
  }
  .sub_mv_inner{

  }
  .sub_mv_left{

  }
  .sub_mv_logo{

  }
  .sub_mv_txt{
    margin-top: 59px;
  }
  .sub_mv_txt_p{

  }
  .sub_mv_txt_p1{
    font-size: 16px;
  }
  .sub_mv_txt_p2{
    font-size: 30px;
  }
  .sub_mv_right{

  }
  .sub_mv_img:before{
    padding-top: 500px;
  }

}
@media (min-width:1200px){
  /* mv */
  .sub_mv{

  }
  .sub_mv:before{
    top: 410px;
  }
  .sub_mv_inner{

  }
  .sub_mv_left{

  }
  .sub_mv_logo{

  }
  .sub_mv_txt{

  }
  .sub_mv_txt_p{

  }
  .sub_mv_txt_p1{

  }
  .sub_mv_txt_p2{
    font-size: 40px;
  }
  .sub_mv_right{

  }
  .sub_mv_img:before{
    padding-top: 700px;
  }

  /*セクション*/
  .pg_esthetics{

  }
  .pg_esthetics .section.sec1{
    padding-top: 116px;
  }
  .pg_esthetics .section.sec2{
    padding-top: 150px;
  }
  .pg_esthetics .section.sec3{
    padding-top: 92px;
  }
  .pg_esthetics .section.sec4{
    padding-top: 108px;
  }
  .pg_esthetics .section.sec5{
    padding-top: 93px;
  }
  .pg_esthetics .section.sec6{
    padding-top: 108px;
  }
  .pg_esthetics .section.sec7{
    padding-top: 90px;
  }
}
@media (min-width:1470px){
  /*セクション*/
  .pg_esthetics .section.sec2{
    padding-top: 275px;
  }
}
@media (min-width:1720px){


}

/* メイン部分 */
.page_hdr_wrap.esthetics{

}
.page_hdr_wrap.esthetics .page_hdr_box1{

}
.page_hdr_wrap.esthetics .page_hdr_box1_img{

}
.page_hdr_wrap.esthetics .page_hdr_box1::before{
  background: none;
}
.page_hdr_wrap.esthetics .page_hdr_box1_img:before{

}
.page_hdr_wrap.esthetics .page_hdr_box1_img:first-child:before{
  padding-top: 93.02%;
}
.page_hdr_wrap.esthetics .page_hdr_box1_img:last-child:before{
  padding-top: 93.33%;
}
.page_hdr_wrap.esthetics .page_hdr_box1_img:first-child{
  width: 86.85%;
}
.page_hdr_wrap.esthetics .page_hdr_box1_img:last-child{
  width: 100%;
  margin-top: 0;
  position: relative;
  z-index: 2;
  margin-left: auto;
}
.page_hdr_wrap.esthetics img{
  border-radius: 30px;
}
.page_hdr_wrap.esthetics .page_hdr_box2{

}
.page_hdr_wrap.esthetics .home_contents1_box2_tt{
  font-family: "Noto Serif JP", serif;
  line-height: 1.944em;
  font-weight: 700;
}
.page_hdr_wrap.esthetics .content_desc_s{
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
.page_hdr_wrap.esthetics .content_desc_block:nth-child(n+2){
  margin-top: 16px;
}
.page_hdr_wrap.esthetics .page_hdr_box3{

}
.page_hdr_wrap.esthetics .page_hdr_box3_img{

}
.page_hdr_wrap.esthetics .page_hdr_box3_img:before{
  padding-top: 93.33%;
}

/*おすすめ*/
.logistics_contents1_wrap.esthetics{
  padding: 50px 16px;
}
.logistics_contents1_wrap.esthetics:before{
  background-image: none;
  background: #f7f7f7;
  height: 100%;
  top: 0;
  left: 0;
  transform: none;
  border-radius: 50px 0 0 50px;
}
.logistics_contents1_wrap.esthetics .esthetics_contents1_tt{
  position: relative;
}
.logistics_contents1_wrap.esthetics .logistics_contents1_box_tt{
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
  z-index: 1;
  color: #000;
}
.logistics_contents1_wrap.esthetics .logistics_contents1_box_tt:before{
  width: 10px;
  background: #a2d1eb;
}
.logistics_contents1_box_en{
  color: #fff;
  font-size: clamp(2.5rem, 1.125rem + 6.88vw, 9.375rem);
  font-weight: 400;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
}
.logistics_contents1_wrap.esthetics{

}
.logistics_contents1_wrap.esthetics{

}
.logistics_contents1_wrap.esthetics .logistics_contents1_items{
  position: relative;
  z-index: 1;
}
.logistics_contents1_wrap.esthetics .logistics_contents1_item{

}
.logistics_contents1_wrap.esthetics .logistics_contents1_item_inner{
  border-left: 9px solid #d9eaee;
  border-radius: 10px;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.05);
  padding: 36px 0;
}
.logistics_contents1_wrap.esthetics .logistics_contents1_item_txt1{
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 700;
}

/*menu*/
.esthetics_contents2_wrap{

}
.esthetics_tt{
  text-align: center;
  font-size: clamp(3.125rem, 2rem + 5.63vw, 8.75rem);
  font-family: "Cardo", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #d9eaee;
}
.esthetics_contents2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 37px;
}
.esthetics_contents2_item{
  width: 100%;
}
.esthetics_contents2_item:nth-child(n+2){
  margin-top: 20px;
}
.esthetics_contents2_item_inner{
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border-top: 9px solid #d9eaee;
  padding: 22px 10px;
}
.esthetics_contents2_item_tt{
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  padding-left: 20px;
}
.esthetics_contents2_item_parent{
  margin-top: 24px;
}
.esthetics_contents2_item_child{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 20px;
}
.esthetics_contents2_item .content_desc_s{
  line-height: 1.4em;
  font-family: "Noto Serif JP", serif;
  margin-top: 14px;
}

.esthetics_contents2_item_child:nth-child(n+2){
  margin-top: 12px;
}
.esthetics_contents2_item_child_left{
  width: 100%;
}
.esthetics_contents2_item_child_left_img:before{
  padding-top: 85.71%;
}
.esthetics_contents2_item_child_right{
  width: 100%;
}
.esthetics_contents2_item_menu{
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 18px;
}
.esthetics_contents2_item_menu.bdr_none{
  border-bottom: none;
}
.esthetics_contents2_item_menu1{
  width: 74.06%;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1.7em;
}
.esthetics_contents2_item_menu2{
  width: 22.55%;
  letter-spacing: 0.05em;
}
.esthetics_contents2_item_menu2 p{
  width: 120px;
  width: 100%;
  display: inline-block;
  background: #fff;
  text-align: center;
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  padding: 7px 0;
}
.esthetics_contents2_item_menu2 p strong{
  font-size: 14px;
  font-weight: 700;
}

/*スクール*/
.esthetics_contents3_wrap{

}
.esthetics_contents3_items{
  background: #d9eaee;
  border-radius: 10px;
  padding: 0;
}
.esthetics_contents3_items_inner{
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
}
.esthetics_contents3_item{
  width: 100%;
}
.esthetics_contents3_item:nth-child(n+2){
  margin-top: 30px;
}
.esthetics_contents3_item_inner{
  padding: 16px;
  border-radius: 10px;
}
.esthetics_contents3_item:nth-child(n+2) .esthetics_contents3_item_inner{
  background: #fff;
}
.esthetics_contents3_item .esthetics_contents1_tt{
  position: relative;
}
.esthetics_contents3_item .logistics_contents1_box_tt{
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 45%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  color: #000;
}
.esthetics_contents3_item .logistics_contents1_box_tt:before{
  display: none;
}
.esthetics_contents3_item .logistics_contents1_box_en{
  font-size: clamp(3.125rem, 2rem + 5.63vw, 8.75rem);
  letter-spacing: 0;
}
.esthetics_contents3_item_tt_sub{
  text-align: left;
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
.esthetics_contents3_item_tt_sub p{
  display: inline-block;
  background: #fff;
  letter-spacing: 0.05em;
  padding: 4px 10px;
}
.esthetics_contents3_item .content_desc_s{
  font-family: "Noto Serif JP", serif;
}
.esthetics_contents3_item .esthetics_contents2_item_menu{

}
.esthetics_contents3_item .esthetics_contents2_item_menu1{

}
.esthetics_contents3_item .esthetics_contents2_item_menu2{

}
.esthetics_contents3_item .esthetics_contents2_item_menu2 p{
  width: 170px;
  background: #f7f7f7;
}
.esthetics_contents3_item .esthetics_contents2_item_menu2 p strong{
  font-size: 14px;
  font-weight: 700;
}
.cari_box{
  font-family: "Noto Serif JP", serif;
  margin-top: 17px;
}
.cari_box_tt{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cari_items{
  margin-top: 13px;
}
.cari_item{
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
.cari_item:nth-child(n+2){
  margin-top: 20px;
}
.cari_item_txt1{
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}
.cari_item_txt1:before{
  content: "";
  display: block;
  width: 6px;
  aspect-ratio: 1;
  background: #d9eaee;
  border-radius: 50%;
  margin-right: 8px;
}
cari_item_txt2{
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
}

/*staff*/
.esthetics_contents2_item_parent.staff{
  margin-top: 9px;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child{
  background: none;
  padding: 0;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left{

}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img{

}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img img{
  border-radius: 50%;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img:before{
  padding-top: 100%;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_right{
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu{
  border-bottom: none;
  justify-content: flex-start;
  padding-bottom: 0;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu1{
  width: auto;
  font-size: 18px;
  font-weight: 700;
  margin-right: 11px;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2{
  width: auto;
  font-size: 14px;
}
.esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2 p{
  width: auto;
}
.esthetics_contents2_item_parent.staff .content_desc_s{
  font-size: 14px;
  font-weight: 500;
  line-height: 2.142em;
}

/*instagram*/
.esthetics_contents5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 50px 0;
}
.esthetics_contents5_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #d9eaee;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.esthetics_contents5_box1{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 2;
  margin-top: 20px;
  ;
}
.esthetics_contents5_box1_items{
  display: flex;
  flex-wrap:wrap;
  margin-inline:-2.5px;
}
.esthetics_contents5_box1_item{
  width: 50%;
  padding-inline:2.5px;
}
.esthetics_contents5_box1_item:nth-child(n+3){
  margin-top: 10px;
}
.esthetics_contents5_box1_item_img:before{
  padding-top: 133.33%;
}
.esthetics_contents5_box2{
  width: 100%;
  position: relative;
  z-index: 1;
  order: 1;
}
.esthetics_contents5_box2_en{
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Cardo", serif;
  color: #fff;
}
.esthetics_contents5_box2 .content_desc_s{
  font-family: "Noto Serif JP", serif;
}
.esthetics_contents5_box2 .read_more{

}
.esthetics_contents5_box2 .read_more a{
  color: #000;
  background: #fff;
}
.esthetics_contents5_wrap .read_more{
  order: 3;
  width: 100%;
  margin-inline:auto;
  justify-content: center;

}
.esthetics_contents5_wrap .read_more a{
  color: #000;
  background: #fff;
}

/*salon*/
.esthetics_contents6_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 42px;
}
.esthetics_contents6_item{

}
.esthetics_contents6_box1{
  width: 100%;
}
.esthetics_contents6_box1 .gmap{

}
.esthetics_contents6_box1 .access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}
.esthetics_contents6_box2{
  width: 100%;
}
.salon_tbl .table_rows{
  border-collapse: separate;
  border-spacing: 0px 2px;
}

.salon_tbl .table_rows_th,
.salon_tbl .table_rows_td{
  font-size: 16px;
  border: none;
  padding: 17px 23px;
}
.salon_tbl .table_rows_th{
  font-weight: 700;
  padding-right: 0;
}
.salon_tbl .table_rows_td{
  font-weight: 500;
  line-height: 1.75em;
}
.salon_tbl .table_rows_tr{
  margin-top: 5px;
  position: relative;
  bottom: -5px;
}
@media (max-width:767px){
  .page_hdr_wrap.esthetics .page_hdr_box2{
    padding-top: 39px;
  }

  .esthetics_contents2_item_menu{
    display: block;
  }
  .esthetics_contents2_item_menu1{
    width: 100%;
  }
  .esthetics_contents2_item_menu2{
    width: 100%;
    text-align: right;
    margin-top: 16px;
  }
  .esthetics_contents2_item_child_right{
    margin-top: 20px;
  }

  .esthetics_contents3_items_inner{
    padding: 20px 16px;
  }

  .salon_tbl .table_rows_th,
  .salon_tbl .table_rows_td{
    display: block;
    width: 100%;
  }
  .salon_tbl .table_rows_th{
    border-bottom: 1px solid #fff;
  }
  .salon_tbl .table_rows_td{

  }
  .salon_tbl .table_rows{
    border-collapse: separate;
    border-spacing: 0px 5px;
  }

  .esthetics_contents2_item .content_desc_s{
    line-height: 1.6em;
  }

  .menu_block_item.esthetics_contents2_item_child_right:nth-child(n+2){
    margin-top: 40px;
  }
}
@media (min-width:768px){
  /*mv*/
  .sub_mv_txt_p{
    background: #fff;
    margin: 0 5px;
  }

  /* メイン部分 */
  .page_hdr_wrap.esthetics{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.esthetics .page_hdr_box2{

  }
  .page_hdr_wrap.esthetics .home_contents1_box2_tt{
    font-size: 24px;
  }
  .page_hdr_wrap.esthetics .content_desc_s{

  }
  .page_hdr_wrap.esthetics .content_desc_block:nth-child(n+2){

  }
  .page_hdr_wrap.esthetics .page_hdr_box3{
    padding-top: 50px;
  }
  .page_hdr_wrap.esthetics .page_hdr_box3_img{

  }

  /*おすすめ*/
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics:before{

  }
  .logistics_contents1_wrap.esthetics .esthetics_contents1_tt{

  }
  .logistics_contents1_box_en{

  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_items{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_inner{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_txt1{
    font-size: 16px;
  }

  /*menu*/
  .esthetics_contents2_wrap{

  }
  .esthetics_tt{

  }
  .esthetics_contents2_items{

  }
  .esthetics_contents2_item{

  }
  .esthetics_contents2_item_inner{

  }
  .esthetics_contents2_item_tt{
    font-size: 20px;
  }
  .esthetics_contents2_item_parent{

  }
  .esthetics_contents2_item_child{

  }
  .esthetics_contents2_item_child_left{
    width: 20.28%;
  }
  .esthetics_contents2_item_child_left_img:before{

  }
  .esthetics_contents2_item_child_right{
    width: 77.1%;
  }
  .esthetics_contents2_item_menu{

  }
  .esthetics_contents2_item_menu1{

  }
  .esthetics_contents2_item_menu2{

  }
  .esthetics_contents2_item_menu2 p{

  }

  /*スクール*/
  .esthetics_contents3_wrap{

  }
  .esthetics_contents3_items{

  }
  .esthetics_contents3_items_inner{

  }
  .esthetics_contents3_item{

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

  }
  .esthetics_contents3_item .esthetics_contents1_tt{

  }
  .esthetics_contents3_item .logistics_contents1_box_tt{

  }
  .esthetics_contents3_item .logistics_contents1_box_tt:before{

  }
  .esthetics_contents3_item .logistics_contents1_box_en{

  }
  .esthetics_contents3_item_tt_sub{
    font-size: 18px;
  }
  .esthetics_contents3_item_tt_sub p{

  }
  .esthetics_contents3_item .content_desc_s{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.75;
    margin-top: 11px;
  }
  .esthetics_contents3_item:first-child .content_desc_s{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25em;
  }
  .esthetics_contents3_item .esthetics_contents2_item_menu{

  }
  .esthetics_contents3_item .esthetics_contents2_item_menu1{
    width: 73.06%;
  }
  .esthetics_contents3_item .esthetics_contents2_item_menu2{
    width: 26%;
  }
  .esthetics_contents3_item .esthetics_contents2_item_menu2 p{

  }
  .cari_box{

  }
  .cari_box_tt{

  }
  .cari_items{

  }
  .cari_item{
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  .cari_item_txt1{
    min-width: 62px;
  }
  .cari_item_txt1:before{

  }
  cari_item_txt2{
    width: calc(100% - 67px);
  }

  /*staff*/
  .esthetics_contents2_item_parent.staff{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child{

  }
  .esthetics_contents4_wrap .esthetics_contents2_item_inner{
    padding-inline:40px;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left{
    width: 29.85%;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img img{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img:before{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_right{
    width: 64.17%;
    padding-top: 12px;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu{
    align-items: flex-end;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu1{
    font-size: 20px;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2 p{

  }
  .esthetics_contents2_item_parent.staff .content_desc_s{

  }

  /*instagram*/
  .esthetics_contents5_wrap{
    padding: 80px 0;
  }
  .esthetics_contents5_box1{
    margin-top: 30px;
  }
  .esthetics_contents5_box1_items{

  }
  .esthetics_contents5_box1_item{
    width: 25%;
  }
  .esthetics_contents5_box1_item:nth-child(n+3){
    margin-top: 0;
  }
  .esthetics_contents5_box1_item_img:before{

  }
  .esthetics_contents5_box2{

  }
  .esthetics_contents5_box2_en{
    font-size: 40px;
  }
  .esthetics_contents5_box2 .content_desc_s{

  }
  .esthetics_contents5_box2 .read_more{

  }

  /*salon*/
  .esthetics_contents6_items{

  }
  .esthetics_contents6_item{

  }
  .esthetics_contents6_box1{

  }
  .esthetics_contents6_box1 .gmap{

  }
  .esthetics_contents6_box1 .access_map iframe{
    height: 400px;
  }
  .esthetics_contents6_box2{

  }
  .salon_tbl{

  }
  .salon_tbl .table_rows_th,
  .salon_tbl .table_rows_td{

  }
  .salon_tbl .table_rows_th{
    width: 160px;
    vertical-align: middle;
  }
  .salon_tbl .table_rows_td{
    padding-left: 5px;
  }

  .esthetics_contents2_item.school .esthetics_contents2_item_child_right{
    width: 100%;
  }
  .esthetics_contents2_item.school .esthetics_contents2_item_menu2 p{
    width: 100%;
    padding: 7px 10px;
  }
  .esthetics_contents2_item.school .esthetics_contents2_item_menu2{
    /*    width: 250px;;*/
    width: 25.55%;
  }
}
@media (min-width:1024px){
  /*mv*/
  .sub_mv_left{
    width: 30.89%;
  }
  .sub_mv_txt_p{
    background: #fff;
    margin: 0 5px;
  }

  /* メイン部分 */
  .page_hdr_wrap.esthetics{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.esthetics .page_hdr_box2{
    padding: 26px 20px 0 20px;
  }
  .page_hdr_wrap.esthetics .home_contents1_box2_tt{

  }
  .page_hdr_wrap.esthetics .content_desc_s{

  }
  .content_desc_block:nth-child(n+2){
    margin-top: 35px;
  }
  .page_hdr_wrap.esthetics .page_hdr_box3{

  }
  .page_hdr_wrap.esthetics .page_hdr_box3_img{

  }

  /*おすすめ*/
  .logistics_contents1_wrap.esthetics{
    padding: 50px 30px;
  }
  .logistics_contents1_wrap.esthetics:before{

  }
  .logistics_contents1_wrap.esthetics .esthetics_contents1_tt{

  }
  .logistics_contents1_box_en{

  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_items{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_inner{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_txt1{

  }

  /*menu*/
  .esthetics_contents2_wrap{

  }
  .esthetics_tt{

  }
  .esthetics_contents2_items{
    margin-inline: -10px;
  }
  .esthetics_contents2_item{
    width: 50%;
    padding-inline:10px
  }
  .esthetics_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .esthetics_contents2_item:nth-child(n+3){
    margin-top: 42px;
  }
  .esthetics_contents2_item_inner{
    height: 100%;
  }
  .esthetics_contents2_item_tt{

  }
  .esthetics_contents2_item_parent{

  }
  .esthetics_contents2_item_child{

  }
  .esthetics_contents2_item_child_left{

  }
  .esthetics_contents2_item_child_left_img:before{

  }
  .esthetics_contents2_item_child_right{

  }
  .esthetics_contents2_item.school .esthetics_contents2_item_child_right{
    width: 100%;
  }
  .esthetics_contents2_item.school .esthetics_contents2_item_menu1{
    width: 60%;
  }
  .esthetics_contents2_item.school .esthetics_contents2_item_menu2{
    /*    width: 250px;;*/
    width: 40%;
  }
  .esthetics_contents2_item.school .esthetics_contents2_item_menu2 p{
    width: 100%;
    padding: 7px 10px;
  }
  .esthetics_contents2_item_menu{

  }

  .esthetics_contents2_item_menu1{

  }
  .esthetics_contents2_item_menu2{

  }
  .esthetics_contents2_item_menu2 p{

  }
  /*salon*/
  .esthetics_contents6_items{

  }
  .esthetics_contents6_item{

  }
  .esthetics_contents6_box1{
    width: 46.05%;
  }
  .esthetics_contents6_box1 .gmap{

  }
  .esthetics_contents6_box1 .access_map iframe{

  }
  .esthetics_contents6_box2{
    width: 50%;
  }
}
@media (min-width:1200px){
  /*mv*/
  .sub_mv_left{
    width: 27.89%;
  }
  .sub_mv_txt_p{
    background: #fff;
    margin: 0 14px;
  }

  /* メイン部分 */
  .page_hdr_wrap.esthetics{

  }
  .page_hdr_wrap.esthetics .page_hdr_box1{
    width: 32.56%;
    position: relative;
  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img{
    margin-left: 0;
  }
  .page_hdr_wrap.esthetics .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.esthetics .page_hdr_box2{
    width: 37.5%;
    padding: 26px 20px 0 20px;
  }
  .page_hdr_wrap.esthetics .home_contents1_box2_tt{
    font-size: 36px;
  }
  .page_hdr_wrap.esthetics .content_desc_s{

  }
  .page_hdr_wrap.esthetics .content_desc_block:nth-child(n+2){

  }
  .page_hdr_wrap.esthetics .page_hdr_box3{
    width: 29.34%;
    position: relative;
    padding-top: 96px;
  }
  .page_hdr_wrap.esthetics .page_hdr_box3_img{
    margin-right: 0;
  }

  .esthetics_contents2_item.school .esthetics_contents2_item_menu2{
    /*    width: 250px;;*/
    width: 35%;
  }

  /*おすすめ*/
  .logistics_contents1_wrap.esthetics{
    padding: 30px 0 112px 100px;
  }
  .logistics_contents1_wrap.esthetics:before{

  }
  .logistics_contents1_wrap.esthetics .esthetics_contents1_tt{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_box_tt{
    font-size: 30px;
  }
  .logistics_contents1_box_en{
    position: relative;
    left: -41px;
  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_items{
    margin-inline:-10px;
    margin-top: 3px;
  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item{
    width: 33.333%;
    padding-inline:10px;
  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item:nth-child(n+5){
    margin-top: 0;
  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item:nth-child(n+4){
    margin-top: 20px;
  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_inner{

  }
  .logistics_contents1_wrap.esthetics .logistics_contents1_item_txt1{
    font-size: 18px;
  }

  /*menu*/
  .esthetics_contents2_wrap{

  }
  .esthetics_tt{

  }
  .esthetics_contents2_items{
    margin-inline:-10px;
  }
  .esthetics_contents2_item{
    width: 50%;
    padding-inline:10px
  }
  .esthetics_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .esthetics_contents2_item:nth-child(n+3){
    margin-top: 42px;
  }
  .esthetics_contents2_item_inner{
    height: 100%;
  }
  .esthetics_contents2_item_tt{
    font-size: 24px;
  }
  .esthetics_contents2_item_parent{

  }
  .esthetics_contents2_item_child{

  }
  .esthetics_contents2_item_child_left{

  }
  .esthetics_contents2_item_child_left_img:before{

  }
  .esthetics_contents2_item_child_right{

  }
  .esthetics_contents2_item_menu{

  }
  .esthetics_contents2_item_menu1{
    font-size: 18px;
  }
  .esthetics_contents2_item_menu2{
    font-size: 18px;
  }
  .esthetics_contents2_item_menu2 p{

  }

  /*スクール*/
  .esthetics_contents3_wrap{

  }
  .esthetics_contents3_items{

  }
  .esthetics_contents3_items_inner{
    margin-inline:-10px;
  }
  .esthetics_contents3_item{
    width: 50%;
    padding-inline:10px;
  }
  .esthetics_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .esthetics_contents3_item:nth-child(n+3){
    margin-top: 20px;
  }
  .esthetics_contents3_item_inner{
    padding: 33px 28px;
  }
  .esthetics_contents3_item:first-child .esthetics_contents3_item_inner{
    padding: 16px 50px 16px 60px;
  }
  .esthetics_contents3_item .esthetics_contents1_tt{

  }
  .esthetics_contents3_item .logistics_contents1_box_tt{
    font-size: 36px;
  }
  .esthetics_contents3_item .logistics_contents1_box_tt:before{

  }
  .esthetics_contents3_item .logistics_contents1_box_en{

  }
  .esthetics_contents3_item_tt_sub{
    font-size: 20px;
    margin-top: -19px;
  }
  .esthetics_contents3_item_tt_sub p{

  }
  .esthetics_contents3_item .content_desc_s{

  }
  .esthetics_contents3_item:first-child .content_desc_s{
    margin-top: 47px;
  }
  .esthetics_contents3_item .esthetics_contents2_item_menu{
    padding-bottom: 13px;
  }
  .esthetics_contents3_item .esthetics_contents2_item_menu1{

  }
  .esthetics_contents3_item .esthetics_contents2_item_menu2{

  }
  .esthetics_contents3_item .esthetics_contents2_item_menu2 p{

  }
  .cari_box{

  }
  .cari_box_tt{

  }
  .cari_items{

  }
  .cari_item{

  }
  .cari_item_txt1{

  }
  .cari_item_txt1:before{

  }
  cari_item_txt2{

  }

  /*staff*/
  .esthetics_contents2_item_parent.staff{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img img{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_left_img:before{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_child_right{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu1{
    font-size: 24px;
  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2{

  }
  .esthetics_contents2_item_parent.staff .esthetics_contents2_item_menu2 p{

  }
  .esthetics_contents2_item_parent.staff .content_desc_s{

  }

  /*instagram*/
  .esthetics_contents5_wrap{
    padding: 103px 0 99px;
  }
  .esthetics_contents5_box1{
    width: 68.09%;
    order: 1;
    margin-top: 0;
  }
  .esthetics_contents5_box1_items{

  }
  .esthetics_contents5_box1_item{

  }
  .esthetics_contents5_box1_item_img:before{

  }
  .esthetics_contents5_box2{
    width: 30.26%;
    padding: 0 33px;
    order: 2;
  }
  .esthetics_contents5_box2_en{
    font-size: 60px;
  }
  .esthetics_contents5_box2 .content_desc_s{
    margin-top: 32px;
  }
  .esthetics_contents5_box2 .read_more{

  }

  /*salon*/
  .esthetics_contents6_items{

  }
  .esthetics_contents6_item{

  }
  .esthetics_contents6_wrap.food .esthetics_contents6_box1{
    width: 48.61%;
  }
  .esthetics_contents6_box1 .gmap{

  }
  .esthetics_contents6_box1 .access_map iframe{
    height: 500px;
  }
  .esthetics_contents6_wrap.food .esthetics_contents6_box2{
    width: 48.95%;
  }

  .page_hdr_wrap.esthetics .page_hdr_box1_img:last-child{
    margin-top: -65px;
  }
}
@media (min-width:1470px){
  .sub_mv_left{
    width: 24.89%;
  }

}
@media (min-width:1720px){
  /*mv*/
  .sub_mv_left{
    width: 22.89%;
  }

  /* メイン部分 */
  .page_hdr_wrap.esthetics .page_hdr_box1{
    left: -80px;
  }
  .page_hdr_wrap.esthetics .page_hdr_box2{
    padding: 26px 0 0 0;
  }
  .page_hdr_wrap.esthetics .page_hdr_box3{
    right: -80px;
  }
}




/*******************************
*　飲食
********************************/
/*mv*/
.foot_mv{
  font-family: "Noto Serif JP", serif;
  position: relative;
}
.foot_mv_img:before{
  padding-top:calc(100vh - 56px - 56px);
}
.foot_mv_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.foot_mv_content{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 52.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 5;
}
.foot_mv_content_logo{
  width: 200px;
  margin: 0 auto;
}
.foot_mv_txt{
  color: #fff;
}
.foot_mv_txt1{
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 40px;
}
.foot_mv_txt2{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
}


/* セクション設定 */
.pg_xxx{

}
.body_foodAndBeverage,
.body_newsfoodAndBeverage,
.body_newsDetailfoodAndBeverage{
  position: relative;
}
.body_foodAndBeverage:before,
.body_newsfoodAndBeverage:before,
.body_newsDetailfoodAndBeverage:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bbg.jpg);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  ;
  z-index: -1;
}
.pg_foodAndBeverage{
  font-family: "Noto Serif JP", serif;
}
.pg_foodAndBeverage .section.sec1{

}
.pg_foodAndBeverage .section.sec1{

}
.pg_foodAndBeverage .section.sec2{

}
.pg_foodAndBeverage .section.sec3{

}
.pg_foodAndBeverage .section.sec4{

}
.pg_foodAndBeverage .section.sec5{
  position: relative;
  padding-bottom: 50px;
}
.pg_foodAndBeverage .section.sec5:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #121212;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_foodAndBeverage .section.sec1{
    padding-top: 80px;
  }
}
@media (min-width:768px){
  /*mv*/
  .foot_mv{

  }
  .foot_mv_img:before{
    padding-top:400px;
  }
  .foot_mv_content{

  }
  .foot_mv_content_logo{
    width: 250px;
    margin: 0 auto;
  }
  .foot_mv_txt{

  }
  .foot_mv_txt1{
    font-size: 24px;
    margin-top: 40px;
  }
  .foot_mv_txt2{
    font-size:16px;
    margin-top: 16px;
  }


  .pg_foodAndBeverage .section.sec1{
    padding-bottom: 27px;
  }
  .pg_foodAndBeverage .section.sec2{
    padding-top: 0;
  }
  .pg_foodAndBeverage .section.sec3{

  }
  .pg_foodAndBeverage .section.sec4{
    padding-top: 88px;
    padding-bottom: 80px;
  }
  .pg_foodAndBeverage .section.sec5{
    padding-bottom: 80px;
  }

}
@media (min-width:1024px){
  /*mv*/
  .foot_mv{

  }
  .foot_mv_img:before{
    padding-top:600px;
  }
  .foot_mv_content{

  }
  .foot_mv_content_logo{
    width: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .foot_mv_txt{

  }
  .foot_mv_txt1{
    margin-top: 70px;
  }
  .foot_mv_txt2{
    margin-top: 29px;
  }

}
@media (min-width:1200px){
  /*mv*/
  .foot_mv{

  }
  .foot_mv_img:before{
    padding-top:calc(100vh - 180px);
  }
  .foot_mv_content{

  }
  .foot_mv_content_logo{

  }
  .foot_mv_txt{

  }
  .foot_mv_txt1{
    font-size: 30px;
  }
  .foot_mv_txt2{

  }

  .pg_foodAndBeverage .section.sec1{

  }
  .pg_foodAndBeverage .section.sec2{
    padding-top: 150px;
  }
  .pg_foodAndBeverage .section.sec3{

  }
  .pg_foodAndBeverage .section.sec4{
    padding-top: 88px;
    padding-bottom: 145px;
  }
  .pg_foodAndBeverage .section.sec5{
    padding-bottom: 110px;
  }
}
@media (min-width:1470px){
  .pg_foodAndBeverage .section.sec1{

  }
  .pg_foodAndBeverage .section.sec2{
    padding-top: 0;
  }
  .pg_foodAndBeverage .section.sec3{

  }

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


}

/* メイン部分 */
.pg_esthetics{

}
/*見出し*/
.page_hdr_wrap.food{
  position: relative;
}
.food_contents1_wrap{
  position: relative;
  padding: 62px 0;
}
.page_hdr_wrap.food .page_hdr_box1{
  position: relative;
  z-index: 5;
}
.page_hdr_wrap.food .page_hdr_box1:before{
  display: none;
}
.page_hdr_wrap.food .page_hdr_box1_img:before{
  padding-top:100%;
}
.page_hdr_wrap.food .page_hdr_box2{
  color: #fff;
  position: relative;
  z-index: 4;
}
.page_hdr_wrap.food .home_contents1_box2_tt{
  line-height: 1.944em;
}
.page_hdr_wrap.food .content_desc_s{
  line-height: 2.5em;
  margin-top: 0;
  margin-right: 47px;
}
.page_hdr_wrap.food .content_desc_block{

}
.page_hdr_wrap.food{

}
.page_hdr_wrap.food .page_hdr_box3{
  position: relative;
  z-index: 3;
}
.page_hdr_wrap.food .page_hdr_box3_img{

}
.page_hdr_wrap.food .page_hdr_box3_img:first-child{
  width: 85.71%;
  margin-left: auto;
}
.page_hdr_wrap.food .page_hdr_box3_img:first-child:before{
  padding-top: 111.11%;
}
.page_hdr_wrap.food .page_hdr_box3_img:last-child{
  width: 71.42%;
  position: relative;
  top: -40px;
}
.page_hdr_wrap.food .page_hdr_box3_img:last-child:before{
  padding-top:100%;
}
.food_contents1_img_outer{
  width: 95.39%;
  position: absolute;
  left: 0;
  top: 0;
}
.food_contents1_img_outer:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.99) 46%, rgba(0, 0, 0, 0.82) 55%, rgba(0, 0, 0, 0.36) 100%);
  position: absolute;
  top: 0;
  left: auto;
  pointer-events: none;
  z-index: 2;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.food_contents1_img{
  width: 100vw;
  margin-left: auto;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.food_contents1_img:before{
  padding-top: 660px;
}

/*メニュー1*/
.esthetics_contents2_wrap{

}
.food_tt{
  text-align: center;
}
.food_tt_h2{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.food_tt_en{
  font-size: 16px;
  font-weight: 400;
  font-family: "Cardo", serif;
  letter-spacing: 0;
  line-height: 1;
}
.food_menu1_items{

}
.food_menu1_item{

}
.food_menu1_item:nth-child(n+2){
  margin-top: 50px;
}
.food_menu1_item .esthetics_contents2_item_inner{
  background: #fff;
  border-top: 0;
}
.food_menu1_item .esthetics_contents2_item_parent{
  margin-top: 0;
}
.food_menu1_item .esthetics_contents2_item_child{
  padding: 0;
  background: none;
}
.food_menu1_item .esthetics_contents2_item_child_left{

}
.food_menu1_item .esthetics_contents2_item_child_left_img:before{
  padding-top: 70%;
}
.food_menu1_item .esthetics_contents2_item_child_right{

}
.food_menu1_item .esthetics_contents2_item_menu{
  padding-bottom: 0px;
  border-bottom: 1px solid #000000;
}
.food_menu1_item .esthetics_contents2_item_menu1{
  font-weight: 700;
}
.food_menu1_item .esthetics_contents2_item_menu2{
  width: auto;
  font-weight: 700;
  text-align: right;
}
.food_menu1_item .esthetics_contents2_item_menu2 strong{
  font-size: 14px;
}
.food_menu1_item .esthetics_contents2_item_menu2 p{
  width: auto;
  background: none;
}

/*コースリスト*/
.food_menu1_lists{
  display: flex;
  ;
  flex-wrap: wrap;
  margin-top: 20px;
}
.food_menu1_lists p{
  font-size: 16px;
  font-weight: 700;
  line-height: 2.25em;
  letter-spacing: 0.05em;
  text-indent: -1em;
  padding-left: 1em;
}
.food_menu1_item .content_desc_s{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75em;
  letter-spacing: 0.05em;
  margin-top: 22px;
}

/*メニュー2*/
.food_menu2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 43px;
}
.food_menu2_item{
  width: 100%;
}
.food_menu2_item:nth-child(n+2){
  margin-top: 30px;
  ;
}
.food_menu2_item_inner{
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.05);
}
.food_menu2_item_box1{
  width: 100%;
}
.food_menu2_item_box1_img:before{
  padding-top: 60%;
}
.food_menu2_item_box2{
  width: 100%;
  padding: 24px 28px 0 24px;
  background: #fff;
}
.food_menu2_item_box2_tt{
  border-bottom: 1px solid #000;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
}
.food_menu2_item_box2 .esthetics_contents2_item_menu{
  border-bottom: none;
  margin-top: 24px;
  text-align: left;
  justify-content: flex-end;
}
.food_menu2_item_box2 .esthetics_contents2_item_menu2{
  width: auto;
}
.food_menu2_item_box2 .esthetics_contents2_item_menu2 p{
  width: auto;
  background: none;
}
.food_menu2_item_box2 .esthetics_contents2_item_menu2 p strong{
  font-size: 14px;
  font-weight: 700;
}

/*メニュー3*/
.food_menu3_items{
  background: #121212;
  margin-top: 30px;
  padding: 30px 16px;
}
.cmn_menu_price{
  padding-bottom: 7px;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.cmn_menu_price_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_menu_price1{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.cmn_menu_price2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-left: auto;
}
.cmn_menu_price2 strong{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}


/*ドリンク*/
.food_contents2_wrap{
  background: #fff;
}
.food_contents2_box{

}
.food_contents2_hdr{
  display: flex;
  ;
  flex-wrap: wrap;
  background: #121212;
}
.food_contents2_hdr_left{
  width: 100%;
}
.food_contents2_hdr_left .food_menu3_items_inner{

}
.food_contents2_hdr_left{
  padding: 31px 16px 31px;
}
.food_contents2_hdr_right{
  width: 100%;
}
.food_contents2_hdr_right_img:before{
  padding-top: 47.5%;
}

.food_contents2_hdr .food_menu3_items_inner > div:nth-child(n+2){
  margin-top: 24px;
}
.food_contents2_wrap .food_menu3_items{

}
.food_contents2_wrap .food_menu3_items.drink_02{
  background: #fff;
  color: #000;
  margin-top: 0;
}

.food_contents2_wrap .food_menu3_items.drink_02 .cmn_menu_price{
  color: #000;
  border-bottom: 1px solid #121212;
}

/*news*/
.food_contents3_tt{

}
.food_contents3_tt_ja{
  font-size: 15px;

  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
.food_contents3_tt_en{
  font-size: 22px;
  font-weight: 400;
  font-family: "Cardo", serif;
  letter-spacing: 0.05em;
  margin-top: 11px;
}
.food_contents3_wrap .content_desc_s{

}
.food_contents3_wrap .read_more a{
  background: #fff;
  color: #000000;
  border: 1px solid #000;
}
.pg_foodAndBeverage .section.sec4 .read_more a:after{
  background-image: url(/system_panel/uploads/images/arr3.png);
  right: 10px;
}


/*ギャラリー*/
.esthetics_contents6_wrap.food .food_tt{
  color: #fff;
}
.esthetics_contents6_wrap.food .food_tt_en{
  margin-top: 5px;
}
.food_gallery_items{
  display: flex;
  flex-wrap:wrap;
  margin-inline:-6.5px;
  margin-top: 39px;
}
.food_gallery_item{
  width: 50%;
  padding-inline:6.5px;
}
.food_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.food_gallery_item_img_:before{
  padding-top: 100%;
}
.esthetics_contents6_wrap.food .salon_tbl .table_rows_th,
.esthetics_contents6_wrap.food .salon_tbl .table_rows_td{
  background: #343434;
  color: #fff;
}

.food_menu_block{
  margin-top: 30px;
}
.food_menu_block:nth-child(n+2){
  margin-top: 60px;
}
.food_tt_sub{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000000;
  padding-bottom: 13px;
}
.food_contents2_hdr.free{
  margin-top: 37px;
}
.food_contents2_hdr.free .content_desc_s{
  color: #fff;
  font-weight: 700;
}
.food_contents2_hdr.free .content_desc_s p{
  letter-spacing: 0.05em;
}

.bg_fff:nth-child(n+2){
  margin-top: 80px;
}
.bg_fff .food_menu3_items.drink_02{
  background: #fff;

}
.bg_fff .food_menu3_items.drink_02 .cmn_menu_price{
  color: #000000;
  border-bottom: 1px solid #808080;
}

.food_menu1_items.course{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.food_menu1_item.half,
.food_contents2_hdr.free{
  width: 100%;
}

.food_menu1_item.half:nth-child(n+2){
  margin-top: 30px;
}
@media (max-width:767px){
  .food_menu1_items{
    margin-top: 40px;
  }
  .food_contents1_img_outer{
    position: relative;
  }
  .page_hdr_wrap.food .page_hdr_box2{
    color: #fff;
  }

  .food_contents1_wrap{
    position: relative;
    padding: 0;
  }
  .food_contents1_wrap:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #121212;
    position: absolute;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .page_hdr_wrap.food{
    padding: 60px 0 0;
  }
  .food_contents1_img_outer{
    width: 100%;
    display: none;
  }
  .food_contents1_img_outer:before{

  }
  .food_contents1_img:before{
    padding-top: 300px;
  }
  .page_hdr_wrap.food .content_desc_s{
    margin-right: 0;
  }

  .food_menu2_item_box2{
    padding: 20px 16px 10px;
  }

  .food_contents2_wrap{
    margin-top: 40px;
  }
  .food_menu3_items_inner > div:nth-child(n+2){
    margin-top: 30px;
  }
  .food_contents2_hdr_left{
    order: 2;
  }
  .food_contents2_hdr_right{
    order: 1;
  }
  .food_contents2_hdr_left .food_menu3_items_inner.row{
    margin-left: 0;
    margin-right: 0;
  }
  .food_menu3_items_inner > div{
    width: 100%;
  }

  .food_contents2_hdr.sasimi .content_desc_s{
    margin-top: 0;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap.food{

  }
  .food_contents1_wrap{
    position: relative;
    padding: 62px 0 0;
  }
  .page_hdr_wrap.food .page_hdr_box1{

  }
  .page_hdr_wrap.food .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.food .page_hdr_box2{
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: center;
    height: 508px;
  }
  .page_hdr_wrap.food .home_contents1_box2_tt{
    font-size: 22px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .page_hdr_wrap.food .content_desc_s{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .page_hdr_wrap.food .content_desc_block{

  }
  .page_hdr_wrap.food .content_desc_block:nth-child(n+2){
    margin-right: 38px;
  }
  .page_hdr_wrap.food .page_hdr_box3_img{

  }
  .page_hdr_wrap.food .page_hdr_box3_img:first-child{

  }
  .page_hdr_wrap.food .page_hdr_box3_img:last-child{
    top: -60px;
  }
  .food_contents1_img:before{
    padding-top:1000px;
  }

  /*メニュー1*/
  .esthetics_contents2_wrap{

  }
  .food_tt{

  }
  .food_tt_h2{
    font-size: 24px;
  }
  .food_tt_en{
    font-size: 18px;
  }
  .food_menu1_items{
    margin-top: 60px;
  }
  .food_menu1_item{

  }
  /*  .food_menu1_item:nth-child(n+2){
      margin-top: 60px;
    }
    .food_menu1_item:nth-child(odd) .esthetics_contents2_item_child_left{
      order: 1;
    }
    .food_menu1_item:nth-child(odd) .esthetics_contents2_item_child_right{
      order: 2;
    }
    .food_menu1_item:nth-child(even) .esthetics_contents2_item_child_left{
      order: 2;
    }
    .food_menu1_item:nth-child(even) .esthetics_contents2_item_child_right{
      order: 1;
    }*/
  .food_menu1_item .esthetics_contents2_item_inner{
    padding: 30px;
  }
  .food_menu1_item .esthetics_contents2_item_parent{

  }
  .food_menu1_item .esthetics_contents2_item_child{

  }
  .food_menu1_item .esthetics_contents2_item_child_left{
    width: 37.87%;
    padding-top: 10px;
  }
  .food_menu1_item .esthetics_contents2_item_child_left_img:before{

  }
  .food_menu1_item .esthetics_contents2_item_child_right{
    width: auto;
  }
  .food_menu1_item .esthetics_contents2_item_menu{

  }
  .food_menu1_item .esthetics_contents2_item_menu1{
    width: 100%;
    font-size: 18px;
  }
  .food_menu1_item .esthetics_contents2_item_menu2{

    width: 100%;
    font-size: 18px;
  }
  .food_menu1_item .esthetics_contents2_item_menu2 strong{
    font-size: 16px;
  }

  /*コースリスト*/
  .food_menu1_lists{
    margin-top: 29px;
  }
  .food_menu1_lists p{
    font-size: 16px;
  }
  .food_menu1_item .content_desc_s{

  }

  /*メニュー2*/
  .food_menu2_items{

  }
  .food_menu2_item{

  }
  .food_menu2_item_inner{

  }
  .food_menu2_item_box1{
    width: 35.71%;
  }
  .food_menu2_item_box1_img:before{

  }
  .food_menu2_item_box2{
    width: 64.28%;
  }
  .food_menu2_item_box2_tt{
    font-size: 18px;
  }
  .food_menu2_item_box2 .esthetics_contents2_item_menu{

  }
  .food_menu2_item_box2 .esthetics_contents2_item_menu2{

  }

  /*メニュー3*/
  .food_menu3_items{
    padding: 30px;
  }
  .cmn_menu_price1{
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
  .cmn_menu_price2{
    font-size: 20px;
  }
  .food_menu3_items_inner > div:nth-child(n+3){
    margin-top: 30px;
  }

  /*ドリンク*/
  .food_contents2_wrap{
    margin-top: 60px;
  }
  .food_contents2_box{
    padding: 30px;
  }
  .food_contents2_hdr{

  }
  .food_contents2_hdr_left{
    width: 69.69%;
  }
  .food_contents2_wrap .food_menu3_items_inner{
    margin-inline:0;
  }
  .food_contents2_wrap .food_menu3_items_inner > div{
    width: 100%!important;
    padding-inline:0;
  }
  .food_menu3_items.drink_02 .food_menu3_items_inner > div{
    width: auto!important;
    padding-inline:30px;
    ;
  }
  .food_contents2_hdr.sasimi .food_contents2_hdr_left{
    width: 48.69%;
  }
  .food_contents2_hdr.sasimi .food_contents2_hdr_right{
    width: 47.31%;
  }
  .food_contents2_hdr_left .food_menu3_items_inner{

  }
  .food_contents2_hdr_left{
    padding: 31px 40px 31px 36px;
  }
  .food_contents2_hdr_right{
    width:30.3%;
  }
  .food_contents2_hdr_right_img:before{

  }

  .food_contents2_hdr.sasimi .contents2_hdr_right_img:before{
    padding-top:250px;
  }
  .food_contents2_wrap .food_menu3_items.drink_02 .food_menu3_items_inner{
    margin-inline: -21px;
  }


  /*news*/
  .food_contents3_tt{

  }
  .food_contents3_tt_ja{
    font-size: 24px;

  }
  .food_contents3_tt_en{
    font-size: 18px;
  }
  .food_contents3_wrap .content_desc_s{
    margin-top: 36px;
  }

  .food_contents3_wrap.home_contents7_wrap .read_more.left{
    justify-content: center;
  }

  /*ギャラリー*/
  .food_gallery_items{

  }
  .food_gallery_item{
    width: 25%;
  }
  .food_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .food_gallery_item:nth-child(n+5){
    margin-top: 10px;
    ;
  }
  .food_gallery_item_img_:before{

  }

  .food_contents2_hdr.free{
    justify-content: space-between;
  }
  .food_contents2_hdr.free .food_contents2_hdr_right_img:before{
    padding-top: 263px;
  }
  .food_contents2_hdr.free .food_contents2_hdr_left{
    padding: 43px 11px 31px 53px;
  }
  .food_contents2_hdr.free .food_contents2_hdr_right{
    width: 26.31%;
  }
  .food_contents2_hdr.sasimi .food_contents2_hdr_right{
    width: 47.31%;
  }
  .food_contents2_hdr.free .food_menu3_items_inner{
    margin-inline:0;
  }

  .food_tt_sub{
    font-size: 24px;
  }

  .food_menu_block{
    margin-top: 47px;
  }
  .food_menu_block:nth-child(n+2){
    margin-top: 74px;
  }
  .food_menu1_item.half:nth-child(n+2){
    margin-top: 30px;
  }
}
@media (min-width:1024px){
  /*見出し*/
  .page_hdr_wrap.food{

  }
  .page_hdr_wrap.food .page_hdr_box1{

  }
  .page_hdr_wrap.food .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.food .page_hdr_box2{

  }
  .page_hdr_wrap.food .home_contents1_box2_tt{
    font-size: 30px;
  }
  .page_hdr_wrap.food .content_desc_s{

  }
  .page_hdr_wrap.food .content_desc_block{

  }
  .page_hdr_wrap.food .page_hdr_box3_img{

  }
  .page_hdr_wrap.food .page_hdr_box3_img:first-child{

  }
  .page_hdr_wrap.food .page_hdr_box3_img:last-child{

  }
  .food_contents1_img:before{
    padding-top:1000px;
  }

  /*メニュー1*/
  .esthetics_contents2_wrap{

  }
  .food_tt{

  }
  .food_tt_h2{
    font-size: 36px;
  }
  .food_tt_en{

  }
  .food_menu1_items{

  }
  .food_menu1_item{

  }
  .food_menu1_item .esthetics_contents2_item_inner{
    padding: 30px;
  }
  .food_menu1_item .esthetics_contents2_item_parent{

  }
  .food_menu1_item .esthetics_contents2_item_child{

  }
  .food_menu1_item .esthetics_contents2_item_child_left{

  }
  .food_menu1_item .esthetics_contents2_item_child_left_img:before{

  }
  .food_menu1_item .esthetics_contents2_item_child_right{

  }
  .food_menu1_item .esthetics_contents2_item_menu{

  }
  .food_menu1_item .esthetics_contents2_item_menu1{
    font-size: 20px;
  }
  .food_menu1_item .esthetics_contents2_item_menu2{
    font-size: 20px;
  }

  /*メニュー3*/
  .food_menu3_items{
    padding: 56px 50px;
  }
  .food_contents2_wrap .food_menu3_items.drink_02{
    padding: 35px 50px 56px;
  }

  /*news*/
  .food_contents3_tt_ja{
    font-size: 24px;
  }

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

  /*ギャラリー*/
  .food_gallery_items{

  }
  .food_gallery_item{

  }
  .food_gallery_item_img_:before{

  }
  .esthetics_contents6_wrap.food .esthetics_contents6_box2{
    width: 48%;
  }

  .food_menu1_item.half{
    width: 48.8%;
  }
  .food_menu1_item.half:nth-child(n+2){
    margin-top: 0;
  }
}
@media (min-width:1200px){
  /*見出し*/
  .page_hdr_wrap.food{

  }
  .page_hdr_wrap.food .page_hdr_box1{
    width: 26.31%;
    margin-left: -126px;
    padding-top: 121px;
  }
  .page_hdr_wrap.food .page_hdr_box1_img{
    margin-left: 0;
  }
  .page_hdr_wrap.food .page_hdr_box1_img:before{

  }
  .page_hdr_wrap.food .page_hdr_box2{
    justify-content: flex-start;
    width: 55.73%;
    padding-top: 60px;
  }
  .page_hdr_wrap.food .home_contents1_box2_tt{
    font-size: 35px;
  }
  .page_hdr_wrap.food .content_desc_s{

  }
  .page_hdr_wrap.food .content_desc_block{

  }
  .page_hdr_wrap.food .content_desc_block:nth-child(n+2){
    margin-right: 10px;
  }
  .page_hdr_wrap.food .page_hdr_box3{
    width: 27.63%;
    margin-right: -34px;
  }
  .page_hdr_wrap.food .page_hdr_box3_img{
    margin-right: 0;
  }

  .food_contents1_img_outer{
    width: 95.39%;
    position: absolute;
    left: 12.5%;
  }
  .food_contents1_img{
    width: 69.93%;
    margin-right: calc(50% - 41vw);
    margin-left:auto;
  }
  .food_contents1_img_outer:before{
    width: 102%;
    margin-right:0;
    margin-left: 0;
    left: 0;
  }
  .food_contents1_img:before{
    padding-top: 660px;
  }

  /*メニュー1*/
  .esthetics_contents2_wrap{

  }
  .food_tt{

  }
  .food_tt_h2{

  }
  .food_tt_en{

  }
  .food_menu1_items{

  }
  .food_menu1_item{

  }
  .food_menu1_item .esthetics_contents2_item_inner{
    padding: 46px 60px;
  }
  .food_menu1_item .esthetics_contents2_item_parent{

  }
  .food_menu1_item .esthetics_contents2_item_child{

  }
  .food_menu1_item .esthetics_contents2_item_child_left{

  }
  .food_menu1_item .esthetics_contents2_item_child_left_img:before{

  }
  .food_menu1_item .esthetics_contents2_item_child_right{

  }
  .food_menu1_item .esthetics_contents2_item_menu{

  }
  .food_menu1_item .esthetics_contents2_item_menu1{
    width: auto;
    font-size: 20px;
  }
  .food_menu1_item .esthetics_contents2_item_menu2{
    width: auto;
    font-size: 20px;
  }

  .food_contents2_hdr.sasimi .food_contents2_hdr_left{
    width: 40.69%;
  }

  /*コースリスト*/
  .food_menu1_lists{

  }
  .food_menu1_lists p{

  }
  .food_menu1_lists p:nth-child(odd){
    width: 260px;
  }
  .food_menu1_lists p:nth-child(even){
    width: calc(100% - 260px);
  }
  .food_menu1_item .content_desc_s{

  }

  /*メニュー2*/
  .food_menu2_items{
    margin-inline:-20px;
  }
  .food_menu2_item{
    width: 50%;
    padding-inline:20px;
  }
  .food_menu2_item:nth-child(n+2){
    margin-top: 0;
  }
  .food_menu2_item:nth-child(n+3){
    margin-top: 36px;
  }
  .food_menu2_item_inner{

  }
  .food_menu2_item_box1{

  }
  .food_menu2_item_box1_img:before{

  }
  .food_menu2_item_box2{

  }
  .food_menu2_item_box2_tt{

  }
  .food_menu2_item_box2 .esthetics_contents2_item_menu{

  }
  .food_menu2_item_box2 .esthetics_contents2_item_menu2{

  }

  /*メニュー3*/
  .food_menu3_items_inner{
    margin-inline:-30px;
  }
  .food_menu3_items_inner .col-md-6{
    padding-inline:30px;
  }

  /*ドリンク*/
  .food_contents2_wrap{

  }
  .food_contents2_box{
    padding: 60px 60px 0;
  }
  .food_contents2_hdr{

  }
  .food_contents2_hdr_left{

  }
  .food_contents2_hdr_left .food_menu3_items_inner{

  }
  .food_contents2_hdr_left{

  }
  .food_contents2_hdr_right{

  }
  .food_contents2_hdr_right_img:before{

  }
  .food_contents2_hdr .cmn_menu_price1,
  .food_contents2_hdr .cmn_menu_price2{
    font-size: 24px;
  }
  .food_contents2_box{

  }

  /*news*/
  .food_contents3_tt{

  }
  .food_contents3_tt_ja{
    font-size: 30px;
  }
  .food_contents3_tt_en{

  }
  .food_contents3_wrap .content_desc_s{

  }
  .food_contents3_wrap .home_contents7_box2{
    width: 66.6%;
  }
  .food_contents3_wrap .home_contents7_box2 .webgene-item .box1{
    width: 22%;
  }
  .food_contents3_wrap .home_contents7_box2 .webgene-item .box2{
    width: 73.5%;
  }
  .food_contents3_wrap .home_contents7_box2{
    padding-top: 0px;
  }

  .food_contents2_hdr.free .food_contents2_hdr_right_img:before{
    padding-top: 300px;
  }
}
@media (min-width:1470px){
  .page_hdr_wrap.food .content_desc_block:nth-child(n+2){
    margin-right: 38px;
  }
  .page_hdr_wrap.food .page_hdr_box2{
    width: 50.73%;
  }

  .food_menu1_item .esthetics_contents2_item_menu1{
    font-size: 24px;
  }
  .food_menu1_item .esthetics_contents2_item_menu2{
    font-size: 24px;
  }

  .food_contents2_hdr.free .food_contents2_hdr_right_img:before{
    padding-top: 300px;
  }

}
@media (min-width:1720px){
  /*news*/
  .food_contents3_tt_ja{
    font-size: 36px;
  }

  .food_contents2_hdr.free .food_contents2_hdr_right_img:before{
    padding-top: 263px;
  }

  .food_menu1_lists p:nth-child(odd){
    width: 335px;
  }
  .food_menu1_lists p:nth-child(even){
    width: calc(100% - 335px);
  }
}


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

/* セクション設定 */
.pg_company{

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 71.400%;
}


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

.home_contents4_img:after {
  /*  content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
    pointer-events: none;*/

  /*   テキスト位置を“くり抜く” */
  /*  mask-image: radial-gradient(circle at 78% 45%, transparent 35%, black 55%);
    -webkit-mask-image: radial-gradient(circle at 78% 45%, transparent 35%, black 55%);*/
}

/* テキスト本体 */
/*.en_tt {
  position: absolute;
  top: 50%;
  right: -11%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 7.8rem;
  line-height: 1;
  font-weight: 700;
  color: #000;
  mix-blend-mode: difference; 
  z-index: 3;
  pointer-events: none;
}*/

.company_greet{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.company_greet_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.company_greet_box1_en{
  font-size: 30px;
  font-weight: 400;
  font-family: "Cardo", serif;
  line-height: 1;
  letter-spacing: 0;
  color: #0d1e44;
}
.company_greet_box1 .about_contents3_item_tt{
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.company_greet_box1 .content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  margin-top: 20px;
}
.company_greet_box2{
  width: 100%;
  order: 1;
}
.company_greet_box2_img:before{
  padding-top: 100%;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .page_t{
    color: #fff;
    font-size: 24px;
  }

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }


  /* ギャラリー */
  .company_gallery_items{
    margin-left: -10px;
    margin-right: -10px;
  }
  * + .company_gallery_items{
    margin-top: 40px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }

  .company_greet{
    margin-bottom: 100px;
  }
  .company_greet_box1{

  }
  .company_greet_box1_en{
    font-size: 50px;
  }
  .company_greet_box1 .about_contents3_item_tt{
    margin-top: 30px;
  }
  .company_greet_box1 .content_desc{
    font-size: 16px;
    margin-top: 37px;
  }
  .company_greet_box2{
    width: 75%;
    margin-inline:auto;
  }
  .company_greet_box2_img:before{

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


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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

  /* ギャラリー */
  .company_gallery_items{
    margin-left: -15px;
    margin-right: -15px;
  }
  * + .company_gallery_items{
    margin-top: 60px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;
  }

  .company_greet{
    margin-bottom: 160px;
  }
  .company_greet_box1{
    width: 53.6%;
    order: 1;
    margin-top: 0;
  }
  .company_greet_box1_en{
    font-size: 80px;
  }
  .company_greet_box1 .about_contents3_item_tt{
    margin-top: 60px;
  }
  .company_greet_box1 .content_desc{

  }
  .company_greet_box2{
    width: 40.54%;
    padding-top: 10px;
    order: 2;
    margin:0;
  }
  .company_greet_box2_img:before{

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


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


}


