@charset "UTF-8";
/* CSSリセット
--------------------------------------------------------------------------------------------------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

fieldset, img {
  border: 0;
}

abbr, acronym {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

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

.clearfix::after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

/* COMMON */
html {
  font-size: 62.5%;
}
html.is_hidden {
  overflow: hidden;
}

body {
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #333;
  line-height: 1.71;
}

.min_text {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  letter-spacing: 0.15em;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

svg {
  display: block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.digger_logo {
  width: 100%;
  aspect-ratio: 1/0.36;
}

.icon_facebook {
  width: 26px;
  height: 26px;
}

.icon_instagram {
  width: 26px;
  height: 26px;
}

.icon_twitter {
  width: 23px;
  height: 23px;
}

.icon_youtube {
  width: 26px;
  height: 18px;
}

.icon_mail {
  width: 1.125em;
  aspect-ratio: 1/0.69;
}

.sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 0 0 -10px -16px;
}
.sns_list > li {
  margin: 0 0 10px 16px;
}
.sns_list a:hover {
  opacity: 0.5;
}

.inner {
  max-width: 1004px;
  width: 78.44%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    max-width: none;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .scale_half_em {
    font-size: 0.5em;
  }
  .scale_two3rd_em {
    font-size: 0.666em;
  }
}
.sr_only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.is_block {
  display: block;
}

.is_inline_block {
  display: inline-block;
}

.is_pc_block {
  display: block;
}

.is_pc_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .is_sp_block {
    display: block;
  }
  .is_pc_block {
    display: inline;
  }
  .is_pc_none {
    display: block;
  }
}
.fw_regular {
  font-weight: 400;
}

.fw_medium {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.disc_list {
  line-height: 1.5;
}
.disc_list > li {
  position: relative;
  padding-left: 1em;
}
.disc_list > li:not(:last-child) {
  margin-bottom: 0.9em;
}
.disc_list > li::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}

/* デフォルトカーソルを消す */
a.custom_link {
  cursor: none;
}

/* カスタムカーソル */
#custom_cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  background: center / contain no-repeat;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10000;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

/* typeごとの背景 */
#custom_cursor[data-type="dig"] {
  background-image: url(../img/common/cursor_dig.svg);
}
#custom_cursor[data-type="dig-white"] {
  background-image: url(../img/common/cursor_dig_white.svg);
}
#custom_cursor[data-type="shoot"] {
  background-image: url(../img/common/cursor_shoot.svg);
}

/* hover */
#custom_cursor.is_hover {
  opacity: 1;
}

/* click */
#custom_cursor.is_active_dig {
  transform: translate(-50%, -50%) rotate(-90deg);
}
#custom_cursor.is_active_shoot {
  transform: translate(-50%, -50%) rotate(90deg);
}



input,
textarea {
  display: block;
  background: #fff;
  outline: none;
  width: 100%;
  padding: 10px;
  border: solid 1px #333;
  border-radius: 0;
  font-size: 1.6rem;
  font-weight: 400;
  color: #333;
}

select {
  height: 4.2rem;
  background: #fff;
  outline: none;
  padding: 10px;
  border-radius: 3px;
  font-size: 1.6rem;
  font-weight: 400;
  cursor: pointer;
  color: #333;
}

@media screen and (max-width: 768px) {
  select {
    height: 4.2rem;
  }
}
/* プレースホルダー */
/* Chrome, Safari 5+, Opera 15+, iOS, Android */
::-webkit-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

/* Firefox 18- */
:-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
  opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

/* IE Edge */
::-ms-input-placeholder {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

button,
input[type=submit],
input[type=button] {
  height: auto;
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  white-space: normal;
}

button::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
  outline: none;
}

.wpcf7-form {
  max-width: 723px;
  margin: 0 auto;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 10px;
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
  max-width: 366px;
  margin: 60px auto 0;
  padding: 10px;
  background-color: transparent;
  border: solid 1px #333;
  border-radius: 3em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.53;
  color: #333;
  text-align: center;
}
.wpcf7-form .wpcf7-submit:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.color_white {
  color: #fff !important;
}

.color_black {
  color: #000 !important;
}

/*menu*/
#menu_button {
  display: block;
  position: fixed;
  top: 60px;
  right: 7.57%;
  width: 76px;
  height: 40px;
  z-index: 999;
  cursor: pointer;
}
#menu_button.is_active .menu__line.menu__top {
  top: 20px;
  -webkit-transform: rotate(24deg);
          transform: rotate(24deg);
}
#menu_button.is_active .menu__line.menu__center {
  display: none;
}
#menu_button.is_active .menu__line.menu__bottom {
  top: 20px;
  width: 100%;
  -webkit-transform: rotate(-24deg);
          transform: rotate(-24deg);
}
#menu_button .menu__line {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 2px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
#menu_button .menu__line.menu__top {
  top: 4px;
}
#menu_button .menu__line.menu__center {
  top: 20px;
}
#menu_button .menu__line.menu__bottom {
  bottom: 4px;
  width: 26.31%;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 768px) {
  #menu_button {
    top: 13px;
    right: 5%;
    width: 40px;
    height: 40px;
  }
  #menu_button.is_active .menu__line.menu__top {
    top: 19px;
  }
  #menu_button.is_active .menu__line.menu__bottom {
    top: 19px;
    width: 100%;
  }
  #menu_button .menu__line.menu__top {
    top: 10px;
  }
  #menu_button .menu__line.menu__center {
    top: 19px;
  }
  #menu_button .menu__line.menu__bottom {
    bottom: 10px;
    width: 30%;
  }
}
/* header */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  padding: 10px calc(7.57% + 90px) 10px 6.4%;
  color: #fff;
  z-index: 99;
}
.header.is_visible::before {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 1;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  backdrop-filter: blur(3px) brightness(0.9);
  background: rgba(51, 51, 51, 0.6);
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.header_logo_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header_logo {
  display: block;
  max-width: 170px;
  margin-right: 20px;
}
.header_logo:hover {
  opacity: 0.5;
}
.header_logo .digger_logo {
  width: 100%;
  aspect-ratio: 1/0.36;
  fill: #fff;
}

.header_service_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 1em;
  font-size: 1.3rem;
  line-height: 1.4;
}
.header_service_list > li:not(:first-child)::before {
  content: "/";
  display: inline-block;
  margin: 0 0.5em;
}

#gnav {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  height: 100dvh;
  background-color: #333;
  visibility: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  z-index: -99;
}
#gnav[aria-hidden=false] {
  visibility: visible;
  right: 0;
  opacity: 1;
  z-index: -1;
}

.gnav_wrap {
  display: block;
  height: 100%;
  overflow-y: auto;
  padding: 180px 40px 8rem;
}
.gnav_wrap .sns_list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  fill: #fff;
  stroke: #fff;
}

.gnav_list > li {
  border-bottom: solid 1px #fff;
}
.gnav_list > li:not(:last-child) {
  margin-bottom: 10px;
}
.gnav_list a {
  display: block;
  padding: 10px;
}
.gnav_list a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    padding: 8px calc(5% + 60px) 8px 5%;
  }
  .header_logo {
    max-width: 100px;
    margin-right: 10px;
  }
  .header_service_list {
    display: block;
    margin-top: 0;
    font-size: 1rem;
  }
  .header_service_list > li:not(:first-child)::before {
    display: none;
  }
  #gnav {
    max-width: 250px;
  }
  .gnav_wrap {
    padding: 80px 20px 8rem;
  }
}
/* footer */
.bottom_wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.32;
  background-color: #fff;
  overflow: hidden;
}
.bottom_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(3px) brightness(0.9);
  z-index: 1;
}
.bottom_wrap .js_parallax {
  display: block;
  width: 100%;
  aspect-ratio: 1/0.4;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  position: relative;
  padding: 160px 6.4% 54px;
  background: #eaab1c;
  z-index: 1;
}

.footer_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: -40px 0 0 -40px;
}
.footer_flex > * {
  margin: 40px 0 0 40px;
}

.footer_logo {
  display: block;
  width: 120px;
  margin: 0 0 20px;
}
.footer_logo:hover {
  opacity: 0.5;
}

.footer_service_list {
  font-size: 1.2rem;
  line-height: 1.66;
}

.footer_nav_list {
  min-width: 110px;
  font-size: 1.3rem;
}
.footer_nav_list > li:not(:last-child) {
  margin-bottom: 4px;
}
.footer_nav_list a:hover {
  opacity: 0.5;
}

.footer_bottom_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 120px 0 -40px -40px;
}
.footer_bottom_flex > * {
  margin: 0 0 40px 40px;
}

.footer_address {
  font-size: 1.2rem;
}

.footer_sns_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.footer_sns_nav .footer_sns_title {
  margin-right: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.copyright {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .bottom_wrap {
    aspect-ratio: 1/0.5;
  }
  .bottom_wrap .js_parallax {
    aspect-ratio: 1/0.58;
  }
  .footer {
    padding: 60px 5% 40px;
  }
  .footer_bottom_flex {
    display: block;
    margin: 40px 0 0;
  }
  .footer_bottom_flex > * {
    margin: 30px 0 0;
  }
  .copyright {
    text-align: right;
  }
}
/* アニメーション */
.fadeinUp {
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  opacity: 0;
}

.fadeinUp.anistart {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/* LAYOUT */
.mv_outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  height: 340px;
  padding: 180px 6.4% 40px;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(3px) brightness(0.9);
  color: #fff;
  z-index: 3;
}

.mv_headline {
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .mv_outer {
    height: 260px;
    padding: 80px 5% 20px;
  }
}
.breadcrumbs_nav {
  margin: 30px 0 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 0 -1em;
}
.breadcrumbs > li {
  position: relative;
  margin: 0 0 0 1em;
}
.breadcrumbs > li:not(:first-child)::before {
  content: ">";
  position: absolute;
  top: 0;
  left: -0.8em;
}
.breadcrumbs a {
  display: block;
}
.breadcrumbs a:hover {
  opacity: 0.5;
}

.simple_outer {
  position: relative;
  min-height: calc(100dvh - 140px);
  padding: 160px 0 200px;
  background-color: #eaab1c;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .simple_outer {
    min-height: calc(100dvh - 60px);
    padding: 80px 0 100px;
  }
}
.post_headline_wrap {
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: solid 1px;
}

.date_category_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -10px 0 16px -16px;
}
.date_category_block > * {
  margin: 10px 0 0 16px;
}
.date_category_block .category {
  display: inline-block;
  padding: 1px 10px 2px;
  background-color: #333;
  border-radius: 1em;
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.4;
}

.post_thumbnail {
  width: 100%;
  aspect-ratio: 1/0.56;
  margin: 0 0 20px;
}
.post_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.post_headline {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .post_headline_wrap {
    margin-bottom: 40px;
  }
  .post_headline {
    font-size: 2.4rem;
  }
}
.post_body *:not(:last-child) {
  margin-bottom: 1.5em;
}
.post_body h1 {
  margin-bottom: 60px !important;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body h1:not(:first-child) {
  margin-top: 60px;
}
.post_body h2 {
  margin-bottom: 30px !important;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body h2:not(:first-child) {
  margin-top: 40px;
}
.post_body h3 {
  margin-bottom: 30px !important;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body h3:not(:first-child) {
  margin-top: 40px;
}
.post_body h4 {
  margin-bottom: 30px !important;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body h5 {
  margin-bottom: 30px !important;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body h6 {
  margin-bottom: 30px !important;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.post_body a {
  text-decoration: underline;
}
.post_body ul {
  list-style-type: disc;
  margin-left: 1em;
}
.post_body ul li:not(:last-child) {
  margin-bottom: 1em;
}
.post_body ul ul {
  margin-top: 1em;
}
.post_body ol {
  list-style-type: decimal;
  margin-left: 1em;
}
.post_body ol li:not(:last-child) {
  margin-bottom: 1em;
}
.post_body ol ol {
  margin-top: 1em;
}
.post_body table th, .post_body table td {
  background: transparent;
  border: solid 1px #333;
}

.post_list {
  font-size: 1.6rem;
}
.post_list > li {
  border-bottom: solid 1px #333;
}
.post_list a {
  display: block;
  padding: 16px 10px;
}
.post_list a:hover {
  opacity: 0.5;
}
.post_list .date_category_block {
  margin-bottom: 6px;
}

.post_works_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 0 0 -40px 0;
}
.post_works_list > li {
  width: 47%;
  margin: 0 0 40px 0;
}
.post_works_list a {
  display: block;
  height: 100%;
}
.post_works_list a:hover {
  opacity: 0.5;
}
.post_works_list a:hover .works_card .img_block img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .post_works_list > li {
    width: 100%;
  }
}

.works_card .img_block {
  width: 100%;
  aspect-ratio: 1/0.56;
  margin: 0 0 10px;
  overflow: hidden;
}
.works_card .img_block img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.works_card .title {
  font-size: 1.8rem;
  font-weight: 500;
}
.works_card .summary {
  font-size: 1.4rem;
}
.works_card .client_name {
  margin-top: 10px;
  font-size: 0.8em;
  text-align: right;
}

.navigation {
  margin: 90px 0 0;
  text-align: center;
}
.navigation .nav-links {
  display: inline-block;
  position: relative;
  margin-bottom: -10px;
  padding: 20px 3em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.navigation .nav-links .page-numbers {
  margin: 0 0.625em 10px;
}
.navigation .nav-links .page-numbers.current {
  color: #EB6E8C;
}
.navigation .nav-links .page-numbers:hover {
  color: #EB6E8C;
}
.navigation .nav-links .page-numbers.prev, .navigation .nav-links .page-numbers.next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  padding: 0;
}
.navigation .nav-links .page-numbers.prev {
  left: 0;
}
.navigation .nav-links .page-numbers.next {
  right: 0;
}

@media screen and (max-width: 768px) {
  .navigation {
    margin: 60px 0 0;
  }
  .navigation .nav-links {
    padding: 15px 3em;
  }
}
.more_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 366px;
  margin: 100px auto 0;
  padding: 10px;
  border: solid 1px #333;
  border-radius: 3em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.53;
  overflow: hidden;
  isolation: isolate;
}
.more_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: #333;
  border-radius: 3em;
  z-index: -1;
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.more_btn:hover {
  color: #fff;
}
.more_btn:hover::before {
  width: 100%;
}

.back_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 366px;
  margin: 100px auto 0;
  padding: 10px;
  border: solid 1px #333;
  border-radius: 3em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.53;
  overflow: hidden;
  isolation: isolate;
}
.back_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: #333;
  border-radius: 3em;
  z-index: -1;
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.back_btn:hover {
  color: #fff;
}
.back_btn:hover::before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .more_btn {
    margin: 40px auto 0;
  }
  .back_btn {
    margin: 40px auto 0;
  }
}
.top_fixed_bg_block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.top_fixed_bg_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.fixed_bg_block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 340px;
  z-index: -1;
  pointer-events: none;
}
.fixed_bg_block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.bg_wrap {
  position: relative;
  padding: 300px 0 110px;
  background-color: #eaab1c;
  z-index: 1;
}
.bg_wrap:has(.top_news_section) {
  padding-top: 110px;
}

@media screen and (max-width: 768px) {
  .fixed_bg_block {
    height: 260px;
  }
  .bg_wrap {
    padding: 100px 0 80px;
  }
  .bg_wrap:has(.top_news_section) {
    padding-top: 80px;
  }
}
.top_mv_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  min-height: 100dvh;
  padding: 180px 6.4% 130px;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(3px) brightness(0.9);
  font-weight: 500;
  color: #fff;
  z-index: 3;
}

.top_mv_wrap {
  max-width: 47rem;
}

.top_mv_headline {
  margin-bottom: 30px;
  font-size: 3rem;
  line-height: 1.53;
}

.top_mv_text {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .top_mv_section {
    padding: 80px 5% 60px;
  }
  .top_mv_wrap {
    max-width: none;
  }
  .top_mv_headline {
    font-size: 2.4rem;
  }
  .top_mv_text {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .top_mv_section {
    padding: 80px 5% 60px;
  }
  .top_mv_wrap {
    max-width: none;
  }
  .top_mv_headline {
    font-size: 2.4rem;
  }
  .top_mv_text {
    font-size: 1.4rem;
  }
}
.headline {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.3;
}
.headline .en_text {
  display: block;
  margin-top: 6px;
  letter-spacing: 0.2em;
}
.headline .ja_text {
  display: block;
  font-size: 1.6rem;
}

.top_news_section {
  margin-bottom: 200px;
  padding: 0 0.54% 0 13.75%;
}

.top_news_flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top_news_flex .headline {
  width: 180px;
  margin: 0 40px 7rem 0;
}
.top_news_flex .post_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top_news_flex .post_list > li:first-child a {
  padding-top: 0;
}
.top_news_flex .more_btn {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  max-width: 180px;
}

@media screen and (max-width: 768px) {
  .top_news_section {
    margin-bottom: 100px;
    padding: 0 5%;
  }
  .top_news_flex {
    display: block;
  }
  .top_news_flex .headline {
    width: auto;
    margin: 0 0 20px;
  }
  .top_news_flex .post_list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .top_news_flex .post_list > li:first-child a {
    padding-top: 16px;
  }
  .top_news_flex .more_btn {
    position: relative;
    bottom: auto;
    left: auto;
    margin: 40px auto 0;
    max-width: 366px;
  }
}
@-webkit-keyframes textSlideIn {
  0% {
    display: -webkit-box;
    display: flex;
    max-width: 192px;
    padding-right: 20px;
    opacity: 1;
    z-index: 0;
  }
  48% {
    display: -webkit-box;
    display: flex;
    max-width: 192px;
    padding-right: 20px;
    opacity: 0;
    z-index: 0;
  }
  49% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 0;
    z-index: 0;
  }
  50% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 0;
    z-index: 2;
  }
  100% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 1;
    z-index: 2;
  }
}
@keyframes textSlideIn {
  0% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 192px;
    padding-right: 20px;
    opacity: 1;
    z-index: 0;
  }
  48% {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 192px;
    padding-right: 20px;
    opacity: 0;
    z-index: 0;
  }
  49% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 0;
    z-index: 0;
  }
  50% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 0;
    z-index: 2;
  }
  100% {
    display: block;
    max-width: 77.26%;
    padding: 50px 11.24%;
    color: #fff;
    opacity: 1;
    z-index: 2;
  }
}
@-webkit-keyframes textDisplay {
  0% {
    display: none;
  }
  48% {
    display: none;
  }
  50% {
    display: block;
  }
  100% {
    display: block;
  }
}
@keyframes textDisplay {
  0% {
    display: none;
  }
  48% {
    display: none;
  }
  50% {
    display: block;
  }
  100% {
    display: block;
  }
}
.top_page_section {
  padding: 0 0.54% 0 13.75%;
}
.top_page_section:not(:first-child) {
  margin-top: 36px;
}
.top_page_section a {
  position: relative;
  display: block;
  padding: 0 74.56% 0 0;
  overflow: hidden;
}
.top_page_section a:hover {
  padding: 0;
}
.top_page_section a:hover .img_block::before {
  width: 100%;
  opacity: 1;
}
.top_page_section a:hover .text_block {
  margin: 0 0 0 25.43%;
  -webkit-animation: textSlideIn 0.3s linear forwards;
          animation: textSlideIn 0.3s linear forwards;
}
.top_page_section a:hover .text_block::after {
  margin-top: 30px;
  background-image: url(../img/common/icon_arrow_white.png);
}
.top_page_section a:hover .title {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 14px;
  text-align: left;
}
.top_page_section a:hover .title .en_text {
  margin: 4px 0 0;
}
.top_page_section a:hover .text_box {
  display: block;
  -webkit-animation: textDisplay 0.3s linear forwards;
          animation: textDisplay 0.3s linear forwards;
}
.top_page_section .img_block {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 74.56%;
  margin: 0;
  overflow: hidden;
}
.top_page_section .img_block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0%;
  padding: 50px 11.24%;
  background: rgba(51, 51, 51, 0.6);
  backdrop-filter: blur(3px) brightness(0.9);
  opacity: 0;
  overflow: scroll;
  z-index: 2;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.top_page_section .img_block img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.top_page_section .text_block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 192px;
  min-height: 400px;
  padding-right: 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.top_page_section .text_block::after {
  content: "";
  display: block;
  max-width: 172px;
  width: 100%;
  aspect-ratio: 1/0.1;
  margin-top: 20px;
  background: url(../img/common/icon_arrow.png) center/contain no-repeat;
}
.top_page_section .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: right;
}
.top_page_section .title .en_text {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.2em;
}
.top_page_section .title .ja_text {
  display: block;
  font-size: 1.6rem;
}
.top_page_section .text_box {
  display: none;
  min-height: 4em;
}

@media screen and (max-width: 768px) {
  .top_page_section {
    padding: 0;
  }
  .top_page_section:not(:first-child) {
    margin-top: 60px;
  }
  .top_page_section a {
    padding: 0;
    overflow: auto;
  }
  .top_page_section a:hover {
    padding: 0;
  }
  .top_page_section a:hover .text_block {
    margin: 0;
    -webkit-animation: none;
            animation: none;
  }
  .top_page_section a:hover .text_block::after {
    margin: 16px 0 0 auto;
    background-image: url(../img/common/icon_arrow.png);
  }
  .top_page_section a:hover .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 14px;
    text-align: left;
  }
  .top_page_section a:hover .title .en_text {
    margin: 0;
  }
  .top_page_section a:hover .text_box {
    -webkit-animation: none;
            animation: none;
  }
  .top_page_section .img_block {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 1/0.5;
    margin: 0 0 16px;
  }
  .top_page_section .img_block::before {
    display: none;
  }
  .top_page_section .img_block img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: -1;
  }
  .top_page_section .text_block {
    display: block;
    max-width: none;
    min-height: 0;
    padding: 0 5%;
  }
  .top_page_section .text_block::after {
    max-width: 100px;
    aspect-ratio: auto;
    height: 14px;
    margin: 16px 0 0 auto;
    background-position: right;
    background-size: 160px;
  }
  .top_page_section .title {
    display: block;
    margin-bottom: 14px;
    font-size: 2rem;
    text-align: left;
  }
  .top_page_section .title .en_text {
    margin: 0;
  }
  .top_page_section .text_box {
    display: block;
    min-height: 0;
  }
}
.top_contact_section {
  margin-top: 114px;
  text-align: center;
}

.top_contact_inner {
  max-width: 728px;
  width: 90%;
  margin: 0 auto;
}

.top_contact_headline {
  margin-bottom: 30px;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: 0.2em;
  text-align: center;
}

.top_contact_text {
  font-size: 1.2rem;
  line-height: 1.66;
}

.top_contact_btn_block {
  margin-top: 20px;
  padding-top: 34px;
  border-top: solid 2px #333;
}

.contact_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  max-width: 366px;
  margin: 0 auto;
  padding: 10px;
  border: solid 1px #333;
  border-radius: 3em;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.53;
  overflow: hidden;
  isolation: isolate;
}
.contact_btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  background: #333;
  border-radius: 3em;
  z-index: -1;
  pointer-events: none;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.contact_btn:hover {
  color: #fff;
}
.contact_btn:hover::before {
  width: 100%;
}
.contact_btn:hover .icon_mail {
  fill: #fff;
  stroke: #fff;
}
.contact_btn .icon_mail {
  margin: 0 0.43em 0 0;
  fill: #333;
  stroke: #333;
}

@media screen and (max-width: 768px) {
  .top_contact_section {
    margin-top: 80px;
    text-align: left;
  }
  .top_contact_inner {
    max-width: none;
    width: 90%;
  }
}