* {
  margin: 0;
  padding: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.pc {
  display: inline !important;
}

.tb,
.sp,
#tb_s,
#tb_p,
#sp_s_hm {
  display: none !important;
}

header {
  position: fixed;
  width: 100%;
  z-index: 99999;
}

#h_hm_p {
  padding: 20px 0 33px;
  margin: 0 auto;
  gap: 10px;
}

#h_hm_pf {
  padding: 33px 0;
  gap: 10px;
}

#h_hm_add {
  gap: 10px;
}

#h_hm_add .form_add_1 {
  gap: 10px;
}

#h_hm_add .form_add_2 {
  justify-content: unset;
}

#h_hm_add .add_sns {
  padding-bottom: 10px;
}

main a {
  color: #252525;
}

img {
  width: 100%;
  vertical-align: top;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 27px;
}

main {
  background-color: #fbf7f1;
}

.h_black {
  display: flex;
  align-items: center;
  padding: 0 80px;
  justify-content: space-between;
  height: 100px;
  background: #252525;
}

.h_gold {
  height: 5px;
  width: 100%;
  background-image: linear-gradient( 90deg, #C18E44, #E1B97D,  #F3E1C3, #E6C592, #C5934B );
}

.logo {
  width: 275px;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.h_ber {
  display: flex;
  align-items: center;
  gap: 32px;
}

.h_btn {
  transition: 0.3s;
}

.h_btn:hover {
  opacity: 0.8;
}

.h_btn a {
  display: flex;
  background: #ffffff;
  border-radius: 6px;
  font-size: 18px;
  color: #252525;
  padding: 20px;
  letter-spacing: 1px;
  font-weight: 900;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.h_btn a img {
  width: 21px;
  height: auto;
}

.Instagram-icon {
  max-width: 32px;
}

.Instagram-icon img {
  width: 100%;
}

/* ハンバーガーメニュー */
.hamburger_icon {
  display: block;
  height: 50px;
  position: relative;
  cursor: pointer;
  z-index: 100;
}

.hamburger_menu {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 36px;
}

.hamburger_menu span {
  display: block;
  position: absolute;
  background: #ffffff;
  height: 2px;
  width: 100%;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
  transform-origin: center;
}

/* 平時の位置 */
.hamburger_menu span:nth-of-type(1) {
  top: 12px;
}
.hamburger_menu span:nth-of-type(2) {
  top: 24px;
}

/* クリック時に横アイコンが斜めになる */
#menu_toggle:checked ~ .hamburger_icon .hamburger_menu span:nth-of-type(1) {
  top: 18px;
  transform: rotate(45deg);
}

#menu_toggle:checked ~ .hamburger_icon .hamburger_menu span:nth-of-type(2) {
  top: 18px;
  transform: rotate(-45deg);
}

.menu_toggle {
  display: none;
}

.menu_content {
  position: fixed;
  top: 105px;
  right: -100%;
  width: 100%;
  z-index: 90;
  background: #252525;
  color: #ffffff;
  font-size: 18px;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.menu_content a {
  text-decoration: none;
  color: #ffffff;
}

/* メニューを表示 */
#menu_toggle:checked ~ .menu_content {
  right: 0;
}

/* top */
.top {
  position: relative;
  height: 256px;
  display: flex;
  align-items: center;
  padding: 105px 80px 0;
  background-image: url(../images/ashirai/head-bg.webp);
  }

/*.top {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  padding: 0 186px;
  background-image: url(../images/ashirai/head-bg.webp);
}*/

.top_title {
  color: #ffffff;
  font-size: 32px;
  /*font-size: 40px;*/
  line-height: 33px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  filter: drop-shadow(0px 0px 12px #000000cc);
}

.top_title img {
  width: 25px;
}

/* main */
.single_one {
  display: flex;
  width: 1120px;
  padding: 106px 0;
  margin: 0 auto;
  gap: 60px;
}

.single_one_top {
  width: 774px;
}

.fl {
  display: flex;
  gap: 18px;
  padding-bottom: 12px;
}

.fl p {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #c18e44
}

.post-categories {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}

.post-categories li {
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #252525;
  border-radius: 20px;
  padding: 0 10px;
}

.fl a {
  text-decoration: none;
}

.single_one_title {
  padding-bottom: 32px;
}

.single_one_content {
  padding-bottom: 70px;
  border-bottom: 1px solid #707070;
}

.single_one_content p {
  line-height: 32px;
  padding-bottom: 30px;
}

.single_one_content p:last-child {
  padding-bottom: 0;
}

/* ナビゲーション */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  transition: opacity 0.3s;
}

.nav-text {
  font-weight: 700;
}

.nav-link:hover:not(.disabled) {
  opacity: 0.7;
}

.nav-link.disabled {
  color: #adadad;
  cursor: default;
}

.nav-circle {
  width: 30px;
  height: 30px;
  background-color: #252525;
  border-radius: 50%;
  position: relative;
}

.nav-circle.prev {
  margin-right: 20px;
}

.nav-circle.next {
  margin-left: 20px;
}

/* PREV - 左向き矢印 */
.nav-prev .nav-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* NEXT - 右向き矢印 */
.nav-next .nav-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-text.next {
  margin-right: 40px;
}

.nav-text.prev {
  margin-left: 40px;
}

/* sideber */
.sidebar {
  display: flex;
  flex-direction: column;
  width: 286px;
  margin: 0 auto;
  gap: 24px;
}

.introduction_box {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #dfd1bb;
  border-radius: 16px;
}

.box_title {
  display: flex;
  padding: 17px 24px;
  border-bottom: 1px solid #dfd1bb;
}

.box_column {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.box_column ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.box_column a {
  text-decoration: none;
}

/* footer */
.footer {
  background: #252525;
  color: #ffffff;
  font-size: 18px;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.footer_menu {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 1120px;
  padding: 88px 0;
  margin: 0 auto 88px;
  border-bottom: 1px solid #ffffff;
  gap: 20px;
}

.footer_menu_one {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.f_title {
  border-bottom: 1px solid #ffffff;
  padding: 13px 0;
}

.footer_menu_one.right {
  justify-content: space-between;
}

.footer_menu_one ul {
  list-style-position: inside;
  padding-left: 0;
  padding-top: 20px;
}

.footer_menu_list {
  padding-bottom: 17px;
}

.footer_menu_list:last-child {
  padding-bottom: 0;
}

.footer_form {
  display: flex;
  justify-content: space-between;
  width: 1120px;
  padding: 0 0 88px;
  margin: 0 auto;
}

.footer_form_logo img {
  width: 284px;
  padding-bottom: 20px;
}

.footer_form_logo p {
  font-size: 16px;
  line-height: 24px;
}

.footer_form_add {
  display: flex;
  gap: 30px;
}

.form_add_1 {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.add_tel,
.add_yoyaku {
  display: flex;
  align-items: center;
  gap: 13px;
  height: 58px;
  border-bottom: 1px solid #ffffff;
}

.add_tel img,
.add_yoyaku img {
  width: 24px;
  height: auto;
}

.add_tel a {
  font-family: "Expletus Sans", sans-serif;
  font-size: 37px;
  letter-spacing: 3px;
}

.add_yoyaku a {
  font-size: 26px;
}

.form_add_2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.add_sns {
  display: flex;
  gap: 25px;
}

.line {
  display: flex;
  background: #438b44;
  border-radius: 12px;
  padding: 18px 24px;
}

.insta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d34547;
  width: 73px;
  height: 73px;
  border-radius: 50%;
}

.insta img {
  width: 32px;
}

.add_link {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.add_link a {
  font-size: 14px;
}

.copyright {
  padding: 25px 0;
  font-size: 16px;
  text-align: center;
  background-image: url(../images/ashirai/head-bg.webp);
}

@media screen and (max-width: 1180px) {

  .tb,
  #tb_p {
    display: inline !important;
  }

  .pc,
  .sp,
  #tb_s {
    display: none !important;
  }

  .h_black {
    padding: 0 40px;
  }

  .top_title {
    font-size: 32px;
  }

  .single_one {
    flex-direction: column;
    width: 679px;
    padding: 72px 0;
  }  

  .single_one_top {
    width: 100%;
  }

  .sidebar {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .introduction_box {
    width: 324px;
  }

  .footer_menu {
    flex-direction: column;
    width: 846px;
    padding: 88px 0 0;
    margin: 0 auto;
    gap: 48px;
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer_menu_tb {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer_menu_one {
    width: calc(33.333% - 22px);
  }

  .footer_menu_tb.right {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer_menu_tb.right .footer_menu_one {
    width: calc(33.333% - 22px);
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer_form {
    flex-direction: column;
    width: 846px;
    padding: 48px 0 88px;
    gap: 48px;
  }

  .footer_form_add {
    gap: 48px;
  }

}

@media screen and (max-width: 844px) {

  .pc,
  .sp,
  #tb_p {
    display: none !important;
  }

  .tb,
  #tb_s {
    display: inline !important;
  }

  .h_black {
    padding: 0 35px;
  }

  .h_ber {
    gap: 27px;
  }

  .top {
    height: 186px;
  }

  .top_title img {
    width: 19px;
  }

  .introduction {
    width: 690px;
  }

  .footer_menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 568px;
    padding: 88px 0 40px;
    gap: 40px;
  }

  .footer_menu_one {
    width: 100%;
  }

  .footer_menu_tb.right {
    flex-direction: column;
    gap: 0;
  }

  .footer_menu_tb.right .footer_menu_one {
    width: 100%;
  }

  .footer_form {
    width: 568px;
    padding: 40px 0 88px;
    margin: 0 auto;
  }

  .footer_form_add {
    flex-direction: column;
  }

  .footer_form_add {
    width: 355px;
  }

  .add_sns {
    padding-bottom: 48px;
  }

  .add_link {
    justify-content: flex-start;
  }

}

@media screen and (max-width: 680px) {

  .single_one {
    width: 450px;
  }

  .newscontent {
    word-break: break-all;
    max-width: 20em;
  }
}

@media screen and (max-width: 450px) {

  .sp {
    display: inline !important;
  }

  .pc,
  .tb,
  #tb_p {
    display: none !important;
  }

  #tb_s,
  #sp_s_hm {
    display: inline !important;
  }

  .h_ber {
    gap: 20px;
  }

  .h_black {
    padding: 0 15px;
  }

  .logo {
    width: 180px;
  }

  .h_btn_os img {
    width: 21px;
    height: auto;
  }

  .hamburger_menu {
    width: 24px;
    height: 32px;
  }

  .hamburger_menu span:nth-of-type(1) {
    top: 14px;
  }

  .hamburger_menu span:nth-of-type(2) {
    top: 22px;
  }

  .menu_content {
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch
  }

  #h_hm_pf {
    margin-bottom: 100px;
  }

  .slider_wrapper {
    width: 100%;
  }

  .top {
    height: 120px;
    padding: 105px 20px 0;
  }

  .top_title {
    padding: 0;
    font-size: 24px;
  }

  .single_one {
    width: 335px;
    padding: 56px 0;
    gap: 48px;
  }

  .post-categories {
    flex-wrap: wrap;
    gap: 10px;
  }

  .sidebar {
    flex-direction: column;
  }

  .introduction {
    width: 335px;
    padding: 56px 0;
    gap: 24px;
  }

  .footer_menu {
    display: flex;
    flex-direction: column;
    width: 335px;
    padding: 40px 0 0;
    margin: 0 auto;
  }

  .footer_menu_list {
    font-size: 15px;
  }

  .footer_form {
    width: 335px;
    padding: 48px 0 56px;
    margin: 0 auto;
    gap: 32px;
  }

  .footer_form_add {
    width: 335px;
  }

  .add_tel ,
  .add_yoyaku {
    gap: 8px;
  }

  .add_tel a {
    font-size: 32px;
  }

  .add_yoyaku a {
    font-size: 24px;
  }

  .form_add_2 {
    align-items: center;
  }

  .copyright {
    font-size: 14px;
  }

}