@charset "UTF-8";
/* ===============================================
# コンテナ幅
=============================================== */
/* ===============================================
# header
=============================================== */
/* ===============================================
# フォント
=============================================== */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
/* ===============================================
# ブレイクポイント
=============================================== */
/* ===============================================
# 画像ファイルパス
=============================================== */
/* ===============================================
# 共通
=============================================== */
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
/* ===============================================
# フォントをremに変換
=============================================== */
/* ===============================================
# remのclamp
=============================================== */
/* ===============================================
# 外部アイコン
=============================================== */
html {
  scroll-behavior: smooth;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
  box-sizing: border-box;
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  overflow: hidden;
  position: relative;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, sans-serif;
  color: #093556;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.02em;
  min-width: 999px;
  font-size: clamp(1.5rem, 1.1713030747vw, 1.6rem);
  box-sizing: border-box;
  width: 100%;
}
@media (max-width: 767px) {
  body {
    min-width: initial;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

p {
  margin: 0.375em 0 1.25em;
}

p:first-of-type {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}

a {
  color: #093556;
  text-decoration: none;
  transition: all 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a:hover {
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}
ul li,
ol li {
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
  text-align: center;
}
figure figcaption {
  margin-top: 0.5em;
  text-align: left;
}

img {
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

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

.text-large {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .text-large {
    font-size: 1.6rem;
  }
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.pc-text-center {
  text-align: center;
}
@media (max-width: 767px) {
  .pc-text-center {
    text-align: left;
  }
}

.pc-text-left {
  text-align: left;
}

.pc-text-right {
  text-align: right;
}
@media (max-width: 767px) {
  .pc-text-right {
    text-align: left;
  }
}

.img-left {
  text-align: left;
}

/* ===============================================
# マージン
=============================================== */
.mt0 {
  margin-top: 0 !important;
}

@media (min-width: 768px) {
  .pc-mb0 {
    margin-bottom: 0 !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

.m-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt1em {
  margin-top: 1em !important;
}

/* ===============================================
# 共通パーツ
=============================================== */
.out-link-icon {
  position: relative;
  display: inline-block;
  padding-right: 24px;
}
.out-link-icon::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: #E84649;
  -webkit-mask-image: url(/wp-content/uploads/out_link.svg);
          mask-image: url(/wp-content/uploads/out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.out-link-icon.--black:after {
  background: #093556;
}

.primary-color {
  color: #E84649;
}

.container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  .container {
    max-width: 94%;
  }
}

/* accordion
=========================================== */
.js-accordion-title {
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}
.js-accordion-title:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 15px;
  height: 2px;
  /*縦線に*/
  transform: rotate(90deg);
  background: #333;
  transition: all 0.3s ease-in-out;
}
.js-accordion-title:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  /*横線*/
  width: 15px;
  height: 2px;
  background: #333;
  transition: all 0.2s ease-in-out;
}

.js-accordion-title.open:before {
  transform: rotate(180deg);
}
.js-accordion-title.open:after {
  opacity: 0;
}

.accordion-content {
  display: none;
}

@media only screen and (max-width: 767px) {
  .js-accordion-title_sp {
    cursor: pointer;
    position: relative;
    padding-right: 30px;
  }
  .js-accordion-title_sp:after {
    content: "";
    position: absolute;
    right: 10px;
    top: 10%;
    transition: all 0.2s ease-in-out;
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(135deg);
  }
  .js-accordion-title_sp.open:after {
    transform: rotate(-45deg);
    top: 30%;
  }
  .accordion-content_sp {
    display: none;
  }
}
/* 404 not found
=========================================== */
#notfound .text_box {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 540px) {
  #notfound .text_box {
    text-align: left;
    margin-bottom: 20px;
  }
}
#notfound .btn {
  margin: 0 auto;
}

/* pankuzu
=========================================== */
.bread.post_bread .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  .bread.post_bread .container {
    padding: 0 4.5%;
    max-width: calc(600px + 9%);
  }
}

.bread {
  padding-top: 20px;
}
.bread .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  .bread .container {
    padding: 0 4.5%;
    max-width: calc(600px + 9%);
  }
}
.bread ul {
  list-style: none;
  padding-left: 0;
}
.bread ul > * {
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.bread ul > *:not(:last-child) {
  margin-right: 2em;
}
.bread ul > *:not(:last-child):before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: calc(100% + 0.6em);
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #093556;
  border-right: 1px solid #093556;
  transform: rotate(45deg);
}
.bread a {
  text-decoration: none;
}

/* flexbox
=========================================== */
.flex {
  display: -ms-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}

.flex.center {
  justify-content: space-between;
}

.flex.flex-between {
  justify-content: space-between;
}

.flex.reverse {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  .flex.reverse {
    flex-direction: row;
  }
}

@media only screen and (max-width: 767px) {
  .spFlexRow {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
/* grid
=========================================== */
.grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  .grid {
    grid-template-rows: 2fr;
    grid-template-columns: 1fr;
  }
}

/* section
=========================================== */
section {
  padding: 100px 0;
}
@media only screen and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

/* iOS
=========================================== */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]:-webkit-search-decoration,
input[type=button]:-webkit-search-decoration {
  display: none;
}

input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.primary-btn {
  margin: auto;
}
.primary-btn a {
  color: #fff;
  display: block;
  border: solid 2px #E84649;
  background: #E84649;
  max-width: 220px;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  margin: auto;
}
.primary-btn a:hover {
  background: #fff;
  color: #E84649;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  z-index: 1000;
  transition: all 0.3s ease 0s;
}

#header.is-colored {
  background-color: rgba(255, 255, 255, 0.95);
  /* お好みで */
  /* 影をつけたい場合 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header_wrapper {
  display: flex;
  justify-content: flex-start;
  gap: 5%;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  position: initial;
}
.header_wrapper.container {
  max-width: 1800px;
  padding: 1% 2%;
}
@media (max-width: 767px) {
  .header_wrapper.container {
    padding: 20px 4%;
  }
}
.header_wrapper .title {
  max-width: 180px;
}
@media (max-width: 1200px) {
  .header_wrapper .title {
    max-width: 160px;
  }
}
@media (max-width: 767px) {
  .header_wrapper .title {
    max-width: 80px;
  }
}

@media only screen and (max-width: 766px) {
  .header_nav {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #F3F5F8;
    transition: all 0.4s;
    z-index: 1000;
  }
}
.header_nav .nav_wrapper {
  display: flex;
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper {
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper .nav_item {
    text-align: center;
  }
}
.header_nav .nav_wrapper .nav_item a {
  display: inline-block;
  padding: 1.5rem 1rem;
  font-size: 1.8rem;
  font-weight: 500;
}
@media only screen and (max-width: 766px) {
  .header_nav .nav_wrapper .nav_item a {
    padding: 1.5rem 3%;
  }
}

.header_nav.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

body.active {
  height: 100%;
  overflow: hidden;
}

html.active {
  overflow: hidden;
}

/*humburger
=========================================== */
.btn_open {
  background: #E84649;
  display: block;
  position: absolute;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  right: 3%;
  z-index: 1001;
}
@media (min-width: 768px) {
  .btn_open {
    display: none;
  }
}

/*ボタン内側*/
.btn_open span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.btn_open span:nth-of-type(1) {
  top: 15px;
}
.btn_open span:nth-of-type(2) {
  top: 23px;
}
.btn_open span:nth-of-type(3) {
  top: 31px;
}

/*activeクラスが付与されると線が回転して×に*/
.btn_open.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.btn_open.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}
.btn_open.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

#footer {
  position: relative;
  background: #333;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  #footer {
    padding: 40px 0 20px;
  }
}
#footer a,
#footer p {
  color: #fff;
  font-size: 1.4rem;
}
#footer .copy {
  text-align: center;
  font-size: 1.2rem;
}
#footer .footer_info {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #footer .footer_info {
    margin-bottom: 30px;
  }
}
#footer .footer_info .footer_info_logo img {
  max-width: 180px;
}
@media (max-width: 1200px) {
  #footer .footer_info .footer_info_logo img {
    max-width: 160px;
  }
}
@media (max-width: 767px) {
  #footer .footer_info .footer_info_logo img {
    max-width: 160px;
  }
}
#footer .footer_info .footer_info_logo a {
  display: inline-block;
}
#footer .footer_sitemap {
  align-items: flex-start;
  margin-bottom: 40px;
}
#footer .footer_sitemap .sitemap_list {
  width: 16%;
}
@media (max-width: 767px) {
  #footer .footer_sitemap .sitemap_list {
    width: 100%;
  }
}
#footer .footer_sitemap .sitemap_item {
  padding-bottom: 8px;
}
#footer .footer_sitemap .sitemap_item .sitemap_item_title {
  display: inline-block;
  width: 100%;
  font-weight: bold;
  border-bottom: solid 1px #555;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
#footer .footer_sitemap .sitemap_item .sitemap_item_under {
  padding-bottom: 4px;
}

/* pagetop
  =========================================== */
#page-top {
  right: 60px;
}
#page-top a {
  display: block;
}
#page-top a:before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #57a2c7;
}
#page-top a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 20px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}

/* LP（scss）
  =========================================== */
.cta_fixed img {
  opacity: 0;
  transform: translate(-40px, 40px) rotate(-20deg) scale(0.8);
  animation: paperFlyIn 0.8s ease-out 1.5s forwards;
}
@keyframes paperFlyIn {
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

#footer {
  background: #fff;
  padding: 150px 0;
}
@media (max-width: 767px) {
  #footer {
    padding: 60px 0 30px;
  }
}
#footer .cta_fixed {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 5000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 302px;
  height: 302px;
  transition: var(--transit-default);
}
@media (max-width: 767px) {
  #footer .cta_fixed {
    bottom: -37px;
    right: -35px;
  }
}
@media (max-width: 767px) {
  #footer .cta_fixed {
    bottom: -62px;
    right: -63px;
  }
}
#footer .cta_fixed.active {
  opacity: 1;
  pointer-events: auto;
}
#footer .cta_fixed::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/wp-content/uploads/cta_circle.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: rotate 30s linear infinite;
}
@media (max-width: 767px) {
  #footer .cta_fixed::before {
    width: 70%;
    height: 70%;
  }
}
@media (max-width: 500px) {
  #footer .cta_fixed::before {
    width: 50%;
    height: 50%;
  }
}
@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
#footer .cta_fixed > a {
  position: relative;
  row-gap: 12px;
  width: 205px;
  height: 205px;
  background-color: #E84649;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  #footer .cta_fixed > a {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 500px) {
  #footer .cta_fixed > a {
    width: 110px;
    height: 110px;
    row-gap: 5px;
  }
}
#footer .cta_fixed > a:hover {
  opacity: 0.7;
}
#footer .cta_fixed > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 160px;
  height: 160px;
  border: 2px solid var(--clr-body);
  border-radius: 50%;
}
@media (max-width: 500px) {
  #footer .cta_fixed > a img {
    width: 28px;
  }
}
#footer .cta_fixed > a .ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  #footer .cta_fixed > a .ttl {
    font-size: 1.8rem;
  }
}
@media (max-width: 500px) {
  #footer .cta_fixed > a .ttl {
    font-size: 1.2rem;
    line-height: 1;
  }
}
#footer .footer_info {
  display: flex;
  justify-content: center;
  gap: 85px;
}
@media (max-width: 767px) {
  #footer .footer_info {
    flex-direction: column;
    gap: 20px;
    justify-self: center;
    width: 100%;
  }
}
#footer .footer_info .footer_info_address {
  text-align: start;
}
#footer .footer_info .footer_info_address p {
  color: #093556;
  line-height: 1.8;
}
#footer .footer_info .footer_info_address p span {
  font-weight: 700;
}
#footer .footer_menu {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #footer .footer_menu {
    margin-bottom: 30px;
  }
}
#footer .footer_menu li {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  #footer .footer_menu li {
    gap: 20px;
    justify-content: flex-start;
  }
}
@media (max-width: 635px) {
  #footer .footer_menu li {
    flex-direction: column;
    text-align: start;
    gap: 8px;
  }
}
#footer .footer_menu li a {
  color: #093556;
  line-height: 1.8;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #footer .footer_menu li a {
    font-size: 1.4rem;
  }
}
#footer .copy {
  color: #093556;
}

/* archive
=========================================== */
#news_archive .news_box {
  position: relative;
  display: flex;
  flex-direction: column;
}
#news_archive .news_list {
  border-top: solid 1px #BFBFBF;
}
#news_archive .news_list .news_list_item {
  border-bottom: solid 1px #BFBFBF;
}
#news_archive .news_list .news_list_item a {
  display: flex;
  padding: 20px 0;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  #news_archive .news_list .news_list_item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media (hover: hover) {
  #news_archive .news_list .news_list_item a:hover {
    opacity: 0.6;
  }
}
#news_archive .news_list .time {
  display: inline-block;
  margin-right: 12px;
  white-space: nowrap;
}
@media (min-width: 1980px) {
  #news_archive .news_list .time {
    margin-right: 0px;
  }
}
#news_archive .news_list .time time {
  transition: 0.3s all;
  font-weight: 500;
}
#news_archive .news_list .category {
  display: inline-block;
  color: #fff;
  background: #E84649;
  font-size: 1.3rem;
  padding: 2px 8px;
  white-space: nowrap;
}
@media (max-width: 767px) {
  #news_archive .news_list .category {
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  #news_archive .news_list .news_title {
    width: 100%;
    margin-top: 8px;
  }
}
#news_archive .news_list .news_title h2 {
  font-size: clamp(1.4rem, 1.1713030747vw, 1.8rem);
  font-weight: 600;
  transition: 0.3s all;
}
#news_archive .pagination {
  margin-top: 40px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#news_archive .pagination > .page-numbers {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 15px;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers {
    gap: 10px;
  }
}
#news_archive .pagination > .page-numbers li a, #news_archive .pagination > .page-numbers li span {
  font-size: clamp(1.4rem, 1.0980966325vw, 1.6rem);
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-weight: 500;
  color: #E84649;
  background: #fff;
  border: 1px solid #E84649;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a, #news_archive .pagination > .page-numbers li span {
    height: 28px;
    width: 28px;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a:hover, #news_archive .pagination > .page-numbers li span:hover {
    opacity: 0.6;
  }
}
#news_archive .pagination > .page-numbers li a.current, #news_archive .pagination > .page-numbers li span.current {
  pointer-events: none;
  width: 48px;
  height: 48px;
  color: #fff;
  background: #E84649;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a.current, #news_archive .pagination > .page-numbers li span.current {
    height: 28px;
    width: 28px;
  }
}
#news_archive .pagination > .page-numbers li a.prev, #news_archive .pagination > .page-numbers li a.next, #news_archive .pagination > .page-numbers li span.prev, #news_archive .pagination > .page-numbers li span.next {
  font-size: 1.4rem;
  padding: 5px 10px;
  width: auto;
}
@media (max-width: 767px) {
  #news_archive .pagination > .page-numbers li a.prev, #news_archive .pagination > .page-numbers li a.next, #news_archive .pagination > .page-numbers li span.prev, #news_archive .pagination > .page-numbers li span.next {
    font-size: 1.2rem;
    padding: 0 0.1em;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a.prev:hover, #news_archive .pagination > .page-numbers li a.next:hover, #news_archive .pagination > .page-numbers li span.prev:hover, #news_archive .pagination > .page-numbers li span.next:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  #news_archive .pagination > .page-numbers li a.dots:hover, #news_archive .pagination > .page-numbers li span.dots:hover {
    opacity: 1;
  }
}

/* single
=========================================== */
#news_single .single-area .date {
  font-size: clamp(1.3rem, 1.1713030747vw, 1.9rem);
  transition: 0.3s all;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  #news_single .single-area .date {
    font-size: 1.3rem;
  }
}
#news_single .single-area .post-area {
  position: relative;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  background: #fff;
}
@media (max-width: 767px) {
  #news_single .single-area .post-area {
    padding: 50px 20px 50px;
  }
}
#news_single .single-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
  padding: 0;
}
#news_single .single-navigation li {
  list-style: none;
  line-height: 1.6;
}
#news_single .single-navigation li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  transition: 0.2s;
}
@media (hover: hover) {
  #news_single .single-navigation li a:hover {
    opacity: 0.7;
  }
}
#news_single .single-navigation li.previous a {
  padding-left: 1.125em;
}
#news_single .single-navigation li.previous a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.25em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #E84649;
  border-left: 1px solid #E84649;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
}
#news_single .single-navigation li.next a {
  padding-right: 1.125em;
  text-align: right;
}
#news_single .single-navigation li.next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: 0.25em;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 1px solid #E84649;
  border-left: 1px solid #E84649;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(-45deg) scaleX(-1);
}/*# sourceMappingURL=style.css.map */