@charset "UTF-8";
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  vars.scss
--------------------------------------------------------------*/
/*
    SASS vars
--------------------------------------------------------------*/
/*
    CSS vars
--------------------------------------------------------------*/
:root {
  --color-primary: #228DC2;
  --color-secondary: #F0F0F0;
  --color-third: #b4221b;
  --color-footer: #101820;
  --font-inter: "Inter", sans-serif;
  --font-ls-base: 0.06em;
  --container-width: 1248px;
  --grad-main: linear-gradient(45deg, #C94D97 0%, #7F0073 100%);
  --color-footer-bg: #e9f4f4;
  --color-footer-accent: #3aaab8;
}

/*  reset.scss
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
main,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strong,
sub,
sup,
tt,
var,
b,
u,
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;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 100%;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  border-style: none;
}

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

caption,
th {
  text-align: left;
}

th {
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  vertical-align: middle;
}

button,
select {
  text-transform: none;
}

button,
input[type=button],
input[type=submit],
input[type=reset] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=text],
input[type=email],
input[type=password],
input[type=tel],
input[type=search],
input[type=url],
input[type=number],
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid #cccccc;
}

[hidden] {
  display: none !important;
}

/*  mixin.scss
--------------------------------------------------------------*/
/*  set.scss
--------------------------------------------------------------*/
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "Yu Gothic", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Lato", sans-serif;
  color: #000;
  text-align: left;
  background-color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  overflow-wrap: break-word;
  position: relative;
}

.transition {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

/**
 # Layout
 */
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  content.scss
--------------------------------------------------------------*/
/*
    Content
--------------------------------------------------------------*/
.l-wrapper {
  position: relative;
  width: 100%;
  padding: 64px 24px 128px;
}

.l-container {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .l-wrapper {
    padding: 4.1025641026vw 6.1538461538vw 8.2051282051vw;
  }
  .l-container {
    max-width: initial;
  }
}
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  footer.scss
--------------------------------------------------------------*/
/*
    Footer
--------------------------------------------------------------*/
.l-footer {
  background-color: #101820;
  padding: 64px 24px;
}
.l-footer__logo-event {
  width: 100px;
  margin: 0 auto 64px;
  display: block;
}
.l-footer__logo-event img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}
.l-footer__list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 0 64px;
}
.l-footer__list > li {
  padding: 0 16px 0 0;
  border-right: 1px solid #FFF;
}
.l-footer__list > li > a {
  color: #FFF;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  display: block;
  position: relative;
}
.l-footer__list > li > a:after {
  content: "";
  height: 1px;
  width: 0;
  background-color: #FFF;
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-footer__list > li > a:hover:after {
  width: 100%;
}
.l-footer__list > li:last-of-type {
  border: none;
}
.l-footer-copyright {
  display: block;
  text-align: center;
  font-family: var(--font-inter);
  color: #FFF;
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 16.4102564103vw 0;
  }
  .l-footer__logo-event {
    width: 28.7179487179vw;
    margin: 0 auto 12.3076923077vw;
  }
  .l-footer__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 0 8.2051282051vw;
  }
  .l-footer__list > li {
    padding: 0 4.1025641026vw 4.1025641026vw;
    border-right: none;
    border-bottom: 1px solid #FFF;
    margin: 0 0 4.1025641026vw;
  }
  .l-footer__list > li > a {
    font-size: 3.0769230769vw;
  }
  .l-footer__list > li:last-of-type {
    border-bottom: 1px solid #FFF;
  }
  .l-footer-copyright {
    font-size: 2.5641025641vw;
  }
}
/*
     Page top
--------------------------------------------------------------*/
.l-gotop {
  margin: 0;
  position: fixed;
  bottom: 2.245%;
  right: 2.245%;
  z-index: 100;
  width: 80px;
  height: 80px;
  background-color: #FFF;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-gotop:hover {
  opacity: 0.45;
}
.l-gotop::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--color-primary);
  border-right: 3px solid var(--color-primary);
  transform: translate(-50%, -30%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .l-gotop {
    bottom: 2.0512820513vw;
    right: 2.0512820513vw;
    width: 14.358974359vw;
    height: 14.358974359vw;
    border: 0.5128205128vw solid var(--color-primary);
  }
  .l-gotop::before {
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    border-top: 0.5128205128vw solid var(--color-primary);
    border-right: 0.5128205128vw solid var(--color-primary);
    transform: translate(-50%, -30%) rotate(-45deg);
  }
}
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  header.scss
--------------------------------------------------------------*/
/*  
    Header
--------------------------------------------------------------*/
.l-header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  padding: 0;
  background-color: var(--color-secondary);
}
.l-header__inner {
  position: relative;
  height: 144px;
}
.l-header__logo {
  position: absolute;
  width: 415px;
  height: 64px;
  left: 24px;
  top: 24px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-header__logo:hover {
  opacity: 0.75;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
.l-header__logo-caption {
  font-weight: 900;
  letter-spacing: 0.24em;
  font-size: 1.1rem;
  display: block;
  text-align: center;
  margin: 16px 0 0;
}
.l-header.js--scrolled-effect {
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
}
.l-header__button-list {
  position: absolute;
  right: 24px;
  top: 0;
  display: flex;
  gap: 16px;
}
.l-header__button-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-cta);
  width: 192px;
  height: 48px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-header__button-list > li > a:hover {
  background-color: var(--color-primary);
}
.l-header__button-list > li > a.button--tel span {
  font-family: var(--font-roboto);
  letter-spacing: normal;
  font-size: 2rem;
}
.l-header__button-list > li > a.button--tel i {
  display: block;
  width: 15px;
  height: 19.56px;
  margin-right: 8px;
  background-image: url(assets/images/common/icon__tel.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.l-header__button-list > li > a.button--contact {
  background-color: var(--color-primary);
}
.l-header__button-list > li > a.button--contact:hover {
  background-color: var(--color-cta);
}
.l-header__button-list > li > a span {
  display: block;
  font-weight: 900;
  color: #FFF;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.l-fixed__banner {
  position: fixed;
  top: 50%;
  transform: translateX(100%) translateY(-50%);
  right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 248px;
  background: var(--color-primary);
  border-radius: 24px 0 0 24px;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0.5s ease;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-fixed__banner:hover {
  background-color: var(--color-cta);
}

.l-fixed__banner.is-show {
  transform: translateX(0) translateY(-50%);
  top: 50%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.l-fixed__banner span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.34em;
}

@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 17.9487179487vw;
  }
  .l-header__logo {
    width: 61.5384615385vw;
    height: 9.2307692308vw;
    left: 6.1538461538vw;
    top: 3.5897435897vw;
  }
  .l-header__logo-caption {
    letter-spacing: 0.12em;
    font-size: 2.0512820513vw;
    margin: 1.0256410256vw 0 0;
    text-align: left;
    font-weight: 400;
  }
  .l-header.js--scrolled-effect {
    background-color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid color-mix(in srgb, var(--color-primary) 35%, transparent);
  }
  .l-header__button-list {
    display: none;
  }
  .l-fixed__banner {
    width: 12.3076923077vw;
    height: 44.1025641026vw;
    border-radius: 4.1025641026vw 0 0 4.1025641026vw;
  }
  .l-fixed__banner span {
    font-size: 3.4615384615vw;
    letter-spacing: 0.14em;
  }
}
/*  Gmenu
--------------------------------------------------------------*/
.l-gmenu__list {
  display: flex;
  align-items: center;
  position: absolute;
  right: 24px;
  top: 88px;
}
.l-gmenu__list > li {
  margin: 0 32px 0 0;
  position: relative;
}
.l-gmenu__list > li:last-child {
  margin: 0;
}
.l-gmenu__list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 16px;
}
.l-gmenu__list > li > a:hover {
  text-decoration: none;
  color: var(--color-primary);
}
.l-gmenu__list > li > a {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-gmenu__list > li > a span {
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--color-cta);
}
.l-gmenu__list > li > a i {
  display: block;
  background-image: url(assets/images/common/icon__arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 13.33px;
  height: 7.62px;
  margin-left: 8px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-gmenu__list > li > a:after {
  content: "";
  background-color: var(--color-cta);
  width: 0;
  height: 2px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-gmenu__list > li > a:hover:after {
  width: 100%;
}
.l-gmenu__list > li > a:hover i {
  transform: rotate(180deg);
}
.l-gmenu__sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 196px;
  background: var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 0 4px 0 rgba(51, 51, 51, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  padding: 16px;
  z-index: 10;
}
.l-gmenu__sub-menu > li {
  list-style: none;
  margin: 0 0 16px;
}
.l-gmenu__sub-menu > li:last-child {
  margin: 0;
}
.l-gmenu__sub-menu > li > a {
  display: block;
  padding: 0 0 8px 0;
  font-size: 1.4rem;
  line-height: 1;
  color: #FFF;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  font-weight: 500;
  background-repeat: no-repeat;
  background-size: 6px 10px;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.l-gmenu__sub-menu > li > a:link {
  text-decoration: none;
}
.l-gmenu__sub-menu > li > a:hover {
  text-decoration: none;
  color: var(--color-secondary);
  opacity: 0.65;
}
.l-gmenu__sub-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.burger--wrap {
  display: none;
}

.navigation {
  display: none;
}

@media screen and (max-width: 1246px) {
  body.scroll-lock {
    overflow: hidden;
    height: 100%;
  }
  .burger-wrap {
    display: block;
  }
  .s--header--secondry {
    display: none;
  }
  .l-gmenu__list {
    display: none;
  }
  .l-header__button-list {
    display: none;
  }
  .burger--wrap {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary);
    top: 40px;
    right: 24px;
    position: absolute;
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
  }
  .burger {
    width: 32px;
    height: 24px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .burger .line {
    width: 24px;
    height: 3px;
    background: #FFF;
    transition: 0.3s;
    right: 0;
    position: absolute;
    border-radius: 3px;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 3px;
    top: 0;
    right: 0;
    background: #FFF;
    transition: 0.6s;
    border-radius: 3px;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 3px;
    bottom: 0;
    right: 0;
    background: #FFF;
    transition: 0.8s;
    border-radius: 3px;
  }
  .navigation.nav-active {
    display: block;
    animation: show 0.25s linear 0s;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navigation {
    display: none;
    opacity: 0;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.65);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
  }
  .navigation .navigation-content {
    background: var(--color-secondary);
    margin: 0 auto;
    top: 0;
    height: auto;
    position: fixed;
    width: 100%;
    left: inherit;
    right: 0;
    z-index: 1000;
  }
  .navigation .navigation-content__inner {
    padding: 32px;
    height: 100vw;
  }
  .navigation .navigation-content__logo {
    width: 360px;
    margin: 0 auto 32px;
    display: block;
  }
  .navigation .navigation-content__logo img {
    width: 100%;
    vertical-align: bottom;
    height: auto;
  }
  .navigation-content__list > li {
    text-align: center;
  }
  .navigation-content__list > li > a {
    padding: 24px 0;
    display: inline-block;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: 0.24em;
    color: var(--color-cta);
  }
  .navigation-content__button-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 32px 0 0;
  }
  .navigation-content__button-list > li {
    text-align: center;
  }
  .navigation-content__button-list > li > a {
    background-color: var(--color-cta);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 248px;
    height: 56px;
    border-radius: 8px;
  }
  .navigation-content__button-list > li > a span {
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 900;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    height: 3px;
    border-radius: 3px;
    width: 32px;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 32px;
    height: 3px;
    border-radius: 3px;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: 0;
    right: 0;
    opacity: 1;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}
@media screen and (max-width: 768px) {
  .burger--wrap {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
    top: 3.8461538462vw;
    right: 6.1538461538vw;
  }
  .burger {
    width: 5.1282051282vw;
    height: 4.1025641026vw;
  }
  .burger .line {
    width: 4.1025641026vw;
    height: 2px;
    border-radius: 0.5128205128vw;
  }
  .burger::before {
    width: 5.1282051282vw;
    height: 2px;
    border-radius: 0.5128205128vw;
  }
  .burger::after {
    content: "";
    width: 4.1025641026vw;
    height: 2px;
    border-radius: 0.5128205128vw;
  }
  .navigation .navigation-content {
    background: var(--color-secondary);
    margin: 0 auto;
    top: 0;
    height: 100%;
    position: relative;
    width: 100%;
    left: inherit;
    right: 0;
    z-index: 1000;
  }
  .navigation .navigation-content__inner {
    padding: 4.1025641026vw 6.1538461538vw 0;
  }
  .navigation .navigation-content__logo {
    width: 65.641025641vw;
    margin: 0 auto 4.1025641026vw;
  }
  .navigation-content__list > li > a {
    padding: 3.0769230769vw 0;
    font-size: 4.1025641026vw;
  }
  .navigation-content__button-list {
    gap: 4.1025641026vw;
    margin: 6.1538461538vw 0 0;
    flex-direction: column;
    justify-content: center;
  }
  .navigation-content__button-list > li > a {
    display: flex;
    width: 63.5897435897vw;
    height: 14.358974359vw;
    border-radius: 2.0512820513vw;
    margin: 0 auto;
  }
  .navigation-content__button-list > li > a span {
    font-size: 4.1025641026vw;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    height: 2px;
    border-radius: 0.5128205128vw;
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
    width: 100%;
    height: 2px;
    border-radius: 0.5128205128vw;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: 0;
    right: 0;
    opacity: 1;
  }
  .burger-active .line {
    background-color: #FFF;
  }
}
/**
 # Objects -  Compornent -
 */
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  list.scss
--------------------------------------------------------------*/
/*
    List
--------------------------------------------------------------*/
.c-list {
  margin: 0 0 24px;
  padding: 0;
}
.c-list li {
  font-size: 1.4rem;
  color: #000;
  padding: 0 0 16px 1em;
  margin: 0 0 16px;
  line-height: 1.4;
  list-style: none;
  list-style-position: outside;
  position: relative;
}
.c-list li:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0.5em;
}
.c-list li:last-child {
  margin: 0;
  border: none;
  padding: 0 0 0 1em;
}

.c-list__num {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  counter-reset: number;
  padding: 0;
}
.c-list__num li {
  font-size: 1.5rem;
  color: #000;
  padding: 0 0 16px 32px;
  margin: 0 0 16px;
  line-height: 1.3333333333;
  position: relative;
  list-style: none;
  list-style-position: outside;
  border-bottom: 1px solid #C7C7C7;
}
.c-list__num li:before {
  counter-increment: number;
  content: counter(number) "";
  display: block;
  position: absolute;
  font-size: 1.3rem;
  font-weight: 900;
  font-family: var(--font-roboto);
  background-color: var(--color-cta);
  border-radius: 50%;
  text-align: center;
  left: 0;
  top: 0px;
  color: #FFF;
  margin-right: 0.5em;
  width: 24px;
  height: 24px;
  line-height: 2.4rem;
}

@media screen and (max-width: 768px) {
  .c-list {
    margin: 0 0 6.1538461538vw;
    padding: 0;
  }
  .c-list li {
    font-size: 3.5897435897vw;
    padding: 0 0 4.1025641026vw 1em;
    margin: 0 0 4.1025641026vw;
    line-height: 1.4;
  }
  .c-list li:before {
    content: "";
    width: 1.2820512821vw;
    height: 1.2820512821vw;
  }
}
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  table.scss
--------------------------------------------------------------*/
/*
    Table
--------------------------------------------------------------*/
table {
  margin: 0 0 32px;
  width: 100%;
}
table p {
  margin: 0;
}
table thead th {
  border: 1px solid #E8E8E8;
  padding: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-cta);
  line-height: 1.5;
  background-color: var(--color-primary);
  color: #FFF;
}
table th {
  border: 1px solid #E8E8E8;
  padding: 16px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-cta);
  line-height: 1.5;
  background-color: var(--color-primary);
  color: #FFF;
}
table td {
  color: 333;
  padding: 16px;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
  border: 1px solid #E8E8E8;
  background-color: #FFF;
}

@media screen and (max-width: 768px) {
  table {
    margin: 0 0 8.2051282051vw;
  }
  table thead th {
    padding: 2.0512820513vw;
    font-size: 3.5897435897vw;
  }
  table th {
    padding: 2.0512820513vw;
    font-size: 3.5897435897vw;
  }
  table td {
    padding: 2.0512820513vw;
    font-size: 3.5897435897vw;
  }
}
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*
    _text.scss
---------------------------------------------------------------------------- */
p {
  color: #000;
}
p .t-centered {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .edit-post-layout .editor-styles-wrapper p {
    font-size: 3.5897435897vw;
    line-height: 2;
    margin: 0 0 6.1538461538vw;
  }
  .edit-post-layout .editor-styles-wrapper p.t-centerd {
    text-align: left;
  }
}
/**
 # Objects -  Module -
 */
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*
	btn.scss
---------------------------------------------------------------------------- */
.c-button-list {
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 0;
}
.c-button-list a {
  margin: 0 auto;
}
.c-button-list li {
  margin: 0 16px;
}
.c-button-list li:before {
  display: none;
}
.c-button-list li {
  border: none;
  margin: 0;
  padding: 0;
}
.c-button-list li:last-child {
  margin: 0;
}

.c-button01 {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 568px;
  height: 88px;
  padding: 0 64px;
  border-radius: 8px;
  position: relative;
  background-color: var(--color-primary);
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.c-button01 span {
  display: block;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.125em;
  position: relative;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  color: #FFF;
  text-align: center;
}
.c-button01 i {
  overflow: hidden;
  width: 20px;
  height: 20px;
  right: 24px;
  position: absolute;
  transform: rotate(90deg);
}
.c-button01 i:before, .c-button01 i:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  inset: 0;
  background-image: url(../images/common/arrow__01.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center;
  border: 1px solid var(--color-cta);
  box-sizing: border-box;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.c-button01 i:before {
  transform: translateX(0);
}
.c-button01 i:after {
  transform: translateX(-100%);
  background-image: url(../images/common/arrow__01.svg);
}
.c-button01:hover {
  text-decoration: none;
  filter: drop-shadow(0px 2px 5px #228DC2);
}
.c-button01:hover i:before {
  transform: translateX(120%);
}
.c-button01:hover i:after {
  transform: translateX(0);
}

@media screen and (max-width: 768px) {
  .c-button-list li {
    margin: 0 4.1025641026vw;
  }
  .c-button01 {
    display: flex;
    width: 87.6923076923vw;
    min-height: 22.5641025641vw;
    padding: 0;
    border-radius: 2.0512820513vw;
  }
  .c-button01 span {
    font-size: 5.1282051282vw;
    line-height: 1.4;
  }
  .c-button01 i {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    right: 6.1538461538vw;
  }
  .c-button01 i:before, .c-button01 i:after {
    content: "";
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    background-size: 5.1282051282vw 5.1282051282vw;
  }
}
/**
 # Objects -  project -
 */
/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*  home.scss
--------------------------------------------------------------*/
/*
    Common & Config
--------------------------------------------------------------*/
.stt-lang-select.tr {
  display: none;
  left: 0;
  right: inherit !important;
}

.translation__menu {
  position: relative;
  display: inline-block;
  z-index: 20;
  filter: drop-shadow(0px 3px 5px #666);
  width: 148px;
  border-radius: 0 0 0 32px;
}
.translation__menu__wrap {
  position: absolute;
  top: 0;
  right: 0;
}
.translation__menu:before {
  content: "";
  position: absolute;
  top: 1.35em;
  right: 1.5em;
  width: 10px;
  height: 10px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: translate(-50%, -30%) rotate(135deg);
}

.translation__menu li a:hover {
  background: #f0f0f0;
}

.translation__menu li {
  display: none;
  background: #fff;
}

.translation__menu.is-open li {
  display: block;
  border-bottom: 1px solid #DDD;
}
.translation__menu.is-open li:last-child {
  border-radius: 0 0 0 8px;
}

.translation__menu li a {
  display: block;
  padding: 16px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}

.translation__menu li.is-active a {
  background: #FFF;
}

.translation__menu li.is-trigger {
  display: block;
  background: #fff;
}

.translation__menu li.is-trigger a {
  display: block;
  padding: 16px;
  text-decoration: none;
  font-size: 1.2rem;
  color: #000;
}

.h-headline--lebel2 {
  font-size: 4.8rem;
  font-family: var(--font-inter);
  letter-spacing: 0.02em;
  margin: 0 0 32px;
  color: var(--color-primary);
}

.h-headline--lebel3 {
  margin: 0 0 32px;
  color: var(--color-primary);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  position: relative;
}
.h-headline--lebel3 span {
  display: inline-block;
  padding: 0 16px 0 0;
  position: relative;
  z-index: 10;
  background-color: #FFF;
}
.h-headline--lebel3:after {
  content: "";
  background-color: var(--color-primary);
  height: 1px;
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0;
  z-index: 5;
}

.h-headline--lebel4 {
  margin: 0 0 32px;
  text-align: center;
  color: var(--color-primary);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}

.h-caution {
  color: #b4221b;
  display: block;
}
.h-caution.ver01 {
  line-height: 2.5;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

.t-centered {
  text-align: center;
}

.h-caution-list {
  margin: 0 0 32px;
}

.h-caution-list > li {
  color: #666;
  font-size: 1.3rem;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .h-headline--lebel2 {
    font-size: 8.2051282051vw;
    margin: 0 0 8.2051282051vw;
    text-align: center;
  }
  .h-headline--lebel3 {
    margin: 0 0 8.2051282051vw;
    font-size: 5.1282051282vw;
  }
  .h-headline--lebel3 span {
    padding: 0 4.1025641026vw 0 0;
  }
  .h-headline--lebel4 {
    margin: 0 0 8.2051282051vw;
    font-size: 5.1282051282vw;
  }
  .h-caution.ver01 {
    font-size: 4.1025641026vw;
  }
  .t-centered {
    text-align: center;
  }
}
/*
    Hero [.h-hero]
--------------------------------------------------------------*/
.h-hero {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h-hero__main {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.h-hero__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.h-hero__main__photo {
  display: block;
  width: 100%;
  height: 100%;
}
.h-hero__contents {
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.h-hero__logo {
  position: relative;
  margin: 0 auto 48px;
  width: 224px;
}
.h-hero__logo img {
  width: 100%;
  vertical-align: bottom;
}
.h-hero__logo-event {
  position: relative;
  margin: 0 auto 48px;
  width: 340px;
  display: block;
}
.h-hero__logo-event img {
  width: 100%;
  vertical-align: bottom;
}
.h-hero__announce {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  height: 48px;
  background-color: #101820;
  border-radius: 24px;
  color: #FFF;
  font-size: 2.4rem;
  font-family: var(--font-inter);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .h-hero {
    align-items: normal;
  }
  .h-hero__logo {
    position: relative;
    margin: 0 auto 6.1538461538vw;
    width: 61.5384615385vw;
  }
  .h-hero__contents {
    padding: 32.8205128205vw 0 0;
  }
  .h-hero__logo-event {
    margin: 0 auto 6.1538461538vw;
    width: 61.5384615385vw;
  }
  .h-hero__announce {
    max-width: 61.5384615385vw;
    height: 12.3076923077vw;
    border-radius: 6.1538461538vw;
    font-size: 4.1025641026vw;
  }
}
/*
    Information [.h-information]
--------------------------------------------------------------*/
.h-information {
  padding: 96px 0;
  background-color: var(--color-primary);
}
.h-information__inner {
  display: flex;
  justify-content: space-between;
}
.h-information__title {
  flex-shrink: 0;
  width: 37.5%;
}
.h-information__contents {
  width: 62.5%;
}
.h-information__contents__inner {
  width: 75.7777777778%;
}
.h-information__list > li {
  margin: 0 0 24px;
  padding: 0 0 16px;
  border-bottom: 1px solid #5EB3E5;
}
.h-information__list > li:last-child {
  margin: 0;
}
.h-information__list > li {
  display: flex;
  justify-content: space-between;
}
.h-information__list-date {
  color: #FFF;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--font-inter);
  line-height: 1.8;
  width: 17.008797654%;
}
.h-information__list-contents {
  color: #FFF;
  font-weight: 400;
  font-size: 1.4rem;
  font-family: var(--font-inter);
  line-height: 1.8;
  width: 82.4046920821%;
}
.h-information .h-headline--lebel2 {
  color: #FFF;
  margin: 0;
  padding: 0 0 0 64px;
}

@media screen and (max-width: 768px) {
  .h-information {
    padding: 16.4102564103vw 0;
    background-color: var(--color-primary);
  }
  .h-information__inner {
    display: flex;
    flex-direction: column;
    padding: 0 6.1538461538vw;
  }
  .h-information__title {
    width: auto;
  }
  .h-information__contents {
    width: auto;
  }
  .h-information__contents__inner {
    width: auto;
  }
  .h-information__list > li {
    margin: 0 0 4.1025641026vw;
    padding: 0 0 4.1025641026vw;
    flex-direction: column;
  }
  .h-information__list-date {
    font-size: 3.5897435897vw;
    width: auto;
  }
  .h-information__list-contents {
    font-size: 3.5897435897vw;
    width: auto;
  }
  .h-information .h-headline--lebel2 {
    margin: 0 0 8.2051282051%;
    padding: 0;
  }
}
/*
    Message [.h-message]
--------------------------------------------------------------*/
.h-message {
  padding: 96px 24px;
  background-color: var(--color-secondary);
}
.h-message .h-headline--lebel2 {
  text-align: center;
}
.h-message__title {
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 4rem;
  line-height: 1.4;
  margin: 0 0 32px;
}
.h-message__text {
  text-align: center;
  line-height: 2.5;
  font-weight: 400;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .h-message {
    padding: 16.4102564103vw 6.1538461538vw;
  }
  .h-message__title {
    font-size: 8.2051282051vw;
    margin: 0 0 4.1025641026vw;
  }
  .h-message__text {
    text-align: left;
    line-height: 2;
    font-size: 4.1025641026vw;
  }
  .h-message__text br {
    display: none;
  }
}
/*
    Overview [.h-overview]
--------------------------------------------------------------*/
.h-overview {
  padding: 96px 24px;
}
.h-overview .c-button-list {
  margin: 0 0 64px;
}
.h-overview .h-headline--lebel2 {
  padding: 0 0 0 40px;
  margin: 0 0 64px;
}
.h-overview__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.h-overview-list {
  margin: 0 0 64px;
}
.h-overview-list > li {
  font-size: 1.4rem;
  margin: 0 0 16px;
  display: flex;
}
.h-overview-list > li:last-child {
  margin: 0;
}
.h-overview-list > li time {
  display: flex;
  align-items: center;
  position: relative;
}
.h-overview-list > li time:after {
  content: "・・・";
  display: block;
  padding: 0 8px;
}
.h-overview__figure {
  margin: 32px auto 64px;
}
.h-overview__figure img {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}
.h-overview__box {
  margin: 0 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.h-overview__box:last-of-type {
  margin: 0 0 96px;
}
.h-overview__box__content {
  width: 38.671875%;
}
.h-overview__box__title {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #b4221b;
  display: inline-block;
  padding: 0 0 8px;
  margin: 0 0 16px;
  border-bottom: 1px solid #b4221b;
}
.h-overview__box__title-sub {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 16px;
}
.h-overview__box__address {
  font-style: normal;
  line-height: 1.714285714;
}
.h-overview__box__maps {
  width: 58.59375%;
}
.h-overview__box__maps iframe {
  width: 100%;
  height: 208px;
}

@media screen and (max-width: 768px) {
  .h-overview {
    padding: 16.4102564103vw 6.1538461538vw;
  }
  .h-overview .c-button-list {
    margin: 0 0 16.4102564103vw;
  }
  .h-overview .h-headline--lebel2 {
    padding: 0;
    margin: 0 0 8.2051282051vw;
  }
  .h-overview__inner {
    max-width: initial;
  }
  .h-overview-list {
    margin: 0 0 8.2051282051vw;
  }
  .h-overview-list > li {
    font-size: 3.5897435897vw;
    margin: 0 0 4.1025641026vw;
    display: block;
    line-height: 1.6;
  }
  .h-overview-list > li time {
    display: block;
    margin: 0 0 1.0256410256vw;
    font-weight: 700;
  }
  .h-overview-list > li time:after {
    display: none;
  }
  .h-overview__figure {
    margin: 8.2051282051vw auto;
  }
  .h-overview__box {
    margin: 0 0 8.2051282051vw;
    flex-direction: column;
    gap: 4.1025641026vw;
  }
  .h-overview__box:last-of-type {
    margin: 0 0 16.4102564103vw;
  }
  .h-overview__box__content {
    width: auto;
    order: 1;
    margin: 0 0 4.1025641026vw;
  }
  .h-overview__box__title {
    font-size: 3.5897435897vw;
    padding: 0 0 2.0512820513vw;
    margin: 0 0 4.1025641026vw;
  }
  .h-overview__box__title-sub {
    font-size: 3.5897435897vw;
    margin: 0 0 4.1025641026vw;
  }
  .h-overview__box__address {
    font-size: 3.5897435897vw;
  }
  .h-overview__box__address br {
    display: none;
  }
  .h-overview__box__maps {
    width: auto;
    order: 2;
  }
  .h-overview__box__maps iframe {
    width: 100%;
    height: 53.3333333333vw;
  }
}
/*
    Ticket [.h-ticket]
--------------------------------------------------------------*/
.h-ticket {
  background-color: var(--color-secondary);
  padding: 96px 0 0;
  position: relative;
  z-index: 10;
}
.h-ticket .c-button-list {
  padding: 64px 0;
  position: relative;
  z-index: 10;
}
.h-ticket .c-button-list.is-commingsoon::after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
}
.h-ticket .c-button-list.is-commingsoon::before {
  content: "coming soon";
  font-size: 5.6rem;
  font-family: var(--font-inter);
  font-weight: 700;
  color: #FFF;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.h-ticket.is-commingsoon::after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 15;
}
.h-ticket.is-commingsoon::before {
  content: "coming soon";
  font-size: 6.4rem;
  font-family: var(--font-inter);
  font-weight: 700;
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}
.h-ticket .h-headline--lebel2 {
  padding: 0 0 0 40px;
  margin: 0 0 64px;
}
.h-ticket .c-button01 {
  width: 424px;
}
.h-ticket__inner {
  max-width: 624px;
  margin: 0 auto;
}
.h-ticket__list {
  margin: 0 0 24px;
}
.h-ticket__list > li {
  border: 3px solid var(--color-primary);
  background-color: #FFF;
  border-radius: 6px;
  padding: 24px;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
}
.h-ticket__list > li span {
  display: block;
}
.h-ticket__list__title {
  width: 40.9722222222%;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: var(--font-inter);
  color: var(--color-primary);
}
.h-ticket__list__price {
  width: 25.6944444444%;
  font-weight: 700;
  font-size: 2rem;
  font-family: var(--font-inter);
}
.h-ticket__list__meta {
  width: 33.3333333333%;
}
.h-ticket__list__meta em {
  font-style: normal;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  padding: 8px 16px;
  border-radius: 3px;
  color: #FFF;
  background-color: #666;
  display: block;
}

@media screen and (max-width: 768px) {
  .h-ticket {
    padding: 16.4102564103vw 0;
    position: relative;
    z-index: 10;
  }
  .h-ticket .c-button-list {
    padding: 8.2051282051vw 0;
  }
  .h-ticket .c-button-list.is-commingsoon::before {
    font-size: 9.2307692308vw;
    width: 100%;
  }
  .h-ticket.is-commingsoon::before {
    font-size: 8.2051282051vw;
    word-break: break-all;
    width: 100%;
    text-align: center;
  }
  .h-ticket .h-headline--lebel2 {
    padding: 0;
    margin: 0 0 8.2051282051vw;
  }
  .h-ticket .c-button01 {
    width: 87.6923076923vw;
  }
  .h-ticket__inner {
    max-width: initial;
    padding: 6.1538461538vw;
  }
  .h-ticket__list {
    margin: 0 0 6.1538461538vw;
  }
  .h-ticket__list > li {
    border: 0.7692307692vw solid var(--color-primary);
    border-radius: 1.5384615385vw;
    padding: 4.1025641026vw;
    margin: 0 0 4.1025641026vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2.0512820513vw;
  }
  .h-ticket__list__title {
    width: 38.7096774194%;
    font-weight: 700;
    font-size: 1.8rem;
    font-family: var(--font-inter);
    color: var(--color-primary);
  }
  .h-ticket__list__price {
    width: 25.8064516129%;
    font-weight: 700;
    font-size: 2rem;
    font-family: var(--font-inter);
  }
  .h-ticket__list__meta {
    width: 25.8064516129%;
  }
  .h-ticket__list__meta em {
    font-size: 3.0769230769vw;
    padding: 1.0256410256vw 2.0512820513vw;
    border-radius: 0.7692307692vw;
  }
}
/*
    FAQ [.h-faq]
--------------------------------------------------------------*/
.h-faq {
  padding: 96px 24px;
  position: relative;
  background-color: var(--color-secondary);
  z-index: 10;
}
.h-faq__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.h-faq .h-headline--lebel2 {
  text-align: center;
}
.h-faq__box {
  border-radius: 6px;
  background-color: #FFF;
  margin: 0 0 24px;
}
.h-faq__box::last-of-type {
  margin: 0;
}
.h-faq__box__inner {
  padding: 32px;
}
.h-faq__box__title {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  padding: 0 48px 0 0;
}
.h-faq__box__title-q {
  font-family: var(--font-inter);
  font-size: 3.6rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 16px;
}
.h-faq__box__title-a {
  font-family: var(--font-inter);
  font-size: 3.6rem;
  color: #b4221b;
  font-weight: 700;
  margin-right: 16px;
}
.h-faq__box__title i {
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #F5F5F5;
  border-radius: 6px;
}
.h-faq__box__title i::before, .h-faq__box__title i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #707070;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.h-faq__box__title i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.h-faq__box__title.is-active i::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.h-faq__box__content__wrap {
  padding: 24px 48px 0 0;
  display: flex;
}
.h-faq__box__content {
  padding: 4px 0 0;
}
.h-faq__box__content p {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .h-faq {
    padding: 16.4102564103vw 6.1538461538vw;
  }
  .h-faq__inner {
    max-width: initial;
  }
  .h-faq__box {
    border-radius: 1.5384615385vw;
    margin: 0 0 6.1538461538vw;
  }
  .h-faq__box__inner {
    padding: 4.1025641026vw;
  }
  .h-faq__box__title {
    font-size: 3.5897435897vw;
    padding: 0 10.2564102564vw 0 0;
  }
  .h-faq__box__title-q {
    font-family: var(--font-inter);
    font-size: 6.1538461538vw;
    margin-right: 4.1025641026vw;
  }
  .h-faq__box__title-a {
    font-family: var(--font-inter);
    font-size: 6.1538461538vw;
    margin-right: 4.1025641026vw;
  }
  .h-faq__box__title i {
    width: 6.1538461538vw;
    height: 6.1538461538vw;
    border-radius: 1.5384615385vw;
  }
  .h-faq__box__title i::before, .h-faq__box__title i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.5641025641vw;
    height: 0.5128205128vw;
  }
  .h-faq__box__title i::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .h-faq__box__title.is-active i::after {
    transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  }
  .h-faq__box__content__wrap {
    padding: 4.1025641026vw 10.2564102564vw 0 0;
  }
  .h-faq__box__content {
    padding: 0vw 0 0;
  }
  .h-faq__box__content p {
    font-size: 3.5897435897vw;
  }
}
/*
    Award [.h-award]
--------------------------------------------------------------*/
.h-award {
  padding: 96px 24px;
  position: relative;
  z-index: 10;
}
.h-award .h-headline--lebel2 {
  text-align: center;
}
.h-award__inner {
  max-width: 1024px;
  margin: 0 auto;
}
.h-award p {
  font-size: 1.6rem;
  margin: 0 0 32px;
}
.h-award__lead[class] {
  line-height: 1.8;
  text-align: center;
  margin: 0 0 64px;
}
.h-award table {
  margin: 0 0 64px;
}

@media screen and (max-width: 768px) {
  .h-award {
    padding: 16.4102564103vw 6.1538461538vw;
  }
  .h-award__inner {
    max-width: 1024px;
    margin: 0 auto;
  }
  .h-award p {
    font-size: 3.5897435897vw;
    margin: 0 0 8.2051282051vw;
    line-height: 1.6;
  }
  .h-award__lead[class] {
    text-align: left;
    margin: 0 0 8.2051282051vw;
  }
  .h-award table {
    margin: 0 0 8.2051282051vw;
  }
}
/**
 # Objects -  utility -
 */
/*--------------------------------------------------------------
    # _utility.scss
--------------------------------------------------------------*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

/*
Theme Name: c-note
Version: 99.0
Author: c-note
*/
/**
 # Foundation
 */
/*--------------------------------------------------------------
    # _animation.scss
--------------------------------------------------------------*/
/*
    Opening
--------------------------------------------------------------*/
body.loading .h-slider__controll {
  transform: scale(1.35);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 0.5s;
}

body.loaded .h-slider__controll {
  transform: scale(1);
  opacity: 1;
}

body.loading .h-hero__copy {
  filter: blur(10px);
  transform: scale(1.075) translateY(50px);
  opacity: 0;
  transition: 2s cubic-bezier(0, 0.75, 0.25, 1) 1.5s;
}

body.loaded .h-hero__copy {
  filter: blur(0);
  transform: scale(1) translateY(0);
  opacity: 1;
}

body.loading .h-hero__topics {
  filter: blur(10px);
  transform: scale(1.075) translateX(-150px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 2.5s;
}

body.loaded .h-hero__topics {
  filter: blur(0);
  transform: scale(1) translateX(0);
  opacity: 1;
}

body.loading .h-hero .c-schedule {
  filter: blur(10px);
  transform: scale(1.075) translateX(150px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 2.75s;
}

body.loaded .h-hero .c-schedule {
  filter: blur(0);
  transform: scale(1) translateX(0);
  opacity: 1;
}

body.loading .l-header {
  transform: scale(0.975) translateY(-100px);
  opacity: 0;
  transition: 1s cubic-bezier(0, 0.75, 0.25, 1) 2s;
}

body.loaded .l-header {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/*
    Config
--------------------------------------------------------------*/
.ani--clip__text {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}

/*
    Common[mask]
--------------------------------------------------------------*/
.mask-ani-upper-t01,
.mask-ani-upper-t02,
.mask-ani-upper,
.mask-ani-upper.not-yet-visible {
  clip-path: inset(0 0 98% 0);
  opacity: 0;
  transition: clip-path 1.55s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-upper.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-upper-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-upper-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

.mask-ani-left-t01,
.mask-ani-left-t02,
.mask-ani-left,
.mask-ani-left.not-yet-visible {
  clip-path: inset(0 98% 0 0);
  opacity: 0;
  transition: clip-path 2.25s ease, opacity 1s ease;
  transition-delay: 0s;
  will-change: clip-path;
}

.mask-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0;
}

.mask-ani-left-t01.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-ani-left-t02.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 1.5s;
}

@keyframes loopScaleFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.95;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fade-loop-scale img {
  animation: loopScaleFade 6s ease-in-out infinite;
}

/*
    Common[fade]
--------------------------------------------------------------*/
.fade-up-scale,
.fade-up-scale.not-yet-visible {
  opacity: 0;
  transform: scale(0.85);
  transform-origin: left center;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.fade-up-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.fade-up-t01,
.fade-up-t02,
.fade-up-t03,
.fade-up,
.fade-up.not-yet-visible {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-t01.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}

.fade-up-t02.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.75s;
}

.fade-up-t03.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.25s;
}

.text-efect-ls {
  letter-spacing: -0.35em !important;
  transition: all 0.8s ease;
}

.text-efect-ls.is-visible {
  letter-spacing: 0.08em !important;
}

/*
    Common[mask images]
--------------------------------------------------------------*/
.mask-images-ani-left,
.mask-images-ani-left.not-yet-visible {
  clip-path: inset(0 0 0 100%);
  opacity: 1;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0s;
}

.mask-images-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0s;
}

.mask-images-ani-right,
.mask-images-ani-right.not-yet-visible {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0s;
}

.mask-images-ani-right.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0s;
}

.mask-text-ani-right,
.mask-text-ani-right.not-yet-visible {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0s;
}

.mask-text-ani-right.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.mask-text-ani-left,
.mask-text-ani-left.not-yet-visible {
  clip-path: inset(0 0 0 100%);
  opacity: 1;
  transition: clip-path 0.75s cubic-bezier(0.77, 0, 0.175, 1), opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: 0s;
}

.mask-text-ani-left.is-visible {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition-delay: 0.75s;
}

.meta-text-ani,
.meta-text-ani.not-yet-visible {
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.6s ease;
  transition-delay: 0s;
}

.meta-text-ani.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1s;
}

/*
    Common[Backgroud Wipe]
--------------------------------------------------------------*/
.color-slide {
  position: relative;
  overflow: hidden;
}

.color-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  transform: translateX(-100%);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

.color-slide.is-visible::before {
  transform: translateX(100%);
}

/*
    Common[Blur in]
--------------------------------------------------------------*/
.blur-in {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(20px);
  transition: all 1s ease;
}

.blur-in.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
/*# sourceMappingURL=style.css.map */