@charset "UTF-8";


/*---------------------------------------------------------------*\
$underline
\*---------------------------------------------------------------*/

.u_effect_w {
  display: inline;
  background: linear-gradient(0deg, #fff, #fff) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2px;
  --bg-h: 2px;
}

.u_effect_b {
  display: inline;
  background: linear-gradient(0deg, #333, #333) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  text-decoration: none;
  color: inherit;
  padding-bottom: 2px;
  --bg-h: 2px;
}

.u_wrap:where(:hover, :focus-visible) .u_effect_w,
.u_wrap:where(:hover, :focus-visible) .u_effect_b {
  background-size: 100% var(--bg-h);
  background-position-x: left;
}



/*---------------------------------------------------------------*\
$modal menu
\*---------------------------------------------------------------*/


#modal-read-more .modal__container {
  width: 75%;
  max-width: 1400px;
}

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

  #modal-read-more .modal__container {
    width: 95%;
  }
}


.micromodal-slide {
  visibility: hidden;
}

.micromodal-slide.is-open {
  visibility: visible;
}

.modal__overlay {
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgb(0, 0, 0, .8);
  z-index: 100;
}

.modal__container {
  width: 560px;
  padding: 48px 16px;
  max-height: 90vh;
  overflow: scroll;
  z-index: 200;
  position: relative;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.6s cubic-bezier(0.34, 0.07, 0.095, 0.995);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.4s cubic-bezier(0.73, 0.26, 0.25, 1.62);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.4s cubic-bezier(.37, .41, .04, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal__close {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 10;
  cursor: pointer;
  top: 12px;
  right: 12px;
}

.square_btn {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #262626;
}

.square_btn::before, .square_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 14px;
  /* 棒の高さ */
  background-color: #fff;
  /* バツ印の色 */
}

.square_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
  will-change: transform;
}

.square_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  will-change: transform;
}

/* modal animation */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: scale(1.3);
  }

  to {
    transform: scale(1);
  }
}

@keyframes mmslideOut {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.3);
  }
}


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

  .modal__overlay {
    right: 0;
  }
}


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

  .modal__overlay {
    width: 100%;
  }

  .modal__container {
    width: 88%;
  }
}


.mobile_menu {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.menu_title_en {
  font-size: 16px;
}

.menu_title_jp {
  font-size: 12px;
  color: #666;
  margin: 8px 0 0 0;
}

.language_switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px 10px;
  border: solid 1px #101010;
  border-radius: 60px;
  width: fit-content;
  margin: 0 auto;
}

.language_border {
  width: 1px;
  height: 10px;
  margin: 2px 0 0 0;
  background-color: #111;
}



/*---------------------------------------------------------------*\
$animate
\*---------------------------------------------------------------*/

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__delay-0_1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.animate__animated.animate__delay-0_2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.animate__animated.animate__delay-0_3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.animate__animated.animate__delay-0_4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.animate__animated.animate__delay-0_5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animate__animated.animate__delay-0_6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.animate__animated.animate__delay-0_7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.animate__animated.animate__delay-0_8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.animate__animated.animate__delay-0_9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}


.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}


/* fadeIn */
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* fadeInUp */
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* fadeInDown */
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/* fadeInLeft */
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}


/*---------------------------------------------------------------*\
$body
\*---------------------------------------------------------------*/

body {
  position: relative;
}

body:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  transition: opacity .5s ease;
}

body.fadeout:after {
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/*---------------------------------------------------------------*\
$text underline
\*---------------------------------------------------------------*/

.animate_link {
  text-decoration: none;
  /* デフォルトの下線を非表示にする */
  width: fit-content;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: right bottom;
  /* 線の起点を左・下に設定 */
  background-size: 0 1px;
  /* 線の横幅を0、縦幅を1pxに */
  transition: background-size 0.4s;
  /* 線を伸ばすアニメーション実行時間を指定 */
}

.each_news:hover .animate_link,
.each_casework:hover .animate_link {
  background-size: 100% 1px;
  /* 線の横幅を100%にする */
  background-position: left bottom;
  /* 線の起点を左・下に設定 */
}



/*---------------------------------------------------------------*\
$reset styles
\*---------------------------------------------------------------*/

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, p, blockquote, th, td, input, select, textarea, button {
  margin: 0;
  padding: 0;
}

a, a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  outline: none;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

figure {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
}

span, i, time, picture, a {
  display: block;
}


/* selection color */
::selection {
  background: #FFC122;
  /* Safari */
}

::-moz-selection {
  background: #FFC122;
  /* Firefox */
}


/* clearfix */
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}


/* block content */
.inline_block {
  display: inline-block;
}

.block {
  display: block;
}


/* all,html,body,layout */
* {
  color: #2d2d2d;
  font-size: 18px;
  box-sizing: border-box;
  line-height: 1;
  border-radius: 0;
}

html {
  /* lenisをfooterまで動かすために必要 */
  height: auto !important;
  /* lenisの挙動を担保するために必要 */
  scroll-behavior: auto !important;
  /* scroll-behavior: smooth; */
  margin: 0 !important;
}

body {
  font-family: "Inter Tight", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 420;
  /* -webkit-font-smoothing: antialiased; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden !important;
}


/* images and movies */
img, canvas, iframe, video, svg {
  border: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

img, svg {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
}


/* transition */
.transition {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}


/* typefaces */
.noto_bold {
  font-weight: 370;
  font-variation-settings: "wght"370;
}

.noto_ex_bold {
  font-weight: 550;
  font-variation-settings: "wght"550;
}


/* word break */
.break_on_sp {
  display: none;
}

.break_off_sp {
  display: block;
}

.break_on_tablet {
  display: none;
}


/* flex */
.flex {
  display: flex;
}

.flex_col {
  flex-direction: column;
}

.flex_wrap {
  flex-wrap: wrap;
}

.justify_between {
  justify-content: space-between;
}

.justify_center {
  justify-content: center;
}

.justify_start {
  justify-content: flex-start;
}

.justify_end {
  justify-content: flex-end;
}

.items_center {
  align-items: center;
}

.items_start {
  align-items: flex-start;
}

.items_end {
  align-items: flex-end;
}


/* text align */
.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}


/* line height */
.line_mini {
  line-height: 1.3;
}

.line_p {
  line-height: 1.8;
}

.line_ex {
  line-height: 2.5;
}

.line_max {
  line-height: 3;
}


/* colors */
.primary_black {
  background-color: #262626;
}

.primary_blue {
  background-color: #3EC3FD;
}

.primary_white {
  background-color: #fff;
}


.primary_gray {
  background-color: #fafafa;
}

.bg_gray {
  background-color: #fafafa;
}


/* shadow */
.shadow {
  box-shadow: 0px 10px 32px rgb(0 0 0 / 8%);
}

.shadow_l {
  box-shadow: 0px 10px 56px rgb(0 0 0 / 32%);
}


/* font colors */
.font_white {
  color: #fff;
}

.font_blue {
  color: #3EC3FD;
}

.font_gray {
  color: #a0a0a0;
}

.font_secondary_dark {
  color: #444;
}


/* radius */
.radius {
  border-radius: 10px;
}

.radius_round {
  border-radius: 50%;
}

.radius_button {
  border-radius: 80px;
}


/* overflow */
.hidden {
  overflow: hidden;
}


/* form */
input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* form - IE */
input:-ms-input-placeholder,
input:-ms-textarea-placeholder {
  color: #aaa;
}

/* form - Edge */
input::-ms-input-placeholder,
input:-ms-textarea-placeholder {
  color: #aaa;
}


/* input */
input[type="search"],
input[type="button"],
input[type="submit"],
input[type="reset"] select,
textarea,
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

input, select, textarea, button {
  font-family: inherit;
  font-weight: inherit;
  outline: none;
  border: 1px solid #333;
  background-color: #FFF;
}

input[type="text"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="file"],
input[type="image"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
select,
textarea {
  display: block;
}

input[type="color"],
input[type="file"],
input[type="button"],
input[type="submit"],
input[type="reset"],
button {
  cursor: pointer;
}

input[type="color"],
input[type="file"],
input[type="image"] {
  border: none;
  background-color: transparent;
}

select {
  text-indent: 0.01px;
  text-overflow: '';
  background-image: url(./under_arrow.svg);
  background-position: 100% center;
  background-repeat: no-repeat;
  padding: 0 20px 0 10px;
}

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

textarea {
  overflow: auto;
  display: block;
  resize: vertical;
}


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

  /* word break */
  .break_on_tablet {
    display: block;
  }
}


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

  /* common */
  * {
    font-size: 13px;
  }

  /* word break */
  .break_on_sp {
    display: block;
  }

  .break_off_sp {
    display: none;
  }
}