@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

/* =========================================
 * Bodyと基本タイポグラフィ
 * ========================================= */

body {
  margin: 0;
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
 * レイアウトとメディア
 * ========================================= */

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================
 * タイポグラフィリセット
 * ========================================= */

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  overflow-wrap: break-word;
}

/* =========================================
 * リストリセット
 * ========================================= */

ul,
ol {
  padding: 0;
  list-style: none;
}

/* =========================================
 * リンクと水平線（hr）のリセット
 * ========================================= */

a {
  color: inherit;
  text-decoration: inherit;
}

/* =========================================
 * フォーム要素のリセット
 * ========================================= */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* =========================================
 * アクセシビリティとフォーカススタイル
 * ========================================= */

:focus-visible {
  outline: 2px solid var(--focus-color, #3b82f6);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body.active {
  overflow: hidden;
}

a:hover {
  opacity: .8;
}

.container {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 9999;
}

.header.fixed {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.07);
}

.header__inner {
  max-width: 1240px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: auto;
  padding: 0 20px 15px;
}

.header-title-wrap {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  bottom: 10px;
}

.header-title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.header-title span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: block;
}

.header-title span:first-child {
  font-size: 14px;
}

.header-logo {
  max-width: 180px;
  position: relative;
  top: 5px;
}

.header-nav-list {
  display: flex;
}

.header-nav-list li {
  display: flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}

.header-nav-list li::before {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  border-left: 2px dotted;
  position: absolute;
  left: 0;
}

.header-nav-list li:last-child {
  padding: 0 0 0 12px;
}

.header-nav-link {
  display: block;
}

.header-contact {
  width: 160px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #fff;
  background-color: #333399;
  border-radius: 5px;
}

.common__inner {
  max-width: 1240px;
  margin: auto;
  padding: 0 20px;
}

@media screen and (max-width: 1240px) {
  .header-title {
    font-size: 23px;
  }
  .header-title span {
    font-size: 14px;
  }
  .header-title span:first-child {
    font-size: 12px;
  }
  .header-logo {
    max-width: 120px;
  }
  .header-nav-list li {
    padding: 0 12px;
  }
  .header-nav-list li::before {
    height: 28px;
  }
  .header-nav-list li:last-child {
    padding: 0 0 0 10px;
  }
  .header-nav-link {
    font-size: 14px;
  }
  .header-contact {
    width: 120px;
    height: 40px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    position: relative;
  }
  .active .header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.07);
  }
  .header-title-wrap {
    justify-content: space-between;
    width: 100%;
    padding: 0 10px;
    bottom: 0;
  }
  .header-title {
    font-size: 26px;
  }
  .header-title span {
    font-size: 16px;
  }
  .header-title span:first-child {
    font-size: 14px;
  }
  .header-logo {
    max-width: 180px;
  }
  .header-nav {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    height: 80px;
    padding: 0 3.2% 15px;
  }
  .header-title {
    font-size: 18px;
  }
  .header-title span {
    font-size: 11px;
  }
  .header-title span:first-child {
    font-size: 9px;
  }
  .header-logo {
    max-width: 116px;
    top: 0;
  }
  .common__inner {
    padding: 0 4%;
  }
}

.main {
  flex: 1;
}

.top-news {
  padding-bottom: 136px;
  display: none;
}

.top-news__inner {
  display: flex;
  padding: 0 20px;
  gap: 30px;
}

.top-news-title-warp {
  max-width: 400px;
  width: 100%;
  height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background-color: rgba(51,51,153,0.07);
}

.top-news-title {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 8px;
}

.top-news-title span {
  font-size: 16px;
  color: #4d4d4d;
  display: block;
  padding: 0 0 0 4px;
}

.top-news-title + p {
  max-width: 260px;
  font-size: 14px;
  font-feature-settings: "palt";
  line-height: 1.6;
  color: #4d4d4d;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
  padding: 12px 3px;
}

.top-news-list {
  width: 100%;
}

.top-news-list li {
  border-bottom: 1px dashed #666666;
  padding: 15px 0;
}

.top-news-date {
  margin-bottom: 4px;
}

.top-news-text {
  color: #0071bc;
  font-feature-settings: "palt"
}

@media screen and (max-width: 1024px) {
  .top-news__inner {
    padding: 0;
  }
  .top-news-title-warp {
    max-width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .top-news {
    padding-bottom: 60px;
  }
  .top-news__inner {
    display: block
  }
  .top-news-title-warp {
    max-width: none;
    width: calc(100% + 8%);
    height: auto;
    align-items: flex-start;
    margin: 0 -4%;
    padding: 20px 4%;
    border-radius: 0;
  }
  .top-news-title {
    width: 100%;
    font-size: 16px;
    margin-bottom: 6px;
    padding: 0 8px;
  }
  .top-news-title span {
    font-size: 13px;
    padding: 0;
  }
  .top-news-title + p {
    max-width: none;
    width: 100%;
    font-size: 12px;
    padding: 8px;
  }
  .top-news-list {
    padding: 10px 0 0;
  }
  .top-news-list li {
    padding: 12px 7px;
  }
  .top-news-date {
    font-size: 11px;
  }
  .top-news-text {
    font-size: 15px;
  }
}

.purpose {
  background-color: #f6f3ed;
  padding: 80px 0 68px;
}

.purpose__inner {
  background-color: #fff;
  border-radius: 25px;
  padding: 55px 20px;
}

.purpose-title {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.7;
  width: fit-content;
  background: linear-gradient(transparent 60%, #fbf039 60%);
  margin: 0 auto 29px;
  padding: 0 5px;
}

.purpose-title + p {
  font-size: 18px;
  line-height: 2;
  font-feature-settings: "palt";
  text-align: center;
}

@media screen and (max-width: 768px) {
  .purpose {
    padding: 25px 0;
  }
  .purpose__inner {
    border-radius: 15px;
    padding: 35px 17px 40px;
  }
  .purpose-title {
    font-size: 20px;
    margin: 0 auto 20px;
    padding: 0 5px;
  }
  .purpose-title + p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.assignment {
  padding: 150px 0 145px;
}

.sub-headline {
  font-size: 50px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: 60px;
}

.sub-headline span {
  font-size: 26px;
  font-weight: 400;
}

.sub-headline::after {
  content: "";
  display: block;
  width: 150px;
  border-bottom: 4px dotted;
  margin-top: 45px;
}

.assignment-explanation {
  font-size: 17px;
  font-feature-settings: "palt";
  line-height: 2;
}

.assignment-list.col3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 56px 0 16px;
}

.assignment-list.col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 0 45px;
}

.assignment-item {
  background-color: rgba(140,188,181,0.3);
  border-radius: 10px;
  padding: 20px 15px 15px;
  flex: 1;
}

.assignment-item.col2 {
  background-color: rgba(41,171,226,0.3);
  border-radius: 10px;
}

.assignment-item-title {
  max-width: 280px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #7ba4a1;
  border-radius: 22.5px;
  margin: 0 auto 13px;
}

.col2 .assignment-item-title {
  background-color: #009fcc;
}

.assignment-item ul {
  min-height: 235px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  background-color: #fff;
  border-radius: 7px;
  padding: 20px;
  position: relative;
}

.assignment-item ul::before {
  content: "";
  display: block;
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  bottom: 10px;
}

.assignment-item ul li {
  font-size: 18px;
  font-feature-settings: "palt";
  position: relative;
  padding-left: 10px;
}

.assignment-item ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.assignment-item ul li span {
  display: block;
  margin-left: 0.5em;
}

.col3 .assignment-item:nth-of-type(1) ul::before {
  width: 95px;
  aspect-ratio: 1/1;
  background-image: url(../img/kadai_illust_01.png);
}

.col3 .assignment-item:nth-of-type(2) ul::before {
  width: 88px;
  aspect-ratio: 270/442;
  background-image: url(../img/kadai_illust_02.png);
}

.col3 .assignment-item:nth-of-type(3) ul::before {
  width: 105px;
  aspect-ratio: 322/423;
  background-image: url(../img/kadai_illust_03.png);
}

.col2 .assignment-item:nth-of-type(1) ul::before {
  width: 230px;
  aspect-ratio: 705/435;
  background-image: url(../img/kadai_illust_04.png);
}

.col2 .assignment-item:nth-of-type(2) ul {
  padding-top: 52px;
}

.col2 .assignment-item:nth-of-type(2) ul::before {
  width: 190px;
  aspect-ratio: 584/448;
  background-image: url(../img/kadai_illust_05.png);
}

.bottom-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  position: relative;
  margin-bottom: 20px;
}

.bottom-arrow::after {
  content: "";
  display: block;
  width: 140px;
  height: auto;
  aspect-ratio: 500/215;
  background: url(../img/arrow.png) no-repeat;
  background-size: cover;
}

.assignment-summary {
  font-size: 32px;
  line-height: 1.8;
  font-feature-settings: "palt";
  text-align: center;
}

@media screen and (max-width: 1240px) {
  .assignment-item ul li {
    font-size: 15px;
  }
  .col3 .assignment-item:nth-of-type(1) ul::before {
    width: 70px;
  }
  .col3 .assignment-item:nth-of-type(2) ul::before {
    width: 65px;
  }
  .col3 .assignment-item:nth-of-type(3) ul::before {
    width: 78px;
  }
  .col2 .assignment-item:nth-of-type(1) ul::before {
    width: 170px;
  }
  .col2 .assignment-item:nth-of-type(2) ul::before {
    width: 140px;
  }
}

@media screen and (max-width: 1024px) {
  .assignment-item ul::before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .assignment {
    padding: 80px 0 105px;
  }
  .sub-headline {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .sub-headline span {
    font-size: 13px;
  }
  .sub-headline::after {
    width: 100px;
    border-bottom: 2px dotted;
    margin-top: 23px;
  }
  .assignment-explanation {
    font-size: 15px;
  }
  .assignment-list.col3 {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 35px 0 10px;
  }
  .assignment-list.col2 {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 0 0 30px;
  }
  .assignment-item-title {
    max-width: 266px;
    height: 40px;
    font-size: 16px;
    border-radius: 20px;
    margin: 0 auto 17px;
  }
  .assignment-item ul {
    min-height: auto;
    gap: 5px;
    border-radius: 5px;
    padding: 25px 17px;
  }
  .assignment-item ul li br {
    display: none;
  }
  .assignment-item ul li span {
    display: inline;
    margin-left: 0;
  }
  .col2 .assignment-item:nth-of-type(2) ul {
    padding-top: inherit;
  }
  .bottom-arrow {
    font-size: 15px;
  }
  .bottom-arrow::after {
    width: 100px;
  }
  .assignment-summary {
    font-size: 15px;
  }
}

.program {
  background-color: #f6f3ed;
  padding: 104px 0 130px;
  position: relative;
}

.program::before,
.program::after {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/top-obi.png);
  position: absolute;
  left: 0;
  top: 0;
}

.program::after {
  top: auto;
  bottom: 0;
}

.program-list {
  display: flex;
  gap: 24px;
  margin-bottom: 34px;
}

.program-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 18px;
  font-feature-settings: "palt";
  background-color: #fff;
  border-radius: 7px;
  padding: 40px 25px;
}

.program-photo-list {
  display: flex;
  gap: calc(80px / 6);
}

.program-photo-list p {
  font-size: 15px;
  font-feature-settings: "palt";
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 1240px) {
  .program-item {
    font-size: 16px;
  }
}

@media screen and (max-width: 1024px) {
  .program-item {
    font-size: 14px;
  }
  .program-photo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media screen and (max-width: 768px) {
  .program {
    padding: 50px 0 65px;
  }
  .program::before,
  .program::after {
    height: 13px;
  }
  .program-list {
    flex-direction: column;
    gap: 8px;
  }
  .program-item {
    gap: 8px;
    font-size: 15px;
    border-radius: 2px;
    padding: 26px 34px;
  }
  .program-photo-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .program-photo-list p {
    font-size: 14px;
  }
}

.flow {
  padding: 170px 0 250px;
}

.flow-sub-title {
  font-size: 28px;
  font-weight: 700;
  background-color: #fbd152;
  border-radius: 6px;
  margin-bottom: 34px;
  padding: 9px 42px;
}

.package-text {
  font-size: 22px;
  font-feature-settings: "palt";
  line-height: 2.5;
  padding: 0 40px;
}

.package-text span {
  display: inline-block;
  margin-right: 1em;
}

.package-schedule-wrap {
  margin-top: 44px;
}

.package-schedule {
  width: 100%;
  border: 1px solid #999999;
  border-radius: 5px;
}

.package-schedule th {
  font-size: 22px;
  font-weight: 400;
  background-color: #f1f1f8;
  padding: 16px 0;
}

.package-schedule th:nth-child(n + 2) {
  border-left: 1px solid #999999;
}

.package-schedule td {
  font-size: 22px;
  font-feature-settings: "palt";
  vertical-align: top;
  padding: 25px;
}

.package-schedule td:nth-child(n + 2) {
  border-left: 1px solid #999999;
}

.package-schedule td span {
  width: 100px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  background-color: #39b54a;
  border-radius: 4px;
}

.package-schedule td p + p {
  margin-top: 14px;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 100px 0 114px;
  }
  .flow-sub-title {
    font-size: 15px;
    border-radius: 3px;
    margin-bottom: 29px;
    padding: 10px 16px;
  }
  .package-text {
    font-size: 15px;
    line-height: 2.2;
    padding: 0 18px;
  }
  .package-text span {
    display: block;
    margin-right: 0;
  }
  .package-text br {
    display: none;
  }
  .package-schedule-wrap {
    margin-top: 39px;
    overflow-x: auto;
  }
  .package-schedule {
    width: max-content;
    border-radius: 3px;
  }
  .package-schedule th {
    min-width: 255px;
    font-size: 15px;
    padding: 12px 0;
  }
  .package-schedule th:nth-of-type(2) {
    min-width: 340px;
  }
  .package-schedule td {
    font-size: 15px;
    padding: 17px;
  }
  .package-schedule td span {
    width: 71px;
    height: 21px;
    font-size: 12px;
    border-radius: 3px;
  }
  .package-schedule td p + p {
    margin-top: 10px;
  }
}

.footer {
  background-color: #d8edf1;
  font-feature-settings: "palt";
}

.footer__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
  padding: 75px 0 20px 0;
}

.footer-logo {
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 14px;
}

.footer-logo img {
  max-width: 230px;
}

.footer address {
  font-size: 15px;
  font-style: normal;
  text-align: center;
  margin-bottom: 85px;
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  font-size: 30px;
  font-weight: 500;
  position: relative;
  margin: 10px 13px 0 0;
  padding-left: 37px;
}

.footer-tel::before {
  content: "";
  display: block;
  width: auto;
  height: 35px;
  aspect-ratio: 105/140;
  background: url(../img/phon.png) no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
}

.footer-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-nav-list li {
  display: flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}

.footer-nav-list li::before {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  border-left: 2px dotted;
  position: absolute;
  left: 0;
}

.footer-nav-list li:nth-of-type(4)::after {
  content: "";
  display: block;
  width: 2px;
  height: 30px;
  border-right: 2px dotted;
  position: absolute;
  right: 0;
}

.footer-nav-link {
  display: block;
  font-size: 14px;
  font-feature-settings: normal
}

.footer-nav-list li.sp-menu-btn {
  display: none;
}

.copyright {
  font-size: 13px;
  text-align: center;
  background-color: #c5dfde;
  padding: 5px 0;
}

.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.pagetop.show {
  opacity: 1;
  visibility: visible;
}

.sp-nav {
  display: none;
}

@media screen and (max-width: 1024px) {
  .footer-nav {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0089ba;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 10000;
  }
  .footer-nav-list {
    width: 100%;
    display: grid;
    grid-template-columns: 25% 19% 20% 17% 1fr;
  }
  .footer-nav-list li {
    justify-content: center;
    padding: 0;
  }
  .footer-nav-list li::before {
    content: none;
  }
  .footer-nav-list li::after {
    content: "";
    display: block;
    width: 1px;
    height: 33px;
    border-right: 1px solid #fff;
    position: absolute;
    right: 0;
  }
  .footer-nav-list li:nth-of-type(4)::after {
    content: none;
  }
  .footer-nav-link {
    width: 100%;
    height: 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    font-feature-settings: "palt";
    line-height: 1.4;
    text-align: center;
    color: #fff;
  }
  .footer-nav-link span {
    display: block;
  }
  .footer-nav-list li.sp-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 60px;
    height: auto;
    aspect-ratio: 66/60;
    background-color: #fff;
    border-radius: 3px;
    cursor: pointer;
    margin: auto;
  }
  .footer-nav-list li.sp-menu-btn span {
    display: block;
    width: 50%;
    height: 5px;
    background: #0089ba;
    transition: 0.3s;
  }
  .active .footer-nav-list li.sp-menu-btn span:nth-of-type(1) {
    transform: translateY(13px) rotate(45deg);
  }
  .active .footer-nav-list li.sp-menu-btn span:nth-of-type(2) {
    opacity: 0;
  }
  .active .footer-nav-list li.sp-menu-btn span:nth-of-type(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .sp-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 120px 3.2% 0;
    overflow-y: auto;
  }
  .active .sp-nav {
    display: block;
  }
  .sp-nav__inner {
    padding: 39px 40px 0;
    height: 100vh;
  }
  .sp-contact {
    width: 100%;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #0089ba;
    border-radius: 7px;
    margin-bottom: 39px;
  }
  .sp-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 2px dotted;
    padding: 25px 2px;
  }
  .sp-nav-link::after {
    content: "";
    display: block;
    width:0;
    height:0;
    border-style:solid;
    border-width: 6.5px 0 6.5px 10px;
    border-color: transparent transparent transparent #0089ba;
  }
  .sp-nav-list li:first-child .sp-nav-link {
    border-top: 2px dotted;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 76px;
  }
  .footer__inner {
    max-width: none;
    padding: 30px 0;
  }
  .footer-logo {
    font-size: 11px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .footer-logo img {
    max-width: 200px;
  }
  .footer address {
    font-size: 9px;
    margin-bottom: 0;
  }
  p:has(.footer-tel) {
    font-size: 10px;
  }
  .footer-tel {
    font-size: 22px;
    margin: 10px 9px 0 0;
    padding-left: 28px;
  }
  .footer-tel::before {
    width: 19px;
    height: auto;
  }
  .sp-nav {
    padding-top: 80px;
  }
  .copyright {
    font-size: 10px;
    padding: 12px 0;
  }
  .pagetop {
    width: 53px;
    bottom: 76px;
  }
}


.single .header {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.07);
}

.news-content {
  padding: 50px 0 100px;
}

.news-content-title {
  font-size: 26px;
  font-weight: 500;
  border-bottom: 1px dashed #666666;
  padding-bottom: 15px;
}

.news-content-title span {
  display: block;
  font-size: 16px;
  color: #666666;
}

.breadcrumbs {
  margin-bottom: 20px;
  padding: 15px 0;
}

.breadcrumbs-list {
  display: flex;
  font-size: 14px;
  color: #4d4d4d;
}

.breadcrumbs-list li:first-child::after {
  content: "＞";
  display: inline-block;
  margin: 0 1em;
}

.single-news-date {
  font-size: 18px;
  margin-bottom: 5px;
}

.single-news-title {
  font-size: 26px;
  color: #0071bc;
  margin-bottom: 12px;
}

.news-textare p {
  font-size: 16px;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .news-content {
    padding: 30px 0 70px;
  }
  .news-content-title {
    font-size: 23px;
    margin-bottom: 25px;
  }
  .news-content-title span {
    font-size: 13px;
  }
  .breadcrumbs {
    display: none;
  }
  .single-news-date {
    font-size: 13px;
  }
  .single-news-title {
    font-size: 17px;
  }
  .news-textare p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.movie-content {
  padding: 80px 0 280px;
}

.movie-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 100px;
  padding-top: 56px;
}

.movie-list p {
  font-size: 22px;
  text-align: center;
  margin-top: 13px;
}

@media screen and (max-width: 768px) {
  .movie-content {
    padding: 35px 0 80px;
  }
  .movie-list {
    gap: 26px 30px;
    padding-top: 32px;
  }
  .movie-list p {
    font-size: 14px;
    margin-top: 10px;
  }

}