@charset "UTF-8";
/*--------------------------------------------------------*/
/* _foundation-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _reset
/*--------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/*--------------------------------------------------------*/
/* _global-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _font
/*--------------------------------------------------------*/
@font-face {
  font-family: "NotoSansJP";
  src: url("/fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSansJP";
  src: url("/fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CaveatBrush";
  src: url("/fonts/CaveatBrush-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --space: 0;
}

/*--------------------------------------------------------*/
/* _color
/*--------------------------------------------------------*/
:root {
  --c_main: #01579F;
  --bg_main: var(--c_main);
  --txt_main: var(--c_main);
  --border_main: var(--c_main);
  --c_sub: #E6F8FF;
  --c_accent: #00CFA1;
  --c_accent_rgb: 0, 207, 161;
  --c_black: #333;
  --txt_black: var(--c_black);
  --c_gray: #808080;
  --txt_gray: var(--c_gray);
  --c_white: #FEFEFE;
  --c_white_rgb: 255, 255, 255;
  --txt_white: #FFFFFF;
  --bg_base: var(--c_white);
  --bg_loading: var(--c_main);
  --bg_header: transparent;
  --bg_mask: var(--c_main);
  --bg_footer: var(--c_main);
  --bg_sec: var(--c_sub);
  --bg_gradient: linear-gradient(to right bottom, var(--c_main)0%, var(--c_accent) 100%);
  --btn_txt: var(--txt_white);
  --btn_gradient: linear-gradient(to right, var(--c_accent) 0%, var(--c_main)50%, var(--c_accent) 100%);
  --shadow: rgba(0, 0, 0, 0.2);
  --border_textarea: var(--c_gray);
}

/*--------------------------------------------------------*/
/* _mixin
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _variable
/*--------------------------------------------------------*/
:root {
  --hover_transition:0.3s;
  --hover_opacity:0.7;
}

/*--------------------------------------------------------*/
/* _base
/*--------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
  letter-spacing: calc(var(--space, inherit) / 1000 * 1em);
}

body {
  width: 100%;
  background-color: var(--bg_base);
  font-family: "NotoSansJP", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  color: var(--txt_black);
  font-size: 16px;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
  overflow-y: scroll;
}
body.is-load {
  position: fixed;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--hover_transition);
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
    opacity: var(--hover_opacity);
  }
}
@media (hover: none) {
  a:active {
    text-decoration: none;
    opacity: var(--hover_opacity);
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
  font: inherit;
}

textarea {
  display: block;
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  resize: none;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 0.7em;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

/*--------------------------------------------------------*/
/* _layout-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _loading
/*--------------------------------------------------------*/
body.is-load {
  position: fixed;
}

.l-loading {
  width: 100vw;
  height: 100dvh;
  background-color: var(--bg_loading);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.l-loading__container {
  height: 100%;
  display: grid;
  place-items: center;
}
.l-loading__text {
  font-family: "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: inherit;
  color: var(--txt_white);
}
@media screen and (min-width: 960px) {
  .l-loading__text {
    font-size: 64px;
    font-size: 4rem;
    font-weight: bold;
    line-height: inherit;
  }
}
.l-loading__text > span {
  display: inline-block;
  margin: 0 8px;
}
.l-loading__text > span:nth-child(1) {
  animation: textUp 0.6s 0.3s both;
}
.l-loading__text > span:nth-child(2) {
  animation: textUp 0.6s 0.6s both;
}
.l-loading__text > span:nth-child(3) {
  animation: textUp 0.6s 0.9s both;
}
.l-loading__text > span:nth-child(4) {
  animation: textUp 0.6s 1.2s both;
}
.l-loading__text > span:nth-child(5) {
  animation: textUp 0.6s 1.5s both;
}
.l-loading__text > span:nth-child(6) {
  animation: textUp 0.6s 1.8s both;
}
.l-loading__text > span:nth-child(7) {
  animation: textUp 0.6s 2.1s both;
}
@keyframes textUp {
  0% {
    transform: translateY(0);
    text-shadow: none;
  }
  50% {
    transform: translateY(-50px);
    transform-origin: 50% 50%;
    text-shadow: 0 1px var(--c_accent), 0 2px var(--c_accent), 0 3px var(--c_accent), 0 4px var(--c_accent), 0 5px var(--c_accent), 0 6px var(--c_accent), 0 7px 0 var(--c_accent), 0 50px 15px rgba(255, 255, 255, 0.5);
  }
  100% {
    transform: translateY(0);
    text-shadow: none;
  }
}

/*--------------------------------------------------------*/
/* _header
/*--------------------------------------------------------*/
.l-header {
  width: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 0 30px;
  }
}
.l-header__container {
  width: 100%;
  height: 64px;
  margin: 0 auto;
  display: grid;
  align-items: center;
}
@media screen and (min-width: 960px) {
  .l-header__container {
    height: 80px;
  }
}
.l-header__logo {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 180px;
  }
}
.l-header__logo-link {
  display: block;
}

/*--------------------------------------------------------*/
/* _main
/*--------------------------------------------------------*/
.l-wrapper-limit {
  max-width: 1920px;
  margin: 0 auto;
}

.l-main__wrapper {
  width: 100%;
  max-width: 900px;
  padding: 48px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-main__wrapper {
    padding: 100px 30px;
  }
}

/*--------------------------------------------------------*/
/* _upper
/*--------------------------------------------------------*/
.l-upper__container {
  width: 100%;
  height: 240px;
  padding: 100px 20px 64px;
  margin-top: -64px;
  background: var(--bg_gradient);
  display: grid;
}
@media screen and (min-width: 768px) {
  .l-upper__container {
    height: 320px;
    padding: 100px 30px;
    margin-top: -80px;
  }
}
.l-upper__page-title {
  justify-self: center;
  align-self: center;
  margin-bottom: 8px;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: inherit;
  color: var(--txt_white);
  text-align: center;
}
@media screen and (min-width: 960px) {
  .l-upper__page-title {
    font-size: 42px;
    font-size: 2.625rem;
    font-weight: bold;
    line-height: inherit;
  }
}
.l-upper__page-title > .merak {
  font-weight: normal;
}

/*--------------------------------------------------------*/
/* _footer
/*--------------------------------------------------------*/
.l-footer {
  background-color: var(--bg_main);
  color: var(--txt_white);
}
.l-footer__wrapper {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}
.l-footer__copy-right {
  padding: 12px 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: inherit;
  text-align: center;
}
.l-footer .merak {
  font-weight: normal;
}

/*--------------------------------------------------------*/
/* _component-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _btn-more
/*--------------------------------------------------------*/
.c-btn-more {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 40px auto 0;
  border-radius: 100vh;
  background: var(--btn_gradient);
  background-position: 200% 50%;
  background-size: 200%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: inherit;
  line-height: 1.7;
  color: var(--btn_txt);
  text-align: center;
  transition: var(--hover_transition);
}
@media screen and (min-width: 768px) {
  .c-btn-more {
    width: fit-content;
    padding: 16px 64px;
    margin: 80px auto 0;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
@media (hover: hover) {
  .c-btn-more:hover {
    --hover_opacity: 1;
    background-position: 100% 50%;
  }
}
@media (hover: none) {
  .c-btn-more:active {
    --hover_opacity: 1;
    background-position: 100% 50%;
  }
}

/*--------------------------------------------------------*/
/* _btn-to-top
/*--------------------------------------------------------*/
.c-btn-to-top {
  width: 50px;
  height: 50px;
  margin: 20px;
  background-color: var(--bg_sec);
  border-radius: 50%;
  box-shadow: inset 5px 5px 3px rgba(0, 0, 0, 0.05), 5px 5px 3px rgba(0, 0, 0, 0.05), 7px 7px 7px rgba(0, 0, 0, 0.05), inset -3px -3px 5px rgba(255, 255, 255, 0.7);
  position: fixed;
  inset: auto 0 0 auto;
  z-index: 50;
}
@media screen and (min-width: 1920px) {
  .c-btn-to-top {
    position: fixed;
    inset: auto 50% 0 auto;
    z-index: 50;
    transform: translateX(960px);
  }
}
@media (hover: hover) {
  .c-btn-to-top:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .c-btn-to-top:active {
    opacity: 1;
  }
}
.c-btn-to-top::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--bg_base);
  position: absolute;
  inset: 11px auto auto 8px;
  filter: blur(2px);
}
.c-btn-to-top__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--txt_main);
}

/*--------------------------------------------------------*/
/* <contactForm>
/*--------------------------------------------------------*/
.c-contact-form__def-item {
  margin-bottom: 24px;
}
.c-contact-form__def-term {
  margin-bottom: 8px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: inherit;
}
@media screen and (min-width: 960px) {
  .c-contact-form__def-term {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: bold;
    line-height: inherit;
  }
}
.c-contact-form__required {
  margin-left: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: inherit;
  color: var(--txt_main);
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  .c-contact-form__required {
    margin-left: 20px;
  }
}
@media screen and (min-width: 960px) {
  .c-contact-form__def-data > .c-contact-form__radio:first-of-type {
    margin: 0 4px 0 0;
  }
}
@media screen and (min-width: 960px) {
  .c-contact-form__radio-list {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
  }
}
.c-contact-form__radio-label {
  display: block;
  margin-bottom: 8px;
}
@media screen and (min-width: 960px) {
  .c-contact-form__radio-label {
    display: inline;
    margin-bottom: 0;
    margin-right: 48px;
  }
}
.c-contact-form__radio {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  transform: translateY(3px);
  accent-color: var(--c_main);
}
@media screen and (min-width: 960px) {
  .c-contact-form__radio {
    margin-right: 4px;
  }
}
.c-contact-form__textbox {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--border_textarea);
  border-radius: 8px;
}
.c-contact-form__textbox:focus-visible {
  outline: none;
}
.c-contact-form__textbox--single {
  max-width: 400px;
  height: 40px;
}
.c-contact-form__textbox--multiple {
  height: 240px;
}
.c-contact-form__btn {
  -webkit-appearance: none;
  display: block;
  width: 200px;
  padding: 16px 0;
  margin: 0 auto;
  border: none;
  border-radius: 100vh;
  background: var(--btn_gradient);
  background-position: 200% 50%;
  background-size: 200%;
  color: var(--btn_txt);
  text-align: center;
  cursor: pointer;
  transition: var(--hover_transition);
}
@media (hover: hover) {
  .c-contact-form__btn:hover {
    --hover_opacity: 1;
    background-position: 100% 50%;
  }
}
@media (hover: none) {
  .c-contact-form__btn:active {
    --hover_opacity: 1;
    background-position: 100% 50%;
  }
}

.error_blank,
.error_format {
  display: block;
  padding: 4px 8px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: inherit;
  line-height: inherit;
  color: var(--c_accent);
}

/*--------------------------------------------------------*/
/* <estimateForm>
/*--------------------------------------------------------*/
.c-estimate-form {
  width: 100%;
  padding: 40px 20px;
  margin: 0 auto;
  background-color: var(--bg_base);
  border: 1px solid var(--c_main);
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-estimate-form {
    width: auto;
    padding: 60px 40px;
  }
}
.c-estimate-form__text {
  margin-bottom: 24px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
}
.c-estimate-form__def-item {
  margin-bottom: 24px;
}
.c-estimate-form__def-item--page {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.c-estimate-form__def-term {
  margin-bottom: 8px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 960px) {
  .c-estimate-form__def-term {
    margin-bottom: 0;
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
.c-estimate-form__number {
  width: 3rem;
  padding: 6px 12px;
  margin-right: 8px;
  border: 1px solid var(--border_textarea);
  border-radius: 8px;
  text-align: right;
  -moz-appearance: textfield;
}
.c-estimate-form__number::-webkit-outer-spin-button, .c-estimate-form__number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.c-estimate-form__number:focus-visible {
  outline: none;
}
.c-estimate-form__result {
  margin-right: 4px;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: inherit;
  line-height: 1.2;
  color: var(--txt_main);
}
.c-estimate-form__btn-close {
  padding: 16px;
  border: 1px solid var(--c_gray);
  position: absolute;
  inset: auto auto 16px 50%;
  transform: translate(-50%, 0);
}

/*--------------------------------------------------------*/
/* _project-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _top
/*--------------------------------------------------------*/
.p-top-contact__sec-title, .p-top-flow__sec-title, .p-top-works__sec-title, .p-top-price__sec-title, .p-top-service__sec-title {
  width: fit-content;
  padding: 20px;
  margin: 0 auto 40px;
  border-bottom: 2px solid var(--c_black);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  font-weight: bold;
  line-height: inherit;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-top-contact__sec-title, .p-top-flow__sec-title, .p-top-works__sec-title, .p-top-price__sec-title, .p-top-service__sec-title {
    margin-bottom: 64px;
  }
}
.p-top-contact__sec-title::before, .p-top-flow__sec-title::before, .p-top-works__sec-title::before, .p-top-price__sec-title::before, .p-top-service__sec-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto auto 0 0;
  transform: translate(-50%, 50%);
}
.p-top-contact__sec-title::after, .p-top-flow__sec-title::after, .p-top-works__sec-title::after, .p-top-price__sec-title::after, .p-top-service__sec-title::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto 0 0 auto;
  transform: translate(50%, 50%);
}

.p-top-works__container, .p-top-price__cont-text, .p-top-price__tab-text, .p-top-price__cont-heading, .p-top-price__tab-heading, .p-top-price__tab, .p-top-price__note, .p-top-price__text, .p-top-service__li-text02, .p-top-service__li-heading02, .p-top-service__li-text, .p-top-service__text, .p-top-intro__text, .p-top-intro__item {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-top-works__container, .p-top-price__cont-text, .p-top-price__tab-text, .p-top-price__cont-heading, .p-top-price__tab-heading, .p-top-price__tab, .p-top-price__note, .p-top-price__text, .p-top-service__li-text02, .p-top-service__li-heading02, .p-top-service__li-text, .p-top-service__text, .p-top-intro__text, .p-top-intro__item {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}

.p-top-service__lead, .p-top-intro__lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-top-service__lead, .p-top-intro__lead {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.7;
  }
}

.p-top > section:nth-of-type(even) {
  background-color: var(--bg_sec);
}

.merak {
  font-family: "CaveatBrush", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  --space: 50;
  letter-spacing: calc(var(--space, inherit) / 1000 * 1em);
  font-size: larger;
  line-height: 1;
}

/*--------------------------------------------------------*/
/* <mv>
/*--------------------------------------------------------*/
.p-top-mv {
  width: 100%;
  padding: 100px 20px 64px;
  margin-top: -64px;
  background-image: url(/img/mv.webp);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    padding: 100px 30px;
    margin-top: -80px;
  }
}
.p-top-mv__container {
  width: 100%;
  max-width: 860px;
  padding: 56px 16px 0;
  margin: 0 auto;
  background-color: rgba(var(--c_white_rgb), 0.5);
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-top-mv__container {
    padding: 56px 24px;
  }
}
.p-top-mv__container::before {
  content: "";
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 4px solid var(--c_white);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (min-width: 960px) {
  .p-top-mv__container::before {
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
.p-top-mv__copy {
  width: 100%;
}
.p-top-mv__copy > .p-top-mv__copy-main:last-of-type {
  margin-bottom: 28px;
}
.p-top-mv__copy-main {
  font-weight: bold;
  line-height: 1.5;
  font-size: clamp(1.5rem, 0.62rem + 4.4vw, 2.875rem);
  color: var(--txt_main);
  text-align: center;
  text-shadow: 2px 2px 2px #D9EBF2;
}
.p-top-mv__copy-sub {
  margin-bottom: 40px;
  font-weight: inherit;
  line-height: 1.5;
  font-size: clamp(1rem, 0.68rem + 1.6vw, 1.5rem);
  color: var(--txt_main);
  text-align: center;
}
.p-top-mv__img {
  width: 100%;
  text-align: right;
  position: relative;
}
.p-top-mv__img img {
  width: 75%;
  max-width: 240px;
  margin-right: -16px;
}
@media screen and (min-width: 960px) {
  .p-top-mv__img img {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (min-width: 960px) {
  .p-top-mv__img {
    width: 50%;
    position: absolute;
    inset: auto 0 0 auto;
    z-index: 1;
  }
}
.p-top-mv__comment {
  font-size: 16px;
  font-size: 1rem;
  font-weight: inherit;
  line-height: 1.2;
  color: var(--txt_main);
  white-space: nowrap;
  position: absolute;
  inset: 0 auto auto 50%;
  z-index: 1;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-top-mv__comment {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: inherit;
    line-height: 1.2;
  }
}
@media screen and (min-width: 960px) {
  .p-top-mv__comment {
    position: absolute;
    inset: 0 auto auto 0;
    z-index: 1;
    transform: translateX(32px);
  }
}
.p-top-mv__def-list {
  width: fit-content;
  padding: 20px 24px;
  margin: 0 auto 20px;
  background-color: var(--bg_main);
  border-radius: 16px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: inherit;
  line-height: 1.5;
  color: var(--txt_white);
}
@media screen and (min-width: 768px) {
  .p-top-mv__def-list {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: inherit;
    line-height: 1.5;
  }
}
@media screen and (min-width: 960px) {
  .p-top-mv__def-list {
    margin: 0 auto;
    transform: translateX(-50%);
  }
}
.p-top-mv__def-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.p-top-mv__def-term {
  width: 9em;
}
.p-top-mv__def-term::after {
  content: "：";
}
.p-top-mv__def-data {
  letter-spacing: 0.03em;
}

/*--------------------------------------------------------*/
/* <nav>
/*--------------------------------------------------------*/
.p-top-nav {
  padding-block: 24px;
}
.p-top-nav__list {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-wrap: wrap;
  gap: 20px 44px;
}
.p-top-nav__item {
  min-width: calc((100% - 88px) / 3);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top-nav__item {
    min-width: auto;
  }
}
.p-top-nav__link {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: inherit;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top-nav__link {
    font-size: 16px;
    font-size: 1rem;
    font-weight: bold;
    line-height: inherit;
  }
}
.p-top-nav__link::after {
  content: "";
  width: 120%;
  height: 2px;
  background-color: var(--c_accent);
  position: absolute;
  inset: auto auto -4px 50%;
  translate: -50% 0;
  scale: 0;
  transition: var(--hover_transition);
}
@media (hover: hover) {
  .p-top-nav__link:hover {
    --hover_opacity: 1;
  }
  .p-top-nav__link:hover::after {
    scale: 1;
  }
}
@media (hover: none) {
  .p-top-nav__link:active {
    --hover_opacity: 1;
  }
  .p-top-nav__link:active::after {
    scale: 1;
  }
}

/*--------------------------------------------------------*/
/* <intro>
/*--------------------------------------------------------*/
.p-top-intro {
  background-color: var(--bg_sec);
}
.p-top-intro__container {
  margin: 0 auto;
}
.p-top-intro__lead {
  margin-bottom: 1.7em;
}
.p-top-intro__link {
  border-bottom: 2px solid var(--c_accent);
}
.p-top-intro__list {
  margin-bottom: 1.7em;
}
.p-top-intro__item {
  padding-left: 22px;
  text-indent: -18px;
}
.p-top-intro__item::before {
  display: inline-block;
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url(/img/icon-star.webp);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 4px;
  transform: translateY(2px);
}
@media screen and (min-width: 960px) {
  .p-top-intro__item::before {
    width: 18px;
  }
}
.p-top-intro__box {
  margin-bottom: 1.7em;
}
/*--------------------------------------------------------*/
/* <service>
/*--------------------------------------------------------*/
.p-top-service__container {
  margin: 0 auto;
}
.p-top-service__lead {
  margin-bottom: 20px;
  text-align: center;
}
.p-top-service__text {
  margin-bottom: 40px;
}
.p-top-service__list {
  margin: 0 auto 60px;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-top-service__list {
    padding: 0 40px;
  }
}
.p-top-service__list > .p-top-service__item:last-child .p-top-service__li-img {
  align-self: start;
}
.p-top-service__item {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .p-top-service__item {
    gap: 20px;
  }
}
.p-top-service__li-img {
  width: 64px;
}
.p-top-service__li-text {
  width: calc(100% - 76px);
}
@media screen and (min-width: 768px) {
  .p-top-service__li-text {
    width: calc(100% - 84px);
  }
}
.p-top-service__li-text span {
  font-size: 0.8em;
}
.p-top-service__link {
  text-decoration: underline var(--c_accent);
  -webkit-text-decoration: underline var(--c_accent);
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .p-top-service__link:hover {
    text-decoration: underline var(--c_accent);
    -webkit-text-decoration: underline var(--c_accent);
  }
}
@media (hover: none) {
  .p-top-service__link:active {
    text-decoration: underline var(--c_accent);
    -webkit-text-decoration: underline var(--c_accent);
  }
}
.p-top-service__list02 {
  counter-reset: num -1;
}
.p-top-service__li-item02 {
  counter-increment: num;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
.p-top-service__li-item02:not(:first-child)::before {
  display: inline-block;
  width: 1.5em;
  content: counter(num) ".";
  text-indent: 0;
}
.p-top-service__li-heading02 {
  font-weight: bold;
}
.p-top-service__li-text02 {
  display: inline;
  text-indent: 0;
  margin-left: -4px;
}
.p-top-service__li-text02 .highlight {
  background: linear-gradient(transparent 70%, rgba(1, 87, 159, 0.2) 70% 100%);
}

/*--------------------------------------------------------*/
/* <price>
/*--------------------------------------------------------*/
.p-top-price__text {
  width: fit-content;
  padding: 0 40px;
  margin: 0 auto;
}
.p-top-price__note {
  width: fit-content;
  line-height: 1;
  padding: 0 40px;
  margin: 0 auto 40px;
}
.p-top-price__tab-list {
  display: flex;
  justify-content: space-around;
}
.p-top-price__tab {
  appearance: none;
  -webkit-appearance: none;
  width: calc((100% - 16px) / 3);
  min-width: 25%;
  margin: 0 0 20px;
  padding: 5px 10px;
  background-color: var(--bg_base);
  border: 1px solid var(--c_main);
  border-radius: 20px;
  line-height: 1.2;
  position: relative;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-top-price__tab {
    padding: 12px 10px;
    border-radius: 100vh;
  }
}
@media screen and (min-width: 960px) {
  .p-top-price__tab {
    width: auto;
    padding: 12px 20px;
  }
}
.p-top-price__tab[aria-selected=true] {
  background-color: var(--c_main);
  color: var(--txt_white);
}
.p-top-price__tab[aria-selected=true]::before {
  content: "";
  width: 24px;
  aspect-ratio: 2/1;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--c_main);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.p-top-price__tab-panel {
  display: none;
  padding: 20px;
  background-color: var(--bg_base);
  box-shadow: 0 0 10px var(--shadow);
}
@media screen and (min-width: 960px) {
  .p-top-price__tab-panel {
    padding: 40px;
  }
}
.p-top-price__tab-panel[aria-hidden=false] {
  display: block;
}
.p-top-price__tab-heading {
  font-weight: bold;
  margin-bottom: 20px;
}
.p-top-price__content {
  padding: 20px;
  margin-top: 30px;
  background-color: var(--bg_base);
  box-shadow: 0 0 10px var(--shadow);
}
@media screen and (min-width: 960px) {
  .p-top-price__content {
    padding: 40px;
  }
}
.p-top-price__cont-heading {
  font-weight: bold;
  margin-bottom: 20px;
}
.p-top-price__def-list {
  padding: 0 20px;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
}
.p-top-price__def-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  align-items: start;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: inherit;
}
@media screen and (min-width: 768px) {
  .p-top-price__def-item {
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: inherit;
    line-height: inherit;
  }
}
.p-top-price__def-term {
  position: relative;
}
.p-top-price__def-data {
  letter-spacing: 0.03em;
}
.p-top-price__tab-text {
  line-height: 1.4;
}
.p-top-price__cont-text {
  line-height: 1.4;
}
.p-top-price__btn {
  display: block;
  width: 100%;
  padding: 16px;
  margin: 40px auto 0;
  border-radius: 100vh;
  background-color: var(--bg_main);
  font-size: 16px;
  font-size: 1rem;
  font-weight: inherit;
  line-height: 1.7;
  color: var(--btn_txt);
  text-align: center;
  transition: var(--hover_transition);
}
@media screen and (min-width: 768px) {
  .p-top-price__btn {
    width: fit-content;
    padding: 16px 64px;
    margin: 80px auto 0;
    font-size: 20px;
    font-size: 1.25rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
@media (hover: hover) {
  .p-top-price__btn:hover {
    --hover_opacity: 1;
  }
}
@media (hover: none) {
  .p-top-price__btn:active {
    --hover_opacity: 1;
  }
}
.p-top-price__btn-icon {
  display: inline-block;
  width: 24px;
  aspect-ratio: 1/1;
  margin-left: 4px;
  vertical-align: 3px;
}
@media screen and (min-width: 768px) {
  .p-top-price__btn-icon {
    width: 30px;
  }
}
.p-top-price__estimate {
  width: 100vw;
  height: 100dvh;
  display: grid;
  place-items: center;
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  overflow-y: scroll;
}
@media screen and (min-width: 960px) {
  .p-top-price__estimate {
    padding-inline: 30px;
  }
}
.p-top-price__estimate.js-fade {
  display: none;
}

/*--------------------------------------------------------*/
/* <works>
/*--------------------------------------------------------*/
.p-top-works {
  overflow: hidden;
}
.p-top-works__thumbnail {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: nowrap;
}
.p-top-works__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: nowrap;
}
.p-top-works__item {
  width: 25vw;
}
.p-top-works__item img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (min-width: 960px) {
  .p-top-works__item img {
    aspect-ratio: 2/1;
  }
}
.p-top-works__container {
  margin-top: 40px;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-top-works__container {
    margin-top: 80px;
  }
}
.p-top-works__heading {
  text-align: center;
  margin-bottom: 8px;
}
.p-top-works__def-list {
  max-width: 320px;
  margin: 0 auto;
}
.p-top-works__def-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
/*--------------------------------------------------------*/
/* <flow>
/*--------------------------------------------------------*/
.p-top-flow__list {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 44px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .p-top-flow__list {
    gap: 12px 24px;
    margin-bottom: 56px;
  }
}
@media screen and (min-width: 768px) {
  .p-top-flow__list > .p-top-flow__li-item:nth-child(2), .p-top-flow__list > .p-top-flow__li-item:nth-child(4), .p-top-flow__list > .p-top-flow__li-item:nth-child(7), .p-top-flow__list > .p-top-flow__li-item:nth-child(9) {
    border-right: none;
  }
}
.p-top-flow__list > .p-top-flow__li-item:nth-child(3), .p-top-flow__list > .p-top-flow__li-item:nth-child(5), .p-top-flow__list > .p-top-flow__li-item:nth-child(6), .p-top-flow__list > .p-top-flow__li-item:nth-child(8) {
  margin-right: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-top-flow__list > .p-top-flow__li-item:nth-child(3), .p-top-flow__list > .p-top-flow__li-item:nth-child(5), .p-top-flow__list > .p-top-flow__li-item:nth-child(6), .p-top-flow__list > .p-top-flow__li-item:nth-child(8) {
    border-left: none;
  }
}
.p-top-flow__li-item {
  width: 60%;
  padding: 12px;
  gap: 12px;
  background-color: var(--bg_sec);
  box-shadow: inset 0 0 10px 2px var(--shadow);
}
@media screen and (min-width: 768px) {
  .p-top-flow__li-item {
    width: calc((100% - 24px) / 2);
    padding: 12px 24px;
    gap: 24px;
  }
}
.p-top-flow__li-item:first-child {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  z-index: -1;
}
.p-top-flow__li-heading {
  width: calc((100% - 12px) / 2);
  background-color: var(--bg_main);
  padding: 12px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
  text-align: center;
  color: var(--txt_white);
}
@media screen and (min-width: 768px) {
  .p-top-flow__li-heading {
    width: calc((100% - 24px) / 2);
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
.p-top-flow__li-text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-top-flow__li-text {
    width: fit-content;
    margin: 0 auto;
    font-size: 16px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
.p-top-flow__link {
  text-decoration: underline var(--c_accent);
  -webkit-text-decoration: underline var(--c_accent);
  text-underline-offset: 4px;
}
@media (hover: hover) {
  .p-top-flow__link:hover {
    text-decoration: underline var(--c_accent);
    -webkit-text-decoration: underline var(--c_accent);
  }
}
@media (hover: none) {
  .p-top-flow__link:active {
    text-decoration: underline var(--c_accent);
    -webkit-text-decoration: underline var(--c_accent);
  }
}
.p-top-flow__arrow {
  content: "";
  display: block;
  width: 12px;
  height: calc(100% + 12px);
  background: linear-gradient(to bottom, var(--bg_base) 0%, var(--bg_main) 100%);
  position: absolute;
  inset: auto auto -12px 50%;
  z-index: -1;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-top-flow__arrow {
    width: 24px;
  }
}
.p-top-flow__arrow::after {
  content: "";
  border: 12px solid transparent;
  border-top: 12px solid var(--bg_main);
  position: absolute;
  inset: 100% auto auto 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-top-flow__arrow::after {
    border: 24px solid transparent;
    border-top: 24px solid var(--bg_main);
  }
}
.p-top-flow__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 960px) {
  .p-top-flow__text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}

/*--------------------------------------------------------*/
/* <contact>
/*--------------------------------------------------------*/
.p-top-contact {
  background: var(--bg_gradient);
}
.p-top-contact__sec-title {
  color: var(--txt_white);
  border-bottom: 2px solid var(--c_white);
}
.p-top-contact__sec-title::before, .p-top-contact__sec-title::after {
  background-color: var(--c_white);
}
.p-top-contact__container {
  padding: 32px;
  margin: 0 auto;
  background-color: var(--bg_base);
  border-radius: 20px;
}
@media screen and (min-width: 960px) {
  .p-top-contact__container {
    padding: 50px;
  }
}
.p-top-contact__text-box {
  width: 80%;
  margin: 30px auto;
}
.p-top-contact__text {
  font-size: 13px;
  font-size: 0.8125rem;
  font-weight: inherit;
  line-height: 1.7;
  color: var(--txt_white);
}
@media screen and (min-width: 960px) {
  .p-top-contact__text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}

/*--------------------------------------------------------*/
/* _about
/*--------------------------------------------------------*/
.p-about-skills__sec-title, .p-about-about__sec-title {
  width: fit-content;
  padding: 20px;
  margin: 0 auto 40px;
  border-bottom: 2px solid var(--c_black);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  font-weight: bold;
  line-height: inherit;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-about-skills__sec-title, .p-about-about__sec-title {
    margin-bottom: 64px;
  }
}
.p-about-skills__sec-title::before, .p-about-about__sec-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto auto 0 0;
  transform: translate(-50%, 50%);
}
.p-about-skills__sec-title::after, .p-about-about__sec-title::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto 0 0 auto;
  transform: translate(50%, 50%);
}

.p-about__wrapper {
  width: 100%;
  max-width: 1180px;
  padding: 48px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-about__wrapper {
    padding: 100px 30px;
  }
}

/*--------------------------------------------------------*/
/* <about>
/*--------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-about-about__container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
  }
}
.p-about-about__img {
  width: 50%;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-about-about__img {
    width: 30%;
  }
}
.p-about-about__content {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .p-about-about__content {
    width: 60%;
  }
}
.p-about-about__heading {
  margin-bottom: 16px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: inherit;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .p-about-about__heading {
    text-align: left;
  }
}
.p-about-about__heading--en {
  font-family: "CaveatBrush", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
  font-size: 32px;
  font-size: 2rem;
  font-weight: inherit;
  line-height: inherit;
  --space: 50;
  letter-spacing: calc(var(--space) / 1000 * 1em);
}
.p-about-about__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: inherit;
}
.p-about-about__text:not(:last-child) {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-about-about__text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}
.p-about-about__text--twitter {
  line-height: 1.7;
  text-align: center;
}
.p-about-about__link {
  display: block;
  margin-top: 30px;
  text-align: center;
  color: var(--c_accent);
}
/*--------------------------------------------------------*/
/* <skills>
/*--------------------------------------------------------*/
.p-about-skills {
  background-color: var(--bg_sec);
}
.p-about-skills__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-about-skills__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
.p-about-skills__grid-item {
  display: grid;
  place-items: center;
  background-color: var(--c_white);
}
.p-about-skills__grid-img {
  grid-area: 1/-1;
  width: 80%;
  max-width: 210px;
  margin: 0 auto;
  position: relative;
}
.p-about-skills__grid-img--css {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  grid-template-rows: 1fr 0.75fr;
  grid-auto-flow: row;
  grid-template-areas: "scss ." ". css";
}
.p-about-skills__grid-img--css .p-about-skills__scss {
  grid-area: scss;
  margin-bottom: -20px;
  margin-right: -20px;
}
.p-about-skills__grid-img--css .p-about-skills__css {
  grid-area: css;
}
.p-about-skills__grid-content {
  grid-area: 1/-1;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  transition: var(--hover_transition);
  z-index: 20;
}
.p-about-skills__grid-heading {
  margin-bottom: 16px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: inherit;
  text-align: center;
}
.p-about-skills__grid-text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-about-skills__grid-text {
    font-size: 16px;
    font-size: 1rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}

/*--------------------------------------------------------*/
/* _sample
/*--------------------------------------------------------*/
.p-sample__sec-title {
  width: fit-content;
  padding: 20px;
  margin: 0 auto 40px;
  border-bottom: 2px solid var(--c_black);
  font-size: clamp(1.5rem, 1rem + 2.5vw, 2.5rem);
  font-weight: bold;
  line-height: inherit;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 960px) {
  .p-sample__sec-title {
    margin-bottom: 64px;
  }
}
.p-sample__sec-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto auto 0 0;
  transform: translate(-50%, 50%);
}
.p-sample__sec-title::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  inset: auto 0 0 auto;
  transform: translate(50%, 50%);
}

.p-sample-btn__heading, .p-sample-timer__text .timer, .p-sample-tab__tab, .p-sample__heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-sample-btn__heading, .p-sample-timer__text .timer, .p-sample-tab__tab, .p-sample__heading {
    font-size: 24px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.7;
  }
}

.p-sample-extra__link, .p-sample-timer__text, .p-sample__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: inherit;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .p-sample-extra__link, .p-sample-timer__text, .p-sample__text {
    font-size: 18px;
    font-size: 1.125rem;
    font-weight: inherit;
    line-height: 1.7;
  }
}

.p-sample__wrapper {
  width: 100%;
  max-width: 860px;
  padding: 20px 20px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-sample__wrapper {
    padding: 50px 30px;
  }
}
.p-sample__wrapper:last-child {
  padding-bottom: 100px;
}
.p-sample__container + .p-sample__container {
  margin-top: 40px;
}
/*--------------------------------------------------------*/
/* <slider>
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* <slider01>
/*--------------------------------------------------------*/
.p-sample-slider__slider01 {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: nowrap;
  overflow: hidden;
}
.p-sample-slider__slider01 > .p-sample-slider__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.p-sample-slider__slider01 > .p-sample-slider__list:first-child {
  animation: marquee01 50s -25s linear infinite;
}
.p-sample-slider__slider01 > .p-sample-slider__list:last-child {
  animation: marquee02 50s linear infinite;
}
.p-sample-slider__slider01 > .p-sample-slider__item {
  width: 33.3333333333%;
  aspect-ratio: 3/2;
}
.p-sample-slider__slider01 > .p-sample-slider__item img {
  height: 100%;
  object-fit: cover;
}
@keyframes marquee01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes marquee02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

/*--------------------------------------------------------*/
/* <slider02>
/*--------------------------------------------------------*/
.p-sample-slider__slider02 {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 3/2;
  position: relative;
}
.p-sample-slider__slider02 > .p-sample-slider__item:nth-child(2) {
  animation-delay: 6s;
  opacity: 0;
}
.p-sample-slider__slider02 > .p-sample-slider__item:nth-child(3) {
  animation-delay: 12s;
  opacity: 0;
}
.p-sample-slider__slider02 > .p-sample-slider__item {
  width: 100%;
  aspect-ratio: 3/2;
  position: absolute;
  inset: 0 auto auto 0;
  z-index: -10;
  animation: slider 18s infinite;
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  16.66% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/*--------------------------------------------------------*/
/* <slider03>
/*--------------------------------------------------------*/
.p-sample-slider__slider03 {
  width: 100%;
  max-width: 500px;
  /*!スライダー*/
}
@media screen and (min-width: 768px) {
  .p-sample-slider__slider03 {
    margin-left: 30px;
  }
}
.p-sample-slider__slider03 .p-sample-slider__item {
  scale: 0.9;
  transition: 0.2s;
}
.p-sample-slider__slider03 .slick-center {
  scale: 1;
  transition: 0.5s 0.5s;
}
.p-sample-slider__slider03 .slick-dots {
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-wrap: wrap;
  width: 80%;
  height: 10px;
  border-radius: 100vh;
  box-shadow: 0 0 3px var(--shadow);
  left: 50%;
  top: 100%;
  transform: translate(-50%, 100%);
}
.p-sample-slider__slider03 .slick-dots li {
  width: 33.3333333333%;
  height: 100%;
  margin: 0;
}
.p-sample-slider__slider03 .slick-dots li button {
  padding: 0;
}
.p-sample-slider__slider03 .slick-dots li button:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.p-sample-slider__slider03 .slick-dots li.slick-active button:before {
  background-color: var(--c_main);
  opacity: 1;
}
.p-sample-slider__slider03 .slick-prev,
.p-sample-slider__slider03 .slick-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--c_main);
  z-index: 10;
}
.p-sample-slider__slider03 .slick-prev:focus, .p-sample-slider__slider03 .slick-prev:hover,
.p-sample-slider__slider03 .slick-next:focus,
.p-sample-slider__slider03 .slick-next:hover {
  background-color: var(--c_main);
}
.p-sample-slider__slider03 .slick-prev::before, .p-sample-slider__slider03 .slick-prev::after,
.p-sample-slider__slider03 .slick-next::before,
.p-sample-slider__slider03 .slick-next::after {
  opacity: 1;
}
.p-sample-slider__slider03 .slick-prev {
  left: 0;
  transform: translate(-50%, -50%);
}
.p-sample-slider__slider03 .slick-prev::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--c_white);
  border-left: 3px solid var(--c_white);
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-35.7142857143%, -50%) rotate(-45deg);
}
.p-sample-slider__slider03 .slick-next {
  right: 0;
  transform: translate(50%, -50%);
}
.p-sample-slider__slider03 .slick-next::before {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--c_white);
  border-right: 3px solid var(--c_white);
  position: absolute;
  inset: 50% 50% auto auto;
  transform: translate(35.7142857143%, -50%) rotate(45deg);
}

/*--------------------------------------------------------*/
/* <menu>
/*--------------------------------------------------------*/
.p-sample-menu__flex {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-sample-menu__flex {
    flex-direction: row;
  }
}
.p-sample-menu__flex-item:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .p-sample-menu__flex-item:not(:last-child) {
    margin-bottom: 0;
  }
}
.p-sample-menu__smartphone {
  width: 216px;
  aspect-ratio: 7/15;
  background: #303030;
  border-inline: 8px solid #303030;
  border-block: 25px solid #303030;
  border-radius: 25px;
  box-sizing: content-box;
  box-shadow: 0 15px 30px -7px rgba(0, 12, 66, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.p-sample-menu__display {
  width: 100%;
  height: 100%;
  background-color: #fff;
  object-fit: contain;
}
.p-sample-menu__header {
  width: 100%;
  height: 40px;
}
.p-sample-menu__button {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  z-index: 130;
  transition: 0.5s;
  cursor: pointer;
}
.p-sample-menu__button-bar {
  content: "";
  width: 30px;
  height: 2px;
  margin: 0 auto;
  background-color: var(--c_main);
  display: grid;
  align-items: center;
  transition: 0.5s;
}
.p-sample-menu__button-bar--top {
  transform: translateY(-8px);
}
.p-sample-menu__button-bar--bot {
  transform: translateY(8px);
}
.p-sample-menu__menu {
  width: 100%;
  height: 100%;
  background-color: var(--bg_sec);
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  opacity: 0;
  transition: 0.3s;
}
.p-sample-menu__menu > .p-sample-menu__text {
  margin-top: 40px;
  line-height: 1.5;
}
.p-sample-menu__text {
  padding-top: 20px;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: inherit;
  line-height: inherit;
  text-align: center;
}

/*--------------------------------------------------------*/
/* <menu01>
/*--------------------------------------------------------*/
.p-sample-menu__header01.is-open .p-sample-menu__button + .p-sample-menu__menu {
  opacity: 1;
}
.p-sample-menu__header01.is-open .p-sample-menu__button > .p-sample-menu__button-bar--top {
  transform: translateY(100%) rotate(45deg);
}
.p-sample-menu__header01.is-open .p-sample-menu__button > .p-sample-menu__button-bar--mid {
  opacity: 0;
}
.p-sample-menu__header01.is-open .p-sample-menu__button > .p-sample-menu__button-bar--bot {
  transform: translateY(-100%) rotate(-45deg);
}

/*--------------------------------------------------------*/
/* <menu02>
/*--------------------------------------------------------*/
.p-sample-menu__header02 .p-sample-menu__button-bar {
  display: block;
  transition: opacity 0.5s, top 0.5s 0.5s, transform 0.5s;
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.p-sample-menu__header02 .p-sample-menu__button-bar--top {
  top: calc(50% - 10px);
}
.p-sample-menu__header02 .p-sample-menu__button-bar--bot {
  top: calc(50% + 10px);
}
.p-sample-menu__header02 .p-sample-menu__menu {
  position: absolute;
  inset: 0 -100% auto auto;
  z-index: 1;
  opacity: 1;
  visibility: hidden;
  transition: 0.5s;
}

.p-sample-menu__header02.is-open .p-sample-menu__button + .p-sample-menu__menu {
  opacity: 1;
  visibility: visible;
  position: absolute;
  inset: 0 0 auto auto;
  z-index: 1;
}
.p-sample-menu__header02.is-open .p-sample-menu__button > .p-sample-menu__button-bar {
  transition: opacity 0.5s, top 0.5s, transform 0.5s 0.5s;
}
.p-sample-menu__header02.is-open .p-sample-menu__button > .p-sample-menu__button-bar--top {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-sample-menu__header02.is-open .p-sample-menu__button > .p-sample-menu__button-bar--mid {
  opacity: 0;
}
.p-sample-menu__header02.is-open .p-sample-menu__button > .p-sample-menu__button-bar--bot {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/*--------------------------------------------------------*/
/* <menu03>
/*--------------------------------------------------------*/
.p-sample-menu__header03 .p-sample-menu__button {
  position: relative;
}
.p-sample-menu__header03 .p-sample-menu__button::after {
  content: "MENU";
  display: block;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: inherit;
  line-height: inherit;
  color: var(--txt_main);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}
.p-sample-menu__header03 .p-sample-menu__menu {
  scale: 0.5;
}

.p-sample-menu__header03.is-open .p-sample-menu__button::after {
  content: "CLOSE";
}
.p-sample-menu__header03.is-open .p-sample-menu__button + .p-sample-menu__menu {
  opacity: 1;
  scale: 1;
}
.p-sample-menu__header03.is-open .p-sample-menu__button > .p-sample-menu__button-bar--top {
  transform: translateY(100%) rotate(135deg);
}
.p-sample-menu__header03.is-open .p-sample-menu__button > .p-sample-menu__button-bar--mid {
  opacity: 0;
  transform: translateX(100%);
}
.p-sample-menu__header03.is-open .p-sample-menu__button > .p-sample-menu__button-bar--bot {
  transform: translateY(-100%) rotate(-135deg);
}

/*--------------------------------------------------------*/
/* <fade>
/*--------------------------------------------------------*/
.p-sample-fade {
  /*--------------------------------------------------------*/
  /* <menu01>
  /*--------------------------------------------------------*/
  /*--------------------------------------------------------*/
  /* <menu02>
  /*--------------------------------------------------------*/
}
.p-sample-fade__img {
  width: 100%;
  max-width: 500px;
  opacity: 0;
  transform: translateX(20px);
  transition: transform 1s, opacity 0.5s;
}
.p-sample-fade__img.fadein {
  opacity: 1;
  transform: translateX(0);
}
.p-sample-fade__list {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.p-sample-fade__li-item {
  width: 30%;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}
.p-sample-fade__li-item.fadein {
  transform: translateY(0);
  opacity: 1;
}
/*--------------------------------------------------------*/
/* <ac>
/*--------------------------------------------------------*/
.p-sample-ac__ac-item {
  border: 1px solid var(--c_main);
}
.p-sample-ac__ac-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-sample-ac__ac-item[open] .p-sample-ac__question::after {
  content: "－";
}
.p-sample-ac__ac-item[open] .p-sample-ac__answer {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.p-sample-ac__def-item {
  border: 1px solid var(--c_main);
}
.p-sample-ac__def-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-sample-ac__question {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: var(--c_main);
  color: var(--txt_white);
  position: relative;
  cursor: pointer;
}
.p-sample-ac__question::-webkit-details-marker {
  display: none;
}
.p-sample-ac__question::after {
  content: "＋";
  color: var(--txt_white);
  position: absolute;
  top: 15px;
  right: 10px;
}
.p-sample-ac__question .q {
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  margin-right: 5px;
  border-radius: 50%;
  background-color: var(--c_white);
  color: var(--txt_main);
  text-align: center;
  line-height: 30px;
}
.p-sample-ac__question[aria-expanded=true]::after {
  content: "－";
}
.p-sample-ac__def-data {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s;
}
.p-sample-ac__def-data[aria-hidden=false] {
  grid-template-rows: 1fr;
}
.p-sample-ac__answer-wrap {
  overflow: hidden;
}
.p-sample-ac__answer {
  padding: 10px;
  display: flex;
  justify-content: start;
  align-items: start;
}
.p-sample-ac__answer .a {
  width: 30px;
  margin-right: 5px;
  text-align: center;
}

/*--------------------------------------------------------*/
/* <tab>
/*--------------------------------------------------------*/
.p-sample-tab__tab-list {
  display: flex;
  justify-content: space-between;
}
.p-sample-tab__tab {
  width: 33%;
  margin: 0;
  padding: 10px;
  background-color: var(--c_sub);
  border: 1px solid var(--c_main);
  border-radius: 10px 10px 0 0;
  text-align: center;
  position: relative;
  bottom: -0.5px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.p-sample-tab__tab:not(:first-child) {
  margin-left: 5px;
}
.p-sample-tab__tab[aria-selected=true] {
  background-color: var(--c_main);
  color: var(--txt_white);
}
.p-sample-tab__tab-panel {
  display: none;
  padding: 40px 20px;
  border: 1px solid var(--c_main);
}
.p-sample-tab__tab-panel[aria-hidden=false] {
  display: block;
}
/*--------------------------------------------------------*/
/* <pop>
/*--------------------------------------------------------*/
html:has(dialog[open]) {
  overflow: hidden;
}

.p-sample-pop__btn {
  display: inline-block;
  width: 210px;
  padding: 12px 0;
  margin-top: 15px;
  background-color: var(--c_main);
  border: 2px solid var(--c_main);
  border-radius: 100vh;
  color: var(--c_white);
  text-align: center;
}
.p-sample-pop__btn.close {
  margin-top: 30px;
}
.p-sample-pop__dialog {
  padding: 20px;
  text-align: center;
}
.p-sample-pop__dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
.p-sample-pop__text {
  text-align: left;
}

.l-popup::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

/*--------------------------------------------------------*/
/* <timer>
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* <btn>
/*--------------------------------------------------------*/
.p-sample-btn__container + .p-sample-btn__container {
  margin-top: 40px;
}
@media (hover: hover) {
  .p-sample-btn__container .btn:hover {
    opacity: 1;
  }
}
@media (hover: none) {
  .p-sample-btn__container .btn:active {
    opacity: 1;
  }
}
.p-sample-btn__container.loop .btn {
  animation: 2s linear infinite;
}
.p-sample-btn__btn-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-sample-btn .btn {
  display: inline-block;
  width: 210px;
  padding: 12px 0;
  margin-top: 15px;
  background-color: var(--c_main);
  border: 2px solid var(--c_main);
  border-radius: 100vh;
  color: var(--c_white);
  text-align: center;
}
@media (hover: hover) {
  .p-sample-btn .btn.hover01:hover {
    opacity: var(--hover_opacity);
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover01:active {
    opacity: var(--hover_opacity);
  }
}
@media (hover: hover) {
  .p-sample-btn .btn.hover02:hover {
    background-color: var(--c_white);
    color: var(--c_main);
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover02:active {
    background-color: var(--c_white);
    color: var(--c_main);
  }
}
.p-sample-btn .btn.hover03 {
  position: relative;
}
.p-sample-btn .btn.hover03::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  transition: var(--hover_transition);
}
@media (hover: hover) {
  .p-sample-btn .btn.hover03:hover::after {
    transform: translate(5px, -50%);
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover03:active::after {
    transform: translate(5px, -50%);
  }
}
@media (hover: hover) {
  .p-sample-btn .btn.hover04:hover {
    scale: 0.92;
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover04:active {
    scale: 0.92;
  }
}
.p-sample-btn .btn.hover05 {
  box-shadow: 0 5px var(--c_accent);
}
@media (hover: hover) {
  .p-sample-btn .btn.hover05:hover {
    transform: translateY(5px);
    box-shadow: 0 0 var(--c_accent);
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover05:active {
    transform: translateY(5px);
    box-shadow: 0 0 var(--c_accent);
  }
}
.p-sample-btn .btn.hover06 {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.p-sample-btn .btn.hover06::before, .p-sample-btn .btn.hover06::after {
  content: "";
  width: 101%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--hover_transition);
  z-index: -1;
}
.p-sample-btn .btn.hover06::before {
  transform: translateX(-100%);
}
.p-sample-btn .btn.hover06::after {
  transform: translateX(100%);
}
@media (hover: hover) {
  .p-sample-btn .btn.hover06:hover {
    color: var(--c_main);
  }
  .p-sample-btn .btn.hover06:hover::before {
    transform: translateX(-49%);
  }
  .p-sample-btn .btn.hover06:hover::after {
    transform: translateX(49%);
  }
}
@media (hover: none) {
  .p-sample-btn .btn.hover06:active {
    color: var(--c_main);
  }
  .p-sample-btn .btn.hover06:active::before {
    transform: translateX(-49%);
  }
  .p-sample-btn .btn.hover06:active::after {
    transform: translateX(49%);
  }
}
.p-sample-btn .btn.loop01 {
  animation-name: move;
}
@keyframes move {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.p-sample-btn .btn.loop02 {
  animation-name: scale;
}
@keyframes scale {
  0% {
    scale: 0.9;
  }
  50% {
    scale: 1;
  }
  100% {
    scale: 0.9;
  }
}
.p-sample-btn .btn.loop03 {
  position: relative;
  overflow: hidden;
}
.p-sample-btn .btn.loop03::after {
  animation: shine 2.5s linear infinite;
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
}
@keyframes shine {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
.p-sample-btn .btn.loop06 {
  animation-name: poyon;
}
@keyframes poyon {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  40% {
    transform: scale(0.95, 1.1) translate(0%, -10%);
  }
  50% {
    transform: scale(1.05, 0.9) translate(0%, 5%);
  }
  60% {
    transform: scale(0.95, 1.05) translate(0%, -3%);
  }
  70% {
    transform: scale(1.05, 0.95) translate(0%, 3%);
  }
  80% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
.p-sample-btn .btn.loop04 {
  animation-name: shake;
}
@keyframes shake {
  0% {
    transform: translate(3px, 0px);
  }
  5% {
    transform: translate(-3px, 0px);
  }
  10% {
    transform: translate(3px, 0px);
  }
  15% {
    transform: translate(-3px, 0px);
  }
  20% {
    transform: translate(3px, 0px);
  }
  25% {
    transform: translate(-3px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
.p-sample-btn .btn.loop05 {
  animation-name: push;
  box-shadow: 0 5px 0 var(--c_accent);
}
@keyframes push {
  0% {
    box-shadow: 0 5px 0 var(--c_accent);
    transform: translateY(0);
  }
  10% {
    box-shadow: 0 0 0 var(--c_accent);
    transform: translateY(5px);
  }
  20% {
    box-shadow: 0 5px 0 var(--c_accent);
    transform: translateY(0);
  }
  30% {
    box-shadow: 0 0 0 var(--c_accent);
    transform: translateY(5px);
  }
  40% {
    box-shadow: 0 5px 0 var(--c_accent);
    transform: translateY(0);
  }
}

/*--------------------------------------------------------*/
/* <extra>
/*--------------------------------------------------------*/
.p-sample-extra__link {
  display: inline-block;
  border-bottom: 1px solid var(--c_accent);
}
.p-sample-extra__link::after {
  display: inline-block;
  content: "";
  width: 14px;
  aspect-ratio: 1/1;
  background-image: url(../../img/ex-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .p-sample-extra__link::after {
    width: 18px;
  }
}

/*--------------------------------------------------------*/
/* _thanks
/*--------------------------------------------------------*/
.p-thanks {
  width: 100%;
  height: 100dvh;
  background: var(--c_sub);
}
.p-thanks__container {
  width: 80%;
  background-color: var(--bg_base);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--shadow);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .p-thanks__container {
    width: 40%;
  }
}
.p-thanks__heading {
  padding: 20px;
  background: var(--bg_gradient);
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3;
  color: var(--txt_white);
  text-align: center;
}
.p-thanks__content {
  padding: 24px 20px;
}
.p-thanks__text {
  margin-bottom: 20px;
  font-weight: inherit;
  line-height: 1.3;
}
.p-thanks__link {
  color: var(--c_main);
}

/*--------------------------------------------------------*/
/* _utility-index
/*--------------------------------------------------------*/
/*--------------------------------------------------------*/
/* _utility
/*--------------------------------------------------------*/
@media screen and (min-width: 960px) {
  .u-dn--pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-dn--pctb {
    display: none;
  }
}

.u-dn--tbsp {
  display: none;
}
@media screen and (min-width: 960px) {
  .u-dn--tbsp {
    display: block;
  }
}

.u-dn--sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-dn--sp {
    display: block;
  }
}

.u-ttu {
  text-transform: uppercase;
}

.u-ttc {
  text-transform: capitalize;
}/*# sourceMappingURL=style.css.map */