@charset "UTF-8";

/**********  reset  ****************************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:where([hidden]:not([hidden='until-found'])) {
  display: none !important
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  tab-size: 2;
  scrollbar-gutter: stable
}

:where(html:has(dialog:modal[open])) {
  overflow: clip
}

@media (prefers-reduced-motion:no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth
  }
}

:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased
}

:where(button) {
  all: unset
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit
}

:where(textarea) {
  resize: vertical;
  resize: block
}

:where(button, label, select, summary, [role='button'], [role='option']) {
  cursor: pointer
}

:where(:disabled) {
  cursor: not-allowed
}

:where(label:has(>input:disabled), label:has(+input:disabled)) {
  cursor: not-allowed
}

:where(a) {
  color: inherit;
  text-underline-offset: .2ex
}

:where(ul, ol) {
  list-style: none
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible
}

:where(dialog) {
  border: none;
  background: none;
  inset: unset;
  max-width: unset;
  max-height: unset
}

:where(dialog:not([open])) {
  display: none !important
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important
}

a {
  text-decoration: none;
}

/** {  outline: 1px solid red;  }**/

/* 基本設定 */
body {
  margin: 0;
  overflow-x: hidden;
  /* 横スクロールを無効化 */
  height: 100%;
  /* 高さ100%に設定 */
  font-family: 'Noto Sans JP', sans-serif;
  color: #222;
  overflow-x: clip;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

section {
  padding: 90px 90px;
  padding-left: clamp(20px, 6vw, 90px);
  padding-right: clamp(20px, 6vw, 90px);
}

.oswald {
  font-family: 'Oswald', sans-serif;
}

.btn {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 5vw, 60px);
  line-height: 1;
  text-align: right;
  position: relative;
  display: inline-block;
  padding-right: 80px;
  /* 矢印の分だけ余白 */
  cursor: pointer;
  left: 100%;
  position: relative;
  transform: translateX(-100%);
}

.btn .arrow {
  position: absolute;
  bottom: 3px;
  right: 20px;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #FF9900;
  border-radius: 9999px;
  transition: right 0.5s ease;
}

.btn .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FF9900;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

.btn:hover .arrow {
  right: 10px;
}

.btn_orange {
  background: linear-gradient(90deg, #DC402B 0%, #FDC424 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content .ttl {
  padding-right: clamp(20px, 6vw, 90px);
  padding-right: 0;
}

.content .ttl .ttl_en {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 10vw, 120px);
  line-height: 1;
  letter-spacing: -0.3rem;
}

.content .ttl .ttl_jp {
  font-weight: bold;
  font-size: clamp(12px, 10vw, 30px);
  padding-top: 30px;
  padding-bottom: 90px;
}

.sp_block {
  display: none;
}

@media screen and (max-width: 768px) {
  section {
    padding: 45px 90px;
    padding-left: clamp(20px, 6vw, 90px);
    padding-right: clamp(20px, 6vw, 90px);
  }

  .btn {
    font-size: clamp(12px, 7vw, 20px);
    padding-right: 60px;
  }

  .btn .arrow {
    bottom: 1px;
    width: 20px;
  }

  .btn .arrow::before {
    top: calc(50% - 2px);
    width: 10px;
  }

  .content .ttl .ttl_en {
    letter-spacing: -0.1rem;
    font-size: clamp(12px, 10vw, 42px);
  }

  .content .ttl .ttl_jp {
    font-size: clamp(12px, 5vw, 18px);
    padding-top: 6px;
    padding-bottom: 30px;
  }

  p,
  dt,
  dd {
    font-size: 14px;
  }

  section#footer {
    margin-top: 45px;
  }

  .sp_block {
    display: block;
  }
}



/****************************************************************************************************************************/

@media screen and (min-width: 769px) {
  .nav {
    top: clamp(20px, 9vw, 120px);
    transform: none;
  }
}

section>div {
  max-width: 1040px;
  margin: 0 auto;
}

section#mv>div,
section.max_100per>div,
section#footer>div {
  max-width: 100%;
}

section.max_100per {
  padding: 0;
}

body#comp,
body#company,
body#brands,
body#recruit,
body#contact,
body#sitemap {
  position: relative;
  top: 0;
  padding-bottom: 0;
  background: #fff;
}

body#comp section#mv,
body#company section#mv,
body#brands section#mv,
body#recruit section#mv,
body#contact section#mv,
body#sitemap section#mv {
  padding: 0;
  padding-right: clamp(20px, 6vw, 90px);
}

body#comp #mv,
body#company #mv,
body#brands #mv,
body#recruit #mv,
body#contact #mv,
body#sitemap #mv {
  position: relative;
}

body#comp #mv::before,
body#company #mv::before,
body#brands #mv::before,
body#recruit #mv::before,
body#contact #mv::before,
body#sitemap #mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 584px;
  height: clamp(60px, 35vw, 584px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(34, 34, 34, 1));
  z-index: -1;
  pointer-events: none;
  padding-top: clamp(60px, 9vw, 120px);
}

body#comp #mv .ttl,
body#company #mv .ttl,
body#brands #mv .ttl,
body#recruit #mv .ttl,
body#contact #mv .ttl,
body#sitemap #mv .ttl {
  padding-top: clamp(20px, 6vw, 90px);
  padding-left: clamp(20px, 6vw, 90px);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}

body#comp #mv .ttl .ttl_en,
body#company #mv .ttl .ttl_en,
body#brands #mv .ttl .ttl_en,
body#recruit #mv .ttl .ttl_en,
body#contact #mv .ttl .ttl_en,
body#sitemap #mv .ttl .ttl_en {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(12px, 10vw, 150px);
  line-height: 1;
  letter-spacing: -0.3rem;
}

body#comp #mv .ttl .ttl_jp,
body#company #mv .ttl .ttl_jp,
body#brands #mv .ttl .ttl_jp,
body#recruit #mv .ttl .ttl_jp,
body#contact #mv .ttl .ttl_jp,
body#sitemap #mv .ttl .ttl_jp {
  font-weight: bold;
  font-size: clamp(12px, 2.5vw, 40px);
  padding-left: 60px;
}

body#comp #mv .mv_img,
body#company #mv .mv_img,
body#brands #mv .mv_img,
body#recruit #mv .mv_img,
body#contact #mv .mv_img,
body#sitemap #mv .mv_img {
  position: relative;
  top: -4px;
  left: 0;
  padding-right: clamp(20px, 8vw, 120px);
}

@media screen and (max-width: 768px) {

  body#comp #mv::before,
  body#company #mv::before,
  body#brands #mv::before,
  body#recruit #mv::before,
  body#contact #mv::before,
  body#sitemap #mv::before {
    height: clamp(60px, 50vw, 584px);
  }

  body#comp #mv .btn,
  body#company #mv .btn,
  body#brands #mv .btn,
  body#recruit #mv .btn,
  body#contact #mv .btn,
  body#sitemap #mv .btn {
    font-size: clamp(12px, 7vw, 20px);
    padding-right: 60px;
  }

  body#comp #mv .btn .arrow,
  body#company #mv .btn .arrow,
  body#brands #mv .btn .arrow,
  body#recruit #mv .btn .arrow,
  body#contact #mv .btn .arrow,
  body#sitemap #mv .btn .arrow {
    bottom: 1px;
    width: 20px;
  }

  body#comp .btn .arrow::before,
  body#company .btn .arrow::before,
  body#brands .btn .arrow::before,
  body#recruit .btn .arrow::before,
  body#contact .btn .arrow::before,
  body#sitemap .btn .arrow::before {
    top: calc(50% - 2px);
    width: 10px;
  }

  body#comp #mv .ttl,
  body#company #mv .ttl,
  body#brands #mv .ttl,
  body#recruit #mv .ttl,
  body#contact #mv .ttl,
  body#sitemap #mv .ttl {
    padding-top: clamp(20px, 20vw, 90px);
    padding-left: clamp(20px, 6vw, 90px);
    color: #fff;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
  }

  body#comp #mv .ttl .ttl_en,
  body#company #mv .ttl .ttl_en,
  body#brands #mv .ttl .ttl_en,
  body#recruit #mv .ttl .ttl_en,
  body#contact #mv .ttl .ttl_en,
  body#sitemap #mv .ttl .ttl_en {
    letter-spacing: -0.1rem;
    font-size: clamp(12px, 15vw, 60px);
  }

  body#comp #mv .ttl .ttl_jp,
  body#company #mv .ttl .ttl_jp,
  body#brands #mv .ttl .ttl_jp,
  body#recruit #mv .ttl .ttl_jp,
  body#contact #mv .ttl .ttl_jp,
  body#sitemap #mv .ttl .ttl_jp {
    font-size: clamp(12px, 5vw, 18px);
    padding-top: 6px;
    padding-left: 20px;
  }

  body#comp #mv .mv_img,
  body#company #mv .mv_img,
  body#brands #mv .mv_img,
  body#recruit #mv .mv_img,
  body#contact #mv .mv_img,
  body#sitemap #mv .mv_img {
    padding-right: 0;
    top: -3px;
  }

  body#contact section#mv {
    padding-right: 0;
  }
}

.bold {
  font-weight: bold;
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none;
  }
}

/**********　　company　　**********/

#company_philosophy p {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

#company_philosophy .bold {
  font-size: 21px;
  line-height: 2;
}

#company_philosophy .message_text-en {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(20px, 3vw, 50px);
  white-space: nowrap;
  padding: 15px 0 45px 0;
}

#company_philosophy .message_text-en div {
  padding: 0 15px;
}

#company_philosophy .message_text-en img {
  width: clamp(30px, 6vw, 300px);
}

#company_philosophy .text_left {
  text-align: right;
  font-weight: bold;
  padding-top: 30px;
}

dl {
  border-bottom: 1px solid #E8E8E8;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

dl dt {
  border-top: 1px solid #E8E8E8;
  width: 10%;
  padding-left: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  font-weight: bold;
}

dl dd {
  border-top: 1px solid #E8E8E8;
  width: 90%;
  padding-right: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
}

dl dd.indent ul li {
  text-indent: -1em;
  margin-left: 1em;
  padding-bottom: 6px;
}

.bg_gray {
  background: #f8f8f8;
}


.container {
  max-width: 1024px;
  width: 90%;
  margin-left: clamp(20px, 1.5vw, 80px);

}

.timeline-item {
  padding: 3.5em 2.5em 2em;
  position: relative;
  border-left: 2px solid #ff9900;
}

.timeline-item div {
  font-size: 32px;
  font-weight: bold;
  ;
}

.timeline-item div:nth-child(n+2) {
  padding-top: 10px;
}

.timeline-item ul li {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #222;
  font-size: 20px;
}

.timeline-item ul li:nth-child(n+2) {
  padding-top: 0;
}

.timeline-item ul li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 2px;
  background-color: #222;
  margin-right: 1rem;
  vertical-align: middle;
  margin-bottom: 1px;
}

.timeline-item p {
  font-size: 1rem;
  color: #222222 !important;
}

.timeline-item::before {
  content: attr(date-is);
  position: absolute;
  left: 2em;
  font-weight: bold;
  top: 1em;
  display: block;
  font-weight: 700;
  font-size: 20px;
  color: #ff9900;
}

.timeline-item::after {
  width: 20px;
  height: 20px;
  display: block;
  top: 1.6em;
  position: absolute;
  left: -11px;
  border-radius: 10px;
  content: '';
  border: 2px solid #ff9900;
  background: white;
}

.timeline-item:last-child {
  border-image: linear-gradient(to bottom,
      rgba(255, 153, 0, 10) 60%,
      rgba(255, 153, 0, 0)) 1 100%;
}


section#company_member,
section#staff {
  padding: 0;
  padding-bottom: clamp(20px, 6vw, 90px);
}

section#company_member .ttl {
  /*padding-left: clamp(20px, 6vw, 90px);*/
  padding-top: clamp(20px, 6vw, 90px);
  max-width: 1040px;
  margin: 0 auto;
}

section#staff .ttl {
  padding-left: clamp(20px, 6vw, 90px);
  padding-top: clamp(20px, 6vw, 90px);
  margin: 0 auto;
}

.member_block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.member_block .img,
.member_block .text {
  flex: 0 0 50%;
  max-width: 50%;
}

.member_block .text {
  padding-left: clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

.member .member_block:nth-child(even) .text {
  padding-right: clamp(20px, 5vw, 60px);
  text-align: right;
}

.member_block .text span {
  font-size: 16px;
  padding-bottom: 10px;
  display: block;
}

.member_block .text p.name {
  font-size: 28px;
  font-weight: bold;
  padding-bottom: 20px;
}

.member_block .text p {
  color: #222222 !important;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {

  #company_philosophy .bold {
    font-size: 16px;
  }

  #company_philosophy p {
    font-size: 14px;
  }

  #company_philosophy .message_text-en {
    display: inline-block;
    font-size: clamp(20px, 7.5vw, 50px);
  }

  #company_philosophy .message_text-en .logo_wrap {
    display: inline-block;
    vertical-align: middle;
    /* テキストと中央揃え */
    max-height: 1em;
    /* フォントサイズに合わせて縮小も可能 */
  }

  #company_philosophy .message_text-en img {
    width: clamp(40px, 13vw, 150px);
    padding-bottom: 5px;
  }

  #company_philosophy .message_text-en div {
    padding: 0 5px;
  }
}

@media screen and (max-width: 768px) {
  dl dt {
    border-top: 1px solid #E8E8E8;
    width: 100%;
    padding-left: 0;
    padding-bottom: 2px;
    padding-top: 15px;
  }

  dl dd {
    border-top: none;
    width: 100%;
    padding-right: 0;
    padding-top: 3px;
    padding-bottom: 15px;
  }

  .container {
    width: 100%;
    margin-left: clamp(10px, 1.5vw, 80px);
  }

  .timeline-item {
    padding-right: 0;
    padding: 3.5em 0 0 1.5em;
  }

  .timeline-item::before {
    font-size: 16px;
    left: 1.5em;
    top: 1.4em;
  }

  .timeline-item ul li {
    font-size: 15px;
    text-indent: -1.6em;
    margin-left: 1.6em;
  }

  .timeline-item div {
    font-size: 24px;
  }

  section#company_member {
    padding-bottom: 40px;
  }

  section#company_member .ttl {
    padding-left: clamp(20px, 6vw, 90px);
    padding-top: 45px;
  }

  .member_block {
    display: flex;
    flex-direction: column;
  }

  .member_block .img {
    order: 1;
    padding-top: 25px;
  }

  .member .member_block:first-child .img {
    padding-top: 0;
  }

  .member_block .text {
    order: 2;
  }

  .member_block .img,
  .member_block .text {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .member_block .text {
    padding-top: 15px;
  }

  .member_block .text span {
    font-size: 12px;
    padding-bottom: 6px;
  }

  .member_block .text p.name {
    font-size: 20px;
    padding-bottom: 10px;
  }

  .member .member_block:nth-child(even) .text {
    text-align: left;
  }
}


/**********　　recruit　　**********/
#message p {
  font-size: 18px;
  line-height: 1.8;
}

#message .bold {
  font-size: 21px;
  line-height: 2;
}

#message .message_text-en {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(12px, 3vw, 50px);
  white-space: nowrap;
  padding: 15px 0 45px 0;
}

#message .message_text-en div {
  padding: 0 15px;
}

#message .message_text-en img {
  width: clamp(12px, 5.5vw, 125px);
}

#message .text_left {
  text-align: right;
  font-weight: bold;
  padding-top: 30px;
}


section.btn_full {}

.btn_full .btn_full_img {
  display: flex;
  width: 100%;
  height: clamp(300px, 30vw, 600px);
  color: #fff;
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  align-items: center;
}

/* 背景画像を擬似要素で配置 */
.btn_full .btn_full_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/recruit/btn_bg_img01.jpg');
  /* 背景画像を設定 */
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 0.6s ease;
  /* ゆっくり拡大 */
  z-index: -1;
}

#btn_full_02 .btn_full_img::before {
  background-image: url('../img/recruit/btn_bg_img02.jpg');
  /* 背景画像を設定 */
}

/* hoverで拡大 */
.btn_full .btn_full_img:hover::before {
  transform: scale(1.1);
}

.btn_full .btn_text {
  z-index: 1;
  font-size: clamp(20px, 3vw, 60px);
  font-weight: bold;
  text-align: left;
  padding-left: clamp(20px, 6vw, 90px);
}

.btn_full .btn_orange {
  /*
    display: flex;
    align-items: flex-end;
    */
  left: 45%;
  align-items: flex-end;
}

.content_btn {
  padding-top: 60px;
  left: 101.5%;
}


section#requirements {
  padding-bottom: 160px;
}

.text_lead ul {
  margin-top: 20px;
}

.text_lead ul li {
  display: flex;
  border-bottom: 1px solid #555;
  padding-top: 20px;
  padding-bottom: 20px;
  align-items: center;
  background: #151515;
}

.text_lead ul li:last-child {
  border-bottom: none;
  padding-top: none;
  padding-bottom: none;
}

.text_lead ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  min-height: 90px;
  background-color: #d9d9d9;
  margin-right: 1rem;
  vertical-align: middle;
  margin-bottom: 1px;
}

.text_lead ul li>div {
  max-width: 90px;
  margin-right: 30px;
}

#requirements .btn_orange {
  margin-top: 30px;
}


.content#staff .ttl {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  padding-bottom: 90px;
}

.content#staff .ttl .ttl_en {}

.content#staff .ttl .ttl_jp {
  padding-bottom: 0;
}

.content#staff .ttl .ttl_lead {
  position: relative;
  top: -5px;
  padding-left: 60px;
}



#faq {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 1), rgba(34, 34, 34, 1));
  color: #fff;
  margin-bottom: 90px;
}

.faq_block {}

.faq_block_q,
.faq_block_a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.faq_block_a {
  justify-content: flex-start;
  padding-top: 20px;
  padding-bottom: 30px;
}

.faq_list .faq_block:last-child .faq_block_a {
  padding-bottom: 0;
}

.faq_block_q .faq_q_img,
.faq_block_a .faq_a_img {
  flex: 0 0 20%;
  max-width: 120px;
}

.faq_block_q .faq_q_text,
.faq_block_a .faq_a_text {
  flex: 0 0 60%;
  max-width: 610px;
}

.faq_q_text,
.faq_a_text {
  font-size: 20px;
  color: #222;
  padding: 15px 30px 20px 30px;
  background: #ccc;
  position: relative;
  border-radius: 10px;
}

.faq_a_text {
  background: #000;
  color: #fff;
}

.faq_q_text::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: -15px;
  border-top: 10px solid transparent;
  /* 上辺の透明部分 */
  border-bottom: 10px solid transparent;
  /* 下辺の透明部分 */
  border-left: 15px solid #ccc;
  /* 三角形の色と大きさ */
  top: 40%;
}

.faq_a_text::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: -15px;
  border-top: 10px solid transparent;
  /* 上の透明部分 */
  border-bottom: 10px solid transparent;
  /* 下の透明部分 */
  border-right: 15px solid #000;
  /* 右に尖らせる色と大きさ */
  top: 40%;
}

.faq_q_text p,
.faq_a_text p {
  text-indent: -1em;
  margin-left: 2em;
  font-weight: bold;
}

.faq_q_text p::before,
.faq_a_text p::before {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  display: inline-block;
  margin-right: 20px;
  height: 100%;
  font-weight: bold;
  color: #ff9900;
  /* 色はお好みで */
  vertical-align: -6px;
}

.faq_q_text p::before {
  content: "Q";
}

.faq_a_text p::before {
  content: "A";
}

.faq_a_text p {
  font-weight: 300 !important;
}

.faq_q_img,
.faq_a_img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  background: #ccc;
  position: relative;
  margin-left: 30px;
}

.faq_q_img img,
.faq_a_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.faq_a_img {
  background: #000;
  margin-right: 30px;
  margin-left: 0;
}

#faq .btn_orange {
  margin-top: 30px;
}

#benefits p>span:first-child {
  font-size: 20px;
}

#benefits p>span:last-child {
  font-weight: 100;
}

#benefits .text_lead {}

@media screen and (max-width: 768px) {
  #message p {
    font-size: 15px;
    line-height: 1.6;
  }

  section.btn_full.max_100per {
    padding: 0;
  }

  .btn_full .btn_text {
    padding-left: 15px;
  }

  #requirements .content_btn {
    padding-top: 30px;
    left: 101.5%;
  }

  section#requirements {
    padding-bottom: 180px;
  }

  #benefits.text_lead ul {
    margin-top: 0;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0 !important;
  }

  .btn_full .btn_full_img {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: clamp(200px, 30vw, 600px);
  }

  .btn_full .btn_orange {
    padding-top: 20px;
    left: 100%;
  }

  #benefits p>span:first-child {
    font-size: 16px;
  }

  .text_lead ul li::before {
    width: 5px;
    min-height: 45px;
  }

  .text_lead ul li>div {
    max-width: 45px;
  }

  .content#staff .ttl {
    display: block;
    padding-top: 45px;
    padding-bottom: 30px;
    padding-right: clamp(20px, 6vw, 90px);

  }

  .content#staff .ttl .ttl_lead {
    padding-top: 20px;
    padding-left: 0;
    font-size: 15px;
  }

  #faq {
    background-image: linear-gradient(90deg, rgb(26, 26, 26), rgb(66, 66, 66));
  }

  .faq_block_q .faq_q_text,
  .faq_block_a .faq_a_text {
    flex: 0 0 70%;
    max-width: 610px;
  }

  .faq_block_q .faq_q_img,
  .faq_block_a .faq_a_img {
    flex: 0 0 20%;
    max-width: 60px;
  }

  .faq_block_q .faq_q_img img,
  .faq_block_a .faq_a_img img {
    max-width: 35px;
  }

  .faq_q_img,
  .faq_a_img {
    width: 60px;
    height: 60px;
  }

  .faq_q_text,
  .faq_a_text {
    font-size: 16px;
    padding: 9px 15px 15px 15px;
  }

  .faq_q_text p::before,
  .faq_a_text p::before {
    font-size: 26px;
    margin-right: 12px;
  }

  #faq .btn_orange {
    margin-top: 15px;
  }

  #faq {
    margin-bottom: 0;
  }
}


/**********　　店舗情報　　**********/
#brands_anc {
  padding-top: clamp(20px, 9vw, 120px);
}

#brands_anc .blands_link>a:first-child,
#brands_anc .blands_link>a:last-child {
  top: 0;
}

#brands_anc .izakaya,
#brands_anc .ramen {
  height: clamp(200px, 30vw, 430px);
  padding: clamp(20px, 4vw, 90px);
  padding-bottom: clamp(20px, 4vw, 30px);
}

#brands_anc .izakaya::before {
  background-image: url(../img/brands/img_brands_izakaya.jpg);
}

#brands_anc .ramen::before {
  background-image: url(../img/brands/img_brands_ramen.jpg);
}

#brands_anc .blands_link .izakaya .arrow,
#brands_anc .blands_link .ramen .arrow {
  width: 2px;
  height: 30px;
  transition: bottom 0.5s ease;
  bottom: clamp(6px, 1.5vw, 20px);
}

#brands_anc .blands_link .izakaya .arrow::before,
#brands_anc .blands_link .ramen .arrow::before {
  right: calc(50% - 1px);
  bottom: 1px;
  width: 2px;
  height: 15px;
  transform: rotate(-45deg);
  transform-origin: 50% 100%;
}

#brands_anc .blands_link .izakaya:hover .arrow,
#brands_anc .blands_link .ramen:hover .arrow {
  bottom: 5px;
  right: 30px;
}

#brands_anc #izakaya,
section#izakaya,
section#ramen {
  padding-top: clamp(20px, 9vw, 120px);
}

#brands .shop {
  position: relative;
}

#brands .shop::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 520px;
  height: clamp(60px, 45vw, 520px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1), rgba(34, 34, 34, 1));
  z-index: -1;
  pointer-events: none;
}

#brands .mv_img div {
  color: #fff;
  font-weight: bold;
}

#brands .shop_name_inner {
  text-align: left;
}

#brands .mv_img div.shop_name {
  font-size: clamp(12px, 5vw, 40px);
  margin: 0 auto;
}

#brands .mv_img div.shop_text {
  font-size: clamp(12px, 1.5vw, 20px);
  padding-top: 10px;
  padding-bottom: clamp(30px, 4.5vw, 50px);
  margin: 0 auto;
}

#brands .shop_img {
  position: relative;
}

#brands .mv_img .shop_text_l {
  font-size: clamp(12px, 1.5vw, 20px);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 93.5%;
}

#brands .shop_img img {
  width: 100%;
  margin: 0 auto;
}

#brands .shop_img_list {
  margin-top: 30px;
}

#brands .shop_img_list .img_block01 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  /* 大画像と小画像群の間隔 */
  align-items: stretch;
}

#brands .shop_img_list .img_block01 .img_block01_1 {
  flex: 1;
}

#brands .shop_img_list .img_block01 .img_block01_1 img {
  width: 100%;
  height: auto;
  display: block;
}

#brands .shop_img_list .img_block01 .img_block01_4 {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 13px 20px;
  justify-items: stretch;
}

.img_block02 {
  display: flex;
  gap: 20px;
  /* 画像間の余白 */
  justify-content: center;
  /* 中央揃え（任意） */
  padding-top: 30px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.img_block02 img {
  max-width: calc((100% - 40px) / 3);
  height: auto;
  object-fit: cover;
  display: block;
}

#brands .shop_detail {
  margin-top: 30px;
}

#brands .shop_detail .shop_list {
  border: 2px solid #E8E8E8;
  border-radius: 20px;
  padding: 40px 45px;
  max-width: 1040px;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
}

#brands .shop_detail .shop_list:last-child {
  margin-bottom: 0;
}

#brands .shop_logo {
  flex: 0 0 20%;
  max-width: 20%;
  border: 2px solid #E8E8E8;
  border-radius: 100px;
  position: relative;
  margin-right: 30px;
  aspect-ratio: 1 / 1;
}

#brands .shop_logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  padding: 15px;
}

#brands #shop05 .shop_detail_01 .shop_logo img,
#brands #shop01 .shop_detail_02 .shop_logo img {
  padding: 0;
  border-radius: 100px;
}

#brands .shop_detail_text {
  flex: 0 0 80%;
  max-width: 80%;
}

#brands .shop_detail_text dl dt,
#brands .shop_detail_text dl dd {
  border-top: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

#brands .shop_detail_text dl dt {
  width: 15%;
  font-weight: 800;
}

#brands .shop_detail_text dl dd {
  width: 85%;
}

#brands .shop_detail_text dl dd a {
  font-weight: bold;
  color: #ff9900;
}

#brands .shop_detail_text dl {
  border-bottom: none;
}

#brands .shop_detail_text dd {
  display: flex;
}

#brands .shop_detail_text dl dd.business_hours table {
  border-spacing: 0;
}

#brands .shop_detail_text dl dd.business_hours table th {
  padding-right: 30px;
  font-weight: 800;
  text-align: left;
}

#brands .shop_detail_text dl dd.business_hours table td {
  padding-right: 30px;
}

#brands #shop04 .shop_detail_text dl dd.business_hours table th,
#brands #shop04 .shop_detail_text dl dd.business_hours table td {
  width: 100%;
  display: block;
}

#brands #shop04 .shop_detail_text dl dd.business_hours table tr th {
  padding-top: 10px;
}

#brands #shop04 .shop_detail_text dl dd.business_hours table tr:first-child th {
  padding-top: 0;
}

#brands #shop04 .shop_detail_text dl dd.business_hours table tr:first-child th,
#brands #shop04 .shop_detail_text dl dd.business_hours table tr th {
  width: 100%;
  display: block;
}

#brands .btn_map {
  margin-left: 30px;
  position: relative;
  padding-left: 25px;
  text-indent: -25px;
}

#brands .btn_map a,
#brands a.shop_url {
  transition: all 0.5s;
}

#brands .btn_map a:hover,
#brands a.shop_url:hover {
  opacity: 0.6;
}

#brands .btn_map a::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  width: 25px;
  height: 18px;
  padding-right: 10px;
  background: url("../img/brands/icon_map.png") no-repeat;
  position: relative;
}

.shop_url {
  word-break: break-all;
  overflow-wrap: break-word;
  display: inline-block;
  /* 折り返しに必要 */
  max-width: 100%;
  /* 親要素に収まるように */
}

#brands .shop_detail_btn .btn {
  display: inline-block;
  background: #222;
  padding: 18px 90px 22px 80px;
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: clamp(12px, 5vw, 20px);
  line-height: 1;
  text-align: right;
  position: relative;
  display: inline-block;
  padding-right: 90px;
  cursor: pointer;
  left: 100%;
  position: relative;
  transform: translateX(-100%);
  transition: all 0.5s;
  margin-top: 30px;
}

#brands .shop_detail_btn .btn:hover {
  background: #555555;
}

.btn_white {
  color: #fff;
}

.btn_white .arrow {
  position: absolute;
  bottom: 23px;
  right: 30px;
  background-color: #fff;
}

.btn_white .arrow::before {
  background-color: #fff;
}

.btn_white:hover .arrow {
  right: 20px;
}

@media screen and (max-width: 768px) {

  #brands_anc .izakaya,
  #brands_anc .ramen {
    height: 235px;
  }

  #brands_anc .blands_link_list {
    width: 93%;
  }

  #brands_anc .blands_link .izakaya .arrow,
  #brands_anc .blands_link .ramen .arrow {
    bottom: 10px;
  }

  #brands_anc .blands_link_list div {
    padding-top: 15px;
  }

  #brands #izakaya,
  #brands #ramen {
    position: relative;
  }

  #brands #izakaya>div img,
  #brands #ramen>div img {
    max-inline-size: 300%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }

  section#izakaya,
  section#ramen {
    padding-top: 160px;
  }

  .blands_link {
    padding-bottom: 60px;
  }

  #brands .mv_img .shop_text_l {
    bottom: 10px;
  }

  #brands .shop_img_list {
    margin-top: 20px;
  }

  #brands .shop_img_list .img_block01 {
    gap: 5px;
  }

  #brands .shop_img_list .img_block01 .img_block01_4 {
    gap: 5px;
  }

  .img_block02 {
    gap: 5px;
    padding-top: 5px;
  }

  .img_block02 img {
    max-width: calc((100% - 10px) / 3);
  }

  #brands .shop_detail {
    margin-top: 20px;
  }

  #brands .shop_detail .shop_list {
    padding: 15px 20px;
    display: block;
  }

  #brands .shop_logo {
    max-width: 35%;
    margin: 0 auto;
  }

  #brands .shop_logo img {
    padding: 6px;
  }

  #brands .shop_detail_text {
    max-width: 100%;
  }

  #brands .shop_detail_text dl dt,
  #brands .shop_detail_text dl dd {
    width: 100%;
  }

  #brands .shop_detail_text dl dt,
  #brands .shop_detail_text dl dd {
    padding: 5px 0;
  }

  #brands .shop_detail_text dl dt {
    padding-top: 10px;
  }

  #brands .shop_detail_text dl dd {
    padding-top: 0;
  }

  #brands .shop_detail_text dd {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  #brands .shop_detail_text .btn_map {
    align-self: flex-end;
  }

  #brands .shop_detail_text .btn_map a {
    display: inline-block;
    white-space: nowrap;
  }

  #brands .shop_detail_text dl dd.business_hours table {
    width: 100%;
    border-collapse: collapse;
  }

  #brands .shop_detail_text dl dd.business_hours th,
  #brands .shop_detail_text dl dd.business_hours td {
    text-align: left;
    vertical-align: top;
  }

  #brands .shop_detail_text dl dd.business_hours tr {
    display: inline-flex;
    flex-direction: column;
  }

  #brands #shop04 .shop_detail_text dl dd.business_hours tr {
    display: block;
  }

  #brands .shop_detail_text dl dd.business_hours table th {
    font-weight: 600;
  }

  #brands .shop_detail_text dl dd.business_hours tr th,
  #brands .shop_detail_text dl dd.business_hours tr td {
    display: flex;
    padding-bottom: 6px;
  }

  #brands .shop_detail_text dl dd.business_hours tr th:last-child,
  #brands .shop_detail_text dl dd.business_hours tr td:last-child {
    padding-bottom: 0;
  }

  #brands .shop_detail_btn .btn {
    width: 100%;
    padding: 18px 40px 22px 30px;
    text-align: center;
  }
}


/**********  #sitemap  **********/
@media screen and (min-width: 769px) {
  #sitemap_list .ttl_list {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

section#sitemap_list {
  padding-right: 0;
  padding-top: clamp(20px, 12vw, 163px);
  padding-bottom: clamp(20px, 9vw, 120px);
  padding-left: clamp(20px, 6vw, 90px);
}

#sitemap_list .sitemap_inner {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (min-width: 769px) {
  #sitemap_list .ttl_list {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

#sitemap_list ul {
  border-top: 1px solid #eee;
}

#sitemap_list li a,
#sitemap_list li.a_none {
  padding: 30px 0;
  padding-top: clamp(10px, 1.5vw, 30px);
  padding-bottom: clamp(10px, 1.5vw, 30px);
  border-bottom: 1px solid #eee;
  display: flex;
  position: relative;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
}

#sitemap_list li.a_none {
  pointer-events: none;
}

.animated-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: normal;
}

.animated-lines .underline-line {
  position: relative;
  display: inline-block;
}

.animated-lines .underline-line::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #222;
  transition: width 0.4s ease;
}

#sitemap_list li a:hover .animated-lines .underline-line::after {
  width: 100%;
}

#sitemap_list li p,
#sitemap_list li p span:first-child {
  font-weight: 600;
  margin-right: 0px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(12px, 1.2vw, 18px);
}

#sitemap_list li span:first-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  margin-right: 20px;
  font-size: clamp(10px, 1.5vw, 15px);
}

#sitemap_list li a>span {
  color: #fff;
  font-size: clamp(10px, 1vw, 12px);
  background: #222;
  padding: 0 10px 2px;
  margin-right: 30px;
  position: relative;
  width: auto;
  white-space: nowrap;
  display: block;
  width: 90px;
  text-align: center;
}

#sitemap_list li .arrow {
  position: absolute;
  bottom: clamp(17px, 2.2vw, 40px);
  right: 30px;
  transform: translateY(-50%);
  width: 30px;
  height: 1px;
  background-color: #222;
  border-radius: 9999px;
  transition: right 0.5s ease;
}

#sitemap_list li .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 15px;
  height: 1px;
  border-radius: 9999px;
  background-color: #222;
  transform: rotate(45deg);
  transform-origin: calc(100% - 2px) 50%;
}

#sitemap_list li a:hover .arrow {
  right: 0;
}

@media screen and (max-width: 768px) {
  section#sitemap_list {
    padding: 45px 0;
  }

  .sitemap_inner {
    display: block;
  }

  #sitemap .ttl {
    padding-left: 15px;
  }

  #sitemap_list .ttl_list {
    padding: 0 20px;
    width: 100%;
  }

  #sitemap_list li a,
  #sitemap_list li.a_none {
    padding-top: clamp(15px, 5vw, 20px);
    padding-bottom: clamp(15px, 5vw, 20px);
  }

  #sitemap_list li span:first-child {
    font-size: clamp(14px, 4.5vw, 18px);
  }

  #sitemap_list li span:nth-child(2) {
    font-size: clamp(12px, 2vw, 14px);
    top: -2px;
    margin-right: 0;
  }

  #sitemap_list li p,
  #sitemap_list li p span:first-child {
    font-size: clamp(15px, 2vw, 18px);
    padding-top: 0;
    line-height: 1.4;
  }

  #sitemap_list li a {
    padding-right: 35px;
  }

  #sitemap_list li .arrow {
    right: 0;
    bottom: clamp(30px, 3vw, 50px);
    width: 20px;
  }

  #sitemap_list li .arrow::before {
    width: 10px;
  }
}


/**********　　xxxxxxxxxxxxxxxxxxxxxxxx　　**********/
/**********　　xxxxxxxxxxxxxxxxxxxxxxxx　　**********/