@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
/*================================================ お知らせ ================================================*/
.news-cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  -moz-column-gap: 0.8%;
       column-gap: 0.8%;
  line-height: 1em;
  letter-spacing: 0.02em;
  text-align: center;
  font-weight: 500;
  font-size: calc(24 / 750 * 100vw);
  margin-bottom: calc(59 / 1366 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-cats {
    gap: 8px;
    font-size: clamp(10px, 16 / 1366 * 100vw, 1000px);
    padding-left: 35px;
    margin-bottom: calc(48 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  .news-cats {
    padding-left: 56px;
  }
}
.news-cats li {
  width: 49.6%;
  margin-bottom: 0.8%;
}
@media screen and (min-width: 768px) {
  .news-cats li {
    width: 21%;
    margin-bottom: 0;
  }
}
.news-cats li a {
  display: block;
  border-radius: calc(5 / 750 * 100vw);
  background-color: #fff;
  color: var(--color-sub-txt);
  transition: 0.3s ease all;
  padding: 1.25em 0;
}
@media screen and (min-width: 768px) {
  .news-cats li a {
    border-radius: 3px;
    padding: 1.2em 0;
  }
}
.news-cats li.is-current a {
  background-color: var(--color-main);
  color: #fff;
}
.news-cats li:hover a {
  background-color: var(--color-main);
  color: #fff;
}

.news-list-wrap {
  padding-bottom: calc(110 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-list-wrap {
    padding-bottom: calc(120 / 1366 * 100vw);
  }
}

.news-button {
  margin-top: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-button {
    margin-top: calc(70 / 1366 * 100vw);
  }
}
.news-button .arrow {
  transform: rotate(90deg);
}

/*****ページネーション******/
nav.navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
nav.navigation h2.screen-reader-text {
  display: none;
}
nav.navigation div.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-manrope);
  font-size: 18px;
  font-weight: 600;
  background: #FFF;
  padding: 0.8em 3em;
  border-radius: 60px;
  position: relative;
}
nav.navigation div.nav-links.first-page { /*1ページ目のときのみ*/
  padding: 0.8em 3em 0.8em 1em;
}
nav.navigation div.nav-links.last-page { /*最後のページのときのみ*/
  padding: 0.8em 1em 0.8em 3em;
}
nav.navigation div.nav-links .page-numbers,
nav.navigation div.nav-links span.current {
  display: inline-block;
  position: relative;
  padding: 0% 0.2em;
  margin: 0 0.6em;
}
nav.navigation div.nav-links span.current::after {
  content: " ";
  display: block;
  width: 70%;
  height: 1px;
  background: #333;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}
nav.navigation div.nav-links a.prev,
nav.navigation div.nav-links a.next {
  display: block;
  width: 2.4em;
  height: 2.4em;
  line-height: 1;
  margin: 0;
  margin-right: 0.6em;
  padding: 0;
  border-radius: 50%;
  background: #333;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(10%, -50%);
}
nav.navigation div.nav-links a.prev svg,
nav.navigation div.nav-links a.next svg {
  display: block;
  width: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
nav.navigation div.nav-links a.prev {
  margin-right: 0;
  margin-left: 0.6em;
  right: auto;
  left: 0;
  transform: translate(-10%, -50%);
}
nav.navigation div.nav-links a.prev svg {
  transform: translate(-50%, -50%) rotate(180deg);
}
nav.navigation {
  /*div.nav-links{*/
}

/*=========================================== シングル ===========================================*/
@media screen and (min-width: 1280px) {
  .l-lower-title-area h1.single-title {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 60px;
  }
  .l-lower-title-area h1.single-title span.large {
    font-size: clamp(40px, 2.9282576867vw, 50px);
  }
}

@media screen and (min-width: 1280px) {
  .m-pan-nav.new-single-bread {
    max-width: 1200px;
    margin: 0 auto;
  }
  .m-pan-nav.new-single-bread li {
    font-size: 12px;
  }
}

.news-single-wrap {
  padding-bottom: calc(110 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-single-wrap {
    padding-bottom: calc(120 / 1366 * 100vw);
    max-width: 1200px;
    margin: 0 auto;
  }
}

.news-single-content {
  box-sizing: border-box;
  padding: calc(90 / 750 * 100vw) calc(65 / 750 * 100vw);
  background-color: #fff;
  border-radius: calc(10 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-single-content {
    border-radius: 10px;
  }
}
.news-single-content {
  margin-bottom: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .news-single-content {
    padding: calc(80 / 1366 * 100vw) 55px;
    margin-bottom: calc(70 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1280px) {
  .news-single-content {
    padding: 60px;
  }
}
.news-single-content figure {
  max-width: 860px;
  margin: 0 auto;
}
.news-single-content figure.aligncenter {
  width: 100%;
}
.news-single-content figure.aligncenter img {
  margin: 0 auto;
}
.news-single-content figure.is-type-video {
  text-align: center;
  margin-bottom: 1.8em;
}
.news-single-content figure.wp-block-image {
  margin-bottom: 1.8em;
}
.news-single-content figure.wp-block-image img {
  margin: 0 auto;
}
.news-single-content figure.wp-block-gallery {
  margin-bottom: 1%;
}
.news-single-content img {
  width: auto;
  vertical-align: middle;
  height: auto;
  max-width: 100%;
}
.news-single-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news-single-content img.alignright, .news-single-content img.alignleft {
  padding: 5px;
  display: inline;
  vertical-align: top;
}
.news-single-content img.alignright {
  margin: 0 0 5px 5px;
}
.news-single-content img.alignleft {
  margin: 0 5px 5px 0;
}
.news-single-content img .alignright {
  float: right;
}
.news-single-content img .alignleft {
  float: left;
}
.news-single-content p {
  margin-bottom: 1.8em;
  font-weight: 400;
  font-size: calc(26 / 750 * 100vw);
  line-height: 1.92em;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .news-single-content p {
    font-weight: 400;
    font-size: clamp(10px, 16 / 1366 * 100vw, 20px);
    line-height: 1.8em;
    letter-spacing: 0.02em;
  }
}
.news-single-content p a {
  text-decoration: underline;
  color: var(--color-green);
}
.news-single-content {
  /*画像のギャラリー対応など*/
}
.news-single-content .wp-block-columns {
  margin-top: 1em;
}
.news-single-content .wp-block-columns figure.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6%;
}

/*.news-single-content*//*# sourceMappingURL=news.css.map */