@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");

/* CSS Document */

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* グローバルスタイル */
html {
  font-size: 62.5%;
  scroll-padding-top: 16.4rem;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #343434;
  line-height: 1.75;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  /* line-height: 1.6; */
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  opacity: 0.9;
}

section {
  padding: 8rem 0;
}

#top_fv_area {
  padding-top: 0;
}

.sp_disp {
  display: none;
}

.sp_disp_none {
  display: block;
}

.sp_disp1100 {
  display: none;
}

/* ヘッダー */
header {
  position: fixed;
  width: 100%;
  z-index: 100;
  background-color: #fff;
}

.header_flex_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  height: 16.4rem;
}

.header_left a {
  display: block;
  background: url(../img/kikuhara_logo.png) no-repeat center;
  content: "";
  width: 279px;
  height: 35px;
}

.header_left.active a {
  display: block;
  background: url(../img/kikuhara_logo_hamburger.png) no-repeat center;
  content: "";
  width: 279px;
  height: 35px;
}

.header_right {
  display: flex;
  align-items: center;
  gap: 3rem;
  /* margin-right: 4rem; */
}

.header_right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header_menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#heder_menu01 a::before {
  background: url(../img/header_icon_about.png) no-repeat center;
  width: 16px;
  height: 17px;
  content: "";
  display: inline-block;
}

#heder_menu02 a::before {
  background: url(../img/header_icon_access.png) no-repeat center;
  width: 14px;
  height: 19px;
  content: "";
  display: inline-block;
}

#heder_menu03 a::before {
  background: url(../img/header_icon_recruit.png) no-repeat center;
  width: 14px;
  height: 18px;
  content: "";
  display: inline-block;
}

.header_child {
  background-color: #fff;
}

/* トップへ戻るボタン */
.pagetop {
  height: 100px;
  width: 100px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: rgba(255, 255, 255, 0.6);
  /* background: #fff; */
  border: none;
  /* border: solid 2px #fff; */
  border-radius: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99;
  cursor: pointer;
  padding-bottom: 0.5rem;
  opacity: 0.4;
}

.pagetop__arrow {
  display: block;
  width: 12px;
  height: 60px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: skewY(135deg);
  margin: 20px 45px 0 30px;
}

.pagetop.disp_none {
  display: none !important;
}

/* ハンバーガーメニュー */
.hamburger_nav {
  display: block;
}
/* 
.hamburger_nav::before {
  content: "MENU";
  text-align: center;
  display: block;
  letter-spacing: 1rem;
  font-size: 1.6rem;
} */

.hamburger_nav .menu-icon {
  display: block;
}

/* .menu-icon.active {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 6rem 5rem;
  max-width: 161px;
  max-height: 161px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
} */
/* 
.header_right.active {
  margin-right: 0;
} */

.hamburger_nav ul {
  display: none;
  flex-direction: column;
  background-color: #444;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
}

.hamburger_nav ul.active {
  display: flex;
  z-index: -1;
  top: 0;
  height: 100dvh;
  background: url(../img/hamburger_menu_bg.png) no-repeat center;
  justify-content: space-between;
  padding-bottom: 8rem;
  min-height: -webkit-fill-available;
  overflow-y: scroll;
}

.hamburger_nav ul.active li {
  display: block;
  font-family: "Noto Serif JP";
  max-width: 1100px;
  margin: 0 auto;
}

.hamburger_nav ul.active li a {
  color: #fff;
  font-size: 3.3rem;
}

.hamburger_nav ul.active li a span {
  color: #dddee5;
  font-size: 3rem;
}

.header_right.active .header_menu {
  display: none;
}

/* .active span:nth-of-type(1) {
  transform: rotate(45deg);
}
.active span:nth-of-type(2) {
  transform: rotate(-45deg);
} */

.openbtn1.active span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 2.5rem;
  background: #fff;
}
.openbtn1.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background: #fff;
}

.hamburger_nav li {
  list-style: none;
  display: none;
  width: 100%;
  text-align: right;
}

/* .hamburger_nav a {
  display: block;
  width: 100%;
  text-align: right;
} */

.openbtn1 {
  position: relative;
  cursor: pointer;
  width: 117px;
  /* width: 100%; */
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.openbtn1::before {
  position: absolute;
  content: "MENU";
  text-align: center;
  display: block;
  letter-spacing: 1rem;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 3px;
  border-radius: 2px;
  background: #333;
  width: 100%;
  margin-top: 0.5rem;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 25px;
}
/* 
.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 10px;
} */

.active.openbtn1::before {
  display: none;
}

.hamburger_menu_active {
  margin-top: 20rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hamburger_sub_menu {
  color: #dddee5;
}

/* ファーストビュー */
.top_fv_wrapper {
  position: relative;
}

.top_fv_wrapper h1 {
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "游明朝", YuMincho, serif;
  position: absolute;
  font-size: 6.3rem;
  letter-spacing: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* text-shadow: 0 0 0.16px #fff; */
  font-weight: 400;
}

.top_fv_wrapper span {
  font-size: 10.2rem;
  padding-right: 0.5rem;
}

.hamburger_address.address_txt {
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  border: none;
  font-family: "Noto Serif JP";
  font-weight: 100;
}

/* フッター */
footer {
  background-color: #1d2651;
  padding: 8rem 0;
  color: #fff;
  font-family: "Noto Serif JP";
}

.footer_flex_wrapper {
  display: flex;
  justify-content: center;
  gap: 8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.footer_left img {
  padding-right: 6rem;
  margin-bottom: 3rem;
}

.address_txt {
  border-right: 3px solid #fff;
  padding-right: 8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-size: 1.6rem;
  letter-spacing: 0.6rem;
  font-weight: 100;
}

.footer_right {
  display: flex;
  gap: 4rem;
  margin-top: 7rem;
  font-size: 1.8rem;
}

.footer_right_about a {
  color: #dddee5;
}

.footer_right_about a:hover {
  cursor: pointer;
  opacity: 0.9;
}

.footer_right span {
  font-weight: 500;
  color: #fff;
}

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

.footer_txt span {
  padding-top: 1rem;
}

.footer_tel_txt {
  padding-top: 1rem;
}

.address_company_txt {
  font-size: 3rem;
}

/* スワイパー */
.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
  margin-right: 3rem;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* トップページ */
.container1100px {
  max-width: 1100px;
  margin: 0 auto;
}

#top_about_us_area {
  padding: 8rem 0 45rem;
}

.top_flex_container {
  display: flex;
  max-width: 1520px;
  justify-content: space-between;
}

#top_about_us_area .top_flex_container > div:first-child {
  width: 70%;
}

#top_about_us_area .top_flex_container > div:nth-child(2) {
  width: 30%;
}

.top_flex_items {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: 500px;
  justify-content: space-between;
}

.top_flex_items.top_about_right {
  align-items: flex-end;
}

.ttl_wrapper {
  position: relative;
  font-size: 5.5rem;
  font-weight: 400;
  font-family: "Noto Serif JP";
}

.ttl_wrapper::before {
  position: absolute;
  content: attr(data-en);
  font-size: 16px;
  color: #8f8f8f;
  font-family: "Jost", sans-serif;
  font-size: 2.6rem;
  font-weight: normal;
  top: -30px;
}

.ttl_wrapper.about_us::before {
  right: 0;
}

.top_flex_items a {
  font-family: "Jost", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
}

.top_flex_items.top_about_right::after {
  background: url(../img/top_about_us_img02.jpg) no-repeat center;
  content: "";
  width: 677px;
  height: 704px;
  position: absolute;
  right: -75%;
  top: 120%;
}

.ttl_wrapper.gallery::before {
  position: absolute;
  content: attr(data-en);
  top: -30px;
  left: 0;
  font-size: 16px;
  color: #8f8f8f;
  font-family: "Jost", sans-serif;
  font-size: 2.6rem;
  font-weight: normal;
}

.ttl_wrapper.gallery::before {
  left: 0;
}

.gallery_swiper {
  margin: 4rem auto;
  position: relative;
}

.gallery_swiper::after {
  position: absolute;
  background: url(../img/circle_bg01.png) no-repeat center;
  width: 1121px;
  height: 1291px;
  content: "";
  left: 0;
  top: -90%;
  z-index: -1;
}

.gallery_copyright {
  text-align: left;
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}

#gallery_area {
  padding: 8rem 0 40rem;
}

#top_recruit_area .top_flex_container {
  flex-direction: row-reverse;
  margin-left: auto;
}

.top_flex_items.top_recruit_left {
  align-items: flex-start;
  height: 100vh;
}

.ttl_wrapper.recruit::before {
  left: 0;
}

.top_flex_items.top_recruit_left::after {
  position: absolute;
  background: url(../img/top_recruit_img02.jpg) no-repeat center;
  content: "";
  width: 684px;
  height: 574px;
  left: -300px;
  top: 120%;
}

#top_recruit_area {
  padding: 8rem 0 40rem;
}

.top_access_right {
  position: relative;
}

#top_access_area {
  position: relative;
}

.top_access_map {
  width: 100%;
  max-width: 1100px;
}

#top_access_area iframe {
  width: 100%;
  aspect-ratio: 2 / 1;
}

#top_access_area::after {
  position: absolute;
  content: "";
  background: url(../img/circle_bg02.png) no-repeat center;
  width: 1084px;
  height: 1291px;
  right: 0;
  z-index: -1;
  top: -30%;
}

.ttl_wrapper.access::before {
  right: 0;
}

#top_access_area .top_access_right {
  align-items: flex-end;
}

.more_wrapper a {
  display: block;
  width: 100%;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-end;
}

.more_wrapper.right a {
  align-items: flex-end;
}

.more_wrapper.left a {
  align-items: flex-start;
}

.more_txt {
  padding-right: 3rem;
}

.more_wrapper a:hover .dli-arrow-right {
  width: 35rem;
  opacity: 0.9;
  transition: 0.3s;
}

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  position: relative;
  width: 9.8rem;
  height: 0.1rem;
  background: currentColor;
}

.dli-arrow-right::before {
  content: "";
  width: 2rem;
  height: 0.1rem;
  border: 0.1rem solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}

/* ABOUT US */
#kikuhara_recruit_page #top_fv_area,
#kikuhara_about_us_page #top_fv_area {
  padding-bottom: 4rem;
}

#kikuhara_recruit_page .top_fv_wrapper h1,
#kikuhara_about_us_page .top_fv_wrapper h1 {
  color: #fff;
  font-size: 5.5rem;
  left: 27%;
}

#kikuhara_recruit_page .top_fv_wrapper span,
#kikuhara_about_us_page .top_fv_wrapper span {
  font-size: 2.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 100;
  letter-spacing: 0.2rem;
}

.container1100px {
  max-width: 1100px;
  margin: 0 auto;
}

.table_container {
  margin: 4rem auto;
  border-bottom: 1px solid #dddee5;
}

.contents_wrapper {
  display: flex;
  border-top: 1px solid #dddee5;
  padding: 2rem;
}

.table_left {
  width: 20%;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "Shippori Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN",
    "游明朝", YuMincho, serif;
  color: #1d2651;
}

.table_right {
  width: 80%;
  font-size: 1.6rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
}

.table_right li {
  list-style: none;
  margin-bottom: 1rem;
}

#history_detail_area .contents_wrapper {
  border-top: none;
}

#history_detail_area .table_container {
  border-top: 1px solid #dddee5;
  border-bottom: 1px solid #dddee5;
  padding: 2rem 0;
}

#access_area iframe {
  margin-top: 4rem;
  width: 100%;
  aspect-ratio: 2 / 1;
}

/* 採用情報 */
#recruit_detail_area .table_container {
  margin-bottom: 2rem;
}

.table_bottom_caution {
  font-family: "Jost", sans-serif;
  color: #c20000;
  padding-left: 2rem;
  margin-bottom: 4rem;
}

.top_nav_flex {
  display: none;
}

@media screen and (max-width: 1600px) {
  #top_about_us_area .top_flex_container > div:first-child {
    width: 60%;
  }

  .top_flex_items.top_about_right::after {
    right: -25%;
  }

  #top_about_us_area .top_flex_container > div:nth-child(2),
  #top_access_area .top_access_right {
    margin-right: 4%;
  }

  #top_recruit_area .top_flex_container {
    margin-left: 4%;
  }

  .top_access_map {
    max-width: 1000px;
  }
}

@media screen and (max-width: 1300px) {
  /* グローバル */
  .sp_disp {
    display: block;
  }

  .sp_disp_none {
    display: none;
  }

  .container1100px {
    padding: 0 6%;
  }

  /* #kikuhara_about_us_page .top_fv_wrapper,
  #kikuhara_recruit_page .top_fv_wrapper {
    padding-top: 10.6rem;
  } */

  .contents_wrapper {
    gap: 2rem;
    /* word-break: auto-phrase; */
  }

  /* ハンバーガーメニュー */
  .hamburger_menu_active {
    margin-top: 16rem;
  }

  .hamburger_nav ul.active {
    padding: 0 6% 8rem;
  }

  .hamburger_address.address_txt {
    /* margin: 4rem auto 0; */
    gap: 1rem;
  }

  .hamburger_nav ul.active li a,
  .hamburger_nav ul.active li a span {
    font-size: 2rem;
  }

  .header_flex_wrapper {
    height: 10rem;
  }

  .openbtn1::before {
    padding-left: 1rem;
  }

  /* トップページ */
  #kikuhara_top_page #top_fv_area {
    padding-bottom: 3rem;
  }

  #top_about_us_area {
    padding: 4rem 0 25rem;
  }

  /* #top_about_us_area .top_flex_container > div:first-child {
    width: 60%;
  } */

  /* .header_flex_wrapper {
    padding: 0 2rem;
    height: 8rem;
  } */

  .openbtn1 {
    position: relative;
    cursor: pointer;
    width: 80px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
  }

  /* .hamburger_nav::before {
    font-size: 0.9rem;
  } */

  .top_flex_container {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  #top_about_us_area .top_flex_container > div:nth-child(2) {
    width: 100%;
  }

  .ttl_wrapper::before {
    top: -20px;
  }

  .top_flex_items {
    padding: 0 6%;
  }

  .more_wrapper.right.sp_disp {
    padding-right: 6%;
  }

  .more_wrapper .sp_disp_none {
    display: none;
  }

  .top_flex_items.top_about_right::after {
    display: none;
  }

  .sp_flex_wrapper {
    display: flex;
    margin-top: 4rem;
  }

  .sp_flex_wrapper.right {
    padding-left: 6%;
    text-align: right;
  }

  .sp_flex_wrapper.right > div:first-child {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .sp_flex_wrapper.right > div:nth-child(2) {
    width: 60%;
  }

  .sp_flex_wrapper.left {
    padding-right: 6%;
  }

  .sp_flex_wrapper.left > div:first-child {
    width: 60%;
  }
  .sp_flex_wrapper.left > div:nth-child(2) {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .swiper-slide {
    line-height: 1;
  }

  .gallery_copyright {
    text-align: right;
  }
  /* 
  #gallery_area {
    padding: 4rem 0;
  } */

  .gallery_swiper::after {
    position: absolute;
    background: url(../img/circle_bg01.png) no-repeat center;
    width: 1121px;
    height: 1291px;
    content: "";
    left: -20%;
    top: -100%;
    z-index: -1;
  }

  #top_recruit_area .top_flex_container {
    flex-direction: column-reverse;
    gap: 4rem;
  }

  .top_flex_items.top_recruit_left {
    height: 100%;
  }

  .top_flex_items.top_recruit_left::after {
    display: none;
  }

  #top_recruit_area .top_flex_container > div:first-child {
    width: 60%;
    margin-left: auto;
  }

  #top_recruit_area {
    padding: 8rem 0 25rem;
  }

  #top_access_area::after {
    position: absolute;
    content: "";
    background: url(../img/circle_bg02.png) no-repeat center;
    width: 1084px;
    height: 1291px;
    right: 0;
    z-index: -1;
    top: -10%;
  }

  /* 
  #top_recruit_area {
    padding: 4rem 0 8rem;
  } */
  /* 
  #top_access_area {
    padding: 2rem 3rem 6rem 3rem;
  } */

  #top_access_area iframe {
    margin-bottom: 2rem;
  }

  /* 会社概要 */

  /* #kikuhara_about_us_page .top_fv_wrapper h1,
  #kikuhara_recruit_page .top_fv_wrapper h1 {
    font-size: 3rem;
    left: 50%;
    width: 100%;
    text-align: center;
  } */

  /* #kikuhara_recruit_page .top_fv_wrapper span,
  #kikuhara_about_us_page .top_fv_wrapper span {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  } */

  .table_container {
    margin: 2rem auto;
  }

  /* .table_left {
    font-size: 1.6rem;
    width: 30%;
  }

  .table_right {
    width: 70%;
  } */

  /* .contents_wrapper {
    padding: 1rem;
    gap: 1rem;
  } */

  /* #history_detail_area .table_left {
    width: 35%;
  }

  #history_detail_area .table_right {
    width: 65%;
  } */
}

@media screen and (max-width: 1100px) {
  /* グローバル */
  .sp_disp1100 {
    display: block;
  }

  /* ヘッダー */
  .header_flex_wrapper {
    padding: 0 6%;
    height: 8rem;
  }

  .header_left a {
    background: url(../img/kikuhara_logo_sp.png) no-repeat center;
    width: 161px;
    height: 20px;
  }

  .header_left.active a {
    background: url(../img/kikuhara_logo_hamburger_sp.png) no-repeat center;
    width: 161px;
    height: 20px;
  }

  .header_menu {
    display: none;
  }

  /* トップページ */
  .top_fv_wrapper h1 {
    font-size: 4rem;
  }

  .top_fv_wrapper span {
    font-size: 6rem;
    padding-right: 0.5rem;
  }

  .top_access_map {
    padding: 0 4%;
  }
}

@media screen and (max-width: 769px) {
  /* グローバル */
  section {
    padding: 4rem 0;
  }

  .sp_disp {
    display: block;
  }

  .sp_disp_none {
    display: none;
  }

  .more_wrapper a:hover .dli-arrow-right {
    width: 6.1rem;
  }

  .container1100px {
    padding: 0 6%;
  }

  .contents_wrapper {
    gap: 2rem;
    /* word-break: auto-phrase; */
  }

  /* トップへ戻るボタン */
  .pagetop {
    height: 70px;
    width: 70px;
    position: fixed;
    right: 30px;
    bottom: 60px;
    background-color: rgba(255, 255, 255, 0.6);
    /* background: #fff; */
    border: none;
    /* border: solid 2px #fff; */
    border-radius: 50px;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99;
    cursor: pointer;
    padding-bottom: 0.5rem;
    opacity: 0.4;
  }

  .pagetop__arrow {
    display: block;
    width: 8px;
    height: 40px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: skewY(135deg);
    margin: 15px 33px 10px 30px;
  }
  /* ハンバーガーメニュー */
  .hamburger_menu_active {
    margin-top: 16rem;
  }

  .hamburger_nav ul.active {
    background: url(../img/hamburger_menu_bg_sp.jpg) no-repeat center;
    background-size: cover;
    padding: 0 6% 4rem;
    justify-content: space-between;
  }

  .hamburger_address.address_txt {
    /* margin: 4rem auto 0; */
    gap: 1rem;
  }

  .hamburger_nav ul.active li a,
  .hamburger_nav ul.active li a span {
    font-size: 2rem;
  }

  .header_left a {
    background: url(../img/kikuhara_logo_sp.png) no-repeat center;
    width: 161px;
    height: 20px;
  }

  .header_left.active a {
    background: url(../img/kikuhara_logo_hamburger_sp.png) no-repeat center;
    width: 161px;
    height: 20px;
  }

  /* フッター */
  footer {
    padding: 4rem 3rem;
    font-size: 1.6rem;
    letter-spacing: normal;
  }

  .footer_flex_wrapper {
    flex-direction: column;
    gap: 0;
  }

  .footer_right_about {
    gap: 0.5rem;
  }

  .address_company_txt {
    font-size: 2rem;
  }

  .address_txt {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #fff;
    padding-bottom: 3rem;
  }

  .address_txt > div:nth-child(2),
  .address_txt > div:nth-child(3) {
    letter-spacing: 0.2rem;
  }

  .footer_right {
    font-size: 1.6rem;
    margin-top: 3rem;
    justify-content: center;
    gap: 4rem;
  }

  /* トップページ */
  #kikuhara_top_page #top_fv_area {
    padding-bottom: 3rem;
  }

  #top_about_us_area {
    padding: 4rem 0 10rem;
  }

  #top_about_us_area .top_flex_container > div:first-child {
    width: 80%;
  }

  .top_fv_wrapper h1 {
    font-size: 2.8rem;
    white-space: nowrap;
  }

  .top_fv_wrapper span {
    font-size: 4.5rem;
    padding-right: 0.5rem;
  }

  .header_menu {
    display: none;
  }

  .header_flex_wrapper {
    padding: 0 2rem;
    height: 8rem;
  }

  .openbtn1 {
    cursor: pointer;
    width: 54px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
  }

  .openbtn1::before {
    font-size: 0.9rem;
    left: 60%;
    padding-left: 0;
  }

  .top_flex_container {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .more_txt {
    padding-right: 1.2rem;
  }

  .dli-arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 6.1rem;
    background: currentColor;
  }

  .dli-arrow-right::before {
    content: "";
    width: 1.2rem;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
  }

  #top_about_us_area .top_flex_container > div:nth-child(2) {
    width: 100%;
  }

  .ttl_wrapper {
    font-size: 2.5rem;
  }

  .ttl_wrapper::before {
    font-size: 1.6rem;
    top: -20px;
  }

  .top_flex_items {
    padding: 0 3rem;
  }

  .more_wrapper .sp_disp_none {
    display: none;
  }

  .top_flex_items.top_about_right::after {
    display: none;
  }

  .top_nav_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 6rem;
  }

  .top_nav_flex a {
    vertical-align: middle;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .top_nav_flex > div {
    border-bottom: 1px solid #333;
  }

  .sp_flex_wrapper {
    display: flex;
    margin-top: 4rem;
  }

  .sp_flex_wrapper.right {
    padding-left: 3rem;
  }

  .sp_flex_wrapper.right > div:first-child {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .sp_flex_wrapper.right > div:nth-child(2) {
    width: 60%;
  }

  .sp_flex_wrapper.left {
    padding-right: 3rem;
  }

  .sp_flex_wrapper.left > div:first-child {
    width: 60%;
  }
  .sp_flex_wrapper.left > div:nth-child(2) {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .gallery_swiper::after {
    background: url(../img/circle_bg01_sp_ver2.png) no-repeat center;
    width: 262px;
    height: 386px;
    /* width: 524px;
    height: 772px; 
    left: -70%;*/
    left: 0;
    top: -160px;
  }

  .swiper-slide {
    line-height: 1;
    margin-right: 1rem;
  }

  .gallery_copyright {
    text-align: right;
  }

  #gallery_area {
    padding: 4rem 0;
  }

  #top_recruit_area .top_flex_container {
    flex-direction: column-reverse;
  }

  .top_flex_items.top_recruit_left {
    height: 100%;
  }

  .top_flex_items.top_recruit_left::after {
    display: none;
  }

  #top_recruit_area .top_flex_container > div:first-child {
    width: 80%;
    margin-left: auto;
  }

  #top_recruit_area {
    padding: 4rem 0 8rem;
  }

  #top_access_area::after {
    position: absolute;
    content: "";
    background: url(../img/circle_bg02_sp_ver2.png) no-repeat center;
    width: 299px;
    height: 489px;
    right: 0;
    z-index: -1;
    top: -10%;
  }

  #top_access_area {
    padding: 2rem 3rem 6rem 3rem;
  }

  #top_access_area iframe {
    aspect-ratio: 1 / 0.75;
    margin-bottom: 2rem;
  }

  /* 会社概要 */
  #kikuhara_about_us_page #top_fv_area,
  #kikuhara_recruit_page #top_fv_area {
    padding-top: 8rem;
  }

  #kikuhara_about_us_page .top_fv_wrapper h1,
  #kikuhara_recruit_page .top_fv_wrapper h1 {
    font-size: 3rem;
    left: 50%;
    width: 100%;
    text-align: center;
  }

  #kikuhara_recruit_page .top_fv_wrapper span,
  #kikuhara_about_us_page .top_fv_wrapper span {
    font-size: 1.6rem;
    letter-spacing: 0.2rem;
  }

  .table_container {
    margin: 2rem auto;
  }

  .table_left {
    font-size: 1.6rem;
    width: 30%;
  }

  .table_right {
    width: 70%;
  }

  .contents_wrapper {
    padding: 1rem;
    gap: 1rem;
  }

  #history_detail_area .table_left {
    width: 35%;
  }

  #history_detail_area .table_right {
    width: 65%;
  }

  #company_detail_area,
  #history_detail_area {
    padding: 2rem 0 4rem;
  }

  #access_area {
    padding: 2rem 0 6rem;
  }

  /* 採用情報 */
  #recruit_detail_area {
    padding: 2rem 0;
  }

  .table_bottom_caution {
    padding-left: 0;
  }
}
