@charset "UTF-8";


/*---------------------------------------------------------------*\
$page navi
\*---------------------------------------------------------------*/

.wp-pagenavi {
  width: 100%;
  display: flex;
  gap: 8px;
  justify-content: center;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #333;
  background-color: #FFF;
  border: solid 1px #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
  font-size: 13px;
}

.wp-pagenavi span:first-of-type {
  background-color: #D9E3F5;
  border: solid 1px #D9E3F5;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #333;
  border-color: #333;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #333;
  border-color: #333;
  font-weight: bold;
}


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

  .wp-pagenavi {
    gap: 6px;
  }

  .wp-pagenavi a, .wp-pagenavi span:first-child {
    letter-spacing: -1px;
    width: 50px;
  }

  .wp-pagenavi a, .wp-pagenavi span {
    width: 35px;
    height: 35px;
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$arrow badge
\*---------------------------------------------------------------*/

.a_effect {
  cursor: pointer;
  border: none;
  color: #fff;
  width: 64px;
  height: 64px;
  border: solid 1px #ddd;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: grid;
  place-content: center;
  font-weight: 600;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.a_effect .button__icon {
  width: 9px;
}

.a_effect .button__circle {
  position: relative;
  width: 64px;
  height: 64px;
  overflow: hidden;
  background: #fff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a_effect .button__icon--copy {
  position: absolute;
  transform: translate(-300%, 300%);
}

/* hovered */
.a_wrap:hover .a_effect .button {
  background-color: #fff;
  transform: scale(1.05);
}

.a_wrap:hover .a_effect .button__icon {
  color: #333;
}

.a_wrap:hover .a_effect .button__icon:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(300%, -300%);
}

.a_wrap:hover .a_effect .button__icon--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

@keyframes text-rotation {
  to {
    rotate: 360deg;
  }
}


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

  .a_effect {
    width: 56px;
    height: 56px;
  }

  .a_effect .button__circle {
    width: 56px;
    height: 56px;
  }

  .a_effect .button__icon {
    width: 7px;
  }
}



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



/*---------------------------------------------------------------*\
$link button
\*---------------------------------------------------------------*/

.animated_button.hover-effect {
  box-shadow: 0 0 0 12px transparent;
  background-color: #333;
}

.animated_button.hover-effect .text_1 {
  color: #fff;
  opacity: 0;
  left: -100%;
}

.animated_button.hover-effect .text_2 {
  color: #fff;
  right: 32px;
  opacity: 1;
}

.animated_button.hover-effect .arr_1 {
  right: -25%;
}

.animated_button.hover-effect .arr_2 {
  left: 16px;
}

.animated_button.hover-effect svg {
  fill: #333;
}

.animated_button {
  position: relative;
  display: flex;
  align-items: center;
  width: 400px;
  margin: 0 auto;
  height: 80px;
  padding: 0 0 0 40px;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(0deg, #333, #333) no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  --bg-h: 100%;
  /* transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); */
}

.animated_button svg {
  width: 20px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button .arr_1 {
  right: 16px;
  position: absolute;
  background: #333;
  height: 50px;
  width: 50px;
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button .arr_2 {
  left: -25%;
  position: absolute;
  background: #fff;
  height: 50px;
  width: 50px;
  display: flex;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button .text_1 {
  position: absolute;
  opacity: 1;
  left: 32px;
  z-index: 1;
  font-size: 16px;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated_button .text_2 {
  position: absolute;
  opacity: 0;
  right: -100%;
  z-index: 1;
  font-size: 16px;
  transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* hovered */
.animated_button:hover {
  box-shadow: 0 0 0 12px transparent;
}

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

.animated_button:hover .text_1 {
  color: #fff;
  opacity: 0;
  left: -100%;
}

.animated_button:hover .text_2 {
  color: #fff;
  right: 32px;
  opacity: 1;
}

.animated_button:hover .arr_1 {
  right: -25%;
}

.animated_button:hover .arr_2 {
  left: 16px;
}

.animated_button:active {
  scale: 0.95;
}

.animated_button:hover svg {
  fill: #333;
}


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

  .animated_button {
    width: 90%;
    height: 64px;
  }

  .animated_button svg {
    width: 13px;
  }

  .animated_button .text_1,
  .animated_button .text_2 {
    font-size: 12px;
  }

  .animated_button .arr_1,
  .animated_button .arr_2 {
    width: 40px;
    height: 40px;
  }

  .animated_button:hover svg {
    width: 12px;
  }
}



/*---------------------------------------------------------------*\
$hukidashi
\*---------------------------------------------------------------*/

/* normal size */
.fukidashi {
  aspect-ratio: 2 / 0.55;
  width: 180px;
  background-size: contain;
  margin: 0 auto;
  background-repeat: no-repeat;
}

/* large size */
.fukidashi_l {
  aspect-ratio: 2 / 0.36;
  width: 220px;
  background-size: contain;
  margin: 0 auto;
  background-repeat: no-repeat;
}


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

  /* normal size */
  .fukidashi {
    width: 120px;
  }

  /* large size */
  .fukidashi_l {
    width: 180px;
  }
}



/*---------------------------------------------------------------*\
$icons
\*---------------------------------------------------------------*/

.icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.icon path {
  width: 100%;
  height: auto;
}



/*---------------------------------------------------------------*\
$breadcrumbs
\*---------------------------------------------------------------*/

body.column .breadcrumbs,
body.single .breadcrumbs {
  background-color: transparent;
  padding: 20px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

body.archive .breadcrumbs {
  background-color: #fafafa;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  border-top: solid 1px #eee;
  padding: 20px;
  align-items: center;
  overflow: hidden;
}

.breadcrumbs * {
  font-size: 13px;
}

body.column .breadcrumbs *,
body.single .breadcrumbs * {
  color: #fff;
}

.breadcrumbs a {
  text-decoration: underline !important;
}

.breadcrumbs>span {
  white-space: nowrap;
}

.breadcrumbs>span:last-child {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

.breadcrumbs>a {
  text-decoration: underline !important;
}


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

  body.column .breadcrumbs,
  body.single .breadcrumbs {
    padding: 14px 0;
  }

  .breadcrumbs {
    padding: 14px;
    gap: 4px;
  }

  .breadcrumbs * {
    font-size: 10px;
  }
}



/*---------------------------------------------------------------*\
$Splide pagenations
\*---------------------------------------------------------------*/

.splide__pagination {
  position: inherit !important;
  margin: 32px 0 0 0 !important;
}

.splide__pagination__page {
  width: 6px !important;
  height: 6px !important;
}

.splide__pagination__page.is-active {
  background-color: #222 !important;
  opacity: 1 !important;
  transform: scale(1.3) !important;
}



/*---------------------------------------------------------------*\
$Splide arrows
\*---------------------------------------------------------------*/

.splide .button {
  background-color: transparent;
  height: 50px;
  transition: .2s;
  width: 50px;
}

.splide .button::before {
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  height: 50px;
  margin: auto;
  position: absolute;
  top: 0;
  width: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.splide .prev::before {
  background-image: url('../img/design-parts/icon_carousel_prev.svg');
  left: 0;
}

.splide .next::before {
  background-image: url('../img/design-parts/icon_carousel_next.svg');
  right: 0;
}

.splide .button:disabled::before {
  opacity: .5;
}

.splide__arrow {
  position: relative;
}



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

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



/*---------------------------------------------------------------*\
$clearfix
\*---------------------------------------------------------------*/

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



/*---------------------------------------------------------------*\
$block content
\*---------------------------------------------------------------*/

.inline_block {
  display: inline-block;
}

.block {
  display: block;
}



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

* {
  color: #333;
  font-size: 17px;
  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 {
  height: 100%;
  font-family: "dnp-shuei-gothic-kin-std", -apple-system, BlinkMacSystemFont, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", Roboto, "Segoe UI", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-weight: 500;
  -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);
}

main {
  position: relative;
}



/*---------------------------------------------------------------*\
$images and movies
\*---------------------------------------------------------------*/

img, canvas, iframe, video {
  border: 0;
  max-width: 100%;
  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
\*---------------------------------------------------------------*/

.font_gin {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font_bold {
  /* font-family: "dnp-shuei-gothic-kin-std", sans-serif; */
  font-weight: 600;
  font-style: normal;
}

.inter_semibold {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.inter_medium {
  font-family: "Inter Tight", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.font_bebas {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 430;
  letter-spacing: -0.08em;
  font-style: normal;
}

.font_bebas_bold {
  font-family: "Sora", sans-serif;
  font-optical-sizing: auto;
  font-weight: 530;
  letter-spacing: -0.05em;
  font-style: normal;
}


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

.break_on_sp {
  display: none;
}

.break_on_tablet {
  display: none;
}


/*---------------------------------------------------------------*\
$content hide
\*---------------------------------------------------------------*/

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

  .hide_on_sp {
    display: none;
  }
}


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

.hidden {
  overflow: hidden;
}


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

.flex {
  display: flex;
}

.inline_flex {
  display: inline-flex;
}

.flex_col {
  flex-direction: column;
}

.flex_col_reverse {
  flex-direction: column-reverse;
}

.flex_row_reverse {
  flex-direction: row-reverse;
}

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

.items_baseline {
  align-items: baseline;
}

.items_stretch {
  align-items: stretch;
}


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


/*---------------------------------------------------------------*\
$text align
\*---------------------------------------------------------------*/

.align_center {
  text-align: center;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}


/*---------------------------------------------------------------*\
$line height
\*---------------------------------------------------------------*/

.line_mini {
  line-height: 1.5;
}

.line_p {
  line-height: 1.8;
}

.line_ex {
  line-height: 2.5;
}

.line_max {
  line-height: 3;
}


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

.primary_lime {
  background-color: #DBF637;
}

.primary_black {
  background-color: #333;
}

.primary_white {
  background-color: #fff;
}

.bg_lime {
  background-color: #B4CF13;
}

.bg_gray {
  background-color: #4a4a4a;
}

.bg_light_gray {
  background-color: #4a4a4a;
}

.bg_pale_gray {
  background-color: #f7f7f7;
}

.bg_pale_lime {
  background-color: #E9F0D4;
}

.bg_blown {
  background-color: #9A836C;
}

.bg_orange {
  background-color: #DD8632;
}

.bg_red {
  background-color: #B82525;
}

.bg_blue {
  background-color: #58A4BC;
}

.bg_light_blue {
  background-color: #88D2F2;
}

.bg_green {
  background-color: #526643;
}

.bg_light_green {
  background-color: #468257;
}


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

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


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

.font_gray {
  color: #b0b0b0;
}

.font_secondary_dark {
  color: #444;
}

.font_orange {
  color: #DD8632;
}

.font_green {
  color: #468257;
}

.font_blue {
  color: #58A4BC;
}

.font_lime {
  color: #99b300;
}


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

.radius_round {
  border-radius: 50%;
}

.radius_button {
  border-radius: 80px;
}


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

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


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

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

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