@charset "utf-8";
/* Google Fontsの正しいインポート */
@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=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #fff;
  --color-gray: #ccc;
  --color-gray-light: #f5f5f5;
  --color-gray-darken: #535353;
  --color-theme: #0443a2;
  --color-theme-light: #4574ba;
  --color-theme-dark: #0070a3;
  --color-theme-dark-light: #6eaecb;
  --color-sky: #cddff9;
  --color-sky-light: #e1f4ff;
  --color-accent: #ffd801;
  --color-red: #cc0000;
  --color-blue: #3296e6;
  --color-green: #5ec618;
  --color-green-dark: #4aa012;
  --color-green-light: #b6e597;
  --color-orange: #f5a300;
  --color-yellow: #ffd801;
  --color-cream: #ffef8f;
  --color-cream-light: #ffffee;
  --font-base: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  min-height: 100%;
  height: 100%;
  box-sizing: border-box;
  line-height: 1.5;
  font-size: 62.5%;
  color: #333;
  background-color: #fff;
}
@media only screen and (max-width: 599px) {
  html {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }
  body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: auto;
    min-height: 100%;
  }
}

/* Reset for all elements */
/* prettier-ignore */
div,span,object,iframe,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,caption,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

a {
  color: var(--color-theme);
  text-decoration: none;
}

body.fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* MARK:レスポンシブ表示制御 */
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}

/* スマホでは非表示（タブレット以上で表示）*/
/* @media only screen and (max-width: 599px) {
  .sp-hide {
    display: none !important;
  }
} */

/* タブレットでは非表示（PC・スマホで表示）*/
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .tab-hide {
    display: none !important;
  }
}

/* PCでは非表示（モバイル・タブレットで表示）*/
/* @media only screen and (min-width: 1025px) {
  .pc-hide {
    display: none !important;
  }
} */

/* スマホのみ表示 */
/* @media only screen and (min-width: 600px) {
  .smp {
    display: none !important;
  }
} */

/* タブレット以下のみ表示 */
@media only screen and (min-width: 769px) {
  .tab {
    display: none !important;
  }
}

/* タブレットのみ表示 */
/* @media only screen and (max-width: 599px), only screen and (min-width: 1025px) {
  .tab-only {
    display: none !important;
  }
} */

/* PCのみ表示 */
/* @media only screen and (max-width: 1024px) {
  .pc-only {
    display: none !important;
  }
} */

/* Form Elements */
/* prettier-ignore */
input[type='text'],input[type='tel'],input[type='email'],input[type='number'],textarea,select {
  border-radius: 3px;
  border: solid 1px #bfbfbf;
  background-color: #f5f5f5;
  padding: 0.5rem;
  box-sizing: border-box;
  margin: 5px 0;
}

select {
  min-height: 40px;
}

@media only screen and (min-width: 1025px) {
  /* prettier-ignore */
  input[type='text'],  input[type='tel'],  input[type='email'],textarea {
    max-width: 100%;
  }
  textarea {
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  /* 幅を制御したい特定のinput要素に対して */
  /* prettier-ignore */
  input[type='text'].full-width,  input[type='tel'].full-width,  input[type='email'].full-width,  textarea.full-width {
    width: 100%;
  }
}
/* Input Styles */
input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input:focus::placeholder {
  color: transparent;
}

.radio-group {
  display: flex;
  gap: 2rem;
}

@media only screen and (max-width: 1024px) {
  .radio-group {
    display: flex;
    gap: 1rem;
  }
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* フォーカス時のスタイル */
.radio-group input[type='radio']:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ラジオボタンのサイズ調整（必要に応じて） */
.radio-group input[type='radio'] {
  width: 1.2em;
  height: 1.2em;
}

/* アクセシビリティのための非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* チェックボックスグループのスタイル */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.checkbox-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem 1rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

/* フォーカス時のスタイル */
.checkbox-item input:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* ホバー時のスタイル */
.checkbox-item:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Utility Classes */
.center {
  text-align: center;
}
/* .center_img img {
  margin-inline: auto;
} */
.bold {
  font-weight: 900;
}

/* Colors */
.red {
  color: var(--color-red);
}

/* Header Styles */
.site-header {
  border-top: solid 10px var(--color-theme);
  width: 100%;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@media only screen and (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    min-height: 100%;
  }
  body {
    width: 100%;
    padding-top: 80px;
  }
  .site-header {
    width: 100%;
    padding: 10px;
    z-index: 9999;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition:
      background 0.3s ease-in-out,
      backdrop-filter 0.3s ease-in-out;
    transform: translateZ(0);
    will-change: transform;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
  }
}

.header-inner {
  width: 80vw;
  max-width: 1200px;
  padding: 15px;
  margin: 0 auto;
  position: relative;
}

/* Header Responsive */

@media only screen and (max-width: 1024px) {
  .header-inner {
    width: 100%;
    position: relative;
    padding: 0px;
    display: grid;
    grid-template-columns: 1fr 60px;
  }
}

.h-txt {
  font-size: 1.4rem;
  width: 100%;
}

/* スマートフォンでh1要素を非表示にする（SEOには影響なし） */
@media only screen and (max-width: 1024px) {
  .h-txt {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
  }
}

.h_logo_tel_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.h_logo,
.f_logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transition:
    var(--transition),
    transform 0.3s ease;
}

.h_logo:hover,
.f_logo:hover {
  transform: translateY(-5px);
}

.h_logo::before,
.f_logo::before {
  content: '';
  display: block;
  width: 101px;
  aspect-ratio: 101 /55;
  background-image: url(../images/logo_mark.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.h_logo_txt,
.f_logo_txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.h_logo > .h_logo_txt > p,
.f_logo > .f_logo_txt > p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #000;
  margin: 0;
}

.h_logo_txt > h2,
.f_logo_txt > h2 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-theme);
}

.h_tel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  flex-direction: column;
  align-items: center;
}

.h_tel > .tel_no > a {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: clamp(2rem, 1.345rem + 3.27vw, 3.8rem);
  color: var(--color-red);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  line-height: 1;
}

.h_tel > .tel_no > a::before {
  content: '';
  display: inline-block;
  aspect-ratio: 46 / 37;
  width: 46px;
  background: url(../images/h_tel_icon.png) no-repeat center center / contain;
  margin-right: clamp(5px, 0.8vw + 2px, 10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.h_tel > .tel_txt,
.h_tel > .tel_subtxt {
  text-align: center;
  transition: all 0.3s ease;
  margin: 0;
}
.h_tel > .tel_txt {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
.h_tel > .tel_subtxt {
  font-size: 1.4rem;
  font-weight: bold;
}

@media only screen and (max-width: 1024px) {
  .h_logo::before,
  .f_logo::before {
    width: 60px;
  }

  .h_logo > .h_logo_txt > p,
  .f_logo > .f_logo_txt > p {
    font-size: 1.4rem;
  }
  .h_logo_txt > h2,
  .f_logo_txt > h2 {
    font-size: 2.4rem;
  }

  .h_tel {
    display: none;
  }
}

/* Navigation */
.g_nav {
  background-color: var(--color-theme);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.g_nav > ul {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.g_nav > ul > li {
  position: relative;
}

.g_nav > ul > li > a {
  display: block;
  position: relative;
  color: #fff;
  font-size: clamp(1.2rem, 1.018rem + 0.78vw, 1.6rem);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  white-space: nowrap;
  padding: 1.5rem;
}

.g_nav > ul > li > a:hover {
  color: var(--color-accent);
}

@media only screen and (max-width: 599px) {
  .g_nav > ul > li > a {
    display: block;
    position: relative;
    color: #333;
    font-size: clamp(1.2rem, 1.018rem + 0.78vw, 1.6rem);
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    white-space: nowrap;
    padding: 1.5rem;
  }
}

@media only screen and (max-width: 1024px) {
  .menu-tel-info {
    background-color: var(--color-theme);
    padding: 25px;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }

  .menu-tel-info > .h_logo {
    justify-content: center;
  }

  .menu-tel-info > .h_logo > .h_logo_txt > p,
  .menu-tel-info > .h_logo > .h_logo_txt > h2 {
    color: #fff;
  }
  .menu-tel-info .tel_no {
    text-align: center;
    margin: 0 !important;
  }
  .menu-tel-info .tel_no a {
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-size: 4rem;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    line-height: 1;
  }

  .menu-tel-info .tel_no a::before {
    content: '';
    display: inline-block;
    aspect-ratio: 46 / 37;
    width: 46px;
    background: url(../images/h_tel_icon_w.png) no-repeat center center / contain;
    margin-right: clamp(5px, 0.8vw + 2px, 10px);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  }
  .menu-tel-info .tel_txt {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 2rem 0 1rem 0;
  }
  .menu-tel-info .tel_subtxt {
    font-size: 1.4rem;
    text-align: center;
  }
}

/* スマホナビボタン */
.navbtn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  z-index: 1002;
  position: relative;
  width: 30px;
  height: 30px;
}

/*アクセシビリティ対策*/
.navbtn .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ハンバーガーメニュー */
.navbtn .hamburger,
.navbtn .hamburger::before,
.navbtn .hamburger::after {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.3s ease-in-out;
}

.navbtn .hamburger {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbtn .hamburger::before,
.navbtn .hamburger::after {
  content: '';
  width: 100%;
}

.navbtn .hamburger::before {
  top: -8px;
}

.navbtn .hamburger::after {
  bottom: -8px;
}

/* アクティブ時 */
.navbtn.active .hamburger {
  background: transparent;
}

.navbtn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.navbtn.active .hamburger::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* Responsive Layout */
@media only screen and (min-width: 1025px) {
  .h_tool,
  .navbtn {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  .h_tool {
    background-color: var(--color-theme);
    padding: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1002;
  }
}

/* スマホグローバルナビ */
@media only screen and (max-width: 1024px) {
  .navbtn {
    display: block;
  }

  .g_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.85);
    display: grid;
    grid-template-rows: 1fr 280px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease;
    z-index: 999;
    justify-content: center;
    justify-items: center;
  }

  .g_nav.show {
    opacity: 1;
    visibility: visible;
    overflow: auto;
  }

  /* メニューが開いている時のスタイル調整 */
  body.menu-open .site-header {
    z-index: 10000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
  }

  body.menu-open .h_tool,
  body.menu-open .navbtn {
    z-index: 10001 !important;
  }

  /* メニューが開いている時にg_navのz-indexを下げる */
  body.menu-open .g_nav {
    z-index: 9999 !important;
  }

  .g_nav > ul:first-child {
    margin-top: 10vh;
    margin-bottom: 2.5rem;
  }
  .g_nav > ul {
    display: flex;
    flex-direction: column;
    width: 100vw;
    margin: 0;
    gap: initial;
  }

  .g_nav > ul > li {
    opacity: 0;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease;
    overflow: hidden;
    margin: 0 1rem 1.5rem 1rem;
  }

  .g_nav > ul > li > a {
    font-family: 'Noto Sans JP', sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    color: #fff;
    background-color: var(--color-theme);
    padding: 1.5rem;
    display: block;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 10px;
  }

  .g_nav > ul > li > a::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    content: '\f138';
    font-weight: 900;
    margin-right: 10px;
    color: #fff;
    font-size: 1.8rem;
  }

  .g_nav.show > ul > li {
    opacity: 1;
    padding: 0;
  }
}

/*パンくず*/
.breadcrumb-nav {
  padding: 1.5rem 0;
  width: 1200px;
  margin: 0 auto;
  font-size: 1.6rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.breadcrumb li {
  font-size: 1.6rem;
}
.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin: 0 0.5em;
}
@media only screen and (max-width: 1024px) {
  .breadcrumb-nav {
    padding: 1.5rem;
    width: 100%;
    margin: 0 auto;
  }
  .breadcrumb {
    margin-bottom: 0;
  }
}
/* Main Content */
main {
  position: relative;
  overflow-x: hidden;
}

@media only screen and (max-width: 599px) {
  main {
    padding-top: 20px;
  }
}

section {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.main-content {
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  line-height: 1.5;
  font-size: 1.6rem;
}

.main-content p,
.main-content dl dd {
  margin-bottom: 2rem;
}

.main-content ol {
  margin-left: 3.5rem;
}

.main-content ol li {
  list-style-type: decimal;
  margin-bottom: 1.5rem;
}
.main-content p a {
  text-decoration: underline;
}

/* Main Content Responsive */
@media only screen and (min-width: 1025px) {
  .main-content {
    width: 1200px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-content {
    width: 100%;
    padding: 20px;
  }
}

@media only screen and (max-width: 599px) {
  .main-content {
    padding: 15px;
  }
}

/*MARK:mainimage*/

.mainimage {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 3rem;
  margin-bottom: 3rem;
  background-image: url(../images/mainimage_bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 740px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
}

.mainimage-catchcopy {
  display: inline-block;
  width: 55%;
  padding: 3rem;
  background-color: rgba(255, 255, 255, 0.8);
}

.mainimage-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
  font-size: 3.6rem;
  line-height: 1.5;
  color: var(--color-theme);
}

.mainimage-title em {
  font-size: 4.8rem;
  background: linear-gradient(transparent 65%, #ffd801 65%);
}

.mainimage-subtitle {
  font-size: 2.4rem;
  font-weight: 400;
  margin: 2rem 0;
  color: #000;
}

.mainimage-map {
  margin: -2rem 0;
}

.mainimage-map img {
  margin-inline: auto;
  width: 100%;
  max-width: 324px;
}

.mainimage-price-label {
  display: inline-block;
  font-size: 4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: var(--color-theme);
  background: linear-gradient(transparent 65%, #ffd801 65%);
}

.mainimage-price {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: var(--color-red);
}

.mainimage-price {
  position: relative;
}
.mainimage-price .zeikomi {
  font-size: 2.2rem;
  color: #000;
  font-weight: 400;
  letter-spacing: -3px;
  margin-left: -30px;
}

@media only screen and (max-width: 1024px) {
  .mainimage {
    max-width: 100%;
    height: 540px;
    align-items: center;
  }
  .mainimage-catchcopy {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .mainimage-title {
    font-size: 4rem;
    line-height: 1.2;
  }
  .mainimage-title em {
    font-size: 4rem;
  }
  .mainimage-subtitle {
    font-size: 2.2rem;
  }
  .mainimage-map {
    margin: -4rem 0 -8rem 0;
  }
  .mainimage-map img {
    margin-inline: auto 0;
    width: 100%;
    max-width: 280px;
  }
  .mainimage-price-label {
    font-size: 3rem;
  }
  .mainimage-price {
    font-size: 8rem;
  }
  .mainimage-price .zeikomi {
    margin-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .mainimage {
    max-width: 100%;
    margin: 0;
    position: relative;
    padding: 0;
    margin-bottom: 3rem;
    background-image: none;
    height: initial;
    display: block;
  }

  .mainimage::before {
    content: '';
    display: block;
    width: 100%;
    height: 360px;
    background-image: url(../images/mainimage_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .mainimage-catchcopy {
    display: block;
    width: 100%;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .mainimage-title {
    font-size: 4rem;
    line-height: 1.2;
  }
  .mainimage-title em {
    font-size: 4rem;
  }
  .mainimage-subtitle {
    font-size: 2.2rem;
  }
  .mainimage-map {
    margin: -4rem 0 -8rem 0;
  }
  .mainimage-map img {
    margin-inline: auto 0;
    width: 100%;
    max-width: 280px;
  }
  .mainimage-price-label {
    font-size: 3rem;
  }
  .mainimage-price {
    font-size: 8rem;
  }
}

@media only screen and (max-width: 1024px) and (max-height: 375px) {
  .tab {
    display: inline-block !important;
  }

  .g_nav > ul:first-child {
    margin-top: 25vh;
    margin-bottom: 2.5rem;
  }
}

@media only screen and (max-width: 599px) {
  .mainimage-title {
    font-size: 3.6rem;
    line-height: 1.2;
  }
  .mainimage-title em {
    font-size: 3.6rem;
  }
  .mainimage-subtitle {
    font-size: 2.2rem;
  }
  .mainimage-map {
    margin: -4rem 0;
  }
  .mainimage-map img {
    margin-inline: auto 0;
    width: 100%;
    max-width: 200px;
  }
  .mainimage::before {
    height: 240px;
  }
  .mainimage-price-label {
    font-size: 2.4rem;
  }
  .mainimage-price {
    font-size: 6rem;
  }
  .mainimage-price .zeikomi {
    font-size: 2.6rem;
  }
}

@media only screen and (min-width: 376px) and (max-width: 599px) {
}

/* Footer */
#footer {
  width: 100%;
  margin: 0;
  background: var(--color-theme);
}

.footer-inner {
  font-size: 1.6rem;
  width: 1200px;
  margin: 0 auto;
  padding: 4rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media only screen and (max-width: 1024px) {
  .footer-inner {
    width: 100%;
    grid-template-columns: 1fr;
  }
}

.f_logo > .f_logo_txt > p {
  color: #fff;
}

.f_logo_txt > h2 {
  color: #fff;
}

.f_address {
  margin-top: 3rem;
  color: #fff;
}

.f_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
}

.f_nav ul li::after {
  content: '|';
  display: inline-block;
  margin: 0 1rem;
  color: #fff;
}

.f_nav ul li:first-of-type::before {
  content: '|';
  display: inline-block;
  margin: 0 1rem;
  color: #fff;
}

.f_nav ul li a {
  position: relative;
  text-decoration: none;
  color: #fff; /* リンクのを適宜調整 */
  display: inline-block;
  transition: color 0.3s ease; /* テキストの色変化のアニメーション */
  font-size: 1.4rem;
  padding: 1rem;
}

.f_nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px; /* 下線の太さ */
  background-color: #fff; /* 下線の色 */
  transition: width 0.3s ease;
}

.f_nav ul li a:hover {
  color: #fff; /* ホバー時テキスト色 */
}

.f_nav ul li a:hover::after {
  width: 100%; /* ホバー時に下線を100%の幅 */
}

.address_txt {
  text-align: center;
  padding: 5px;
  min-height: 42px;
  font-style: normal;
  font-size: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: var(--color-theme);
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  .f_nav ul {
    justify-content: center;
  }
  .f_nav ul li a {
    font-size: 1.3rem;
    padding: 0.5rem;
  }
}

@media only screen and (max-width: 599px) {
  .footer-inner {
    width: 100%;
    padding: 1rem;
  }
}

/*MARK:サブコンテンツ*/

.section-title {
  font-size: 2.4rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  background-color: var(--color-theme);
  color: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  background-color: var(--color-sky-light);
  padding: 2rem 2rem 2rem 6rem;
  position: relative;
  margin-bottom: 3rem;
}

.section-subtitle:not(:first-of-type) {
  margin-top: 6rem;
}

.section-subtitle::before {
  content: '';
  display: inline-block;
  width: 28px;
  aspect-ratio: 28 / 28;
  background-image: url(../images/check_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1rem;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.section-subtitle-number {
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: var(--color-theme);
  border-bottom: dotted 2px var(--color-theme);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

#gyomu-menu .main-content {
  padding-top: 0;
}

.gyomu-menu-title {
  font-size: 3.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: italic;
  font-weight: 900;
  color: var(--color-theme);
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gyomu-menu-title::before {
  content: '';
  display: block;
  width: 75px;
  aspect-ratio: 101 / 55;
  background-image: url(../images/logo_mark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gyomu-menu-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gyomu-menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
}

@media only screen and (max-width: 768px) {
  .gyomu-menu-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gyomu-menu-list li {
  position: relative;
}

.gyomu-menu-list li a img {
  transition:
    var(--transition),
    transform 0.3s ease;
}

.gyomu-menu-list li a:hover img {
  transform: translateY(-5px);
}

.gyomu-menu-list li a img {
  border-radius: 5px;
}

.gyomu-menu-list li a p {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-top: 1rem;
}

.gyomu-menu-list li a p::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f138';
  font-weight: 900;
  margin-right: 10px;
  color: var(--color-theme);
  font-size: 1.8rem;
}

.side-menu-section .main-content {
  padding-top: 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
}

.side-menu-section .main-content .main-box {
  order: 2;
}

.side-menu-section .main-content .side-box {
  order: 1;
}

@media only screen and (max-width: 1024px) {
  .side-menu-section .main-content {
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .side-menu-section .main-content .main-box {
    order: 1;
  }

  .side-menu-section .main-content .side-box {
    order: 2;
  }
}

.link_bt {
  background-color: var(--color-sky-light);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-decoration: underline;
  display: inline-block;
}

.side-box-title {
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  background-color: var(--color-theme);
  color: #fff;
  padding: 2rem;
  border-radius: 10px 10px 0 0;
}

.side-gyomu-menu-list {
  background-color: var(--color-theme);
  border-radius: 0 0 10px 10px;
  margin-bottom: 3rem;
}

.side-gyomu-menu-list li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: #fff;
  padding: 2rem 2rem 2rem 6rem;
  border-top: dashed 1px #fff;
  display: block;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
}

.side-gyomu-menu-list li a:hover {
  background-color: var(--color-theme-light);
}

.side-gyomu-menu-list li a::before {
  content: '';
  display: inline-block;
  background-image: url(../images/side_icon01.png);
  width: 30px;
  aspect-ratio: 30 / 22;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.side-gyomu-menu-list li:nth-child(2) a::before {
  background-image: url(../images/side_icon02.png);
}

.side-gyomu-menu-list li:nth-child(3) a::before {
  background-image: url(../images/side_icon03.png);
}

.side-gyomu-menu-list li:nth-child(4) a::before {
  background-image: url(../images/side_icon04.png);
}

.side-gyomu-menu-list li:nth-child(4) a {
  border-radius: 0 0 10px 10px;
}

.side-gyomu-menu-list li:nth-child(4) a:hover {
  border-radius: 0 0 10px 10px;
}

.side-gyomu-menu-list li a::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f105';
  font-weight: 900;
  margin-right: 10px;
  color: #fff;
  font-size: 1.8rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.side-sub-menu li {
  margin: 1.5rem 0;
}

.side-sub-menu li a {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: var(--color-theme);
  background-color: var(--color-sky);
  padding: 1rem 2rem;
  display: block;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.side-sub-menu li a::before {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f138';
  font-weight: 900;
  margin-right: 10px;
  color: var(--color-theme);
  font-size: 1.8rem;
}

.side-sub-menu li a:hover {
  transform: translateY(-5px);
}

.blue-box {
  border-radius: 10px;
  border: 3px solid var(--color-theme);
  padding: 2rem;
  margin-bottom: 3rem;
}

.blue-box p:last-of-type {
	margin-bottom:0!important;
}

#contact {
  background-image: url(../images/contact_bg.jpg);
  background-size: cover;
  background-position: center;
}

#contact h3 {
  color: #fff;
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: 2rem;
}

#contact h4 {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 2rem;
}

#contact .tel_txt {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  margin: 2.5rem 0;
}

.tel_txt a {
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-size: 4.8rem;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  line-height: 1;
}

.tel_txt a::before {
  content: '';
  display: inline-block;
  aspect-ratio: 46 / 37;
  width: 46px;
  background: url(../images/h_tel_icon_w.png) no-repeat center center / contain;
  margin-right: clamp(5px, 0.8vw + 2px, 10px);
  transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#contact .tel_txt span {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin-top: 1rem;
}
@media only screen and (max-width: 1024px) {
  #contact h3 {
    font-size: 2.6rem;
  }
  #contact h4 {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 599px) {
  .tel_txt a {
    font-size: 4rem;
  }

  .tel_txt a::before {
    width: 40px;
  }

  #contact .tel_txt span {
    font-size: 1.4rem;
  }
}

#subpage {
  background-color: #fff;
}

#subpage > .main-content {
  padding-top: 0;
}

/* MARK:Tables */
.legal_notice {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
  border-top: 1px solid #ccc;
}

.legal_notice th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: var(--color-theme);
  color: #fff;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  width: 15%;
}

.legal_notice td {
  background: initial;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
}

.price-table {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 1px solid var(--color-theme);
  border-top: 1px solid var(--color-theme);
}

.price-table thead th {
  border-right: 1px solid #fff;
}

.price-table thead th,
.price-table thead td {
  background-color: var(--color-theme);
  color: #fff;
  font-weight: 700;
}

.price-table th {
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 1px solid var(--color-theme);
  background: initial;
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--color-theme);
  width: 70%;
}

.price-table td {
  background: initial;
  padding: 13px 15px;
  border-right: 1px solid var(--color-theme);
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--color-theme);
}

.form {
  border-collapse: collapse;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
  border-top: 0px solid #ccc;
  margin-bottom: 20px;
}
.form th {
  text-align: left;
  vertical-align: middle;
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  background: initial;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  width: 35%;
}

.form td {
  padding: 13px 15px;
  border-right: 0px solid #e3e3e3;
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 1024px) {
  .legal_notice th {
    width: 20%;
  }
}

@media only screen and (max-width: 599px) {
  .legal_notice th,
  .form th {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .legal_notice th {
    padding: 1rem 0 0 0;
  }

  .legal_notice td,
  .form td {
    display: block;
    width: 100%;
  }

  .legal_notice td {
    padding: 1rem 0;
  }

  .form th {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 599px) {
  .form td {
    padding: 10px;
  }

  .form th .red {
    margin-left: 5px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1024px) {
  .form input[type='text'],
  .form input[type='tel'],
  .form input[type='email'] {
    width: 90%;
    max-width: 400px;
  }
}

/* Page Top Button */
#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  z-index: 999;
  margin: 0 !important;
}

#page-top a {
  background: var(--color-theme);
  text-decoration: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1281px) {
  #page-top a:hover {
    text-decoration: none;
    background: var(--color-theme-light);
  }
}

@media only screen and (max-width: 599px) {
  #page-top {
    bottom: 57px;
  }
}

.bt_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1.5rem 0;
}

.bt01,
.bt02,
.form_bt,
.contact_bt {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition:
    var(--transition),
    transform 0.3s ease;
  font-weight: bold;
  height: 100%;
  text-decoration: none !important;
}

.bt01 {
  background-color: var(--color-theme);
  color: #fff;
  border-radius: 5px;
  font-size: 1.8rem;
  padding: 15px 30px;
}

.bt01:hover {
  background-color: var(--color-theme-light);
  transform: translateY(-5px);
}

.form_bt {
  border: solid 1px var(--color-theme);
  color: #fff;
  background-color: var(--color-theme);
  min-width: 250px;
  padding: 10px 20px;
  font-weight: 400;
  position: relative;
  opacity: 1;
}

.form_bt:hover {
  background-color: var(--color-theme-light);
  border: solid 1px var(--color-theme-light);
  transform: translateY(-5px);
}

.form_bt::after {
  font-family: 'Font Awesome 5 Free';
  content: '\f0da';
  font-weight: 900;
  padding-left: 1rem; /*文字との隙間*/
  color: var(--color-theme-second);
  font-size: 1.4rem;
  text-decoration: none;
  vertical-align: middle; /* 縦中央に配置 */
  display: inline-block; /* インラインブロック要素に変更 */
  transition:
    var(--transition),
    transform 0.3s ease;
}

.contact_bt {
  background-color: var(--color-theme);
  color: #fff;
  border-radius: 5px;
  font-size: 2.6rem;
  padding: 15px 30px;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.contact_bt:hover {
  transform: translateY(-5px);
}
.contact_bt i {
  margin-right: 1rem;
  font-size: 3rem;
}

@media screen and (min-width: 1025px) {
  .bt01 {
    min-width: 260px;
  }
}

@media only screen and (max-width: 1024px) {
  .bt_list li a {
    width: 100%;
  }
  .contact_bt {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 599px) {
  .bt_list li {
    width: 100%;
  }
}

@media only screen and (max-width: 599px) {
  .bt01,
  .bt02 {
    width: 100%;
    max-width: 300px;
  }
}

.marker {
  background: linear-gradient(transparent 55%, #fff100 55%);
}

/* Post thumbnail styles */
.post-thumbnail {
  margin: 2rem 0;
  text-align: center;
}

.post-thumbnail .featured-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 auto;
}

/* Post meta styles */
.post-meta {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.post-meta .entry-date {
  color: var(--color-gray-darken);
  font-size: 1.4rem;
}

.post-meta .post-categories {
  color: var(--color-theme);
  font-size: 1.4rem;
}

.post-meta .post-categories a {
  color: var(--color-theme);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  background: var(--color-sky);
  border-radius: 4px;
  margin-right: 0.5rem;
}

.post-meta .post-categories a:hover {
  background: var(--color-theme);
  color: #fff;
}

/* Post content styles */
.post-content {
  line-height: 1.8;
  font-size: 1.6rem;
}

/* Responsive post thumbnail */
@media screen and (max-width: 768px) {
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .post-thumbnail {
    margin: 1rem 0;
  }
}

/* Blog cards styles */
.blog-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: grid;
  grid-template-columns: 300px 1fr;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-image a {
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .card-thumbnail {
  transform: scale(1.05);
}

.no-thumbnail {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  height: 100%;
  background: linear-gradient(135deg, var(--color-sky-light), var(--color-theme));
}

.placeholder-image {
  color: #fff;
  font-size: 2.5rem;
  opacity: 0.7;
}

.blog-card-content {
  padding: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.blog-card-title {
  margin: 0 0 1rem 0;
  font-size: 2.4rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--color-theme);
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 9900;
  font-style: normal;
}

.blog-card-title a:hover {
  color: var(--color-theme-light);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-gray-darken);
}

.blog-card-date {
  color: var(--color-gray-darken);
}

.blog-card-category a {
  color: var(--color-theme);
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  background: var(--color-sky);
  border-radius: 5px;
  font-size: 1.1rem;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.blog-card-category a:hover {
  background: var(--color-theme);
  color: #fff;
}

.blog-card-excerpt {
  color: var(--color-gray-darken);
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-readmore {
  text-align: right;
}

.readmore-link {
  color: var(--color-theme);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.readmore-link:hover {
  color: var(--color-theme-darken);
}

.readmore-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.readmore-link:hover i {
  transform: translateX(4px);
}

/* Responsive blog cards */
@media screen and (max-width: 768px) {
  .blog-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .blog-card-image {
    aspect-ratio: 4/3;
  }

  .blog-card-content {
    padding: 1rem;
  }

  .blog-card-title {
    font-size: 1.6rem;
  }

  .blog-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

.nav-previous a {
  background-color: var(--color-theme);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}
.nav-next a {
  background-color: var(--color-theme);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.side-box .widget-title {
  background-color: var(--color-theme);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 1.8rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.side-box .widget-title:not(:first-of-type) {
  margin-top: 2rem;
}

.side-box .widget a {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  color: var(--color-theme);
  padding: 1.5rem;
  border-bottom: dashed 1px var(--color-theme);
  display: block;
  font-size: 1.6rem;
  position: relative;
  transition: all 0.3s ease;
}

.side-box .widget a:hover {
  color: var(--color-sky);
}

.side-box .widget a::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f105';
  font-weight: 900;
  margin-right: 10px;
  color: var(--color-theme);
  font-size: 1.8rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

/*pagenavi*/
.wp-pagenavi {
  clear: both;
  text-align: center;
  font-size: 14px;
  padding: 25px 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
  color: #fff;
  background-color: var(--color-theme);
  border: 1px solid var(--color-theme);
  padding: 5px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wp-pagenavi a:hover {
  background-color: #fff;
  color: var(--color-theme);
  border-color: var(--color-theme);
}
.wp-pagenavi span.current {
  color: var(--color-theme);
  background-color: #fff;
  border-color: var(--color-theme);
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    color: #fff;
    background-color: var(--color-theme);
    border: 1px solid var(--color-theme);
    padding: 1% 3%;
    margin: 2% 2px;
    white-space: nowrap;
    border-radius: 3px;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
    display: inline-block;
  }
}
