@charset "UTF-8";


/*---------------------------------------------------------------*\
$menu rane
\*---------------------------------------------------------------*/

.menu_rane {
  width: 160px;
  height: auto;
  padding: 64px 0;
  border-right: solid 3px #F5FBFF;
  margin: 0;
  transition: all 0.5s 0s ease;
  position: relative;
}

/* logo */
.menu_rane .logo {
  width: 160px;
  height: 140px;
  position: fixed;
  top: -160px;
  left: 0;
  border-bottom: solid 1px rgba(255, 255, 255, 1);
}

.menu_rane .inner_logo {
  width: 110px;
  margin: auto;
  fill: #fff;
}

/* content */
.content {
  width: calc((100% - 160px));
  transition: all 0.5s 0s ease;
}


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

  .wrapper_radius {
    margin: 0;
  }

  .core_content {
    width: 100% !important;
    border-radius: 0 !important;
  }

  /* menu rane */
  .menu_rane {
    display: none;
  }

  /* content */
  .content {
    width: 100%;
  }
}


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

  /* menu rane */
  .menu_rane {
    display: none;
  }

  /* content */
  .content {
    width: 100%;
  }
}



/*---------------------------------------------------------------*\
$menu button - PC side menu
\*---------------------------------------------------------------*/

.menu_rane .wrap_navigation {
  width: 160px;
  position: sticky;
  top: 50%;
  left: 0;
  z-index: 1;
  gap: 40px;
}

.main_menu {
  -webkit-transition: all .2s;
  transition: all .2s;
  transition: opacity .2s, transform .2s;
  margin: auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  cursor: pointer;

  &:hover {
    opacity: .8;
  }

  &:active {
    transform: scale(.85);
  }
}

.main_menu .dots {
  width: 48px;
  height: 5px;
  border-radius: 10px;
  margin: 0 auto 8px;
}

.main_menu .text {
  font-size: 15px;
  letter-spacing: 1px;
}



/*---------------------------------------------------------------*\
$animation
\*---------------------------------------------------------------*/

: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);
  }
}



/*---------------------------------------------------------------*\
$content wrap
\*---------------------------------------------------------------*/

.content_wrap {
  padding-left: calc((130px + 5%));
}

.content_wrap_fit {
  padding-left: 130px;
}


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

  .content_wrap,
  .content_wrap_fit {
    padding-left: 5%;
  }
}


/*---------------------------------------------------------------*\
$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: #eee;
  /* Safari */
}

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


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


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

.block {
  display: block;
}

.inline {
  display: inline;
}



/*---------------------------------------------------------------*\
$all,html,body,layout
\*---------------------------------------------------------------*/

* {
  color: #111;
  font-size: 22px;
  box-sizing: border-box;
  line-height: 1;
}


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

  * {
    font-size: 20px;
  }
}

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

  * {
    font-size: 17px;
  }
}


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

  * {
    font-size: 14px;
  }
}


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

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-weight: 650;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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);
}



/*---------------------------------------------------------------*\
$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;
}


/*---------------------------------------------------------------*\
$font weight
\*---------------------------------------------------------------*/

.font_bold {
  font-weight: 780;
}


/*---------------------------------------------------------------*\
$font
\*---------------------------------------------------------------*/

.red_hat {
  font-family: "Red Hat Display", serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}


/*---------------------------------------------------------------*\
$word break
\*---------------------------------------------------------------*/

.break_on_sp {
  display: none;
}

.break_on_tablet {
  display: none;
}

.break_on_pcsmall {
  display: none;
}

.break_off_sp {
  display: block;
}


/*---------------------------------------------------------------*\
$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;
}

.line_max {
  line-height: 3;
}


/*---------------------------------------------------------------*\
$colors 
\*---------------------------------------------------------------*/

.primary_black {
  background-color: #111;
}

.primary_white {
  background-color: #fff;
}

.primary_red {
  background-color: #D62545;
}

.primary_blue {
  background-color: #13C6FF;
}

.primary_dark_red {
  background-color: #A52036;
}

.primary_dark_blue {
  background-color: #2797D6;
}

.primary_light_blue {
  background-color: #F0F9FF;
}


/*---------------------------------------------------------------*\
$shadow 
\*---------------------------------------------------------------*/

.shadow {
  box-shadow: 0px 20px 30px 0px rgba(226, 236, 249, 0.4);
}

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



/*---------------------------------------------------------------*\
$overflow 
\*---------------------------------------------------------------*/

.hidden {
  overflow: hidden;
}

.clip {
  overflow: clip;
}


/*---------------------------------------------------------------*\
$font colors 
\*---------------------------------------------------------------*/

.font_white {
  color: #fff;
}

.font_red {
  color: #D62545;
}

.font_blue {
  color: #13C6FF;
}

.font_dark_blue {
  color: #2794D1;
}

.font_secondary_dark {
  color: #444;
}


/*---------------------------------------------------------------*\
$radius 
\*---------------------------------------------------------------*/

.radius {
  border-radius: 24px;
}

.radius_s {
  border-radius: 12px;
}

.radius_round {
  border-radius: 50%;
}

.radius_button {
  border-radius: 120px;
}


/*---------------------------------------------------------------*\
$form 
\*---------------------------------------------------------------*/

/* 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: 1280px) {

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


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

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


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

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

  .break_off_sp {
    display: none;
  }
}