/* =================================================================
		base setting
================================================================= */
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  background: #efece3;
  color: #222;
  font-family: sans-serif;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior-y: none;
}

* {
  box-sizing: border-box;
}

img {
  height: auto;
}

ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  text-align: left;
}
ul li {
  list-style: none;
}

ol {
  counter-reset: item;
  list-style-type: none;
  text-align: left;
}
ol li {
  padding-left: 1.3em;
  position: relative;
}
ol li::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-1em);
}

figure {
  margin: 0;
}

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

th,
td {
  vertical-align: top;
  text-align: left;
}

.dd {
  position: absolute;
  left: 50%;
  top: 120%;
  transform: translateX(-50%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.6;
}

em {
  font-weight: bold;
  font-style: normal;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit;
}
a:hover, a:focus {
  text-decoration: underline;
}

/* =================================================================
		#common
================================================================= */
.wrap {
  overflow: hidden;
}

.pct {
  line-height: 0;
}
.pct img {
  width: 100%;
}

.txtbox {
  font-size: 1.7rem;
  margin-bottom: 48px;
}

.stack {
  padding: 0 30px;
  margin-bottom: 140px;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.term {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .stack {
    padding: 0 20px;
    margin-bottom: 64px;
  }
}
.anim {
  opacity: 0;
  filter: blur(2px);
  transform: translateY(90px);
}

.is-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition: opacity 0.6s 0.1s, transform 0.8s 0.2s, filter 0.6s 0.3s;
}

/* =================================================================
		#display control
================================================================= */
@media print, screen and (min-width: 769px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: inline;
  }
}
/* =================================================================
		#back to top
================================================================= */
.btt-button {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  text-indent: -9999px;
  position: fixed;
  right: -60px;
  bottom: 12px;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.btt-button:before {
  content: "";
  background: url(images/arrow.svg) left top/cover no-repeat;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(278deg) brightness(103%) contrast(102%);
  width: 6px;
  height: 10px;
  transform: rotate(-90deg);
  position: relative;
  top: -3%;
}
.btt-button:hover {
  background-color: #505050;
}
.scrolled .btt-button {
  right: 15px;
  opacity: 1;
}

/* =================================================================
		#hero
================================================================= */
.main-visual {
  padding: 0;
  position: relative;
}

.main-visual__header {
  background-color: #e30613;
  padding: 20px 30px;
}
@media screen and (max-width: 768px) {
  .main-visual__header {
    padding: 15px 20px;
  }
}

.main-visual__catchcopy {
  font-size: 2.7rem;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .main-visual__catchcopy {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}

.main-visual__content {
  max-width: 1440px;
  margin: 0 auto;
  padding-top: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-visual__content {
    padding-top: 20px;
  }
}

.main-visual__title {
  width: 95%;
  max-width: 1260px;
  margin: 0 auto;
  z-index: 0;
  opacity: 0;
  transform: translateY(40px);
  animation: fadein-title 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.main-visual__title img {
  width: 100%;
}

@keyframes fadein-title {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.main-visual__image {
  display: block;
  position: relative;
  z-index: 1;
  width: 30%;
  max-width: 400px;
  margin: -31% auto 0;
  opacity: 0;
  filter: blur(32px);
  animation: fadein-image 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}
@media screen and (max-width: 768px) {
  .main-visual__image {
    width: 50%;
    margin: -24% auto 0;
  }
}

@keyframes fadein-image {
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.main-visual__subtitle {
  right: 20px;
  font-size: 2rem;
  font-weight: bold;
  text-align: right;
  width: 40%;
  max-width: 20em;
  position: absolute;
  color: #79493b;
  line-height: 1.5;
  top: 24px;
}
.main-visual__subtitle span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .main-visual__subtitle {
    width: 100%;
    max-width: none;
    position: static;
    text-align: center;
    margin-top: 24px;
    font-size: 1.6rem;
    text-align: center;
  }
}

.mukogawa-u-logo {
  width: 260px;
}
.mukogawa-u-logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mukogawa-u-logo {
    width: 190px;
  }
}

.main-visual__description {
  color: #99513b;
  padding: 40px 30px;
  text-align: center;
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .main-visual__description {
    padding: 30px 20px;
    font-size: 1.6rem;
    text-align: left;
  }
}

.main-visual__lead {
  font-size: 3.6rem;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .main-visual__lead {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 0.4em;
  }
}

.entry {
  background-color: #e30613;
  color: #fff;
  padding: 80px 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .entry {
    padding: 40px 20px;
    margin-bottom: 60px;
  }
}

.entry__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  .entry__inner {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
}

.entry__support {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (min-width: 1400px) {
  .entry__support {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .entry__support {
    font-size: 2rem;
  }
}

.entry__block-group {
  display: flex;
  justify-content: space-between;
}

.entry__blocks {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .entry__blocks {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}

.entry__block {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .entry__block {
    width: 100%;
  }
}

.entry__block--fee {
  margin-left: 13%;
}
@media screen and (max-width: 768px) {
  .entry__block--fee {
    margin-left: 0;
  }
}

.entry__block-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 768px) {
  .entry__block-title {
    font-size: 1.8rem;
  }
}
.entry__block-title .smaller {
  font-size: 0.7em;
}

.entry__block-list {
  font-size: 1.8rem;
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .entry__block-list {
    font-size: 1.5rem;
  }
}
.entry__block-list li {
  position: relative;
  margin-bottom: 0.3em;
  padding-left: 1.4em;
}
.entry__block-list li::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  box-sizing: border-box;
  transform: translateY(-50%);
}

.entry__block-amount {
  font-size: 4.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .entry__block-amount {
    font-size: 3.2rem;
  }
}

.white-section {
  background-color: #fff;
  border-radius: 40px;
  padding: 48px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 768px) {
  .white-section {
    border-radius: 20px;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}

.group-block {
  margin-bottom: 80px;
}

.section-header {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .section-header {
    margin-bottom: 32px;
  }
}

.section-title {
  font-size: 8.5rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: #ca0013;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 4.6rem;
    line-height: 1.2;
  }
}

.about__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto 32px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    gap: 30px;
  }
}

.about__body {
  font-size: 2.1rem;
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .about__body {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
.about__body p {
  margin-bottom: 1.1em;
}

.about__lead {
  font-size: 1.3em;
  line-height: 1.5;
  font-weight: bold;
}

.about__image {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__image {
    width: 100%;
  }
}
.about__image img {
  width: 88%;
}

.about__features {
  display: flex;
  gap: 5%;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__features {
    flex-direction: column;
    gap: 24px;
  }
}

.about__feature {
  line-height: 1.5;
  position: relative;
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .about__feature {
    padding-left: 40px;
  }
}
.about__feature::before {
  content: "";
  display: inline-block;
  width: 38px;
  aspect-ratio: 1;
  background: url("../img/ico_check.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 1.5em;
  filter: invert(17%) sepia(99%) saturate(7472%) hue-rotate(346deg) brightness(80%) contrast(110%);
}
@media screen and (max-width: 768px) {
  .about__feature::before {
    width: 30px;
    top: 1.2em;
  }
}

.about__feature-title {
  font-size: 3.6rem;
  font-weight: bold;
  color: #ca0013;
  margin-bottom: 0.1em;
}
@media screen and (max-width: 768px) {
  .about__feature-title {
    font-size: 2.4rem;
  }
}

.about__feature-description {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .about__feature-description {
    font-size: 1.6rem;
  }
}

.schedule {
  max-width: 1200px;
  margin: 0 auto;
}

.schedule__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .schedule__list {
    gap: 30px;
  }
  .schedule__list:after {
    content: "";
    position: absolute;
    left: 24px;
    bottom: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 18px solid #fff;
    z-index: 0;
  }
}
.schedule__list:before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  left: 49px;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .schedule__list:before {
    left: 31px;
  }
}

.schedule__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.schedule__icon {
  width: 100px;
  border-radius: 50%;
  aspect-ratio: 1;
  background-color: #fff;
  flex-shrink: 0;
  padding: 20px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .schedule__icon {
    width: 62px;
    padding: 12px;
    align-self: flex-start;
  }
}
.schedule__icon img {
  width: 100%;
}

.schedule__content {
  width: calc(100% - 140px);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .schedule__content {
    width: calc(100% - 80px);
    display: block;
  }
}

.schedule__header {
  width: 260px;
  color: #ca0013;
  margin-top: -14px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .schedule__header {
    width: 100%;
    margin-top: 0;
    margin-bottom: 6px;
  }
}

.schedule__date {
  font-size: 2.7rem;
}
@media screen and (max-width: 768px) {
  .schedule__date {
    font-size: 2rem;
  }
}
.schedule__date .smaller {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .schedule__date .smaller {
    font-size: 1.5rem;
  }
}

.schedule__weekday {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .schedule__weekday {
    font-size: 1.5rem;
  }
}

.schedule__time {
  font-size: 1.9rem;
}
@media screen and (max-width: 768px) {
  .schedule__time {
    font-size: 1.4rem;
  }
}

.schedule__title {
  font-size: 2.7rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .schedule__title {
    font-size: 2rem;
  }
}

.schedule__venue {
  font-size: 1.8rem;
  line-height: 1.8;
  color: #99513b;
}
@media screen and (max-width: 768px) {
  .schedule__venue {
    font-size: 1.5rem;
    margin-left: 0;
  }
}

.schedule__description {
  width: calc(100% - 280px);
  font-size: 1.7rem;
}
@media screen and (max-width: 768px) {
  .schedule__description {
    width: 100%;
    font-size: 1.5rem;
  }
}

.mentors__body {
  margin-bottom: 64px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mentors__body {
    margin-bottom: 40px;
    font-size: 1.7rem;
  }
}

.mentors__list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .mentors__list {
    flex-direction: column;
    gap: 35px;
  }
}

.mentor {
  display: block;
}
@media screen and (max-width: 768px) {
  .mentor {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
}
.mentor .mentor__photo {
  width: 100%;
  line-height: 0;
  margin-bottom: 12px;
}
.mentor .mentor__photo img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .mentor .mentor__photo {
    width: 105px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .mentor .mentor__profile {
    flex: 1 1 0%;
    min-width: 0;
    margin-top: -0.9em;
  }
}
.mentor .mentor__name {
  font-size: 2.1rem;
  font-weight: 700;
  color: #ca0013;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 768px) {
  .mentor .mentor__name {
    font-size: 1.8rem;
  }
}
.mentor .mentor__intro {
  font-size: 1.5rem;
  color: #6d4c4c;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mentor .mentor__intro {
    font-size: 1.4rem;
  }
}

.message {
  font-size: 1.8rem;
  line-height: 2.2;
  max-width: 1000px;
  padding: 56px;
  border: 1px solid #8b8a74;
  margin: 100px auto 0;
}
@media screen and (max-width: 768px) {
  .message {
    font-size: 1.5rem;
    line-height: 1.9;
    padding: 30px 20px;
    margin: 60px -20px 0;
    max-width: none;
    width: calc(100% + 40px);
    border-left: 0;
    border-right: 0;
  }
}
.message p:not([class]) {
  margin-bottom: 1.2em;
}

.message__author {
  line-height: 1.6;
  margin-top: 40px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .message__author {
    margin-top: 30px;
  }
}

.message__company {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .message__company {
    font-size: 1.4rem;
  }
}

.message__name {
  font-size: 2.8rem;
}
@media screen and (max-width: 768px) {
  .message__name {
    font-size: 2rem;
  }
}

.cta-section {
  background-color: #fff;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 999px;
  padding: 56px 98px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta-section {
    flex-direction: column;
    gap: 30px;
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
  }
}

.cta-title {
  font-size: 7rem;
  line-height: 1;
  color: #ca0013;
  font-family: "Poppins", sans-serif;
}
@media screen and (min-width: 1400px) {
  .cta-title {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .cta-title {
    font-size: 4rem;
  }
}

.cta-button-area {
  text-align: center;
}

.cta-button-description {
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1.4em;
}
@media screen and (max-width: 768px) {
  .cta-button-description {
    font-size: 1.5rem;
  }
}

.cta-button-link {
  display: inline-block;
  background-color: #ca0013;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  padding: 28px 90px;
  border-radius: 99px;
  box-shadow: 0 10px 36px 0 rgba(200, 0, 0, 0.28), 0 0 0 6px rgba(255, 255, 255, 0.18);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s, filter 0.2s;
  letter-spacing: 0.12em;
  border: 3px solid #e30613;
  text-align: center;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgba(255, 0, 0, 0.18));
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .cta-button-link {
    font-size: 1.8rem;
    padding: 20px 40px;
    border-radius: 50px;
  }
}
.cta-button-link:hover, .cta-button-link:focus {
  transform: translateY(-4px) scale(1.07) rotate(-1deg);
  box-shadow: 0 18px 48px rgba(200, 0, 0, 0.38), 0 0 0 10px rgba(255, 255, 255, 0.22);
  text-decoration: none;
  outline: none;
  filter: drop-shadow(0 0 32px rgba(255, 0, 0, 0.28));
}

.support-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto 140px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .support-contact-wrapper {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}

.support {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .support {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.support__title {
  color: #ca0013;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .support__title {
    font-size: 1.8rem;
  }
}

.support__logo {
  max-width: 260px;
}
@media screen and (max-width: 768px) {
  .support__logo {
    max-width: 200px;
  }
}
.support__logo img {
  width: 100%;
}

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .contact {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

.contact__title {
  color: #ca0013;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 1.8rem;
  }
}

.contact__info {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .contact__info {
    font-size: 1.4rem;
  }
}

.contact__tel a {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .contact__tel a {
    pointer-events: auto;
    color: #ca0013;
    text-decoration: underline;
  }
}

.site-footer {
  background-color: #e30613;
  padding: 64px 30px;
}
@media screen and (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
}

.copyright {
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
}/*# sourceMappingURL=common.css.map */