@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #000;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho",
    "MS Mincho", "Meiryo", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "游ゴシック体", "YuGothic", "Helvetica Neue", "Arial", "Meiryo", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: 62.5%;
  margin: 0 !important;
  font-size: min(0.5208333333vw, 10px);
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 400;
  color: var(--black);
}

svg {
  width: 100%;
  height: 100%;
}

body.home {
  background: var(--white);
}

body:not(.home) {
  background: #FFEF33;
}

.header {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 2.4rem 4rem;
  position: relative;
  z-index: 1004;
  background: #FFEF33;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 1rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  width: 73.9rem;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 16rem;
  }
}
.header__navbar {
  gap: 9.2rem;
  width: fit-content;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .header__navbar {
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .header__navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    flex-direction: column;
    gap: 4rem;
  }
  .header__navbar.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.header__menu {
  gap: 4rem;
  align-items: center;
}
.header__menu li a {
  font-size: max(1.7rem, 14px);
  font-weight: 300;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .header__menu li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    gap: 2rem;
  }
}
.header__news {
  flex: 1;
  margin-inline: 6.4rem 8rem;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__news {
    display: none;
  }
}

.header.is-active {
  background: transparent;
}
.header.is-active .header__logo {
  opacity: 0;
  visibility: hidden;
}
.header.is-active .header__news {
  opacity: 0;
  visibility: hidden;
}

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

.home .footer {
  background: #ff6b35;
}
.home .footer__text {
  background: #ff6b35;
  color: #fff;
}
.home .footer__col {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .home .footer__col {
    padding-bottom: 4rem;
  }
}
.home .footer__col-inner {
  display: contents;
}
.home .footer .loop-text {
  padding-top: 0rem;
}

.footer {
  background: #fff;
  color: #fff;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 4rem;
  }
}
.footer .loop-text {
  padding-top: 4rem;
}
.footer__text {
  padding: 4rem 0;
  overflow: hidden;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .footer__text {
    padding: 2rem 0;
  }
}
.footer__text .swiper-slide img {
  width: 100%;
  height: auto;
}
.footer__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 6rem 4rem;
}
@media screen and (max-width: 768px) {
  .footer__col {
    flex-direction: column;
    padding: 4rem 2rem 0;
    gap: 2rem;
  }
}
.footer__col-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__col-inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.footer__company {
  width: 30rem;
}
@media screen and (max-width: 768px) {
  .footer__company {
    width: 15rem;
  }
}
.footer__logo {
  width: 90rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
    max-width: 30rem;
  }
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__meta {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__meta {
    gap: 1.5rem;
    align-items: center;
  }
}
.footer__date {
  width: 35rem;
}
@media screen and (max-width: 768px) {
  .footer__date {
    width: 100%;
    max-width: 20rem;
  }
}
.footer__date img {
  width: 100%;
  height: auto;
}
.footer__text {
  font-size: 1.4rem;
  color: #204C54;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .footer__text {
    font-size: 1.2rem;
  }
}

.c-btn {
  width: 36rem;
  min-width: 12em;
  height: 5.8rem;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ABDFEC;
  color: #3B3B3B;
  border-radius: 6.25em;
  font-size: max(2.4rem, 20px);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: 100%;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}

.c-btn02 {
  display: flex;
  align-items: center;
  width: fit-content;
  font-size: max(3rem, 24px);
  font-weight: 300;
}
.c-btn02::after {
  content: "";
  display: block;
  width: max(2.2rem, 16px);
  height: max(2.2rem, 16px);
  background-image: url(../images/common/arrow-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: max(1rem, 8px);
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    font-size: 2.4rem;
  }
}

.sub-page {
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .sub-page {
    margin-bottom: 10rem;
  }
}

.sectitle {
  font-size: 6.2rem;
  line-height: 1;
  letter-spacing: 0em;
  font-family: var(--mincho);
}
.sectitle span {
  font-size: 4.6rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .sectitle {
    font-size: 3.2rem;
  }
  .sectitle span {
    font-size: 2.4rem;
  }
}

.sub-sectitle__wrapper {
  margin-top: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-sectitle__wrapper {
    margin-top: 10rem;
    gap: 1.5rem;
  }
}

.sub-sectitle {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .sub-sectitle {
    gap: 1rem;
  }
}

.sub-sectitle__text--en {
  font-size: 5.1rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-sectitle__text--en {
    font-size: 3rem;
  }
}

.sub-sectitle__text--ja {
  font-size: 3.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .sub-sectitle__text--ja {
    font-size: 2.4rem;
  }
}

.sub-container {
  margin-top: 7.2rem;
  display: flex;
  flex-direction: column;
  gap: 27rem;
}
@media screen and (max-width: 768px) {
  .sub-container {
    gap: 10rem;
  }
}

.c-rows {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .c-rows {
    gap: 5rem;
  }
}

.c-row {
  display: flex;
  gap: 6rem;
  justify-content: space-between;
  container-type: inline-size;
}
.c-row:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .c-row {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .c-row:nth-child(even) {
    flex-direction: column-reverse;
  }
}
.c-row__txt-wrapper {
  flex: 1;
  margin-top: 8.5rem;
}
@media screen and (max-width: 768px) {
  .c-row__txt-wrapper {
    margin-top: 0;
  }
}
.c-row__title {
  font-family: var(--mincho);
  font-size: 5.2rem;
  line-height: 1.3269230769;
}
@media screen and (max-width: 768px) {
  .c-row__title {
    font-size: 2.2rem;
  }
}
.c-row__sub-title {
  font-size: 3rem;
  line-height: 1.3333333333;
  font-family: var(--mincho);
}
.c-row__txt {
  margin-top: 6rem;
  font-size: max(1.8rem, 13px);
  line-height: 1.7222222222;
}
@media screen and (max-width: 768px) {
  .c-row__txt {
    margin-top: 2rem;
    font-size: max(1.4rem, 11px);
  }
}
.c-row__images {
  width: 97.9rem;
}
@container (max-width: 1000px) {
  .c-row__images {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  .c-row__images {
    width: 80%;
    margin-inline: auto;
  }
}

.c-grid__title-wrapper {
  text-align: center;
}

.c-grid__title {
  font-size: 5.1rem;
  letter-spacing: 0.02em;
  line-height: 1.137254902;
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .c-grid__title {
    font-size: 3rem;
  }
}

.c-grid__title--sub {
  margin-top: 1.4rem;
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  line-height: 1.3428571429;
  font-family: var(--mincho);
}
@media screen and (max-width: 768px) {
  .c-grid__title--sub {
    font-size: 2.4rem;
  }
}

.c-grid-common {
  margin-top: 13rem;
  display: grid;
  max-width: 1600px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .c-grid-common {
    margin-top: 7rem;
    max-width: 600px;
    gap: 3rem;
  }
}

.c-grid-2rows {
  margin-top: 13rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .c-grid-2rows {
    margin-top: 7rem;
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
    max-width: 600px;
  }
}

.c-grid-2row {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .c-grid-2row {
    gap: 2rem;
  }
}

.c-grid__txt {
  font-size: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-grid__txt {
    font-size: 1.6rem;
  }
}

.c-grid-3rows {
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .c-grid-3rows {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
}

.c-grid-3row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (max-width: 768px) {
  .c-grid-3row {
    gap: 1.5rem;
  }
}

.c-grid__3row-title {
  font-size: 2.8rem;
  text-align: center;
  font-family: var(--mincho);
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .c-grid__3row-title {
    font-size: 2.2rem;
  }
}

.c-grid__3row-txt {
  font-size: 1.8rem;
  line-height: 1.7222222222;
}
@media screen and (max-width: 768px) {
  .c-grid__3row-txt {
    font-size: 1.6rem;
  }
}

.c-table table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.c-table table th,
.c-table table td {
  font-size: max(1.8rem, 14px);
  line-height: 1.3333333333;
  font-weight: 500;
  text-align: left;
  padding-block: 1.1111111111em;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-table table th,
  .c-table table td {
    font-size: max(1.4rem, 11px);
    padding-block: 0.7142857143em;
  }
}
.c-table table th {
  width: 5.5555555556em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-table table th {
    width: 5.7142857143em;
  }
}
.c-table table td {
  width: calc(100% - 8.8888888889em);
  padding-left: 3.3333333333em;
}
@media screen and (max-width: 768px) {
  .c-table table td {
    width: calc(100% - 8.5714285714em);
    padding-left: 2.8571428571em;
  }
}

.c-form table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-form table tr + tr {
    display: block;
    padding-top: 1rem;
  }
}
.c-form table th,
.c-form table td {
  font-size: max(2.4rem, 18px);
  line-height: 1.375;
  font-weight: 400;
  text-align: left;
  padding-block: 1.1666666667em;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .c-form table th,
  .c-form table td {
    font-size: max(1.8rem, 14px);
    padding-block: 0.5555555556em;
    display: block;
    width: 100%;
  }
}
.c-form table th {
  width: 9.1666666667em;
}
@media screen and (max-width: 768px) {
  .c-form table th {
    width: 100%;
  }
}
.c-form table td {
  width: calc(100% - 9.1666666667em);
}
@media screen and (max-width: 768px) {
  .c-form table td {
    width: 100%;
  }
}
.c-form table td .wpcf7-form-control-wrap {
  width: 100%;
}
.c-form table td .wpcf7-not-valid {
  border: 1px solid #A9A9A9;
}
.c-form table td input[type=text],
.c-form table td input[type=tel],
.c-form table td input[type=email],
.c-form table td textarea {
  width: 50rem;
  padding: 2rem 2rem;
  border-radius: 6.25em;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border: 1px solid #A8A8A8;
}
.c-form table td input[type=text]::placeholder,
.c-form table td input[type=tel]::placeholder,
.c-form table td input[type=email]::placeholder,
.c-form table td textarea::placeholder {
  color: #A9A9A9;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-form table td input[type=text],
  .c-form table td input[type=tel],
  .c-form table td input[type=email],
  .c-form table td textarea {
    width: 100%;
    font-size: max(1.8rem, 14px);
    line-height: 1.3333333333;
    padding: 1rem 1rem;
    border-radius: 1rem;
  }
}
.c-form table td textarea {
  width: 100%;
  height: 28rem;
  resize: none;
  border-radius: 2.4rem;
}
.c-form table td .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.c-form table td .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}
.c-form table td .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.c-form table td .wpcf7-radio .wpcf7-list-item input[type=radio] {
  appearance: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #A8A8A8;
}
.c-form table td .wpcf7-radio .wpcf7-list-item input[type=radio]:checked::after {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #A8A8A8;
  border-radius: 50%;
}
.c-form table td .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-size: max(2.4rem, 18px);
  line-height: 1.375;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .c-form table td .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
    font-size: max(1.8rem, 14px);
    line-height: 1.3333333333;
  }
}
@media screen and (max-width: 768px) {
  .c-form table td:has(.wpcf7-submit) {
    text-align: center;
  }
}
.c-form table td .wpcf7-submit {
  width: 26rem;
  height: 8rem;
  border-radius: 6.25em;
  font-size: max(2.4rem, 18px);
  line-height: 1.375;
  font-weight: 400;
  letter-spacing: 0.05em;
  background-color: #11B243;
  color: #fff;
  border: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-form table td .wpcf7-submit {
    width: 20rem;
    height: 6rem;
    font-size: max(1.8rem, 14px);
    margin-inline: auto;
  }
}
.c-form table td .wpcf7-spinner {
  display: none;
}

.breadcrumb {
  font-size: max(1.4rem, 12px);
  line-height: 1.7142857143;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #A9A9A9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 1.2rem;
  }
}
.breadcrumb .line {
  width: 3.6rem;
  height: 1px;
  background: #707070;
}
.breadcrumb .home {
  display: flex;
  gap: 0.5rem;
}
.breadcrumb .home::before {
  content: "";
  display: block;
  width: max(1.8rem, 14px);
  height: max(2rem, 16px);
  background: url(../images/common/house-icon.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .breadcrumb .home::before {
    width: 1.4rem;
    height: 1.6rem;
  }
}

.wrapper {
  width: 100%;
  max-width: calc(1760px + 6%);
  padding-inline: 3%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
    padding-inline: 2rem;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mobile {
  display: block !important;
}
@media screen and (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

.desktop {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .desktop {
    display: block !important;
  }
}

.relative {
  position: relative;
}
@media screen and (min-width: 1921px) {
  .relative {
    max-width: 196rem;
    padding-inline: 2rem;
    margin-inline: auto;
  }
}

.bread_crumb {
  padding-block: 1.3rem;
  background-color: #f7f7f7;
}
.bread_crumb ol {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.bread_crumb ol > li {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.bread_crumb ol > li > a {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .bread_crumb {
    padding-block: 0.4rem;
  }
  .bread_crumb ol {
    gap: 0.8rem;
  }
  .bread_crumb ol > li {
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}

.news-bar {
  width: 100%;
  height: 100%;
  display: block;
}
.news-bar a {
  display: flex;
  align-items: center;
  gap: 6.4rem;
  background: #fff;
  border: 0.1rem solid #000;
  padding: 3.2rem 6rem;
  border-radius: 6.25em;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-bar a {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.6rem;
    transform: rotate(-3deg);
  }
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .news-bar a {
    gap: 3rem;
    padding: 2rem 4rem;
  }
}
.news-bar .date {
  font-size: max(2rem, 16px);
  line-height: 1.3;
  font-weight: 500;
  color: #666;
}
@media screen and (max-width: 768px) {
  .news-bar .date {
    font-size: 1.4rem;
  }
}
.news-bar .title {
  font-size: max(2rem, 16px);
  line-height: 1.3;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .news-bar .title {
    font-size: 1.4rem;
    text-align: center;
  }
}

.hamburger {
  display: block;
  width: 9rem;
  height: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 4rem;
    height: 3rem;
  }
}
.hamburger .hamburger__line {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.3s;
  width: 9rem;
  height: 7rem;
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line {
    width: 4rem;
    height: 3rem;
  }
}
.hamburger .hamburger__line span {
  width: 9rem;
  height: 1.4rem;
  display: block;
  position: absolute;
  transition: 0.3s;
  left: 0;
  z-index: 30;
  background: var(--white);
  border-radius: 1.4rem;
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line span {
    width: 4rem;
    height: 0.5rem;
  }
}
.hamburger .hamburger__line span:nth-child(1) {
  top: 0rem;
}
.hamburger .hamburger__line span:nth-child(2) {
  top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .hamburger .hamburger__line span:nth-child(2) {
    top: 1.25rem;
  }
}
.hamburger .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 1;
  animation-delay: 1s;
}
.hamburger.is-active .hamburger__line span {
  background: #000;
}
.hamburger.is-active .hamburger__line span:nth-child(1) {
  top: 2.8rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.is-active .hamburger__line span:nth-child(1) {
    top: 1.25rem;
  }
}
.hamburger.is-active .hamburger__line span:nth-child(2) {
  top: 2.8rem;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .hamburger.is-active .hamburger__line span:nth-child(2) {
    top: 1.25rem;
  }
}
.hamburger.is-active .hamburger__line span:nth-child(3) {
  bottom: 0rem;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .hamburger.is-active .hamburger__line span:nth-child(3) {
    top: 1.25rem;
  }
}

.drawer {
  position: fixed;
  top: 0rem;
  right: 0rem;
  background: #FFEF33;
  padding-block: 40rem 6.4rem;
  padding-inline: 5.6rem 6.4rem;
  width: 40%;
  height: 100vh;
  z-index: 1003;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.drawer.is-active {
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .drawer {
    width: 50%;
    padding: 9.6rem 1.6rem 0;
  }
}

.drawer__inner {
  display: flex;
  transition: transform 0.3s ease;
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .drawer__nav {
    gap: 2rem;
  }
}

.drawer__item {
  font-weight: 700;
  font-size: max(3.2rem, 24px);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .drawer__item {
    font-size: 1.2rem;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.fv {
  height: 160rem;
  background: #FFEF33;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 62rem;
    padding-bottom: 6rem;
  }
}
.fv__decorations {
  display: contents;
}
.fv__decoration {
  position: absolute;
  z-index: 1;
}
.fv__decoration--red {
  width: 18rem;
  top: 13.2rem;
  right: 7.8125%;
  animation: float 3s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .fv__decoration--red {
    width: 8rem;
    top: 23rem;
    right: 50%;
    transform: translateX(50%);
  }
}
.fv__decoration--purple {
  width: 21rem;
  top: 101rem;
  right: 39.583%;
  animation: float 4s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media screen and (max-width: 768px) {
  .fv__decoration--purple {
    width: 9rem;
    top: auto;
    bottom: 5rem;
    right: auto;
    left: 5%;
  }
}
.fv__decoration--yellow {
  width: 17rem;
  top: 121rem;
  right: 10.417%;
  animation: float 3.5s ease-in-out infinite;
  animation-delay: 1s;
}
@media screen and (max-width: 768px) {
  .fv__decoration--yellow {
    width: 7.5rem;
    top: 55rem;
    right: 8%;
  }
}
.fv__head {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 4rem;
}
@media screen and (max-width: 768px) {
  .fv__head {
    padding: 2rem 2rem;
    align-items: center;
  }
}
.fv__head-logo {
  width: 150rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .fv__head-logo {
    width: 100%;
  }
}
.fv__head-news {
  margin-top: -3.5rem;
  width: 82rem;
  height: 8.5rem;
  transform: rotate(-6deg);
}
@media screen and (max-width: 768px) {
  .fv__head-news {
    margin-top: 2rem;
    width: 100%;
    max-width: 35rem;
    height: auto;
  }
}
.fv__links {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 13rem 4rem 0rem;
  max-width: 64rem;
}
@media screen and (max-width: 768px) {
  .fv__links {
    display: none;
  }
}
.fv__links .fv__links-item:nth-child(2) {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .fv__links .fv__links-item:nth-child(2) {
    margin-top: 5rem;
  }
}
.fv__links .fv__links-item:nth-child(5) {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .fv__links .fv__links-item:nth-child(5) {
    margin-top: 5rem;
  }
}
.fv__links-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20.8rem;
  height: 20.8rem;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__links-item {
    width: 10rem;
    height: auto;
    aspect-ratio: 1/1;
  }
}
.fv__links-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .fv__links-item:hover {
    transform: scale(1.05);
  }
}
.fv__links-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.fv__animation {
  position: absolute;
  top: 20rem;
  right: -13rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .fv__animation {
    top: auto;
    bottom: 5rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.fv__animation-img {
  width: 118.2rem;
  border: 9.6rem solid #E2F8FF;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .fv__animation-img {
    width: 25rem;
    border-width: 2.5rem;
  }
}
.fv__animation-img img {
  width: 100%;
  height: auto;
}
.fv__animation-rote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 10s linear infinite;
  width: 148rem;
}
@media screen and (max-width: 768px) {
  .fv__animation-rote {
    width: 32rem;
  }
}
.fv__animation-rote img {
  width: 100%;
  height: auto;
}

.thumbnail__img {
  text-align: center;
}
.thumbnail__img img {
  max-width: 100%;
  height: auto;
}
.thumbnail .loop-text {
  margin-top: -6rem;
}
@media screen and (max-width: 768px) {
  .thumbnail .loop-text {
    margin-top: -1rem;
  }
}

.loop-text {
  overflow: hidden;
}
.loop-text .swiper-wrapper {
  transition-timing-function: linear;
}
.loop-text .swiper-slide img {
  width: 254rem;
  height: auto;
}

.content {
  padding: 8rem 10rem;
  max-width: 192rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .content {
    padding: 4rem 2rem;
  }
}
.content__section {
  display: flex;
  align-items: center;
  margin-bottom: 8rem;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .content__section {
    flex-direction: column;
    margin-bottom: 0rem;
    gap: 0rem;
  }
}
.content__section--enjoy .content__section-image {
  order: 1;
}
.content__section--enjoy .content__section-text {
  order: 2;
}
@media screen and (max-width: 768px) {
  .content__section--enjoy .content__section-image {
    order: 1;
  }
  .content__section--enjoy .content__section-text {
    order: 2;
  }
}
.content__section--program .content__section-text {
  order: 1;
}
.content__section--program .content__section-image {
  order: 2;
}
@media screen and (max-width: 768px) {
  .content__section--program .content__section-image {
    order: 1;
  }
  .content__section--program .content__section-text {
    order: 2;
  }
}
.content__section-image {
  width: 106rem;
}
@media screen and (max-width: 768px) {
  .content__section-image {
    width: 100%;
  }
}
.content__section-image img {
  width: 100%;
  height: auto;
}
.content__section-text {
  flex: 1;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .content__section-text {
    padding: 2rem;
    text-align: center;
  }
}
.content__section-title {
  font-size: 12.2rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .content__section-title {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }
}
.content__section-title--orange {
  color: #FF6C00;
}
.content__section-title--green {
  color: #009F43;
}
.content__section-description {
  font-size: 2.8rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .content__section-description {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}
.content__section-description--orange {
  color: #FF6C00;
}
.content__section-description--green {
  color: #009F43;
}
.content__section-button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  color: #000;
  text-decoration: none;
  border-radius: 6.25em;
  border: 0.1rem solid #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .content__section-button {
    padding: 0.8rem 1.6rem;
    gap: 0.8rem;
  }
}
.content__section-button:hover {
  background: #555;
}
.content__section-button-icon img {
  width: 2.5rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .content__section-button-icon img {
    width: 2rem;
    height: 2rem;
  }
}
.content__section-button-text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .content__section-button-text {
    font-size: 1.6rem;
  }
}

.event {
  padding: 20rem 8rem;
  background: #ff6b35;
  color: #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .event {
    padding: 6rem 2rem;
  }
}
.event__header {
  max-width: 180rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  margin-bottom: 6rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .event__header {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.event__header-title {
  font-size: 14rem;
  font-weight: 200;
  color: #fff;
  margin-bottom: 4rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .event__header-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.event__header-tags {
  max-width: 84rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .event__header-tags {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.event__tag {
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .event__tag {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
  }
}
.event__tag--0 {
  background: #e74c3c;
}
.event__tag--1 {
  background: #ff8c42;
}
.event__tag--2 {
  background: #8e44ad;
}
.event__tag--3 {
  background: #3498db;
}
.event__tag--4 {
  background: #27ae60;
}
.event__tag--5 {
  background: #e74c3c;
}
.event__tag--6 {
  background: #9b59b6;
}
.event__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.event__header-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .event__header-decorations {
    display: none;
  }
}
.event__decoration {
  position: absolute;
  z-index: 100;
}
.event__decoration--purple {
  top: -14rem;
  right: 15rem;
  width: 16rem;
}
.event__decoration--red {
  bottom: 0rem;
  right: 70rem;
  width: 12rem;
}
.event__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 180rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .event__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }
}
.event__card {
  background: #fff;
  border-radius: 2rem;
  padding: 3.6rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 0.4rem solid #000;
}
@media screen and (max-width: 768px) {
  .event__card {
    padding: 1rem;
    border-width: 0.2rem;
  }
}
.event__card:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .event__card:hover {
    transform: translateY(-3px);
  }
}
.event__card-image {
  position: relative;
  width: 100%;
}
.event__card-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  padding-top: 100%;
}
.event__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20rem;
}
@media screen and (max-width: 768px) {
  .event__card-image img {
    border-radius: 2rem;
  }
}
.event__card-content {
  padding: 0 1.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .event__card-content {
    padding: 0;
    margin-top: 2rem;
  }
}
.event__card-title {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .event__card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
}
.event__card-category {
  text-align: right;
}
.event__category-tag {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 4.8rem;
  border-radius: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background: #EDBF61;
}
@media screen and (max-width: 768px) {
  .event__category-tag {
    padding: 0.8rem 1.2rem;
    font-size: 1.6rem;
  }
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(10px, -10px);
  }
}
.archive .event {
  background: #FFEF33;
  padding-top: 4rem;
}
@media screen and (max-width: 768px) {
  .archive .event {
    padding-top: 2rem;
  }
}
.archive .event__header {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.archive .event__header-title {
  font-size: 14rem;
  font-weight: 200;
  color: #000;
  margin-bottom: 4rem;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .archive .event__header-title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}
.archive .event__header-tags {
  max-width: 84rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .archive .event__header-tags {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.archive .event__tag {
  padding: 1rem 2rem;
  border-radius: 2.5rem;
  text-decoration: none;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .archive .event__tag {
    padding: 0.8rem 1.6rem;
    font-size: 1.4rem;
  }
}
.archive .event__tag--0 {
  background: #e74c3c;
}
.archive .event__tag--1 {
  background: #ff8c42;
}
.archive .event__tag--2 {
  background: #8e44ad;
}
.archive .event__tag--3 {
  background: #3498db;
}
.archive .event__tag--4 {
  background: #27ae60;
}
.archive .event__tag--5 {
  background: #e74c3c;
}
.archive .event__tag--6 {
  background: #9b59b6;
}
.archive .event__tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.archive .event__header-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .archive .event__header-decorations {
    display: none;
  }
}
.archive .event__decoration {
  position: absolute;
}
.archive .event__decoration--purple {
  top: -14rem;
  right: 15rem;
  width: 16rem;
}
.archive .event__decoration--red {
  bottom: 0rem;
  right: 70rem;
  width: 12rem;
}
.archive .event__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
  z-index: 2;
  max-width: 180rem;
  margin: 0 auto;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .archive .event__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }
}
.archive .event__card {
  background: #fff;
  border-radius: 2rem;
  padding: 3.6rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 0.4rem solid #000;
}
@media screen and (max-width: 768px) {
  .archive .event__card {
    padding: 1rem;
    border-width: 0.2rem;
  }
}
.archive .event__card:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .archive .event__card:hover {
    transform: translateY(-3px);
  }
}
.archive .event__card-image {
  position: relative;
  width: 100%;
}
.archive .event__card-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 0%;
  padding-top: 100%;
}
.archive .event__card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20rem;
}
@media screen and (max-width: 768px) {
  .archive .event__card-image img {
    border-radius: 2rem;
  }
}
.archive .event__card-content {
  padding: 0 1.4rem;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .archive .event__card-content {
    padding: 0;
    margin-top: 2rem;
  }
}
.archive .event__card-title {
  font-size: 2.4rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .archive .event__card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
}
.archive .event__card-category {
  text-align: right;
}
.archive .event__category-tag {
  display: block;
  width: fit-content;
  margin-inline: auto;
  padding: 1rem 4.8rem;
  border-radius: 2rem;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
  background: #EDBF61;
}
@media screen and (max-width: 768px) {
  .archive .event__category-tag {
    padding: 0.8rem 1.2rem;
    font-size: 1.6rem;
  }
}
.archive .archive-event__header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .archive .archive-event__header_inner {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.archive .archive__head-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .archive .archive__head-text {
    gap: 2rem;
  }
}
.archive .archive__head-text ._title {
  font-size: 10rem;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 768px) {
  .archive .archive__head-text ._title {
    font-size: 4rem;
  }
}
.archive .archive__head-text ._text {
  font-size: 24rem;
  font-weight: 300;
  color: #000;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .archive .archive__head-text ._text {
    font-size: 8rem;
  }
}

.archive .news__list {
  display: flex;
  flex-direction: column;
  border-top: 0.1rem solid #000;
}
.archive .news__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 3.2rem 6rem;
  border-bottom: 0.1rem solid #000;
  text-decoration: none;
  color: #000;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .archive .news__item {
    padding: 0.8rem 1.6rem;
  }
}
.archive .news__item:hover {
  opacity: 0.7;
}
.archive .news__item-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.archive .news__item-title {
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 768px) {
  .archive .news__item-title {
    font-size: 1.8rem;
  }
}
.archive .news__item-date {
  font-size: 1.4rem;
  color: #000;
}

.single {
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .single {
    padding: 4rem 0;
  }
}

.single__inner {
  max-width: 180rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 9rem;
}
@media screen and (max-width: 768px) {
  .single__inner {
    flex-direction: column;
    gap: 3rem;
    padding-inline: 2rem;
  }
}

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

.single__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .single__content {
    width: 100%;
    flex: none;
  }
}

.single__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.single__tag span {
  color: #fff;
  background: #07B100;
  padding: 0.5rem 1rem;
  border-radius: 6.25em;
  font-size: max(1.4rem, 12px);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .single__tag span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .single__tag {
    gap: 0.5rem;
  }
}

.single__title {
  font-size: max(4rem, 32px);
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .single__title {
    font-size: 2.4rem;
  }
}

.single__subtitle {
  font-size: max(2.6rem, 24px);
  font-weight: bold;
  color: #000;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .single__subtitle {
    font-size: 2rem;
  }
}

.single__text {
  border: 2px solid #000;
  background: #fff;
  padding: 4rem;
  border-radius: 2rem;
}
.single__text p {
  font-size: max(1.8rem, 16px);
  color: #000;
  line-height: 2;
  margin-bottom: 2rem;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .single__text p {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .single__text {
    padding: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
