@charset "UTF-8";
/*========================================
header
========================================*/
.header__title {
  width: 79px;
  height: 28px;
  padding: 20px 0 0 20px;
}
@media screen and (min-width: 768px) {
  .header__title {
    padding: 30px 0 0 30px;
  }
}

.header__logo {
  vertical-align: text-top;
}

/*========================================
section title
========================================*/
.c-section__title.-level2 {
  text-align: center;
}

.c-section__main-title {
  display: block;
  font-family: var(--font-family-english);
  color: var(--color-font-pink);
  font-weight: bold;
  line-height: 1;
}

.c-section__sub-title {
  display: block;
  color: var(--color-white);
  font-weight: bold;
}

.c-section__main-title.-level2 {
  font-size: 36px;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-section__main-title.-level2 {
    font-size: 60px;
  }
}

.c-section__main-title.-level3 {
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .c-section__main-title.-level3 {
    font-size: 48px;
  }
}

.c-section__sub-title.-level2 {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .c-section__sub-title.-level2 {
    font-size: 36px;
  }
}

.c-section__sub-title.-level3 {
  font-size: 14px;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .c-section__sub-title.-level3 {
    font-size: 36px;
  }
}

.c-button {
  display: block;
  width: 90%;
  max-width: 300px;
  height: 66px;
  background: rgb(196, 26, 127);
  background: -webkit-gradient(linear, left top, right top, from(rgb(196, 26, 127)), to(rgb(102, 75, 191)));
  background: linear-gradient(90deg, rgb(196, 26, 127) 0%, rgb(102, 75, 191) 100%);
  border-radius: 50px;
  color: var(--color-white);
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  -webkit-box-shadow: 0 10px var(--color-pink);
          box-shadow: 0 10px var(--color-pink);
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-english: "Montserrat", sans-serif;
}

/*!
global > color
------------------------------
*/
:root {
  --color-black: #000;
  --color-white: #FFF;
  --color-font-pink: #D136D1;
  --color-pink: #DD118E;
  --color-section-bg: #0E002E;
  --color-register-bg: #1A1A1A;
  --color-footer-bg: #141414;
  --color-border: #AAAAAA;
  --color-form: #8B8B8B;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content: 1110px;
  --width-content-l: 1332px;
}

/*!
foundation > base
------------------------------
*/
body {
  line-height: 1.8;
  color: var(--color-font-base);
  font-family: var(--font-family-base);
}

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

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

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*!
layout > container
------------------------------
*/
.l-container-l, .l-container {
  width: 90%;
  margin: 0 auto;
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

.header {
  height: 60px;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .header {
    height: 90px;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*========================
グローバルナビゲーション
========================*/
.header__list {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    letter-spacing: 0.05em;
    padding: 30px 30px 30px 0;
  }
}

.header__item {
  font-family: var(--font-family-english);
  color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .header__item:not(:first-child) {
    padding-left: 30px;
  }
}

@media screen and (min-width: 768px) {
  .header__link:hover {
    color: var(--color-font-pink);
    -webkit-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out;
    opacity: 0.7;
  }
}

/*========================
ハンバーガーボタン装飾
========================*/
.hamburger__button {
  width: 60px;
  height: 60px;
  background-color: var(--color-pink);
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .hamburger__button {
    display: none;
  }
}

.hamburger__line {
  width: 26px;
  border-top: 2px solid var(--color-white);
  border-radius: 2px;
  position: absolute;
  right: 17px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.hamburger__line:nth-child(1) {
  top: 22px;
}
.hamburger__line:nth-child(2) {
  top: 30px;
}
.hamburger__line:nth-child(3) {
  top: 38px;
}
@media screen and (min-width: 768px) {
  .hamburger__line {
    display: none;
  }
}

/*========================
ハンバーガーメニューopen時
========================*/
.open .header__nav {
  width: 53%;
  height: 100%;
  background-color: var(--color-pink);
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.open .header__list {
  display: block;
  position: fixed;
  padding-top: 99px;
  padding-left: 40px;
  z-index: 1000;
}

.open .header__item {
  color: var(--color-white);
}
.open .header__item:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.open .header__item:not(:first-child) {
  padding-top: 30px;
}

.open .hamburger__inner {
  -webkit-transform: rotateY(-360deg);
          transform: rotateY(-360deg);
}

.open .hamburger__line:nth-child(1) {
  top: 20px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-405deg);
          transform: translateY(6px) rotate(-405deg);
}
.open .hamburger__line:nth-child(2) {
  opacity: 0;
}
.open .hamburger__line:nth-child(3) {
  top: 32px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(405deg);
          transform: translateY(-6px) rotate(405deg);
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: 100;
  cursor: pointer;
}

.footer {
  background-color: var(--color-footer-bg);
  width: 100vw;
  height: 159px;
}

.footer__copy {
  display: block;
  color: var(--color-white);
  font-family: var(--font-family-english);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 159px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    font-weight: 16px;
  }
}

.pagetop {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgb(196, 26, 127) 0%, rgb(102, 75, 191) 100%);
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.pagetop::after {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  position: relative;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 80px;
    height: 80px;
    right: 40px;
    bottom: 40px;
  }
  .pagetop::after {
    width: 15px;
    height: 15px;
    border-top: 5px solid var(--color-white);
    border-right: 5px solid var(--color-white);
  }
}

.mainvisual__bg {
  height: 600px;
  background: url(../image/mv-shawn.png), -webkit-gradient(linear, left top, right top, from(rgb(14, 0, 46)), to(rgb(194, 23, 128)));
  background: url(../image/mv-shawn.png), linear-gradient(90deg, rgb(14, 0, 46) 0%, rgb(194, 23, 128) 100%);
  background-position: bottom, center;
  background-size: 260px 371px, contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 500px) {
  .mainvisual__bg {
    background-position: 95% bottom, center;
    background-size: contain;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__bg {
    height: 700px;
  }
}

.mainvisual__body {
  position: relative;
}

.mainvisual__title {
  margin-top: 32px;
  font-family: var(--font-family-english);
}
@media screen and (min-width: 500px) {
  .mainvisual__title {
    margin-top: 96px;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__title {
    margin-top: 63px;
  }
}

.mainvisual__subtitle {
  display: block;
  color: var(--color-font-pink);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .mainvisual__subtitle {
    font-size: 24px;
  }
}

.mainvisual__maintitle {
  display: block;
  margin-top: 10px;
  color: var(--color-white);
  font-weight: bold;
  letter-spacing: 0.016em;
  line-height: 1;
  font-size: 40px;
}
@media screen and (min-width: 768px) {
  .mainvisual__maintitle {
    margin-top: 19px;
    font-size: 100px;
  }
}

.mainvisual__date {
  font-weight: bold;
  color: var(--color-white);
  font-family: var(--font-family-english);
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .mainvisual__date {
    font-size: 36px;
    letter-spacing: 0.07em;
    line-height: 1.15;
  }
}

.mainvisual__logo {
  width: 194px;
  height: 61px;
  position: absolute;
  bottom: -61px;
}
@media screen and (min-width: 768px) {
  .mainvisual__logo {
    width: 323px;
    height: 101px;
    top: 249px;
    left: 355px;
  }
}

.mainvisual__body .c-button {
  position: absolute;
  bottom: -292px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 500px) {
  .mainvisual__body .c-button {
    bottom: -242px;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual__body .c-button {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-top: 32px;
  }
}

.about {
  background-color: var(--color-section-bg);
}

.about__container {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__container {
    margin-top: 60px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 69px;
  }
}

@media screen and (min-width: 768px) {
  .about__treat {
    width: 50%;
  }
}

.about__image {
  width: 100%;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 36%;
     object-position: center 36%;
}
@media screen and (min-width: 768px) {
  .about__image {
    width: 100%;
    height: 100%;
    max-height: 650px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.about__body {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .about__body {
    margin-top: 89px;
    width: 54%;
  }
}

.about__body .c-section__main-title.-level3 {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about__body .c-section__main-title.-level3 {
    margin-top: 20px;
  }
}

.about__text {
  margin-top: 32px;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about__text {
    margin-top: 40px;
    font-size: 18px;
  }
}

.about__list {
  color: var(--color-white);
  font-size: 14px;
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 16px;
}
@media screen and (min-width: 768px) {
  .about__list {
    font-size: 16px;
    margin-top: 25px;
    grid-area: 0 55px;
  }
}

.about-list__title {
  width: 15%;
}

.about-list__item {
  width: 75%;
}

.about.c-button {
  margin: 0 auto;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .about.c-button {
    margin-top: 32px;
  }
}

.speaker {
  background: linear-gradient(135deg, rgb(15, 0, 46) 0%, rgb(50, 12, 101) 50%, rgb(194, 23, 128) 100%);
}

.speaker__list {
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .speaker__list {
    margin-top: 60px;
  }
}

.speaker-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.speaker-list__item:not(:first-child) {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .speaker-list__item:not(:first-child) {
    margin-top: 80px;
  }
}
@media screen and (min-width: 768px) {
  .speaker-list__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 30px;
  }
}
@media screen and (min-width: 1080px) {
  .speaker-list__item {
    gap: 0 60px;
  }
}

@media screen and (min-width: 768px) {
  .speaker-list__item.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.speaker__picture {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .speaker__picture {
    position: relative;
    width: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

@media screen and (min-width: 768px) {
  .speaker__image {
    width: 100%;
    height: 100%;
    max-width: 450px;
    max-height: 460px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (min-width: 768px) {
  .speaker__body {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.speaker__name {
  margin-top: 32px;
  text-align: center;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .speaker__name {
    margin-top: 0;
    text-align: left;
  }
}

.speaker__english-name {
  display: block;
  font-family: var(--font-family-english);
  color: var(--color-font-pink);
  font-size: 32px;
}
@media screen and (min-width: 768px) {
  .speaker__english-name {
    font-size: 42px;
  }
}

.speaker__japanese-name {
  margin-top: 8px;
  display: block;
  color: var(--color-white);
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .speaker__japanese-name {
    font-size: 18px;
  }
}

.speaker__detail {
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-white);
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .speaker__detail {
    margin-top: 40px;
    font-size: 16px;
  }
}

.session {
  background-color: var(--color-section-bg);
}

.session__timetable {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .session__timetable {
    margin-top: 100px;
  }
}

.timetable__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px;
  border-bottom: 1px solid var(--color-font-pink);
}
.timetable__item:nth-child(1) {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .timetable__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0 24px;
    padding: 40px 0;
  }
  .timetable__item:nth-child(1) {
    padding-top: 0;
  }
}
@media screen and (min-width: 1080px) {
  .timetable__item {
    gap: 0 60px;
  }
}

.timetable__time {
  color: var(--color-white);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .timetable__time {
    font-size: 22px;
    padding-left: 30px;
    white-space: nowrap;
  }
}

.timetable__title {
  margin-top: 8px;
  color: var(--color-font-pink);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .timetable__title {
    margin-top: 0;
    font-size: 22px;
  }
}

.timetable__text {
  margin-top: 8px;
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .timetable__text {
    margin-top: 15px;
    font-size: 15px;
  }
}

.register {
  background: url(../image/bg-register.png);
  background-size: 400px;
  background-repeat: repeat;
}

.register__form {
  margin-top: 32px;
  background-color: var(--color-register-bg);
  border: 5px solid var(--color-font-pink);
  border-radius: 20px;
  padding: 32px 24px;
}
@media screen and (min-width: 768px) {
  .register__form {
    margin-top: 60px;
    padding: 90px 160px 80px 160px;
  }
}

.form__item {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-weight: bold;
}
.form__item:not(:first-child) {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .form__item {
    font-size: 16px;
  }
}

.form__input {
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.form__input:not(:first-child) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .form__input {
    font-size: 16px;
  }
}

.form__require {
  color: var(--color-font-pink);
  font-size: 9px;
}
@media screen and (min-width: 768px) {
  .form__require {
    font-size: 11.2px;
  }
}

.form__supplement {
  font-size: 10px;
  padding-left: 5px;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
@media screen and (min-width: 768px) {
  .form__supplement {
    font-size: 12px;
  }
}

label:not(:first-child) {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  label:not(:first-child) {
    padding-left: 35px;
  }
}

input[type=radio] {
  position: relative;
  width: 13px;
  height: 13px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  vertical-align: -2px;
  background-color: var(--color-white);
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-font-pink);
  content: "";
}

.form__input-radio {
  display: inline-block;
  padding-left: 5px;
}

.form__input-name,
.form__input-mail {
  background-color: var(--color-white);
  width: 90%;
  max-width: 300px;
  height: 35px;
  border-radius: 6px;
}

.form__input-tel {
  background-color: var(--color-white);
  width: 200px;
  height: 35px;
  border-radius: 6px;
}

.form__input-question {
  background-color: var(--color-white);
  width: 90%;
  max-width: 600px;
  height: 200px;
  border-radius: 6px;
  color: var(--color-black);
  font-size: 14px;
  padding-left: 8px;
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  .form__input-question {
    font-size: 16px;
  }
}

.form__input-select {
  background-color: var(--color-white);
  width: 90%;
  max-width: 300px;
  height: 35px;
  border-radius: 6px;
  color: var(--color-form);
  padding-left: 8px;
}

.register .c-button {
  margin: 0 auto;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .register .c-button {
    margin-top: 50px;
  }
}

/*!
utility > utility
------------------------------
*/
.u-ptb {
  padding: 66px 0 !important;
}
@media screen and (min-width: 768px) {
  .u-ptb {
    padding: 110px 0 !important;
  }
}/*# sourceMappingURL=style.css.map */