/*下層共通*/
/*nav*/
.sub-gnav {
  position: absolute;
  top: 40px;
  right: 3%;
  text-align: center;
  justify-content: center;
}
.sub-gnav ul {
  display: flex;
}
.sub-gnav ul li {}
.sub-gnav ul li a {
  display: block;
  padding: 0 1em;
  text-decoration: none;
  transition: all 1.0s;
  letter-spacing: -0.02em;
  font-weight: bold;
}
.sub-gnav ul li span {
  display: block;
  font-size: 0.875rem;
  color: #004DA0;
}
@media screen and (max-width:1500px) {
  .sub-gnav ul li a {
    display: block;
    padding: 0 1em;
    text-decoration: none;
    text-align: center;
    transition: all 1.0s;
    font-size: 1rem;
  }
}
@media screen and (max-width:1299px) {
  .sub-gnav {
    display: none
  }
}
@media screen and (max-width:1112px) {
  .sub-gnavul li a {
    padding: 2em 0.5em;
  }
}
@media screen and (max-width:768px) {
  .sub-gnav ul li a {
    padding: 2em 0.5em;
  }
}
.notice {
  margin-top: 1.250rem;
  font-size: 0.875rem;
}
/*shop_infoボタン*/
.btn-shop {
  display: inline-block;
  background-color: #373768;
  width: 100%;
  max-width: 300px; /* PCで最大幅を制限 */
  padding: 10px 30px 10px 20px;
  text-align: center;
  color: #FFF;
  border: 1px solid #373768;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.875rem;
  box-sizing: border-box;
  /*border-radius: 1rem;*/
}
/* ホバー時 */
.btn-shop:hover {
  background-color: #4A4A8C;
  color: #fff;
  text-decoration: none;
  border: 1px solid transparent;
}
/* 矢印 */
.btn-shop::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 20px;
  height: 5px;
  border-right: 2px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: skew(45deg);
  transition: 0.3s;
  pointer-events: auto;
  cursor: pointer;
}
/* ホバー時の矢印 */
.btn-shop:hover::after {
  right: 10px;
  width: 30px;
}
/*  レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .btn-shop {
    width: 100%;
    max-width: 100%; /* モバイルは画面幅いっぱい */
    font-size: 0.95rem;
    padding: 16px 20px;
  }
  .btn-shop::after {
    right: 15px;
    width: 16px;
  }
  .btn-shop:hover::after {
    right: 8px;
    width: 24px;
  }
}
.memo_box {
  margin: 0 auto 2em; /* 外側の余白（上下と中央配置） */
  padding: 2em; /* 内側余白 */
  border: 3px solid #eee; /* 線の太さ（3px）、種類（実線）、色（#eee） */
  position: relative; /* 配置（基準となる位置） */
  z-index: 0; /* 他の要素との重なり順（0は通常の順番） */
  background: #fff
}
.memo_box:before {
  border-top: 3px solid #4A4A8C; /* 上辺の線の色（#8293AA） */
  border-left: 3px solid #4A4A8C; /* 左辺の線の色（#8293AA） */
  content: ''; /* 擬似要素にコンテンツなし */
  display: block; /* 擬似要素をブロック表示 */
  position: absolute; /* 配置（親要素から絶対的に位置を指定） */
  top: -3px; /* 上から-3pxずらす */
  left: -3px; /* 左から-3pxずらす */
  width: 20px; /* 幅20px */
  height: 20px; /* 高さ20px */
  z-index: 1; /* 重なり順（前面に表示） */
}
.memo_box:after {
  border-right: 3px solid #4A4A8C; /* 上辺の線の色（#8293AA） */
  border-bottom: 3px solid #4A4A8C; /* 左辺の線の色（#8293AA） */
  content: ''; /* 擬似要素にコンテンツなし */
  display: block; /* 擬似要素をブロック表示 */
  position: absolute; /* 配置（親要素から絶対的に位置を指定） */
  bottom: -3px; /* 上から-3pxずらす */
  right: -3px; /* 左から-3pxずらす */
  width: 20px; /* 幅20px */
  height: 20px; /* 高さ20px */
  z-index: 1; /* 重なり順（前面に表示） */
}
/*下層ヘッダータイトル*/
.sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  background: #999 center;
  background-size: cover
}
/*20250616*/
#company .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/company/company_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  #company .sub_title {
    background-position: 60% 50%;
    height: 360px;
  }
}
/*店舗案内*/
#direct_shop {
  text-align: center;
}
#direct_shop .inner {
  max-width: 1200px;
}
#direct_shop .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/direct_shop/direct_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  #direct_shop .sub_title {
    background-position: 90% 50%;
    height: 360px;
  }
}
#ki_shop .inner {
  width: 1200px;
  padding-top: 100px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  #ki_shop .inner {
    width: 980px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 820px) {
  #ki_shop .inner {
    width: 100%;
  }
}
.shop_box, .shop_box2 {
  display: flex;
  padding-bottom: 40px;
}
.shop_box .ph {
  width: 65%;
}
.shop_box .text {
  width: 35%;
  display: flex;
  flex-direction: row-reverse; /* ← これで見た目の順序調整OK */
  align-items: flex-start; /* ← これが頭揃えの決め手！ */
  gap: 20px;
}
.direct_title {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* 上端を揃える */
  gap: 0.5em; /* 日本語と英字の間の余白 */
}
.direct_title .jp {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 4rem;
  font-weight: bold;
  color: #1a1a3c;
  /*line-height: 1.2em;*/
}
.jp-s {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 4.5rem;
}
.direct_title .en {
  writing-mode: vertical-rl; /* 英字も縦に配置 */
  font-size: 0.75rem;
  color: #D96D00;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  .direct_title .jp {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a3c;
    line-height: 1.2em;
  }
  .jp-s {
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .direct_title .en {
    writing-mode: vertical-rl;
    font-size: 0.75rem;
    color: rgb(217, 109, 0);
    line-height: 0.5em;
    letter-spacing: 0.1em;
  }
}
/*.shop_box .text h2,*/
.shop_box .text .copy {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #1a1a3c;
  line-height: 1.2em;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: left;
  margin-top: 0;
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.shop_box .text .copy2 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #1a1a3c;
  line-height: 1.2em;
  font-size: 2.25rem;
  font-weight: bold;
  text-align: left;
  margin-top: 0;
  margin-right: 2rem;
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.shop_box .text h2 {
  line-height: 2rem;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 820px) {
  .shop_box .text {
    display: flex;
    flex-direction: column; /* 縦積みに */
    align-items: center; /* 横方向中央揃え */
    width: 100%;
    text-align: center; /* まずは全体中央揃え */
  }
  .shop_box .text .copy {
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    text-align: left !important;
    width: 100%;
    max-width: none;
    font-feature-settings: "palt";
    padding: 0 2rem 1rem 2rem;
    font-size: 1.500rem;
  }
  .shop_box .text .copy2 {
    writing-mode: horizontal-tb !important;
    text-orientation: initial !important;
    text-align: left !important;
    width: 100%;
    max-width: none;
    font-feature-settings: "palt";
    padding: 0 0rem 1rem 2rem;
    font-size: 1.500rem;
  }
}
.shop_box2 .text2 {
  width: 50%;
  text-align: left;
  padding-right: 60px;
}
.shop_box2 .text2 p {
  font-size: 1.125rem;
  font-feature-settings: "palt";
}
.shop_box2 .text2 .att {
  font-size: 0.875rem;
  margin-top: 20px;
}
.shop_box2 .ph2 {
  width: 50%;
}
.shop_box2 .ph2 .image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2列 */
  gap: 0; /* 余白を完全になくす */
}
.shop_box2 .ph2 .image-item {
  margin: 0; /* 念のため */
  padding: 0;
  border: none;
}
.shop_box2 .ph2 .image-item img {
  width: 100%;
  height: auto;
  display: block; /* imgの下にできる余白も防止 */
}
#kk_shop .inner {
  width: 1200px;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  #kk_shop .inner {
    width: 980px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 820px) {
  #kk_shop .inner {
    width: 100%;
  }
  .shop_box {
    flex-direction: column-reverse;
  }
  .shop_box2 {
    flex-direction: column;
    padding: 0 2em;
  }
  .shop_box .ph, .shop_box .text {
    width: 100%;
  }
  .shop_box2 .ph2 {
    width: 100%;
    padding-right: 0px;
  }
  .shop_box2 .text2 {
    width: 100%;
    padding-right: 0px;
    padding-bottom: 2em;
  }
}
.direct_shop_info {
  padding: 2rem 2rem;
  display: flex;
  background: #fff;
}
.direct_shop_info .text_box {
  width: 35%;
  font-size: 0.875rem;
  text-align: left
}
.direct_shop_info .text_box dl {
  padding-bottom: 1rem
}
.store-name {
  font-weight: bold;
  font-size: 1.250rem;
  margin-bottom: 0.5em;
  color: #1F1E47;
  font-feature-settings: "palt";
}
.direct_shop_info .text_box dl dd .add {
  margin: 10px 0;
}
.direct_shop_info .link_box {
  width: 65%;
  padding-left: 2rem;
}
/*.direct_shop_info .link_box .btn-shop,.direct_shop_info .link_box .btn-white {
    width: 100%;
}*/
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .direct_shop_info {
    padding: 2rem 2rem;
    display: flex;
    background: #fff;
    margin: 2rem;
  }
  .direct_shop_info .text_box {
    width: 45%;
  }
  .direct_shop_info .link_box {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .direct_shop_info {
    flex-direction: column;
    margin: 2em 1em;
  }
  .direct_shop_info .text_box {
    width: 100%;
    padding-bottom: 1rem;
  }
  .direct_shop_info .link_box {
    width: 100%;
    padding-left: 0rem;
  }
}
.map-container {
  width: 100%;
  height: 500px;
  max-width: 100%;
  background: #f0f0f0;
  margin-bottom: 20px; /* 複数地図の間隔 */
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* スマホサイズで高さを縮小 */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}

/* pタグの余白 */
.box2-7 p {
  margin: 0;
}
.direct_shop_info2 {
  padding: 2rem 2rem;
  display: flex;
  background: #fff;
}
.direct_shop_info2 .text_box {
  width: 55%;
  padding-left: 2rem;
}
.direct_shop_info2 .shopinfo_box {
  width: 45%;
  text-align: left
}
.direct_shop_info2 .text_box dl {
  text-align: left
}
.direct_shop_info2 .text_box dl dd .add {
  margin: 10px 0;
}
/* ベースリスト設定 */
.info3_box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
/* 各店舗ブロック横並び */
.info3_box .store {
  /*display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;*/
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.250rem;
}
.info3_box .store:last-child {
  border-bottom: none;
  padding-bottom: 0em;
}
/* 左：テキスト側 */
.info3_box .store-text {
  /*width:60%;*/
  padding-bottom: 1rem;
  font-size: 0.875rem;
}
/* 右：ボタン側 */
/*.info3_box .store-link {
  width:40%;
  text-align: right;
}*/
.info3_box .store-link ul li {
  margin-bottom: 10px; /* お好みの余白に調整してください */
}
.info3_box .store-link ul li:not(:last-child) {
  margin-bottom: 10px;
}
/* 店舗名 */
.info3_box .store-name {
  font-weight: bold;
  font-size: 1.250rem;
  margin-bottom: 0.5em;
  color: #1F1E47;
}
.store-name-L {
  font-size: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .direct_shop_info2 {
    flex-direction: column;
    margin: 2em 1em;
  }
  .direct_shop_info2 .text_box {
    width: 100%;
    padding-left: 0;
  }
  .direct_shop_info2 .shopinfo_box {
    width: 100%;
    padding-bottom: 1rem;
  }
}
/* レスポンシブ：スマホ対応 */
@media screen and (max-width: 767px) {
  .direct_shop_info2 {
    flex-direction: column;
    margin: 2em 1em;
  }
  .direct_shop_info2 .text_box {
    width: 100%;
    padding-left: 0;
  }
  .direct_shop_info2 .shopinfo_box {
    width: 100%;
    padding-bottom: 1rem;
  }
  .info3_box .info3_box .store {
    flex-direction: column;
    align-items: stretch;
  }
  .info3_box .store-link {
    text-align: center;
  }
  .info3_box .btn-shop {
    width: 100%;
    font-size: 0.875rem;
  }
  .store-name-L {
    font-size: 1.5rem;
  }
}
/*うんとん処*/
#unton .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/unton/unton_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 768px) {
  #unton .sub_title {
    background-position: 60% 50%;
    height: 360px;
  }
}
#contact .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/contact/contact_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  #contact .sub_title {
    background-position: center;
    height: 360px;
  }
}
#pp .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/pp_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 768px) {
  #pp .sub_title {
    background-position: center;
    height: 360px;
  }
}
.sub_title h1 {
  color: #fff;
}
.sub_title h1 .jp {
  font-size: 3rem;
  display: block;
}
.sub_title h1 .en {
  font-size: 1rem;
  display: block;
  margin-bottom: 18px;
}
.inner h2 {
  margin: 2em 0;
  font-size: 2.0rem;
  padding-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub_title h1 .jp {
    font-size: 2rem;
  }
  .inner h2 {
    font-size: 1.5rem;
  }
}
/*id共通部分*/
.common_title {
  text-align: center;
  margin: 0 auto 1rem auto;
}
.common_title .en {
  display: block;
  font-size: 0.857rem;
}
.common_title .jp {
  font-size: 2rem;
  ;
  letter-spacing: 0.15rem;
}
.link_box ul li {
  margin-bottom: 10px; /* お好みの余白に調整してください */
}
.link_box ul li:not(:last-child) {
  margin-bottom: 10px;
}
/*金笛川越店*/
#kawagoe #unton_shop .inner {
  max-width: 1200px;
  padding-top: 100px;
}
#kawagoe #baum_shop .inner {
  max-width: 1200px;
  padding-top: 100px;
}
#kawagoe .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/kawagoe/kawagoe_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  #kawagoe .sub_title {
    height: 360px;
  }
}
#kawagoe_shop_head {
  padding: 2rem 0;
  width: 1200px;
  margin: 0 auto;
  font-size: 1.250rem;
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  text-align: center
}
#kura_shop h2, #unton_shop h2, #baum_shop h2 {
  font-size: 2.5rem;
  padding-bottom: 0;
}
.kawagoe_shop_box {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.kawagoe_shop_box_text {
  width: 60%;
}
.kawagoe_shop_box_text .btn-navy {
  margin-top: 2rem;
}
.kawagoe_shop_box_ph {
  width: 40%;
  padding-right: 2rem;
}
.kura_midashi {
  font-size: 2rem;
  line-height: 2.5rem;
  font-weight: bold;
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  margin-top: 2rem;
  font-feature-settings: "palt";
}
#kawagoe .shop_info {
  padding: 2rem;
  display: flex;
}
#kawagoe .shop_info .text_box {
  width: 35%;
  padding-right: 2rem;
}
#kawagoe .shop_info .text_box dl {
  text-align: left
}
#kawagoe .shop_info .text_box dl dt {
  font-weight: bold;
  font-size: 1.250rem;
  margin-bottom: 0.5em;
  color: #1F1E47;
  font-feature-settings: "palt";
}
#kawagoe .shop_info .text_box dl dd .add {
  margin: 10px 0;
}
#kawagoe .shop_info .link_box {
  width: 65%;
}
@media (max-width: 768px) {
  .kura_midashi {
    font-size: 1.250rem;
    line-height: 1.8rem;
    margin-top: 2rem;
    margin: 2rem 2rem 0 2rem;
  }
  .kawagoe_shop_box_text {
    width: 100%;
    padding: 1rem 2rem;
  }
  #kawagoe .shop_info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    margin: 0 1rem;
  }
  #kawagoe .shop_info .text_box {
    width: 100%;
    padding: 0
  }
  #kawagoe .shop_info .link_box {
    width: 100%;
  }
}
#baum_shop {
  margin-bottom: 6rem;
}
.lab_wrap {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  font-family: inherit;
  letter-spacing: -0.05em;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.lab_wrap .dot {
  position: absolute;
  right: -0.2em; /* b の右側へ移動 */
  bottom: 0.1em; /* b の下あたりに配置 */
  font-size: 0.8em;
  line-height: 1;
}
@media (max-width: 768px) {
  .kawagoe_shop_box_text {
    width: 100%;
  }
  .kawagoe_shop_box_ph {
    width: 100%;
    padding: 0 2rem;
  }
}
#kawagoe #unton_shop .inner h2 {
  margin: 0em auto 2em auto;
}
#kawagoe #baum_shop .inner h2 {
  margin: 0em auto 2em auto;
}
#kawagoe #kura_shop, #kawagoe #unton_shop {
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  #kawagoe #kura_shop .inner, #kawagoe #unton_shop .inner, #kawagoe #baum_shop .inner {
    width: 980px;
    padding-top: 100px;
  }
}
@media screen and (width: 820px) and (orientation: portrait) {
  #kawagoe #kura_shop .inner, #kawagoe #unton_shop .inner, #kawagoe #baum_shop .inner {
    width: 760px;
  }
}
.container {
  padding: 20px;
  /*font-size: 1.2rem;*/
}

.notice-small {
  font-size: 0.875em;
  margin-top: 1em;
  line-height: 1.5;
}

.kawagoe_shop_box_ph .btn-navy {
  margin-top: 1.250rem;
}
#kawagoe .slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 12px;
}
#kawagoe .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 18s infinite;
}
#kawagoe .fade1 {
  animation-delay: 0s;
}
#kawagoe .fade2 {
  animation-delay: 6s;
}
#kawagoe .fade3 {
  animation-delay: 12s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
#unton_shop {
  background: url(../img/back-g.jpg) center;
  padding-bottom: 60px;
}
/*うんとん*/
#unton .inner {
  max-width: 1200px;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  #unton .inner {
    width: 980px;
    padding-top: 100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 820px) and (orientation: portrait) {
  #unton .inner {
    width: 700px;
  }
}
#unton .sub_title h1 .jp {
  line-height: 3rem;
}
#unton_head .inner {
  text-align: center;
  padding-top: 100px;
}
#unton_head .inner h2 {
  margin: 0;
  line-height: 1.3; /* 全体を少しゆるめる */
  font-feature-settings: "palt";
  font-size: 2.5rem;
}
#unton_head .inner h2 span {
  font-size: 1.25rem;
  display: inline-block; /* 独立した行間を適用可能に */
  line-height: 1.4; /* 小さい文字にだけ適正行間 */
}
@media screen and (min-width: 768px) and (max-width:1024px) {
  #unton_head .inner {
    padding-top: 50px;
  }
}
.unton_head_box {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.unton_head_box .unton_head_box_ph {
  width: 60%;
}
.unton_head_box .unton_head_box_text {
  width: 37%;
  text-align: left;
  margin-right: 3%;
}
.unton_head_box .unton_head_box_text .btn-shop {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .unton_head_box .unton_head_box_ph {
    width: 40%;
  }
  .unton_head_box .unton_head_box_text {
    width: 57%;
  }
}
@media (max-width:767px) {
  .unton_head_box {
    flex-direction: column
  }
  .unton_head_box .unton_head_box_ph {
    width: 100%;
    order: 1;
  }
  .unton_head_box .unton_head_box_text {
    width: 100%;
    order: 2;
    padding: 2rem;
  }
  #unton_head .inner {
    padding-top: 50px;
  }
}
@media (max-width:400px) {
  #unton_head .inner h2 {
    font-size: 2.2rem;
  }
}
#unton_head .shop_info {
  padding: 2rem;
  display: flex;
}
#unton_head .shop_info .text_box {
  width: 50%;
  padding-right: 2rem;
}
#unton_head .shop_info .text_box dl {
  text-align: left
}
#unton_head .shop_info .text_box dl dd .add {
  margin: 10px 0;
}
#unton_head .shop_info .link_box {
  width: 50%;
}
@media (max-width:767px) {
  #unton_head .shop_info {
    flex-direction: column;
    margin: 0 1.5rem;
  }
  #unton_head .shop_info .text_box {
    width: 100%;
    padding-right: 0rem;
  }
  #unton_head .shop_info .text_box dt {
    letter-spacing: -0.1em;
  }
  #unton_head .shop_info .link_box {
    width: 100%;
  }
}
.usage-info {
  background-color: #f8f8f2;
  padding: 20px;
  border-left: 5px solid #c2a773;
  margin-top: 40px;
}
.shop_info .text_box dt {
  font-weight: bold;
  font-size: 1.250rem;
  margin-bottom: 0.5em;
  color: #1F1E47;
}
.underline-text {
  text-decoration: underline;
}
#unton_menu {
  padding: 0 0 60px 0;
}
#unton_menu .page-default {
  max-width: 1040px;
}
.unton_menu_box dt {
  font-size: 1.250rem;
  padding: 18px 0;
  font-weight: bold;
}
.unton_menu_box ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 20px;
}
.unton_menu_box li {
  margin-bottom: 50px;
  width: calc(100% / 3 - (20px * 2 / 3));
}
.unton_menu_box li p {
  font-feature-settings: "palt";
}
.unton_menu_box .ph_box {
  position: relative;
}
.unton_menu_box .ph_box img {
  width: 100%;
  /*height: 250px;*/
  object-fit: cover;
}
.unton_menu_box .hc_icon:after {
  position: absolute;
  right: 5px;
  bottom: 5px;
  content: "";
  display: inline-block;
  width: 70px;
  height: 34px;
  background: url(../img/restaurant/icon_onrei.png) center center no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 100;
}
.unton_menu_box .season_icon:after {
  position: absolute;
  left: 5px;
  top: 5px;
  content: "";
  display: inline-block;
  width: 100px;
  height: 45px;
  background: url(../img/restaurant/icon_gentei.png) center center no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 100;
}
@media (max-width:767px) {
  #unton_menu .inner {
    margin: 0 2rem;
  }
  .unton_menu_box ul {
    display: block;
  }
  .unton_menu_box li {
    margin: 0;
    width: 100%;
    padding: 20px 0;
  }
}
.drink_box {}
.drink_box ul {
  width: 60%;
  margin: 0 auto;
}
.drink_box li {
  padding-bottom: 1rem;
}
.drink_box ul li dl {
  display: flex;
  justify-content: flex-start;
  font-size: 1.250rem;
}
.drink_box ul li dl dt {
  width: 60%;
}
.drink_box ul li dl dd {
  width: 40%;
  text-align: right;
}
@media (max-width:767px) {
  .drink_box {
    width: 100%;
    margin: 0 auto;
  }
  .drink_box ul {
    width: 100%;
  }
  .drink_box ul li dl dt {
    width: 70%;
  }
  .drink_box ul li dl dd {
    width: 30%;
    text-align: right;
  }
}
.unton_menu_btn_box {
  text-align: center;
  padding: 2rem 0;
}
.unton_menu_box .hc_icon:after {
  position: absolute;
  right: 5px;
  bottom: 15px;
  content: "";
  display: inline-block;
  width: 70px;
  height: 34px;
  background: url(../img/unton/icon_onrei.png) center center no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 100;
}
.unton_menu_box .h_icon:after {
  position: absolute;
  right: 5px;
  bottom: 15px;
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/unton/icon_hot.png) center center no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 100;
}
.unton_menu_box .c_icon:after {
  position: absolute;
  right: 5px;
  bottom: 15px;
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../img/unton/icon_cool.png) center center no-repeat;
  background-size: contain;
  vertical-align: middle;
  z-index: 100;
}
/*うんとん処＿団体様*/
#unton_group {
  background: url(../img/unton/group_bg.jpg) center repeat;
  color: #fff;
}
#unton_group .inner {
  padding: 1em 0 3em 0;
}
#unton_group .kinbue_title .jp {
  color: #fff;
}
#unton_group .btn-navy {
  border: transparent;
}
@media (max-width:767px) {
  #unton_group .inner {
    padding: 1em 2em 3em 2em;
  }
}
.group_info {
  color: #1F1E47;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 2rem;
}
.group_info dl {
  margin-bottom: 1rem;
}
.group_info dt {
  font-weight: bold;
  font-size: 1.250rem;
  padding-bottom: 1rem;
}
.group_info dd span {
  font-size: 0.875rem;
  margin: 1rem 0;
}
.group_info dt {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #4A4A8C;
  padding-bottom: 0.25rem;
}
.group_info dd {
  margin: 0 0 0.75rem 0;
  line-height: 1.6;
}
.group_info .tel_box {
  padding-left: 1rem;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 1.250rem;
}
.group_info .btn-navy {
  margin-top: 1.5rem;
}
@media (max-width:767px) {
  .group_info .tel_box {
    padding-left: 0rem;
    text-align: left;
  }
}
/*company*/
#company {
  text-align: center;
}
#company .inner {
  max-width: 1000px;
}
#company .inner li {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 820px) {
  #company .inner {
    padding: 15px 2rem;
    padding-bottom: 10px;
  }
  #company .inner li {
    padding-bottom: 10px;
  }
}
/*メッセージ*/
#message {
  padding: 4rem 0;
}
#message .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.message_box {
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.message_txt {
  text-align: left;
  width: 70%;
  padding-right: 2rem;
}
.message_txt p {
  font-size: 1.125rem;
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-feature-settings: "palt";
}
.message_ph {
  width: 30%;
}
.message_ph img {
  width: 90%;
  height: auto;
}
@media screen and (max-width: 767px) {
  #message .inner h2 {
    margin: 0;
    padding-bottom: 0;
  }
  .message_box {
    flex-direction: column;
  }
  .message_txt, .message_ph {
    max-width: 100%;
    width: 100%;
    padding: 16px 0px;
  }
  .message_txt p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  #message .inner {
    padding: 0 2rem;
  }
}
/* 会社案内－会社概要*/
#company_profile {
  padding: 4rem 0;
}
#company_profile .inner {
  max-width: 1200px;
  margin: 0 auto;
}
.company_detail {
  display: grid;
  grid-template-columns: 26% 74%;
  margin-top: 40px;
  border-bottom: 1px solid #ccc;
}
.company_detail dt, .company_detail dd {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  margin: 0;
}
.company_detail dt {
  padding-right: 20px;
  font-weight: bold;
}
.company_detail dt:last-of-type, .company_detail dd:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 1024px) and (max-width: 1180px) {
  #company_profile .inner {
    padding: 0 2rem;
  }
}
@media (max-width: 820px) {
  #company_profile .inner {
    padding: 0 2rem;
  }
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
  .company_detail {
    display: block;
  }
  .company_detail dt, .company_detail dd {
    width: 100%;
    border-bottom: none;
  }
  .company_detail dt {
    margin-top: 24px;
    padding: 16px 0;
  }
  .company_detail dd {
    padding: 0 0 24px 0;
    border-bottom: 1px solid #ccc;
  }
  .company_detail dd:last-child {
    padding-bottom: 20px;
    border-bottom: none;
  }
}
/* 会社案内－沿革*/
#company_history .inner {
  max-width: 1000px;
  margin: 0 auto;
}
.history {
  margin-bottom: 100px;
}
.history_inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.history-heading {
  margin-bottom: 14px;
}
.history_txt {
  margin-bottom: 45px;
}
.history-list {
  margin-left: 7px;
  border-left: 1px solid #1F1E47;
}
.history-box {
  position: relative;
  padding: 20px 0 28px 30px;
}
.history-box::before {
  content: "";
  display: block;
  position: absolute;
}
.history-box::before {
  width: 15px;
  height: 15px;
  background: #e68a00;
  border-radius: 50%;
  top: 30px;
  left: -8px;
}
.history-box:last-of-type {
  padding-bottom: 0;
}
.history-text_box {
  margin-bottom: 16px;
}
.history-year {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.870rem;
  line-height: 1.6;
  font-feature-settings: "palt";
  font-family: 'FOT-筑紫Aオールド明朝 Pr6N R', "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.history-text {
  margin-bottom: 5px;
  font-weight: bold;
  line-height: 1.6;
  font-feature-settings: "palt";
}
.history_ph {
  width: 186px;
  margin: 0 auto;
}
@media all and (max-width: 374px) {
  .history-list {
    margin-left: 0;
  }
  .history-box {
    padding-top: 23px;
    padding-left: 40px;
  }
  .history-box::after {
    width: 20px;
  }
  .history-year {
    font-size: 1.8rem;
  }
}
@media all and (max-width: 1024px) {
  #company_history .inner {
    padding: 0 2rem;
  }
}
@media all and (min-width: 768px) {
  .history {
    width: calc(100% - 120px);
    margin: 0 auto 130px;
  }
  .history_inner {
    padding-top: 150px;
    padding-bottom: 145px;
  }
  .history-heading {
    margin-bottom: 11px;
  }
  .history_txt {
    margin-bottom: 75px;
  }
  .history-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 0 30px 60px;
  }
  .history-box::after {
    width: 43px;
    left: 18px;
  }
  .history-text_box {
    width: 50%;
    margin: 0;
  }
  .history-text {
    margin-bottom: 3px;
    /* font-size: 2rem;
        letter-spacing: .15em;*/
  }
  .history_ph {
    width: 350px;
    margin: 2px 0 0 auto;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  .history_ph {
    width: 250px;
    margin: 2px 0 0 2em;
  }
  .history-text_box {
    width: 65%;
    margin: 0;
  }
}
@media all and (min-width: 1921px) {
  .history {
    background-size: 100%;
  }
}
@media all and (max-width: 767px) {
  .history_ph {
    width: 100%;
    margin: 0 auto;
  }
}
#privacy {
  text-align: center;
}
#privacy .inner {
  max-width: 1200px;
}
/* 共通：パララックス背景部分 */
.bg_artwork {
  min-height: 400px;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
/* 背景画像ごとの設定 */
.bg_artwork.company_bg01 {
  background-image: url(../img/company/bg01.jpg);
}
.bg_artwork.company_bg02 {
  background-image: url(../img/company/bg02.jpg);
}
@media (max-width: 768px) {
  .bg_artwork {
    background-attachment: scroll; /* 固定せず通常スクロール */
    background-size: cover; /* カバーのままでOK */
    background-position: center center; /* ズレ対策 */
    height: 250px;
    min-height: unset;
  }
  .bg_artwork.company_bg02 {
    background-position: 60% 50%;
  }
}
/*うんとん処*/
/*沿革*/
#company_history {
  padding: 4rem 0;
}
/*事業内容*/
#business h2 {}
/*採用情報*/
#recruit {}
#recruit .inner {
  max-width: 1000px;
  padding-bottom: 5em;
}
/*お問い合わせ*/
#contact {}
#inquiry .inner {
  max-width: 1000px;
  padding: 2em;
  margin: 2em auto;
  text-align: left;
}
/*#contact .telinquiry_box, #contact .forminquiry_box {
  text-align: center;
}*/
#contact .question_box {
/*  margin: 80px auto;*/
	margin: 30px auto;
}
#contact .telinquiry_box h2 {
  padding-bottom: 0.5em;
}
#contact .forminquiry_box {
/*  margin: 80px auto;*/
	margin: 30px auto;}
#contact .forminquiry_box_text {
  text-align: left;
}
@media screen and (max-width: 767px) {
  #contact .inner {
    width: 100%;
    padding: 0 1em;
  }
  #contact .telinquiry_time {
    font-size: 0.875rem;
  }
  .telinquiry_box {
    text-align: left;
  }
  #contact .forminquiry_box {
    margin: 0px auto;
  }
}
.contact_tel {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Mulish", sans-serif;
}
.contact_tel::before {
  font-family: FontAwesome;
  content: '\f095';
  margin-right: 10px;
  font-size: 1.5rem;
}
/* アコーディオン */
.accordion h2 {
  margin: auto;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.faq_list {
  border-top: 1px solid #ccc;
}
.faq_question {
  cursor: pointer;
  padding: 16px;
  border-bottom: 1px solid #ccc;
  background-color: #f8f8f8;
  position: relative;
}
.faq_question::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s ease;
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  pointer-events: none;
}
.faq_question.open::after {
  transform: translateY(-50%) rotate(-45deg);
}
.faq_answer {
  display: none;
  padding: 16px;
  background: #fff;
  border-bottom: 1px solid #ccc;
}
.accordion_shop dt {
  font-weight: bold;
  padding: 20px 0 10px;
}
@media (max-width: 767px) {
  .faq_question {
    padding: 2rem 3rem 2rem 2rem;
  }
  .forminquiry_box .text {
    padding-top: 2rem;
  }
}
.telinquiry_box h2, .forminquiry_box h2 {
  font-weight: bold;
  font-size: 1.250rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.telinquiry_box h2, .forminquiry_box h2 {
  display: flex;
  justify-content: center;
}
.forminquiry_box .text {
  letter-spacing: -0.02em;
}
.forminquiry_box .att {
  text-align: left;
  font-size: 0.875rem;
  text-indent: -1em;
  padding: 1em;
  margin-top: 2em;
/*  border: 1px solid #ccc;
*/}
.forminquiry_box .att li {
  padding-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #contact .telinquiry_box, #contact .forminquiry_box {
    text-align: left;
  }
}
/*Contact Form 7*/
/******************************/
/** コンタクトフォームの装飾 **/
/******************************/
/*　フォーム全体　*/
#cf7-area {
  margin: 80px auto;
}
.cf7-item {
  margin: 0 0 1.75em;
}
.cf7-q {
  width: 100%;
  margin: 0 0 20px 0px;
}
.cf7-q p {
  display: inline;
}
.cf7-a {
  width: 100%;
}
/* 各項目共通 */
#cf7-area label {
  font-weight: bold;
}
#cf7-area input[type="text"], #cf7-area input[type="email"], #cf7-area input[type="tel"], #cf7-area textarea {
  background: #F0F8FF;
  width: 100%;
}
#cf7-area input[type="text"]:focus, #cf7-area input[type="email"]:focus, #cf7-area input[type="tel"]:focus, #cf7-area textarea:focus {
  background: #FFE4E1;
  border: 2px solid #FF1493;
  outline: 0;
}
#cf7-area input[type="checkbox"], #cf7-area input[type="radio"] {
  appearance: auto;
}
#cf7-area .wpcf7-list-item {
  display: block;
  text-align: left
}
#cf7-area textarea {
  height: 200px;
  padding: 0.625em 0.4375em;
}
.cf7-accept-check {
  text-align: center;
  margin: 50px auto;
}
.cf7-submit {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
#cf7-area input[type="submit"] {
  width: 100%;
  background-color: #004386;
  color: #ffffff;
  border-radius: 5px;
  font-size: 1.2em;
  padding: 1em 10px;
}
#cf7-area input[type="submit"]:hover {
  background-color: #004386;
  color: #ffffff;
  border: 2px solid #cccccc;
}
.cf7-btn {
  width: 40%;
  margin: 0 auto;
  text-align: center;
}
/*　必須ラベル　*/
.Required_label:after {
  content: "必須";
  display: inline-block;
  color: #fff;
  background-color: #FF7A4D;
  border-radius: 10px;
  font-size: 0.750rem;
  padding: 2px 8px;
  margin-left: 3px;
}
@media screen and (max-width:768px) {
  .cf7-item {
    display: block;
  }
  #cf7-area label {
    /*display: block;*/
    margin-bottom: 10px;
  }
  .cf7-q {
    width: 100%;
    margin: 0;
  }
  .cf7-a {
    width: 100%;
  }
  .cf7-submit {
    width: 90%;
  }
}
/*thanksページ*/
#thanks {
  text-align: center;
  margin-top: 80px;
}
#thanks .thanks_inner {
  text-align: center;
  padding: 0 0 8em 0;
}
@media screen and (max-width: 767px) {
  #thanks {
    padding: 0px 2em;
  }
}
.att_unit {
  text-align: left;
  padding: 2em;
}
.att_unit a {
  text-decoration: underline;
}
.acceptance_box {
  margin-top: 2em;
}
.submitbt {
  margin-top: 2em;
}
/*privacy-policy*/
#pp .inner {
  max-width: 1000px;
  padding-bottom: 2em;
  margin: 4em auto;
  text-align: left;
}
#pp .inner h2 {
  border-bottom: 1px solid #2B417E;
  margin: 2em 0 1em 0;
  padding-bottom: 0.5em;
  font-size: 1.5rem;
}
#pp .inner li {
  line-height: 1.8;
  letter-spacing: 0.05em;
}
#pp .sub_title h1 .jp {
  font-size: 2rem;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 1024px) {
  #pp section {
    width: 100%;
  }
  #pp .inner {
    padding: 20px
  }
}
/*おしらせ*/
#blog .sub_title, #blog-single .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/blog_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 767px) {
  #blog .sub_title, #blog-single .sub_title {
    background-position: 66% 50%;
    height: 360px;
  }
}
#blog {
  text-align: center;
}

#blog {
  overflow: hidden;
}
#blog, #blog_post {
  text-align: center;
  overflow: hidden;
}
#blog .inner, #blog_post .inner {
  max-width: 1040px;
  padding-bottom: 2em;
  margin: 2em auto;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 flex-direction: column;
}
#blog .main-column, #blog_post .main-column {
  width: 65%;
  max-width: 780px;
}
#blog .side-column, #blog_post .side-column {
  width: 25%;
}
#blog .blog-ttl {
  text-align: left;
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: bold;
}
#blog .blog-ttl:hover {
  text-decoration-line: underline;
}
/*#blog .post-info { padding: 20px 0; text-align: left}*/
#blog .blog-date {
  font-weight: bold;
  display: block;
  font-size: 1.125rem;
}
#blog .post-txt {
  line-height: 1.8em;
  padding-bottom: 2em;
}
.news-list-page {
  padding: 60px 20px 0px 20px;
}
.page-title {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 常に3列固定 */
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.news-thumb {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-meta {
  color: #888;
  margin: 1rem;
}
.news-category {
  background-color: #4A4A8C;
  color: #fff;
  padding: 6px 15px 5px;
  border-radius: 1rem;
  margin-left: 10px;
  font-size: 0.750rem;
  transition: background-color 0.3s ease;
}
.news-category:hover {
  background-color: #D96D00;
  color: #fff;
}
.news-title {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
  margin: 0 1rem 1rem;
  flex: 1;
}
/* スマホ対応：1カラム */
@media (max-width: 767px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
/* タブレット対応：2カラム */
@media (min-width: 768px) and (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*ページネーション*/
/* ラッパーを中央揃え */
.pagination {
  display: flex;
  justify-content: center; /* 横中央寄せ */
  margin: 2rem 0;
}

/* ulを横並び中央寄せ */
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各ページ番号の共通スタイル */
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* hover & current（dots を完全除外） */
.pagination .page-numbers:not(.dots):hover,
.pagination .page-numbers:not(.dots).current {
  background-color: #d96d00;
  color: #fff;
}

/* prev / next（矢印） */
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  background: none;        /* 背景なし */
  font-size: 1.2rem;       /* 矢印少し大きめ */
  font-weight: bold;       /* 太字でくっきり */
  color: #333;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

/* prev / next hover */
.pagination .page-numbers.prev:hover,
.pagination .page-numbers.next:hover {
  background-color: #d96d00;
  color: #fff;
}

/* dots（...） */
.pagination .page-numbers.dots {
  background: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  font-weight: normal !important;
  cursor: default !important; /* ホバー時に手のアイコンにならない */
  color: #333 !important;     /* 文字色固定 */
}

/* dots のホバーを完全に無効化 */
.pagination .page-numbers.dots:hover {
  background-color: transparent !important;
  color: #333 !important;
  cursor: default !important;
}


.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2em 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.category-link {
  display: inline-block;
  background-color: #eee;
  color: #1F1E47;
  padding: 6px 12px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.3s ease;
}
.category-link:hover, .category-link.current {
  background-color: #4A4A8C; /* 紺色 */
  color: #fff;
}
.news-title a {
  color: #1F1E47; /* 普段の文字色 */
  text-decoration: none;
  transition: color 0.3s ease;
}
.news-title a:hover {
  color: #d96d00; /* ホバー時の色 */
}
.tag-title {
border-bottom: double 3px #4A4A8C;
display: block;
padding-bottom:0!important;
font-feature-settings: "palt";
margin: 0 0 2em 0!important;
}

/*お知らせ個別ぺージ*/
#blog-single .news-detail-page {
  padding: 60px 20px;
  background: #fafafa;
}
#blog-single .news-post {
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 800px; /* PCでの最大幅 */
  min-width: 280px; /* 最小幅を確保 */
  width: 100%; /* レスポンシブ対応 */
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #blog-single .news-post {
    padding: 20px;
  }
}
#blog-single .news-meta {
  font-size: 1.250rem;
  color: #1F1E47;
  margin-bottom: 10px;
}

#blog-single .inner h2 {
  font-size: 1.5rem;
  margin: 2rem 0 0 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1F1E47;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic Medium", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-feature-settings: "palt";
  padding-bottom: 0;
}
@media (max-width: 768px) {
  #blog-single .inner h2 {
    font-size: 1.250rem;
  }
}
#blog-single .news-content {
  font-size: 1.05rem;
  line-height: 1.9;
  color: #1F1E47;
  margin: 1rem;
}
#blog-single .news-content p {
  margin-bottom: 1.5em;
}
#blog-single .news-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2em auto;
  border-radius: 4px;
}
#blog-single .back-to-list {
  margin-top: 60px;
  text-align: center;
}

#blog-single .news-tags {
  margin: 1rem;
 
}
#blog-single .news-tag {
  color: #4A4A8C;
  border-radius: 1rem;
	display: inline-block;
    border: solid 1px #4A4A8C;
    padding: 6px 15px 5px;
    margin: 4px 7px 4px 0;
    transition: background-color 0.3s ease;
	font-size: 0.750rem;
    font-weight: bold;
}
#blog-single .news-tag:hover {
  background-color: #4A4A8C;
  color: #fff;
}
#blog-single .news-tags {
  display: flex;
  flex-wrap: wrap; /* 横並びで収まらないとき折り返し */
  gap: 6px; /* タグ間の余白（margin代わり） */
}
#blog-single .news-tags .news-tag {
  background-color: #f8f8f8;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #333;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
#blog-single .news-tags .news-tag:hover {
  background-color: #333;
  color: #fff;
}
/*side*/
#side {
  text-align: left
}
.side_box {
  padding: 20px;
}
#side li {
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
#side li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  #side {
    padding-top: 4rem;
  }
}
/*404*/
#notfound .sub_title {
  text-align: center;
  position: relative;
  margin: 0;
  padding: 3em;
  height: 600px;
  background: url(../img/pp_title.png) center top no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}
@media (max-width: 768px) {
  #notfound .sub_title {
    background-position: center;
    height: 360px;
  }
}
#notfound-404 {
  text-align: center;
}
#notfound-404 .inner {
  max-width: 1000px;
  padding: 2em;
  margin: 2em auto;
  text-align: center;
}
#notfound-404 .inner h2 {
  margin: 0;
}
@media (max-width: 820px) {
  #notfound-404 .inner {
    text-align: left;
  }
}
/*works アーカイブ*/
#works_archive, #works {
  padding-bottom: 40px;
  overflow: hidden;
}
#works_archive .inner {
  max-width: 1000px;
  padding-bottom: 2em;
  margin: 2em auto;
  text-align: left;
}
#works_archive .works_unit {
  display: flex;
  flex-wrap: wrap;
}
#works_archive .works_unit img {
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
#works_archive .works_unit li {
  width: calc(25% - 60px / 4);
  margin: 0 20px 50px 0;
}
#works_archive .works_unit li:nth-child(4n) {
  margin-right: 0;
}
#works_archive .entry-title::before, #works .entry-title::before {
  content: url(../img/ti_works.png);
  display: block;
  margin-bottom: -20px;
}
@media screen and (max-width: 767px) {
  #works_archive .works_unit {
    padding: 0 20px 20px 20px;
    display: block;
  }
  #works_archive .works_unit li {
    width: 100%;
  }
}
/*works詳細ページ*/
#works {
  overflow: hidden;
}
#works .inner {
  max-width: 1000px;
  margin: 2em auto;
  text-align: left;
}
#works h2 {
  text-align: center;
}
#works .text_area {
  padding: 0 0 20px 0;
  line-height: 1.8;
}
.works_hero {
  text-align: center;
}
#works dl {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  padding: 20px 0;
}
#works dt {
  flex-basis: 40%;
  border-bottom: 1px dotted #ccc;
  padding: 1em;
  font-weight: bold;
}
#works dd {
  flex-basis: 60%;
  border-bottom: 1px dotted #ccc;
  padding-left: 10.5em;
  padding: 1em;
}
@media screen and (max-width: 559px) {
  .company dl {
    flex-flow: column;
  }
}
@media screen and (max-width: 767px) {
  #works dt {
    float: none;
    width: 100%;
    padding: 1em 1em 0 1em;
  }
  #works h2 {
    text-align: left;
  }
}
/*ギャラリー*/
#works .works_unit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.items:before {
  order: 1;
}
#works .works_unit li {
  width: calc((100% - 60px) / 4);
  margin-bottom: 20px;
}
#works .works_unit li img {
  width: 235px;
  height: 235px;
  object-fit: cover;
}
#works .works_unit li:child(4n) {
  margin-right: 0;
}
ul.works_unit li {
  width: calc((100% - 60px) / 4);
}
ul.works_unit::after, ul.works_unit::before {
  content: "";
  display: block;
  width: calc((100% - 60px) / 4);
  height: 0;
}
ul.works_unit::before {
  order: 1;
}
#works .works_info {
  margin: 60px 0;
}
#works h2 {
  font-size: 2.0rem;
}
#works .name {
  text-align: center;
  margin-top: 1em;
  font-size: 1.250rem;
}
@media screen and (max-width: 767px) {
  #works .sub_contents {
    padding: 20px
  }
  #works .works_unit li {
    width: calc(50% - 20px / 2);
    margin: 0 10px 10px 0;
  }
  #works .works_unit li img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  #works .works_info {
    margin: 30px 0;
  }
  #works .name {
    text-align: left;
  }
}
.works_title {
  font-weight: bold;
}
.works_name {
  font-size: 0.875rem;
}
.works_title a:hover {
  color: #93AEA3;
}
.works_casebox {
  display: flex;
  align-items: top;
}
.works_casebox_text {
  width: 50%;
  padding-right: 80px;
}
.works_casebox_text p {
  line-height: 2;
}
.works_casebox_img {
  width: 50%;
}
@media (max-width: 767px) {
  .works_casebox {
    flex-direction: column;
  }
  .works_casebox_text {
    width: 100%;
    padding-right: 0px;
    margin-bottom: 20px;
  }
  .works_casebox_img {
    width: 100%;
  }
}
/************************************
** Contact form 7 CSSカスタマイズ
************************************/
/* 入力欄全体の設定 */
input[type="text"], input[type="password"], input[type="datetime"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], select, textarea {
  display: block;
  width: 100%;
  height: 45px;
  margin-bottom: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  background-color: #F3F7FA;
  color: #5c6b80;
  font-size: 1em;
  vertical-align: middle;
  line-height: 45px;
  transition: background-color 0.24s ease-in-out;
}
/* テキストエリアの設定 */
table.CF7_table textarea {
  resize: vertical;
  max-width: 100%;
  min-height: 300px;
  line-height: 1.5em;
  padding: 0.5em;
  overflow: auto;
}
/* 入力欄とテキストエリア共通 */
.CF7_table input, .CF7_table select, .CF7_table textarea {
  border: 1px solid #d8d8d8;
}
/* table */
table.CF7_table {
  width: 100%;
  margin: 0 auto;
  border: none !important
}
table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}
table.CF7_table th {
  width: 30%;
  background-color: #F3F7FA;
  font-size: 15px;
  vertical-align: middle;
}
@media (min-width: 768px) and (max-width: 1023px) {
  table.CF7_table th {
    width: 35%;
  }
}
/* 背景を削除 */
table.CF7_table tr, table.CF7_table th, table.CF7_table td {
  padding: 0.75rem 0.75rem !important;
  background: none !important;
  border: none !important;
}
.single .entry-content table.CF7_table, .page .entry-content table.CF7_table {
  display: table;
}
.CF7_table ::placeholder {
  color: #797979;
}
/*「必須」文字*/
.CF7_req {}
.CF7_table .required::after {
  /* display: flex
; 
     align-items: center; 
    justify-content: center;*/
  color: #fff;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 1;
  content: "必須";
  border-radius: 13px;
  font-size: .9em;
  padding: 4px 7px;
  background: #D96D00;
  border-radius: 3px;
  margin-left: 1em;
}
/*「任意」文字*/
.CF7_unreq {
  font-size: .9em;
  padding: 4px 7px;
  background: #bdbdbd;
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}
/* レスポンシブ */
@media screen and (max-width: 767px) {
  /*	table.CF7_table{
	    width: 90%;
	}*/
  .CF7_table tr, .CF7_table td, .CF7_table th {
    display: block;
    width: 100% !important;
    line-height: 2.5em;
  }
  .CF7_table th {
    background-color: #F3F7FA;
  }
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #1F1E47;
  border: 2px solid #1F1E47;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  padding: 15px 30px;
  transition: all 0.5s 0s ease;
}
.wpcf7 input.wpcf7-submit:hover {
  background: #fff;
  color: #1F1E47;
}
.CF7_btn {
  text-align: center;
  margin: 20px;
}
.wpcf7-spinner {
  width: 0;
  margin: 0;
}
/* ************************************
  ************************************ */