@charset "UTF-8";
/* ---------------------------------------
  基本情報
-----------------------------------------*/
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
@media screen and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.7777777778vw;
  }
}

body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: left;
  color: #0D0F00;
  word-break: break-word;
  letter-spacing: 0.05em;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Noto Sans JP", sans-serif;
  color: #0D0F00;
  font-weight: 400;
  letter-spacing: 0.05em;
}

textarea {
  resize: vertical;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

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

/* responsive
--------------------------------*/
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* base
--------------------------------*/
p, dt, dd, li, th, td,
input, button, textarea, select {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  p, dt, dd, li, th, td,
  input, button, textarea, select {
    line-height: 1.5;
  }
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

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

@media screen and (min-width: 768px) {
  .tel-link {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
  img {
    width: 100%;
  }
  .sp-tac {
    text-align: center !important;
  }
  .sp-tar {
    text-align: right !important;
  }
  .sp-tal {
    text-align: left !important;
  }
}
/* ---------------------------------------------
  レイアウト
-----------------------------------------------*/
.l-wrap {
  max-width: 128rem;
  width: calc(100% - 4rem);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .l-wrap {
    width: calc(100% - 4.8rem);
  }
}
.l-wrap.-s {
  max-width: 108rem;
}
.l-wrap.-l {
  max-width: 160rem;
}

.l-container {
  overflow: hidden;
}
.l-container.-blog {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .l-container.-blog {
    overflow: hidden;
  }
}
.l-container.-thanks {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.l-container.-thanks main {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-container.-thanks main .breadcrumb-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.l-container.-thanks .l-footer {
  width: 100%;
}

/* ---------------------------------------------
  装飾
-----------------------------------------------*/
.u-bold {
  font-weight: 700;
}

.u-underline {
  text-decoration: underline;
}

.u-gold {
  color: #B1935E;
}

.u-red {
  color: #FF0000;
}

.bg-yellow {
  background: #FFF690;
}

/* ---------------------------------------------
  パーツ
-----------------------------------------------*/
/* ボタン
--------------------------------*/
.c-btn_link {
  border: 1px solid #fff;
  background-color: #fff;
  width: 36rem;
  height: 6rem;
  display: flex;
  align-items: center;
  padding-left: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 0.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn_link {
    margin: 0 auto;
    width: 29.6rem;
    height: 4.8rem;
    font-size: 1.4rem;
    padding-left: 1.6rem;
  }
}
.c-btn_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6rem;
  width: 1px;
  height: 4.8rem;
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn_link::before {
    height: 3.8rem;
    right: 4.8rem;
  }
}
.c-btn_link .arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  overflow: hidden;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-btn_link .arrow {
    width: 4.8rem;
    height: 4.8rem;
  }
}
.c-btn_link .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1.5rem;
  width: 3rem;
  height: 3rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn_link .arrow::before {
    left: 1rem;
  }
}
.c-btn_link .arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4rem;
  width: 3rem;
  height: 3rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .c-btn_link:hover {
    background-color: #000;
    color: #fff;
  }
  .c-btn_link:hover::before {
    background-color: #fff;
  }
  .c-btn_link:hover .arrow::before {
    left: 6rem;
  }
  .c-btn_link:hover .arrow::after {
    left: 1.5rem;
  }
}
.c-btn_link.-xs {
  width: 24rem;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-xs {
    width: 28rem;
  }
}
.c-btn_link.-ss {
  width: 27.2rem;
}
.c-btn_link.-s {
  width: 29rem;
}
.c-btn_link.-l {
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-l {
    width: 100%;
  }
}
.c-btn_link.-center {
  margin: 0 auto;
}
.c-btn_link.-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.c-btn_link.-black::before {
  background-color: #fff;
}
.c-btn_link.-black .arrow::before {
  background-color: #fff;
}
.c-btn_link.-black .arrow::after {
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-black:hover {
    background-color: #fff;
    color: #000;
  }
  .c-btn_link.-black:hover::before {
    background-color: #000;
  }
}
.c-btn_link.-mail {
  width: 26rem;
  height: 5.6rem;
  padding-left: 5.7rem;
  background-color: #FCDF03;
  border: none;
  font-size: 1.8rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .c-btn_link.-mail {
    font-size: 1.8rem;
    padding-left: 6.3rem;
  }
}
.c-btn_link.-mail::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 3.2rem;
  width: 1.7rem;
  height: 1.3rem;
  background: url(../img/common/icon_mail.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-mail::after {
    width: 2.2rem;
    left: 3.5rem;
    height: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn_link.-mail:hover {
    background-color: #FFFF26;
    color: #0D0F00;
  }
  .c-btn_link.-mail:hover::before {
    background-color: #000;
  }
  .c-btn_link.-mail:hover .arrow::after {
    background-color: #000;
  }
}
.c-btn_link.-blank::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.8rem;
  width: 2.3rem;
  height: 2.3rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/icon_blank.svg);
  background-color: #000;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn_link.-blank::after {
    width: 2rem;
    height: 2rem;
    right: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-btn_link.-blank:hover::after {
    background-color: #fff;
  }
}
.c-btn_link.-blank.-black::after {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .c-btn_link.-blank.-black:hover::after {
    background-color: #000;
  }
}

.c-more {
  text-align: center;
}
.c-more_link {
  display: inline;
  font-weight: 700;
  letter-spacing: 0;
  padding-right: 3.2rem;
  text-decoration: underline;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-more_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-more_link:hover {
    opacity: 0.7;
  }
}
.c-more_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2.4rem;
  height: 2.4rem;
  background-color: #0D0F00;
}
.c-more_link::after {
  content: "";
  position: absolute;
  top: 52%;
  transform: translateY(-50%) rotate(-180deg);
  right: 0.6rem;
  width: 1.2rem;
  height: 0.8rem;
  transition: 0.3s;
  background: url(../img/common/arrow_bottom_white.svg) no-repeat center center/contain;
}
.c-more.is-open .c-more_link::after {
  transform: translateY(-50%);
}

/* タイトル
--------------------------------*/
.c-secttl-box .c-secttl-en {
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  color: #B1935E;
  letter-spacing: 0.025em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl-en {
    text-align: center;
    font-size: 1.6rem;
  }
  .c-secttl-box .c-secttl-en.-sp-left {
    text-align: left;
  }
}
.c-secttl-box .c-secttl-en.-center {
  text-align: center;
}
.c-secttl-box .c-secttl-jp {
  margin-top: 0.6rem;
  font-size: 3.8rem;
  letter-spacing: 0.025em;
  font-weight: 700;
  line-height: 1.4473684211;
}
@media screen and (max-width: 767px) {
  .c-secttl-box .c-secttl-jp {
    font-size: 2.8rem;
    line-height: 1.2857142857;
    text-align: center;
  }
  .c-secttl-box .c-secttl-jp.-sp-left {
    text-align: left;
  }
}
.c-secttl-box .c-secttl-jp.-center {
  text-align: center;
}
.c-secttl-box .c-secttl-jp.-white {
  color: #fff;
}

.c-secttl {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-secttl {
    font-size: 2.8rem;
  }
}

.c-secttl-02 {
  font-size: 4.8rem;
  line-height: 1.4583333333;
  font-weight: 700;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-secttl-02 {
    font-size: 2.7rem;
    text-align: center;
  }
}
.c-secttl-02.-center {
  text-align: center;
}
.c-secttl-02.-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.c-secttl-02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 1px;
  background-color: #B1935E;
}
@media screen and (max-width: 767px) {
  .c-secttl-02::before {
    width: 4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.c-secttl-03 {
  padding-left: 1.7rem;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-secttl-03 {
    font-size: 2.4rem;
    padding-left: 1rem;
    line-height: 1.4583333333;
  }
}
.c-secttl-03::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2px;
  height: 4.7rem;
  background-color: #B1935E;
}
@media screen and (max-width: 767px) {
  .c-secttl-03::before {
    height: 100%;
  }
}

/* カテゴリー
--------------------------------*/
.c-category {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.c-category_item {
  background-color: #B1935E;
  border-radius: 0.4rem;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  padding: 0.2rem 0.7rem;
  color: #fff;
}
.c-category_item a {
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-category_item a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-category_item a:hover {
    opacity: 0.7;
  }
}
.c-category_item_ttl {
  margin-top: 0.7rem;
  line-height: 1.625;
  letter-spacing: 0.04em;
}

/* 日付
--------------------------------*/
.c-date {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: 2rem;
}
.c-date::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_date.svg) no-repeat center center/contain;
}

.c-date02 {
  position: relative;
  font-family: "Roboto", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  padding-left: 2rem;
}
.c-date02::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/icon_date_02.svg) no-repeat center center/contain;
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
.l-header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: 0.3s;
}
.l-header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5.5rem 0;
  height: 10rem;
}
@media screen and (max-width: 767px) {
  .l-header_inner {
    padding: 1.8rem 1.7rem;
    height: 6.2rem;
  }
}
.l-header_left .logo {
  width: 31rem;
  height: 5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo {
    width: 16.7rem;
    height: 2.7rem;
  }
}
.l-header_left .logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 31rem;
  height: 5rem;
  transition: 0.3s;
  background: url(../img/common/logo_03.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .l-header_left .logo::before {
    width: 16.7rem;
    height: 2.7rem;
  }
}
.l-header_left .logo span {
  opacity: 0;
}
.l-header_left .logo a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-header_left .logo a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .l-header_left .logo a:hover {
    opacity: 0.7;
  }
}
.l-header_center .menu .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7.2rem;
}
.l-header_center .menu .list_item {
  position: relative;
}
.l-header_center .menu .list_item_link {
  font-weight: 500;
  position: relative;
  display: block;
  margin-top: 3rem;
  padding-bottom: 3rem;
  cursor: pointer;
}
.l-header_center .menu .list_item_link.has-child {
  padding-right: 2.5rem;
}
.l-header_center .menu .list_item_link.has-child::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  right: 0;
  width: 1.8rem;
  height: 1.8rem;
  transition: 0.3s;
  background: url(../img/common/arrow_bottom_circle_yellow.svg) no-repeat center center/contain;
}
.l-header_center .menu .list_item_link.has-child.is-active {
  color: #B1935E;
}
.l-header_center .menu .list_item_link.has-child.is-active::before {
  transform: rotate(-180deg);
}
@media screen and (min-width: 768px) {
  .l-header_center .menu .list_item_link:hover {
    color: #B1935E;
  }
}
.l-header_center .menu .list_item .child-list {
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  background-color: #fff;
  padding: 1.6rem;
  box-shadow: 0 0.3rem 0.7rem rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
}
.l-header_center .menu .list_item .child-list.is-active {
  opacity: 1;
  visibility: visible;
}
.l-header_center .menu .list_item .child-list_item:nth-child(n+2) {
  margin-top: 0.8rem;
}
.l-header_center .menu .list_item .child-list_item_link {
  position: relative;
  padding-right: 3rem;
  display: block;
  white-space: nowrap;
}
.l-header_center .menu .list_item .child-list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #0D0F00;
}
@media screen and (min-width: 768px) {
  .l-header_center .menu .list_item .child-list_item_link:hover {
    color: #B1935E;
  }
  .l-header_center .menu .list_item .child-list_item_link:hover::before {
    background-color: #B1935E;
  }
}
.l-header_right .menu-trigger {
  width: 2rem;
  height: 1.6rem;
  position: absolute;
  z-index: 999;
  top: 50%;
  transform: translateY(-50%);
  right: 2.4rem;
}
.l-header_right .menu-trigger span {
  width: 2rem;
  height: 2px;
  background-color: #0D0F00;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  transition: 0.3s;
}
.is-fixed .l-header_right .menu-trigger span {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.l-header_right .menu-trigger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.is-fixed .l-header_right .menu-trigger span:nth-child(2) {
  opacity: 0;
}
.l-header_right .menu-trigger span:nth-child(3) {
  top: 100%;
}
.is-fixed .l-header_right .menu-trigger span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}
.l-header.is-active {
  background-color: transparent;
}
.l-header.is-active .l-header_left .logo::before {
  background: url(../img/common/logo.svg) no-repeat center center/contain;
}
.l-header.is-active .l-header_center .menu .list_item_link {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header.is-active .l-header_center .menu .list_item_link:hover {
    color: #B1935E;
  }
}
.l-header.is-active .l-header_right .menu-trigger span {
  background-color: #fff;
}
.is-fixed .l-header.is-active {
  background-color: #fff;
}
.is-fixed .l-header.is-active .l-header_left .logo::before {
  background: url(../img/common/logo_03.svg) no-repeat center center/contain;
}
.is-fixed .l-header.is-active .l-header_right .menu-trigger span {
  background-color: #0D0F00;
}
.l-header.-contact {
  border-bottom: 0.8rem solid #000;
}
@media screen and (max-width: 767px) {
  .l-header.-contact {
    border-bottom: 0.4rem solid #000;
  }
}

.gnavi {
  padding: 2rem 2.5rem 4rem;
  background-color: #fff;
  width: 31rem;
  position: fixed;
  height: calc(100% - 6.2rem);
  top: 6.2rem;
  right: 0;
  z-index: 99;
  transform: translateX(31rem);
  overflow-y: scroll;
  transition: 0.3s;
}
.is-fixed .gnavi {
  transform: translate(0);
}
.gnavi_inner {
  padding-bottom: 5rem;
}
.gnavi_inner .list_item {
  border-bottom: 1px solid #D3D3D3;
}
.gnavi_inner .list_item_link {
  display: block;
  padding: 1.4rem 0;
  font-weight: 500;
  position: relative;
}
.gnavi_inner .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.4rem;
  width: 2.5rem;
  height: 2.5rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #0D0F00;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .list_item_link:hover {
    color: #B1935E;
  }
  .gnavi_inner .list_item_link:hover::before {
    background-color: #B1935E;
  }
}
.gnavi_inner .list_item_link.js-acd::before {
  width: 1.8rem;
  height: 1.8rem;
  mask-image: none;
  transition: 0.3s;
  background: url(../img/common/arrow_bottom_circle_yellow.svg) no-repeat center center/contain;
}
.gnavi_inner .list_item_link.js-acd.is-open::before {
  transform: translateY(-50%) rotate(-180deg);
}
.gnavi_inner .list_item .child-list {
  padding-left: 1rem;
  display: none;
  padding-bottom: 1.7rem;
}
.gnavi_inner .list_item .child-list_item:nth-child(n+2) {
  margin-top: 1.4rem;
}
.gnavi_inner .list_item .child-list_item_link {
  display: block;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0;
  position: relative;
}
.gnavi_inner .list_item .child-list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.4rem;
  width: 2.5rem;
  height: 2.5rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #0D0F00;
}
@media screen and (min-width: 768px) {
  .gnavi_inner .list_item .child-list_item_link:hover {
    color: #B1935E;
  }
  .gnavi_inner .list_item .child-list_item_link:hover::before {
    background-color: #B1935E;
  }
}
.gnavi_inner .c-btn {
  margin-top: 8.8rem;
}
.gnavi_inner .c-btn_link {
  width: 26rem;
  height: 5rem;
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
.l-footer {
  background-color: #000000;
}
.l-footer * {
  color: #fff;
}
.l-footer .flex {
  padding: 12rem 0 13rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer .flex {
    display: block;
    padding: 4rem 0;
  }
}
.l-footer .flex .ttl-box {
  width: 28.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box .logo {
    width: 18.5rem;
    margin: 0 auto;
  }
}
.l-footer .flex .ttl-box .logo img {
  width: 100%;
}
.l-footer .flex .ttl-box .name {
  margin-top: 2rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box .name {
    font-size: 1.4rem;
    text-align: center;
  }
}
.l-footer .flex .ttl-box .address {
  margin-top: 1rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .ttl-box .address {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box {
    margin-top: 3rem;
  }
}
.l-footer .flex .menu-box .menu {
  margin-top: 2.4rem;
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .menu {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .menu .box:nth-child(n+2) {
    margin-top: 2.4rem;
  }
}
.l-footer .flex .menu-box .menu .box .ttl {
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
}
.l-footer .flex .menu-box .menu .box .list {
  margin-top: 1rem;
}
.l-footer .flex .menu-box .list {
  width: 26rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .list_item {
    width: calc(50% - 0.8rem);
  }
  .l-footer .flex .menu-box .list_item.-l {
    width: 100%;
  }
}
.l-footer .flex .menu-box .list_item_link {
  padding: 0.5rem 0;
  display: block;
  letter-spacing: 0.025em;
  font-size: 1.4rem;
  height: 100%;
  border-bottom: 1px solid #777777;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .list_item_link {
    vertical-align: bottom;
    padding: 0.7rem 2rem 0.7rem 0;
    display: flex;
    align-items: flex-end;
  }
}
.l-footer .flex .menu-box .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.5rem;
  width: 3rem;
  height: 3rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/arrow_right.svg);
  background-color: #fff;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .menu-box .list_item_link::before {
    right: 0;
    top: auto;
    transform: translate(0);
    bottom: 0.8rem;
    width: 2rem;
    height: 2rem;
  }
}
.l-footer .flex .menu-box .list_item_link.-l {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-footer .flex .menu-box .list_item_link:hover {
    color: #B1935E;
  }
  .l-footer .flex .menu-box .list_item_link:hover::before {
    background-color: #B1935E;
    right: -0.7rem;
  }
}
.l-footer .flex .other-link .list {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .other-link .list {
    margin-top: 4rem;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .other-link .list_item {
    width: 50%;
  }
}
.l-footer .flex .other-link .list_item:nth-child(n+2) {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer .flex .other-link .list_item:nth-child(n+2) {
    margin-top: 0;
  }
}
.l-footer .flex .other-link .list_item a {
  text-decoration: underline;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .l-footer .flex .other-link .list_item a:hover {
    color: #B1935E;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .flex .other-link .list_item a {
    font-size: 1.3rem;
  }
}
.l-footer .copyright {
  background-color: #777777;
  padding: 1rem 0;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright {
    font-size: 1.2rem;
    padding: 1.5rem 0 9rem;
  }
}
.l-footer .copyright small {
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .l-footer .copyright small {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer.-contact .copyright {
    padding: 1.5rem 0;
  }
}

/* ---------------------------------------------
  main
-----------------------------------------------*/
/* heading
---------------------------------------------------------------------------- */
.p-heading-01 {
  background-color: #000000;
  margin-top: 10rem;
  padding: 2rem 0 6.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-heading-01 {
    margin-top: 6.2rem;
    padding: 0.8rem 0 2.5rem;
  }
  .p-heading-01 .l-wrap {
    width: calc(100% - 3.2rem);
  }
}
.p-heading-01::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: calc(50% + 48rem);
  width: 31.6rem;
  height: 19.6rem;
  background: url(../img/common/logo_04.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-heading-01::before {
    width: 12.8rem;
    height: 7.9rem;
    left: 50%;
    top: 60%;
  }
}
.p-heading-01 .c-secttl-box {
  margin-top: 1rem;
}
.p-heading-01 .c-secttl-box .c-secttl-en {
  text-align: center;
}
.p-heading-01 .c-secttl-box .c-secttl-jp {
  text-align: center;
  font-size: 4.8rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-heading-01 .c-secttl-box .c-secttl-jp {
    font-size: 2.8rem;
  }
}

/* ページトップ
---------------------------------------------------------------------------- */
.page-top {
  position: fixed;
  z-index: 10;
  bottom: 0;
  right: 0;
  width: 5.4rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .page-top {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .page-top:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 3.2rem;
    bottom: 8.5rem;
  }
}
.page-top img {
  width: 100%;
}

/* 追従ボタン
---------------------------------------------------------------------------- */
.fixed-btn {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #777777;
  padding: 1.2rem;
  display: none;
}
.fixed-btn .c-btn_link {
  width: 100%;
  padding-left: 9.8rem;
}
.fixed-btn .c-btn_link::after {
  left: 6.7rem;
  width: 2.4rem;
  height: 1.7rem;
}
.fixed-btn .c-btn_link .arrow {
  width: 5rem;
  height: 5rem;
}

/* パンくずリスト
---------------------------------------------------------------------------- */
.breadcrumb-box {
  background-color: #000;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumb-box {
    padding: 1.4rem 0;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb-box .l-wrap {
    width: calc(100% - 3.2rem);
  }
}
.breadcrumb-box.-top {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .breadcrumb-box.-top {
    margin-top: 6.2rem;
  }
}

.c-breadcrumb .list {
  display: flex;
  align-items: center;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.c-breadcrumb .list::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb .list {
    width: calc(100% + 3.2rem);
    margin-left: -1.6rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
  }
}
.c-breadcrumb .list_item {
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0;
}
.c-breadcrumb .list_item_link {
  font-size: 1.2rem;
  color: #fff;
  padding-right: 2rem;
  position: relative;
  letter-spacing: 0;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .c-breadcrumb .list_item_link {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-breadcrumb .list_item_link:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb .list_item_link::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  width: 0.6rem;
  height: 1rem;
  background: url(../img/common/arrow_right_02.svg) no-repeat center center/contain;
}

/* テーブル
---------------------------------------------------------------------------- */
.c-dl .item {
  display: flex;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-dl .item {
    display: block;
    padding: 1.4rem 0;
  }
}
.c-dl .item::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 16rem;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 767px) {
  .c-dl .item::before {
    content: none;
  }
}
.c-dl .item dt {
  width: 16rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-dl .item dt {
    width: 100%;
  }
}
.c-dl .item dd {
  flex: 1;
  letter-spacing: 0.06em;
  padding-left: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-dl .item dd {
    margin-top: 0.8rem;
    padding-left: 0;
  }
}
.c-dl .item dd .list li {
  padding-left: 1.6rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
  position: relative;
}
.c-dl .item dd .list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #B1935E;
  border-radius: 50%;
}
.c-dl .item dd a {
  text-decoration: underline;
  color: #004EFF;
}
@media screen and (min-width: 768px) {
  .c-dl .item dd a {
    transition: opacity 0.3s;
    cursor: pointer;
  }
  .c-dl .item dd a:hover {
    opacity: 0.7;
  }
}

/* 無料相談はこちらから
---------------------------------------------------------------------------- */
.c-contact {
  padding: 9.6rem 0;
  background: url(../img/casting/bg_contact.jpg) no-repeat center center/cover;
  position: relative;
}
.c-contact.-management {
	  background: url(../img/casting/bg_contact_02.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .c-contact {
    background: #FCDF01;
    padding: 4rem 0 0;
  }
	.c-contact.-management {
		 background: #FCDF01;
}
}
.c-contact .en {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -3rem;
  font-size: 10rem;
  font-weight: 500;
  letter-spacing: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
  line-height: 1;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .c-contact .en {
    font-size: 4.6rem;
    left: -1rem;
    transform: translate(0);
    top: auto;
    bottom: 0rem;
  }
}
@media screen and (max-width: 1580px) {
  .c-contact .txt-box {
    padding-left: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box {
    padding-left: 0;
    padding-bottom: 4rem;
  }
}
.c-contact .txt-box .ttl {
  font-size: 4.7rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  padding-bottom: 2rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .ttl {
    font-size: 2.8rem;
    margin-left: 1rem;
  }
}
.c-contact .txt-box .ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 49.1rem;
  height: 1.4rem;
  background: url(../img/casting/img_contact_ttl.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .ttl::before {
    width: 29.6rem;
    height: 2.3rem;
  }
}
.c-contact .txt-box .txt {
  margin-top: 3.2rem;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .txt {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.c-contact .txt-box .c-btn {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .c-btn {
    margin-top: 2rem;
  }
}
.c-contact .txt-box .c-btn_link {
  padding-left: 7.4rem;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .c-btn_link {
    font-size: 1.6rem;
    padding-left: 5.4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact .txt-box .c-btn_link:hover::after {
    background-color: #000;
  }
}
.c-contact .txt-box .c-btn_link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5rem;
  width: 1.8rem;
  height: 1.4rem;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(../img/common/icon_mail.svg);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .c-contact .txt-box .c-btn_link::after {
    left: 3rem;
  }
}

/* リンクボックス
---------------------------------------------------------------------------- */
.c-link-box .flex {
  display: flex;
  justify-content: center;
  gap: 3.2rem;
}
@media screen and (max-width: 767px) {
  .c-link-box .flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}
.c-link-box .flex .box {
  width: 38.4rem;
}
@media screen and (max-width: 767px) {
  .c-link-box .flex .box {
    width: 100%;
  }
}
.c-link-box .flex .box .txt {
  height: 4.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-link-box .flex .box .txt {
    height: auto;
  }
}
.c-link-box .flex .box .c-btn {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-link-box .flex .box .c-btn {
    margin-top: 1rem;
  }
}
.c-link-box .flex .box .c-btn_link {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-link-box .flex .box .c-btn_link {
    padding-left: 6rem;
    width: 29.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-link-box .flex .box:nth-child(2) .c-btn_link {
    padding-left: 2.3rem;
    height: 6.8rem;
    text-align: center;
  }
}

/* リキャプチャ非表示
---------------------------------------------------------------------------- */
.grecaptcha-badge {
  visibility: hidden;
}

/* ------------------------------
    フェードインアニメーション
------------------------------ */
a {
  transition: 0.3s;
}

.fade-box {
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time08 {
  animation-delay: 0.8s;
}

.delay-time10 {
  animation-delay: 1s;
}

.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}
@media screen and (max-width: 767px) {
  .loading {
    height: auto;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
}

.loading-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
}

.loading-logo {
  opacity: 0;
  transition: opacity 0.7s;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 50rem;
}
@media screen and (max-width: 767px) {
  .loading-logo {
    width: 21.5rem;
  }
}/*# sourceMappingURL=common.css.map */