@charset "UTF-8";

/* 全体的な設定 */
html {
    font-size: 10px; /* 1rem = 10px */
    height: 100%;
    visibility: hidden;
  }
  html.wf-active {
    visibility: visible;
  }
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .1rem;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
/* 見出し */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
/* 段落 */
    p {
    margin-bottom: 1rem;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
main {
  overflow: hidden;
}

/* フォント */
.font-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}
.font-c {
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.font-cb {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.font-i {
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: italic;
}
.font-ib {
  font-family: century-gothic, sans-serif;
  font-weight: 700;
  font-style: italic;
}
@media screen and (max-width: 960px) {
body,
input,
select,
textarea {
    font-size: 16px;
    }
}
@media screen and (max-width: 390px) {
body,
input,
select,
textarea {
    font-size: 14px;
    }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
.p-header__title {
  margin-bottom: 0 !important;
  position: relative;
  z-index: 100;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #004B9E;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
.p-header__nav {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
}
.p-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  padding-left: 20px;
}
.p-header__hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
}
.p-header__nav.is-active {
  position: fixed;
  top: 0;
  right: 0;
  opacity: 1;
  background-color: rgb(255, 255, 255, .9);
}
.p-nav__inner {
  display: flex;
  gap: 20px;
}
.p-nav__list {
  display: flex;
  width: auto;
  padding: 30px 0 0 0;
}
.p-nav__item {
  position: relative;
  width: auto;
}
.p-nav__link {
  color: #004B9E;
  font-size: 20px;
  font-weight: bold;
  display: block;
  padding: 20px;
  width: 100%;
  transition: all .5s ease-out;
}
.p-nav__link:hover {
  color: #DC000C;
}
.company-link {
  width: 250px;
  height: 80px;
  background-color: #004B9E;
  border-radius: 0 0 0 20px;
  position: relative;
  overflow: hidden; 
}

.company-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FDEA00;
  transform: translateX(-100%);
  transition: transform 0.3s ease-out;
  z-index: 1; 
}

.company-link:hover::before {
  transform: translateX(0);
}

.company-link a {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 3px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease-in-out;
  color: #fff;
}

.company-link:hover a {
  color: #004B9E;
}
header .nav-en {
  display: none;
}
.p-header__hamburger {
  display: none;
}
.tel-mail-area {
  display: none;
}
@media screen and (max-width: 1200px) {
  .p-nav__inner {
    gap: 10px;
  }
  .p-header__title {
    width: 27%;
  }
  .p-nav__link {
    padding: 20px 16px;
    font-size: 17px;
  }
  .company-link {
    width: 180px;
  }
  .company-link a {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .p-nav__list {
    padding: 10px 0 0 0;
  }
  .company-link {
    height: 70px;
  }
}
@media screen and (max-width: 960px) {
  .p-nav__link {
    font-size: 15px;
    padding: 20px 10px;
  }
  .company-link {
    width: 130px;
  }
  .company-link a {
    font-size: 18px;
}
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    padding: 10px 20px;
  }
  .p-header__title {
    width: 160px;
  }
  .p-header__hamburger {
    display: block;
  }
  .p-nav__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
    flex-direction: column;
    padding: 0 30px;
    align-items: center;
  }
  .p-header__nav {
    position: fixed;
    opacity: 0; 
    height: 100%;
    width: 100%;
    right: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(3px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 80px; 
    padding-bottom: 20px;
  }
  .p-nav-content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      min-height: 100%;
      margin: auto 0; 
  }
  .p-nav__list {
    padding-right: 20px;
    padding-left: 20px;
    display: block;
    width: fit-content;
  }
  .p-nav__link {
    display: inline-block;
    width: fit-content;
    display: flex;
    column-gap: 10px;
    font-size: 17px;
  }
  header .nav-ja {
    width: 6em;
    font-weight: bold;
  }
  header .nav-en {
    display: block;
  }
  header .nav-en::before {
    content: "";            
    display: inline-block;  
    width: 2px;            
    height: 100%;       
    background-color: #004B9E;
    vertical-align: middle; 
    margin-right: 20px;     
  }
  .company-link {
    width: 400px;
    border-radius: 0;
    height: auto;
    padding: 10px;
  }
  .tel-mail-area {
    display: block;
    width: 400px;
    margin: 0 auto;
  }
  header .contact-content01 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 10px;
    padding-left: 0;
  }
  header .contact01 {
    background-color: #FDEA00;
    width: 100%;
    padding: 3px;
  }
  header .contact01 a {
    width: 100%;
    display: flex;
    justify-content: center;
    column-gap: 10px;
  }
  header .contact01 img, header .contact02 img {
    width: 40px;
  }
  header .contact-01-textarea {
    display: flex;
    align-items: center;
  }
  header .contact-01-textarea p {
    color: #004B9E;
    margin-bottom: 0;
    font-size: 24px;
  }
  header .contact02 {
    background-color: #FDEA00;
    padding: 3px;
  }
  header .contact02 a {
    width: 100%;
    justify-content: center;
  }
  header .contact02 h3 {
    color: #004B9E;
  }
}
@media screen and (max-width: 500px) {
  .p-nav__list {
    padding: 0;
    margin-bottom: 10px;
  }
  .p-nav__link {
    padding: 15px 10px;
    font-size: 15px;
  }
  header .company-link,.tel-mail-area {
    width: 300px;
  }
  header .company-link a {
    font-size: 15px;
  }
  header .contact-01-textarea p {
    font-size: 20px;
  }
  header .contact02 h3 {
    font-size: 15px;
  }
}
@media screen and (max-width: 430px) {
  .p-nav__inner {
    padding: 0 20px;
  }
  .p-nav__link {
    padding: 10px;
  }
}
@media screen and (max-width: 390px) {
  .p-nav__inner {
    gap: 0;
  }
  .p-nav__link {
    font-size: 14px;
    column-gap: 3px;
  }
  header .nav-en{
    font-size: 12px; 
  }
  header .nav-en::before {
    margin-right: 10px;
  }
  header .company-link, .tel-mail-area {
    width: 260px;
  }
  header .company-link a {
    font-size: 14px;
  }
    header .contact02 h3 {
    font-size: 14px;
  }
}

/*---------------------*/
/* フッター */
.footer__inner {
  padding-top: 30px;
  background-color: #004B9E;
}
.footer__content {
  display: flex;
}
.footer__content ul {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 40px;
  gap: 50px;
}
.footer__content ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  transition: all .5s ease-out;
}
.footer__content ul li a:hover {
  color: #FDEA00;
}
footer .copy-area {
  text-align: center;
  padding-bottom: 30px;
}
footer small {
  font-size: 10px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  .footer__content ul {
    gap: 30px;
  }
  .footer__content ul li a{
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .footer__content ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
  .footer__content ul li {
    text-align: center;
  }
}
@media screen and (max-width: 540px) {
  .footer__content ul li a {
    font-size: 14px;
  }
  footer small {
    font-size: 8px;
  }
}


/*---------------------*/
/* 全ページ共通 */
.section {
  padding-top: 60px;
  margin-bottom: 60px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
}
.section-title h2 {
  font-size: 16px;
  color: #004B9E;
}
.section-title p {
  font-size: 50px;
  color: #004B9E;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 4px;
}
.section-title p::first-letter {
  color: #DC000C;
}
.page-top {
  padding-top: 102px;
}
.button-area a {
  border: 3px solid #FDEA00;
  border-radius: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 320px;
  padding: 5px 25px;
  color: #FDEA00;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  font-size: 26px;
  position: relative;
  transition: all .3s ease-out;
}
.button-area a:hover {
  transform: translateY(-4px);
}
.button-area a::after {
  content: '';
  width: 13px;
  height: 13px;
  border-top: 3px solid #FDEA00;
  border-right: 3px solid #FDEA00;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 45%;
  right: 30px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 1250px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1200px) {
  .page-top {
    padding-top: 97px;
  }
}
@media screen and (max-width: 1024px) {
  .page-top {
    padding-top: 77px;
  }
  .button-area a {
    font-size: 22px;
  }
}
@media screen and (max-width: 960px) {
  .page-top {
    padding-top: 74px;
  }
  .section-title h2 {
    font-size: 14px;
  }
  .section-title p {
    font-size: 40px;
  }
  .button-area a {
    font-size: 18px;
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 50px;
    margin-bottom: 50px;
  }
  .page-top {
    padding-top: 45px;
  }
}
@media screen and (max-width: 540px) {
  .section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .section-inner {
    padding: 0 20px;
  }
  .section-title p {
    font-size: 32px;
  }
}
@media screen and (max-width: 390px) {
  .button-area a {
    font-size: 16px;
    width: 80%;
  }
}

/*---------------------*/
/* お問い合わせ */
.top-contact {
  position: relative;
}
.top-contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  background-color: #DC000C;
  border-radius: 0 400px 400px 0;
  width: 80vw;
  height: 450px;
  left: 0;
}
.top-contact .section-inner {
  padding-top: 60px;
  height: 450px;
}
.top-contact .section-title h2 {
  color: #E6F6FF;
  text-align: center;
}
.top-contact .section-title {
  display: inline-block;
}
.top-contact .section-title p {
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
  letter-spacing: 4px;
}
.top-contact .section-title p::first-letter {
  color: #004B9E;
}
.contact-content01 {
  display: flex;
  gap: 60px;
  margin-bottom: 30px;
}
.contact01 {
  display: flex;
  gap: 10px;
}
.contact01 img,.contact02 img {
  width: 56px;
}
.contact-01-textarea h3 {
  color: #fff;
  font-size: 18px;
}
.contact-01-textarea p {
  color: #FDEA00;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 0;
}
.contact02 {
  display: flex;
  justify-content: flex-end;
}
.contact02 a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact02 h3 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.contact-content02 {
  display: flex;
  color: #fff;
  gap: 30px;
}
.contact-content02 {
  font-size: 14px;
}
.contact-content02 h4 {
  font-size: 18px;
}
.contact-content02 p {
  font-size: 18px;
}
.contact-content02 p span {
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  .top-contact::before {
    width: 95vw;
  }
}
@media screen and (max-width: 767px) {
  .top-contact::before {
    height: 350px;
  }
  .top-contact .section-inner {
    padding-top: 40px;
    height: 330px;
  }
  .contact-content01 {
    gap: 30px;
  }
  .contact01 img, .contact02 img {
    width: 50px;
  }
  .contact-01-textarea h3,.contact02 h3 {
    font-size: 16px;
  }
  .top-contact .section-title p {
    margin-bottom: 20px;
  }
  .contact-01-textarea p {
    font-size: 28px;
    text-align: left;
  }
}
@media screen and (max-width: 650px) {
  .top-contact::before {
    border-radius: 0 150px 150px 0;
    height: 330px;
  }
  .top-contact .section-inner {
    padding-top: 30px;
    height: 330px;
  }
  .top-contact .contact-content-inner {
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
  }
  .top-contact .section-title {
    margin-right: 50px;
  }
  .top-contact .section-title p {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .contact-content01 {
    display: flex;
    flex-direction: column;
    gap: 0;
    row-gap: 5px;
    margin-bottom: 10px;
    padding-left: 20px;
  }
  .contact01 img, .contact02 img {
    width: 40px;
  }
  .contact-01-textarea p {
    margin-bottom: 0;
    line-height: 1.2;
  }
  .contact02 {
    justify-content: flex-start;
  }
  .contact-content02 {
    flex-direction: column;
    gap: 0;
    padding-left: 20px;
  }
  .contact-content02 li {
    display: flex;
    column-gap: 20px;
    column-gap: 10px;
  }
  .contact-content02 p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  .top-contact::before {
    border-radius: 0 100px 100px 0;
    height: 300px;
    width: 97vw;
  }
  .top-contact .section-inner {
    height: 300px;
    padding: 30px 0 0 30px;
  }
  .contact-01-textarea h3, .contact02 h3 {
    font-size: 15px;
  }
  .top-contact .section-title p {
    font-size: 28px;
  }
  .contact-01-textarea p {
    font-size: 24px;
  }
  .contact01 img, .contact02 img {
    width: 40px;
  }
  .contact-content02 h4 {
    font-size: 14px;
  }
  .contact-content02 p,.contact-content02 p span {
    font-size: 12px;
  }
}
@media screen and (max-width: 390px) {
  .top-contact::before {
    border-radius: 0 70px 70px 0;
  }
  .top-contact .section-inner {
    padding: 30px 20px 0;
    text-align: center;
  }
  .top-contact .section-title {
    margin-right: 20px;
  }
  .contact-01-textarea p {
    font-size: 24px;
  }
  .contact01 img, .contact02 img {
    width: 35px;
  }
  .contact-content02 li {
    text-align: left;
  }
  .contact01,.contact02 a {
    gap: 18px;
  }
  .contact-01-textarea h3 {
   text-align: left; 
  }
}
@media screen and (max-width: 350px) {
  .contact-content01 {
    padding-left: 0;
  }
  .contact-content02 {
    padding-left: 0;
  }
}

/*---------------------*/
/* 店舗情報 */
.top-shop {
  overflow: hidden;
}
.shop-content {
  display: flex;
  position: relative;
  margin-bottom: 80px;
}
.shop-map {
  position: relative;
  z-index: 0;
}
.shop-map iframe {
  border-radius: 50px;
}
.shop-info {
  position: relative;
  z-index: 1;
  bottom: -30px;
  left: -10px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 20px;
}
.shop-img {
  width: 310px;
  height: 224px;
  flex-shrink: 0;
}
.shop-textarea {
  min-width: 360px;
}
.shop-logo {
  margin-bottom: 20px;
  max-width: 308px;
}
.shop-textarea ul li  {
  font-size: 16px;
}
.shop-textarea ul li .br2 {
  display: none;
}
@media screen and (max-width: 1250px) {
  .shop-info {
    gap: 15px;
  }
  .shop-img {
    width: 260px;
    height: auto;
  }
  .shop-textarea {
    min-width: auto;
  }
  .shop-logo {
    max-width: 230px;
    margin-bottom: 5px;
  }
  .shop-textarea ul li {
    font-size: 15px;
  }
  .shop-textarea ul li .br2 {
    display: block;
  }
}
@media screen and (max-width: 1150px) {
  .shop-map iframe {
    width: 100%;
    height: 450px;
    border-radius: 30px;
  }
  .shop-info {
    justify-content: flex-start;
    bottom: initial;
    top: -20px;
    bottom: initial;
    gap: 30px;
    left: 0;
  }
  .shop-content {
    flex-direction: column;
  }
  .shop-logo {
    margin-bottom: 15px;
  }
  .shop-img {
    width: 40%;
  }
  .shop-textarea ul li {
    font-size: 16px;
  }
  .shop-textarea ul li .br2 {
    display: none;
  }
  .shop-textarea ul li .kome-br {
    display: none;
  }
}
@media screen and (max-width: 960px) {
    .shop-info {
      gap: 20px;
    }
    .shop-textarea ul li {
      font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .shop-content {
      row-gap: 20px;
    }
    .shop-img {
      width: 50%;
    }
    .shop-info {
      top: 0;
      align-items: center;
    }
    .shop-textarea ul li .br2 {
      display: block;
    }
    .shop-textarea ul li .kome-br {
      display: block;
    }
    .shop-textarea ul li span {
      font-size: 12px;
    }
}
@media screen and (max-width: 600px) {
  .top-shop {
    margin-bottom: 0;
  }
  .shop-content {
    margin-bottom: 60px;
  }
  .shop-map iframe {
    width: 100%;
    height: 350px;
    border-radius: 20px;
  }
  .shop-img {
    width: 350px;
  }
  .shop-info {
    flex-direction: column-reverse;
  }
  .shop-textarea ul li .br2 {
    display: none;
  }
  .shop-textarea ul li .kome-br {
    display: none;
    }
}
@media screen and (max-width: 540px) {
  .shop-map iframe {
    height: 300px;
  }
}
@media screen and (max-width: 390px) {
    .shop-img {
      width: 100%;
    }
    .shop-info {
      align-items: flex-start;
    }
    .shop-textarea ul li {
      font-size: 13px;
      letter-spacing: .8px;
    }
    .shop-textarea ul li .kome-br {
      display: block;
    }
}


/*---------------------*/
/* NEWS */
/* NEWS共通　パンくず・ページネーション */
.breadcrumb {
    margin-bottom: 40px;
}
.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.breadcrumb li {
    font-size: 14px;
    display: flex;
}
.breadcrumb li:not(:last-child)::after {
    content: ' > ';
    margin: 0 10px;
}
.pagination .page-numbers {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: center;
    gap: 5px; 
}
.pagination .page-numbers li {
    margin: 0;
    padding: 0;
}
.page-numbers a.page-numbers,
.page-numbers .page-numbers.current {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
    box-sizing: border-box;
}
.page-numbers a.page-numbers:hover {
    background-color: #004B9E;
    color: #fff;
}
.page-numbers .page-numbers.current {
    background-color: #004B9E;
    color: #fff;
    font-weight: bold;
}
.page-numbers a.prev.page-numbers,
.page-numbers a.next.page-numbers {
    font-size: 20px;
}
@media screen and (max-width: 960px) {
.page-numbers a.page-numbers,
    .page-numbers .page-numbers.current {
        font-size: 14px;
    }
}
@media screen and (max-width: 600px) {
    .breadcrumb {
        margin-bottom: 30px;
    }
    .page-numbers a.page-numbers,
    .page-numbers .page-numbers.current {
        width: 32px;
        height: 32px;
        line-height: 32px;
    }
}
@media screen and (max-width: 390px) {
    .breadcrumb li {
        font-size: 12px;
    }
    .news-category {
        width: 100px;
    }
}
/* お知らせ 一覧ページ　page-news */
.page-news .news-list {
    border: none;
}
.news .content {
  padding-top: 30px;
}
.news .news-item {
    display: flex;
    column-gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #000;
    padding-bottom: 20px;
}
.news .news-item a {
    width: 100%;
}
.news .news-meta {
  flex-shrink: 0;
}
.news .news-date {
    width: 100%;
}
.news .category {
  padding: 4px 24px;
  border: 1px solid #004B9E;
  color: #004B9E;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}
.news .news-text {
    font-size: 18px;
    font-weight: initial;
}
.news .button-area a {
  color: #004B9E;
  border: 3px solid #004B9E;
  width: 350px;
}
.news .button-area {
  padding: 30px 0;
}
.news .button-area a::after {
    border-top: 3px solid #004B9E;
    border-right: 3px solid #004B9E;
}
@media screen and (max-width: 960px) {
  .news .news-text {
    font-size: 16px;
  }
  .news .button-area a {
    width: 260px;
  }
}
@media screen and (max-width: 767px) {
  .news .news-item {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }
  .news .button-area {
    padding: 10px 0 30px;
  }
}
@media screen and (max-width: 390px) {
  .news .category {
    font-size: 12px;
  }
  .news .news-text {
    font-size: 14px;
  }
}

/* お知らせ 個別ページ　page-single */
.single {
  padding-bottom: 40px;
}
.single .news-item {
  flex-direction: column;
  border-bottom: none;
}
.single .news-meta {
    margin-bottom: 20px;
}
.single .news-date {
    font-size: 18px;
}
.single .news-text {
    font-size: 28px;
    border-bottom: 1px dashed #000;
    padding-bottom: 10px;
    margin-bottom: 30px;
}
.single .content-area {
    width: 100%;
}
.single .content-area p {
    margin-bottom: 20px;
}
.single .content-area img {
  padding: 20px 0;
}
@media screen and (max-width: 540px) {
  .single {
    padding-bottom: 20px;
  }
  .single .news-meta {
    margin-bottom: 0px;
  }
  .single .news-date {
    font-size: 16px;
  }
  .single .news-text {
    font-size: 24px;
    margin-bottom: 20px;
  }
}



/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s, transform 1s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 右からスライドイン */
.slideInRight {
  opacity: 0;
  transform: translateX(70px);
  transition: opacity 1s, transform 1s;
}
.slideInRight.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* 左からスライドイン */
.slideInLeft {
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 1s, transform 1s;
}
.slideInLeft.is-show {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン・拡大表示 */
.fadeIn {
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 1s, transform 1s;
}
.fadeIn.is-show {
  opacity: 1;
  transform: scale(1);
}
