/*common_css*/
@font-face {
    font-family: 'icomoon';
    src:  url('/fonts/icomoon.eot?4b5hyb');
    src:  url('/fonts/icomoon.eot?4b5hyb#iefix') format('embedded-opentype'),
      url('/fonts/icomoon.ttf?4b5hyb') format('truetype'),
      url('/fonts/icomoon.woff?4b5hyb') format('woff'),
      url('/fonts/icomoon.svg?4b5hyb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
  }
  
  [class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
  
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  /* Box sizingの定義 */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  /* デフォルトのpaddingを削除 */
  ul,
  li,
  ul[class],
  ol[class] {
    padding: 0;
  }
  
  /* デフォルトのmarginを削除 */
  body,
  h1,
  h2,
  h3,
  h4,
  p,
  ul[class],
  ol[class],
  ul,
  li,
  figure,
  figcaption,
  blockquote,
  dl,
  dd {
    margin: 0;
  }
  
  /* bodyのデフォルトを定義 */
  body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
  }
  br{
    display: block;
    content: '';
    margin-top: 1.5rem;
}
  /* class属性を持つul、ol要素のリストスタイルを削除 */
  ul[class],
  ol[class] {
    list-style: none;
  }
  
  /* classを持たない要素はデフォルトのスタイルを取得 */
  a:not([class]) {
    text-decoration-skip-ink: auto;
  }
  
  /* img要素の扱いを簡単にする */
  img {
    max-width: 100%;
    display: block;
  }
  
  /* article要素内の要素に自然な流れとリズムを定義 */
  article > * + * {
    margin-top: 1em;
  }
  
  /* inputやbuttonなどのフォントは継承を定義 */
  input,
  button,
  textarea,
  select {
    font: inherit;
  }
  
  /***幅指定***/
  [data-w-width] {
      max-width: 100%;
  }
  
  /*コンテンツ幅での設置*/
  [data-w-width="1"] {
      width: 1170px;
      width:1170px;
      margin: 0 auto;
  }
  @media (max-width: 1169px) {
      [data-w-width="1"] {
          width: calc(100% - 5%);
      } 
  }
  @media (max-width: 768px) {
      [data-w-width="1"] {
          width: calc(100% - 12%);
      } 
  }
  /*リソース設定無い場合とリソース設定がある場合。*/
  /*margin設定はデザインによって変更OK*/
  
  /*ウィンドウ幅での設置*/
  [data-w-width="0"] {
      width: 100%;
  }
  
  /***基本設定***/
  html {
      font-size: 62.5%;
  }
  /*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/
  
  body {
      background: #ffffff;
      background:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
      color: #313131;
      color:#212222;
      line-height: 1.6;
      font-size: 2.1rem;
      font-feature-settings: "palt";
      -webkit-text-size-adjust: 100%;
  }
  @media (max-width: 768px) {
      body {
          font-size:4.2vw;
      }
  }
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  
  
  /***色指定***/
  .-w-txt.-w-background {
      color: #fff;
      color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  .-w-txt.-w-background-r {
      color: #000;
      color:#212222;
  }
  .-w-txt.-w-main {
      color: #001754;
      color:#c32222;
  }
  .-w-txt.-w-main-r {
      color: #fff;
      color:#ffffff;
  }
  .-w-txt.-w-accent {
      color: #4f0506;
      color:#888888;
  }
  .-w-txt.-w-accent-r {
      color: #fff;
      color:#ffffff;
  }
  /*背景色＋テキスト色*/
  .-w-bg.-w-background {
      background: #fff;
      background:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
      color: #000;
      color:#212222;
  }
  .-w-bg.-w-main {
      background: #001754;
      background:#c32222;
      color: #fff;
      color:#ffffff;
  }
  .-w-bg.-w-accent {
      background: #4f0506;
      background:#888888;
      color: #fff;
      color:#ffffff;
  }
  /*反転ver*/
  .-w-bg.-w-background-r {
      background: #000;
      background:#212222;
      color: #fff;
      color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  .-w-bg.-w-main-r {
      background: #fff;
      background:#ffffff;
      color: #001754;
      color:#c32222;
  }
  .-w-bg.-w-accent-r {
      background: #fff;
      background:#ffffff;
      color: #4f0506;
      color:#888888;
  }
  /*hover時背景色指定*/
  a.-w-bg.-w-background:hover {
      background: #000;
      background:#212222;
      color: #fff;
      color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  a.-w-bg.-w-main:hover {
      background: #fff;
      background:#ffffff;
      color: #001754;
      color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  a.-w-bg.-w-accent:hover {
      background: #fff;
      background:#ffffff;
      color: #4f0506;
      color:#888888;
  }
  a.-w-bg.-w-background-r:hover {
      background: #fff;
      background:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
      color: #000;
      color:#212222;
  }
  a.-w-bg.-w-main-r:hover {
      background: #001754;
      background:#c32222;
      color: #fff;
      color:#ffffff;
  }
  a.-w-bg.-w-accent-r:hover {
      background: #4f0506;
      background:#888888;
      color: #fff;
      color:#ffffff;
  }
  
  /***ボーダー色指定***/
  .-w-bd.-w-background {
      border-color: #fff;
      border-color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  .-w-bd.-w-main {
      border-color: #001754;
      border-color:#c32222;
  }
  .-w-bd.-w-accent {
      border-color: #4f0506;
      border-color:#888888;
  }
  .-w-bd.-w-background-r {
      border-color: #000;
      border-color:#212222;
  }
  .-w-bd.-w-main-r {
      border-color: #fff;
      border-color:#ffffff;
  }
  .-w-bd.-w-accent-r {
      border-color: #fff;
      border-color:#ffffff;
  }
  /*hover時ボーダー色指定*/
  a.-w-bd.-w-bg.-w-background-r:hover,
  a.-w-bd.-w-background:hover {
      border-color: #000;
      border-color:#212222;
  }
  a.-w-bd.-w-bg.-w-main-r:hover,
  a.-w-bd.-w-main:hover {
      border-color: #fff;
      border-color:#ffffff;
  }
  a.-w-bd.-w-bg.-w-accent-r:hover,
  a.-w-bd.-w-accent:hover {
      border-color: #fff;
      border-color:#ffffff;
  }
  a.-w-bd.-w-bg.-w-background:hover,
  a.-w-bd.-w-background-r:hover {
      border-color: #000;
      border-color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
  }
  a.-w-bd.-w-bg.-w-main:hover,
  a.-w-bd.-w-main-r:hover {
      border-color: #001754;
      border-color:#c32222;
  }
  a.-w-bd.-w-bg.-w-accent:hover,
  a.-w-bd.-w-accent-r:hover {
      border-color: #4f0506;
      border-color:#888888;
  }
  
  
  /*見出し設定*/
  .-w-ttl_wrap {
      text-align: center;
  }
  .-w-section_inner h3.-w-general{
      text-align: center;
  }
  span.-w-general,
  .-w-ttl-en.-w-font_en,
  .-w-general .-w-font_en,
  .-w-ttl-en.-w-font_en {
      font-size: 4.8rem;
      margin-bottom:1.0rem;
      display: block;
      line-height: 1.0;
      color:#313131;
      color:rgba(33,34,34,1);
  }
  h2.-w-general{
      font-size: 2.5rem;
      margin-bottom: 3.0rem;
      letter-spacing: -2px;
      color:#313131;
      color:rgba(33,34,34,1);
  }
  h3.-w-general{
      font-size: 2.4rem;
      margin-bottom: 3.0rem;
      letter-spacing: -2px;
      color:#EA7C5D;
      color:rgba(195,34,34,1);
  }
  h4.-w-general {
      font-size: 2.0rem;
      color:#313131;
      color:rgba(33,34,34,1);
      margin-bottom: 1.5rem;
  }
  @media (max-width: 1020px) and (min-width: 768px) {
      h2.-w-general {
          font-size: 2.1rem;
      }
      h3.-w-general{
          font-size: 2.05rem;
          letter-spacing: 0;
      }
      h4.-w-general {
          font-size: 1.9rem;
      }
      [data-lib="2578"] table tr th {
          width:20%!important;
      }
  }
  @media (max-width: 768px) {
      .-w-ttl_wrap {
          text-align: center;
      }
      .-w-section_inner h3.-w-general{
          text-align: left;
      }
      span.-w-general,
      .-w-ttl-en.-w-font_en,
      .-w-general .-w-font_en,
      .-w-ttl-en.-w-font_en {
          font-size: 9.0vw;
          text-align: center;
          margin-bottom:1.0rem;
      }
      h2.-w-general {
          margin-bottom: 1.5rem;
          font-size: 5.3vw;
          letter-spacing: 0;
          text-align: left;
          line-height:1.5;
      }
      h3.-w-general{
          font-size: 5.3vw;
          letter-spacing: 0;
          text-align: left;
          margin-bottom: 1.5rem;
      }
      h4.-w-general {
          font-size: 3.1vw;
          text-align: left;
          margin-bottom: 1.5rem;
      }
  }
  /*フェード*/
  @media (min-width: 1024px) {
      .-w-anime-fade {
          opacity: 0;
          transition: all .5s ease-in-out;
          transform: translateY(50px);
      }
      .-w-anime-fade.active {
          opacity: 1;
          transform: translateY(0px);
      }
      
      .-w-anime-fade:nth-child(2){
          transition-delay:0.2s;
      }
      .-w-anime-fade:nth-child(3){
          transition-delay:0.4s;
      }
      .-w-anime-fade:nth-child(4){
          transition-delay:0.6s;
      }
      .-w-anime-fade:nth-child(5){
          transition-delay:0.8s;
      }
      .-w-anime-fade:nth-child(6){
          transition-delay:1s;
      }
      .-w-anime-fade:nth-child(n+7){
          transition-delay:1.2s;
      }
  }
  
  /*ボタン*/
  .-w-more_btn{
      margin-top:3.0rem;
      text-align: center;
  }    
  #foot_fixed .-w-contact_btn a,
  .-w-more_btn a{
      min-width:200px;
      overflow: hidden;
      font-size: 2.1rem;
      font-weight: 700;
      line-height: 1;
      position: relative;
      display: inline-block;
      padding: 1.5rem 6rem;
      cursor: pointer;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      user-select: none;
      -webkit-transition: all 0.3s;
      transition: all 0.3s;
      text-align: center;
      vertical-align: middle;
      text-decoration: none;
      letter-spacing: 0.1em;
      background: #212222 !important;
      color: #ffffff !important;
      border: none !important;
  }
  #foot_fixed .-w-contact_btn a:hover,
  .-w-more_btn a:hover {
      color: #ffffff !important;
  }
  #foot_fixed .-w-contact_btn a span,
  .-w-more_btn a span {
      position: relative;
      z-index: 1;
  }
  #foot_fixed .-w-contact_btn a:hover span,
  .-w-more_btn a:hover span {
      color: #ffffff !important;
  }
  #foot_fixed .-w-contact_btn a:before,
  .-w-more_btn a:before {
      position: absolute;
      bottom: -50%;
      left: calc(-50% + 0px);
      width: 100%;
      height: 100%;
      content: '';
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      -webkit-transform: rotate(45deg) translateX(0) translateY(0);
      transform: rotate(45deg) translateX(0) translateY(0);
      background:rgba(136,136,136,1);
  }
  #foot_fixed .-w-contact_btn a:after,
  .-w-more_btn a:after {
      position: absolute;
      top: -50%;
      right: calc(-50% + 0px);
      width: 100%;
      height: 100%;
      content: '';
      -webkit-transition: all .5s ease-in-out;
      transition: all .5s ease-in-out;
      -webkit-transform: rotate(45deg) translateX(0) translateY(0);
      transform: rotate(45deg) translateX(0) translateY(0);
      background:rgba(136,136,136,1);
  }
  #foot_fixed .-w-contact_btn a:before {
  }
  #foot_fixed .-w-contact_btn a:after {
  }
  .-w-foot-main .-w-more_btn a:before {
  }
  .-w-foot-main .-w-more_btn a:after {
  }
  .-w-more_btn a.current:before,
  #foot_fixed .-w-contact_btn a:hover:before,
  .-w-more_btn a:hover:before {
      left: -50%;
      bottom: -110%;
      width: 150%;
      height: 790%;
  }
  .-w-more_btn a.current:after,
  #foot_fixed .-w-contact_btn a:hover:after,
  .-w-more_btn a:hover:after {
      right: -50%;
      top: -110%;
      width: 150%;
      height: 790%;
  }
  #foot_fixed .-w-contact_btn a:hover:before {
  }
  #foot_fixed .-w-contact_btn a:hover:after {
  }
  .-w-more_btn a span.material-icons::before,
  #foot_fixed table td .-w-contact_btn span.material-icons::before {
      display: none!important;
  }
  .-w-more_btn a span.icon-arrow::before {
      content: none!important;
  }
  @media (max-width: 768px) {
      .-w-more_btn a{
          padding: 15px 10px;
          min-width: 100%;
          font-size: 3.5vw;
      }
      #foot_fixed .-w-contact_btn a:hover,
      .-w-more_btn a:hover {
          background:rgba(33,34,34,1);
      }
      #foot_fixed .-w-contact_btn a:before,
      .-w-more_btn a:before {
      }
      #foot_fixed .-w-contact_btn a:after,
      .-w-more_btn a:after {
      }
      #foot_fixed .-w-contact_btn a:before {
      }
      #foot_fixed .-w-contact_btn a:after {
      }
      .-w-foot-main .-w-more_btn a:before {
      }
      .-w-foot-main .-w-more_btn a:after {
      }
      .-w-more_btn a.current:before,
      .-w-more_btn a:hover:before {
      }
      .-w-more_btn a.current:after,
      #foot_fixed .-w-contact_btn a:hover:after,
      .-w-more_btn a:hover:after {
      }
      #foot_fixed .-w-contact_btn a:hover:before {
      }
      #foot_fixed .-w-contact_btn a:hover:after {
      }
  }
  
  /*ajaxフォーム*/
  .owlet-form{
      position: relative;
      z-index: 1;
      padding: 5.0rem 0;
      border-bottom: 1px solid #dddddd;
      background-color: #fff;
      color:rgba(33,34,34,1);
      background-color:rgba(255,255,255,1);
  }
  .owlet-form .alert {
      font-weight: bold;
      color: #ff0000;
      
          color: hsla(180,100%,50%,1);
      
  }
  .owlet-form .-w-require{
      border-radius: 2px;
      margin-left: 10px;
      font-size: 1.4rem;
      font-weight: normal;
      padding: 5px 8px;
      color:#fff;
      color:rgba(255,255,255,1);
  }
  .owlet-form .require{
      border-radius: 2px;
      margin-left: 10px;
      font-size: 1.4rem;
      font-weight: normal;
      padding: 5px 8px;
      background : #CE0000;
      
          color: hsla(180,100%,40%,1);
      
      color: #fff;
      
          color: hsla(180,0%,100%,1);
      
  }
  .owlet-form table{
      width: 1170px;
      margin:0 auto;
      margin-bottom: 20px;
      border-collapse: collapse;
  }
  .owlet-form table tr {
      box-sizing: border-box;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-bottom: 20px;
  }
  .owlet-form table tr th {
      background: #cecece;
      background:rgba(136,136,136,1);
      color: #313131;
      color:rgba(255,255,255,1);
      width: 25%;
      margin-right:5%;
      padding: 15px 20px;
      font-weight: bold;
      vertical-align: middle;
      text-align:left;
      border-radius: 12px;
      min-width: 250px;
  }
  .owlet-form table tr td {
      border-top: 1px solid ;
      border-color: #dddddd;
      border-color:#888888;
      background: #ffffff;
      color: #313131;
      width: 70%;
      padding: 15px 20px;
      vertical-align: middle;
      border-bottom-right-radius: 12px;
      border-bottom-left-radius: 12px;
      min-width: 785px;
  }
  .owlet-form .owlet-input-sample{
      font-size: 1.6rem;
      padding: 0 10px;
  }
  .owlet-form table input,
  .owlet-form table select,
  .owlet-form table textarea,
  .owlet-form table label,
  .owlet-form table .input_address{
      font-size:1.6rem;
  }
  .owlet-form input.owlet-input-tel1 + span,
  .owlet-form input.owlet-input-tel2 + span{
      font-size:1.6rem;
  }
  .owlet-form input[type="text"]{
      width: 100%;
      box-sizing: border-box;
      padding: 10px;
  }
  .owlet-form input.owlet-input-name-sei[type="text"],
  .owlet-form input.owlet-input-name-mei[type="text"]{
      width: 40%;
      padding: 10px;
      margin: 0 10px 0 0;
  }
  .owlet-form input[type="text"],select {
      min-height: 30px;
      border: 1px solid ;
      border-color: #dddddd;
      border-color:rgba(33,34,34,0.8);
  }
  .owlet-form input.owlet-input-tel1[type="text"],
  .owlet-form input.owlet-input-tel2[type="text"],
  .owlet-form input.owlet-input-tel3[type="text"],
  .owlet-form input.zip1[type="text"],
  .owlet-form input.zip2[type="text"]{
      line-height: 1.2;
      padding: 10px;
      border-radius: 3px;
      min-height: 30px;
      box-sizing: border-box;
      border: 1px solid #dcdcdc;
      width: 115px;
  }
  .owlet-form textarea {
      min-height: 150px;
      line-height: 1.2;
      padding: 10px;
      border-radius: 3px;
      box-sizing: border-box;
      border: 1px solid #dcdcdc;
      width: 100%;
  }
  .owlet-form select {
      line-height: 1.2;
      border-radius: 3px;
      min-height: 30px;
      box-sizing: border-box;
      border: 1px solid #dcdcdc;
      width: 180px;
  }
  .owlet-form .owlet-input-name-sei,
  .owlet-form .owlet-input-name-mei {
      width: 90px;
      margin: 0 5px;
  }
  .owlet-form input[name="input[email]"],
  .owlet-form input[name="input[email_confirm]"] {
      width: 100%;
  }
  .owlet-form .zip1,.owlet-form .zip2 {
      width: 60px;
      margin-bottom: 10px;
  }
  .owlet-form .zip2addr {
      margin-bottom: 10px;
      padding: 10px 13px 6px;
      box-sizing: border-box;
      display: inline-block;
      background:rgba(136,136,136,1);
      color:rgba(255,255,255,1);
  }
  .owlet-form select.prefectures,
  .owlet-form select.city {
      margin: 0 5px 10px 0;
      padding: 10px;
  }
  .owlet-form .address,
  .owlet-form input[name="input[address_address]"],
  .owlet-form input[name="input[address_address2]"],
  .owlet-form input[name="input[address2_address]"],
  .owlet-form input[name="input[address2_address2]"] {
      width: 100%;
      margin-left: 0;
  }
  .owlet-form .address,
  .owlet-form input[name="input[address_address]"] {
      margin-bottom: 5px;
  }
  .owlet-form .owl-datepicker {
      width: 150px;
      margin-right: 5px;
  }
  .owlet-form select[name="input[date_hour]"],
  .owlet-form select[name="input[date_minute]"] {
      margin-right: 5px;
  }
  .owlet-form .owlet-input-tel1,
  .owlet-form .owlet-input-tel2,
  .owlet-form .owlet-input-tel3 {
      width: 60px;
  }
  .owlet-form .owlet-input-tel2,
  .owlet-form .owlet-input-tel3 {
      margin-left: 5px;
  }
  .owlet-form input[name="input[company_name]"] {
      width: 80%;
      line-height: 1.2;
      padding: 2px;
  }
  .owlet-form textarea[name="input[text]"] {
      width: 80%;
  }
  .owlet-form table tr td label {
      display: block;
  }
  .owlet-form input[name="input[select_etc]"],
  .owlet-form input[name="input[radio_etc]"],
  .owlet-form input[name="input[check_etc]"] {
      width: 80%;
      margin-top: 5px;
  }
  .owlet-form .-w-rules-agree {
      text-align: center;
      margin-bottom: 3.0rem;
  }
  .owlet-form .-w-rules-agree a{
      display: inline-block;
  }
  .owlet-form input[type="submit"], .owlet-form input[type="button"] {
      border-radius: 0;
      -webkit-box-sizing: content-box;
      -webkit-appearance: button;
      appearance: button;
      border: none;
      box-sizing: border-box;
      cursor: pointer;
  }
  .owlet-form input[type="button"], .owlet-form select {
      border-radius: 3px;
      min-height: 30px;
      box-sizing: border-box;
      border: 1px solid #dcdcdc;
  }
  .owlet-form .form_button {
      text-align: center;
  }
  
  .owlet-form .form_button input[type="button"],
  .owlet-form .owlet-form-confirm a{
      border-radius: 0px;
      cursor: pointer;
      padding: 8px 5px;
      cursor: pointer;
      width:170px;
      font-size: 1.5rem;
  }
  
  .owlet-form .form_button input[type="button"]{
      border:1px solid;
      border-color:#888888;
      font-family:'Noto Serif JP', serif;
      background-color:#888888;
      color:#ffffff;
  }
  .owlet-form .form_button input[type="button"]:hover {
      background-color:#ffffff;
      color:#888888;
      transition: all .4s;
  }
  
  .owlet-form .owlet-form-confirm a{
      border:1px solid #999;
      background-color: #999;
      color:#fff;
      display: inline-block;
      text-decoration: none;
      margin-left:20px;
  }
  .owlet-form .owlet-form-confirm a:hover{
      border:1px solid #999;
      background-color: #fff;
      color:#999;
      transition: all .4s;
  }
  @media (max-width: 1169px) {
      .owlet-form{
          padding:5.0rem 6%;    
      }
      .owlet-form table{
          width: 100%;
      }
      .owlet-form table tr th,
      .owlet-form table tr td{
          min-width: auto;
      }
      .owlet-form table tr th{
          width: 28%;
          margin-right: 2%;
      }
      .owlet-form table tr td{
          background: ;
      }
  }
  @media (max-width: 768px) {
      .owlet-form table {
      }
      .owlet-form table tr th {
          display: block;
          width: 100%;
          border-bottom: none;
          text-align:left;
          
          margin-bottom: 5px;
          background: none;
          color: #2d65af;
          color:#888888;
          padding: 0;
          min-width: auto;
      }
      .owlet-form table tr td {
          display: block;
          width: 100%;
          padding: 10px 2%;
          border-bottom: none;
          text-align:left;
          border-bottom-right-radius: initial;
          border-bottom-left-radius: initial;
          min-width: auto;
          background:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
      }
      .owlet-form .-w-rules-agree{
          font-size:1.3rem;
      }
      .owlet-form .-w-form_wrap{
          background: none;
      }
      .owlet-form .-w-require{
          color:#888888;
      }
  }
  
  /*
  フォーム 規約
  **************************************/
  .owlet-form .owlet-rules {
      width:1170px;
      margin: 0 auto;
  }
  .owlet-form .owlet-rules-title {
      font-size: 1.6rem;
      font-weight: bold;
      margin-bottom: 1rem;
  }
  .owlet-form .owlet-rules-body {
      height: 200px;
      padding: 1rem;
      border: 1px solid;
      box-sizing: border-box;
      margin-bottom: 2rem;
      overflow-y: scroll;
  }
  .owlet-form .owlet-rules-agree {
      text-align: center;
      margin-bottom: 2rem;
  }
  @media (max-width: 1169px) {
      .owlet-form .owlet-rules{
          width: 100%;
      }
  }
  
  
  /*
   フォント
  ****************************************/
  
  
      body {
          font-family: source-han-sans-cjk-ja, sans-serif;
          font-weight: 300;
          font-style: normal;
          
          font-family:'Noto Serif JP', serif;
          font-style:normal;
          font-weight:300;
      }
          
      /*見出しフォント*/
      .-w-font_title1{
          font-family:'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          font-style:normal;
          font-weight:400;
      }
      /*MVフォント*/
      .-w-font_title2{
          font-family:'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          font-style:normal;
          font-weight:400;
      }
      /*英数字フォント*/
      .-w-font_en{
          font-family:'Cormorant SC', serif, 'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          font-style:normal;
          font-weight:400;
      }
      .-w-font_en_after:after{
          font-family:'Cormorant SC', serif, 'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          font-style:normal;
          font-weight:400;
      }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  @media (max-width: 768px) {
      
      /*
       フォント
      ****************************************/
      
      
          /*見出しフォント*/
          .-w-font_title1,
          h2, h3, h4, h5, h6{
          }
          /*MVフォント*/
          .-w-font_title2,
          th,td,.-w-more_btn a{
          }
          /*英数字フォント*/
          .-w-font_en,
          .-w-ttl_wrap span{
              font-family:'Cormorant SC', serif, 'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          }
          .-w-font_en_after:after{
              font-family:'Cormorant SC', serif, 'Noto Serif JP', serif, 'Noto Serif JP', serif,sans-serif;
          }
      
      
      
      
      
      
      
      
      
      
      
      
      
  }
  
  @media (max-width: 768px) {
      #google_translate_element select {
      font-size:28px;
      }
  }

  /*widget:4d83b776-f137-40ca-b59f-d375b426574a*/[data-lib="15429"]{background:#ffffff;
	background-color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
	background: #2c09ea;
	color:#313131;
	color:#ffffff;
	padding:0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 101;
	min-height: 90px;
	display: flex;
	align-items: center;}[data-lib="15429"].-w-navfixed_off{position: relative;}[data-lib="15429"] .-w-wrapper{width: 100%;
	margin:0 auto;}[data-lib="15429"] a{color:#ffffff;
	text-decoration: none;
	font-size: 1.8rem;}[data-lib="15429"] a:hover{text-decoration: none;}[data-lib="15429"] .-w-h1-wrap h1{font-size:1.2rem;
	line-height: 1.0;
	font-weight: 500;
	text-align: left;
	margin: 5px 0;}[data-lib="15429"] .-w-sp{display: none;}[data-lib="15429"] .-w-header_contents{box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: auto;}[data-lib="15429"] .-w-header_contents.-w-pc{width: 1050px;
	margin: 0 auto;}[data-lib="15429"] .-w-logo{box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 5px 15px;}[data-lib="15429"] .-w-logo a{display: block;}[data-lib="15429"] .-w-logo img{padding:0px;
	background:none;
	object-fit: contain;
	width: 100%;}[data-lib="15429"] .-w-more_btn{margin: 0 10px;}[data-lib="15429"] .right_flex{display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 75%;}[data-lib="15429"] .right_flex a{padding: 10px 10px;
	min-width: 220px;}[data-lib="15429"] .right_flex .tel1,[data-lib="15429"] 
.right_flex .tel2{text-align: right;
	font-size: 3rem;
	font-weight: 700;
	position: relative;
	margin: 0 20px;}[data-lib="15429"] .right_flex .tel1{margin: 0 30px;}[data-lib="15429"] .right_flex .tel2{margin: 0 15px 0 30px;}[data-lib="15429"] .tel2 span{font-size: 1.4rem;
	display: block;
	line-height: 0;
	text-align: center;}[data-lib="15429"] .right_flex .tel1:before{position: absolute;
	content: "";
	width: 1em;
	height: 1em;
	background: url(/_img/ja/cms_parts_library/15443/image/__/)no-repeat center center / cover;
	top: calc(50% - 0.6em);
	left: -1.2em;}[data-lib="15429"] .right_flex .tel2:before{position: absolute;
	content: "";
	width: 1em;
	height: 1em;
	background: url(/_img/ja/cms_parts_library/15444/image/__/)no-repeat center center / cover;
	top: calc(50% - 0.6em);
	left: -1.2em;}[data-lib="15429"] .-w-gnav{display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;}[data-lib="15429"] .-w-gnav ul{display: flex;
	list-style: none;
	justify-content: space-between;
	width: 100%;}[data-lib="15429"] .-w-gnav ul li.-w-menu-item{line-height: 1.0;
	display: flex;
	align-items: center;
	min-height: 40px;
	position: relative;}[data-lib="15429"] .-w-gnav ul li.-w-menu-item:before{position: absolute;
	content: "";
	overflow: hidden;
	width: 0%;
	left: 50%;
	bottom: 0;
	transition: 0.2s ease-in-out 0.15s;
	border-bottom: 3px solid;
	border-color: #ff6600;
	border-color:#888888;}[data-lib="15429"] .-w-gnav ul li.-w-menu-item:hover:before{width: 100%;
	left: 0;
	transition: 0.2s ease-in-out;}[data-lib="15429"] .-w-gnav ul li.-w-menu-item::after{content: "";
	position: absolute;
	width: 1px;
	height: 1em;
	background: #999;
	transform: rotate(30deg);
	left: 2px;}[data-lib="15429"] .-w-gnav ul li a{margin:0;
	padding: 5px 20px 10px;
	height: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
	text-align: center;}[data-lib="15429"] .-w-gnav ul li a span{display: block;
	width: 100%;
	margin-bottom: 5px;
	font-size: .8em;
	font-weight: 300;
	letter-spacing: 2px;
	color:#888888;}[data-lib="15429"] .-w-gnav ul li a:hover{text-decoration: none;
	color: #ff6600;
	color:#888888;}[data-lib="15429"] .-w-menu-item{position: relative;}[data-lib="15429"] .-w-menu-item:before{position: absolute;
	content: "";
	overflow: hidden;
	width: 0%;
	left: 50%;
	bottom: 0;
	transition: 0.2s ease-in-out 0.15s;}[data-lib="15429"] .-w-menu-item:hover:before{width: 100%;
	left: 0%;
	transition: 0.2s ease-in-out;}[data-lib="15429"] .-w-gnav ul li ul.-w-sub-menu li a{flex-direction: initial;}[data-lib="15429"] .-w-sub-menu{position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #FFF;
	background-color:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;
	background: #2c09ea;
	top: 40px;
	padding: 0;
	text-align: left;
	box-shadow: 0px 4px 20px -5px rgba(0, 0, 0, 0.15);
	max-height: 0;
	min-width: 250px;
	opacity: 0;
	z-index: 100;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;}[data-lib="15429"] .-w-sub-menu .-w-menu-item{display: block;}[data-lib="15429"] .-w-menu-item:nth-child(n+2):nth-child(-n+7) .-w-sub-menu-item{list-style-type: none;
	display: block;
	margin: 0;
	position: relative;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	opacity: 0;
	transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;
	visibility: hidden;}[data-lib="15429"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu{max-height: 300px;
	min-width: 300px;
	opacity: 1;}[data-lib="15429"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu-item a{transition: 0.15s ease all;
	padding: 10px;}[data-lib="15429"] .-w-menu-item:nth-child(n+2):nth-child(-n+7):hover .-w-sub-menu-item{-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;}[data-lib="15429"] .-w-menu-item:hover .-w-sub-menu-item:first-child{transition-delay: 0.15s;}[data-lib="15429"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(2){transition-delay: 0.30s;}[data-lib="15429"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(3){transition-delay: 0.45s;}[data-lib="15429"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(4){transition-delay: 0.6s;}[data-lib="15429"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(5){transition-delay: 0.75s;}[data-lib="15429"] .-w-wrap{width: 100%;}[data-lib="15429"] .-w-gnav ul li.-w-menu-item:first-of-type:after{display: none;}@media (max-width: 1023px){[data-lib="15429"]{min-height: 90px;}[data-lib="15429"] .-w-pc{display: none;}[data-lib="15429"] .-w-sp{display: block;}[data-lib="15429"] .-w-sp-menu-btn{top: 0;
	right: 0;}[data-lib="15429"] .-w-sp-menu-btn input{position: fixed;
	opacity: 0;}[data-lib="15429"] .-w-sp-menu-btn label{width: 90px;
	height: 90px;
	position: absolute;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	right: 0;
	top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background:rgba(136,136,136,1);}[data-lib="15429"] .-w-sp-menu-btn label::before{position: fixed;
	z-index: -2;
	height: 100vh;
	top: 90px;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background:rgba(136,136,136,0.9);}[data-lib="15429"] .-w-sp-menu-btn label .-w-burger{position: absolute;
	z-index: 3;
	width: 30px;
	height: 40px;
	margin: 0;
	padding: 0;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="15429"] .-w-sp-menu-btn label .-w-burger::before,[data-lib="15429"] 
.-w-sp-menu-btn label .-w-burger .-w-bar,[data-lib="15429"] 
.-w-sp-menu-btn label .-w-burger::after{position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: 12%;
	content: '';
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background:rgba(255,255,255,1);}[data-lib="15429"] .-w-sp-menu-btn label .-w-burger .-w-bar{top: 44%;}[data-lib="15429"] .-w-sp-menu-btn label .-w-burger::before{top: 5px;
	transform-origin: top left;}[data-lib="15429"] .-w-sp-menu-btn label .-w-burger::after{bottom: 5px;
	transform-origin: bottom left;}[data-lib="15429"] .-w-sp-menu-btn input:focus + label .-w-burger,[data-lib="15429"] 
.-w-sp-menu-btn label:hover .-w-burger{opacity: .75;}[data-lib="15429"] nav#-w-hamburger_menu{height:calc(100vh - 90px);
	padding: 5vh 0 10vh;
	margin-bottom: 5vh;
	width:100%;
	position: fixed;
	top: 90px;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	transform: translate3d(0, 0, 0);
	transform: translateX(-100%);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="15429"] nav#-w-hamburger_menu::before{position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	width: 100%;
	content: '';
	transform: skewX(15deg) translateX(-100%);
	transform-origin: bottom right;
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="15429"] nav#-w-hamburger_menu ul{display:block;
	height:auto;}[data-lib="15429"] nav#-w-hamburger_menu > ul{overflow-y: scroll;
	text-align: left;
	width: 100%;
	margin: 0 0 60px;}[data-lib="15429"] nav#-w-hamburger_menu > ul > li{width: 80%;}[data-lib="15429"] nav#-w-hamburger_menu a{margin: .5em 0;
	display: block;
	padding: 0em 1em;
	font-size: 4vw;
	text-decoration: none;
	font-weight: 500;
	transform: translateX(-100%);
	transition: color .15s, transform .5s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	color:rgba(255,255,255,1);}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(1){transition-delay: 0s, 100ms;}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(2){transition-delay: 0s, 150ms;}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(3){transition-delay: 0s, 200ms;}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(4){transition-delay: 0s, 250ms;}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(5){transition-delay: 0s, 300ms;}[data-lib="15429"] nav#-w-hamburger_menu a:nth-child(6){transition-delay: 0s, 350ms;}[data-lib="15429"] nav#-w-hamburger_menu a:hover,[data-lib="15429"]  nav#-w-hamburger_menu a:focus{font-weight: 700;
	color:rgba(255,255,255,1);}[data-lib="15429"] [id="navcheck"]:checked + label::before{opacity: 1;
	pointer-events: auto;}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger{right:30px;}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger::before,[data-lib="15429"]  [id="navcheck"]:checked + label .-w-burger::after{width: 141.42%;}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger::before{transform: rotate(45deg) translateY(-50%);}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger::after{transform: rotate(-45deg) translateY(50%);}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger .-w-bar{transform: scale(0.1);
	display:none;}[data-lib="15429"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu{transform: translateX(0);}[data-lib="15429"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu::before{transform: skewX(15deg) translateX(0);
	background:rgba(136,136,136,1);}[data-lib="15429"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu a{transform: translateX(0);}[data-lib="15429"] [id="navcheck"]:checked ~ main .-w-content{transform: translateX(3em);
	transform-origin: left center;
	-webkit-filter: blur(2px);
	filter: blur(2px);}[data-lib="15429"] .-w-visuallyhidden{border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;}[data-lib="15429"] .-w-inner{display: none;}[data-lib="15429"] .-w-h1-wrap{display: none;}[data-lib="15429"] .-w-logo{padding: 10px 0;}[data-lib="15429"] .-w-gnav ul li a{padding: 1.2vw;}}@media (max-width: 768px){[data-lib="15429"]{padding:0;
	height:60px;
	min-height: initial;
	background:#ffffff;
	background:rgba(255,255,255,1);
	background: #2c09ea;}[data-lib="15429"] .-w-pc{display: none;}[data-lib="15429"] .-w-sp{display: block;}[data-lib="15429"] .-w-h1-wrap{display: none;}[data-lib="15429"] .-w-logo{max-width: 370px;
	max-height: 60px;
	padding:0 1rem;
	box-sizing: border-box;}[data-lib="15429"] .-w-logo img{padding:0;
	max-height: 45px;
	object-fit: cover;}[data-lib="15429"] .-w-tel-wrap{margin-left:inherit;
	margin-top: inherit;
	width:70%;
	margin:0 auto;}[data-lib="15429"] .-w-sp-menu-btn label{width: 60px;
	height: 60px;}[data-lib="15429"] .-w-sp-menu-btn label::before{top: 60px;}[data-lib="15429"] nav#-w-hamburger_menu{height:calc(100vh - 60px);
	top: 60px;
	padding: 5vh 0 10vh;}[data-lib="15429"] [id="navcheck"]:checked + label .-w-burger{right: 0px;}}/*widget:69a16d0c-648b-4bda-872c-b422ecb7b119*/[data-lib="2839"]{min-width: auto;
	min-height: 4.2rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	top: -4.2rem;
	margin-bottom: -4.2rem;}[data-lib="2839"] ol{margin: 0px;}[data-lib="2839"] ol li:last-child:after{content:none;}[data-lib="2839"] ol li{margin: 0px 4px 0 0;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	color:rgba(255,255,255,1);
	text-shadow: rgba(33,34,34,1) 2px 0px, rgba(33,34,34,1) -2px 0px, rgba(33,34,34,1) 0px -2px, rgba(33,34,34,1) 0px 2px, rgba(33,34,34,1) 2px 2px, rgba(33,34,34,1) -2px 2px, rgba(33,34,34,1) 2px -2px, rgba(33,34,34,1) -2px -2px, rgba(33,34,34,1) 1px 2px, rgba(33,34,34,1) -1px 2px, rgba(33,34,34,1) 1px -2px, rgba(33,34,34,1) -1px -2px, rgba(33,34,34,1) 2px 1px, rgba(33,34,34,1) -2px 1px, rgba(33,34,34,1) 2px -1px, rgba(33,34,34,1) -2px -1px;}[data-lib="2839"] ol li > span{padding: 11px 0;
	display: block;
	text-align:center;}[data-lib="2839"] ol li > a > span{padding: 12px 0 11px;
	display: block;
	text-align:center;}[data-lib="2839"] ol li a{text-decoration: none;
	display: block;
	padding:0 10px 0 30px;
	position:relative;
	min-width: 55px;
	min-height: 37px;
	color:rgba(255,255,255,1);}[data-lib="2839"] ol li:first-child a{padding:0;}[data-lib="2839"] ol li:last-child span{display: block;
	padding:0 10px 0 30px;}[data-lib="2839"] ol li a:hover{text-decoration: none;}[data-lib="2839"] ol li:after{content: ">";
	position: absolute;
	right: -8px;
	top: 10px;
	width: 0;
	height: 0;
	z-index: 2;}[data-lib="2839"] ol li a[itemprop="item"]:after{content: "";
	position: absolute;
	right: -8px;
	top: 0px;
	width: 0;
	height: 0;
	z-index: 1;}@media (max-width: 768px){[data-lib="2839"]{display:none;}}/*widget:c68be05e-b65d-408e-99a4-5ebc1cacf889*/[data-lib="1998"][data-pattern="3"] .pace{-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	position: fixed;
	z-index: 20002;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 1s ease-in-out;
	transition-delay: .5s;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive{z-index: 20001;
	opacity: 0;
	visibility: hidden;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress{position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: width 1s;
	-moz-transition: width 1s;
	-o-transition: width 1s;
	transition: width 1s;
	background-color:#ffffff;
	background-size: 200px auto;
	width: 100% !important;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:before{content: "";
	position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:before{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace-progress-inner{position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background-color:#888888;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress .pace-progress-inner{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: url(/_img/ja/resource/9/logo/) center center no-repeat;
	background-size: inherit;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;
	color: inherit;
	color: inherit;}[data-lib="1998"][data-pattern="3"].logo_off .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: none;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:after{transform: translate(-50%, 100%);}[data-lib="1998"][data-pattern="3"].bg_888888,[data-lib="1998"][data-pattern="3"] 
    .bg_888888 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_888888 .pace-progress-inner{background-color:#888888;}[data-lib="1998"][data-pattern="3"].bg_black .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_black .pace-progress-inner{background-color:#000000;}[data-lib="1998"][data-pattern="3"].bg_white .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_white .pace-progress-inner{background-color:#ffffff;}[data-lib="1998"][data-pattern="3"].bg_gray .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_gray .pace-progress-inner{background-color:#808080;}[data-lib="1998"][data-pattern="3"].bg_yellow .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_yellow .pace-progress-inner{background-color:#ffff00;}[data-lib="1998"][data-pattern="3"].bg_red .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_red .pace-progress-inner{background-color:#ff0000;}[data-lib="1998"][data-pattern="3"].bg_blue .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_blue .pace-progress-inner{background-color:#0000ff;}[data-lib="1998"][data-pattern="3"].bg_green .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_green .pace-progress-inner{background-color:#008000;
	background-color:#008000;}[data-lib="1998"][data-pattern="3"].bg_888888 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_888888 .pace-progress-inner{background-color:#888888;}[data-lib="1998"][data-pattern="1"]{position: fixed;
	top:0;
	left: 0;
	z-index:10000000;
	width:100vw;
	height:100%;
	background-color:#ffffff;
	transition: top 1.5s ease;
	font-size: 34px;}[data-lib="1998"][data-pattern="1"] *{box-sizing: border-box;}[data-lib="1998"][data-pattern="1"] .opening_logo{width: '.resource('loading','logo_size').'px;}[data-lib="1998"][data-pattern="1"] .-w-cl{text-align: center;}[data-lib="1998"][data-pattern="1"] .-w-catch ,[data-lib="1998"][data-pattern="1"]  .-w-logo{position: fixed;
	width:100vw;
	height:100%;
	left:0;
	top:0;
	line-height: 100%;
	opacity:0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="1998"][data-pattern="1"] .-w-screen{width:100vw;
	height:100%;
	background-color:#888888;
	position: absolute;
	left: 0;
	top: 100%;}[data-lib="1998"][data-pattern="1"] .-w-catch span ,[data-lib="1998"][data-pattern="1"]  .-w-logo img{display: inline-block;
	vertical-align: middle;}[data-lib="1998"][data-pattern="1"] .-w-logo img{width: 200px;}[data-lib="1998"][data-pattern="1"].domloaded .-w-catch{transition: opacity 0.5s ease .5s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-catch{transition: opacity 0.5s ease 1.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-logo{transition: opacity 0.5s ease 2.0s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].loaded{top:-200%;}[data-lib="1998"][data-pattern="1"].loaded .-w-catch ,[data-lib="1998"][data-pattern="1"].loaded  .-w-logo{transition: opacity 0.5s ease 0s!important;
	opacity: 0!important;}[data-lib="1998"][data-pattern="1"].loaded .-w-cl{transition: opacity 0.5s ease 2.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="2"]{overflow-y: scroll;
	overflow-x: hidden;
	background: #888888;}[data-lib="1998"][data-pattern="2"] .pace-done{background: #888888;}[data-lib="1998"][data-pattern="2"] #pace{background: #888888;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	z-index: 10000;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo{opacity: 1;
	-webkit-transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo img{display: block;
	margin: 0 auto;
	width: 200px;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo.pace-hide{//opacity: 0;}[data-lib="1998"][data-pattern="2"] #pace .pace-progress{background: #ffffff;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 1;}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-1 .pace-progress{-webkit-transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-2 .pace-progress{-webkit-transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] .pace-activity{align-items: center;
	display: flex;
	height: 100%;
	left: 0;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;
	z-index: 2;}[data-lib="1998"].loader_ .pace-progress,[data-lib="1998"] 
.loader_{color:#;}[data-lib="1998"].loader_black .pace-progress,[data-lib="1998"] 
.loader_black{color:#000000;}[data-lib="1998"].loader_white .pace-progress,[data-lib="1998"] 
.loader_white{color:#ffffff;}[data-lib="1998"].loader_gray .pace-progress,[data-lib="1998"] 
.loader_gray{color:#808080;}[data-lib="1998"].loader_yellow .pace-progress,[data-lib="1998"] 
.loader_yellow{color:#ffff00;}[data-lib="1998"].loader_red .pace-progress,[data-lib="1998"] 
.loader_red{color:#ff0000;}[data-lib="1998"].loader_blue .pace-progress,[data-lib="1998"] 
.loader_blue{color:#0000ff;}[data-lib="1998"].loader_green .pace-progress,[data-lib="1998"] 
.loader_green{color:#008000;}[data-lib="1998"]{background-color:#888888;}[data-lib="1998"] .-w-catch span{font-size: 3.4rem;}@media all and (orientation: landscape){[data-lib="1998"] .pace-progress-inner{top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress .pace-progress-inner{transform: translateX(100%) skewX(-45deg);}[data-lib="1998"] .pace .pace-progress:before{top: 0;
	left: -50%;
	width: 102%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress:before{transform: translateX(-100%) skewX(-45deg);}}@media (max-width: 640px){[data-lib="1998"] .-w-catch span{font-size: 2.4rem;}}/*widget:b2d313e8-4895-4cf8-9d5c-5daec4193f67*/[data-lib="15417"]{padding: 5rem 0;
	position: relative;
	box-sizing: border-box;
	background: #f5f5f5;
	background:#ffffff url(/_img/ja/layout/165/image/_/session/) repeat;}[data-lib="15417"] *{box-sizing: border-box;}[data-lib="15417"] .-w-ttl-wrapper{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	aaa
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding-bottom:3.0rem;
	margin-bottom:3.0rem;
	border-bottom:1px solid rgba(33,34,34,0.8);}[data-lib="15417"] .-w-en{font-size: 4.8rem;
	line-height: 1.0;
	margin-right:1.5rem;}[data-lib="15417"] .-w-right{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;}[data-lib="15417"] h2.-w-general{margin-bottom:0;}[data-lib="15417"] .-w-access-wrapper{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-direction: column;}[data-lib="15417"] .-w-access-wrapper h3.-w-general{text-align: left;
	line-height: 1;
	margin-bottom:3.0rem;}[data-lib="15417"] .-w-access-wrap{width: 50%;}[data-lib="15417"] .-w-summary-wrapper{width: 100%;
	display: flex;
	justify-content: space-between;}[data-lib="15417"] table{width: 100%;
	margin: 0 auto 3.0rem;
	line-height: 1.4;}[data-lib="15417"] table tr th{width:10rem;
	padding: 5px 0;
	vertical-align: middle;
	font-size: 1.6rem;
	text-align: left;
	font-weight: 400;}[data-lib="15417"] table tr td{width:calc(100% - 10rem);
	padding: 5px 15px;
	vertical-align: middle;
	font-size: 1.6rem;
	text-align: left;
	font-weight: normal;}[data-lib="15417"] .-w-access-text{font-size: 1.6rem;
	line-height: 1.4;}[data-lib="15417"] .-w-gmap{width: 100%;
	margin-left: auto;
	height: 25rem;}[data-lib="15417"] .-w-canvas{width: 100%;
	height: 100%;
	margin: 0;
	position: relative;}[data-lib="15417"] .-w-canvas iframe{position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;}[data-lib="15417"] .-w-more_btn{margin-top:4.0rem;}[data-lib="15417"] .-w-sp{display: none;}@media (max-width: 1169px){}@media (max-width: 768px){[data-lib="15417"] .-w-pc{display: none;}[data-lib="15417"] .-w-sp{display: block;}[data-lib="15417"] a[href^="tel:"]{color:#212222;}[data-lib="15417"] .-w-left{margin-bottom:4.0rem;}[data-lib="15417"] .-w-en{font-size: 10vw;
	margin-right:0;}[data-lib="15417"] h2.-w-general{font-size: 6vw;
	font-weight: 500;}[data-lib="15417"] .-w-ttl-wrapper{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="15417"] .-w-access-wrapper{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="15417"] .-w-access-wrap{width: 100%;}[data-lib="15417"] .-w-summary-wrapper{width: 100%;
	margin-bottom:6.0rem;
	display: unset;}[data-lib="15417"] table tr th{width:100%;
	display: block;
	font-size: 5vw;
	padding: 3% 0 0;
	font-weight: 700;}[data-lib="15417"] table tr td{width:100%;
	display: block;
	padding: 3% 0;
	font-size: 4vw;}[data-lib="15417"] .-w-gmap{width: 100%;
	height: 300px;
	margin-top: -5rem;}}/*widget:375f5eb8-1c0e-49d5-be05-480a632bd9eb*/[data-lib="4444"]{position: relative;
	z-index: 103;}[data-lib="4444"] a[href^="tel:"]{cursor: default;}[data-lib="4444"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="4444"] .-w-pc{display: block;}[data-lib="4444"] .-w-sp{display: none;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns ul{list-style: none;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;}[data-lib="4444"] #-w-side_sns ul li{margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li:last-child{margin-bottom:0;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: fixed;
	right: 0px;
	bottom: 110px;
	z-index: 100;
	text-align: center;
	width: 50px;
	background: rgba(20,24,34,0.7);
	background-color: hsla(180,1%,0%,0.6);}[data-lib="4444"] #-w-side_sns.fixed a{display: block;
	padding: 20px 5px;}@media (max-width: 768px){[data-lib="4444"]{z-index: 100;}[data-lib="4444"] .-w-pc{display: none;}[data-lib="4444"] .-w-sp{display: block;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: relative;
	right: 0;
	top: 0;
	bottom:inherit;
	padding:0;
	z-index: 101;
	text-align: center;
	width: 100%;
	background: rgba(20,24,34,0.7);
	background-color: hsla(180,1%,0%,0.6);}[data-lib="4444"] #-w-side_sns ul{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="4444"] #-w-side_sns ul li{width: 24%;
	padding:0;
	margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li img{margin:0 auto;}[data-lib="4444"] #-w-side_sns ul li:last-child{display: none;}}/*widget:da41ff3c-c941-4f33-b2ea-99ca4c2dae8a*/[data-lib="2291"]{padding:5.0rem 0 0 0;
	background:url(/_img/ja/resource/9/common_bg/___/) no-repeat center top;
	background-size:cover;
	position: relative;
	z-index: 100;}[data-lib="2291"] a[href^="tel:"]{cursor: default;}[data-lib="2291"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="2291"] .-w-pc{display: block;}[data-lib="2291"] .-w-sp{display: none;}[data-lib="2291"]::before{content: "";
	background-color: rgba(0,0,0,0.3);
	background-color: hsla(180,1%,0%,0.3);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	top:0;}[data-lib="2291"] .-w-foot-main{display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 5.5rem;}[data-lib="2291"] .-w-more_btn a{width: 370px;
	padding: 30px 0;
	font-size: 1.8rem;}[data-lib="2291"] .-w-more_btn a span.icon-arrow{width:100%;}[data-lib="2291"] .-w-more_btn a span.icon-arrow::before{content: "\e900";
	height: 20px;
	line-height: 1.2;
	padding-left: 1px;
	box-sizing: border-box;
	font-weight: 700;
	width: 20px;
	margin-right: 10px;
	vertical-align: baseline;
	border-radius: 10px;
	font-size: 18px;
	display: inline-block;}[data-lib="2291"] .-w-more_btn a span::before{background-color:#ffffff;
	color:#888888;}[data-lib="2291"] .-w-more_btn a:hover span::before{background-color:#888888;
	color:#ffffff;}[data-lib="2291"] .-w-foot-nav{width:100%;
	padding:45px 0 0;
	background:rgba(0,0,0,0.5);
	background-color: hsla(180,1%,0%,0.5);}[data-lib="2291"] .-w-flogo{margin-bottom: 25px;}[data-lib="2291"] .-w-flogo a{display: block;}[data-lib="2291"] .-w-flogo img{padding:0px;
	background:none;
	object-fit: contain;}[data-lib="2291"] .-w-address{font-size: 2.4rem;
	margin-bottom: 15px;
	color: #ffffff;
	color:#ffffff;}[data-lib="2291"] .-w-tel{font-size: 4.8rem;
	line-height: 1.0;}[data-lib="2291"] .-w-tel a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="2291"] .-w-time{font-size: 2.0rem;
	letter-spacing: 0.2em;
	color: #ffffff;
	color:#ffffff;}[data-lib="2291"] .-w-line-btn{margin-bottom: 10px;}[data-lib="2291"] .-w-line-btn-text{font-size: 1.8rem;
	text-align: center;}[data-lib="2291"] .-w-fnav{width:780px;
	margin:0 auto;}[data-lib="2291"] .-w-fnav ul{display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style:none;}[data-lib="2291"] .-w-fnav ul li{margin:0 10px 10px;
	font-size: 1.4rem;}[data-lib="2291"] .-w-fnav ul li.-w-link8{display: none;}[data-lib="2291"] .-w-fnav ul li a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;
	font-size: 18px;}[data-lib="2291"] .-w-fnav ul li a:hover{color: #ffffff;
	color:#ffffff;
	text-decoration: underline;}[data-lib="2291"] .-w-copyright{color: #ffffff;
	color:#ffffff;
	text-align: center;
	font-size:1.6rem;}[data-lib="2291"] .-w-copyright a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="2291"] .-w-sp-tel{display: none;}[data-lib="2291"] .-w-fixed_off .-w-foot-nav{padding-bottom:5rem;}[data-lib="2291"] .-w-fixed_on .-w-foot-nav{padding-bottom:11rem;}@media (max-width: 768px){[data-lib="2291"] .-w-pc{display: none;}[data-lib="2291"] .-w-sp{display: block;}[data-lib="2291"] .-w-foot-main{padding:0 2rem;}[data-lib="2291"] .-w-address{text-align: center;
	padding: 0 3rem;
	font-size: 3.5vw;}[data-lib="2291"] .-w-line-btn-text{font-size: 1.4rem;}[data-lib="2291"] .-w-fnav{display: none;}[data-lib="2291"] .-w-line-btn img{max-width:60%;
	margin:0 auto;}[data-lib="2291"] .-w-foot-nav{position: static;
	background:none;}[data-lib="2291"] .-w-sp-tel{width:100%;
	display: block;
	position: fixed;
	left:0;
	bottom:0;
	padding: 1rem;
	background:rgba(0,0,0,0.5);
	z-index: 2;}[data-lib="2291"] .-w-tel{font-size: 9vw;}[data-lib="2291"] .-w-tel-wrap{width: 80%;
	margin: 0 auto;
	color:#212222;
	background: url(/_img/ja/cms_parts_library//image/_/) no-repeat left center;
	padding-left: 60px;}[data-lib="2291"] .-w-tel-wrap a{color:#212222;
	text-decoration: none;}[data-lib="2291"] .-w-tel-wrap a:hover{text-decoration: underline;}[data-lib="2291"] .-w-tel-wrap a[href^="tel:"]{cursor: default;}[data-lib="2291"] .-w-tel-wrap a[href^="tel:"]:hover{text-decoration: none;}[data-lib="2291"] .-w-number{font-size:3.0rem;
	line-height: 1.0;
	margin-bottom: 5px;}[data-lib="2291"] .-w-time{font-size:1.4rem;
	margin-bottom:0;}[data-lib="2291"] .-w-fixed_on .-w-foot-nav{background: rgba(0, 0, 0, 0.6);
	padding:15px 1rem 8.0rem;
	margin-top: 5.0rem;}[data-lib="2291"] .-w-fixed_on .-w-foot-nav .-w-copyright{line-height: 1;
	font-size:1.4rem;}[data-lib="2291"] .-w-more_btn{width:100%;}[data-lib="2291"] .-w-more_btn a{width: 100%;
	padding: 20px 15px;}}/*layout:25*/html {
    scroll-behavior: smooth;
}
/* 4025ベース */

/*ヘッダーパーツ　パーツのuuidに変更*/
/* [data-lib-uuid="a0f30f71-6933-4b5f-a007-29834081e605"],
[data-lib-uuid="a0f30f71-6933-4b5f-a007-29834081e605"] .-w-head_main,
[data-lib-uuid="a0f30f71-6933-4b5f-a007-29834081e605"] .-w-sub-menu-item {
    background:url(/_img/ja/layout/165/image/_/) repeat;
} */


/*英語見出しアイコン*/
span.-w-general,
span.-w-en,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en {
    position: relative;
    display: inline-block;
    padding: 0 80px 0;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en {
    position: relative;
    display: inline-block;
    padding: 0 80px 0;
    margin-right:0;
}
span.-w-general:before,
span.-w-general:after,
span.-w-en:before,
span.-w-en:after,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
    content: '';
    width: 61px;
    height: 5px;
    position: absolute;
    top: 50%;
    margin-top: -2.5px;
}
span.-w-general:before,
span.-w-en:before,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before{
    left: 0;
    background: url(/_img/ja/layout/166/image/_/) no-repeat 0 0;
}
span.-w-general:after,
span.-w-en:after,
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
    right: 0;
    background: url(/_img/ja/layout/167/image/_/) no-repeat 0 0;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
    display: inline-block;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2 {
    display: block;
}

[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] h2.-w-general {
}

/*アクセスの調整*/
@media (min-width: 769px) {
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center!important;
        -ms-flex-align: center!important;
        align-items: center!important;
        padding-bottom:1.0rem!important;
    }
}
@media (max-width: 768px) {
    span.-w-general,
    span.-w-en,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en {
        padding: 0 40px 0;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en {
        padding: 0 40px 0;
    }
    span.-w-general:before,
    span.-w-general:after,
    span.-w-en:before,
    span.-w-en:after,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
        width: 35px;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-left {
        margin-bottom: 0;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-summary {
        width:100%;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general {
        text-align: center;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2 {
        text-align: left;
    }
}
@media (max-width: 768px) {
    [data-lib-uuid="f98b2c8e-d255-4988-ae7a-146793eb02a3"],
    [data-lib-uuid="699ba4b3-dacf-4f8f-951e-fd03d62481fe"],
    [data-lib-uuid="46a1a8d3-d501-4874-ba0f-49d3fdc87292"],
    [data-lib-uuid="b7eca080-99d1-42e6-ba61-d0a24fc76ce1"] .-w-wrapper,
    [data-lib-uuid="26745760-ba84-4c3c-b3dc-6ca5b1f26ca3"] .-w-wrapper,
    [data-lib-uuid="35e93c73-f458-483d-a36c-c2331c0810af"] .-w-wrapper {
        padding-top: 7.0rem;
    }
}
/* 4025ベースここまで */

.sp {display: none !important;}
@media (max-width: 768px) {
    .sp {display: block !important;}
    .pc {display: none !important;}
}

/*案件個別4967*/

/*スマホ時のサイトマップフォントサイズ*/
@media (max-width: 768px) {
    [data-lib-uuid="fa1d92c1-b71f-4fbc-89ad-1acb519a6188"] .-w-sitemap{
        font-size:2.5vw;
    }
}

/*お問い合わせのTELとかがずれるやつ*/
[data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents .-w-tel a {
font-size: 3.4rem;
}
[data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > div span {
font-size: 3rem;
}
@media (max-width: 1023px){
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents .-w-tel a {
    font-size: 3vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > div span {
    font-size: 2.8vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > div {
    font-size: 2vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > span {
    font-size: 1.5vw;
    } 
}
@media (max-width: 768px) {
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents .-w-tel a {
    font-size: 8vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > div span {
    font-size: 7vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > div {
    font-size: 4vw;
    }
    [data-lib-uuid="ed188aec-3c7e-42cc-90cd-78066b0ae0dc"] .-w-contents > span {
    font-size: 3.6vw;
    }    
}
/*ここまでお問い合わせのやつ*/
/*layout:155*//* -----下層MV非表示調整----- */
body{
    padding-top: 170px!important;
}
@media (max-width: 768px){
body{
    padding-top: 60px!important;
}
}