@charset "UTF-8";



/*---------------------------------------------------------------*\
$button hover effects
\*---------------------------------------------------------------*/

/* primary button */
.primary_button {
  width: 80%;
  height: 28px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* appearance: none; */
  cursor: pointer;
  outline: none;
  border-radius: 80px !important;
}

.primary_button span {
  position: relative;
  z-index: 1;
  font-size: 10px;
}

.primary_button span:after {
  content: attr(data-text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: fit-content;
  height: 100%;
  color: transparent;
  background: linear-gradient(to right, #fff 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.primary_button:hover {
  border: none;
}

.primary_button:hover span {
  color: #fff;
}

.primary_button:hover span:after {
  opacity: 1;
}

.primary_button:before {
  content: '';
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(to right, #00e1ff 0%, #f828ff 100%);
  border-radius: 50%;
  filter: blur(50px);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: 0;
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.primary_button:hover:before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s ease;
}

.primary_button:hover {
  background-color: #000;
  transform: translateY(2px);
  box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.6),
    inset 0 0 40px rgba(255, 255, 255, 0.8);
}



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

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


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

  * {
    font-size: 15px;
  }
}


html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
}


/*---------------------------------------------------------------*\
$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;
  height: fit-content;
}

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

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

img, canvas, iframe, video, svg {
  border: none;
  max-width: 100%;
  height: auto;
  display: block;
}

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


/*---------------------------------------------------------------*\
$screen reader
\*---------------------------------------------------------------*/

.sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/*---------------------------------------------------------------*\
$backgrouns image
\*---------------------------------------------------------------*/

.bg_settings {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/*---------------------------------------------------------------*\
$block/inline
\*---------------------------------------------------------------*/

.inline_block {
  display: inline-block;
}

.block {
  display: block;
}

.inline,
.inline * {
  display: inline;
}


/*---------------------------------------------------------------*\
$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_black {
  font-weight: 900;
}

.font_bold {
  font-weight: 700;
}

.font_semibold {
  font-weight: 500;
}

.font_transparent {
  color: transparent;
}


/*---------------------------------------------------------------*\
$flex
\*---------------------------------------------------------------*/

.flex {
  display: flex;
}

.inline_flex {
  display: inline-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;
}


/*---------------------------------------------------------------*\
$grid 
\*---------------------------------------------------------------*/

.grid {
  display: grid;
}

.grid_1fr {
  grid-template-columns: 1fr;
}

.grid_2fr {
  grid-template-columns: repeat(2, 1fr);
}

.grid_3fr {
  grid-template-columns: repeat(3, 1fr);
}

.grid_4fr {
  grid-template-columns: repeat(4, 1fr);
}


/*---------------------------------------------------------------*\
$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_white {
  background-color: #fff;
}

.primary_brown {
  background-color: #4A402E;
}

.primary_linear {
  background: linear-gradient(90deg, #9F58AD 0%, #B63D53 100%);
}


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

.font_white {
  color: #fff;
}

.font_gray {
  color: rgba(255, 255, 255, .6);
}

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

.shadow {
  box-shadow: 0px 20px 30px 0px rgba(19, 100, 127, 0.2);
}

.shadow_s {
  box-shadow: 0px 10px 32px rgba(19, 100, 127, 0.08);
}


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

.hidden {
  overflow: hidden;
}

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

.radius_button {
  border-radius: 2px;
}


/*---------------------------------------------------------------*\
$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: none;
  height: 84px;
  border-radius: 80px;
  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;
}