@charset "UTF-8";
/*
Include basic set.
*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*
Brakepoint
*/
/*
Noto Serif Japanese
https://fonts.google.com/noto/specimen/Noto+Serif+JP
Weight: 300(Light), 400(Regular), 500(Medium)
*/
/*
Gowun Batang
https://fonts.google.com/specimen/Gowun+Batang
Weight: 400(Regular), 700(Bold)
*/
/*
Roboto + Noto Sans Japanese
https://fonts.google.com/specimen/Roboto
https://fonts.google.com/noto/specimen/Noto+Sans+JP
Weight: 300(Light), 400(Regular), 500(Medium)
*/
/*
SASS Mixin
*/
/*
Include global set.
*/
/*
Reset
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
  font-style: normal;
}

/*
Basics
*/
body {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  color: var(--color-black);
}
@media (max-width: 840px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 841px) {
  body {
    font-size: 17px;
  }
}
body img,
body video {
  display: block;
  width: 100%;
  height: auto;
}
body p,
body span,
body em {
  font-weight: inherit;
}
body sup {
  vertical-align: text-top;
}
@media (max-width: 840px) {
  body sup {
    position: relative;
    top: -0.2em;
    font-size: 0.7em;
  }
}
@media (min-width: 841px) {
  body sup {
    font-size: 0.6em;
  }
}
body .__wba > span {
  display: inline-block;
  white-space: nowrap;
}
@media (min-width: 841px) {
  body .__wb > span {
    display: inline-block;
    white-space: nowrap;
  }
}
body a {
  text-underline-offset: 0.2em;
}
@media (max-width: 840px) {
  body .__is_desktop {
    display: none;
  }
}
@media (min-width: 841px) {
  body .__is_mobile {
    display: none;
  }
}

/*
View
*/
.view {
  margin: 0 auto;
}
@media (max-width: 840px) {
  .view {
    width: 85%;
  }
}
@media (min-width: 841px) {
  .view {
    width: 68vw;
  }
}

/*
Scroll animations
*/
.__intersection.__fadein {
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
  opacity: 0;
}
.__intersection.__fadein.__inview {
  opacity: 1;
}
.__intersection.__fadeinup {
  -webkit-transition: opacity 1s linear, -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.__intersection.__fadeinup.__inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

body:not(.theme--post-works):not(.theme--home) .loading-cover {
  display: none;
}

.theme--post-works main,
.theme--home main {
  -webkit-transition: opacity 1s linear, -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s linear, transform 1.5s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 1.5s cubic-bezier(0.23, 1, 0.32, 1);
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}
.theme--post-works .loading-cover,
.theme--home .loading-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-gray);
  z-index: var(--z-index-loading);
  -webkit-transition: opacity 0.5s linear, -webkit-transform 0s liniear 0.5s;
  transition: opacity 0.5s linear, -webkit-transform 0s liniear 0.5s;
  transition: opacity 0.5s linear, transform 0s liniear 0.5s;
  transition: opacity 0.5s linear, transform 0s liniear 0.5s, -webkit-transform 0s liniear 0.5s;
  opacity: 1;
}
.theme--post-works .loading-cover .image,
.theme--home .loading-cover .image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  aspect-ratio: 215/91;
  height: auto;
}
@media (max-width: 840px) {
  .theme--post-works .loading-cover .image,
  .theme--home .loading-cover .image {
    width: 120px;
  }
}
@media (min-width: 841px) {
  .theme--post-works .loading-cover .image,
  .theme--home .loading-cover .image {
    width: max(120px, 14vw);
  }
}
.theme--post-works.__loaded main,
.theme--home.__loaded main {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.theme--post-works.__loaded .loading-cover,
.theme--home.__loaded .loading-cover {
  opacity: 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

/*
header
*/
.header .hamburger {
  position: fixed;
  z-index: var(--z-index-hamburger);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: visible;
  cursor: pointer;
}
@media (max-width: 840px) {
  .header .hamburger {
    width: 53px;
    height: 53px;
    top: 0;
    right: 0;
  }
}
@media (min-width: 841px) {
  .header .hamburger {
    width: max(42px, 2.9166666667vw);
    height: max(42px, 2.9166666667vw);
    top: max(20px, 1.3888888889vw);
    right: max(41px, 2.8472222222vw);
  }
}
.header .hamburger .box {
  position: relative;
}
@media (max-width: 840px) {
  .header .hamburger .box {
    width: 23px;
    height: 7px;
  }
}
@media (min-width: 841px) {
  .header .hamburger .box {
    width: max(32px, 2.2222222222vw);
    height: calc(max(8px, 0.4166666667vw) + 2px);
  }
}
.header .hamburger .box .bars {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: var(--color-black);
}
@media (max-width: 840px) {
  .header .hamburger .box .bars {
    width: 23px;
  }
}
@media (min-width: 841px) {
  .header .hamburger .box .bars {
    width: max(32px, 2.2222222222vw);
  }
}
.header .hamburger .box .bars {
  -webkit-transition: background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, top 0.25s ease;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .hamburger .box .bars::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  height: 1px;
  background-color: var(--color-black);
}
@media (max-width: 840px) {
  .header .hamburger .box .bars::after {
    top: 6px;
    width: 23px;
  }
}
@media (min-width: 841px) {
  .header .hamburger .box .bars::after {
    width: max(32px, 2.2222222222vw);
    top: max(7px, 0.4861111111vw);
  }
}
.header .hamburger .box .bars::after {
  -webkit-transition: background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, top 0.25s ease;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.25s ease, top 0.25s ease, -webkit-transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/*
drawer
*/
body.drawer--active .header .hamburger .box .bars {
  background-color: var(--color-white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media (max-width: 840px) {
  body.drawer--active .header .hamburger .box .bars {
    top: 3px;
  }
}
@media (min-width: 841px) {
  body.drawer--active .header .hamburger .box .bars {
    top: max(3px, 0.2083333333vw);
  }
}
body.drawer--active .header .hamburger .box .bars::after {
  top: 0;
  background-color: var(--color-white);
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
body.drawer--active .drawer-background {
  opacity: 1;
}
body.drawer--active .drawer {
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
  pointer-events: auto;
}
body.drawer--active .drawer .drawer-scroll {
  opacity: 1;
}
body.drawer--active .drawer.__closeTransition {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.drawer-background {
  position: fixed;
  inset: 0;
  z-index: var(--z-index-drawer-background);
  background-color: var(--color-dark-gray);
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.drawer {
  position: fixed;
  z-index: var(--z-index-drawer);
  overflow: hidden;
  top: 0;
  right: 0;
  width: 100vw;
  height: 120vh;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  background: transparent;
  pointer-events: none;
}
.drawer .drawer-scroll {
  position: relative;
  width: 100%;
  height: 100vh;
  overscroll-behavior-y: contain;
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  mix-blend-mode: normal;
}
.drawer .drawer-scroll .drawer-wrap {
  width: 100%;
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap {
    font-size: max(20px, 1.38vw);
    letter-spacing: 0.04em;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout {
    width: 100%;
    margin: 0;
    padding: 30px 7.7vw;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout {
    width: max(300px, 20.8333333333vw);
    margin: 0 0 0 auto;
    padding: max(50px, 3.4722222222vw) 0;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .languages {
    gap: 0 6px;
    margin-bottom: 90px;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .languages {
    gap: 0 10px;
    margin-bottom: 170px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .languages a {
  display: block;
  text-decoration: none;
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .languages .divider {
  display: block;
  width: 1px;
  border-right: 1px solid var(--color-white);
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .languages .divider {
    height: 16px;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .languages .divider {
    height: 20px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul {
    gap: max(30px, 2.0833333333vw);
    margin-bottom: max(30px, 2.0833333333vw);
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations ul {
    gap: 26px;
    margin-bottom: 26px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li {
  list-style: none;
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations ul li a {
  text-decoration: none;
  color: var(--color-white);
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .social {
    gap: 20px;
    margin-bottom: 60px;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout .navigations .social {
    gap: max(20px, 1.3888888889vw);
    margin-bottom: 125px;
  }
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .social a .instagram {
  aspect-ratio: 19/19;
  width: max(22px, 1.5277777778vw);
  height: auto;
}
.drawer .drawer-scroll .drawer-wrap .layout .navigations .social a .youtube {
  aspect-ratio: 29/19;
  width: max(34px, 2.3611111111vw);
  height: auto;
}
.drawer .drawer-scroll .drawer-wrap .layout .logo {
  aspect-ratio: 215/91;
  height: auto;
}
@media (max-width: 840px) {
  .drawer .drawer-scroll .drawer-wrap .layout .logo {
    width: 174px;
  }
}
@media (min-width: 841px) {
  .drawer .drawer-scroll .drawer-wrap .layout .logo {
    width: max(215px, 14.9305555556vw);
  }
}

body.language__ja .drawer .languages a.languages-ja {
  color: var(--color-white);
}
body.language__ja .drawer .languages a.languages-en {
  color: var(--color-gray);
}
body.language__en .drawer .languages a.languages-ja {
  color: var(--color-gray);
}
body.language__en .drawer .languages a.languages-en {
  color: var(--color-white);
}

/*
footer
*/
.footer {
  position: relative;
  z-index: var(--z-index-footer);
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 840px) {
  .footer {
    position: relative;
    padding-top: 64px;
    margin-top: 90px;
    padding-bottom: 42px;
  }
  .footer:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 4vw;
    width: 92vw;
    height: 0.5px;
    background-color: var(--color-black);
  }
}
@media (min-width: 841px) {
  .footer {
    padding-top: max(160px, 11.1111111111vw);
    padding-bottom: max(40px, 2.7777777778vw);
  }
}
@media (max-width: 840px) {
  .footer .view {
    width: 85%;
  }
}
@media (min-width: 841px) {
  .footer .view {
    width: 66.6666666667vw;
  }
}
.footer .view .layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .view .layout .navigations {
  width: 100%;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.4305555556vw 2.7083333333vw;
  }
}
.footer .view .layout .navigations ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
    font-size: 16px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.4305555556vw;
    font-size: max(16px, 1.1111111111vw);
    line-height: 1.4;
  }
}
.footer .view .layout .navigations ul li {
  list-style: none;
}
.footer .view .layout .navigations ul li a {
  text-decoration: none;
  color: var(--color-black);
}
.footer .view .layout .navigations .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations .social {
    gap: 25px;
    margin-top: 42px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations .social {
    gap: 2.0833333333vw;
  }
}
.footer .view .layout .navigations .social a .instagram {
  aspect-ratio: 19/19;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations .social a .instagram {
    width: auto;
    height: 28px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations .social a .instagram {
    width: max(22px, 1.5277777778vw);
    height: auto;
  }
}
.footer .view .layout .navigations .social a .youtube {
  aspect-ratio: 29/19;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations .social a .youtube {
    width: auto;
    height: 28px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations .social a .youtube {
    width: max(34px, 2.3611111111vw);
    height: auto;
  }
}
.footer .view .layout .navigations .languages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 840px) {
  .footer .view .layout .navigations .languages {
    gap: 0 6px;
    margin-top: 37px;
    font-size: 16px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations .languages {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: auto;
    padding-left: 2.7083333333vw;
    gap: 0 10px;
  }
}
.footer .view .layout .navigations .languages a {
  display: block;
  text-decoration: none;
}
@media (hover: hover) {
  .footer .view .layout .navigations .languages a:hover {
    text-decoration: underline;
  }
}
.footer .view .layout .navigations .languages .divider {
  display: block;
  width: 1px;
  border-right: 1px solid var(--color-black);
}
@media (max-width: 840px) {
  .footer .view .layout .navigations .languages .divider {
    height: 16px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .navigations .languages .divider {
    height: 20px;
  }
}
.footer .view .layout .logo {
  aspect-ratio: 215/91;
  height: auto;
}
@media (max-width: 840px) {
  .footer .view .layout .logo {
    width: 121px;
    margin-top: 100px;
    margin-bottom: 14px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .logo {
    width: max(162px, 11.25vw);
    margin-top: 9.4444444444vw;
    margin-bottom: max(12.5px, 0.8680555556vw);
  }
}
@media (max-width: 840px) {
  .footer .view .layout .copyright {
    font-size: 10px;
  }
}
@media (min-width: 841px) {
  .footer .view .layout .copyright {
    font-size: max(11px, 0.7638888889vw);
  }
}

body.language__ja .footer .languages a.languages-ja {
  color: var(--color-black);
}
body.language__ja .footer .languages a.languages-en {
  color: var(--color-gray);
}
body.language__en .footer .languages a.languages-ja {
  color: var(--color-gray);
}
body.language__en .footer .languages a.languages-en {
  color: var(--color-black);
}

/*
Pages
*/
@media (max-width: 840px) {
  .works-archive {
    margin-top: 67px;
  }
}
@media (min-width: 841px) {
  .works-archive {
    margin-top: max(191px, 191vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .works-archive .view {
    width: 85%;
  }
}
@media (min-width: 841px) {
  .works-archive .view {
    width: 84vw;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 226px;
            flex: 0 0 226px;
    margin-left: 8vw;
    padding-right: 1vw;
  }
}
.works-archive .view .layout .works-archive__sidebar .page-title {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .page-title {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 25px;
    margin-bottom: 96px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .page-title {
    font-size: max(32px, 32vw / var(--width-base-desktop) * 100);
    margin-bottom: max(76px, 76vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters {
    position: relative;
    width: 202px;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--trigger {
    font-family: "Roboto", "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: inherit;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.5em;
    width: 100%;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    border: none;
    border-bottom: 0.5px solid var(--color-black);
    padding: 0 14px 4px 18px;
    margin: 0;
  }
}
@media (max-width: 840px) and (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--trigger .label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--trigger::after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--color-gray);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--trigger {
    display: none;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--trigger.is-opened::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--dropdown {
    position: absolute;
    left: 0;
    z-index: 10;
    width: 100%;
    margin-top: 0;
    padding: 24px 14px 24px 18px;
    background-color: #efefef;
    max-height: var(--works-dropdown-max-height, 60vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--dropdown::-webkit-scrollbar {
    display: none;
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-archive--dropdown.is-opened {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter {
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
    line-height: 2;
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul {
  list-style: none;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul {
    margin-bottom: 0;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul {
    margin-bottom: max(31px, 31vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul li {
    margin-bottom: 1.8em;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul li {
    margin-bottom: 1em;
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul li a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul li a:hover {
    color: var(--color-accent-a);
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--category ul li.is-active a {
  color: var(--color-accent-a);
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag {
    margin-top: 24px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.5em;
    cursor: pointer;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label span {
    display: none;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label span {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    display: block;
    width: max(7px, 7vw / var(--width-base-desktop) * 100);
    height: max(7px, 7vw / var(--width-base-desktop) * 100);
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label span::before, .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: max(7px, 7vw / var(--width-base-desktop) * 100);
    height: 0;
    border-top: 1px solid black;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag .works-filter__label span::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag.is-opened .works-filter__label span::after {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  overflow: hidden;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul {
    padding-top: 24px;
    gap: 12px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul {
    padding-top: max(31px, 31vw / var(--width-base-desktop) * 100);
    gap: max(17px, 17vw / var(--width-base-desktop) * 100) 0;
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li a {
  text-decoration: none;
  word-break: break-all;
  color: inherit;
  display: block;
  font-weight: 300;
  border-radius: 9999px;
}
@media (hover: hover) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li a {
    -webkit-transition: background-color 0.4s;
    transition: background-color 0.4s;
  }
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li a:hover {
    background-color: var(--color-accent-a);
    color: var(--color-white);
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li a {
    font-size: 12px;
    background-color: var(--color-white);
    padding: 10px 17px 9px 14px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li a {
    font-size: max(13px, 13vw / var(--width-base-desktop) * 100);
    line-height: 1.6;
    background-color: var(--color-background);
    padding: max(6px, 6vw / var(--width-base-desktop) * 100);
    padding-right: max(19px, 19vw / var(--width-base-desktop) * 100);
    padding-left: max(14px, 14vw / var(--width-base-desktop) * 100);
  }
}
.works-archive .view .layout .works-archive__sidebar .works-filters .works-filter.works-filter--tag ul li.is-active a {
  background-color: var(--color-accent-a);
  color: var(--color-white);
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main {
    width: 67.9487179487vw;
    margin: 0 auto;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-width: 0;
  }
}
.works-archive .view .layout .works-archive__main .works {
  display: -ms-grid;
  display: grid;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main .works {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 45px 0;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main .works {
    grid-template-columns: repeat(auto-fill, minmax(27vw, 1fr));
    gap: 0 2.9166666667vw;
  }
}
.works-archive .view .layout .works-archive__main .works .card .images {
  text-decoration: none;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.works-archive .view .layout .works-archive__main .works .card .images figure {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.works-archive .view .layout .works-archive__main .works .card .images figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-archive .view .layout .works-archive__main .works .card .images__main {
  z-index: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.works-archive .view .layout .works-archive__main .works .card .images__sub {
  z-index: 0;
}
@media (hover: hover) {
  .works-archive .view .layout .works-archive__main .works .card .images:hover .images__main {
    opacity: 0;
  }
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main .works .card .caption {
    padding-top: 14px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main .works .card .caption {
    min-height: max(169px, 169vw / var(--width-base-desktop) * 100);
    padding-top: max(16px, 16vw / var(--width-base-desktop) * 100);
    padding-bottom: max(30px, 30vw / var(--width-base-desktop) * 100);
  }
}
.works-archive .view .layout .works-archive__main .works .card .caption .title {
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .title {
    font-size: max(22px, 22vw / var(--width-base-desktop) * 100);
    margin-bottom: max(14px, 14vw / var(--width-base-desktop) * 100);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
  }
}
.works-archive .view .layout .works-archive__main .works .card .caption .title a {
  text-decoration: none;
  color: inherit;
}
.works-archive .view .layout .works-archive__main .works .card .caption .meta {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 300;
  letter-spacing: 0.02em;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .meta {
    font-size: 12px;
    line-height: 1.3;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .meta {
    font-size: max(13px, 13vw / var(--width-base-desktop) * 100);
    line-height: 1.3;
  }
}
.works-archive .view .layout .works-archive__main .works .card .caption .meta span {
  display: inline;
  vertical-align: middle;
}
.works-archive .view .layout .works-archive__main .works .card .caption .meta span:not(:first-child) {
  padding-left: 0.5em;
  margin-left: 0.5em;
  border-left: 0.5px solid var(--color-black);
}
.works-archive .view .layout .works-archive__main .works .card .caption .tags {
  display: block;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 300;
  color: var(--color-gray);
  line-height: 1.4;
}
@media (max-width: 840px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .tags {
    font-size: 12px;
    margin-top: 5px;
  }
}
@media (min-width: 841px) {
  .works-archive .view .layout .works-archive__main .works .card .caption .tags {
    margin-top: max(12px, 12vw / var(--width-base-desktop) * 100);
    font-size: max(13px, 13vw / var(--width-base-desktop) * 100);
  }
}
.works-archive .view .layout .works-archive__main .works .card .caption .tags span {
  display: inline-block;
}
.works-archive .view .layout .works-archive__main .works .card .caption .tags span:not(:last-child) {
  margin-right: 1em;
}

@media (max-width: 840px) {
  body.works-dropdown--active {
    overflow: hidden;
  }
}
@media (max-width: 840px) {
  .theme--contact,
  .theme--confirm,
  .theme--success {
    margin-top: 67px;
  }
}
@media (min-width: 841px) {
  .theme--contact,
  .theme--confirm,
  .theme--success {
    margin-top: max(191px, 191vw / var(--width-base-desktop) * 100);
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout,
  .theme--confirm .view .layout,
  .theme--success .view .layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.theme--contact .view .layout .page-title,
.theme--confirm .view .layout .page-title,
.theme--success .view .layout .page-title {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .page-title,
  .theme--confirm .view .layout .page-title,
  .theme--success .view .layout .page-title {
    font-size: 20px;
    margin-bottom: 27px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .page-title,
  .theme--confirm .view .layout .page-title,
  .theme--success .view .layout .page-title {
    position: relative;
    top: -0.23em;
    width: max(230px, 230vw / var(--width-base-desktop) * 100);
    min-width: max(230px, 230vw / var(--width-base-desktop) * 100);
    padding-left: 3.55vw;
    font-size: max(32px, 32vw / var(--width-base-desktop) * 100);
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body,
  .theme--confirm .view .layout .contact-body,
  .theme--success .view .layout .contact-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body .lead-text,
  .theme--confirm .view .layout .contact-body .lead-text,
  .theme--success .view .layout .contact-body .lead-text {
    font-size: 14px;
    letter-spacing: 0.02em;
    line-height: 1.7142857143;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body .lead-text,
  .theme--confirm .view .layout .contact-body .lead-text,
  .theme--success .view .layout .contact-body .lead-text {
    font-size: max(16px, 16vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body .about-required-marks,
  .theme--confirm .view .layout .contact-body .about-required-marks,
  .theme--success .view .layout .contact-body .about-required-marks {
    font-size: 11px;
    line-height: 1.8;
    margin-top: 0.6428571429em;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body .about-required-marks,
  .theme--confirm .view .layout .contact-body .about-required-marks,
  .theme--success .view .layout .contact-body .about-required-marks {
    font-size: max(11px, 11vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.05em;
    margin-top: 0.4em;
  }
}
.theme--contact .view .layout .contact-body .about-required-marks span,
.theme--confirm .view .layout .contact-body .about-required-marks span,
.theme--success .view .layout .contact-body .about-required-marks span {
  color: var(--color-attention);
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form,
  .theme--confirm .view .layout .contact-body form,
  .theme--success .view .layout .contact-body form {
    margin-top: 76px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form,
  .theme--confirm .view .layout .contact-body form,
  .theme--success .view .layout .contact-body form {
    margin-top: max(97px, 97vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form.form-confirm,
  .theme--confirm .view .layout .contact-body form.form-confirm,
  .theme--success .view .layout .contact-body form.form-confirm {
    margin-top: 53px;
  }
}
.theme--contact .view .layout .contact-body form,
.theme--confirm .view .layout .contact-body form,
.theme--success .view .layout .contact-body form {
  /*
  入力画面
  */
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group:not(:last-child),
  .theme--confirm .view .layout .contact-body form .form-group:not(:last-child),
  .theme--success .view .layout .contact-body form .form-group:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group:not(:last-child),
  .theme--confirm .view .layout .contact-body form .form-group:not(:last-child),
  .theme--success .view .layout .contact-body form .form-group:not(:last-child) {
    margin-bottom: max(32px, 32vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-group legend,
.theme--contact .view .layout .contact-body form .form-group label,
.theme--confirm .view .layout .contact-body form .form-group legend,
.theme--confirm .view .layout .contact-body form .form-group label,
.theme--success .view .layout .contact-body form .form-group legend,
.theme--success .view .layout .contact-body form .form-group label {
  display: block;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group legend,
  .theme--contact .view .layout .contact-body form .form-group label,
  .theme--confirm .view .layout .contact-body form .form-group legend,
  .theme--confirm .view .layout .contact-body form .form-group label,
  .theme--success .view .layout .contact-body form .form-group legend,
  .theme--success .view .layout .contact-body form .form-group label {
    font-size: 14px;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group legend,
  .theme--contact .view .layout .contact-body form .form-group label,
  .theme--confirm .view .layout .contact-body form .form-group legend,
  .theme--confirm .view .layout .contact-body form .form-group label,
  .theme--success .view .layout .contact-body form .form-group legend,
  .theme--success .view .layout .contact-body form .form-group label {
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.05em;
    margin-bottom: 0.7333333333em;
  }
}
.theme--contact .view .layout .contact-body form .form-group legend .required,
.theme--contact .view .layout .contact-body form .form-group label .required,
.theme--confirm .view .layout .contact-body form .form-group legend .required,
.theme--confirm .view .layout .contact-body form .form-group label .required,
.theme--success .view .layout .contact-body form .form-group legend .required,
.theme--success .view .layout .contact-body form .form-group label .required {
  color: var(--color-attention);
}
.theme--contact .view .layout .contact-body form .form-group input[type=text],
.theme--contact .view .layout .contact-body form .form-group input[type=email],
.theme--contact .view .layout .contact-body form .form-group input[type=tel],
.theme--contact .view .layout .contact-body form .form-group textarea,
.theme--confirm .view .layout .contact-body form .form-group input[type=text],
.theme--confirm .view .layout .contact-body form .form-group input[type=email],
.theme--confirm .view .layout .contact-body form .form-group input[type=tel],
.theme--confirm .view .layout .contact-body form .form-group textarea,
.theme--success .view .layout .contact-body form .form-group input[type=text],
.theme--success .view .layout .contact-body form .form-group input[type=email],
.theme--success .view .layout .contact-body form .form-group input[type=tel],
.theme--success .view .layout .contact-body form .form-group textarea {
  width: 100%;
  outline: none;
  border: 1px solid var(--color-background);
  background-color: var(--color-background);
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group input[type=text],
  .theme--contact .view .layout .contact-body form .form-group input[type=email],
  .theme--contact .view .layout .contact-body form .form-group input[type=tel],
  .theme--contact .view .layout .contact-body form .form-group textarea,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text],
  .theme--confirm .view .layout .contact-body form .form-group input[type=email],
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel],
  .theme--confirm .view .layout .contact-body form .form-group textarea,
  .theme--success .view .layout .contact-body form .form-group input[type=text],
  .theme--success .view .layout .contact-body form .form-group input[type=email],
  .theme--success .view .layout .contact-body form .form-group input[type=tel],
  .theme--success .view .layout .contact-body form .form-group textarea {
    border-radius: 4px;
    padding: 1px 25px;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group input[type=text],
  .theme--contact .view .layout .contact-body form .form-group input[type=email],
  .theme--contact .view .layout .contact-body form .form-group input[type=tel],
  .theme--contact .view .layout .contact-body form .form-group textarea,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text],
  .theme--confirm .view .layout .contact-body form .form-group input[type=email],
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel],
  .theme--confirm .view .layout .contact-body form .form-group textarea,
  .theme--success .view .layout .contact-body form .form-group input[type=text],
  .theme--success .view .layout .contact-body form .form-group input[type=email],
  .theme--success .view .layout .contact-body form .form-group input[type=tel],
  .theme--success .view .layout .contact-body form .form-group textarea {
    border-radius: max(4px, 4vw / var(--width-base-desktop) * 100);
    padding: max(2px, 2vw / var(--width-base-desktop) * 100) 2em;
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
.theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
.theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
.theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
.theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
.theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
.theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
.theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill,
.theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
.theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
.theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
.theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
.theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
.theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
.theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
.theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
.theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill,
.theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
.theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
.theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
.theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
.theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
.theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
.theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
.theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
.theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
.theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
.theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
.theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill,
.theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
.theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus {
  line-height: 2 !important;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus {
    font-size: 16px !important;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover, .theme--contact .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--contact .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--confirm .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=text]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=email]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group input[type=tel]:-webkit-autofill:focus,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:hover,
  .theme--success .view .layout .contact-body form .form-group textarea:-webkit-autofill:focus {
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100) !important;
  }
}
.theme--contact .view .layout .contact-body form .form-group input[type=text]:focus,
.theme--contact .view .layout .contact-body form .form-group input[type=email]:focus,
.theme--contact .view .layout .contact-body form .form-group input[type=tel]:focus,
.theme--contact .view .layout .contact-body form .form-group textarea:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=text]:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=email]:focus,
.theme--confirm .view .layout .contact-body form .form-group input[type=tel]:focus,
.theme--confirm .view .layout .contact-body form .form-group textarea:focus,
.theme--success .view .layout .contact-body form .form-group input[type=text]:focus,
.theme--success .view .layout .contact-body form .form-group input[type=email]:focus,
.theme--success .view .layout .contact-body form .form-group input[type=tel]:focus,
.theme--success .view .layout .contact-body form .form-group textarea:focus {
  border: 1px solid var(--color-black);
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group input[type=text],
  .theme--confirm .view .layout .contact-body form .form-group input[type=text],
  .theme--success .view .layout .contact-body form .form-group input[type=text] {
    width: max(260px, 260vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-group input[type=email],
.theme--contact .view .layout .contact-body form .form-group input[type=tel],
.theme--confirm .view .layout .contact-body form .form-group input[type=email],
.theme--confirm .view .layout .contact-body form .form-group input[type=tel],
.theme--success .view .layout .contact-body form .form-group input[type=email],
.theme--success .view .layout .contact-body form .form-group input[type=tel] {
  max-width: max(480px, 480vw / var(--width-base-desktop) * 100);
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group textarea,
  .theme--confirm .view .layout .contact-body form .form-group textarea,
  .theme--success .view .layout .contact-body form .form-group textarea {
    padding-top: 24px;
    padding-bottom: 30px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group textarea,
  .theme--confirm .view .layout .contact-body form .form-group textarea,
  .theme--success .view .layout .contact-body form .form-group textarea {
    width: 100%;
    padding-top: max(31px, 31vw / var(--width-base-desktop) * 100);
    padding-bottom: max(21px, 21vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio {
    margin-bottom: 47px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio {
    margin-bottom: max(50px, 50vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio legend,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio legend,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio legend {
    margin-bottom: 30px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio legend,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio legend,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio legend {
    margin-bottom: max(31px, 31vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group,
.theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group,
.theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group {
    gap: 0.25em 1.25em;
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
.theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
.theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
  line-height: 1.2;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label,
  .theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label {
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label input[type=radio],
.theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label input[type=radio],
.theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label::before,
.theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label::before,
.theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  border: 0.5px solid var(--color-gray);
  border-radius: 50%;
  margin-right: 0.5em;
  background-color: var(--color-white);
}
.theme--contact .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label:has(input[type=radio]:checked)::after,
.theme--confirm .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label:has(input[type=radio]:checked)::after,
.theme--success .view .layout .contact-body form .form-group.form-group--radio .radio-group label.radio-label:has(input[type=radio]:checked)::after {
  content: "";
  display: block;
  width: 0.266em;
  height: 0.266em;
  background-color: var(--color-black);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0.6em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy {
    margin: 43px 0;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy {
    margin-top: max(61px, 61vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead {
  letter-spacing: 0.02em;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead {
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 18px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-lead {
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
    line-height: 1.8;
    margin-bottom: 1.1538461538em;
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body {
  background-color: var(--color-background);
  letter-spacing: 0.02em;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body {
    margin-bottom: 18px;
    padding: 19px 9px;
    font-size: 12px;
    line-height: 18px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body {
    margin-bottom: max(22px, 22vw / var(--width-base-desktop) * 100);
    padding: max(6px, 6vw / var(--width-base-desktop) * 100);
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
    line-height: 1.6;
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area {
  overflow: scroll;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area {
    height: 9em;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .privacy-body .scroll-area {
    height: 9.8em;
    padding: max(16px, 16vw / var(--width-base-desktop) * 100);
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy,
  .theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy,
  .theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy {
    text-align: center;
  }
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox],
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox],
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text {
  position: relative;
  padding-left: calc(max(18px, 1.25vw) + 12px);
  font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
  font-family: serif;
  line-height: 1.5;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::before,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::before,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: max(18px, 1.25vw);
  height: max(18px, 1.25vw);
  background-color: #fff;
  border: 1px solid #b5b5b5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, border-color 0.2s;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::after,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::after,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label .checkbox-text::after {
  content: "";
  position: absolute;
  top: calc(50% - max(18px, 1.25vw) * 0.1);
  left: calc(max(18px, 1.25vw) * 0.5);
  width: calc(max(18px, 1.25vw) * 0.32);
  height: calc(max(18px, 1.25vw) * 0.58);
  border-right: max(1px, 0.0694444444vw) solid #fff;
  border-bottom: max(1px, 0.0694444444vw) solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::before,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::before,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::before {
  background-color: #000;
  border-color: #000;
}
.theme--contact .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::after,
.theme--confirm .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::after,
.theme--success .view .layout .contact-body form .form-group.form-group--privacy .accept-privacy label.checkbox-label input[type=checkbox]:checked + .checkbox-text::after {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.theme--contact .view .layout .contact-body form .form-group.has-error input[type=text],
.theme--contact .view .layout .contact-body form .form-group.has-error input[type=email],
.theme--contact .view .layout .contact-body form .form-group.has-error input[type=tel],
.theme--contact .view .layout .contact-body form .form-group.has-error textarea,
.theme--confirm .view .layout .contact-body form .form-group.has-error input[type=text],
.theme--confirm .view .layout .contact-body form .form-group.has-error input[type=email],
.theme--confirm .view .layout .contact-body form .form-group.has-error input[type=tel],
.theme--confirm .view .layout .contact-body form .form-group.has-error textarea,
.theme--success .view .layout .contact-body form .form-group.has-error input[type=text],
.theme--success .view .layout .contact-body form .form-group.has-error input[type=email],
.theme--success .view .layout .contact-body form .form-group.has-error input[type=tel],
.theme--success .view .layout .contact-body form .form-group.has-error textarea {
  border-color: var(--color-attention);
}
.theme--contact .view .layout .contact-body form .form-group.has-error .error-message,
.theme--confirm .view .layout .contact-body form .form-group.has-error .error-message,
.theme--success .view .layout .contact-body form .form-group.has-error .error-message {
  display: block;
  color: var(--color-attention);
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-group.has-error .error-message,
  .theme--confirm .view .layout .contact-body form .form-group.has-error .error-message,
  .theme--success .view .layout .contact-body form .form-group.has-error .error-message {
    font-size: max(11px, 11vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.05em;
    margin-top: 0.5em;
  }
}
.theme--contact .view .layout .contact-body form .use-recaptcha,
.theme--confirm .view .layout .contact-body form .use-recaptcha,
.theme--success .view .layout .contact-body form .use-recaptcha {
  letter-spacing: 0.02em;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .use-recaptcha,
  .theme--confirm .view .layout .contact-body form .use-recaptcha,
  .theme--success .view .layout .contact-body form .use-recaptcha {
    font-size: 12px;
    line-height: 18px;
    margin-top: 60px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .use-recaptcha,
  .theme--confirm .view .layout .contact-body form .use-recaptcha,
  .theme--success .view .layout .contact-body form .use-recaptcha {
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
    line-height: 1.8;
    margin-top: max(80px, 80vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .use-recaptcha a,
.theme--confirm .view .layout .contact-body form .use-recaptcha a,
.theme--success .view .layout .contact-body form .use-recaptcha a {
  text-decoration: underline;
  color: inherit;
}
.theme--contact .view .layout .contact-body form,
.theme--confirm .view .layout .contact-body form,
.theme--success .view .layout .contact-body form {
  /*
  確認画面
  */
}
.theme--contact .view .layout .contact-body form .confirm-data,
.theme--confirm .view .layout .contact-body form .confirm-data,
.theme--success .view .layout .contact-body form .confirm-data {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .confirm-data,
  .theme--confirm .view .layout .contact-body form .confirm-data,
  .theme--success .view .layout .contact-body form .confirm-data {
    border-radius: 4px;
    gap: 2px;
    margin-bottom: 59px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .confirm-data,
  .theme--confirm .view .layout .contact-body form .confirm-data,
  .theme--success .view .layout .contact-body form .confirm-data {
    border-radius: max(4px, 4vw / var(--width-base-desktop) * 100);
    gap: max(2px, 0.1388888889vw);
    margin-bottom: max(70px, 70vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .confirm-data .form-group,
.theme--confirm .view .layout .contact-body form .confirm-data .form-group,
.theme--success .view .layout .contact-body form .confirm-data .form-group {
  background-color: var(--color-background);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group,
  .theme--success .view .layout .contact-body form .confirm-data .form-group {
    padding: 30px 6.4102564103vw 23px;
    font-size: 14px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group,
  .theme--success .view .layout .contact-body form .confirm-data .form-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 1px;
    padding: max(17px, 17vw / var(--width-base-desktop) * 100);
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100);
    line-height: 2;
  }
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group label,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group label,
  .theme--success .view .layout .contact-body form .confirm-data .form-group label {
    margin-bottom: 16px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group label,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group label,
  .theme--success .view .layout .contact-body form .confirm-data .form-group label {
    width: max(200px, 200vw / var(--width-base-desktop) * 100);
    padding-left: 4.1666666667vw;
    margin-bottom: 0;
  }
}
.theme--contact .view .layout .contact-body form .confirm-data .form-group p,
.theme--confirm .view .layout .contact-body form .confirm-data .form-group p,
.theme--success .view .layout .contact-body form .confirm-data .form-group p {
  word-break: break-all;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group p,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group p,
  .theme--success .view .layout .contact-body form .confirm-data .form-group p {
    line-height: 2;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group p,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group p,
  .theme--success .view .layout .contact-body form .confirm-data .form-group p {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-right: 4.1666666667vw;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .confirm-data .form-group.form-group-message,
  .theme--confirm .view .layout .contact-body form .confirm-data .form-group.form-group-message,
  .theme--success .view .layout .contact-body form .confirm-data .form-group.form-group-message {
    padding-bottom: max(50px, 50vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form,
.theme--confirm .view .layout .contact-body form,
.theme--success .view .layout .contact-body form {
  /*
  送信ボタン（共通）
  */
}
.theme--contact .view .layout .contact-body form .form-submit,
.theme--confirm .view .layout .contact-body form .form-submit,
.theme--success .view .layout .contact-body form .form-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-submit,
  .theme--confirm .view .layout .contact-body form .form-submit,
  .theme--success .view .layout .contact-body form .form-submit {
    gap: 43px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-submit,
  .theme--confirm .view .layout .contact-body form .form-submit,
  .theme--success .view .layout .contact-body form .form-submit {
    gap: max(34px, 34vw / var(--width-base-desktop) * 100);
    width: max(270px, 270vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-submit button,
.theme--confirm .view .layout .contact-body form .form-submit button,
.theme--success .view .layout .contact-body form .form-submit button {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  border: 1px solid var(--color-black);
  background-color: var(--color-accent-c);
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-submit button,
  .theme--confirm .view .layout .contact-body form .form-submit button,
  .theme--success .view .layout .contact-body form .form-submit button {
    font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 4px;
    width: 100%;
    max-width: 380px;
    height: 42px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-submit button,
  .theme--confirm .view .layout .contact-body form .form-submit button,
  .theme--success .view .layout .contact-body form .form-submit button {
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
    letter-spacing: 0.02em;
    width: 100%;
    height: max(46px, 46vw / var(--width-base-desktop) * 100);
    border-radius: max(4px, 4vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .layout .contact-body form .form-submit button.is-disable,
.theme--confirm .view .layout .contact-body form .form-submit button.is-disable,
.theme--success .view .layout .contact-body form .form-submit button.is-disable {
  border-color: var(--color-gray);
  background-color: var(--color-background);
  color: var(--color-gray);
}
.theme--contact .view .layout .contact-body form .form-submit .back-link,
.theme--confirm .view .layout .contact-body form .form-submit .back-link,
.theme--success .view .layout .contact-body form .form-submit .back-link {
  text-decoration: underline;
  color: inherit;
}
@media (max-width: 840px) {
  .theme--contact .view .layout .contact-body form .form-submit .back-link,
  .theme--confirm .view .layout .contact-body form .form-submit .back-link,
  .theme--success .view .layout .contact-body form .form-submit .back-link {
    font-size: 14px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .layout .contact-body form .form-submit .back-link,
  .theme--confirm .view .layout .contact-body form .form-submit .back-link,
  .theme--success .view .layout .contact-body form .form-submit .back-link {
    font-size: max(14px, 14vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .thanks,
.theme--confirm .view .thanks,
.theme--success .view .thanks {
  text-align: center;
}
@media (max-width: 840px) {
  .theme--contact .view .thanks,
  .theme--confirm .view .thanks,
  .theme--success .view .thanks {
    margin-top: 77px;
  }
}
.theme--contact .view .thanks .page-title,
.theme--confirm .view .thanks .page-title,
.theme--success .view .thanks .page-title {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-accent-a);
}
@media (max-width: 840px) {
  .theme--contact .view .thanks .page-title,
  .theme--confirm .view .thanks .page-title,
  .theme--success .view .thanks .page-title {
    font-size: 32px;
    margin-bottom: 87px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .thanks .page-title,
  .theme--confirm .view .thanks .page-title,
  .theme--success .view .thanks .page-title {
    font-size: max(48px, 48vw / var(--width-base-desktop) * 100);
    margin-bottom: max(104px, 104vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .thanks .success-text,
.theme--confirm .view .thanks .success-text,
.theme--success .view .thanks .success-text {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 840px) {
  .theme--contact .view .thanks .success-text,
  .theme--confirm .view .thanks .success-text,
  .theme--success .view .thanks .success-text {
    font-size: 18px;
    margin-bottom: 34px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .thanks .success-text,
  .theme--confirm .view .thanks .success-text,
  .theme--success .view .thanks .success-text {
    font-size: max(21px, 21vw / var(--width-base-desktop) * 100);
    margin-bottom: max(31px, 31vw / var(--width-base-desktop) * 100);
  }
}
.theme--contact .view .thanks .thanks-message,
.theme--confirm .view .thanks .thanks-message,
.theme--success .view .thanks .thanks-message {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 840px) {
  .theme--contact .view .thanks .thanks-message,
  .theme--confirm .view .thanks .thanks-message,
  .theme--success .view .thanks .thanks-message {
    font-size: 14px;
    margin-bottom: 95px;
  }
}
@media (min-width: 841px) {
  .theme--contact .view .thanks .thanks-message,
  .theme--confirm .view .thanks .thanks-message,
  .theme--success .view .thanks .thanks-message {
    font-size: max(15px, 15vw / var(--width-base-desktop) * 100);
    margin-bottom: max(31px, 31vw / var(--width-base-desktop) * 100);
  }
}

.theme--404 .view .content {
  text-align: center;
}
@media (max-width: 840px) {
  .theme--404 .view .content {
    margin-top: 144px;
  }
}
@media (min-width: 841px) {
  .theme--404 .view .content {
    margin-top: max(191px, 13.2638888889vw);
  }
}
.theme--404 .view .content .page-title {
  font-family: "Gowun Batang", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.05em;
  color: var(--color-accent-a);
}
@media (max-width: 840px) {
  .theme--404 .view .content .page-title {
    font-size: 32px;
    margin-bottom: 87px;
  }
}
@media (min-width: 841px) {
  .theme--404 .view .content .page-title {
    font-size: max(48px, 3.3333333333vw);
    margin-bottom: max(104px, 7.2222222222vw);
  }
}
.theme--404 .view .content .text {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 840px) {
  .theme--404 .view .content .text {
    font-size: 18px;
    margin-bottom: 34px;
  }
}
@media (min-width: 841px) {
  .theme--404 .view .content .text {
    font-size: max(21px, 1.4583333333vw);
    margin-bottom: max(31px, 2.1527777778vw);
  }
}
.theme--404 .view .content .link {
  letter-spacing: 0.1em;
  line-height: 2;
}
@media (max-width: 840px) {
  .theme--404 .view .content .link {
    font-size: 14px;
    margin-bottom: 95px;
  }
}
@media (min-width: 841px) {
  .theme--404 .view .content .link {
    font-size: max(15px, 1.0416666667vw);
    margin-bottom: max(31px, 2.1527777778vw);
  }
}
.theme--404 .view .content .link a {
  color: inherit;
  text-decoration: underline;
}