/* Web Fonts And Sub Set Fonts
=============================================================*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;700&display=swap");


/* 源柔ゴシック サブセット */
@import url(../fonts/genjyuugothic/light/GenJyuuGothic-Light.css);
@import url(../fonts/genjyuugothic/normal/GenJyuuGothic-Normal.css);
@import url(../fonts/genjyuugothic/regular/GenJyuuGothic-Regular.css);
@import url(../fonts/genjyuugothic/medium/GenJyuuGothic-Medium.css);
@import url(../fonts/genjyuugothic/bold/GenJyuuGothic-Bold.css);

/* カスタムプロパティs
=============================================================*/

:root {
  /* 色 */
  --color-fonts: #333333; /* 文字 */
  --color-base: #ffffff; /* ベースカラー */
  --color-main: #0075b8; /* メインカラー */
  --color-sub: #359dd1; /* サブカラー */
  --color-accent: #ff4f55; /* アクセントカラー */
  --color-bcg-1: #707070;
  --color-bcg-2: #cdd6dd;
  --color-bcg-3: #f1f8fe;
  --color-border: #cdd6dd;
  /* z-index */
  --z-index-container: 0;
  --z-index-header: 100;
  --z-index-overlay: 200;
  --z-index-spmenu: 300;
  --z-index-hamburger: 400;
  /* font-family */
  --font-family-notosansjp: "Noto Sans JP", "Helvetica Neue", Arial,
  "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-family-opensans: "Open Sans", sans-serif;
  --font-family-genjyuugothic: "GenJyuuGothic", "Noto Sans JP", "Helvetica Neue",
  Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  /* 幅 */
  /* --width-xs: 0; */
  --width-sm: 576px;
  --width-md: 768px;
  --width-lg: 992px;
  --width-xl: 1200px;
  --width-xxl: 1400px;
}

/* Note
=============================================================

  ブレイクポイント一覧
  
  xs: 0
  sm: 576px
  md: 768px
  lg: 992px
  xl: 1200px
  xxl: 1400px

  @media only screen and (max-width: 1399.98px) {
  }
  @media only screen and (max-width: 1199.98px) {
  }
  @media only screen and (max-width: 991.98px) {
  }
  @media only screen and (max-width: 767.98px) {
  }
  @media only screen and (max-width: 575.98px) {
  }

  @media only screen and (min-width: 1400px) {
  }
  @media only screen and (min-width: 1200px) {
  }
  @media only screen and (min-width: 992px) {
  }
  @media only screen and (min-width: 768px) {
  }
  @media only screen and (min-width: 576px) {
  }
  
=============================================================*/

/* 初期化
=============================================================*/

html {
  scroll-behavior: smooth;
}

a {
  color: var(--color-sub);
}

a:hover {
  opacity: 1;
}

address {
  font-style: normal;
}

img {
  image-rendering: auto;
}

hr {
  width: 100%;
  height: 0;
  margin: 20px 0;
  border: none;
  border-top: 2px solid var(--color-border);
}

/* Chromeで画像がぼやけるのを防ぐ */
_:lang(x)::-internal-media-controls-overlay-cast-button, img {
  image-rendering: -webkit-optimize-contrast;
}

/* input */
/* input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
  padding: .5em;
  border: 1px solid #cccccc;
  border-radius: 3px;
  outline: none;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, select:focus, textarea:focus {
  padding: .5em;
  outline: 2px solid #4891d3;
} */

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea, select {
  max-width: 100%;
  margin-top: 10px;
  padding: .5em;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.2em;
  outline: none;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, select:focus, textarea:focus, select:focus {
  outline: 2px solid var(--color-sub);
}

/* Fonts
=============================================================*/

body {
  color: var(--color-fonts);
  font-weight: 400;
  font-family: var(--font-family-notosansjp);
}

/* Wrapper
=============================================================*/

.container {
  position: relative;
  z-index: var(--z-index-container);
  width: 100%;
  overflow-x: hidden;
  background-color: var(--color-base);
}

/* Main
=============================================================*/

.main {
  width: 100%;
}

/* Header 'header, h'
=============================================================*/

.header {
  position: relative;
  z-index: var(--z-index-header);
  width: 100%;
  height: 80px;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, .05);
  background-color: #ffffff;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 20px;
}

/* グローバルナビ 
=============================================================*/

/* PC */
@media only screen and (min-width: 992px) {
  .g-nav {
    margin-left: auto;
    font-size: 14px;
    line-height: 1em;
  }

  .g-nav__ul {
    display: flex;
    list-style: none;
  }

  .g-nav__li {
    padding: .25em .5em;
    line-height: 1em;
  }

  .g-nav__li--contact {
    display: none;
  }

  .g-nav a {
    display: inline-block;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
  }
}

@media (min-width: 1200px) {
  .g-nav {
    font-size: 16px;
  }
}

@media (min-width: 1400px) {
  .g-nav {
    padding: 0 40px;
    font-size: 18px;
    line-height: 1em;
  }

  .g-nav__li {
    padding: .25em .75em;
  }
}

/* mobile */
@media only screen and (max-width: 991.98px) {
  .g-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-index-spmenu);
    transform: translateY(-100%);
    width: 100%;
    padding: 0;
    overflow-y: auto;
    background: none;
    font-size: 18px;
    transition: all .6s;
  }

  .g-nav__ul {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .g-nav__li {
    justify-content: center;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    color: var(--color-fonts);
  }

  .g-nav__li a {
    display: block;
    position: relative;
    padding: .75em 0;
    color: inherit;
    font-weight: 500;
    text-decoration: none;
    text-decoration: none;
    text-align: center;
  }

  .g-nav__li span {
    margin-right: -.1em;
    letter-spacing: .1em;
  }

  .g-nav__li:not(:last-child) {
    border-bottom: 1px solid #cccccc;
  }

  .g-nav.active {
    transform: translateY(0%);
  }
}

/* お問い合わせボタン PC */
.h-btn-contact {
  display: block;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  font-size: 12px;
  line-height: 1em;
  white-space: nowrap;
  aspect-ratio: 4 / 3;
}

.h-btn-contact a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJfeDMxXzAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IgoJIHZpZXdCb3g9IjAgMCA2NCA1MC4zIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA2NCA1MC4zOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+CjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGw6I0ZGRkZGRjt9Cjwvc3R5bGU+CjxwYXRoIGlkPSJJY29uX2lvbmljLW1kLW1haWwiIGNsYXNzPSJzdDAiIGQ9Ik01Ny45LDBINi4xQzIuNywwLDAsMi43LDAsNi4xdjM4LjFjMCwzLjQsMi43LDYuMSw2LjEsNi4xaDUxLjhjMy40LDAsNi4xLTIuNyw2LjEtNi4xCglWNi4xQzY0LDIuNyw2MS4zLDAsNTcuOSwweiBNNTcuMSwxM0wzMiwyOS43TDYuOSwxM1Y2LjlMMzIsMjMuNkw1Ny4xLDYuOVYxM3oiLz4KPC9zdmc+Cg==");
  background-position: top 25% center;
  background-size: 33.33% auto;
  background-color: var(--color-sub);
  color: #ffffff;
  text-decoration: none;
}

.h-btn-contact span {
  display: block;
  position: absolute;
  bottom: 18%;
  left: 0;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.h-btn-contact a:hover {
  opacity: .8;
}

@media only screen and (max-width: 991.98px) {
  .h-btn-contact--sp-hide {
    display: none;
  }
}

/*  ハンバーガーメニュー
=============================================================*/

.hamburger {
  display: none;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: var(--z-index-hamburger);
  width: 42px;
  height: 42px;
  border-radius: 3px;
  background: rgba(240, 240, 240, .8);
  text-align: center;
  cursor: pointer;
}

@media only screen and (max-width: 991.98px) {
  .hamburger {
    display: block;
  }
}

.hamburger::before {
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  color: var(--color-sub);
  font-size: 10px;
  font-family: var(--font-family-opensans);
  content: "MENU";
  transition: .6s ease-in-out;
}

.hamburger span {
  display: block;
  position: absolute;
  left: 6px;
  width: 30px;
  height: 2px;
  background: var(--color-sub);
  transition: .3s ease-in-out;
}

.hamburger span:nth-of-type(1) {
  top: 10px;
}

.hamburger span:nth-of-type(2) {
  top: 20px;
}

.hamburger span:nth-of-type(3) {
  top: 30px;
}

.hamburger.active {
  position: fixed;
}

.hamburger.active span {
  background: #ff5f57;
}

.hamburger.active::before {
  content: "CLOSE";
}

.hamburger.active span:nth-of-type(1) {
  top: 20px;
  left: 6px;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-of-type(2), .hamburger.active span:nth-of-type(3) {
  top: 20px;
  transform: rotate(45deg);
}

/* ハンバーガーメニュー表示時のオーバーレイ */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--z-index-overlay);
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .4);
  content: "";
}

@media only screen and (max-width: 991.98px) {
  .overlay.active {
    display: block;
  }
}

/* オーバーレイのフェードアニメーション */
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Footer 'footer, f'
=============================================================*/
.footer {
  width: 100%;
}

/* お問い合わせ */
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  gap: 20px;
}

.footer-contact__btn {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 120px;
  padding: 0 .75em;
  background-color: #207eb0;
  color: #ffffff;
  font-size: 20px;
  font-family: var(--font-family-genjyuugothic);
  text-decoration: none;
  text-align: center;
  transition: opacity .2s ease-out;
}

.footer-contact__btn--tel {
  background-color: #2697d3;
}

.footer-contact__btn--tel img {
  display: block;
  width: 100%;
  height: auto;
  margin: .5em 0 0;
  padding: 0 12% 0 5%;
}

.footer__contact-btn--tel small {
  font-size: .65em;
  line-height: 1.4em;
}

.footer-contact__btn:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translate(-4.242px, -50%) rotate(-45deg);
  width: .8484em;
  height: .8484em;
  border-right: 3px solid #ffff00;
  border-bottom: 3px solid #ffff00;
  content: "";
  transition: all .2s ease-out;
}


.footer-contact__btn:hover::after {
  right: calc(1em - 2px);
}

@media only screen and (max-width: 767.98px) {
  .footer-contact {
    flex-direction: column;
  }

  .footer-contact__btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-contact__btn {
    font-size: 14px;
  }
}

/* アクセス */

.footer-access {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92%;
  max-width: 992px;
  margin: 0 auto;
  gap: 40px;
}

@media only screen and (max-width: 767.98px) {
  .footer-access {
    flex-direction: column;
  }
}

.footer-access__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  text-decoration: none;
}

.footer-access__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-access__address {
  font-size: 16px;
  line-height: 2em;
}

@media only screen and (min-width: 768px) {
  .footer-access__address {
    padding-left: 40px;
    border-left: 2px solid #207eb0;
  }
}

@media only screen and (max-width: 767.98px) {
  .footer-access__logo {
    max-width: 240px;
  }

  .footer-access__address {
    font-size: 12px;
  }
}

.footer-copy {
  width: 100%;
  padding: .5em;
  background-color: var(--color-main);
  color: #ffffff;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
}

/* back to top */
.backtotop {
  display: block;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: var(--z-index-hamburger);
  width: 42px;
  height: 42px;
  border-radius: 3px;
  /* background-color: var(--color-sub); */
  background-color: rgba(53, 157, 209, .8);
}

.backtotop::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(45deg);
  width: 16px;
  height: 16px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
}

@media only screen and (max-width: 767.98px) {
  .backtotop {
    font-size: 12px;
  }
}

/* Sidebar 'sidebar'
=============================================================*/

.sidebar {
  flex: 1 0 200px;
  max-width: 280px;
  margin-top: 23px;
}

@media only screen and (max-width: 767.98px) {
  .sidebar {
    flex: 1;
    max-width: initial;
  }
}

.sidebar ul {
  list-style: none;
}

.sidebar .archive-dropdown {
  width: 100%;
  max-width: 200px;

  appearance: auto !important;
}
/*=============================================================

コンテンツ

=============================================================*/

/* メインビジュアル、アイキャッチ 'mainvisual, 'featured'
=============================================================*/

.mainvisual {
  width: 100%;
  padding: 40px 0;
  background-color: var(--color-main);
}

.mainvisual__inner {
  display: flex;
  position: relative;
  width: 92%;
  max-width: var(--width-lg);
  margin: 0 auto;
  color: #ffffff;
}

.mainvisual__catchphrase {
  flex: 3;
  padding: .25em 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 40px;
  line-height: 2em;
  letter-spacing: .05em;
  white-space: nowrap;
  font-feature-settings: "palt";
}

.mainvisual__illust {
  flex: 1;
  background-image: url(../images/bizkun.png);
  background-position: center center;
  background-size: contain;
}

@media only screen and (max-width: 1199.98px) {
  .mainvisual__catchphrase {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767.98px) {
  .mainvisual__catchphrase {
    font-size: 24px;
  }
}

@media only screen and (max-width: 575.98px) {
  .mainvisual {
    padding: 20px 0;
  }

  .mainvisual__inner {
    flex-direction: column;
    align-items: center;
  }

  .mainvisual__catchphrase {
    padding: 0;
    font-size: 20px;
    letter-spacing: 0;
    white-space: pre-wrap;
  }

  .mainvisual__illust {
    width: 100px;
    height: 100px;
    min-height: 100px;
    background-size: contain;
  }
}

.featured {
  display: block;
  width: 100%;
  height: auto;
  margin: 20px 0 0;
}

.featured img {
  display: block;
  width: 100%;
  height: auto;
}

/* 項 'sect, section'
=============================================================*/

/* 基本 */
.sect {
  width: 100%;
  margin: 0;
}

/* 背景色 */
.bcg {
  padding: 80px 0;
}

.bcg--light-gray {
  background-color: #f5f7f9;
}

.bcg--light-blue {
  background-color: #e1f3f6;
}

.bcg--blue {
  background-color: #207eb0;
}

/* 固定ページ */
.sect-page {
  width: 92%;
  max-width: var(--width-lg);
  margin: 0 auto;
}



/* ブログ2カラム */
.sect-twocol-blog {
  display: flex;
  width: 92%;
  /* 992px */
  max-width: var(--width-lg);
  margin: 0 auto;
  gap: 80px 40px;
}

@media only screen and (max-width: 767.98px) {
  .sect-twocol-blog {
    flex-direction: column;
  }
}

/* ブログ */
.sect-blog {
  flex: 3 1 auto;
  overflow: hidden;
}

@media only screen and (max-width: 767.98px) {
  .sect-blog {
    flex: 1;
    max-width: initial;
  }
}

/* アーカイブ投稿抜粋 */
.sect-archive {
  width: 100%;
  margin: 0;
}

.sect-archive:not(:first-child) {
  margin: 40px 0 0;
}

.sect-side {
  margin: 0;
}

.sect-side:not(:first-child) {
  margin: 40px 0 0;
}

/* 見出し 'heading'
=============================================================*/

/* 基本 */
.heading {
  color: var(--color-main);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .1em;
  font-feature-settings: "palt";
}

.heading--center {
  width: fit-content;
  margin: 0 auto;
  padding-left: .1em;
}

@media only screen and (max-width: 767.98px) {
  .heading {
    font-size: 24px;
  }
}

.heading a {
  text-decoration: none;
}

/* セクション見出し（中心線） */
.heading-sect {
  position: relative;
  margin: 0 auto;
  color: var(--color-main);
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  font-feature-settings: "palt";
}

.heading-sect span {
  display: inline-block;
  position: relative;
  z-index: 20;
  padding: 0 1em;
  background-color: var(--color-base);
  letter-spacing: .1em;
  text-indent: .1em;
  white-space: nowrap;
}

.heading-sect::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 10;
  width: 100%;
  border-top: 4px solid var(--color-sub);
  content: "";
}

@media only screen and (max-width: 767.98px) {
  .heading-sect {
    font-size: 24px;
  }
}

/* 英語つき見出し */
.heading-sect-2 {
  color: var(--color-fonts);
  font-size: 42px;
  font-family: var(--font-family-genjyuugothic);
  text-align: left;
}

.heading-sect-2__item {
  display: block;
}

.heading-sect-2__item--en {
  margin-bottom: .5em;
  color: var(--color-main);
  font-weight: 300;
  font-size: .5em;
  font-family: "Roboto", sans-serif;
  letter-spacing: .1em;
  text-indent: .1em;
}

@media only screen and (max-width: 767.98px) {
  .heading-sect-2 {
    font-size: 28px;
  }
}

/* サブダイトル */
.heading-sect-2-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 2em;
  font-family: var(--font-family-genjyuugothic);
  text-align: justify;
}

@media only screen and (max-width: 767.98px) {
  .heading-sect-2-subtitle {
    font-size: 18px;
  }
}


/* 固定ページ（下線） */
.heading-page {
  position: relative;
  padding: 0 0 .5em;
  color: var(--color-main);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: .1em;
  font-feature-settings: "palt";
}

.heading-page::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
  max-width: 25%;
  height: 2px;
  background-color: var(--color-main);
  content: "";
}

.heading-page--center {
  width: fit-content;
  margin: 0 auto;
  padding-left: .1em;
}

.heading-page--center:after {
  left: 50%;
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 767.98px) {
  .heading-page {
    font-size: 24px;
  }
}

/* 下線 */
.heading-sub--underline {
  position: relative;
  padding: 0 0 .5em;
}

.heading-sub::after {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
  max-width: 25%;
  height: 1px;
  background-color: #666666;
  content: "";
}

.heading-sub--underline::after {
  display: inline-block;
}

.heading-sub--center {
  width: fit-content;
  margin: 0 auto;
  padding-left: .1em;
}

.heading-sub--center:after {
  left: 50%;
  transform: translate(-50%, 0);
}

/* インデント */
.heading-wrapper {
  width: 100%;
  padding: 0 2%;
}


/* 副見出し */
.heading-sub {
  font-weight: 700;
  font-size: 24px;
  line-height: 2em;
  font-family: var(--font-family-genjyuugothic);
} 



/* 投稿ページ見出し
=============================================================*/
.heading-single {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 2px solid var(--color-border);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: .05em;
}

@media only screen and (max-width: 767.98px) {
  .heading-single {
    font-size: 20px;
  }
}

.heading-single--color-main {
  color: var(--color-main);
}

.heading-single--color-sub {
  color: var(--color-sub);
}

.heading-single a {
  color: inherit;
  text-decoration: none;
}

/* サイドバー見出し */
.heading-side {
  margin-bottom: .5em;
  padding-bottom: .5em;
  border-bottom: 2px solid var(--color-border);
  color: var(--color-main);
  font-weight: 500;
  font-size: 24px;
}

@media only screen and (max-width: 767.98px) {
  .heading-side {
    font-size: 20px;
  }
}

/* ボタン 'btn, button'
=============================================================*/

/* もっと見る */
.btn-more {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  padding: .5em 1.75em .5em 1.5em;
  border: 1px solid var(--color-bcg-2);
  border-radius: 3px;
  background-color: var(--color-sub);
  color: #ffffff;
  font-weight: 500;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: .1em;
  text-decoration: none;
  text-indent: .1em;
  white-space: nowrap;
  cursor: pointer;
  transition: all ease .2s;
}

.btn-more::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translate(0, -50%) rotate(-45deg);
  width: .4em;
  height: .4em;
  border-right: 2px solid #ffff00;
  border-bottom: 2px solid #ffff00;
  content: "";
  transition: right ease .2s;
}

.btn-more:hover {
  opacity: .9;
}
.btn-more:hover::after {
  right: 7px;
}

@media only screen and (max-width: 575.98px) {
  .btn-more {
    font-size: 20px;
  }
}

/* リスト 'list'
=============================================================*/

/* 箇条書き */
.list {
  list-style: disc;
  padding-left: 1em;
}

.list--order {
  list-style: decimal;
}

.list__item:not(:first-child) {
  margin-top: .5em;
}

.list--center {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

/* 写真やカードを並べる */
.list-card {
  /* ul */
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  gap: 20px;
}

.list-card__item {
  /* li */
  width: calc((100% - 40px) / 3);
}

.list-card__item--twocol {
  width: calc((100% - 20px) / 2);
}

@media only screen and (max-width: 767.98px) {
  .list-card__item {
    width: calc((100% - 20px) / 2);
  }
}

@media only screen and (max-width: 575.98px) {
  .list-card {
    gap: 20px 10px;
  }

  .list-card__item, .list-card__item--twocol {
    width: calc((100% - 10px) / 2);
  }
}

/* カテゴリーの一覧 */
.list-categories {
  /* ul */
  list-style: none;
  font-size: 16px;
}

.list-categories li {
  margin-top: 1em;
  line-height: 1.5em;
}

/* タグの一覧 */
.list-tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 16px;
  gap: .5em 1em;
}

.list-tags li {
  line-height: 1.5em;
}

.list-tags a:before {
  display: inline;
  content: "#";
}

/* テーブル 'tbl, table'
=============================================================*/

/* カード 'card'
=============================================================*/

/* 図表 'figure'
=============================================================*/

.figure {
  width: 100%;
  margin: 0 auto;
}

.figure img {
  display: block;
  width: 100%;
  height: auto;
}

.figure figcaption {
  margin: .5em 0;
  text-align: center;
}


/* 画像にキャプションを重ねる */
.figure-caption-overlay {
  position: relative;
  width: 100%;
  max-width: var(--width-sm);
  margin: 0;
  aspect-ratio: 4 / 3;
}

.figure-caption-overlay img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-border);
  object-fit: cover;
}

.figure-caption-overlay figcaption {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: .5em 0 .5em;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), transparent);
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: .1em;
  text-align: center;
  text-indent: .1em;
}


/* 投稿 'post'
=============================================================*/

/* 投稿日時 */
.post-date {
  display: block;
  margin: .5em 0 0;
  color: #cccccc;
  font-size: 16px;
  font-family: var(--font-family-opensans);
  white-space: nowrap;
}

.post-date__icon {
  display: inline;
  width: auto;
  height: 1em;
  margin-right: .25em;
  vertical-align: -5%;
}

.post-date__time {
  display: inline;
  line-height: 1em;
}

@media only screen and (max-width: 575.98px) {
  .post-date {
    font-size: 12px;
  }
}

/* 投稿タイトル */
.post-title {
  font-weight: 500;
  font-size: 28px;
  text-align: justify;
}

.post-title a {
  text-decoration: none;
}

/* 投稿 抜粋 */
.post-excerpt {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8em;
  text-align: justify;
}

.post-excerpt__thumbnail {
  float: right;
  margin: 0 0 10px 20px;
}

@media only screen and (max-width: 767.98px) {
  .post-excerpt__thumbnail {
    float: none;
    margin: 0 0 20px;
  }
}

.post-excerpt__thumbnail a {
  display: block;
}

.post-excerpt__thumbnail img {
  display: block;
  width: 200px;
  max-width: 200px;
  height: auto;
  border: 1px solid var(--color-border);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* 投稿 続きを読む */
.post-more {
  margin-top: 20px;
}

.post-more a {
  color: var(--color-main);
}

/* 前後の記事リンク */
.previous-and-next {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: auto 0 0;
  color: var(--color-main);
  font-size: 16px;
  gap: 2em;
}

@media only screen and (max-width: 767.98px) {
  .previous-and-next {
    font-size: 14px;
  }
}

/* 段落 pタグのWrapper
=============================================================*/

.paragraph {
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: .05em;
  text-align: justify;
}

.paragraph a {
  color: var(--color-main);
  font-weight: 700;
  /* text-decoration: none; */
}

.paragraph strong {
  color: var(--color-main);
  font-weight: 700;
}

/* フォントサイズ */
.paragraph--sm {
  font-size: 14px;
}

.paragraph--md {
  font-size: 16px;
}

.paragraph--lg {
  font-size: 18px;
}

.paragraph--fit-content {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

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

.paragraph p:not(:first-child) {
  margin-top: .5em;
}

.paragraph--no-line-spacing p:not(:first-child) {
  margin-top: 0;
}

@media only screen and (max-width: 767.98px) {
  .paragraph {
    font-size: 14px;
  }

  .paragraph--sm {
    font-size: 12px;
  }

  .paragraph--md {
    font-size: 14px;
  }

  .paragraph--lg {
    font-size: 16px;
  }
}

/* その他ブロック 
=============================================================*/

/* ロゴ */
.logo {
  width: 100%;
  max-width: 280px;
}

.logo--header {
  margin-left: 2%;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 991.98px) {
  .logo--header {
    max-width: 240px;
  }
}

/* ブログ新着 */
.new-arrival {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 40px 20px;
}

.new-arrival__item {
  width: calc((100% - 40px) / 3);
}

.new-arrival__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-border);
  background-color: #ffffff;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.new-arrival__title {
  margin: 5px 0 0;
  color: var(--color-main);
  font-weight: 500;
  font-size: 20px;
  text-align: justify;
}

.new-arrival__title a {
  color: inherit;
  text-decoration: none;
}

.new-arrival__detail {
  margin: 8px 0 0;
  padding: 0 10px;
}

@media only screen and (max-width: 767.98px) {
  .new-arrival__item {
    width: calc((100% - 20px) / 2);
  }
  .new-arrival__title {
    font-size: 16px;
  }
}

@media only screen and (max-width: 575.98px) {
  .new-arrival {
    gap: 40px 10px;
  }

  .new-arrival__item {
    width: calc((100% - 10px) / 2);
  }
}

/* ターム一覧 */
.list-post-terms {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 10px 0 0;
  gap: .5em;
}

/* 記事の属するターム */
.post-term {
  width: fit-content;
  min-width: 3em;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background-color: #efefef;
  color: #aaaaaa;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  font-feature-settings: "palt";
}

.post-term a {
  display: block;
  width: 100%;
  padding: .1em .75em;
  color: inherit;
  text-decoration: none;
}

/* 新着 */
.post-term--small {
  font-size: 12px;
}

/* タグ */
.post-term--tags {
  width: initial;
  min-width: initial;
  border: none;
  border-radius: initial;
  background-color: initial;
  color: #aaaaaa;
  font-size: 14px;
  font-size: 14px;
  white-space: nowrap;
  font-feature-settings: "palt";
}

.post-term--tags a::before {
  display: inline;
  content: "#";
}

.post-term--tags a {
  padding: .1em 0 .1em .5em;
}

@media only screen and (max-width: 575.98px) {
  .post-term {
    font-size: 12px;
  }

  .post-term--small {
    font-size: 10px;
  }

  .post-term--small a {
    padding: .1em .5em;
  }
}

/* アクセス
=============================================================*/

.access {
  display: flex;
  align-items: flex-end;
  gap: 80px 40px;
}

.access__addr {
  flex: 1;
}

.access__maps {
  flex: 2;
}

.access__text {
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: .05em;
}

.access__text span {
  display: inline-block;
}

.access__figure {
  width: 100%;
  max-width: 320px;
  margin: 0;
}

.access__figure img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767.98px) {
  .access {
    flex-direction: column;
    align-items: center;
  }
  .access__addr {
    flex: 1;
    width: 100%;
    max-width: 280px;
  }

  .access__maps {
    flex: 1;
    width: 100%;
  }
}

.gmaps iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

/* お気軽にお問い合わせください */

.contact-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.contact-btn img {
  display: block;
  width: 100%;
  height: auto;
}