/*
Description:嵐田税理士社労士事務所のホームページです
Version:1.0
*/
@charset "utf-8";
.body_background {
  width: 100%;
  height: auto;
  background: linear-gradient(90deg, #fff 0%, #fff 40%, #e6e9f3 40%, #e6e9f3 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
* {
  font-family: 'meiryo', "MS Gothic", "ヒラギノ角ゴ Pro W3", sans-serif;
  margin: 0;
  padding: 0;
  letter-spacing: 0.1em;
  color: #333;
}
html {
  scroll-behavior: smooth;
}
img {
  border: none;
  display: block;
  margin: 0 auto;
}
header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 84px;
  padding: 0 10px;
}
/* ヘッダー */
#headerInner {
  display: flex;
  justify-content: space-between;
  padding-top: 7px;
}
.logo {
	padding-left: 10px;
  width: 300px; /* 表示上は半分サイズ */
  height: auto; /* 縦横比を維持 */
}
/* PC横並びメニュー */
#menu nav.modal-menu .menu {
  display: flex;
  flex-direction: row; /* 横並び */
  justify-content: flex-end;
  list-style-type: none;
  margin-top: 11px;
}
#menu nav.modal-menu .menu li {
  margin-top: 11px;
}
#menu nav.modal-menu .menu li a {
  text-decoration: none;
  list-style-type: none;
  margin-left: 2.5rem;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  color: #494D58;
  line-height: 1;
}
#menu nav.modal-menu .menu li a:hover {
  color: #556DAD;
}
/* ラストだけボタン風 */
#menu nav.modal-menu .menu li:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
#menu nav.modal-menu .menu li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 22px;
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #556DAD, #AD9F55);
  transition: all 0.5s ease;
}
#menu nav.modal-menu .menu li:last-child a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  z-index: 1;
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}
#menu nav.modal-menu .menu li:last-child a:hover::before {
  left: 100%;
}
#menu nav.modal-menu .menu li:last-child a:hover {
  background: linear-gradient(to right, #AD9F55, #556DAD);
}
/* ハンバーガーPC非表示 */
.hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .modal-menu .menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0;
    margin: 0;
  }
  .modal-menu .menu li {
    margin: 0;
    display: block;
  }
}
/*メイン全般*/
main {
  clear: both;
}
/*ここからメインビジュアル*/
.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 2.0s ease-in-out; /* ← やわらかくするポイント */
  opacity: 1;
  z-index: -1;
}
#mainVisual {
  position: relative;
  width: 100%;
  height: 100vh; /* 画面全体の高さ（Viewport Height） */
  overflow: hidden;
}
#mainVisualContains {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  z-index: 10;
}
#mainCopy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3.3rem;
  text-align: center;
  text-shadow: -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333, 1px 1px 0 #333, 0 0 5px #333;
  z-index: 10;
}
/* === メインビジュアル内マルキー（スクロールテキスト） === */
.mv-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  z-index: 10;
}
.mv-marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
  transform: translateX(0); /* 初期位置を明示 */
}
.mv-marquee__inner span {
  color: #9C9EA5;
  font-size: 5rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-right: 2rem;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* === メインビジュアル内マルキー（スクロールテキスト） === */
/*ここまでメインビジュアル*/
/*ここから私たちについて*/
#aboutUs {
  width: 100%;
  height: 478px;
  color: #333;
}
#aboutUsContents {
  width: 1180px;
  margin: 0px auto;
  height: 258px;
  padding: 110px 0;
}
#aboutUs h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#aboutUs h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#h3_image {
  float: left;
  max-width: 590px;
  max-height: 176px;
  overflow: hidden;
}
/*ここまで私たちについて*/
/*ここからプロフィール*/
#profile {
  clear: both;
  width: 100%;
  background-color: #ffffff;
  height: 925px;
}
#profileContents {
  width: 1180px;
  height: auto;
  margin: 71px auto 110px;
  position: relative;
}
#profimg {
  float: right;
  margin-bottom: 110px auto;
  max-width: 590px;
  max-height: 670px;
  overflow: hidden;
}
#profile img {
  transition: all 0.5s ease-in-out;
}
#profile img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
#profile .link_area {
  width: 28%;
  position: absolute;
  left: 0%;
  top: 39%;
  margin: 20px auto;
}
#profile .link_area:hover {
  color: #556DAD;
}
#profile h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#profile h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#profile h3 {
  font-style: 'Medium', serif;
  font-size: 2rem;
  margin: 0px auto 20px;
}
#profileTextbox {
  background-color: #ffffff;
  float: left;
  width: 50%;
  height: 670px;
  position: relative;
  overflow: hidden;
}
#profileText {
  width: 90%;
  margin-right: 29px;
}
#profileTextbox.btn-grd {
  display: block;
  font-size: 16px;
  color: #556DAD;
  text-align: center;
  text-decoration: none;
  width: 200px;
  padding: 5px 10px;
  margin-top: 20px;
  border: 2px solid #556DAD;
}
/*ここまでプロフィール*/
/*ここからサービス*/
#Byservice {
  clear: both;
  width: 100%;
  height: 1823px;
}
#service {
  width: 1180px;
  height: auto;
  margin: 71px auto 110px;
}
#service h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#service h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#service h3 {
  text-align: center;
  color: #333;
  margin: 35px 0 15px 0;
}
#service p {
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #333;
}
.link_area {
  margin: 20px auto;
  width: 80%;
  border: #556DAD 3px solid;
  color: #fff;
  background-color: #556DAD;
  padding: 10px;
  transition: 0.5s;
}
.link_area:hover {
  background-color: #fff;
  color: #556DAD;
}
.link {
  color: #556DAD;
  font-weight: bold;
  text-decoration: none;
}
.arrow-right {
  width: 10%;
  height: 8px;
  border-bottom: 3px solid #AD9F55;
  border-right: 3px solid #AD9F55;
  transform: skew(45deg);
  display: inline-block;
  margin-left: 2%;
}
/*税務顧問*/
#taxadvisor {
  height: 570px;
}
#taxadvisorContents {
  width: 1180px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
.taxadvisorImage {
  width: 960px;
  height: 640px;
  transition: 1s all;
  cursor: pointer;
}
#taxadvisor img {
  transition: all 0.5s ease-in-out;
}
#taxadvisor img:hover {
  transform: scale(1.1);
}
#taxadvisorTextbox {
  background-color: #fff;
  width: 35%;
  height: 300px;
  position: absolute;
  right: 0%;
  z-index: 10;
}
#taxadvisorText {
  width: 90%;
  margin: 15% 0 0 10%;
}
/*相続・事業承継コンサルティング*/
#inheritance {
  clear: both;
  height: 570px;
}
#inheritanceContents {
  width: 1180px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  overflow: hidden;
  margin-bottom: 70px;
}
#inheritance .link_area {
  width: 70%;
}
#inheritanceTextbox {
  background-color: #ffffff;
  width: 40%;
  height: 300px;
  position: absolute;
  left: 0%;
  z-index: 10;
}
#inheritanceText {
  width: 90%;
  margin: 15% 0 0 10%;
}
.inheritanceImage {
  width: 960px;
  height: 640px;
  transition: 1s all;
  cursor: pointer;
}
#inheritance img {
  transition: all 0.5s ease-in-out;
}
#inheritance img:hover {
  transform: scale(1.1);
}
/*社会保険労務士業務*/
#labor {
  clear: both;
  height: 500px;
}
#laborContents {
  width: 1180px;
  margin: 0 auto;
  height: 500px;
  position: relative;
  overflow: hidden;
}
.laborimg {
  width: 960px;
  transition: 1s all;
  cursor: pointer;
}
#labor img {
  transition: all 0.5s ease-in-out;
}
#labor img:hover {
  transform: scale(1.1);
}
#laborTextbox {
  background-color: #fff;
  width: 35%;
  height: 300px;
  position: absolute;
  right: 0%;
  top: 0px;
  z-index: 10;
}
#laborText {
  width: 90%;
  margin: 15% 0 0 10%;
}
.btn-grdS {
  display: block;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-align: center;
  text-decoration: none;
  width: 38%;
  margin: 20px auto 35px;
  font-weight: bold;
  background-color: rgb(85, 109, 173);
  padding: 12px;
}
/*ここまでサービス*/
/*ここからお知らせ*/
#information {
  clear: both;
  width: 100%;
  background-color: #ffffff;
  height: 448px;
  margin: 0 auto;
}
#information h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#information h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#informationContents {
  width: 1180px;
  margin: 71px auto 110px;
  background-color: #fff;
}
#information ul {
  margin: 0 auto 25px;
}
#information span {
  margin-right: 20px;
}
#information li {
  list-style-type: none;
  line-height: 1.2;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
#information li a {
  text-decoration: none;
  color: #556DAD;
  font-weight: bold;
}
#information .link_area {
  width: 28%;
  margin: 35px auto;
  transition: 0.5s;
}
#information .link_area:hover {
  color: #556DAD;
}
/*ここから「ブログ」*/
#blog {
  clear: both;
  width: 100%;
  height: 564px;
}
#blog .body_background {
  padding-bottom: 55px;
}
#blogContents {
  width: 1180px;
  margin: 71px auto 55px;
  height: auto;
}
#blog h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#blog h2::after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#blogTextbox {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
#blogText {
  margin-bottom: 5px;
}
#article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#article li {
  list-style-type: none;
}
#article1, #article2, #article3 {
  width: 365px;
  height: 250px;
  overflow: hidden;
}
#article img {
  transition: 1s all;
}
#article img:hover {
  transform: scale(1.1);
}
#blog .link_area {
  width: 28%;
  margin: 35px auto 55px;
  transition: 0.5s;
}
#blog .link_area span:hover {
  color: #fff;
}
/*ここまで「ブログ」*/
/*ここから「お問い合わせ」*/
#contact {
  clear: both;
  width: 100%;
  height: 245px;
}
#contact-area {
  width: 1180px;
  margin: 71px auto 55px;
}
#contact h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#contact h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#contact p {
  margin-bottom: 10px;
}
/*ここまで「お問い合わせ」*/
/*ここからフッター*/
#footer {
  clear: both;
  width: 100%;
  height: 200px;
}
#footerInner {
  width: 100%;
  height: auto;
  background-color: #556DAD;
}
#footerContents {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1.5;
  position: relative;
}
/***追従するトップへ戻るボタン***/
.page-top {
  position: fixed;
  bottom: 3%;
  right: 3%;
  cursor: pointer;
  background: #fff;
  color: #999;
  padding: 23px 15px 19px;
  border: solid 2px;
  opacity: 0.8;
  /*デフォルトで非表示にする*/
  opacity: 0;
  visibility: hidden;
}
/*このクラスが付与されると表示する*/
.active {
  opacity: 0.8;
  visibility: visible;
  z-index: 10;
  transition: all .5s ease;
}
.arrow-top {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid #555;
  border-left: 2px solid #555;
  transform: rotate(45deg);
  opacity: 0.8;
}
/***トップへ戻るボタンここまで***/
#regularHoliday {
  padding-top: 35px;
  color: #fff;
}
#footer {
  text-align: center; /* 中央揃え */
  padding: 20px; /* フッター内の余白 */
  background-color: #f5f5f5;
  font-size: 14px;
  line-height: 1.6;
}
#footer p, #footer address, #footer a {
  display: block; /* 余白を効かせやすくする */
}
#facebookIcon {
  display: inline-block;
  margin-top: 5px; /* アイコンの上下余白 */
}
#facebookIcon img {
  width: 32px;
  height: 32px;
}
address {
  color: #fff;
}
#footerLogo {
  display: block;
  width: 29.3%;
}
#copyRight {
  text-align: center;
  color: #fff;
  padding-bottom: 24px;
}
/*フッターここまで*/
/*次ページ共通*/
.page-title {
  font-size: 1.3rem;
  color: #fff;
  background-image: url("images/obi.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 55px;
  margin: 60px 0 30px 0;
  /* ↓下記を追加！ */
  box-sizing: border-box;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.br_sp {
  display: none;
}
#frame {
  width: 100%;
  margin: 0 auto;
}
.title {
  text-align: center;
  margin: 2px auto 25px;
}
p {
  font-size: 16px;
}
/*プロフィールページ*/
.title2 {
  color: #556DAD;
}
.profileContain {
  width: 1180px;
  height: 1477px;
  margin: 0 auto;
}
.container {
  width: 100%;
  height: auto;
  margin: 110px 0;
}
.profileTextbox {
  display: flex;
  height: 635px;
  margin-bottom: 55px;
}
.picArea {
  width: 50%;
  height: 570px;
}
.profilePicture {
  width: 100%;
  height: auto;
  float: left;
}
.name_area {
  width: 100%;
  float: left;
  margin-top: 10px;
  margin-left: 15%;
}
.rm {
  color: #777;
}
.greeting h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
.greeting h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
.greeting {
  clear: both;
  width: 50%;
  float: right;
  line-height: 1.5;
}
.greeting p {
  margin-top: 10px;
}
.profile-table {
  clear: both;
  display: flex;
  justify-content: center;
  margin-bottom: 110px;
}
.career {
  float: left;
  width: 50%;
}
.certified {
  float: right;
}
.item_list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.item .item_list dt, .item .item_list dd {
  padding: 3px;
}
.item_list dt {
  color: #234797;
  width: 131px;
  margin-right: 32px;
}
/*サービスページ*/
#page-service {
  clear: both;
  list-style: decimal;
}
#service-contain {
  width: 1180px;
  height: 2567px;
  margin: 0 auto;
}
#service-contents h2 {
  margin-bottom: 35px;
  font-size: 1.5rem;
  color: #333;
  border-bottom: solid 3px #556DAD;
  position: relative;
}
#service-contents h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #AD8A55;
  bottom: -3px;
  width: 30%;
}
#service-contents p {
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #333;
  margin-top: 15px;
}
ol {
  counter-reset: number; /*数字をリセット*/
  list-style-type: none !important; /*数字を一旦消す*/
  padding: 0.5em;
  background: #e6e9f3;
  border-radius: 5px;
}
ol li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 30px;
}
ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*以下数字のデザイン変える*/
  display: inline-block;
  background: #556DAD;
  color: #fff;
  font-family: 'Avenir', 'Arial Black', 'Arial', sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
#service-contents h3 {
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 5px;
  margin-top: 30px;
}
#service-contents ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}
.example {
  background-color: #F2E8DC;
  padding: 10px 15px;
  border-left: 4px solid #AD8A55;
  margin-bottom: 15px;
}
.note {
  font-size: 0.9em;
  color: #555;
  margin-bottom: 20px;
}
.highlight {
  font-weight: bold;
  color: #556DAD;
}
/*p税務顧問*/
#taxad {
  height: 827px;
}
#taxad-contents {
  width: 1180px;
  margin: 0 auto;
  height: 827px;
}
#taxad-image {
  float: left;
  width: 50%;
  height: 827px;
  background-image: url("images/s_zeimu.jpg");
  background-position: center center;
  background-repeat: no-repeat;
}
#taxad-textbox {
  float: right;
  width: 50%;
  height: 827px;
}
#taxad-text {
  width: 90%;
  margin-left: 29px;
}
#zeimu {
  scroll-margin-top: 84px; /* ヘッダーの高さ分 */
}
/*p相続・事業承継コンサルティング*/
#inherit {
  clear: both;
  height: 583px;
  margin-top: 55px;
}
#inherit-contents {
  width: 100%;
  margin: 0 auto;
  height: 827px;
}
#inherit-textbox {
  background-color: #ffffff;
  float: left;
  width: 50%;
  height: 583px;
  margin-top: 15px;
}
#inherit-text {
  width: 90%;
  margin-right: 29px;
}
#inherit-image {
  float: right;
  width: 50%;
  height: 827px;
  background-image: url("images/s_sozoku.jpg");
  background-position: center center;
  background-repeat: no-repeat;
}
#sozoku {
  scroll-margin-top: 84px; /* ヘッダーの高さ分 */
}
/*p社会保険労務士業務*/
#labor-m {
  clear: both;
  height: 827px;
  margin-top: 55px;
}
#labor-m-contents {
  width: 100%;
  margin: 0 auto;
  height: auto;
}
#labor-m-image {
  float: left;
  width: 50%;
  height: 827px;
  background-image: url("images/s_roumu.jpg");
  background-position: center center;
  background-repeat: no-repeat;
}
#labor-m-textbox {
  background-color: #ffffff;
  float: right;
  width: 50%;
  height: 583px;
  margin-top: 15px;
}
#labor-m-text {
  width: 90%;
  margin-left: 29px;
}
/*サービスページ*/
/*お知らせページ*/
#contents {
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0 20px;
  box-sizing: border-box;
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
}
/* ニュースリスト全体 */
.news-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 60px;
  max-width: 900px;
  height: 508px;
}
/* ニュース項目 */
.news-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  transition: background-color 0.3s ease;
}
/* 日付 */
.news-list li span {
  color: #777;
  font-size: 0.9rem;
  min-width: 110px;
  flex-shrink: 0;
  font-weight: 600;
}
/* リンク */
.news-list li a {
  color: #556dad;
  font-size: 1.1rem;
  text-decoration: none;
  padding-left: 20px;
  flex-grow: 1;
  transition: color .3s ease;
  font-weight: bold;
}
.news-list li:hover {
  background-color: #f0f8ff;
}
.news-list li a:hover {
  color: #0073e6;
}
/* ページネーション */
.pagination {
  text-align: center;
  margin-bottom: 60px;
  font-size: 1rem;
}
/* 詳細ページ全体 */
.single-news {
  background-color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
}
/* 中央寄せのラッパー */
.news-wrapper {
  max-width: 800px;
  margin: 110px auto;
}
/* 日付表示 */
.news-date {
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 10px;
}
/* タイトル */
.news-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  color: #333;
}
/* コンテンツ本文 */
.news-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 110px;
}
.news-content img {
  max-width: 100%;
  height: auto;
}
/*ブログページ*/
.top-thumb, .blog-thumb {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1.5rem;
}
#post_thumbnail {
  display: flex;
}
@media (min-width: 768px) {
  .top-thumb {
    max-width: 365px;
  }
  .blog-thumb {
    max-width: 800px;
  }
}
/*ブログページ*/
/*お問い合わせ*/
#attention {
  width: 100%;
  margin: 20px auto;
  text-align: center;
}
#form1 {
  width: 50%;
  margin: 25px auto;
  font-weight: bold;
}
#form1 span {
  background-color: #CCB798;
}
textarea {
  width: 100%;
  height: 7em;
  line-height: 1.5em;
}
input {
  width: 100%;
  height: 2em;
}
.btn-grd3 {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #AD8A55;
  text-align: center;
  text-decoration: none;
  width: 13%;
  margin: 25px auto 75px;
  padding-top: 10px;
  padding-bottom: 33px;
}
/*お問い合わせページ*/
/*お問い合わせ確認画面*/
#contact span {
  color: #AD8A55;
}
#kakunin {
  width: 1180px;
  margin: 0 auto;
}
#shinchoku {
  width: 70%;
  margin: 0px auto 10px auto;
}
#contactConf {
  width: 960px;
  margin: 0 auto;
  text-align: center;
  color: #333;
}
#contact h1 {
  font-size: 32px;
  width: 35%;
  margin: 50px auto;
}
#naiyou {
  line-height: 3;
  background-color: #dbccc9;
  width: 960px;
  height: 535px;
  margin: 0 auto;
}
#btn {
  width: 100%;
  margin: 10px auto 50px auto;
}
.btn-grd1 {
  display: inline-block;
  font-size: 22px;
  color: #333;
  background-color: #fff;
  text-align: center;
  text-decoration: none;
  width: 21%;
  box-shadow: 0px 2px 3px 0px #9E9E9E;
}
.btn-grd2 {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  border: 3px solid #AD8A55;
  background-color: #AD8A55;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto 55px auto;
  transition: 0.5s;
}
.btn-grd2:hover {
  background-color: #fff;
  color: #AD8A55;
}
/*予約確認*/
/*WP次ページ共通*/
.next_page h2 {
  color: #556DAD;
}
/* CSS Document */