@charset "UTF-8";
:root {
  --wht: #fff;
  --gray01: #bcbcbc;
  --black: #141414;
  --black02: #2F2720;
  --green01: #005726;
  --green02: #457552;
  --red01: #DF1F1C;
  --blue01: #0070C3;
  --palePink01: #F9DDEA;
  --paleYellow01: #FFFCDB;
  --paleBlue01: #D4EEFC;
}

:root {
  --a1-gothic-l: "A1ゴシック L";
  --a1-gothic-m: "A1ゴシック M";
  --cardo: "Cardo", serif;
  --noto-serif: "Noto Serif JP", serif;
  --outfit: "Outfit", sans-serif;
  --robot: "Roboto", sans-serif;
}

:root {
  --fszBase: 1.4rem;
  --fszBase_sp: 14;
  --fszAtt: 1.1rem;
  --fszAtt_sp: 11;
  --fszMid: 1.6rem;
  --fszMid_sp: 16;
  --fszMvTtl: 3.2rem;
  --fszMvTtl_sp: 24;
  --fszTtl: 2.8rem;
  --fszTtl_sp: 20;
  --fszSubTtl: 2rem;
  --fszSubTtl_sp: 16;
}

:root {
  --fullWidth: 1600px;
  --outerWidth: 1280px;
  --middleWidth: 770px;
  --inrWidth: 800px;
}

/*----------------------------------------
	RESET
-----------------------------------------*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none !important;
}

blockquote, q {
  quotes: none;
}

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

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

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

/* ====================
 SIZE SET
==================== */
/* ===================
 MIXIN
==================== */
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--a1-gothic-m);
  color: var(--black);
  background-color: #fff;
  position: relative;
  width: 100%;
  word-break: break-all;
  line-height: 1.4;
  font-size: var(--basefs);
  font-weight: normal;
  letter-spacing: 0.025em;
  text-align: justify;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: calc(var(--fszBase_sp) / 414 * 100vw);
  }
}
main,
header,
footer,
section {
  display: block;
}

img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

button {
  padding: 0;
  border: unset;
}

input[type=text],
input[type=password],
textarea,
select {
  outline: none;
}

label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

.gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
  font-size: 1.4rem;
  text-align: right;
}
#pageTop a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  display: block;
  border-radius: 5px;
}
#pageTop a:hover {
  text-decoration: none;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
@media screen and (min-width: 769px) {
  .c-btn__to-top {
    position: absolute;
    z-index: 999;
    top: -28px;
    right: 252px;
    width: 56px;
    height: 56px;
  }
  .c-btn__to-top a {
    width: 100%;
    height: 100%;
    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;
    border: 1px solid var(--black);
    background-color: var(--wht);
    border-radius: 100vmax;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-btn__to-top a svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-btn__to-top a:hover {
    opacity: 1;
    background-color: var(--red01);
    border-color: var(--red01);
  }
  .c-btn__to-top a:hover svg path {
    stroke: var(--wht);
  }
}
@media screen and (max-width: 768px) {
  .c-btn__to-top {
    position: absolute;
    z-index: 999;
    top: calc(-29 / 414 * 100vw);
    right: calc(64 / 414 * 100vw);
    width: calc(48 / 414 * 100vw);
    height: calc(48 / 414 * 100vw);
  }
  .c-btn__to-top a {
    width: 100%;
    height: 100%;
    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;
    border: calc(1 / 414 * 100vw) solid var(--black);
    background-color: var(--wht);
    border-radius: 100vmax;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .c-btn__to-top a svg {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: calc(18 / 414 * 100vw);
  }
  .c-btn__to-top a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .c-outer {
    width: calc(100% - 30px);
    max-width: var(--outerWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-middle {
    width: calc(100% - 30px);
    max-width: var(--middleWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-inner {
    width: calc(100% - 30px);
    max-width: var(--inrWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper {
    overflow-x: hidden;
    min-width: 1280px;
  }
}
@media screen and (max-width: 768px) {
  .c-outer {
    width: calc(100% - 55px);
    max-width: var(--outerWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-middle {
    width: calc(100% - 55px);
    max-width: var(--middleWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .c-inner {
    width: calc(100% - 55px);
    max-width: var(--inrWidth);
    margin-left: auto;
    margin-right: auto;
  }
  .wrapper {
    overflow-x: hidden;
    min-width: unset;
  }
}
@media screen and (min-width: 769px) {
  .c-flex-col2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .c-flex-col2 > div {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
  .c-flex-col2 > div:nth-of-type(2n) {
    margin-right: 0;
  }
  .c-flex-col2 > div:nth-of-type(n + 3) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-flex-col2 > div {
    width: calc(50% - 20 / 414 * 100vw * 1 / 2);
    margin-right: calc(20 / 414 * 100vw);
  }
  .c-flex-col2 > div:nth-of-type(2n) {
    margin-right: 0;
  }
  .c-flex-col2 > div:nth-of-type(n + 3) {
    margin-top: calc(20 / 414 * 100vw);
  }
}
.c-appear-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
}
.c-appear-up.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-left {
  opacity: 0;
  -webkit-transform: translateX(-30px);
          transform: translateX(-30px);
  -webkit-transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
}
.c-appear-left.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-right {
  opacity: 0;
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
  -webkit-transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
}
.c-appear-right.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-down {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s);
  transition: opacity var(--duration, 0.6s) ease var(--delay, 0s), transform var(--duration, 0.6s) ease var(--delay, 0s), -webkit-transform var(--duration, 0.6s) ease var(--delay, 0s);
}
.c-appear-down.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-appear-background-color:before {
  width: 0;
  -webkit-transition: width var(--duration, 0.6s) ease var(--delay, 0s);
  transition: width var(--duration, 0.6s) ease var(--delay, 0s);
}
.c-appear-background-color.is-visible:before {
  width: 88%;
}

@media screen and (min-width: 769px) {
  .c-title01__japanese {
    font-size: 1.4rem;
    padding-left: 26px;
    position: relative;
    display: block;
    font-family: var(--a1-gothic-l);
  }
  .c-title01__japanese:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 100vmax;
    border: 1px solid var(--black);
  }
  .c-title01__english {
    display: block;
    font-size: 10.2rem;
    font-family: var(--cardo);
    margin-top: 35px;
    letter-spacing: 0.02em;
    padding-left: 3px;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .c-title01__japanese {
    font-size: calc(12 / 414 * 100vw);
    padding-left: calc(17 / 414 * 100vw);
    position: relative;
    display: block;
    font-family: var(--a1-gothic-l);
  }
  .c-title01__japanese:before {
    position: absolute;
    content: "";
    width: calc(8 / 414 * 100vw);
    height: calc(8 / 414 * 100vw);
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 100vmax;
    border: calc(1 / 414 * 100vw) solid var(--black);
  }
  .c-title01__english {
    display: block;
    font-size: calc(35 / 414 * 100vw);
    font-family: var(--cardo);
    margin-top: calc(13 / 414 * 100vw);
    letter-spacing: 0.02em;
    padding-left: vw81;
    font-weight: bold;
  }
}
@media screen and (min-width: 769px) {
  .c-text__reading01 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading02 {
    background-image: -webkit-gradient(linear, left top, right top, from(#608b6e), color-stop(50%, #608b6e), color-stop(50%, #fff), to(#fff));
    background-image: linear-gradient(to right, #608b6e, #608b6e 50%, #fff 50%, #fff);
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading03 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading04 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading05 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
}
@media screen and (max-width: 768px) {
  .c-text__reading01 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading02 {
    background-image: -webkit-gradient(linear, left top, right top, from(#608b6e), color-stop(50%, #608b6e), color-stop(50%, #fff), to(#fff));
    background-image: linear-gradient(to right, #608b6e, #608b6e 50%, #fff 50%, #fff);
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading03 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading04 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
  .c-text__reading05 {
    background-image: -webkit-gradient(linear, left top, right top, from(var(--gray01)), color-stop(50%, var(--gray01)), color-stop(50%, var(--black)), to(var(--black)));
    background-image: linear-gradient(to right, var(--gray01), var(--gray01) 50%, var(--black) 50%, var(--black));
    background-position: 200% 0;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200% 100%;
    -webkit-text-fill-color: transparent;
  }
}
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mt1000 {
  margin-top: 1000px;
}

.u-tal {
  text-align: left;
}

.u-tac {
  text-align: center;
}

.u-tac {
  text-align: center;
}

.u-tal {
  text-align: left;
}

.u-tar {
  text-align: right;
}

.u-taj {
  text-align: justify;
}

.u-tdu {
  text-decoration: underline;
}

.u-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.u-fwb {
  font-weight: bold;
}

.u-redCol {
  color: var(--txtRed);
}

@media only screen and (max-width: 768px) {
  .u-mt10 {
    margin-top: 0.6em;
  }
  .u-mt20 {
    margin-top: 1.2em;
  }
  .u-mt30 {
    margin-top: 1.8em;
  }
  .u-mt40 {
    margin-top: 2.4em;
  }
  .u-mt50 {
    margin-top: 3em;
  }
  .u-mt60 {
    margin-top: 3.6em;
  }
  .u-mt70 {
    margin-top: 4.2em;
  }
  .u-mt80 {
    margin-top: 4.8em;
  }
  .u-mt90 {
    margin-top: 5.4em;
  }
  .u-mt100 {
    margin-top: 6em;
  }
}
@media screen and (min-width: 769px) {
  .l-ft {
    position: relative;
    border-top: 2px solid var(--black);
  }
  .l-ft__inner {
    padding: 112px 0 30px;
    max-width: 672px;
  }
  .l-ft__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-ft__head-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .l-ft__head-sns-title {
    padding-right: 12px;
    font-size: 1.2rem;
    letter-spacing: 0;
    font-family: var(--robot);
    font-weight: 500;
  }
  .l-ft__head-sns-item {
    width: 26px;
    margin-left: 13px;
  }
  .l-ft__attention {
    margin-top: 103px;
    position: relative;
  }
  .l-ft__attention-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .l-ft__attention-text.-japanese {
    font-family: var(--a1-gothic-l);
  }
  .l-ft__attention-text.-robot {
    font-family: var(--robot);
  }
  .l-ft__bottom-img {
    margin-top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-ft {
    position: relative;
    border-top: calc(2 / 414 * 100vw) solid var(--black);
  }
  .l-ft__inner {
    padding: calc(49 / 414 * 100vw) 0 calc(30 / 414 * 100vw);
  }
  .l-ft__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-ft__head-logo {
    -webkit-transform: translateX(calc(-7 / 414 * 100vw));
            transform: translateX(calc(-7 / 414 * 100vw));
    width: calc(169 / 414 * 100vw);
  }
  .l-ft__head-logo img {
    width: 100%;
  }
  .l-ft__head-sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: calc(86 / 414 * 100vw);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-right: calc(17 / 414 * 100vw);
  }
  .l-ft__head-sns-title {
    font-family: var(--robot);
    font-size: calc(12 / 414 * 100vw);
    margin-bottom: calc(10 / 414 * 100vw);
  }
  .l-ft__head-sns-item {
    width: calc(22 / 414 * 100vw);
    margin-left: calc(10 / 414 * 100vw);
  }
  .l-ft__head-sns-item img {
    width: 100%;
  }
  .l-ft__attention {
    margin-top: calc(52 / 414 * 100vw);
    position: relative;
  }
  .l-ft__attention-text {
    font-size: calc(11 / 414 * 100vw);
    line-height: 1.7;
    text-align: left;
    font-size: calc(12 / 414 * 100vw);
    line-height: 1.5;
    font-family: var(--robot);
    font-weight: 500;
    letter-spacing: 0.01em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .l-ft__attention-text.-japanese {
    font-family: var(--a1-gothic-l);
  }
  .l-ft__bottom-img {
    margin-top: calc(-43 / 414 * 100vw);
  }
}
@media screen and (min-width: 769px) {
  .l-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5000;
    pointer-events: none;
  }
  .l-header.-off .l-header__logo img {
    width: 200px;
  }
  .l-header.-off .l-header__date {
    -webkit-transform: translateX(-164px);
            transform: translateX(-164px);
  }
  .l-header.-off .l-header__nav-list02 a {
    font-size: 12px;
  }
  .l-header.-off .loop-content span {
    color: #f2f2f2 !important;
  }
  .l-header__inner {
    width: 100%;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 0;
    max-width: unset;
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__left {
    pointer-events: auto;
  }
  .l-header__logo {
    width: 295px;
    height: 237px;
    padding-top: 8px;
    -webkit-transform: translateX(48px);
            transform: translateX(48px);
  }
  .l-header__logo img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__date {
    margin-top: 144px;
    -webkit-transform: translateX(-19px);
            transform: translateX(-19px);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__date:hover {
    -webkit-transform: translateX(-19px) !important;
            transform: translateX(-19px) !important;
  }
  .l-header__nav {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 6px;
    padding-right: 43px;
    pointer-events: auto;
  }
  .l-header__nav-insta {
    display: block;
    margin-top: 24px;
    padding-right: 5px;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-header__nav ul li.-red-bg a:before {
    background-color: var(--red01);
  }
  .l-header__nav ul li.-red-bg a:hover .icon-external-link path {
    stroke: var(--red01);
  }
  .l-header__nav ul li.-blue-bg a:before {
    background-color: var(--blue01);
  }
  .l-header__nav ul li.-blue-bg a:hover .icon-external-link path {
    stroke: var(--blue01);
  }
  .l-header__nav ul li.-green-bg a:before {
    background-color: var(--green01);
  }
  .l-header__nav ul li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .l-header__nav ul li a:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
  }
  .l-header__nav ul li a:hover {
    color: var(--wht);
    opacity: 1;
  }
  .l-header__nav ul li a:hover:before {
    width: 100%;
  }
  .l-header__nav-list01 {
    margin-top: 38px;
  }
  .l-header__nav-list01 li {
    text-align: right;
  }
  .l-header__nav-list01 li.-external-link {
    position: relative;
    padding-right: 30px;
  }
  .l-header__nav-list01 li.-external-link:not(:first-of-type) {
    margin-top: 27px;
  }
  .l-header__nav-list01 li.-external-link a {
    text-decoration: underline;
  }
  .l-header__nav-list01 li.-external-link .icon-external-link {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 1px;
    right: -24px;
  }
  .l-header__nav-list01 a {
    font-size: 14px;
    color: var(--black);
    padding: 1px;
  }
  .l-header__nav-list02 {
    margin-top: 194px;
  }
  .l-header__nav-list02 li {
    text-align: right;
  }
  .l-header__nav-list02 li:not(:first-of-type) {
    margin-top: 10.8px;
  }
  .l-header__nav-list02 li.-manual-margin {
    margin-top: 33px;
  }
  .l-header__nav-list02 a {
    font-size: 14px;
    color: var(--black);
    padding: 1px;
  }
  .l-header__hamburger {
    display: none;
  }
  .l-header__bottom-text {
    overflow: hidden;
    width: 100%;
    pointer-events: auto;
    position: fixed;
    bottom: 20px;
  }
  .l-header .loop-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    will-change: transform;
  }
  .l-header .loop-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 60s linear infinite;
            animation: marquee 60s linear infinite;
    font-size: 8.4rem;
    font-family: var(--a1-gothic-l);
  }
  .l-header .loop-content span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1;
  }
  .l-header .loop-content span:nth-of-type(3n + 1) {
    color: var(--green01);
  }
  .l-header .loop-content span:nth-of-type(3n + 2) {
    color: var(--blue01);
  }
  .l-header .loop-content span:nth-of-type(3n + 3) {
    color: var(--red01);
  }
  .l-header .loop-content img {
    min-width: 3480px;
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .l-header.-off .loop-content span {
    color: #f2f2f2 !important;
  }
  .l-header__inner {
    width: 100%;
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: calc(25 / 414 * 100vw) calc(27 / 414 * 100vw);
    margin-inline: auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-header__logo {
    width: calc(260 / 414 * 100vw);
  }
  .l-header__date {
    margin-top: calc(144 / 414 * 100vw);
    -webkit-transform: translateX(calc(-19 / 414 * 100vw));
            transform: translateX(calc(-19 / 414 * 100vw));
  }
  .l-header__nav {
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--paleYellow01);
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 112px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .l-header__nav.on {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .l-header__nav-produced {
    position: absolute;
    bottom: calc(112 / 414 * 100vw);
    left: calc(28 / 414 * 100vw);
    width: calc(132 / 414 * 100vw);
  }
  .l-header__nav-insta {
    display: block;
    margin-top: 0;
    padding-right: 0;
    margin-left: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    bottom: calc(141 / 414 * 100vw);
    left: calc(27 / 414 * 100vw);
    width: calc(33 / 414 * 100vw);
  }
  .l-header__nav-insta img {
    width: 100%;
  }
  .l-header__nav ul li.-red-bg a:before {
    background-color: var(--red01);
  }
  .l-header__nav ul li.-red-bg a:hover .icon-external-link path {
    stroke: var(--red01);
  }
  .l-header__nav ul li.-blue-bg a:before {
    background-color: var(--blue01);
  }
  .l-header__nav ul li.-blue-bg a:hover .icon-external-link path {
    stroke: var(--blue01);
  }
  .l-header__nav ul li.-green-bg a:before {
    background-color: var(--green01);
  }
  .l-header__nav ul li a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
  }
  .l-header__nav ul li a:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
  }
  .l-header__nav-list01 {
    margin-top: 49px;
    margin-inline: auto;
    width: calc(370 / 414 * 100vw);
  }
  .l-header__nav-list01 li {
    text-align: right;
  }
  .l-header__nav-list01 li.-external-link {
    position: relative;
    padding-right: calc(30 / 414 * 100vw);
  }
  .l-header__nav-list01 li.-external-link:not(:first-of-type) {
    margin-top: calc(19 / 414 * 100vw);
  }
  .l-header__nav-list01 li.-external-link a {
    text-decoration: underline;
  }
  .l-header__nav-list01 li.-external-link .icon-external-link {
    position: absolute;
    content: "";
    width: calc(14 / 414 * 100vw);
    height: calc(14 / 414 * 100vw);
    top: calc(1 / 414 * 100vw);
    right: calc(-24 / 414 * 100vw);
  }
  .l-header__nav-list01 a {
    font-size: 1.4rem;
    color: var(--black);
    padding: 1px;
  }
  .l-header__nav-list02 {
    padding-top: calc(47 / 414 * 100vw);
    margin-inline: auto;
    width: calc(325 / 414 * 100vw);
  }
  .l-header__nav-list02 li {
    text-align: right;
  }
  .l-header__nav-list02 li:not(:first-of-type) {
    margin-top: 17.5px;
  }
  .l-header__nav-list02 a {
    font-size: 1.6rem;
    color: var(--black);
    padding: 1px;
  }
  .l-header__hamburger {
    position: relative;
    z-index: 1000;
    width: calc(40 / 414 * 100vw);
    height: calc(40 / 414 * 100vw);
    background-color: transparent;
    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;
  }
  .l-header__hamburger-box {
    width: calc(30 / 414 * 100vw);
    height: calc(20 / 414 * 100vw);
    position: relative;
  }
  .l-header__hamburger-box span {
    position: absolute;
    display: block;
    width: 100%;
    height: calc(1 / 414 * 100vw);
    background-color: var(--black02);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__hamburger-box span:nth-of-type(1) {
    top: 0;
  }
  .l-header__hamburger-box span:nth-of-type(2) {
    top: 50%;
  }
  .l-header__hamburger-box span:nth-of-type(3) {
    top: 100%;
  }
  .l-header__hamburger-close-text {
    position: absolute;
    top: 56%;
    left: calc(-82 / 414 * 100vw);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: calc(17 / 414 * 100vw);
    letter-spacing: 0.06em;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: var(--black);
    font-family: var(--a1-gothic-l);
  }
  .l-header__hamburger-close-text.on {
    opacity: 1;
    visibility: visible;
  }
  .l-header__hamburger.on span:nth-of-type(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .l-header__hamburger.on span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header__hamburger.on span:nth-of-type(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .l-header__bottom-text {
    overflow: hidden;
    width: 100%;
    height: calc(84 / 414 * 100vw);
    position: fixed;
    bottom: 0;
  }
  .l-header__bottom-text02 {
    overflow: hidden;
    width: 100%;
    height: calc(84 / 414 * 100vw);
    position: fixed;
    bottom: 0;
  }
  .l-header .loop-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
    will-change: transform;
  }
  .l-header .loop-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 30s linear infinite;
            animation: marquee 30s linear infinite;
    font-size: calc(50 / 414 * 100vw);
    font-family: var(--a1-gothic-l);
  }
  .l-header .loop-content.on span:nth-of-type(3n + 1) {
    color: var(--green01) !important;
  }
  .l-header .loop-content.on span:nth-of-type(3n + 2) {
    color: var(--blue01) !important;
  }
  .l-header .loop-content.on span:nth-of-type(3n + 3) {
    color: var(--red01) !important;
  }
  .l-header .loop-content span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1;
  }
  .l-header .loop-content span:nth-of-type(3n + 1) {
    color: var(--green01);
  }
  .l-header .loop-content span:nth-of-type(3n + 2) {
    color: var(--blue01);
  }
  .l-header .loop-content span:nth-of-type(3n + 3) {
    color: var(--red01);
  }
  .l-header .loop-content img {
    min-width: calc(3480 / 414 * 100vw);
  }
  .l-header .loop-content02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: marquee 30s linear infinite;
            animation: marquee 30s linear infinite;
    font-size: calc(50 / 414 * 100vw);
    font-family: var(--a1-gothic-l);
  }
  .l-header .loop-content02.on span:nth-of-type(3n + 1) {
    color: var(--green01) !important;
  }
  .l-header .loop-content02.on span:nth-of-type(3n + 2) {
    color: var(--blue01) !important;
  }
  .l-header .loop-content02.on span:nth-of-type(3n + 3) {
    color: var(--red01) !important;
  }
  .l-header .loop-content02 span {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    line-height: 1;
  }
  .l-header .loop-content02 span:nth-of-type(3n + 1) {
    color: var(--green01) !important;
  }
  .l-header .loop-content02 span:nth-of-type(3n + 2) {
    color: var(--blue01) !important;
  }
  .l-header .loop-content02 span:nth-of-type(3n + 3) {
    color: var(--red01) !important;
  }
  .l-header .loop-content02 img {
    min-width: calc(3480 / 414 * 100vw);
  }
  @-webkit-keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
  @keyframes marquee {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
  }
}
@media screen and (min-height: 751px) and (max-width: 768px) {
  .l-header__bottom-text {
    bottom: 40px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__bottom-text.-bottom-0 {
    bottom: 0;
  }
}
@media screen and (min-height: 791px) and (max-width: 768px) {
  .l-header__bottom-text {
    bottom: 70px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__bottom-text.-bottom-0 {
    bottom: 0;
  }
}
@media screen and (min-height: 811px) and (max-width: 768px) {
  .l-header__bottom-text {
    bottom: 125px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__bottom-text.-bottom-0 {
    bottom: 0;
  }
}
@media screen and (max-height: 830px) and (min-width: 769px) {
  .l-header__logo {
    width: 195px;
    height: 160px;
  }
  .l-header__date {
    margin-top: 44px;
  }
  .l-header__nav-list02 {
    margin-top: 84px;
  }
}
@media screen and (min-width: 769px) {
  /* ローディング画面 */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fefcdb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .loading.hide {
    height: 0;
  }
  .loading.hide .loading__text {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .loading__text {
    position: relative;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .loading__text:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fefcdb;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .loading__text.-display:before {
    width: 0;
  }
  .p-top-mv {
    font-size: 30px;
  }
  .p-top-mv__img img {
    width: 100%;
  }
  .p-top-intro {
    margin-top: 232px;
    padding-top: 200px;
  }
  .p-top-intro__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-top-intro__title {
    width: 383px;
    padding-right: 50px;
  }
  .p-top-intro__title-area {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-intro__textarea {
    font-size: 1.8rem;
    letter-spacing: 0;
    line-height: 2.1;
    width: 385px;
    padding-right: 56px;
    margin-top: -7px;
  }
  .p-top-archive {
    margin-top: 151px;
    position: relative;
  }
  .p-top-archive__inner {
    width: 100%;
    max-width: unset;
  }
  .p-top-archive__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .p-top-archive__item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: 50%;
    position: relative;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  .p-top-archive__item:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--black);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }
  .p-top-archive__item.-before-on:before {
    opacity: 0.4;
  }
  .p-top-archive__item:hover .p-top-archive__item-link {
    opacity: 1;
  }
  .p-top-archive__item--item01 {
    border-right: 1px solid var(--black);
  }
  .p-top-archive__item--item01 .p-top-archive__item-link {
    background: rgba(223, 31, 28, 0.9);
  }
  .p-top-archive__item--item01:hover {
    width: 73%;
  }
  .p-top-archive__item--item02 .p-top-archive__item-link {
    background: rgba(0, 112, 195, 0.9);
  }
  .p-top-archive__item--item02:hover {
    width: 73%;
  }
  .p-top-archive__item-img img {
    width: 100%;
    height: 860px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .p-top-archive__item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--wht);
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-top-archive__item-link-title .big-text {
    font-size: 7rem;
    font-weight: 600;
    font-family: var(--cardo);
  }
  .p-top-archive__item-link-title .normal-text {
    font-size: 5rem;
    font-weight: 600;
    font-family: var(--cardo);
  }
  .p-top-archive__item-link-text {
    font-size: 2.8rem;
    text-decoration: underline;
    margin-top: 14px;
    position: relative;
    padding-right: 32px;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  .p-top-archive__item-link-text:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/common/icon_angle01.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-top-theme__inner {
    max-width: 670px;
    padding-top: 197px;
    padding-bottom: 14px;
  }
  .p-top-theme__head {
    font-size: 1.8rem;
    font-weight: 500;
  }
  .p-top-theme__title {
    font-size: 11.8rem;
    margin-top: 28px;
  }
  .p-top-theme__title-block {
    display: block;
    line-height: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.09em;
    color: var(--wht);
    position: relative;
  }
  .p-top-theme__title-block:not(:first-of-type) {
    margin-top: 59px;
  }
  .p-top-theme__title-block:before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .p-top-theme__title-block:nth-of-type(1):before {
    background-color: var(--red01);
  }
  .p-top-theme__title-block:nth-of-type(2):before {
    background-color: var(--blue01);
  }
  .p-top-theme__title-block:nth-of-type(3) {
    display: inline-block;
  }
  .p-top-theme__title-block:nth-of-type(3):before {
    background-color: var(--green01);
  }
  .p-top-theme__title-block:nth-of-type(3).is-visible:before {
    width: 84%;
  }
  .p-top-theme__title-block.-no-animation {
    color: var(--black);
    display: inline;
  }
  .p-top-theme__title-block-other {
    display: block;
    top: -160px;
    left: 321px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
  }
  .p-top-question {
    margin-top: 0px;
    background-color: var(--green02);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  .p-top-question__inner {
    padding: 178px 0 191px;
    max-width: 670px;
  }
  .p-top-question__title {
    font-size: 5rem;
    color: var(--wht);
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .p-top-question__title .bold {
    font-weight: bold;
  }
  .p-top-question__textarea {
    font-size: 1.8rem;
    margin-top: 88px;
    margin-inline: auto;
    width: 510px;
    line-height: 2.1;
  }
  .p-top-features__inner {
    padding: 158px 0 40px;
  }
  .p-top-features__title-area {
    margin-inline: auto;
    max-width: 770px;
    text-align: right;
  }
  .p-top-features__title-japanese {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .p-top-features__area {
    margin-top: 156px;
    border-top: 1px solid var(--black);
  }
  .p-top-features__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid var(--black);
  }
  .p-top-features__block.-block01 {
    background-color: var(--palePink01);
  }
  .p-top-features__block.-block01 .p-top-features__block-title {
    top: 111px;
    left: 256px;
  }
  .p-top-features__block.-block01 .p-top-features__block-btn:hover {
    background-color: var(--red01);
    border-color: var(--red01);
  }
  .p-top-features__block.-block02 {
    background-color: var(--paleYellow01);
  }
  .p-top-features__block.-block02 .p-top-features__block-title {
    top: 114px;
    left: 306px;
    z-index: 10;
  }
  .p-top-features__block.-block02 .p-top-features__block-title-japanese {
    text-align: right;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .p-top-features__block.-block02 .p-top-features__block-title-summary {
    text-align: right;
  }
  .p-top-features__block.-block02 .p-top-features__block-text-wrap {
    width: 270px;
    margin-top: 419px;
    margin-right: 42px;
    line-height: 1.76;
    letter-spacing: 0.22em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-left: auto;
  }
  .p-top-features__block.-block02 .p-top-features__block-img-area {
    border-left: 1px solid var(--black);
    border-right: unset;
  }
  .p-top-features__block.-block02 .p-top-features__block-btn:hover {
    background-color: var(--green01);
    border-color: var(--green01);
  }
  .p-top-features__block.-block03 {
    background-color: var(--paleBlue01);
  }
  .p-top-features__block.-block03 .p-top-features__block-title {
    top: 114px;
    left: 256px;
  }
  .p-top-features__block.-block03 .p-top-features__block-btn:hover {
    background-color: var(--blue01);
    border-color: var(--blue01);
  }
  .p-top-features__block:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-top-features__block-img-area {
    width: 59.6%;
    position: relative;
    border-right: 1px solid var(--black);
  }
  .p-top-features__block-img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    width: 100%;
    height: 860px;
  }
  .p-top-features__block-title {
    position: absolute;
    color: var(--wht);
  }
  .p-top-features__block-title-japanese {
    font-size: 1.4rem;
    display: block;
    padding-left: 40px;
    position: relative;
  }
  .p-top-features__block-title-japanese:before {
    position: absolute;
    content: "";
    width: 24px;
    height: 1px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: var(--wht);
  }
  .p-top-features__block-title-english {
    font-size: 7.5rem;
    font-weight: bold;
    font-family: var(--cardo);
    display: block;
    margin-top: 33px;
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .p-top-features__block-title-english .color-change {
    color: var(--black);
  }
  .p-top-features__block-title-summary {
    font-size: 1.4rem;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.05em;
  }
  .p-top-features__block-title-main-japanese-wrap {
    margin-top: 27px;
  }
  .p-top-features__block-title-main-japanese {
    font-family: var(--noto-serif);
    display: block;
  }
  .p-top-features__block-title-main-japanese:not(:first-of-type) {
    margin-top: 20px;
  }
  .p-top-features__block-title-main-japanese .small-text {
    font-size: 3.5rem;
    display: block;
    letter-spacing: 0.02em;
  }
  .p-top-features__block-title-main-japanese .normal-text {
    font-size: 4.5rem;
    display: block;
    margin-top: 14px;
  }
  .p-top-features__block-textarea {
    width: calc(100% - 760px);
  }
  .p-top-features__block-text-wrap {
    width: 270px;
    margin-top: 419px;
    margin-left: 36px;
    line-height: 1.76;
    letter-spacing: 0.22em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .p-top-features__block-text {
    font-size: 1.4rem;
  }
  .p-top-features__block-btn {
    color: var(--black);
    background-color: var(--wht);
    border: 1px solid var(--black);
    border-radius: 100vmax;
    width: 276px;
    height: 48px;
    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;
    font-size: 1.8rem;
    text-indent: -2em;
    margin-top: 37px;
    position: relative;
    font-family: var(--a1-gothic-l);
  }
  .p-top-features__block-btn:hover {
    opacity: 1;
    color: var(--wht);
  }
  .p-top-features__block-btn:hover:before {
    background-image: url(../img/common/icon_angle01.svg);
  }
  .p-top-features__block-btn:before {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 50%;
    right: 29px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/common/icon_angle01_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-top-exhibitors {
    /* 表示状態 */
  }
  .p-top-exhibitors__inner {
    padding: 159px 0 187px;
    max-width: 770px;
  }
  .p-top-exhibitors__box {
    margin-top: 120px;
  }
  .p-top-exhibitors__note {
    font-size: 12px;
    color: var(--gray01);
    margin-top: 23px;
    text-align: right;
    margin-right: 44px;
  }
  .p-top-exhibitors__guide {
    font-size: 1.2rem;
    color: var(--gray01);
    margin-inline: auto;
    max-width: 670px;
  }
  .p-top-exhibitors__area {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
    position: relative;
  }
  .p-top-exhibitors__treat01 {
    position: absolute;
    top: -110px;
    right: -213px;
    width: 755px;
  }
  .p-top-exhibitors__treat02 {
    position: absolute;
    top: 36.7%;
    left: -743px;
    min-width: 855px;
  }
  .p-top-exhibitors__treat03 {
    position: absolute;
    top: 57.6%;
    right: -209px;
    width: 565px;
  }
  .p-top-exhibitors__treat04 {
    position: absolute;
    top: unset;
    bottom: -152px;
    left: -197px;
    min-width: 788px;
  }
  .p-top-exhibitors .popup {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wht);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  .p-top-exhibitors .popup__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 139px;
    left: 88px;
    width: 17px;
  }
  .p-top-exhibitors .popup__close {
    position: absolute;
    z-index: 500;
    top: 134px;
    right: 84px;
    font-size: 1.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__close:hover {
    opacity: 0.8;
  }
  .p-top-exhibitors .popup__close .close-icon {
    width: 35px;
    height: 35px;
    margin-left: 19px;
    display: inline-block;
    position: relative;
  }
  .p-top-exhibitors .popup__close .close-icon:before, .p-top-exhibitors .popup__close .close-icon:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    background-color: var(--black);
  }
  .p-top-exhibitors .popup__close .close-icon:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-top-exhibitors .popup__close .close-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .p-top-exhibitors .popup__flex {
    margin-inline: auto;
    width: 1130px;
    padding: 0 130px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
    z-index: 10;
  }
  .p-top-exhibitors .popup__flex-left {
    width: 346px;
  }
  .p-top-exhibitors .popup__flex-left-logo {
    text-align: center;
  }
  .p-top-exhibitors .popup__flex-left-logo img {
    width: 200px;
  }
  .p-top-exhibitors .popup__flex-left-thumbnail {
    border: 1px solid var(--black);
    margin-top: 40px;
  }
  .p-top-exhibitors .popup__flex-right {
    width: 437px;
  }
  .p-top-exhibitors .popup__flex-right-title {
    font-size: 3.4rem;
    font-weight: bold;
  }
  .p-top-exhibitors .popup__flex-right-genre {
    font-size: 1.4rem;
    margin-top: 9px;
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__flex-right-url {
    font-size: 1.4rem;
    text-decoration: underline;
    margin-top: 4px;
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__flex-right-text {
    font-size: 1.8rem;
    margin-top: 40px;
    line-height: 2.1;
  }
  .p-top-exhibitors .popup__bottom-img {
    position: absolute;
    bottom: -100px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    opacity: 1;
  }
  .p-top-exhibitors .popup__inner {
    background: #fff;
  }
  .p-top-exhibitors .popup.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-top-exhibitors__block {
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    padding: 77px 0 16px;
    width: 50%;
    cursor: pointer;
    background-color: var(--wht);
    position: relative;
    z-index: 10;
  }
  .p-top-exhibitors__block:hover {
    opacity: 1;
  }
  .p-top-exhibitors__block:hover .p-top-exhibitors__block-title::before {
    width: 100%;
  }
  .p-top-exhibitors__block:hover .p-top-exhibitors__block-angle path {
    -webkit-transition: stroke 0.3s ease;
    transition: stroke 0.3s ease;
  }
  .p-top-exhibitors__block:hover.is-red .p-top-exhibitors__block-title::before, .p-top-exhibitors__block:hover.is-red .p-top-exhibitors__block-angle path {
    background-color: var(--red01);
    stroke: var(--red01);
  }
  .p-top-exhibitors__block:hover.is-blue .p-top-exhibitors__block-title::before, .p-top-exhibitors__block:hover.is-blue .p-top-exhibitors__block-angle path {
    background-color: var(--blue01);
    stroke: var(--blue01);
  }
  .p-top-exhibitors__block:hover.is-green .p-top-exhibitors__block-title::before, .p-top-exhibitors__block:hover.is-green .p-top-exhibitors__block-angle path {
    background-color: var(--green01);
    stroke: var(--green01);
  }
  .p-top-exhibitors__block-angle {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-top-exhibitors__block-thumbnail {
    margin-inline: auto;
    max-width: 360px;
  }
  .p-top-exhibitors__block-thumbnail img {
    width: 100%;
    height: 225px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
  .p-top-exhibitors__block-title-area {
    margin-top: 47px;
    font-size: 1.8rem;
    color: var(--black);
    margin-left: 35px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 15px;
  }
  .p-top-exhibitors__block-title {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    line-height: 1;
  }
  .p-top-exhibitors__block-title:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
  }
  .p-top-talk {
    border-top: 1px solid var(--black);
  }
  .p-top-talk__inner {
    padding: 197px 0 202px;
    max-width: 770px;
  }
  .p-top-talk__coming-soon {
    font-size: 4.2rem;
    font-family: var(--outfit);
    text-align: center;
    margin-top: 154px;
    color: var(--red01);
    letter-spacing: 0.02em;
  }
  .p-top-talk__coming-text {
    text-align: center;
    margin-top: 55px;
    color: var(--red01);
    font-weight: 500;
    font-size: 1.4rem;
  }
  .p-top-talk__comingsoon-treat {
    width: 322px;
    margin-inline: auto;
    display: block;
    margin-top: 19px;
    position: relative;
    top: 1px;
    left: -20px;
  }
  .p-top-workshop {
    border-top: 1px solid var(--black);
  }
  .p-top-workshop__inner {
    padding: 197px 0 178px;
    max-width: 770px;
  }
  .p-top-workshop__coming-soon {
    font-size: 4.2rem;
    font-family: var(--outfit);
    text-align: center;
    margin-top: 155px;
    color: var(--blue01);
    letter-spacing: 0.02em;
  }
  .p-top-workshop__coming-text {
    text-align: center;
    margin-top: 54px;
    color: var(--blue01);
    font-weight: 500;
    font-size: 1.4rem;
  }
  .p-top-workshop__comingsoon-treat {
    width: 322px;
    margin-inline: auto;
    display: block;
    margin-top: -6px;
    position: relative;
    top: -22px;
    left: 25px;
  }
  .p-top-information {
    border-top: 1px solid var(--black);
  }
  .p-top-information__inner {
    padding: 197px 0 187px;
    max-width: 770px;
  }
  .p-top-information__area {
    margin-top: 158px;
    margin-inline: auto;
    max-width: 670px;
  }
  .p-top-information__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 55px;
  }
  .p-top-information__left {
    width: 350px;
  }
  .p-top-information__thumbnail {
    border: 1px solid var(--black);
  }
  .p-top-information__right {
    width: calc(100% - 350px);
    padding-left: 40px;
    margin-top: -3px;
  }
  .p-top-information__list {
    margin-top: 35px;
  }
  .p-top-information__list-item {
    font-size: 1.4rem;
    line-height: 1.8;
    font-family: var(--a1-gothic-l);
  }
  .p-top-information__list-item:not(:first-of-type) {
    margin-top: 5px;
  }
  .p-top-information__text-block:not(:first-of-type) {
    margin-top: 17px;
  }
  .p-top-information__text-block-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1px;
  }
  .p-top-information__text-block-title.-red {
    color: var(--red01);
  }
  .p-top-information__text-block-title.-blue {
    color: var(--blue01);
  }
  .p-top-information__text-block-title.-green {
    color: var(--green01);
  }
  .p-top-information__text-block-text {
    font-weight: bold;
    letter-spacing: 0;
  }
  .p-top-information__text-block-text:not(:first-of-type) {
    margin-top: 11px;
  }
  .p-top-information__text-block-text .normal-text {
    font-size: 2.4rem;
  }
  .p-top-information__text-block-text .small-text {
    font-size: 1.8rem;
  }
  .p-top-information__text-block-text .time-text {
    font-size: 1.8rem;
    padding-left: 20px;
    letter-spacing: 0.02em;
  }
  .p-top-map {
    position: relative;
    width: 100%;
    padding-top: 66.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  .p-top-map iframe {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-top-contact__inner {
    padding: 198px 0 195px;
    max-width: 770px;
  }
  .p-top-contact__area {
    margin-top: 100px;
    margin-inline: auto;
    max-width: 672px;
  }
  .p-top-contact__company {
    font-size: 2.4rem;
    font-weight: bold;
    font-family: var(--a1-gothic-m);
  }
  .p-top-contact__flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 48px;
  }
  .p-top-contact__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.8rem;
    padding-right: 12px;
    font-family: var(--a1-gothic-l);
    letter-spacing: 0.02em;
  }
  .p-top-contact__block:first-of-type {
    position: relative;
    padding-right: 30px;
  }
  .p-top-contact__block:first-of-type:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 17px;
    top: 3px;
    right: -1px;
    background-color: var(--black);
  }
  .p-top-contact__block:nth-of-type(2) {
    padding-left: 27px;
  }
  .p-top-contact__block a {
    text-decoration: underline;
    padding-left: 6px;
  }
}
@media screen and (max-width: 768px) {
  /* ローディング画面 */
  .loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: #fefcdb;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .loading.hide {
    height: 0;
  }
  .loading.hide .loading__text {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  .loading__text {
    position: relative;
    width: calc(330 / 414 * 100vw);
    -webkit-transition: all 1s;
    transition: all 1s;
    opacity: 0;
  }
  .loading__text:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fefcdb;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .loading__text.-opacity {
    opacity: 1;
  }
  .loading__text.-display {
    opacity: 1;
  }
  .loading__text.-display:before {
    width: 0;
  }
  .p-top-mv__img img {
    width: 100%;
  }
  .p-top-mv__sp-bottom {
    margin-top: calc(40 / 414 * 100vw);
    margin-inline: auto;
    width: calc(360 / 414 * 100vw);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-top-mv__sp-bottom-left {
    width: 50%;
  }
  .p-top-mv__sp-bottom-left-insta {
    display: block;
    width: calc(33 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-left-insta img {
    width: 100%;
  }
  .p-top-mv__sp-bottom-left-produced {
    margin-top: calc(17 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-left-produced img {
    display: block;
    width: calc(130 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  .p-top-mv__sp-bottom-right-list {
    margin-top: calc(8 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-right-list-item {
    text-align: right;
  }
  .p-top-mv__sp-bottom-right-list-item:not(:first-of-type) {
    margin-top: calc(18 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-right-list-item.-external-link {
    position: relative;
    padding-right: calc(30 / 414 * 100vw);
  }
  .p-top-mv__sp-bottom-right-list-item.-external-link a {
    text-decoration: underline;
  }
  .p-top-mv__sp-bottom-right-list-item.-external-link .icon-external-link {
    position: absolute;
    content: "";
    width: calc(14 / 414 * 100vw);
    height: calc(14 / 414 * 100vw);
    top: calc(1 / 414 * 100vw);
    right: 0;
  }
  .p-top-mv__sp-bottom-right-list-item a {
    font-size: calc(14 / 414 * 100vw);
  }
  .p-top-mv__sp-date {
    margin-top: calc(160 / 414 * 100vw);
    margin-inline: auto;
    width: calc(368 / 414 * 100vw);
    -webkit-transform: translateX(calc(7 / 414 * 100vw));
            transform: translateX(calc(7 / 414 * 100vw));
  }
  .p-top-mv__sp-date img {
    width: 100%;
  }
  .p-top-intro__inner {
    padding-top: calc(105 / 414 * 100vw);
  }
  .p-top-intro__title {
    width: calc(383 / 414 * 100vw);
    padding-right: calc(50 / 414 * 100vw);
  }
  .p-top-intro__title-area {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-intro__textarea {
    font-size: calc(16 / 414 * 100vw);
    letter-spacing: 0;
    line-height: 1.87;
    margin-top: calc(47 / 414 * 100vw);
  }
  .p-top-archive {
    margin-top: calc(98 / 414 * 100vw);
    position: relative;
    border-top: 1px solid var(--black);
  }
  .p-top-archive__inner {
    width: 100%;
  }
  .p-top-archive__flex {
    position: relative;
  }
  .p-top-archive__item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    border-bottom: 1px solid var(--black);
  }
  .p-top-archive__item--item01 {
    border-right: 1px solid var(--black);
  }
  .p-top-archive__item--item01 .p-top-archive__item-link {
    background: rgba(223, 31, 28, 0.9);
  }
  .p-top-archive__item--item02 .p-top-archive__item-link {
    background: rgba(0, 112, 195, 0.9);
  }
  .p-top-archive__item-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--wht);
  }
  .p-top-archive__item-link:hover {
    opacity: 0.9;
  }
  .p-top-archive__item-link-title .big-text {
    font-size: calc(36 / 414 * 100vw);
    font-weight: 600;
    font-family: var(--cardo);
  }
  .p-top-archive__item-link-title .normal-text {
    font-size: calc(25 / 414 * 100vw);
    font-weight: 600;
    font-family: var(--cardo);
  }
  .p-top-archive__item-link-text {
    font-size: calc(14 / 414 * 100vw);
    text-decoration: underline;
    margin-top: calc(6 / 414 * 100vw);
    position: relative;
    padding-right: calc(17 / 414 * 100vw);
    -webkit-transform: translateX(calc(0 / 414 * 100vw));
            transform: translateX(calc(0 / 414 * 100vw));
  }
  .p-top-archive__item-link-text:before {
    position: absolute;
    content: "";
    width: calc(10 / 414 * 100vw);
    height: calc(10 / 414 * 100vw);
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/common/icon_angle01.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-top-theme__inner {
    padding: calc(155 / 414 * 100vw) 0 calc(150 / 414 * 100vw);
    margin-left: calc(63 / 414 * 100vw);
  }
  .p-top-theme__head {
    font-size: calc(13 / 414 * 100vw);
    font-weight: 500;
  }
  .p-top-theme__title {
    font-size: calc(53 / 414 * 100vw);
    margin-top: calc(13 / 414 * 100vw);
    font-weight: 500;
  }
  .p-top-theme__title-block {
    display: block;
    line-height: 1.1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.11em;
    color: var(--wht);
    position: relative;
  }
  .p-top-theme__title-block:not(:first-of-type) {
    margin-top: calc(31 / 414 * 100vw);
  }
  .p-top-theme__title-block:before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .p-top-theme__title-block:nth-of-type(1):before {
    background-color: var(--red01);
  }
  .p-top-theme__title-block:nth-of-type(2):before {
    background-color: var(--blue01);
  }
  .p-top-theme__title-block:nth-of-type(3) {
    display: inline-block;
  }
  .p-top-theme__title-block:nth-of-type(3):before {
    background-color: var(--green01);
  }
  .p-top-theme__title-block:nth-of-type(3).is-visible:before {
    width: 85%;
  }
  .p-top-theme__title-block.-no-animation {
    color: var(--black);
    display: inline;
  }
  .p-top-theme__title-block-other {
    position: relative;
    left: -28px;
  }
  .p-top-question {
    margin-top: 0;
    background-color: var(--green02);
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  .p-top-question__inner {
    padding: calc(96 / 414 * 100vw) 0 calc(73 / 414 * 100vw);
    max-width: calc(670 / 414 * 100vw);
  }
  .p-top-question__title {
    font-size: calc(30 / 414 * 100vw);
    color: var(--wht);
    line-height: 1.8;
    letter-spacing: 0.01em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    font-family: var(--a1-gothic-l);
  }
  .p-top-question__title .bold {
    font-weight: bold;
    font-family: var(--a1-gothic-m);
  }
  .p-top-question__textarea {
    margin-top: calc(37 / 414 * 100vw);
  }
  .p-top-question__text {
    font-size: calc(16 / 414 * 100vw);
    margin-top: calc(36 / 414 * 100vw);
    margin-inline: auto;
    line-height: 1.88;
    color: var(--wht);
  }
  .p-top-features__inner {
    padding: calc(102 / 414 * 100vw) 0 0;
  }
  .p-top-features__title-area {
    margin-inline: auto;
    width: calc(360 / 414 * 100vw);
  }
  .p-top-features__area {
    margin-top: calc(53 / 414 * 100vw);
    border-top: 1px solid var(--black);
  }
  .p-top-features__block.-block01 {
    background-color: var(--palePink01);
  }
  .p-top-features__block.-block01 .p-top-features__block-title {
    top: calc(39 / 414 * 100vw);
    left: calc(28 / 414 * 100vw);
  }
  .p-top-features__block.-block02 {
    background-color: var(--paleYellow01);
  }
  .p-top-features__block.-block02 .p-top-features__block-title {
    top: calc(39 / 414 * 100vw);
    left: calc(28 / 414 * 100vw);
  }
  .p-top-features__block.-block03 {
    background-color: var(--paleBlue01);
  }
  .p-top-features__block.-block03 .p-top-features__block-title {
    top: calc(39 / 414 * 100vw);
    left: calc(28 / 414 * 100vw);
  }
  .p-top-features__block:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-top-features__block-img-area {
    position: relative;
    border-bottom: 1px solid var(--black);
  }
  .p-top-features__block-img img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    width: 100%;
    height: calc(400 / 414 * 100vw);
  }
  .p-top-features__block-title {
    position: absolute;
    color: var(--wht);
  }
  .p-top-features__block-title-japanese {
    font-size: 1.4rem;
    display: block;
    padding-left: calc(40 / 414 * 100vw);
    position: relative;
  }
  .p-top-features__block-title-japanese:before {
    position: absolute;
    content: "";
    width: calc(24 / 414 * 100vw);
    height: 1px;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: var(--wht);
  }
  .p-top-features__block-title-english {
    font-size: calc(50 / 414 * 100vw);
    font-weight: bold;
    font-family: var(--cardo);
    display: block;
    margin-top: calc(246 / 414 * 100vw);
    letter-spacing: 0.02em;
    line-height: 1;
  }
  .p-top-features__block-title-summary {
    font-size: calc(14 / 414 * 100vw);
    display: block;
    margin-top: calc(8 / 414 * 100vw);
    letter-spacing: 0.05em;
  }
  .p-top-features__block-title-main-japanese-wrap {
    margin-top: calc(135 / 414 * 100vw);
  }
  .p-top-features__block-title-main-japanese {
    font-family: var(--noto-serif);
    display: block;
  }
  .p-top-features__block-title-main-japanese:not(:first-of-type) {
    margin-top: calc(10 / 414 * 100vw);
  }
  .p-top-features__block-title-main-japanese .small-text {
    font-size: calc(24 / 414 * 100vw);
    display: block;
    letter-spacing: 0.02em;
  }
  .p-top-features__block-title-main-japanese .normal-text {
    font-size: calc(31 / 414 * 100vw);
    display: block;
    margin-top: calc(10 / 414 * 100vw);
  }
  .p-top-features__block-textarea {
    border-bottom: 1px solid var(--black);
  }
  .p-top-features__block-text-wrap {
    width: calc(350 / 414 * 100vw);
    margin-top: 0;
    margin-inline: auto;
    line-height: 1.87;
    letter-spacing: 0.2em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: calc(51 / 414 * 100vw) 0;
  }
  .p-top-features__block-text {
    font-size: calc(16 / 414 * 100vw);
  }
  .p-top-features__block-btn {
    color: var(--black);
    background-color: var(--wht);
    border: 1px solid var(--black);
    border-radius: 100vmax;
    width: calc(276 / 414 * 100vw);
    height: calc(48 / 414 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    font-size: calc(16 / 414 * 100vw);
    text-indent: -1em;
    margin-top: calc(32 / 414 * 100vw);
    position: relative;
    margin-inline: auto;
    padding: 0 calc(30 / 414 * 100vw);
    font-family: var(--a1-gothic-l);
  }
  .p-top-features__block-btn:before {
    position: absolute;
    content: "";
    width: calc(16 / 414 * 100vw);
    height: calc(16 / 414 * 100vw);
    top: 50%;
    right: calc(29 / 414 * 100vw);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url(../img/common/icon_angle01_black.svg);
    background-size: contain;
    background-repeat: no-repeat;
  }
  .p-top-exhibitors {
    overflow: hidden;
  }
  .p-top-exhibitors__inner {
    padding: calc(101 / 414 * 100vw) 0 calc(101 / 414 * 100vw);
    width: 100%;
  }
  .p-top-exhibitors__title-area {
    margin-inline: auto;
    width: calc(100% - 55 / 414 * 100vw);
  }
  .p-top-exhibitors__box {
    margin-top: calc(54 / 414 * 100vw);
  }
  .p-top-exhibitors__guide {
    font-size: calc(12 / 414 * 100vw);
    color: var(--gray01);
    margin-inline: auto;
    width: calc(323 / 414 * 100vw);
    position: relative;
    z-index: 10;
  }
  .p-top-exhibitors__area {
    margin-top: calc(20 / 414 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
    position: relative;
  }
  .p-top-exhibitors__note {
    font-size: calc(12 / 414 * 100vw);
    color: var(--gray01);
    margin-top: calc(23 / 414 * 100vw);
    text-align: right;
    margin-right: calc(44 / 414 * 100vw);
  }
  .p-top-exhibitors__treat01 {
    position: absolute;
    top: calc(-130 / 414 * 100vw);
    right: calc(-207 / 414 * 100vw);
    width: calc(400 / 414 * 100vw);
  }
  .p-top-exhibitors__treat02 {
    position: absolute;
    top: calc(701 / 414 * 100vw);
    left: calc(-743 / 414 * 100vw);
    min-width: calc(855 / 414 * 100vw);
    display: none;
  }
  .p-top-exhibitors__treat03 {
    position: absolute;
    top: calc(500 / 414 * 100vw);
    right: 0;
    width: calc(100 / 414 * 100vw);
    display: none;
  }
  .p-top-exhibitors__treat04 {
    position: absolute;
    top: unset;
    bottom: calc(-193 / 414 * 100vw);
    left: calc(-140 / 414 * 100vw);
    width: calc(440 / 414 * 100vw);
  }
  .p-top-exhibitors .popup {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateY(120%);
            transform: translateY(120%);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--wht);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 9999;
  }
  .p-top-exhibitors .popup__head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: calc(29 / 414 * 100vw);
    left: calc(28 / 414 * 100vw);
    width: calc(11 / 414 * 100vw);
  }
  .p-top-exhibitors .popup__close {
    position: absolute;
    top: calc(24 / 414 * 100vw);
    right: calc(22 / 414 * 100vw);
    font-size: calc(17 / 414 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__close:hover {
    opacity: 0.8;
  }
  .p-top-exhibitors .popup__close .close-icon {
    width: calc(35 / 414 * 100vw);
    height: calc(35 / 414 * 100vw);
    margin-left: calc(19 / 414 * 100vw);
    display: inline-block;
    position: relative;
  }
  .p-top-exhibitors .popup__close .close-icon:before, .p-top-exhibitors .popup__close .close-icon:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    top: 50%;
    left: 50%;
    background-color: var(--black);
  }
  .p-top-exhibitors .popup__close .close-icon:before {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .p-top-exhibitors .popup__close .close-icon:after {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
  .p-top-exhibitors .popup__flex {
    margin-inline: auto;
    padding-bottom: calc(40 / 414 * 100vw);
  }
  .p-top-exhibitors .popup__flex-left-logo {
    text-align: center;
    width: calc(200 / 414 * 100vw);
    margin-inline: auto;
  }
  .p-top-exhibitors .popup__flex-left-thumbnail {
    border: 1px solid var(--black);
    margin-top: calc(40 / 414 * 100vw);
    margin-inline: auto;
    width: calc(285 / 414 * 100vw);
  }
  .p-top-exhibitors .popup__flex-right {
    margin-inline: auto;
    width: calc(290 / 414 * 100vw);
    margin-top: calc(33 / 414 * 100vw);
  }
  .p-top-exhibitors .popup__flex-right-title {
    font-size: calc(32 / 414 * 100vw);
    font-weight: bold;
  }
  .p-top-exhibitors .popup__flex-right-genre {
    font-size: calc(13 / 414 * 100vw);
    margin-top: calc(11 / 414 * 100vw);
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__flex-right-url {
    font-size: calc(13 / 414 * 100vw);
    text-decoration: underline;
    margin-top: calc(1 / 414 * 100vw);
    display: block;
    font-family: var(--a1-gothic-l);
  }
  .p-top-exhibitors .popup__flex-right-text {
    font-size: calc(16 / 414 * 100vw);
    margin-top: calc(40 / 414 * 100vw);
    line-height: 1.9;
  }
  .p-top-exhibitors .popup__inner {
    background: #fff;
    height: 100vh;
    overflow-y: scroll;
    padding-top: 110px;
  }
  .p-top-exhibitors .popup.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-top-exhibitors__block {
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    padding: calc(43 / 414 * 100vw) 0 calc(9 / 414 * 100vw);
    width: 50%;
    cursor: pointer;
    background-color: var(--wht);
    position: relative;
    z-index: 10;
  }
  .p-top-exhibitors__block-thumbnail {
    margin-inline: auto;
    width: calc(190 / 414 * 100vw);
  }
  .p-top-exhibitors__block-thumbnail img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    height: calc(119 / 414 * 100vw);
    width: 100%;
  }
  .p-top-exhibitors__block-title-area {
    margin-top: calc(19 / 414 * 100vw);
    font-size: calc(13 / 414 * 100vw);
    color: var(--black);
    margin-left: calc(14 / 414 * 100vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: calc(15 / 414 * 100vw);
  }
  .p-top-exhibitors__block-title {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    line-height: 1;
  }
  .p-top-exhibitors__block-title:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
  }
  .p-top-exhibitors__block-angle {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    width: calc(18 / 414 * 100vw);
    height: calc(18 / 414 * 100vw);
  }
  .p-top-exhibitors__block:nth-of-type(odd) .p-top-exhibitors__block-title:before {
    background-color: var(--red01);
  }
  .p-top-exhibitors__block:nth-of-type(even) .p-top-exhibitors__block-title:before {
    background-color: var(--blue01);
  }
  .p-top-talk {
    border-top: 1px solid var(--black);
  }
  .p-top-talk__inner {
    padding: calc(102 / 414 * 100vw) 0 calc(103 / 414 * 100vw);
    max-width: calc(770 / 414 * 100vw);
  }
  .p-top-talk__coming-soon {
    font-size: calc(32 / 414 * 100vw);
    font-family: var(--outfit);
    text-align: center;
    margin-top: calc(77 / 414 * 100vw);
    color: var(--red01);
    letter-spacing: 0.02em;
  }
  .p-top-talk__coming-text {
    text-align: center;
    margin-top: calc(19 / 414 * 100vw);
    color: var(--red01);
    font-weight: 500;
  }
  .p-top-talk__comingsoon-treat {
    width: calc(292 / 414 * 100vw);
    margin-inline: auto;
    display: block;
    margin-top: calc(21 / 414 * 100vw);
    position: relative;
    top: calc(1 / 414 * 100vw);
    left: calc(-15 / 414 * 100vw);
  }
  .p-top-workshop {
    border-top: 1px solid var(--black);
  }
  .p-top-workshop__inner {
    padding: calc(102 / 414 * 100vw) 0 calc(55 / 414 * 100vw);
  }
  .p-top-workshop__coming-soon {
    font-size: calc(32 / 414 * 100vw);
    font-family: var(--outfit);
    text-align: center;
    margin-top: calc(77 / 414 * 100vw);
    color: var(--blue01);
    letter-spacing: 0.02em;
  }
  .p-top-workshop__coming-text {
    text-align: center;
    margin-top: calc(19 / 414 * 100vw);
    color: var(--blue01);
    font-weight: 500;
  }
  .p-top-workshop__comingsoon-treat {
    width: calc(282 / 414 * 100vw);
    margin-inline: auto;
    display: block;
    margin-top: calc(21 / 414 * 100vw);
    position: relative;
    top: calc(-25 / 414 * 100vw);
    left: calc(25 / 414 * 100vw);
  }
  .p-top-information {
    border-top: 1px solid var(--black);
  }
  .p-top-information__inner {
    padding: calc(100 / 414 * 100vw) 0 calc(76 / 414 * 100vw);
  }
  .p-top-information__area {
    margin-top: calc(56 / 414 * 100vw);
    margin-inline: auto;
  }
  .p-top-information__lead {
    width: calc(325 / 414 * 100vw);
    margin-inline: auto;
  }
  .p-top-information__flex {
    margin-top: calc(40 / 414 * 100vw);
  }
  .p-top-information__thumbnail {
    border: 1px solid var(--black);
  }
  .p-top-information__right {
    width: calc(285 / 414 * 100vw);
    padding-left: 0;
    margin-top: calc(77 / 414 * 100vw);
    margin-inline: auto;
  }
  .p-top-information__list {
    margin-top: calc(27 / 414 * 100vw);
    margin-inline: auto;
    width: calc(285 / 414 * 100vw);
  }
  .p-top-information__list-item {
    font-size: calc(13 / 414 * 100vw);
    line-height: 1.75;
    font-family: var(--a1-gothic-l);
  }
  .p-top-information__list-item:not(:first-of-type) {
    margin-top: calc(6 / 414 * 100vw);
  }
  .p-top-information__text-block:not(:first-of-type) {
    margin-top: calc(17 / 414 * 100vw);
  }
  .p-top-information__text-block-title {
    font-size: calc(14 / 414 * 100vw);
    font-weight: bold;
    margin-bottom: calc(2 / 414 * 100vw);
  }
  .p-top-information__text-block-title.-red {
    color: var(--red01);
  }
  .p-top-information__text-block-title.-blue {
    color: var(--blue01);
  }
  .p-top-information__text-block-title.-green {
    color: var(--green01);
  }
  .p-top-information__text-block-text {
    font-weight: bold;
    letter-spacing: 0;
  }
  .p-top-information__text-block-text:not(:first-of-type) {
    margin-top: calc(10 / 414 * 100vw);
  }
  .p-top-information__text-block-text .normal-text {
    font-size: calc(24 / 414 * 100vw);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
  .p-top-information__text-block-text .small-text {
    font-size: calc(18 / 414 * 100vw);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
  .p-top-information__text-block-text .time-text {
    font-size: calc(18 / 414 * 100vw);
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.05em;
  }
  .p-top-map {
    position: relative;
    width: 100%;
    padding-top: 141.25%;
    /* 16:9のアスペクト比 */
    height: 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
  }
  .p-top-map iframe {
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .p-top-contact__inner {
    padding: calc(102 / 414 * 100vw) 0 calc(101 / 414 * 100vw);
    max-width: calc(770 / 414 * 100vw);
  }
  .p-top-contact__area {
    margin-top: calc(52 / 414 * 100vw);
    margin-inline: auto;
  }
  .p-top-contact__company {
    font-size: calc(22 / 414 * 100vw);
    font-weight: bold;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.02em;
    font-family: var(--a1-gothic-m);
  }
  .p-top-contact__flex {
    margin-top: calc(26 / 414 * 100vw);
  }
  .p-top-contact__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: calc(16 / 414 * 100vw);
    padding-right: 0;
    font-family: var(--a1-gothic-l);
  }
  .p-top-contact__block:not(:first-of-type) {
    margin-top: calc(10 / 414 * 100vw);
  }
  .p-top-contact__block a {
    text-decoration: underline;
  }
}
/*# sourceMappingURL=style.css.map */