﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cardo:wght@400;700&display=swap');
/* Google font Icon */
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");


/*========================
ナビゲーション
========================*/
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin: 0;
  background: #FFF;
  z-index: 1;
}
.navinner {
  position: relative;
  width:100%;
  height: 100px;
  margin: auto;
  padding:0 84px 0 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  align-items:center;
}
.navinner>div:first-of-type{
  margin-right: auto;
}
@media screen and (max-width: 1240px) {
.navinner  {
  height: 84px;
  }
}
@media screen and (max-width: 640px) {
.navinner  {
  height: 64px;
  padding:0 64px 0 0;
  }
}

/*-------------------------
サイトタイトル
--------------------------*/
.nav_title{
  padding: 0 0 0 24px;
}
.nav_title h1{
  font-size: 1.3em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.nav_title h1 span{
  color: #56BAC2;
  font-size: 0.85em;
  border-top: 1px solid #56BAC2;
  border-bottom: 1px solid #56BAC2;
  padding: 0.3em 0.5em;
  margin-left: 0.8em;
}
.nav_title h1 br{
  display: none;
}
@media screen and (max-width: 960px) {
.nav_title h1{
  font-size: 0.9em;
  line-height: 1.2;
  }
.nav_title h1 span{
  font-size: 0.8em;
  margin-left: 0;
  border-top: none;
  border-bottom: none;
  padding: 0 0 0 0.2em;
  }
.nav_title h1 br{
  display: block;
  }
}
@media screen and (max-width: 640px) {
.nav_title{
  padding: 0 0 0 18px;
  }
}
@media screen and (max-width: 540px) {
.nav_title{
  display: none;
  }
}

/*-------------------------
電話リンク
--------------------------*/
.nav_tel {
  width: auto;
  margin-right: 18px;
}
.nav_tel a{
  position:relative;
  display: inline-block;
  font-size: 1.7em;
  line-height: 1;
  padding: 0 0 0 1em;
  color: #F2B44E;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  margin: 0 auto;
  letter-spacing: 0.06em;
}
.nav_tel a:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/icontel_orange.png) no-repeat;
  background-size:contain;
}
.nav_tel p{
  display: block;
  font-size: 0.7em;
  line-height: 1;
  white-space: nowrap;
  margin-top: 0.2em;
  text-align: center;
}
@media screen and (max-width: 1240px) {
.nav_tel {
  margin-right: 12px;
  }
.nav_tel a{
  font-size: 1.25em;
  }
.nav_tel p{
  margin-top: 0;
  }
.nav_tel p span{
  display: none;
  }
}
@media screen and (max-width: 767px) {
.nav_tel a{
  font-size: 1.1em;
  }
}

/*-------------------------
フォームリンク
--------------------------*/
.nav_form {
  width: auto;
  margin-right: 8px;
}
.nav_form a {
  max-width: 240px;
	display: inline-block;
	color: #FFF;
	background-color: #F2B54F;
	text-decoration: none;
	padding: 1em 18px 1em 2.5em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
}
.nav_form a:before {
	position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:1.05em;
  height:1.05em;
  background:url(../img/iconform_white.png) no-repeat;
  background-size:contain;
}
.btn:hover{
	background-color: #9E7D54;
	transition: 0.3s;
}
@media screen and (max-width: 1240px) {
.nav_form a {
	padding: 0.8em 18px 0.8em 2.5em;
  font-size: 0.9em;
  }
}
@media screen and (max-width: 767px) {
.nav_form a {
	padding: 0.8em 12px 0.8em 2.2em;
  font-size: 0.8em;
  }
.nav_form a:before {
  left: 10px;
  }
}

/*-------------------------
ハンバーガーメニュー
--------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 320px;
  height: 100%;
  background-color: #56BAC2;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 0 18px 24px;
  box-sizing: border-box;
  z-index: 10;
}
.navintitle {
  position: absolute;
  top: 24px;
  left: 24px;
  font-size: 0.9em;
  line-height: 1.5;
  font-weight: 600;
  color: #111;
}
.navintitle span{
  display: block;
  font-size: 0.9em;
}
/* メニューが開いているとき */
.menu.open {
  right: 0;
}
/* ボタンのスタイル */
.hamburger {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  cursor: pointer;
  z-index: 12;
}
.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #56BAC2;
  margin: 0.6em 0;
  transition: 0.4s;
}
/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.6em, 0.6em);
  background-color: #FFF;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(0.5em, -0.5em);
  background-color: #FFF;
}
/* メニューリストのスタイル */
.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 100px;
}
.menu li {
  margin: 12px 0;
}
.menu li a {
  position: relative;
  background-color: #FFF;
  color: #56BAC2;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  padding: 0.8em 1em;
  font-weight: 600;
  line-height: 1;
  font-size: 0.95em;
  white-space: nowrap;
  text-decoration: none;
  display: block;
}
.menu li a:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 100
}
@media screen and (max-width: 1240px) {
.hamburger {
  top: 18px;
  }
}
@media screen and (max-width: 640px) {
.hamburger {
  top: 12px;
  right: 18px;
  width: 36px;
  }
.hamburger span {
  height: 2px;
  }
}

/* メニュー内電話リンク */
.navintel{
  padding: 0 0.8em;
}
.navintel p{
  font-size: 0.8em;
  font-weight: 600;
  color: #FFF;
  line-height: 1;
  margin: 24px 0 12px;
}
.navintel a{
  position:relative;
  display: inline-block;
  font-size: 1.4em;
  line-height: 1;
  padding: 0 0 0 1em;
  color: #FFF;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  margin: 0 auto;
  letter-spacing: 0.08em;
}
.navintel a:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/icontel_white.png) no-repeat;
  background-size:contain;
}
.navintel span{
  display: block;
  font-size: 0.7em;
  color: #FFF;
  line-height: 1;
  margin-top: 0.3em;
}


/*========================
フッター
========================*/
footer {
  width: 100%;
  max-width: 1000px;
  padding: 0 32px 24px;
  margin: 0 auto;
  font-size: 0.9em;
  text-align: center;
}
.copyright {
  font-size: 0.75em;
  color: #AAA;
  margin-top: 18px;
}


/*========================
各コンテンツ
========================*/
/*-------------------------
２カラム
--------------------------*/
.message,
.vision,
.voice,
.aboutus,
.recruit,
.contact {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
.contents {
  display: block;
  width: 86%;
  max-width: 1000px;
  margin: 0 0 0 auto;
  padding: 64px 42px 48px 100px;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
}
.contents article{
  width: 100%;
  max-width: 840px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1000px) {
.message,
.vision,
.voice,
.aboutus,
.recruit,
.contact {
  padding: 0 24px;
  margin-top: 24px;
}
.contents {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 124px 32px 24px;
  }
.contents article{
  max-width: 100%;
  margin: 0 auto;
  padding: 24px 0 0;
  }
}
@media screen and (max-width: 640px) {
.message,
.vision,
.voice,
.aboutus,
.recruit,
.contact {
  padding: 0 18px;
  }
.contents {
  padding: 100px 24px 24px;
  border-radius: 18px;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  }
.contents article{
  padding: 12px 0 0;
  }
}

.message .contents {background-color: #FCF7ED;}
.vision .contents {background-color: #EFF9FA;}
.voice .contents {background-color: #F9F9EE;}
.aboutus .contents {background-color: #F5F7EA;}
.recruit .contents {background-color: #FBF3F2;}
.contact .contents {background-color: #F7F7F7;}


/*タイトル*/
h2 {
  position: absolute;
  top: 32px;
  left: 42px;
	writing-mode: vertical-rl;
  white-space: nowrap;
  font-size: 2em;
  color: #222;
  text-align: left;
	line-height: 1.5;
}
h6 {
  position: absolute;
  top: 32px;
  left: 2.1em;
	writing-mode: vertical-rl;
  white-space: nowrap;
  letter-spacing: 0.08em;
  font-size: 4.2em;
  text-align: left;
	line-height: 1.5;
}
@media screen and (max-width: 1240px) {
h2 {
  top: 24px;
  left: 24px;
  font-size: 1.8em;
  }
h6 {
  top: 24px;
  left: 1.8em;
  font-size: 4em;
  }
}
@media screen and (max-width: 1000px) {
h2 {
  top: 48px;
  left: 50px;
	writing-mode: horizontal-tb;
  font-size: 1.5em;
  }
h6 {
  top: -24px;
  left: 50px;
	writing-mode: horizontal-tb;
  line-height: 1;
  font-size: 3.6em;
  }
}
@media screen and (max-width: 640px) {
h2 {
  top: 32px;
  left: 42px;
  font-size: 1.3em;
  }
h6 {
  top: -24px;
  left: 42px;
  font-size: 3em;
  }
}
@media screen and (max-width: 480px) {
h2 {
  font-size: 1.2em;
  }
}

.message h6 {color: #F7D091;}
.vision h6 {color: #92D2D8;}
.voice h6 {color: #E4DCB9;}
.aboutus h6 {color: #B4CD5E;}
.recruit h6 {color: #EAC0BD;}
.contact h6 {color: #DDDDDD;}


/*========================
汎用パーツ
========================*/
/*-------------------------
太字見出しh3
--------------------------*/
h3{
  font-weight: 700;
  font-size: 1.35em;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #222;
}
@media screen and (max-width: 480px) {
h3{
  font-size: 1.2em;
  }
}
/*-------------------------
太字見出しh4
--------------------------*/
h4{
  font-weight: 500;
  font-size: 1.15em;
  line-height: 1.7;
  margin-bottom: 12px;
}
@media screen and (max-width: 480px) {
h4{
  font-size: 1.05em;
  }
}

/*-------------------------
アイコン付きテキストリンク
--------------------------*/
/*文末矢印付きリンク*/
.arrlink {
  position: relative;
  display: inline-block;
  color: #9E7D53;
  font-weight: 600;
  padding: 0 1.25em 0 0;
  margin: 0 0.25em;
  font-size: 0.95em;
}
.arrlink:after{
	position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.2em;
  font-family:"Material Symbols Rounded";
  content: "\e037"; /*三角矢印*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}

/*外部リンク*/
.exlink {
  position: relative;
  display: inline-block;
  color: #222;
  font-weight: 500;
  padding: 0 1.25em 0 0;
  margin: 0 0.25em;
}
.exlink:after{
	position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1em;
  color: #111;
  font-family:"Material Symbols Rounded";
  content: "\e89e"; /*出口矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 400
}

/*-------------------------
アイコン付き電話リンクテキスト
--------------------------*/
.tel{
  position:relative;
  display: inline-block;
  font-size: 1.25em;
  line-height: 1;
  padding: 0 0 0 1.1em;
  color: #222;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  margin: 0.5em auto;
  letter-spacing: 0.08em;
}
.tel:before{
	position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content:"";
  display:inline-block;
  width:0.9em;
  height:0.9em;
  background:url(../img/icontel_black.png) no-repeat;
  background-size:contain;
}

/*-------------------------
ボタン・テキストリンク
--------------------------*/
/*文末矢印アイコン付きボタン*/
.btn {
	display: inline-block;
	color: #FFF;
	background-color: #B39571;
	text-decoration: none;
	padding: 0.8em 2em 0.8em 1.2em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.9em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0.3em 0.3em 0;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
}
.btn:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 100
}
.btn:hover{
	background-color: #9E7D54;
	transition: 0.3s;
}

/*-------------------------
ページ上部へジャンプ
--------------------------*/
#jumptop{
  position:fixed;
  right: 32px;
  bottom:32px;
  z-index: 2;
}
.jumpbtn {
  width:4em;
  height:4em;
  cursor:pointer;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  cursor:pointer;
  background:#56BAC2;
  position: relative;
}
.jumpbtn:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  font-size: 2.4em;
  color: #FFF;
  font-family:"Material Symbols Rounded";
	content: "\e5d8"; /*上向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 200
}
@media(max-width:960px){
#jumptop{
  right: 24px;
  bottom:24px;
  }
.jumpbtn {
  width: 3.2em;
  height: 3.2em;
  }
.jumpbtn:before {
  font-size: 2.1em;
  }
}
@media(max-width:640px){
.jumpbtn {
  display: none;
  }
}

/*-------------------------
送信完了画面
--------------------------*/
.thanks {
  text-align: center;
}
@media(max-width:640px){
.thanks {
  text-align: left;
  }
.thanks br{
  display: none;
  }
}

/*-------------------------
横並びflexbox
--------------------------*/
/* 幅可変横並び*/
.column {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.column li{
  margin:0 15px 0 0;
}
.column li:last-child{
  margin:0 0 0 0;
}

/* 画像320px ＋ テキスト*/
.column320 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.column320_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.column320_text {
  flex: 1;
}
@media screen and (max-width: 1000px) {
.column320_img {
  max-width: 240px;
  margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.column320 {
  flex-direction: column;
  display:block;
  }
.column320_img {
  max-width: 100%;
  margin: 0 0 15px 0;
  text-align: center;
  }
}

/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.col2 li{
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  margin:0 30px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 1000px) {
.col2 li{
  margin:0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  margin:0 0 20px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}


/*========================
CMS更新プログラム
========================*/
/*-------------------------
一覧並び
--------------------------*/
article{
  width: 100%;
  padding: 0.8em 0;
  margin: 0 auto;
  border-bottom: 1px solid #AAA;
}
article:last-child {
  border-bottom: none;
}
article .category {
  min-width: 8em;
  display: inline-block;
  background: #FFF;
  color: #B29471;
  border: 1px solid #B29471;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  font-size: 0.85em;
  font-weight: 500;
  padding: 0.5em;
  text-align: center;
  white-space: nowrap;
  margin: 0 0.5em 0 0;
}
article .date {
  display: inline-block;
  font-family: 'Zen Old Mincho', serif;
  color: #B29471;
  line-height: 1;
  white-space: nowrap;
  font-size: 1.05em;
  font-weight: 300;
}
article h2{
  padding: 0.6em 0 0;
  font-weight: 600;
  color: #333;
  line-height: 1.8;
}
article h2 a{
  text-decoration: none;
  font-weight: 600;
  color: #333;
  display: block;
}
article h2 a:hover{
  text-decoration: underline;
}

/*-------------------------
ページャー
--------------------------*/
.pager{
	text-align:center;
	padding:0;
	clear:both;
  margin-top: 42px;
}
/*ページャーボタン*/
.pager a{
  background-color: #FFF;
  color: #737373;
  font-size: 1.2em;
  padding: 0.3em 0.6em;
  text-decoration: none;
  line-height: 1;
  font-weight: 500;
  margin:0.1em;
}
.pager a:hover{
  background-color: #EBEBEB;
  color: #737373;
}
/*現在のページのボタン*/
.pager a.current{
  background-color: #EBEBEB;
  color: #737373;
}
/*前のリストを表示(左向き矢印)*/
.pager a.before {
  padding: 0;
}
.pager a.before:hover{
  background-color: #FFF;
}
.pager a.before:after{
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  background-color: #FFF;
  color: #737373;
	font-family: "Material Icons";
  font-size: 1.1em;
  font-family:"Material Symbols Rounded";
	content: "\e5e0"; /*左向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}
/*先のリストを表示(右向き矢印)*/
.pager a.next {
  padding: 0;
}
.pager a.next:hover{
  background-color: #FFF;
}
.pager a.next:after{
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  background-color: #FFF;
  color: #737373;
	font-family: "Material Icons";
  font-size: 1.1em;
  font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*右向き矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 300
}

/*-------------------------
記事一覧＆詳細ページ共通
--------------------------*/
/*２カラム*/
#topicpage {
  width:100%;
  max-width: 1240px;
  margin: 64px auto 0;
  padding:0 32px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
#topicpage li:first-child{
  flex: 1;
  margin: 0 64px 0 0;
}
#topicpage li:last-child{
  width: 320px;
}
@media screen and (max-width: 1240px) {
#topicpage li:first-child{
  margin: 0 42px 0 0;
  }
#topicpage li:last-child{
  width: 280px;
  }
}
@media screen and (max-width: 960px) {
#topicpage{
  display: block;
  flex-direction: column;
  }
#topicpage li:first-child{
  width: 100%;
  margin: 0 0 48px 0;
  }
#topicpage li:last-child{
  width: 100%;
  }
}
@media screen and (max-width: 640px) {
#topicpage {
  margin: 48px auto 0;
  padding:0 24px;
  }
}

/*ページ内容枠(左カラム)*/
#topicpage h3{
  font-weight: 700;
  color: #222;
  line-height: 1.65;
  font-size: 1.5em;
  margin-bottom: 32px;
}

/*目次コンテンツ枠(右カラム)*/
.categorylists h6,
.recentposts h6{
  display: block;
  font-family: "Cardo", serif;
  color: #B29271;
  font-size: 1.3em;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 8px;
}
.categorylists h5,
.recentposts h5{
  display: block;
  font-family: 'Zen Old Mincho', serif;
  color: #222;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 18px;
}

.categorylists a{
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  font-size: 0.95em;
  border: 1px solid #B39571;
  color: #B29271;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  padding: 12px 12px 12px 12px;
  cursor: pointer;
  margin: 0 0 8px;
}
.categorylists a:after {
	position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\e5e1"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 100
}

.recentposts a{
  display: block;
  padding: 0.1em 0 0 1.3em;
  margin: 0 0 0.5em;
	position: relative;
  line-height: 1.7;
  font-size: 0.85em;
  font-weight: 500;
  text-decoration: none;
}
.recentposts a:hover{
  text-decoration: underline;
}
.recentposts a:before{
	position: absolute;
	top: 0.06em;
	left: 0;
  font-size: 1.1em;
  color: #B39571;
  font-family:"Material Symbols Rounded";
	content: "\e061"; /*ドット*/
  font-variation-settings:
  'FILL' 1,
  'wght' 400
}
@media screen and (max-width: 640px) {
.recentposts a{
  font-size: 0.9em;
  }
}

/*-------------------------
記事詳細ページ
--------------------------*/
/* トピック記事タイトル*/
#topicpage h1{
  font-weight: 700;
  color: #222;
  line-height: 1.65;
  font-size: 1.5em;
  margin: 18px 0 24px;
}
@media screen and (max-width: 480px) {
#topicpage h1{
  font-size: 1.25em;
  margin: 12px 0 24px;
  }
}

#topicpage .category {
  min-width: 8em;
  display: inline-block;
  background: #FFF;
  color: #B29471;
  border: 1px solid #B29471;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  text-decoration: none;
  line-height: 1;
  font-size: 0.85em;
  font-weight: 500;
  padding: 0.5em;
  text-align: center;
  white-space: nowrap;
  margin: 0 0.5em 0 0;
}
#topicpage .date {
  display: inline-block;
  font-family: 'Zen Old Mincho', serif;
  color: #B29471;
  line-height: 1;
  white-space: nowrap;
  font-size: 1.05em;
  font-weight: 300;
}

/* 本文 */
#topicpage p{
  font-size: 1em;
  margin-bottom: 1em;
}
#topicpage img{
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}

/* 前ページへ戻るボタン */
.pagebackbtn {
	display: inline-block;
	color: #FFF;
	background-color: #B39571;
	text-decoration: none;
	padding: 1em 1.6em 1em 2.6em;
	transition: 0.3s;
	position: relative;
  line-height: 1;
  white-space: nowrap;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 1em 0 0;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
}
.pagebackbtn:before {
	position: absolute;
  top: 50%;
  left: 0.6em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 1.3em;
  font-family:"Material Symbols Rounded";
	content: "\e5e0"; /*矢じりのみ矢印*/
  font-variation-settings:
  'FILL' 0,
  'wght' 100
}
.pagebackbtn:hover{
	background-color: #9E7D54;
	transition: 0.3s;
}
