@charset "UTF-8";

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
}

:root {
  --color-main-black: #090915;
  --color-sub-black: #16161F;
  --color-main-gray: #FAFAFA;
  --color-sub-gray: #E0E0E0;
  --color-main-gold: #B39855;
  --color-sub-gold: #C3A865;
  --color-red: #901E1E;
  --font-mincho: "fot-tsukuaoldmin-pr6n", sans-serif;
  --font-marcellus: "Marcellus", serif;
}

/* =====================
  fonts
===================== */

/*  icon_f
------------------------*/

.icon_f {
  position: relative;
  padding-left: 23px;
  display: block;
}

.icon_f::before {
  font-family: "Material Symbols Outlined";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0;
  position: absolute;
  left: 0;
}

.icon_f._search::before {
  content: "\e8b6";
}

.icon_f._favorite::before {
  content: "\e87d";
}

.icon_f._login::before {
  content: "\ea77";
}

.icon_f._register::before {
  content: "\e7fe";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._home::before {
  content: "\e88a";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._features::before {
  content: "\e86c";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._premium::before {
  content: "\ead5";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._flow::before {
  content: "\ea19";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._faq::before {
  content: "\e887";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._map::before {
  content: "\e0c8";
  color: var(--color-main-gold);
  left: -3px;
}

.icon_f._down::before {
  content: "\e5c5";
}

.icon_f._pdf::before {
  content: "\e415";
}

.icon_f._mypage::before {
  content: "\e7fd";
  font-variation-settings:
  'FILL' 1;
}

.icon_f._hatena::before {
  content: "\e887";
}

.icon_f._close::before {
  content: "\e5cd";
}

/* =====================
  base
===================== */

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  color: var(--color-main-black);
  background: var(--color-main-gray);
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

svg {
  width: 100%;
  height: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: var(--color-main-black);
}

.flx {
  display: flex;
}

#wrapper {
  position: relative;
  overflow: clip;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.inner,
.inner_s {
  margin: 0 auto;
}

.contents {
  position: relative;
  z-index: 0;
}

.bg_bm {
  background: var(--color-main-black);
}

.bg_bs {
  background: var(--color-sub-black);
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    font
  ===================== */

  /*  icon_f
  ------------------------*/
  
  .icon_f::before {
    font-variation-settings:
      'opsz' 20;
    font-size: 20px;
    top: 4px;
  }

  /* =====================
    base
  ===================== */

  body {
    font-size: 16px;
    line-height: 2;
  }

  .pc_none {
    display: none !important;
  }

  a {
    transition: .3s;
  }

  a:hover {
    opacity: .8;
  }

  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }

  .inner {
    width: 1100px;
    max-width: 92%;
  }

  .inner_s {
    width: 940px;
    max-width: 92%;
  }

  .contents {
    padding: 80px 0;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 32px;
  } 

  .text.lead {
    margin-bottom: 30px;
  }

  /* =====================
    header
  ===================== */
  
  #header,
  #header-clone {
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
  }

  #header::before {
    content: '';
    width: 100%;
    height: 200px;
    display: block;
    opacity: .7;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .header_fixed #header,
  #header-clone {
    height: 140px;
    position: fixed;
  }

  #header-clone {
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateY(-100%);
  }

  .logo {
    width: 180px;
  }

  .menu {
    align-items: center;
    gap: 0 45px;
  }

  .menu ul li {
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 300;
  }
  
  .menu ul li a {
    color: #fff;
  }

  /*  header_top
  ------------------------*/
  
  .header_top {
    justify-content: space-between;
    align-items: center;
    padding: 30px min(50px,4vw) 20px;
  }

  .header_fixed #header .header_top,
  #header-clone .header_top {
    background: var(--color-main-black);
    padding-top: 20px;
  }

  #g_nav ul {
    gap: 0 35px;
  }

  #g_nav ul li a:not(._search) {
    padding-left: 0;
  }

  #g_nav ul li a:not(._search)::before {
    display: none;
  }

  .btn_h {
    width: 120px;
    height: 60px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .btn_h a {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
  }

  .btn_h a::before {
    content: '';
    width: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    clip-path: inset(0 0 0 0);
  } 

  .btn_h a:hover::before {
    animation: lineWipe .6s ease forwards;
  }

  .btn_h a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: rotate(35deg);
    opacity: 1;
  }

  .btn_h a:hover::after {
    animation: slashFade .8s ease forwards;
  }

  /*  header_bottom
  ------------------------*/
   
  .header_bottom {
    justify-content: flex-end;
    padding: 0 50px;
  }

  .header_fixed #header .header_bottom,
  #header-clone .header_bottom {
    height: 40px;
    align-items: center;
    position: relative;
    padding-bottom: 2px;
  }

  .header_fixed #header .header_bottom::before,
  #header-clone .header_bottom::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: var(--color-main-black);
    opacity: .8;
    position: absolute;
    top: 0;
    left: 0;
  }

  .menu.sub ul {
    gap: 0 20px;
  }

  .menu.sub ul li a {
    text-decoration: underline;
  }
  
  /* =====================
    footer
  ===================== */
  
  #footer {
    background: var(--color-main-black);
    padding: 80px 50px;
    justify-content: space-between;
    margin-top: auto;
  }

  /*  footer_left
  ------------------------*/
  
  #footer .logo {
    margin-bottom: 30px;
  }

  #f_nav {
    align-items: flex-start;
    gap: 0 60px;
  }

  #f_nav ul {
    max-width: 200px;
  }

  #f_nav ul li {
    line-height: 1.4;
    position: relative;
    padding-left: 15px;
    margin-bottom: 16px;
  }

  #f_nav ul li::before {
    content: '';
    width: 8px;
    height: 1px;
    display: block;
    background: #fff;
    opacity: .2;
    position: absolute;
    top: 9px;
    left: 0;
  }

  #f_nav ul li:last-child {
    margin-bottom: 0;
  }

  #f_nav ul li a {
    padding-left: 0;
  }

  #f_nav ul li a::before {
    display: none;
  }

  /*  footer_right
  ------------------------*/
  
  .footer_right {
    flex-direction: column;
    align-items: flex-end;
  }

  #footer .btn_h {
    margin-bottom: 20px;
  }

  address {
    font-weight: 300;
    font-size: 10px;
    font-style: normal;
    text-align: right;
    color: #fff;
    margin-top: auto;
  }

  /* =====================
    fv_bg
  ===================== */
    
  .fv_bg {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  .fv_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .fv_bg_track {
    width: max-content;
    will-change: transform;
    animation: scroll-left 60s linear infinite;
  }

  .fv_bg_track li {
    width: auto;
    height: 764px;
  }
  
  .fv_bg_track li img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* =====================
    pr_area
  ===================== */
    
  .pr_item {
    gap: 0 25px;
  }

  .pr_item img {
    height: 72px;
    width: auto;
  }

  .pr_kome {
    font-weight: 300;
    font-size: 10px;
    margin-top: 4px;
  }

  /* =====================
    btn
  ===================== */
 
  .btn {
    width: 250px;
    height: 80px;
    background: var(--color-main-gold);
    font-size: 14px;
    letter-spacing: 0.05em;
    margin: 35px auto 0;
  }

  .btn._red {
    background: var(--color-red);
  }

  .btn a,
  .btn.nolink {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 80px 0 20px;
    color: #fff;
    position: relative;
  }

  .btn.nolink {
    height: 80px;
  }
  
  .btn a::before,
  a .btn_more::before,
  .btn.nolink::before {
    content: '';
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    clip-path: inset(0 0 0 0);
  } 

  .btn a:hover::before,
  a:hover .btn_more::before,
  .btn.nolink:hover::before {
    animation: lineWipe .6s ease forwards;
  }

  @keyframes lineWipe {
    0% {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
    45% {
      clip-path: inset(0 0 0 100%);
      opacity: 0;
    }
    55% {
      clip-path: inset(0 100% 0 0);
      opacity: 0;
    }
    100% {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }

  .btn a::after,
  a .btn_more::after,
  .btn.nolink::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 19px;
    transform: rotate(35deg);
    opacity: 1;
  }

  .btn a:hover::after,
  a:hover .btn_more::after,
  .btn.nolink:hover::after {
    animation: slashFade .8s ease forwards;
  }

  @keyframes slashFade {
    0% {
      opacity: 1;
    }
    45% {
      opacity: 0;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*  btns
  ------------------------*/
  
  .btns {
    gap: 0 25px;
  }

  .btns .btn {
    margin: 0;
  }

  /*  btn_more
  ------------------------*/
  
  .btn_more {
    width: 95px;
    font-family: var(--font-marcellus);
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    margin-left: auto;
    position: relative;
  }

  .btn_more span {
    opacity: .5;
  }

  a .btn_more::before {
    right: 0;
  }

  a .btn_more::after {
    right: -1px;
  }

  /* =====================
    msg
  ===================== */
  
  .msg {
    overflow: hidden;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .msg_track {
    width: max-content;
    will-change: transform;
    animation: scroll-left 180s linear infinite;
  }

  .msg_track img {
    width: auto;
    height: 68px;
    object-fit: cover;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* =====================
    ttl_area
  ===================== */

  .ttl_area {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 30px;
    line-height: 1.4;
    position: relative;
  }

  .ttl_area::before {
    content: '';
    height: 1px;
    background: var(--color-main-black);
    opacity: .2;
    flex-grow: 1;
  }
  
  .ttl_area .en {
    font-family: var(--font-marcellus);
    font-size: 30px;
    letter-spacing: 0.05em;
    color: var(--color-sub-gold);
  }

  .ttl_area .ja {
    font-family: var(--font-mincho);
    font-size: 13px;
    font-weight: 300;
  }

  .bg_bm .ttl_area::before,
  .bg_bs .ttl_area::before {
    background: #fff;
  }

  .bg_bm .ttl_area .ja,
  .bg_bs .ttl_area .ja {
    color: #fff;
  }

  /*  ttl_square
  ------------------------*/
  
  .ttl_square {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
  }

  .ttl_square::before {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    background: var(--color-main-gold);
    border-radius: 2px;
    position: absolute;
    top: 8.5px;
    left: 0;
  }

  .bg_bm .ttl_square,
  .bg_bs .ttl_square {
    color: #fff;
  }
  
  /*  ttl_num
  ------------------------*/
  
  .ttl_num {
    counter-increment: number 1;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    margin: 60px 0 30px;
    position: relative;
  }

  .ttl_num::before {
    content: counter(number)'. ';
  }

  /* =====================
    search
  ===================== */
  
  #search::before {
    content: '';
    width: calc( ( 100vw - 1100px ) / 2 +  322.33px );
    height: 100%;
    display: block;
    background: var(--color-sub-black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .search_box {
    background: var(--color-main-gray);
    border-radius: 10px;
    padding: 40px 45px;
  }

  .search_list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .search_list::after {
    content: '';
    max-width: 320px;
    width: 32%;
  }

  .search_item {
    max-width: 320px;
    width: 32%;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  .search_item:nth-last-child(1),
  .search_item:nth-last-child(2):nth-child(3n+1),
  .search_item:nth-last-child(2):nth-child(3n+2),
  .search_item:nth-last-child(3):nth-child(3n+1) {
    margin-bottom: 0;
  }

  .search_item .ttl {
    padding-left: 18px;
    margin-bottom: 15px;
  }

  .search_item .ttl::before {
    top: 1px;
  }

  .search_item ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 2%;
  }

  .search_item ul::after {
    content: '';
    max-width: 100px;
    width: 32%;
  }

  .search_item ul li {
    max-width: 100px;
    width: 32%;
    height: 30px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 300;
    background: #fff;
    border: 1px solid var(--color-sub-gray);
    overflow: hidden;
    margin-bottom: 10px;
  }

  .search_item ul li:nth-last-child(1),
  .search_item ul li:nth-last-child(2):nth-child(3n+1),
  .search_item ul li:nth-last-child(2):nth-child(3n+2),
  .search_item ul li:nth-last-child(3):nth-child(3n+1) {
    margin-bottom: 0;
  }

  .search_item ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search_item ul li a:hover,
  .search_item ul li a.ac {
    background: var(--color-main-black);
    color: #fff;
  }
  
  /* =====================
    results
  ===================== */
  
  .results_list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px 0;
  }

  .results_list li {
    max-width: 200px;
    width: 19%;
    margin-right: calc( ( 100% - ( min(200px, 19%) * 5 ) ) / 4 );
  }

  .results_list li:nth-child(5n) {
    margin-right: 0;
  }

  /* =====================
    news
  ===================== */

  #news {
    padding-bottom: 180px;
  }

  #news::before {
    content: '';
    width: calc( ( 100vw - 1100px ) / 2 +  778px );
    height: 100%;
    display: block;
    background: var(--color-sub-black);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  #news .inner {
    justify-content: space-between;
  }

  #news .news_ttl {
    width: 395px;
  }
  
  #news .news_list {
    width: calc( 100% - 395px - 30px );
    padding-top: 7px;
  }

  .news_item {
    flex-direction: row-reverse;
    align-items: baseline;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 30px;
  }

  .news_item:last-of-type {
    margin-bottom: 0;
  }

  .news_item a {
    color: #fff;
    text-decoration: underline;
  }

  .news_item .ttl {
    width: calc( 100% - 95px );
    font-size: 15px;
    font-weight: 300;
  }

  .news_item .time {
    width: 95px;
    font-size: 13px;
  }

  #news .btn {
    margin-left: 0;
  }

  /* =====================
    premium
  ===================== */
  
  .premium_item {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    position: relative;
  }

  .premium_item:last-of-type {
    margin-bottom: 0;
  }

  .premium_item::before {
    content: '';
    width: 95px;
    height: 95px;
    display: block;
    background: url(../images/common/ribbon.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -8px;
    left: -8px;
  }

  /*  premium_top
  ------------------------*/
  
  .premium_top {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .premium_img {
    width: 282px;
  }
  
  .top_text {
    width: calc( 100% - 282px - 40px );
    padding-top: 5px;
  }

  .premium_item .ttl {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .premium_item .address {
    font-size: 14px;
    color: #9A9A9A;
    padding-left: 18px;
    margin-bottom: 10px;
  }

  .premium_item .address::before {
    top: 5px;
  }

  .premium_item .data li {
    align-items: baseline;
    font-size: 14px;
    margin-bottom: 5px;
  }

  .premium_item .data li:last-child {
    margin-bottom: 0;
  }

  .premium_item .data_ttl {
    width: 90px;
    height: 25px;
    line-height: 23px;
    display: inline-block;
    background: var(--color-main-black);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 300;
    margin-right: 10px;
  }

  /*  premium_bottom
  ------------------------*/
  
  .premium_bottom {
    justify-content: space-between;
  }

  .premium_slider {
    max-width: 510px;
    width: 50%;
  }

  .premium_slider .slider {
    margin-bottom: 10px;
  }

  .premium_slider .thumbnail .slick-track {
    transform: unset !important;
  }

  .premium_slider .thumbnail li {
    opacity: 0.2;
    transition: opacity .3s linear;
    cursor: pointer;
  }

  .premium_slider .thumbnail .slick-current {
    opacity: 1;
  }

  .premium_text {
    max-width: 480px;
    width: 47.5%;
    flex-direction: column;
  }

  .premium_text .data_ttl {
    margin: 0 0 10px;
  }

  .premium_text .text {
    margin-bottom: 30px;
  }

  .premium_text .btn {
    margin: auto 0 0 auto;
  }

  /* =====================
    cv_area
  ===================== */

  .cv_area {
    background: url(../images/common/cv_bg.jpg) no-repeat center left;
    background-size: cover;
    color: #fff;
  }
  
  .cv_area::before {
    content: '';
    width: calc((100vw - 1100px) / 2 + 778px);
    height: 100%;
    display: block;
    background: var(--color-sub-black);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .cv_list {
    max-width: 700px;
    width: 64%;
    margin-left: auto;
  }

  .cv_item {
    width: 650px;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .cv_item:last-of-type {
    margin-bottom: 0;
  }

  .cv_item:nth-of-type(even) {
    margin-left: auto;
  }

  .cv_item .ttl {
    font-family: var(--font-mincho);
    font-weight: 300;
    font-size: 25px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
  }

  .cv_item .ttl::before {
    content: '';
    height: 1px;
    background: #fff;
    opacity: .2;
    flex-grow: 1;
  }

  .cv_item .btn {
    margin-right: 0;
    margin-top: 15px;
  }

  /* =====================
    category
  ===================== */

  .category_scroll {
    width: 100vw;
    margin: 0 calc( 50% - 50vw );
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category_scroll::-webkit-scrollbar {
    display: none;
  }
  
  .category_list {
    width: max-content;
    margin: 0 calc( ( 100% - 1100px ) / 2 );
    gap: 0 30px;
  }
  
  .category_item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 322px;
    height: 480px;
    border-radius: 10px;
    overflow: hidden;
  }

  .category_item a {
    flex-direction: column;
    height: 100%;
    padding: 25px 30px;
    position: relative;
  }

  .category_item a::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }

  .category_img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .category_img img {
    height: 100%;
    object-fit: cover;
  }

  .category_text {
    color: #fff;
    margin-top: auto;
    position: relative;
  }

  .category_text .ttl {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .category_text .text {
    font-size: 14px;
  }

  /* =====================
    job
  ===================== */

  .job_list {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .job_list::before,
  .job_list::after {
    content: '';
    max-width: 255px;
    width: 24%;
  }

  .job_list::before {
    order: 1;
  }
  
  .job_item {
    max-width: 255px;
    width: 24%;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background: #fff;

  }

  .job_item:nth-last-child(1),
  .job_item:nth-last-child(2):nth-child(4n+1),
  .job_item:nth-last-child(2):nth-child(4n+2),
  .job_item:nth-last-child(2):nth-child(4n+3),
  .job_item:nth-last-child(3):nth-child(4n+1),
  .job_item:nth-last-child(3):nth-child(4n+2),
  .job_item:nth-last-child(4):nth-child(4n+1){
    margin-bottom: 0;
  }

  .job_item a {
    flex-direction: column-reverse;
  }

  .job_img {
    width: 100%;
    height: 0;
    padding-bottom: 52.5%;
    position: relative;
  }

  .job_img img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    position: absolute;
    top: 0;
    left: 0;
  }

  .job_text {
    border-radius: 0 0 10px 10px;
    padding: 15px;
    position: relative;
  }

  .place {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-main-gold);
    letter-spacing: 0.02em;
    line-height: 1.4;
    padding-left: 17px;
    margin-bottom: 5px;
  }

  .place::before {
    top: -1px;
  }

  .job_text .ttl {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
    margin-bottom: 13px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .job_text .data li {
    display: flex;
    align-items: baseline;
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 1.4;
  }

  .job_text .data li:last-child {
    margin-bottom: 0;
  }

  .job_text .data_ttl {
    width: 68px;
    display: inline-block;
    background: var(--color-main-gray);
    border: 1px solid var(--color-sub-gray);
    font-weight: 300;
    padding: 1px 8px;
    border-radius: 2px;
    margin-right: 10px;
  } 

  .job_shokai {
    display: inline-block;
    background: var(--color-red);
    height: 22px;
    line-height: 20px;
    font-size: 11px;
    font-weight: 300;
    color: #fff;
    padding: 0 7px;
    border-radius: 2px;
    position: absolute;
    top: -8px;
    right: 10px;
    z-index: 1;
  }

  /* =====================
    faq
  ===================== */

  #faq .ttl_area {
    margin-bottom: 40px;
  }
  
  .faq_item {
    padding: 30px 35px 35px;
    background: var(--color-sub-black);
    margin-bottom: 15px;
    color: #fff;
  }

  .faq_item:last-of-type {
    margin-bottom: 0;
  }

  .faq_item .question,
  .faq_item .answer {
    padding-left: 45px;
    position: relative;
  }

  .faq_item .question {
    font-family: var(--font-mincho);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 17px;
  }

  .faq_item .question::before,
  .faq_item .answer::before {
    width: 18px;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-marcellus);
    color: var(--color-sub-gold);
    position: absolute;
    left: -4px;
  }

  .faq_item .question::before {
    content: 'Q';
    top: 4px;
  }

  .faq_item .answer::before {
    content: 'A';
    top: 7px;
  }
  
  /* =====================
    local_nav
  ===================== */

  #local_nav {
    overflow: hidden;
  }
  
  #local_nav::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .local_nav_item {
    min-height: 187px;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 35px 50px;
    margin-bottom: 20px;
    color: #fff;
  }

  .local_nav_item:last-of-type {
    margin-bottom: 0;
  }

  .local_nav_text {
    width: calc( 100% - 250px - 40px );
  }

  .local_nav_text .ttl {
    font-family: var(--font-mincho);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
  }

  .local_nav_text .ttl::before {
    content: '';
    width: 50px;
    height: 1px;
    display: block;
    background: var(--color-main-gold);
    opacity: .7;
    position: absolute;
    top: 16px;
    left: -75px;
  }

  .local_nav_item .btn {
    margin: 0;
  }

  /* =====================
    fv
  ===================== */

  #fv {
    position: relative;
    z-index: 0;
  }

  #fv::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
  }

  #fv .inner {
    height: 400px;
  }
  
  #fv .fv_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #fv .fv_img img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  #fv .ttl_area {
    width: 322px;
    height: 100%;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: start;
    position: relative;
    margin-bottom: 0;
    padding-top: 70px;
    z-index: 0;
  }

  #fv .ttl_area::before {
    display: none;
  }

  #fv .ttl_area::after {
    content: '';
    width: calc(100% + 160px);
    height: 100%;
    background: var(--color-main-black);
    position: absolute;
    top: 0;
    left: -80px;
    z-index: -1;
  }

  #fv .ttl_area .en {
    font-size: 40px;
  }

  #fv .ttl_area .ja {
    font-size: 16px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* =====================
    breadcrumbs
  ===================== */

  #breadcrumbs {
    background: #EFEFEF;
    padding: 10px 0;
  }

  #breadcrumbs ol li {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    padding-right: 25px;
    margin-right: 10px;
    white-space: nowrap;
  }

  #breadcrumbs ol li::before {
    content: '';
    width: 15px;
    height: 1px;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  #breadcrumbs ol li:last-child {
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #breadcrumbs ol li:last-child::before {
    display: none;
  }

  #breadcrumbs ol li br {
    display: none;
  }

  #breadcrumbs ol li a {
    text-decoration: underline;
  }
  
  /* =====================
    post
  ===================== */
  
  .post {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 50px 80px 30px;
  }

  .post_ttl {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.6;
  }

  /* =====================
    table
  ===================== */
  
  .table {
    width: 100%;
  }

  .table th,
  .table td {
    font-size: 16px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(9, 9, 21, 0.2);
    padding: 20px 0;
  }

  .table tr:first-of-type th,
  .table tr:first-of-type td {
    border-top: 1px solid rgba(9, 9, 21, 0.2);
  }

  .table th {
    width: 200px;
    padding-right: 20px;
    font-weight: 500;
    text-align: left;
  }

  .table td {
    width: calc( 100% - 200px );
  }

  .table a:not([class],[href^="tel:"]) {
    text-decoration: underline;
  }

  /* =====================
    list
  ===================== */

  /*  list_disc
  ------------------------*/
    
  .list_disc li,
  ul.wp-block-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 2px;
  }

  .list_disc li::before,
  ul.wp-block-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: var(--color-main-black);
    opacity: .2;
    position: absolute;
    top: 14px;
    left: 0;
  }

  .list_disc li:last-child,
  ul.wp-block-list li:last-child {
    margin-bottom: 0;
  }

  /*  list_num
  ------------------------*/
  
  .list_num,
  ol.wp-block-list {
    counter-reset: number 0;
    margin: 20px 0 ;
  }

  .list_num li,
  ol.wp-block-list li {
    counter-increment: number 1;
    position: relative;
    padding-left: 45px;
  }

  .list_num li::before,
  ol.wp-block-list li::before {
    content: '（'counter(number)'）';
    position: absolute;
    top: 0;
    left: 0;
  }

  /* =====================
    PC調整
  ===================== */
  
  @media screen and (max-width:1195px) {

    /* =====================
      category
    ===================== */
    
    .category_list {
      margin: 0 4%;
    }



  }

}

/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/

@media screen and (max-width:899px) {

  /*  icon_f
  ------------------------*/
  
  .icon_f::before {
    font-variation-settings:
      'opsz' 18;
    font-size: 18px;
    top: 2px;
  }

  /* =====================
    base
  ===================== */

  body {
    font-size: 14px;
    line-height: 1.8;
  }

  .sp_none {
    display: none !important;
  }

  #wrapper {
    padding-top: 60px;
  }

  .inner,
  .inner_s {
    width: 92%;
    max-width: 500px;
  }

  .contents {
    padding: 40px 0;
  }

  .text p:not(:last-of-type) {
    margin-bottom: 16px;
  } 

  .text.lead {
    margin-bottom: 15px;
  }

  /* =====================
    header
  ===================== */
  
  #header {
    width: 100%;
    height: 60px;
    background: var(--color-main-black);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }

  #header-clone {
    display: none !important;
  }

  .logo {
    width: 110px;
  }

  .menu ul li {
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 1.4;
  }
  
  .menu ul li a {
    color: #fff;
  }

  .menu.sub ul {
    justify-content: center;
    align-items: center;
    gap: 0 20px;
  }

  .menu.sub ul li a {
    text-decoration: underline;
  }

  /*  header_top
  ------------------------*/
  
  .header_top {
    height: 100%;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
  }

  #g_nav {
    width: 100%;
    height: calc( 100vh - 60px );
    display: block;
    background: var(--color-sub-black);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    position: fixed;
    top: 60px;
    left: 0;
  }
  
  .menu_open #g_nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
 
  #g_nav ul {
    display: block;
  }

  .btn_h {
    width: 120px;
    height: 60px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .btn_h a {
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    color: #fff;
    position: relative;
  }

  .btn_h a::before {
    content: '';
    width: 25px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    clip-path: inset(0 0 0 0);
  } 

  .btn_h a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: rotate(35deg);
    opacity: 1;
  }

  .manu_main {
    margin-bottom: 25px;
  }

  .manu_main li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .manu_main li a {
    display: block;
    padding: 17px 20px 17px 50px;
  }

  .manu_main li a::before {
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: var(--color-sub-gray);
  }

  .menu_sub {
    padding: 0 20px;
  }

  .menu_sub li {
    font-weight: 300;
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
  }

  .menu_sub li:last-child {
    margin-bottom: 0;
  }

  .menu_sub li::before {
    content: '';
    width: 8px;
    height: 1px;
    display: block;
    background: #fff;
    opacity: .2;
    position: absolute;
    top: 9px;
    left: 0;
  }

  /*  sp_nav
  ------------------------*/
  
  #sp_nav {
    margin-left: auto;
  }

  #sp_nav ul {
    gap: 0 12px;
  }

  #sp_nav ul li {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #sp_nav ul li a,
  #sp_nav ul li.menu_trigger > span {
    padding: 16px 0 0;
    position: relative;
  }

  #sp_nav ul li a > span,
  #sp_nav ul li.menu_trigger > span {
    color: #fff;
    font-size: 10px;
    transform: scale(0.9);
  }

  #sp_nav ul li .icon_f::before {
    color: var(--color-sub-gray);
    font-size: 18px;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu_trigger {
    width: 60px;
    background: var(--color-sub-black);
    position: relative;
  }

  .menu_trigger .hum {
    width: 15px;
    height: 10px;
    position: absolute;
    top: 17px;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu_trigger .hum span {
    width: 100%;
    height: 1.2px;
    border-radius: 10px;
    background: var(--color-sub-gray);
    display: block;
    position: absolute;
    left: 0;
    transition: .3s;
  }

  .menu_trigger .hum span:nth-child(1) {
    top: 0;
  }

  .menu_trigger .hum span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }

  .menu_trigger .hum span:nth-child(3) {
    bottom: 0;
  }

  .menu_open .hum span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu_open .hum span:nth-child(2) {
    opacity: 0;
  }

  .menu_open .hum span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }
  
  /* =====================
    footer
  ===================== */
  
  #footer {
    background: var(--color-main-black);
    padding: 50px 0 20px;
    display: block;
    margin-top: auto;
  }
  
  /*  footer_left
  ------------------------*/
  
  .footer_left {
    margin-bottom: 50px;
  }

  #footer .logo {
    width: 140px;
    margin: 0 auto 25px;
  }

  #f_nav {
    display: block
  }

  #f_nav .manu_main li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /*  footer_right
  ------------------------*/
  
  .footer_right {
    display: block;
  }

  #f_sub {
    justify-content: center;
  }

  #footer .btn_h {
    margin: 0 auto 20px;
  }

  address {
    font-weight: 300;
    font-size: 10px;
    font-style: normal;
    text-align: right;
    color: #fff;
    text-align: center;
    margin-top: 50px;
  }

  /* =====================
    fv_bg
  ===================== */
    
  .fv_bg {
    overflow: hidden;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }

  .fv_bg::before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  
  .fv_bg_track {
    width: max-content;
    will-change: transform;
    animation: scroll-left 60s linear infinite;
  }

  .fv_bg_track li {
    width: auto;
    height: 764px;
  }
  
  .fv_bg_track li img {
    width: auto;
    height: 100%;
    object-fit: cover;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* =====================
    pr_area
  ===================== */
    
  .pr_item {
    gap: 0 15px;
    justify-content: center;
  }

  .pr_item img {
    height: 45px;
    width: auto;
  }

  .pr_kome {
    font-weight: 300;
    font-size: 10px;
    margin-top: 5px;
    text-align: center;
  }

  /* =====================
    btn
  ===================== */
 
  .btn {
    width: 220px;
    height: 70px;
    background: var(--color-main-gold);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    margin: 20px auto 0;
  }

  .btn._red {
    background: var(--color-red);
  }

  .btn a,
  .btn.nolink {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 70px 0 20px;
    color: #fff;
    position: relative;
  }

  .btn.nolink {
    height: 70px;
  }
  
  .btn a::before,
  a .btn_more::before,
  .btn.nolink::before {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    clip-path: inset(0 0 0 0);
  } 

  @keyframes lineWipe {
    0% {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
    45% {
      clip-path: inset(0 0 0 100%);
      opacity: 0;
    }
    55% {
      clip-path: inset(0 100% 0 0);
      opacity: 0;
    }
    100% {
      clip-path: inset(0 0 0 0);
      opacity: 1;
    }
  }

  .btn a::after,
  a .btn_more::after,
  .btn.nolink::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: 19px;
    transform: rotate(35deg);
    opacity: 1;
  }

  @keyframes slashFade {
    0% {
      opacity: 1;
    }
    45% {
      opacity: 0;
    }
    55% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*  btns
  ------------------------*/
  
  .btns {
    justify-content: center;
    gap: 0 15px;
  }

  .btns .btn {
    margin: 0;
  }

  /*  btn_more
  ------------------------*/
  
  .btn_more {
    width: 95px;
    font-family: var(--font-marcellus);
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
    margin-left: auto;
    position: relative;
  }

  .btn_more span {
    opacity: .5;
  }

  a .btn_more::before {
    right: 0;
  }

  a .btn_more::after {
    right: -1px;
  }

  /* =====================
    msg
  ===================== */
  
  .msg {
    overflow: hidden;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  .msg_track {
    width: max-content;
    will-change: transform;
    animation: scroll-left 180s linear infinite;
  }

  .msg_track img {
    width: auto;
    height: 34px;
    object-fit: cover;
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* =====================
    ttl_area
  ===================== */

  .ttl_area {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 20px;
    line-height: 1.4;
    position: relative;
  }

  .ttl_area::before {
    content: '';
    height: 1px;
    background: var(--color-main-black);
    opacity: .2;
    flex-grow: 1;
  }
  
  .ttl_area .en {
    font-family: var(--font-marcellus);
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--color-sub-gold);
  }

  .ttl_area .ja {
    font-family: var(--font-mincho);
    font-size: 10px;
    font-weight: 300;
  }

  .bg_bm .ttl_area::before,
  .bg_bs .ttl_area::before {
    background: #fff;
  }

  .bg_bm .ttl_area .ja,
  .bg_bs .ttl_area .ja {
    color: #fff;
  }

  /*  ttl_square
  ------------------------*/
   
  .ttl_square {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    position: relative;
    padding-left: 23px;
    margin-bottom: 25px;
  }

  .ttl_square::before {
    content: '';
    width: 13px;
    height: 13px;
    display: block;
    background: var(--color-main-gold);
    border-radius: 2px;
    position: absolute;
    top: 7px;
    left: 0;
  }

  .bg_bm .ttl_square,
  .bg_bs .ttl_square {
    color: #fff;
  }
  
  /*  ttl_num
  ------------------------*/
   
  .ttl_num {
    counter-increment: number 1;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin: 35px 0 20px;
    position: relative;
  }

  .ttl_num::before {
    content: counter(number)'. ';
  }

  /* =====================
    search
  ===================== */
  
  #search::before {
    content: '';
    width: 33%;
    height: 100%;
    display: block;
    background: var(--color-sub-black);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .search_box {
    background: var(--color-main-gray);
    border-radius: 8px;
    padding: 20px;
  }

  .search_list {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .search_list::after {
    content: '';
    max-width: 320px;
    width: 32%;
  }

  .search_item .ttl {
    padding-left: 18px;
    margin-bottom: 15px;
  }

  .search_item .ttl::before {
    top: 3.5px;
  }

  .search_item ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0 2%;
  }

  .search_item ul::after {
    content: '';
    width: 32%;
  }

  .search_item ul li {
    width: 32%;
    height: 30px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 300;
    background: #fff;
    border: 1px solid var(--color-sub-gray);
    overflow: hidden;
    margin-bottom: 8px;
  }

  .search_item ul li:nth-last-child(1),
  .search_item ul li:nth-last-child(2):nth-child(3n+1),
  .search_item ul li:nth-last-child(2):nth-child(3n+2),
  .search_item ul li:nth-last-child(3):nth-child(3n+1) {
    margin-bottom: 0;
  }

  .search_item ul li a {
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 22px;
  }

  .search_item ul li a._map::before {
    top: 5px;
    left: 3px;
  }
  
  /* =====================
    results
  ===================== */
  
  .results_list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 8px;
  }

  .results_list li {
    width: 31%;
  }

  .results_list li:nth-child(5n) {
    margin-right: 0;
  }

  /* =====================
    news
  ===================== */

  #news {
    padding-bottom: 80px;
    background: var(--color-sub-black);
  }

  #news .inner {
    display: block;
  }

  .news_item {
    flex-direction: row-reverse;
    align-items: baseline;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 15px;
  }

  .news_item:last-of-type {
    margin-bottom: 0;
  }

  .news_item a {
    color: #fff;
    text-decoration: underline;
  }

  .news_item .ttl {
    width: calc( 100% - 85px );
    font-size: 13px;
    font-weight: 300;
  }

  .news_item .time {
    width: 85px;
    font-size: 12px;
  }

  #news .btn {
    margin-top: 30px;
  }

  /* =====================
    premium
  ===================== */
  
  .premium_item {
    background: #fff;
    border-radius: 8px;
    padding: 20px 20px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    position: relative;
  }

  .premium_item:last-of-type {
    margin-bottom: 0;
  }

  .premium_item::before {
    content: '';
    width: 40px;
    height: 40px;
    display: block;
    background: url(../images/common/ribbon.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: -4px;
    left: -4px;
  }

  /*  premium_top
  ------------------------*/
  
  .premium_top {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }

  .premium_img {
    margin-bottom: 15px;
  }

  .premium_item .ttl {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 5px;
  }

  .premium_item .address {
    font-size: 12px;
    color: #9A9A9A;
    padding-left: 18px;
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .premium_item .address::before {
    top: 1px;
  }

  .premium_item .data li {
    align-items: baseline;
    font-size: 12px;
    margin-bottom: 3px;
  }

  .premium_item .data li:last-child {
    margin-bottom: 0;
  }

  .premium_item .data_ttl {
    width: 60px;
    height: 20px;
    line-height: 19px;
    display: inline-block;
    background: var(--color-main-black);
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 11px;
    font-weight: 300;
    margin-right: 8px;
  }

  /*  premium_bottom
  ------------------------*/
  
  .premium_bottom {
    justify-content: space-between;
    display: block;
  }

  .premium_slider {
    margin-bottom: 20px;
  }

  .premium_slider .slider {
    margin-bottom: 5px;
  }

  .premium_slider .thumbnail .slick-track {
    transform: unset !important;
  }

  .premium_slider .thumbnail li {
    opacity: 0.2;
    transition: opacity .3s linear;
    cursor: pointer;
  }

  .premium_slider .thumbnail .slick-current {
    opacity: 1;
  }

  .premium_text {
    flex-direction: column;
  }

  .premium_text .data_ttl {
    margin: 0 0 8px;
  }

  .premium_text .text {
    font-size: 13px;
  }

  /* =====================
    cv_area
  ===================== */

  .cv_area {
    background: url(../images/common/cv_bg.jpg) no-repeat center left;
    background-size: cover;
    color: #fff;
  }
  
  .cv_area::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: var(--color-sub-black);
    opacity: .9;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }

  .cv_list {
    padding: 0 10px;
  }

  .cv_item {
    width: 90%;
    margin-bottom: 40px;
  }

  .cv_item:last-of-type {
    margin-bottom: 0;
  }

  .cv_item:nth-of-type(even) {
    margin-left: auto;
  }

  .cv_item .ttl {
    font-family: var(--font-mincho);
    font-weight: 300;
    font-size: 20px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
  }

  .cv_item .ttl::before {
    content: '';
    height: 1px;
    background: #fff;
    opacity: .2;
    flex-grow: 1;
  }

  .cv_item .btn {
    margin-right: 0;
    margin-top: 15px;
  }

  /* =====================
    category
  ===================== */

  .category_scroll {
    width: 100vw;
    margin: 0 calc( 50% - 50vw );
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .category_scroll::-webkit-scrollbar {
    display: none;
  }
  
  .category_list {
    width: max-content;
    margin: 0 4%;
    gap: 0 20px;
  }
  
  .category_item {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 220px;
    height: 327px;
    border-radius: 8px;
    overflow: hidden;
  }

  .category_item a {
    flex-direction: column;
    height: 100%;
    padding: 20px 25px;
    position: relative;
  }

  .category_item a::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
  }

  .category_img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .category_img img {
    height: 100%;
    object-fit: cover;
  }

  .category_text {
    color: #fff;
    margin-top: auto;
    position: relative;
  }

  .category_text .ttl {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .category_text .text {
    font-size: 12px;
  }

  /* =====================
    job
  ===================== */

  .job_list {
    display: block;
  }
  
  .job_item {
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    background: #fff;
  }

  .job_item:last-of-type {
    margin-bottom: 0;
  }

  .job_item a {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 10px;
  }

  .job_img {
    width: 100px;
    height: 0;
  }

  .job_img img {
    height: 100px;
    object-fit: cover;
  }

  .job_text {
    width: calc( 100% - 100px - 10px);
    position: relative;
  }

  .place {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-main-gold);
    letter-spacing: 0.02em;
    line-height: 1.4;
    padding-left: 15px;
    margin-bottom: 2px;
  }

  .place::before {
    top: 0.5px;
    font-size: 15px;
  }

  .job_text .ttl {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    text-decoration: underline;
    margin-bottom: 10px;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }

  .job_text .data {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 0;
  }

  .job_text .data li {
    display: flex;
    align-items: baseline;
    width: 50%;
    font-size: 10px;
    line-height: 1.4;
  }

  .job_text .data li:first-child {
    width: 100%;
  }

  .job_text .data_ttl {
    width: 60px;
    display: inline-block;
    background: var(--color-main-gray);
    border: 1px solid var(--color-sub-gray);
    font-weight: 300;
    padding: 1px 8px;
    border-radius: 2px;
    margin-right: 5px;
  } 

  .job_shokai {
    display: inline-block;
    background: var(--color-red);
    height: 18px;
    line-height: 17px;
    font-size: 10px;
    font-weight: 300;
    color: #fff;
    padding: 0 7px 0 5px;
    border-radius: 0 8px 0 2px;
    position: absolute;
    top: -10px;
    right: -10px;
    z-index: 1;
  }

  /* =====================
    faq
  ===================== */

  .faq_item {
    padding: 20px 20px 25px;
    background: var(--color-sub-black);
    margin-bottom: 10px;
    color: #fff;
  }

  .faq_item:last-of-type {
    margin-bottom: 0;
  }

  .faq_item .question,
  .faq_item .answer {
    padding-left: 29px;
    position: relative;
  }

  .faq_item .question {
    font-family: var(--font-mincho);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 17px;
  }

  .faq_item .question::before,
  .faq_item .answer::before {
    width: 18px;
    text-align: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    font-family: var(--font-marcellus);
    color: var(--color-sub-gold);
    position: absolute;
    left: -4px;
  }

  .faq_item .question::before {
    content: 'Q';
    top: 2px;
  }

  .faq_item .answer::before {
    content: 'A';
    top: 6px;
  }
  
  /* =====================
    local_nav
  ===================== */

  #local_nav {
    overflow: hidden;
  }
  
  #local_nav::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .9;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .local_nav_item {
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    margin-bottom: 20px;
    color: #fff;
  }

  .local_nav_item:last-of-type {
    margin-bottom: 0;
  }

  .local_nav_text .ttl {
    font-family: var(--font-mincho);
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
  }

  .local_nav_text .ttl::before {
    content: '';
    width: 1px;
    height: 20px;
    display: block;
    background: var(--color-main-gold);
    opacity: .7;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }

  #local_nav .fv_bg {
    position: absolute;
  }

  /* =====================
    fv
  ===================== */

  #fv {
    position: relative;
    z-index: 0;
  }

  #fv::before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 0;
    left: 0;
  }

  #fv .inner {
    height: 200px;
    display: flex;
    align-items: center;
  }
  
  #fv .fv_img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }

  #fv .fv_img img {
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  #fv .ttl_area {
    min-width: 150px;
    flex-direction: column-reverse;
    align-items: start;
    position: relative;
    margin-bottom: 0;
    padding: 25px 20px 30px;
    z-index: 0;
    background: var(--color-main-black);
    margin-left: -4.5%;
  }

  #fv .ttl_area::before {
    display: none;
  }

  #fv .ttl_area::after {
    content: '';
    width: calc(100% + 160px);
    height: 100%;
    background: var(--color-main-black);
    position: absolute;
    top: 0;
    left: -80px;
    z-index: -1;
    display: none;
  }

  #fv .ttl_area .en {
    font-size: 25px;
  }

  #fv .ttl_area .ja {
    font-size: 12px;
    color: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  /* =====================
    breadcrumbs
  ===================== */

  #breadcrumbs {
    background: #EFEFEF;
    padding: 10px 10px;
  }

  #breadcrumbs .inner {
    width: 100%;
    max-width: 100%;
  }

  #breadcrumbs ol li {
    font-size: 10px;
    font-weight: 300;
    line-height: 1.4;
    position: relative;
    padding-right: 20px;
    margin-right: 10px;
    white-space: nowrap;
  }

  #breadcrumbs ol li::before {
    content: '';
    width: 10px;
    height: 1px;
    display: block;
    background: #000;
    opacity: .2;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  #breadcrumbs ol li:last-child {
    margin-right: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #breadcrumbs ol li:last-child::before {
    display: none;
  }

  #breadcrumbs ol li br {
    display: none;
  }

  #breadcrumbs ol li a {
    text-decoration: underline;
  }
  
  /* =====================
    post
  ===================== */
  
  .post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 20px 20px 10px;
  }

  .post_ttl {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
  }

  /* =====================
    table
  ===================== */
  
  .table {
    width: 100%;
  }

  .table th,
  .table td {
    font-size: 13px;
    line-height: 1.8;
    border-bottom: 1px solid rgba(9, 9, 21, 0.2);
    padding: 18px 0;
  }

  .table tr:first-of-type th,
  .table tr:first-of-type td {
    border-top: 1px solid rgba(9, 9, 21, 0.2);
  }

  .table th {
    width: 80px;
    padding-right: 20px;
    font-weight: 500;
    text-align: left;
  }

  .table td {
    width: calc( 100% - 80px );
  }

  .table a:not([class],[href^="tel:"]) {
    text-decoration: underline;
  }

  /* =====================
    list
  ===================== */

  /*  list_disc
  ------------------------*/
    
  .list_disc li,
  ul.wp-block-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 2px;
  }

  .list_disc li::before,
  ul.wp-block-list li::before {
    content: '';
    width: 4px;
    height: 4px;
    display: block;
    border-radius: 50%;
    background: var(--color-main-black);
    opacity: .2;
    position: absolute;
    top: 10px;
    left: 0;
  }

  .list_disc li:last-child,
  ul.wp-block-list li:last-child {
    margin-bottom: 0;
  }

  /*  list_num
  ------------------------*/
  
  .list_num,
  ol.wp-block-list {
    counter-reset: number 0;
    margin: 20px 0 ;
  }

  .list_num li,
  ol.wp-block-list li {
    counter-increment: number 1;
    position: relative;
    padding-left: 40px;
  }

  .list_num li::before,
  ol.wp-block-list li::before {
    content: '（'counter(number)'）';
    position: absolute;
    top: 0;
    left: 0;
  }

  /* =====================
    SP調整
  ===================== */
  
  @media screen and (min-width:544px) {

    /* =====================
      category
    ===================== */
    
    .category_list {
      margin: 0 calc( ( 100% - 500px ) / 2 );
    }
    
  }

}