@charset "UTF-8";
/*共通スタイル*/
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Switzer";
  src: url("../fonts/Switzer-VariableItalic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: "IBM Plex Sans JP", sans-serif;
  color: hsl(0, 2%, 10%);
  background: #fff;
  -webkit-text-size-adjust: 100%;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  position: relative;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.3s ease-out, background-color 0.3s ease-out;
  background-color: transparent;
}
.site_header .global_nav_list_link_text {
  color: hsl(0, 2%, 10%);
}
@media screen and (min-width: 980px) {
  .site_header .global_nav_list_link_text {
    color: #fff;
  }
}
body.no-main-visual .site_header, .site_header.is-fixed {
  position: fixed;
  background-color: #fff;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
body.no-main-visual .site_header .global_nav_list_link_text, .site_header.is-fixed .global_nav_list_link_text {
  color: hsl(0, 2%, 10%);
}
body:not(.no-main-visual) .site_header.is-fixed {
  transform: translateY(-100%);
}
.site_header.is-show {
  transform: translateY(0) !important;
}
.site_header_logo {
  position: relative;
  z-index: 9999;
  max-width: 184px;
  transition: opacity 0.3s ease-out;
}
@media screen and (min-width: 1040px) {
  .site_header_logo {
    max-width: 245px;
  }
}
.site_header_logo:hover {
  opacity: 0.6;
}
.site_header_logo img {
  width: 100%;
}

[id] {
  scroll-margin-top: 90px;
}
@media (min-width: 768px) {
  [id] {
    scroll-margin-top: 100px;
  }
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  touch-action: manipulation;
  box-shadow: none;
  display: block;
  width: 48px;
  height: 48px;
  border: none;
  position: relative;
  z-index: 1001;
  background: hsl(46, 100%, 49%);
  border-radius: 999px;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
}
@media screen and (min-width: 980px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  width: 4px;
  height: 4px;
  background: hsl(198, 59%, 51%);
  border-radius: 999px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s ease;
}
.global_nav_toggle_bar-top {
  transform: translate(calc(-50% - 10px), -50%);
}
.global_nav_toggle_bar-mid {
  transform: translate(-50%, -50%);
}
.global_nav_toggle_bar-btm {
  transform: translate(calc(-50% + 10px), -50%);
}
.global_nav_toggle.is-active .global_nav_toggle_bar {
  width: 24px;
  height: 2px;
  border-radius: none;
  left: 50%;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translate(-50%, -50%) rotate(-24deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translate(-50%, -50%) rotate(24deg);
}
@media screen and (max-width: 979px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    transition: opacity 0.3s linear, visibility 0.3s linear;
    overflow-y: auto;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
.global_nav_overlay.is-open {
  visibility: visible;
  opacity: 1;
}
.global_nav_container {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 979px) {
  .global_nav_container {
    padding: 132px 40px 60px;
    position: relative;
    z-index: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 64px;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .global_nav_list {
    width: auto;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
  }
}
.global_nav_list_item {
  width: 100%;
}
@media screen and (min-width: 980px) {
  .global_nav_list_item.sp_global_nav_list_item {
    display: none;
  }
}
.global_nav_list_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width: 980px) {
  .global_nav_list_link {
    display: inline-block;
    position: relative;
    white-space: nowrap;
  }
  .global_nav_list_link::after {
    background-color: #fff;
    /* 下線の色 */
    bottom: -4px;
    /* 要素の下端からの距離 */
    content: "";
    /* 要素に内容を追加 */
    height: 1px;
    /* 下線の高さ */
    left: 0;
    /* 要素の左端からの距離 */
    position: absolute;
    /* 絶対位置指定 */
    transform: scale(0, 1);
    /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: right top;
    /* 変形の原点を右上に指定 */
    transition: transform 0.3s ease-out;
    /* 変形をアニメーション化 */
    width: 100%;
    /* 要素の幅 */
  }
  .global_nav_list_link:hover::after {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  body.no-main-visual .global_nav_list_link::after, .site_header.is-fixed .global_nav_list_link::after {
    background-color: hsl(0, 2%, 10%);
  }
}
.global_nav_list_link_text {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (min-width: 980px) {
  .global_nav_list_link_text {
    font-size: 14px;
    line-height: 1;
    text-align: right;
  }
}
body.no-main-visual .global_nav_list_link_text {
  color: hsl(0, 2%, 10%);
}
body.no-main-visual .global_nav_list_link_text::after {
  background-color: hsl(0, 2%, 10%);
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s ease-out;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
body.no-main-visual .global_nav_list_link_text:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.site_header.is-fixed .global_nav_list_link_text {
  color: hsl(0, 2%, 10%);
}
.global_nav_list_link_arrow {
  padding: 8px 7px 9px 8px;
  border-radius: 4px;
  background: hsl(198, 59%, 51%);
  max-width: 24px;
  max-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .global_nav_list_link_arrow {
    display: none;
  }
}
.global_nav_list_link_arrow img {
  max-width: 9px;
  vertical-align: middle;
}
.global_nav_btn_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .global_nav_btn_container {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    width: auto;
  }
}
.global_nav_btn_container .global_nav_btn_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 0 3px 3px 0;
}
@media screen and (min-width: 980px) {
  .global_nav_btn_container .global_nav_btn_arrow {
    display: none;
  }
}
.global_nav_btn_container .global_nav_btn_arrow.recruit_global_nav_btn_arrow {
  background: hsl(198, 59%, 51%);
}
.global_nav_btn_container .global_nav_btn_arrow.contact_global_nav_btn_arrow {
  background: hsl(46, 100%, 49%);
}
.global_nav_btn_container .global_nav_recruit_btn,
.global_nav_btn_container .global_nav_contact_btn {
  border-radius: 3px;
  max-width: 310px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .global_nav_btn_container .global_nav_recruit_btn,
  .global_nav_btn_container .global_nav_contact_btn {
    padding: 18px 20px;
    border-radius: 5px;
    max-width: none;
    width: auto;
    transition: background-color 0.3s ease-out;
  }
}
.global_nav_btn_container .global_nav_recruit_btn .global_nav_btn_text,
.global_nav_btn_container .global_nav_contact_btn .global_nav_btn_text {
  padding: 23px 0 22px 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .global_nav_btn_container .global_nav_recruit_btn .global_nav_btn_text,
  .global_nav_btn_container .global_nav_contact_btn .global_nav_btn_text {
    padding: 0;
  }
}
.global_nav_btn_container .global_nav_recruit_btn .global_nav_btn_text.recruit_global_nav_btn_text,
.global_nav_btn_container .global_nav_contact_btn .global_nav_btn_text.recruit_global_nav_btn_text {
  color: hsl(0, 2%, 10%);
}
.global_nav_btn_container .global_nav_recruit_btn .global_nav_btn_text.contact_global_nav_btn_text,
.global_nav_btn_container .global_nav_contact_btn .global_nav_btn_text.contact_global_nav_btn_text {
  color: #fff;
}
.global_nav_btn_container .global_nav_recruit_btn {
  background-color: hsl(46, 100%, 49%);
}
@media screen and (min-width: 980px) {
  .global_nav_btn_container .global_nav_recruit_btn:hover {
    background-color: hsl(40, 85%, 42%);
  }
}
.global_nav_btn_container .global_nav_contact_btn {
  background-color: hsl(198, 59%, 51%);
}
.global_nav_btn_container .global_nav_contact_btn:hover {
  background-color: hsl(198, 55%, 40%);
}

.common_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .common_text {
    font-size: 15px;
  }
}

.no_link {
  pointer-events: none;
}

.title_btn_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.common_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  max-width: 155px;
  width: 100%;
  padding: 18px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  border-radius: 5px;
  background-color: hsl(198, 59%, 51%);
}
@media (min-width: 920px) {
  .common_btn {
    max-width: 207px;
    padding: 24px 24px 24px 20px;
  }
}
.common_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 31%;
  height: 100%;
  background-color: hsl(46, 100%, 49%);
  transition: width 0.3s ease-out;
  z-index: -1;
}
.common_btn:hover::before {
  width: 100%;
}
.common_btn.to_top {
  flex-direction: row-reverse;
}
.common_btn.to_top::before {
  right: auto;
  left: 0;
}
.common_btn.to_top:hover::before {
  width: 100%;
}
@media (min-width: 768px) {
  .common_btn.right_btn {
    margin: 0 0 0 auto;
  }
}
.common_btn.recruit_btn {
  background-color: #fff;
}
.common_btn.recruit_btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
  background-color: hsl(198, 59%, 51%);
  transition: width 0.3s ease-out;
  z-index: -1;
}
.common_btn.recruit_btn:hover::before {
  width: 100%;
}
.common_btn.recruit_btn:hover .common_btn_text_recruit {
  color: #fff;
}
.common_btn_text {
  color: #fff;
  font-family: "Switzer";
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}
.common_btn_text.common_btn_text_recruit {
  color: hsl(198, 59%, 51%);
}
.common_btn_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 16px;
}
.common_btn_arrow.to_top {
  transform: rotate(180deg);
}
.common_btn_arrow img {
  width: 100%;
}

/*フッターのスタイル*/
.site_footer {
  position: relative;
  z-index: 1;
  background: hsl(0, 2%, 10%);
  padding: 304px 0 0;
}
@media (min-width: 768px) {
  .site_footer {
    padding: 320px 0 0;
  }
}
@media screen and (min-width: 980px) {
  .site_footer {
    padding: 292px 0 0;
  }
}
.site_footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/common/footer_filter.png");
  /* フォールバック（未対応ブラウザ用） */
  background-image: -webkit-image-set(url("../img/common/footer_filter.png") 1x, url("../img/common/footer_filter@2x.png") 2x);
  background-image: image-set(url("../img/common/footer_filter.png") 1x, url("../img/common/footer_filter@2x.png") 2x);
  background-repeat: repeat;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
}
.site_footer > * {
  position: relative;
  z-index: 2;
}
.site_footer_img {
  display: none;
}
@media (min-width: 920px) {
  .site_footer_img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    max-width: 710px;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
.site_footer_img img {
  width: 100%;
  height: 100%;
}
.site_footer_container_base {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .site_footer_container_base {
    padding: 0 0 0 120px;
  }
}
.site_footer_logo {
  display: block;
  max-width: 245px;
  width: 100%;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) {
  .site_footer_logo {
    max-width: 306px;
  }
}
.site_footer_logo:hover {
  opacity: 0.6;
}
.site_footer_logo img {
  width: 100%;
}
.site_footer_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .site_footer_top {
    align-items: flex-start;
    gap: 64px;
    margin-bottom: 64px;
  }
}
.site_footer_logo_andList {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.site_footer_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site_footer_list_wrap {
  display: none;
}
@media (min-width: 768px) {
  .site_footer_list_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }
}
.site_footer_list_item {
  padding-left: 12px;
  position: relative;
  font-size: 0;
}
.site_footer_list_item::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 999px;
}
.site_footer_list_link {
  color: #fff;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.site_footer_list_link::after {
  background-color: #fff;
  /* 下線の色 */
  bottom: -4px;
  /* 要素の下端からの距離 */
  content: "";
  /* 要素に内容を追加 */
  height: 1px;
  /* 下線の高さ */
  left: 0;
  /* 要素の左端からの距離 */
  position: absolute;
  /* 絶対位置指定 */
  transform: scale(0, 1);
  /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top;
  /* 変形の原点を右上に指定 */
  transition: transform 0.3s;
  /* 変形をアニメーション化 */
  width: 100%;
  /* 要素の幅 */
}
.site_footer_list_link:hover::after {
  transform-origin: left top;
  /* 変形の原点を左上に指定 */
  transform: scale(1, 1);
}
.site_footer_address {
  color: #fff;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 768px) {
  .site_footer_address {
    flex-direction: column;
    gap: 0;
  }
}
.site_footer_address_tel {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}
.site_footer_address_fax {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
}
.site_footer_address_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 316px;
  width: 100%;
}
@media (min-width: 768px) {
  .site_footer_address_container {
    max-width: none;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}
.site_footer_address_inner {
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  white-space: nowrap;
}
.site_footer_address_inner:first-child {
  max-width: 68px;
  width: 100%;
}
@media (min-width: 768px) {
  .site_footer_address_inner:first-child {
    max-width: none;
    width: auto;
  }
}
.site_footer_address_inner_bottom {
  display: flex;
  align-items: center;
}
.site_footer_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-top: 1px solid hsl(0, 0%, 59%);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 390px) {
  .site_footer_bottom {
    padding: 24px 32px;
  }
}
@media (min-width: 600px) {
  .site_footer_bottom {
    justify-content: space-between;
    padding: 8px 10px 8px 120px;
  }
}

.common_contact {
  background: hsl(198, 58%, 80%);
  padding: 40px 20px 20px;
  max-width: 1160px;
  width: 100%;
}
@media (min-width: 768px) {
  .common_contact {
    padding: 80px 32px 40px;
  }
}
.common_contact_container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media (min-width: 768px) {
  .common_contact_container {
    padding: 0 20px;
    top: -173px;
    transform: translateX(-50%);
  }
}
.common_contact_top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .common_contact_top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .common_contact_top_text {
    max-width: 390px;
  }
}
.common_contact_top_text_br {
  display: none;
}
@media screen and (min-width: 450px) {
  .common_contact_top_text_br {
    display: block;
  }
}
@media screen and (min-width: 670px) {
  .common_contact_top_text_br {
    display: none;
  }
}
.common_contact_title {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .common_contact_title {
    font-size: 48px;
  }
}
.common_contact_title_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.common_contact_title_icon {
  max-width: 11px;
}
@media (min-width: 768px) {
  .common_contact_title_icon {
    max-width: 14px;
  }
}
.common_contact_title_jp {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .common_contact_title_jp {
    font-size: 16px;
  }
}
.common_contact_title_ofTop {
  display: flex;
  align-items: center;
  gap: 8px;
}
.common_contact_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_contact_bottom {
  background: hsl(0, 0%, 97%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 20px auto 0;
}
@media screen and (min-width: 390px) {
  .common_contact_bottom {
    padding: 40px 44px;
  }
}
@media (min-width: 768px) {
  .common_contact_bottom {
    flex-direction: row;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0;
    padding: 40px;
    margin: 40px auto 0;
  }
}
@media screen and (min-width: 980px) {
  .common_contact_bottom {
    align-items: center;
    justify-content: center;
    flex-direction: row;
    align-items: stretch;
  }
}
.common_contact_content {
  flex: 1;
}
@media (min-width: 768px) {
  .common_contact_content {
    padding: 0 40px;
    max-width: 273px;
    flex: 0 1 50%;
    max-width: none;
  }
  .common_contact_content:nth-child(2) {
    border: none;
  }
}
@media screen and (min-width: 980px) {
  .common_contact_content {
    flex: 1;
  }
  .common_contact_content:nth-child(2) {
    position: relative;
  }
  .common_contact_content:nth-child(2)::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* ポイント：widthは0にして、borderで線を出す */
    width: 0;
    height: calc(100% - 20px);
    /* background-color ではなく border を指定 */
    border-right: 1px dashed hsl(0, 0%, 59%);
  }
}
.common_contact_content.n_1 {
  max-width: 263px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_contact_content.n_2 {
  max-width: 266px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_contact_content.n_3 {
  max-width: 155px;
}
@media (min-width: 768px) {
  .common_contact_content.n_3 {
    max-width: 247px;
  }
}
.common_contact_content:first-child {
  padding-left: 0;
  border-left: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}
@media (min-width: 768px) {
  .common_contact_content:first-child::after {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    /* ポイント：widthは0にして、borderで線を出す */
    width: 0;
    height: calc(100% - 10px);
    /* background-color ではなく border を指定 */
    border-right: 1px dashed hsl(0, 0%, 59%);
  }
}
@media screen and (min-width: 768px) and (min-width: 980px) {
  .common_contact_content:first-child::after {
    height: calc(100% - 20px);
  }
}
.common_contact_content:last-child {
  padding-right: 0;
  border: none;
  width: 100%;
  margin: 0 auto;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .common_contact_content:last-child {
    padding-left: 0;
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin: 0;
  }
}
@media screen and (min-width: 980px) {
  .common_contact_content:last-child {
    flex: 1;
    justify-content: left;
    padding-top: 0;
    padding-left: 40px;
  }
}
.common_contact_content_top {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
@media (min-width: 768px) {
  .common_contact_content_top {
    height: 44px;
  }
}
.common_contact_content_top .tel_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.common_contact_tel_num {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .common_contact_tel_num {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.common_contact_tel_num span {
  font-size: 16px;
  line-height: 1;
  margin-left: -0.5em;
}
.common_contact_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}

.copyright {
  color: hsl(0, 0%, 59%);
  font-family: "Switzer";
  font-weight: 300;
  font-size: 12px;
  line-height: 1;
  text-align: right;
}

/* ボタン全体 */
.to_top_btn {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  width: fit-content;
  overflow: hidden;
}
.to_top_btn_text {
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  padding: 26px 39px 26px 24px;
  margin: 0;
  background: linear-gradient(to left, #fff 50%, hsl(0, 0%, 33%) 50%);
  background-size: 200% 100%;
  background-position: left bottom;
  transition: background-position 0.4s ease-out, color 0.4s ease-out;
  border-radius: 3px 0 0 3px;
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .to_top_btn_text {
    padding: 16px;
    border-radius: 5px 0 0 5px;
  }
}
.to_top_btn_arrow {
  background-color: hsl(0, 0%, 33%);
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid hsl(0, 0%, 59%);
  border-radius: 0 3px 3px 0;
}
@media (min-width: 600px) {
  .to_top_btn_arrow {
    padding: 16px;
    border-radius: 0 5px 5px 0;
  }
}
.to_top_btn:hover .to_top_btn_text {
  background-position: right bottom;
  color: hsl(0, 2%, 10%);
}

.pc_to_top_btn {
  display: none;
}
@media (min-width: 600px) {
  .pc_to_top_btn {
    display: flex;
  }
}

.sp_to_top_btn {
  max-width: 176px;
  width: 100%;
  margin-top: 16px;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .sp_to_top_btn {
    display: none;
  }
}

.subPage {
  background: hsl(0, 0%, 97%);
  padding-bottom: 236px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .subPage {
    padding-bottom: 173px;
  }
}

.page_top {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 148px;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .page_top {
    gap: 40px;
    padding-top: 203px;
    background: hsl(0, 0%, 97%);
  }
  .page_top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 451px;
    background: #fff;
    border-radius: 0 0 40px 40px;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

.page_header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .page_header {
    flex-direction: row;
    gap: 40px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 clamp(20px, 5.7142857143vw, 80px);
  }
}

.page_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (min-width: 768px) {
  .page_title_wrap {
    gap: 16px;
  }
}
.page_title_top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.page_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_title_jp {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page_title_jp {
    font-size: 16px;
  }
}
.page_title_en {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
}
@media (min-width: 768px) {
  .page_title_en {
    font-size: clamp(48px, 6.8571428571vw, 96px);
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.breadcrumb_item_link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease-out;
}
.breadcrumb_item_link:hover {
  opacity: 0.6;
}
.breadcrumb_item_line {
  background-color: hsl(0, 2%, 10%);
  width: 8px;
  height: 1px;
}
.breadcrumb_item_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  transition: opacity 0.3s ease-out;
}
.breadcrumb_item_text:hover {
  opacity: 0.6;
}

.page_img {
  position: relative;
  aspect-ratio: 390/258;
  width: 100%;
}
@media (min-width: 768px) {
  .page_img {
    aspect-ratio: 1360/600;
    padding: 0 20px;
    margin: 0 auto;
    z-index: 2;
  }
}
.page_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page_section_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .page_section_title {
    font-size: clamp(28px, 2.8571428571vw, 40px);
    line-height: 1.3;
  }
}

.page_section_title_middle {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .page_section_title_middle {
    font-size: 32px;
  }
}

.page_middle_heading {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .page_middle_heading {
    font-size: clamp(20px, 1.7142857143vw, 24px);
  }
}
@media screen and (min-width: 570px) {
  .page_middle_heading_br {
    display: none;
  }
}
@media (min-width: 768px) {
  .page_middle_heading_br {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .page_middle_heading_br {
    display: none;
  }
}
.page_middle_heading_singular_br {
  display: block;
}
@media screen and (min-width: 550px) {
  .page_middle_heading_singular_br {
    display: none;
  }
}
@media (min-width: 768px) {
  .page_middle_heading_singular_br {
    display: block;
  }
}
@media screen and (min-width: 980px) {
  .page_middle_heading_singular_br {
    display: none;
  }
}

.page_common_h {
  padding: 32px 0 80px;
  border-top: 1px solid hsl(0, 0%, 83%);
  position: relative;
}
@media (min-width: 768px) {
  .page_common_h {
    padding: 32px 0 120px;
  }
}
.page_common_h::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  top: -1px;
  left: 0;
  background-color: hsl(198, 59%, 51%);
}

.profile_main_section {
  padding: 64px 0 80px;
}
@media (min-width: 768px) {
  .profile_main_section {
    padding: 120px 0;
  }
}
.profile_main_section_content_wrapper {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .profile_main_section_content_wrapper {
    gap: 80px;
  }
}
.profile_main_section_top {
  display: flex;
  flex-direction: column;
  gap: 64px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .profile_main_section_top {
    width: 100%;
    margin: 0 0 0 auto;
    flex-direction: row;
    justify-content: space-between;
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .profile_main_section_top .profile_slider {
    width: 50.4%;
  }
}
.profile_main_section_top .profile_slider img {
  width: auto;
  /* 画像本来の横幅を維持 */
  height: 204px;
  /* 高さを揃えると綺麗に流れます（デザインに合わせて調整） */
  margin-right: 10px;
  /* 画像同士の隙間 */
  display: block;
}
@media (min-width: 768px) {
  .profile_main_section_top .profile_slider img {
    height: 408px;
    margin-right: 20px;
  }
}
.profile_main_section_top .profile_slider {
  /* slickの計算を安定させるための呪文 */
}
.profile_main_section_top .profile_slider .slick-track {
  display: flex !important;
  align-items: center;
}
.profile_main_section_text_container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px;
}
@media screen and (min-width: 390px) {
  .profile_main_section_text_container {
    padding: 0 48px;
  }
}
@media (min-width: 768px) {
  .profile_main_section_text_container {
    gap: 40px;
    padding: 0;
    margin: 0 0 0 20px;
    max-width: 495px;
  }
}
@media (min-width: 920px) {
  .profile_main_section_text_container {
    margin: 0 0 0 40px;
  }
}
@media screen and (min-width: 1240px) {
  .profile_main_section_text_container {
    margin-left: calc((100vw - 1240px) / 2 + 40px);
  }
}
.profile_main_section_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .profile_main_section_text_wrap {
    gap: 15px;
  }
}
.profile_main_section_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 1200px) {
  .profile_main_section_text {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .profile_main_section_text_br {
    display: none;
  }
}
.profile_main_section_bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .profile_main_section_bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding-right: 40px;
    width: 100%;
  }
}
@media (min-width: 920px) {
  .profile_main_section_bottom {
    align-items: flex-end;
    padding-right: min(8.5714285714vw, 120px);
  }
}
.profile_main_section_bottom_inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .profile_main_section_bottom_inner {
    gap: 24px;
    max-width: 520px;
  }
}
.profile_main_section_logo {
  width: 100%;
}
@media (min-width: 768px) {
  .profile_main_section_logo {
    max-width: 720px;
    width: 50%;
    flex-shrink: 0;
  }
}
@media (min-width: 920px) {
  .profile_main_section_logo {
    width: 56.4%;
  }
}
.profile_main_section_logo img {
  width: 100%;
}

.common_text_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .common_text_container {
    gap: 27px;
  }
}

.logo_message_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .logo_message_wrap {
    gap: 15px;
  }
}

.message_section .message_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .message_section .message_main {
    flex-direction: row-reverse;
    align-items: flex-start;
    margin-top: 80px;
  }
}
.message_section .message_main .manager_img {
  width: 100%;
}
@media (min-width: 768px) {
  .message_section .message_main .manager_img {
    max-width: 560px;
    flex: 1;
  }
}
.message_section .message_title_and_text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .message_section .message_title_and_text {
    gap: 24px;
    flex: 1;
  }
}
.message_section .message_content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.message_section .message_name {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}

.feature_main {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .feature_main {
    margin-top: 80px;
  }
}
.feature_top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .feature_top {
    flex-direction: row-reverse;
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .feature_common_text_container {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .feature_img {
    flex: 1;
  }
}

.static_tab_box {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .static_tab_box {
    margin-top: 10px;
  }
}
.static_tab_box .tab_label {
  padding: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 130px;
  border-radius: 5px 5px 0 0;
  position: relative;
  top: -50%;
  transform: translateY(50%);
}
@media (min-width: 768px) {
  .static_tab_box .tab_label {
    border-radius: 10px 10px 0 0;
    padding: 24px 40px;
    max-width: 170px;
  }
}
.static_tab_box .tab_label .award_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.static_tab_box .tab_label .award_title {
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
}
.static_tab_box .tab_body {
  padding: 32px 20px 20px;
  background: #fff;
  border-radius: 0 5px 5px 5px;
}
@media (min-width: 768px) {
  .static_tab_box .tab_body {
    padding: 40px;
    border-radius: 0 10px 10px 10px;
  }
}
.static_tab_box .tab_body .award_content {
  padding-bottom: 16px;
  border-bottom: 1px dashed hsl(0, 0%, 83%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .static_tab_box .tab_body .award_content {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
  }
}
.static_tab_box .tab_body .award_content:nth-child(n+2) {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .static_tab_box .tab_body .award_content:nth-child(n+2) {
    padding-top: 12px;
  }
}
.static_tab_box .tab_body .award_content:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.static_tab_box .tab_body .award_content .award_date {
  position: relative;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .static_tab_box .tab_body .award_content .award_date {
    padding-left: 20px;
    min-width: 120px;
  }
}
.static_tab_box .tab_body .award_content .award_date::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: hsl(198, 59%, 51%);
}

.overview_main {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .overview_main {
    margin: 80px 0 0 auto;
    max-width: 816px;
  }
}
.overview_content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
@media (min-width: 768px) {
  .overview_content {
    gap: 24px;
  }
}
.overview_content:nth-child(n+2) {
  padding-top: 16px;
}
.overview_content:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.overview_title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  min-width: 100px;
}
@media (min-width: 768px) {
  .overview_title {
    font-size: 15px;
    min-width: 120px;
  }
}
.overview_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .overview_text {
    font-size: 15px;
  }
}
.overview_address_wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (min-width: 768px) {
  .overview_address_wrap {
    gap: 15px;
  }
}
.overview_map {
  width: 100%;
  aspect-ratio: 350/240;
}
@media (min-width: 768px) {
  .overview_map {
    aspect-ratio: 816/300;
  }
}
.overview_map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.profile_common_container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 920px) {
  .profile_common_container {
    flex-direction: row;
    max-width: 816px;
    margin: 80px 0 0 auto;
  }
}
.profile_common_content {
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
@media (min-width: 920px) {
  .profile_common_content {
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 22px;
    border-right: 1px solid hsl(0, 0%, 83%);
  }
}
.profile_common_content:nth-child(n+2) {
  padding-top: 16px;
}
@media (min-width: 920px) {
  .profile_common_content:nth-child(n+2) {
    padding-top: 0;
    padding-left: 24px;
  }
}
.profile_common_content:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 920px) {
  .profile_common_content:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.business_common_main {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  padding: 32px 0;
}
@media (min-width: 768px) {
  .business_common_main {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px 0;
  }
}
.business_common_main.left {
  flex-direction: column;
}
@media (min-width: 768px) {
  .business_common_main.left {
    flex-direction: row;
  }
}
.business_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .business_text_container {
    flex: 1;
    gap: 24px;
  }
}
.business_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 768px) {
  .business_img {
    flex: 1;
  }
}
.business_img img {
  width: 100%;
}

.business_title_middle {
  font-size: 18px;
}
@media (min-width: 768px) {
  .business_title_middle {
    font-size: 24px;
  }
}

.waterproof_section {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .waterproof_section {
    margin-top: 80px;
  }
}

.various_coating_section {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .various_coating_section {
    padding-bottom: 120px;
  }
}

.static_tab_box.business_static_tab_box {
  margin-top: 2px;
}
@media screen and (min-width: 990px) {
  .static_tab_box.business_static_tab_box {
    margin-top: 8px;
  }
}

.tab_label.business_tab_label {
  max-width: 150px;
}
@media (min-width: 768px) {
  .tab_label.business_tab_label {
    max-width: 185px;
    padding: 20px 39px;
  }
}

.device_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.business_tab_title {
  color: hsl(198, 59%, 51%);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
}

.tab_body.business_tab_body {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .tab_body.business_tab_body {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    padding: 40px clamp(20px, 2.8571428571vw, 40px);
  }
}
@media screen and (min-width: 990px) {
  .tab_body.business_tab_body {
    display: flex;
    flex-direction: row;
  }
}

.business_tab_content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 1px dashed hsl(0, 0%, 83%);
}
@media screen and (min-width: 990px) {
  .business_tab_content {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 16px;
    border-right: 1px dashed hsl(0, 0%, 83%);
  }
}
@media (min-width: 1200px) {
  .business_tab_content {
    padding-right: clamp(16px, 2.8571428571vw, 40px);
  }
}
@media (min-width: 768px) {
  .business_tab_content:first-child {
    padding-top: 16px;
  }
}
@media screen and (min-width: 990px) {
  .business_tab_content:first-child {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .business_tab_content:nth-of-type(odd) {
    border-right: 1px dashed hsl(0, 0%, 83%);
  }
}
@media (min-width: 768px) {
  .business_tab_content:nth-of-type(even) {
    padding-left: 16px;
  }
}
.business_tab_content:nth-child(n+2) {
  padding-top: 16px;
}
@media screen and (min-width: 990px) {
  .business_tab_content:nth-child(n+2) {
    padding-top: 0;
    padding-left: 16px;
  }
}
@media (min-width: 1200px) {
  .business_tab_content:nth-child(n+2) {
    padding-left: clamp(16px, 2.8571428571vw, 40px);
  }
}
.business_tab_content:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .business_tab_content:last-child {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 990px) {
  .business_tab_content:last-child {
    padding-bottom: 0;
    border-bottom: none;
    border-right: none;
  }
}

.business_tab_content_inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.business_tab_text {
  padding-left: 12px;
  position: relative;
}
@media screen and (min-width: 990px) {
  .business_tab_text {
    padding-left: 20px;
  }
}
.business_tab_text::before {
  position: absolute;
  content: "";
  top: 0.8em;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background-color: hsl(198, 59%, 51%);
}

.hidden {
  display: none;
}

.business_common_main_wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 990px) {
  .business_common_main_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    padding-bottom: 80px;
    gap: 64px;
  }
}

.business_content_section_inner {
  padding: 64px 0 90px;
}
@media screen and (min-width: 990px) {
  .business_content_section_inner {
    padding: 80px 0 120px;
  }
}

.license_page_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 64px 0 80px;
}
@media (min-width: 768px) {
  .license_page_main {
    flex-direction: row;
    margin: 120px 0;
  }
}
.license_page_main .license_img {
  flex: 1;
}
.license_page_main .license_text {
  flex: 1;
}

.license_content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .license_content {
    gap: 16px;
  }
}
.license_content_container {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .license_content_container {
    flex-direction: row;
    max-width: 816px;
    margin: 80px 0 0 0;
  }
}
.license_content_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
@media (min-width: 768px) {
  .license_content_wrapper {
    gap: 24px;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 24px;
    border-right: 1px solid hsl(0, 0%, 83%);
  }
}
.license_content_wrapper:nth-child(n+2) {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .license_content_wrapper:nth-child(n+2) {
    padding-top: 0;
    padding-left: 24px;
  }
}
.license_content_wrapper:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .license_content_wrapper:last-child {
    padding-right: 0;
    border-right: none;
  }
}

.license_main_item {
  color: hsl(198, 59%, 51%);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  position: relative;
  padding-left: 12px;
}
@media (min-width: 768px) {
  .license_main_item {
    font-size: 18px;
  }
}
.license_main_item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background-color: hsl(198, 59%, 51%);
  border-radius: 999px;
}

.license_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page_top.no_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 320px;
  background: #fff;
  border-radius: 0 0 40px 40px;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .page_top.no_img::after {
    display: none;
  }
}

.archive_section {
  margin: 64px 0 80px;
}
@media (min-width: 768px) {
  .archive_section {
    margin: 120px 0;
  }
}

.archive_main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .archive_main {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.archive_category_list {
  display: flex;
  column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .archive_category_list {
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
  }
}
.archive_category_list.sp_none {
  display: none;
}
@media (min-width: 768px) {
  .archive_category_list.sp_none {
    display: flex;
  }
}

.archive_category_list_item_tab {
  display: block;
  width: fit-content;
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  padding: 8px 10px;
  border: 1px solid hsl(198, 59%, 51%);
  border-radius: 4px;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
.archive_category_list_item_tab:hover {
  color: #fff;
  background-color: hsl(198, 59%, 51%);
}
.archive_category_list_item_tab.current {
  color: hsl(0, 0%, 59%);
  border: 1px solid hsl(0, 0%, 59%);
}
.archive_category_list_item_tab.current:hover {
  color: #fff;
  background-color: hsl(0, 0%, 59%);
}

.archive_article_and_arrow {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 600px) {
  .archive_article_and_arrow {
    max-width: 900px;
    gap: 80px;
  }
}

.works_archive_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 600px) {
  .works_archive_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(1fr);
    gap: 24px;
  }
}

.works_archive_link {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.works_archive_link:hover .works_archive_list_item_img img {
  transform: scale(1.05);
}

.works_archive_list_item_img {
  cursor: pointer;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .works_archive_list_item_img {
    max-width: 438px;
  }
}
.works_archive_list_item_img img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 438/292;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.works_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.works_text_container .works_title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 2;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
}
@media (min-width: 768px) {
  .works_text_container .works_title {
    font-size: 15px;
  }
}
.works_text_container .works_dateAndCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid hsl(0, 0%, 83%);
}
.works_text_container .works_dateAndCategory .works_date {
  font-family: "Switzer";
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}
.works_text_container .works_dateAndCategory .works_category {
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  padding: 8px 10px;
  border: 1px solid hsl(198, 59%, 51%);
  border-radius: 4px;
}

.pagenation .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .pagenation .nav-links {
    gap: 16px;
  }
}
.pagenation .nav-links svg .svg-bg {
  fill: #FABE00;
}
.pagenation .nav-links svg .svg-arrow {
  fill: white;
}
.pagenation .nav-links {
  /* 数字と矢印の間隔 */
}

.page-numbers {
  display: block;
  padding: 6px 12px;
  background: hsl(198, 59%, 51%);
  border-radius: 5px;
  color: #fff;
  font-family: "Switzer";
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.page-numbers.current {
  background: #fff;
  border: 1px solid hsl(198, 59%, 51%);
  color: hsl(198, 59%, 51%);
}

.prev.page-numbers,
.next.page-numbers {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: o;
}

.prev.page-numbers {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .prev.page-numbers {
    margin-right: 16px;
  }
}

.next.page-numbers {
  margin-left: 8px;
}
@media (min-width: 768px) {
  .next.page-numbers {
    margin-left: 16px;
  }
}

.pagenation .page-numbers.disabled {
  pointer-events: none;
  /* クリックを完全に無効化 */
  cursor: default;
}
.pagenation .page-numbers.disabled svg .svg-bg {
  fill: hsl(0, 0%, 59%);
}
.pagenation .page-numbers.disabled svg .svg-arrow {
  fill: #fff;
}

.single_section {
  margin: 128px 0 80px;
}
@media (min-width: 768px) {
  .single_section {
    margin: 240px 0 120px;
  }
}

.single_main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .single_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}

.post_contents {
  max-width: 900px;
}

.post_header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .post_header {
    gap: 40px;
    margin-bottom: 64px;
  }
}
.post_header .post_title {
  font-weight: 600;
  font-size: 28px;
  line-height: 1.8;
}
.post_header .post_date {
  font-family: "Switzer";
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
}

.single_date_and_category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.single_category {
  display: block;
  width: fit-content;
  padding: 8px 10px;
  border: 1px solid hsl(198, 59%, 51%);
  border-radius: 4px;
}
.single_category_text {
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.post_body {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .post_body {
    margin-top: 64px;
  }
}

.post_thumbnail,
.post_body figure {
  width: calc(100% - 40px);
  margin: 32px auto 0;
}
@media (min-width: 768px) {
  .post_thumbnail,
  .post_body figure {
    width: calc(100% - 100px);
    margin: 64px auto 0;
  }
}
.post_thumbnail img,
.post_body figure img {
  width: 100%;
}
.post_thumbnail .wp-element-caption,
.post_body figure .wp-element-caption {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
  margin: 16px 0 0;
}
@media (min-width: 768px) {
  .post_thumbnail .wp-element-caption,
  .post_body figure .wp-element-caption {
    margin: 24px 0 0;
  }
}

.post_thumbnail img {
  aspect-ratio: 800/533;
  object-fit: cover;
}

.post_body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 28px;
}
@media (min-width: 768px) {
  .post_body p {
    font-size: 15px;
    margin-top: 40px;
  }
}

.post_body a {
  color: hsl(198, 59%, 51%);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  text-decoration: underline;
}
@media (min-width: 768px) {
  .post_body a {
    font-size: 15px;
  }
}

.post_body h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  background: #fff;
  padding: 22px 22px 22px 24px;
  border-radius: 5px;
  position: relative;
  margin-top: 32px;
}
.post_body h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 50px);
  background-color: hsl(198, 59%, 51%);
}
@media (min-width: 768px) {
  .post_body h2 {
    font-size: 22px;
    padding: 24px 24px 24px 26px;
    margin-top: 64px;
  }
}

.post_body h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 14px;
  margin-top: 32px;
  position: relative;
}
.post_body h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(198, 59%, 51%);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .post_body h3 {
    font-size: 20px;
    margin-top: 64px;
    padding-bottom: 16px;
  }
}

.post_body h4 {
  color: hsl(198, 59%, 51%);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .post_body h4 {
    font-size: 18px;
    margin-top: 64px;
  }
}

.post_body p:first-child,
.post_body h2:first-child,
.post_body h3:first-child,
.post_body h4:first-child,
.post_body figure:first-child {
  margin-top: 0;
}

.post_navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid hsl(0, 0%, 83%);
  margin-top: 60px;
}
@media (min-width: 768px) {
  .post_navigation {
    flex-wrap: nowrap;
    padding-top: 32px;
    margin-top: 80px;
    gap: 0;
  }
}
.post_navigation .prev_link,
.post_navigation .archive_link,
.post_navigation .next_link {
  display: flex;
}
@media (min-width: 768px) {
  .post_navigation .prev_link,
  .post_navigation .archive_link,
  .post_navigation .next_link {
    flex: 1;
    width: auto;
    margin-top: 0;
  }
}
.post_navigation .prev_link {
  width: 50%;
  justify-content: flex-start;
}
.post_navigation .next_link {
  width: 50%;
  order: 2;
  justify-content: flex-end;
}
.post_navigation .next_link .post_navigation_link,
.post_navigation .next_link .disabled {
  justify-content: flex-end;
}
.post_navigation .archive_link {
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .post_navigation .archive_link {
    margin-top: 0;
  }
}
.post_navigation .post_navigation_link,
.post_navigation .disabled {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .post_navigation .post_navigation_link,
  .post_navigation .disabled {
    font-size: 18px;
  }
}

.disabled {
  color: hsl(0, 0%, 59%);
  pointer-events: none;
  /* クリックを完全に無効化 */
  cursor: default;
}

.other_post_section {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .other_post_section {
    margin-bottom: 120px;
  }
}

.other_title {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .other_title {
    font-size: 64px;
  }
}
.other_title_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .other_title_container {
    gap: 16px;
  }
}
.other_title_ofTop {
  display: flex;
  align-items: center;
  gap: 8px;
}
.other_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.other_title_jp {
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .other_title_jp {
    font-size: 16px;
  }
}
.other_item_img {
  aspect-ratio: 360/240;
  overflow: hidden;
}
.other_item_img img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-out;
}
.other_post_list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .other_post_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: clamp(20px, 2.8571428571vw, 40px);
  }
}
.other_post_link {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.other_post_link:hover .other_item_img img {
  transform: scale(1.05);
  /* 拡大 */
}

.sp_category_list_container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .sp_category_list_container {
    display: none;
  }
}

.news_archive_section {
  margin: 128px 0 80px;
}
@media (min-width: 768px) {
  .news_archive_section {
    margin: 240px 0 120px;
  }
}

.news_category_search_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .news_category_search_container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: left;
    gap: 10px;
  }
}
.news_category_search_container.sp_none {
  display: none;
}
@media (min-width: 768px) {
  .news_category_search_container.sp_none {
    display: flex;
  }
}
.news_category_search_link {
  display: block;
  width: fit-content;
  border-radius: 4px;
  border: 1px solid hsl(198, 59%, 51%);
  padding: 12px 16px;
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  transition: color 0.3s ease-out, background-color 0.3s ease-out;
}
@media (min-width: 768px) {
  .news_category_search_link {
    padding: 8px 10px;
  }
}
.news_category_search_link:hover {
  color: #fff;
  background-color: hsl(198, 59%, 51%);
}
.news_category_search_link.news_category_search_link_all {
  color: hsl(0, 0%, 59%);
  border: 1px solid hsl(0, 0%, 83%);
}
.news_category_search_link.news_category_search_link_all:hover {
  color: #fff;
  background-color: hsl(0, 0%, 59%);
}

.news_archive {
  max-width: 829px;
  width: 100%;
}

.news_archive_link {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid hsl(0, 0%, 83%);
}
@media (min-width: 768px) {
  .news_archive_link {
    flex-direction: row;
    gap: 24px;
    padding-bottom: 24px;
  }
}
.news_archive_link:hover .news_other_item_img img {
  transform: scale(1.05) translateZ(0);
}
.news_archive_link:hover .news_article_title span {
  background-size: 100% 1px;
}

.archive_list_item:nth-child(n+2) .news_archive_link {
  padding-top: 16px;
}
@media (min-width: 768px) {
  .archive_list_item:nth-child(n+2) .news_archive_link {
    padding-top: 24px;
  }
}

.archive_list_item_img {
  aspect-ratio: 150/100;
  width: 38.4615384615vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .archive_list_item_img {
    aspect-ratio: 200/133;
    max-width: 200px;
    width: 100%;
  }
}
.archive_list_item_img img {
  width: 100%;
  transition: transform 0.6s ease;
}

.archive_list_item_text_container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.archive_date_and_category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 768px) {
  .archive_date_and_category {
    justify-content: left;
    gap: 16px;
  }
}

.news_article_category {
  width: fit-content;
  border-radius: 4px;
  border: 1px solid hsl(198, 59%, 51%);
  padding: 8px 10px;
  color: hsl(198, 59%, 51%);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
}

.news_article_date {
  font-family: "Switzer";
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}

.news_article_title {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
  display: -webkit-box;
  /* 必須 */
  -webkit-box-orient: vertical;
  /* 必須 */
  -webkit-line-clamp: 2;
  /* 行数を制限 */
  overflow: hidden;
  /* はみ出た部分を非表示 */
  position: relative;
}
.news_article_title span {
  display: inline;
  background-image: linear-gradient(hsl(0, 2%, 10%), hsl(0, 2%, 10%));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  padding-bottom: 1px;
}
@media (min-width: 768px) {
  .news_article_title {
    font-size: 15px;
  }
}

.other_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .other_main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 920px) {
  .news_other_title {
    font-size: 48px;
  }
}

.other_title_and_category {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 920px) {
  .other_title_and_category {
    gap: 40px;
    flex-shrink: 0;
  }
}

.news_other_post_list {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
@media (min-width: 920px) {
  .news_other_post_list {
    max-width: 829px;
  }
}

.news_other_item_img {
  aspect-ratio: 150/100;
  width: 38.4615384615vw;
  overflow: hidden;
}
@media (min-width: 768px) {
  .news_other_item_img {
    aspect-ratio: 200/133;
    width: 100%;
    max-width: 200px;
  }
}
.news_other_item_img img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.news_sp_category_list_container {
  margin-top: 0;
}

.news_single {
  justify-content: flex-start;
}

.contact_section {
  padding: 128px 0 80px;
}
@media (min-width: 768px) {
  .contact_section {
    padding: 240px 0 120px;
  }
}
.contact_body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact_body {
    gap: 64px;
    max-width: 642px;
    margin: 0 auto;
  }
}
.contact_body_top, .contact_body_middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: -10px;
}
.contact_body_middle_top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0.7em;
}
.contact_main_text {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
}
@media (min-width: 768px) {
  .contact_main_text {
    font-size: 32px;
  }
}
@media (min-width: 600px) {
  .contact_main_text_br {
    display: none;
  }
}
.contact_text {
  font-weight: 400;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.6;
  text-align: center;
}
@media (min-width: 768px) {
  .contact_text {
    font-size: 15px;
  }
}
@media (min-width: 600px) {
  .contact_text_br {
    display: none;
  }
}
.contact_tel_icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_tel_link {
  color: hsl(198, 59%, 51%);
  font-family: "Switzer";
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact_tel_link {
    font-size: 40px;
  }
}
.contact_tel_link span {
  font-family: "IBM Plex Sans JP", sans-serif;
  margin-left: -0.7em;
  font-size: 24px;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact_tel_link span {
    font-size: 32px;
  }
}
.contact_tel_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) {
  .contact_tel_text {
    font-size: 14px;
  }
}

.contact_form_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact_form_wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact_form_content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact_form_title {
  font-weight: 600;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

input,
textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid hsl(0, 0%, 83%);
  border-radius: 5px;
  padding: 10px 16px;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  opacity: 1;
}
input::placeholder,
textarea::placeholder {
  color: gray;
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  opacity: 1;
  /* Firefoxで薄くなるのを防ぐため */
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: gray;
}

textarea {
  max-height: 260px;
}

.acceptance_and_submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

/* 親要素の並びを整える */
.wpcf7-form-control-wrap[data-name=acceptance-769] .wpcf7-list-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  /* 横並びを強制 */
  align-items: center;
  /* 上下中央 */
  gap: 16px;
  margin: 0;
}

/* ラベル自体の挙動を調整 */
.wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.8;
  text-align: center;
}

/* チェックボックスのサイズ固定 */
.wpcf7-acceptance .wpcf7-list-item label input[type=checkbox] {
  flex-shrink: 0;
  /* 文字数が多い時に潰れないようにする */
  margin: 0;
  width: 16px;
  height: 16px;
  padding: 0 !important;
  width: fit-content;
  border: none;
  border-radius: 0;
}

.to_privacy_link {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.8;
  text-align: center;
  background-image: linear-gradient(to right, hsl(0, 2%, 10%), hsl(0, 2%, 10%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.to_privacy_link:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.submit_wrapper {
  position: relative;
  max-width: 155px;
  width: 100%;
  border-radius: 5px;
  background-color: hsl(198, 59%, 51%);
  overflow: hidden;
  z-index: 1;
  transition: filter 0.3s ease-out, opacity 0.3s ease-out, background-color 0.3s ease-out;
}
@media (min-width: 920px) {
  .submit_wrapper {
    max-width: 207px;
  }
}
.submit_wrapper:has(.wpcf7-submit:disabled) {
  cursor: not-allowed;
  filter: grayscale(1) opacity(0.6);
}
.submit_wrapper:has(.wpcf7-submit:disabled)::before {
  content: none;
}
.submit_wrapper:has(.wpcf7-submit:disabled) {
  pointer-events: none;
}
.submit_wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 31%;
  height: 100%;
  background-color: hsl(46, 100%, 49%);
  transition: width 0.3s ease-out;
  z-index: -1;
}
.submit_wrapper::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/common/right_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}
@media (min-width: 920px) {
  .submit_wrapper::after {
    right: 24px;
  }
}
.submit_wrapper:hover::before {
  width: 100%;
}

.wpcf7-submit {
  appearance: none;
  background: transparent;
  border: none;
  width: 100%;
  padding: 18px;
  cursor: pointer;
  color: #fff;
  font-family: "Switzer";
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: left;
  position: relative;
  z-index: 3;
}
@media (min-width: 920px) {
  .wpcf7-submit {
    padding: 24px 24px 24px 20px;
    font-size: 15px;
  }
}

.wpcf7-submit:disabled {
  cursor: not-allowed;
}

.thanks_section {
  padding: 140px 0 80px;
}
@media (min-width: 768px) {
  .thanks_section {
    padding: 200px 0 120px;
  }
}
.thanks_breadcrumb {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .thanks_breadcrumb {
    justify-content: right;
    padding: 0 80px;
  }
}
.thanks_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .thanks_main {
    margin-top: 64px;
  }
}
.thanks_top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.thanks_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.75;
  text-align: center;
}
@media (min-width: 600px) {
  .thanks_title {
    font-size: 28px;
  }
}
@media (min-width: 600px) {
  .thanks_title br {
    display: none;
  }
}
.thanks_text_center {
  text-align: center;
}
.thanks_if {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  max-width: 669px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.thanks_if_text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 600px) {
  .thanks_if_text_br {
    display: none;
  }
}

@media (min-width: 600px) {
  .thanks_text_br {
    display: none;
  }
}

.to_contact_link {
  color: hsl(198, 59%, 51%);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .to_contact_link {
    font-size: 15px;
  }
}
.to_contact_link {
  background-image: linear-gradient(to right, hsl(198, 59%, 51%), hsl(198, 59%, 51%));
  /* 線の色 */
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  /* 背景を繰り返さない */
  padding-bottom: 0;
}
.to_contact_link:hover {
  animation: linkLineReverse 0.5s ease forwards;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px;
    /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.wpcf7-response-output {
  border: none !important;
  padding: 0 !important;
  margin: 16px 0 0 0 !important;
}

.privacy_section {
  padding: 128px 0 80px;
}
@media (min-width: 768px) {
  .privacy_section {
    padding: 240px 0 120px;
  }
}
.privacy_text {
  text-box-trim: trim-both;
}
.privacy_text_container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .privacy_text_container {
    gap: 30px;
  }
}
.privacy_list {
  padding: 0 20px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.privacy_contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.privacy_contact_text {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .privacy_contact_text {
    font-size: 15px;
  }
}
.privacy_tel {
  color: hsl(0, 2%, 10%);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .privacy_tel {
    font-size: 15px;
  }
}

.notFound_main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .notFound_main {
    margin-top: 64px;
  }
}
.notFound_text {
  text-align: center;
}
.notFound_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.notFound_title {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .notFound_title {
    font-size: 100px;
  }
}
.notFound_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.notFound_title_en {
  font-family: "Switzer";
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
}
@media (min-width: 768px) {
  .notFound_title_en {
    font-size: 64px;
  }
}

.page_section_title_middle_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.page_section_title_middle_wrap.left {
  align-items: flex-start;
}

.page_section_title_middle_en {
  color: hsl(198, 59%, 51%);
  font-family: "Switzer";
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
}
.page_section_title_middle_en.yellow {
  color: hsl(46, 100%, 49%);
}
.page_section_title_middle_en_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section_title_circle {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background-color: hsl(198, 59%, 51%);
}
.section_title_circle.yellow {
  background-color: hsl(46, 100%, 49%);
}

.recruit_page {
  background: hsl(40, 78%, 95%);
  padding: 90px 0 236px;
}
.recruit_page_top {
  position: relative;
  padding: 20px 0;
  background: hsl(40, 100%, 81%);
}

/* スライダーの外枠：はみ出した画像を見せない */
.recruit_top_slider {
  opacity: 0;
  /* 読み込み完了まで隠すとガタつきが防げます */
  transition: opacity 0.5s;
  overflow: hidden;
  white-space: nowrap;
  /* 強制的に横並びの準備 */
  height: 300px;
}
@media (min-width: 768px) {
  .recruit_top_slider {
    height: 645px;
  }
}

/* Slickが起動したら表示する */
.recruit_top_slider.slick-initialized {
  opacity: 1;
}

/* 各画像のコンテナ */
.profile_slider_img {
  display: inline-block;
  /* 横に並べる */
  width: auto;
  margin-right: 20px;
}

.profile_slider_img img {
  height: 300px;
  /* 任意の高さに固定 */
  width: auto;
  /* アスペクト比を維持 */
  display: block;
}
@media (min-width: 768px) {
  .profile_slider_img img {
    height: 645px;
    /* 任意の高さに固定 */
  }
}

.recruit_top_title {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.25);
}
@media (min-width: 600px) {
  .recruit_top_title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .recruit_top_title {
    font-size: clamp(32px, 4.5714285714vw, 64px);
  }
}
.recruit_top_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: absolute;
  bottom: 40px;
  left: 20px;
}
@media (min-width: 768px) {
  .recruit_top_title_wrap {
    gap: 24px;
    left: 40px;
  }
}
.recruit_top_title_top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.recruit_top_title_small {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .recruit_top_title_small {
    font-size: 24px;
  }
}
.recruit_top_title_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 21px;
  width: 100%;
  margin-bottom: 3px;
}
.recruit_top_title_icon img {
  width: 100%;
}

.recruit_top_message_main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 0 120px;
}
@media (min-width: 768px) {
  .recruit_top_message_main {
    gap: 120px;
    padding: 120px 0 240px;
  }
}
.recruit_top_message_top {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (min-width: 768px) {
  .recruit_top_message_top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
}
.recruit_top_message_top_text {
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
}
@media (min-width: 768px) {
  .recruit_top_message_top_text {
    font-size: 15px;
  }
}

.recruit_top_message {
  display: flex;
  flex-direction: column;
  gap: 120px;
  background: linear-gradient(180deg, #FFDF9E 0%, rgba(255, 223, 158, 0) 100%);
}

.recruit_manager_img {
  border-radius: 10px;
  overflow: hidden;
}

.recruit_business_container_base {
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .recruit_business_container_base {
    max-width: 1440px;
    padding: 0 40px;
  }
}

.recruit_business_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .recruit_business_main {
    gap: 80px;
    padding-bottom: 60px;
  }
}

.business_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D4D4D4;
}
.business_content:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .business_content {
    gap: 24px;
    padding: 0 20px;
    position: relative;
    border-bottom: none;
  }
  .business_content:nth-child(1), .business_content:nth-child(2), .business_content:nth-child(3), .business_content:nth-child(4), .business_content:nth-child(5), .business_content:nth-child(6), .business_content:nth-child(7), .business_content:nth-child(8) {
    padding-bottom: 24px;
  }
  .business_content:nth-child(n+3) {
    padding-top: 24px;
  }
  .business_content::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 1px;
    background-color: #D4D4D4;
  }
  .business_content:nth-child(2n+1)::before {
    left: 20px;
    right: 0;
  }
  .business_content:nth-child(2n)::before {
    left: 0;
    right: 20px;
  }
  .business_content:nth-child(9)::before, .business_content:last-child::before {
    display: none;
  }
  .business_content::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1px;
    background-color: #D4D4D4;
    display: none;
  }
  .business_content:nth-child(2n+1)::after {
    display: block;
  }
}
@media (min-width: 920px) {
  .business_content:nth-child(1), .business_content:nth-child(2), .business_content:nth-child(3) {
    padding-bottom: 24px;
    padding-top: 0;
  }
  .business_content:nth-child(4), .business_content:nth-child(5), .business_content:nth-child(6) {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .business_content:nth-child(7), .business_content:nth-child(8), .business_content:nth-child(9) {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .business_content:nth-child(n)::before {
    display: block;
  }
  .business_content:nth-child(3n+1)::before {
    left: 20px;
    right: 0;
  }
  .business_content:nth-child(3n+2)::before {
    left: 0;
    right: 0;
  }
  .business_content:nth-child(3n)::before {
    left: 0;
    right: 20px;
  }
  .business_content:nth-child(n+7)::before {
    display: none;
  }
  .business_content::after {
    display: block;
  }
  .business_content:nth-child(3n)::after {
    display: none;
  }
}
.business_content_img {
  display: none;
}
.business_content_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .business_content_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 0;
  }
}
@media (min-width: 920px) {
  .business_content_container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 0;
  }
}
@media (min-width: 768px) {
  .business_content {
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  .business_content:nth-child(3n) {
    border-right: none;
  }
}
.business_content_img {
  width: 100%;
}
.business_content_img img {
  width: 100%;
  height: auto;
  display: block;
}
.business_content_text_wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.business_content_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .business_content_title {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.business_content_title_small {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .business_content_title_small {
    font-size: clamp(16px, 1.2857142857vw, 18px);
  }
}
.business_content_title_wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit_numbers_section {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .recruit_numbers_section {
    padding: 60px 0;
  }
}
.recruit_numbers_section .recruit_numbers_main {
  background: hsl(46, 100%, 49%);
  border-radius: 10px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .recruit_numbers_section .recruit_numbers_main {
    padding: 120px 20px;
    border-radius: 20px;
  }
}

.recruit_numbers_container_base {
  padding: 0 20px;
  margin: 0 auto;
  max-width: 600px;
}
@media screen and (min-width: 980px) {
  .recruit_numbers_container_base {
    padding: 0 40px;
    max-width: 1400px;
  }
}

.recruit_numbers_title {
  text-align: center;
}
@media (min-width: 600px) {
  .recruit_numbers_title_br {
    display: none;
  }
}

.data_container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 980px) {
  .data_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 80px auto 0;
    max-width: 1160px;
  }
  .data_container .data_content {
    grid-column: span 2;
  }
  .data_container .data_content:nth-last-child(-n+2) {
    grid-column: span 3;
  }
}
.data_container .data_content {
  background: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  position: relative;
}
@media screen and (min-width: 1140px) {
  .data_container .data_content {
    border-radius: 10px;
    padding: clamp(24px, 2.8571428571vw, 40px);
  }
}
.data_container .data_content_title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 600px) {
  .data_container .data_content_title {
    font-size: 24px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_title {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.data_container .data_content_title_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.data_container .data_content_year {
  color: hsl(46, 100%, 49%);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.3;
  text-align: center;
  margin-top: 28px;
}
@media (min-width: 600px) {
  .data_container .data_content_year {
    font-size: 64px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_year {
    font-size: clamp(32px, 4.5714285714vw, 64px);
    margin-top: 99px;
  }
}
.data_container .data_content_year_span {
  color: hsl(0, 2%, 10%);
  font-size: 28px;
}
@media (min-width: 600px) {
  .data_container .data_content_year_span {
    font-size: 32px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_year_span {
    font-size: clamp(16px, 2.2857142857vw, 32px);
  }
}
.data_container .data_content_pie_chart01 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 24px auto 0;
}
@media screen and (min-width: 450px) {
  .data_container .data_content_pie_chart01 {
    max-width: 300px;
  }
}
.data_container .data_content_pie_chart01 img {
  max-width: 140px;
}
@media screen and (min-width: 450px) {
  .data_container .data_content_pie_chart01 img {
    max-width: 168px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_pie_chart01 img {
    width: clamp(140px, 12vw, 168px);
  }
}
.data_container .data_content_03_text {
  font-weight: 600;
  font-size: 40px;
  line-height: 130%;
}
.data_container .data_content_03_text_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 300px;
  margin: 18px auto 0;
}
.data_container .data_content_03_text_span {
  color: hsl(0, 2%, 10%);
  font-size: 24px;
}
.data_container .data_content_03_text.yellow {
  color: hsl(46, 100%, 49%);
}
.data_container .data_content_03_text.blue {
  color: hsl(198, 59%, 51%);
}
.data_container .data_content_bar_graph {
  margin-top: 28px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 330px;
}
.data_container .data_content_bar_graph img {
  width: 100%;
}
@media screen and (min-width: 980px) {
  .data_container .data_content_bar_graph {
    max-width: none;
    margin: 40px 0 0;
  }
}
.data_container .data_content_holiday_text {
  color: hsl(46, 100%, 49%);
  font-weight: 600;
  font-size: 80px;
  line-height: 1.3;
  text-align: center;
  margin-top: 28px;
}
@media screen and (min-width: 980px) {
  .data_container .data_content_holiday_text {
    margin-top: clamp(40px, 5.5vw, 70px);
    font-size: clamp(64px, 6.8571428571vw, 96px);
  }
}
.data_container .data_content_holiday_text_span {
  color: hsl(0, 2%, 10%);
  font-size: 40px;
}
@media screen and (min-width: 980px) {
  .data_container .data_content_holiday_text_span {
    font-size: clamp(32px, 3.4285714286vw, 48px);
  }
}
.data_container .data_content_percentage_chart {
  margin-top: 40px;
  position: relative;
}
.data_container .data_content_percentage_chart.data_05 {
  max-width: 300px;
  margin: 20px auto 0;
}
@media screen and (min-width: 980px) {
  .data_container .data_content_percentage_chart.data_05 {
    max-width: none;
  }
}
.data_container .data_content_percentage_chart.data_05 img {
  max-width: 180px;
}
@media screen and (min-width: 450px) {
  .data_container .data_content_percentage_chart.data_05 img {
    max-width: 240px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_percentage_chart.data_05 img {
    width: clamp(120px, 17.1428571429vw, 240px);
  }
}
.data_container .data_content_percentage_chart.data_08 {
  margin: 30px auto 0;
  max-width: 160px;
}
@media screen and (min-width: 450px) {
  .data_container .data_content_percentage_chart.data_08 {
    max-width: 180px;
  }
}
@media screen and (min-width: 980px) {
  .data_container .data_content_percentage_chart.data_08 {
    max-width: 220px;
  }
}
.data_container .data_content_percentage_chart_text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
}
.data_container .data_content_percentage_chart_text_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 300px;
  margin: 16px auto 0;
}

.graph_color_list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.graph_color_list.data_02 {
  right: 0;
}
.graph_color_list.data_05 {
  right: 0;
}
.graph_color_list.data_08 {
  right: -52px;
}
@media screen and (min-width: 450px) {
  .graph_color_list.data_08 {
    right: -60px;
  }
}
@media screen and (min-width: 980px) {
  .graph_color_list.data_08 {
    right: -86px;
  }
}
.graph_color_list_item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.graph_color_list_item_circle {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}
.graph_color_list_item_circle.blue {
  background: hsl(198, 59%, 51%);
}
.graph_color_list_item_circle.yellow {
  background: hsl(46, 100%, 49%);
}
.graph_color_list_item_circle.red {
  background: #CB6637;
}
.graph_color_list_item_circle.green {
  background: #52D9AF;
}
.graph_color_list_item_circle.lite_green {
  background: hsl(161, 64%, 59%);
}
.graph_color_list_item_circle.pink {
  background: hsl(356, 100%, 82%);
}
.graph_color_list_item_circle.lite_yellow {
  background: hsl(50, 100%, 77%);
}
.graph_color_list_item_text {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
}

.recruit_interview_section {
  padding: 40px 0 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .recruit_interview_section {
    padding: 60px 0 120px;
  }
}
.recruit_interview_section .container-base.interview_container_base {
  position: relative;
  z-index: 2;
}

.recruit_interview_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 3;
}
@media (min-width: 768px) {
  .recruit_interview_main {
    gap: 80px;
  }
}

.recruit_interview_top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .recruit_interview_top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.interview_wrap {
  position: relative;
}
.interview_link {
  padding: 20px;
  border-radius: 10px;
  background: hsl(198, 59%, 51%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 3;
}
@media (min-width: 600px) {
  .interview_link {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .interview_link {
    flex-direction: row;
    padding: clamp(40px, 5.7142857143vw, 80px);
    gap: 40px;
    border-radius: 20px;
  }
}
.interview_link_bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.interview_link:hover .interview_employee_img img {
  transform: scale(1.05);
}
.interview_summary {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 768px) {
  .interview_summary {
    font-size: 15px;
  }
}
.interview_employee_img {
  width: 100%;
  aspect-ratio: 400/267;
  border-radius: 8px;
  overflow: hidden;
  align-self: flex-start;
}
@media (min-width: 768px) {
  .interview_employee_img {
    max-width: 400px;
    border-radius: 16px;
  }
}
.interview_employee_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.interview_text_container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 768px) {
  .interview_text_container {
    gap: 32px;
  }
}
.interview_text_container_head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.interview_title {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
}
.interview_common_text {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 768px) {
  .interview_common_text {
    font-size: 15px;
  }
}
.interview_arrow {
  padding: 12px;
  background: #fff;
  border-radius: 5px;
  max-width: 40px;
  max-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
}

/* スライダーの外枠：はみ出した画像を見せない */
.recruit_interview_slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  /* 読み込み完了まで隠すとガタつきが防げます */
  transition: opacity 0.5s;
  overflow: hidden;
  white-space: nowrap;
  /* 強制的に横並びの準備 */
  height: 100px;
}
@media (min-width: 768px) {
  .recruit_interview_slider {
    height: 150px;
  }
}

/* Slickが起動したら表示する */
.recruit_interview_slider.slick-initialized {
  opacity: 1;
}

/* 各画像のコンテナ */
.interview_slider_img {
  display: inline-block;
  /* 横に並べる */
  width: auto;
  margin-right: 60px;
}

.interview_slider_img img {
  height: 100px;
  /* 任意の高さに固定 */
  width: auto;
  /* アスペクト比を維持 */
  display: block;
}
@media (min-width: 768px) {
  .interview_slider_img img {
    height: 150px;
    /* 任意の高さに固定 */
  }
}

.recruit_overview_section {
  background: #fff;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .recruit_overview_section {
    padding: 120px 0;
  }
}

.recruit_requirements_section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .recruit_requirements_section {
    padding: 120px 0;
  }
}

.recruitment_link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 500px;
  width: 100%;
  padding: 32px 20px;
  margin: 60px auto 0;
  background: hsl(46, 100%, 49%);
  border-radius: 10px;
  transition: filter 0.3s ease-out;
}
@media screen and (min-width: 400px) {
  .recruitment_link {
    padding: 40px;
  }
}
@media (min-width: 768px) {
  .recruitment_link {
    padding: 68px 80px;
    margin: 80px auto 0;
    max-width: 800px;
    border-radius: 20px;
  }
}
.recruitment_link:hover {
  filter: brightness(0.8);
}
.recruitment_link_text {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .recruitment_link_text {
    font-size: 24px;
  }
}
.recruitment_link_img {
  max-width: 40px;
}
@media (min-width: 768px) {
  .recruitment_link_img {
    max-width: 64px;
  }
}

/* アコーディオンリスト全体を囲うタグ */
.accordion_wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .accordion_wrapper {
    margin-top: 80px;
    gap: 40px;
  }
}

/* 個々のアコーディオンリストを囲うタグ */
.accordion {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
}

/* アコーディオンのタイトル・内容共通 */
.accordion_header,
.accordion_content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* アコーディオンのタイトル */
.accordion_header {
  cursor: pointer;
  background-color: hsl(46, 100%, 49%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .accordion_header {
    border-radius: 10px;
    padding: 28px 32px;
  }
}
.accordion_header.open {
  border-radius: 5px 5px 0 0;
}
@media (min-width: 768px) {
  .accordion_header.open {
    border-radius: 10px 10px 0 0;
  }
}
.accordion_header.open .accordion_arrow {
  transform: rotate(-180deg);
}

.accordion_title {
  font-weight: 600;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 768px) {
  .accordion_title {
    font-size: 20px;
  }
}

.accordion_arrow {
  transition: transform 0.3s ease-out;
  max-width: 18px;
  width: 100%;
}
@media (min-width: 768px) {
  .accordion_arrow {
    max-width: 24px;
  }
}

/* アコーディオンの内容 */
.accordion_content {
  display: none;
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 0 0 5px 5px;
}
@media (min-width: 768px) {
  .accordion_content {
    padding: 64px 80px;
    border-radius: 0 0 10px 10px;
  }
}
.accordion_content_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.recruit_flow_section {
  background: #fff;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .recruit_flow_section {
    padding: 120px 0;
  }
}

.flow_content {
  padding: 40px 24px 24px;
  border-radius: 10px;
  background: hsl(46, 100%, 49%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .flow_content {
    border-radius: 20px;
  }
}
.flow_content_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 40px auto 0;
}
@media (min-width: 768px) {
  .flow_content_container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1030px;
    margin: 80px auto 0;
  }
  .flow_content_container > :nth-child(1), .flow_content_container > :nth-child(2), .flow_content_container > :nth-child(3) {
    grid-column: span 2;
  }
  .flow_content_container > :nth-child(4) {
    grid-column: 2/span 2;
  }
  .flow_content_container > :nth-child(5) {
    grid-column: 4/span 2;
  }
}
.flow_content_titleImg_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.flow_content_num {
  position: absolute;
  color: #fff;
  font-family: "Switzer";
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  background: hsl(198, 59%, 51%);
  max-width: 64px;
  max-height: 64px;
  top: 0;
  left: 0;
  padding: 16px 24px 24px 12px;
  border-radius: 20px 0 999px 0;
}
.flow_content_step {
  color: #fff;
  font-family: "Switzer";
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
}
.flow_content_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
}
.flow_content_title_wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow_content_img img {
  width: 100%;
}
.flow_content_text {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 24px;
}

.recruit_faq_section {
  padding: 60px 0 40px;
}
@media (min-width: 768px) {
  .recruit_faq_section {
    padding: 120px 0 60px;
  }
}

.accordion_header_inner_faq {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.accordion_title_en {
  font-family: "Switzer";
  font-weight: 500;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .accordion_title_en {
    font-size: 20px;
  }
}
.accordion_content_inner_faq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.accordion_content_answer {
  font-family: "Switzer";
  font-weight: 500;
  font-size: 20px;
  text-box-trim: trim-both;
  line-height: 1.5;
  text-align: justify;
}
.accordion_content_answer_text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
}

.recruit_entry_section {
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .recruit_entry_section {
    padding: 60px 0 120px;
  }
}

.entry_container_base {
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .entry_container_base {
    max-width: 1400px;
    padding: 0 40px;
  }
}
.entry_white_box {
  background: #fff;
  border-radius: 10px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .entry_white_box {
    border-radius: 20px;
    padding: 120px 40px;
  }
}
.entry_white_box_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .entry_white_box_inner {
    gap: 60px;
  }
}
.entry_white_box_top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.entry_text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  text-box-trim: trim-both;
}
@media (min-width: 600px) {
  .entry_text_br {
    display: none;
  }
}

.entry_form_box {
  width: 100%;
  max-width: 642px;
  margin: 0 auto;
}

.entry_form_container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.entry_form_content_wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.entry_form_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.entry_form_title {
  font-weight: 600;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

/* 選択肢全体（新卒・中途）を横に並べる */
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 600px) {
  .wpcf7-form-control.wpcf7-radio {
    gap: 24px;
  }
}

.wpcf7-radio .wpcf7-list-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
}
@media (min-width: 600px) {
  .wpcf7-radio .wpcf7-list-item {
    gap: 16px;
  }
}
.wpcf7-radio .wpcf7-list-item input {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  margin: 0;
  flex-shrink: 0;
  border: 1px solid hsl(0, 0%, 83%);
  /* 外枠の色 */
  border-radius: 999px;
  /* 円形にする */
  background-color: #fff;
  /* 背景色 */
  display: grid;
  place-content: center;
  /* 中の丸を中央に配置 */
  cursor: pointer;
  padding: 0;
}
@media (min-width: 600px) {
  .wpcf7-radio .wpcf7-list-item input {
    width: 30px;
    height: 30px;
  }
}
.wpcf7-radio .wpcf7-list-item input {
  /* 中の丸を作る（擬似要素） */
}
.wpcf7-radio .wpcf7-list-item input::before {
  content: "";
  width: 10px;
  /* ★中の丸のサイズ */
  height: 10px;
  border-radius: 50%;
  transform: scale(0);
  /* 最初は小さくしておく */
  transition: 0.2s transform ease-in-out;
  background-color: hsl(0, 2%, 10%);
  /* ★チェック時の色（お好みで変えてください） */
}
.wpcf7-radio .wpcf7-list-item input {
  /* チェックされた時のスタイル */
}
.wpcf7-radio .wpcf7-list-item input:checked::before {
  transform: scale(1);
  /* 中の丸を表示 */
}
.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

.select_wrap {
  position: relative;
}
.select_wrap::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 154px;
  background-image: url(../img/recruit/select_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
  height: 14px;
  pointer-events: none;
}
.select_wrap {
  /* セレクトボックス（selectタグ）への指定 */
}
.select_wrap .wpcf7-select {
  appearance: none;
  /* デフォルトの矢印を消す */
  -webkit-appearance: none;
  /* Safari用 */
  -moz-appearance: none;
  /* Firefox用 */
  cursor: pointer;
  width: 100%;
  padding: 10px 40px 10px 15px;
  /* 右側に矢印用の余白を空ける */
  border: 1px solid hsl(0, 0%, 83%);
  background-color: #fff;
  border-radius: 4px;
  /* IEで矢印が残るのを防ぐ（念のため） */
}
.select_wrap .wpcf7-select::-ms-expand {
  display: none;
}
.select_wrap .wpcf7-select {
  /* 「選択してください（最初の項目）」の色 */
}
.select_wrap .wpcf7-select:invalid, .select_wrap .wpcf7-select[value=""] {
  color: hsl(0, 2%, 10%);
}

.age_form {
  width: auto !important;
  max-width: 120px;
}
.age_form_wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.age_form_wrap .age_text {
  font-weight: 600;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
}

.address_form_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.address_form_wrap .post_code_form {
  width: auto !important;
  max-width: 240px;
}

.file_form_text {
  font-weight: 400;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.6;
  margin-top: 12px;
}

.entry_subPage {
  background: #FCF5E7;
}

.to_entry_link {
  color: hsl(46, 100%, 49%);
  background-image: linear-gradient(to right, hsl(46, 100%, 49%), hsl(46, 100%, 49%));
}

.recruit_subPage {
  background: #FCF5E7;
  padding-bottom: 222px;
}
@media (min-width: 768px) {
  .recruit_subPage {
    padding-bottom: 173px;
  }
}

.recruit_subPage_top {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-top: 148px;
  background: #fff;
  position: relative;
}
@media (min-width: 768px) {
  .recruit_subPage_top {
    gap: 40px;
    padding-top: 203px;
    background: hsl(0, 0%, 97%);
  }
  .recruit_subPage_top::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 451px;
    background: #FFDF9E;
    border-radius: 0 0 40px 40px;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
.recruit_subPage_top.no_img::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 320px;
  background: #FFDF9E;
  border-radius: 0 0 40px 40px;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 768px) {
  .recruit_subPage_top.no_img::after {
    display: none;
  }
}

.interview_archive {
  margin: 128px 0 80px;
}
@media (min-width: 768px) {
  .interview_archive {
    margin: 240px 0 120px;
  }
}
.interview_archive_list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .interview_archive_list {
    flex-direction: row;
    gap: clamp(20px, 2.8571428571vw, 40px);
    padding-top: 0;
  }
}
.interview_archive_list_item {
  flex: 1;
  /* 横並びの時に幅を均等にする場合 */
}
@media (min-width: 920px) {
  .interview_archive_list_item:nth-child(even) {
    transform: none;
  }
}

.interview_single_section {
  margin: 128px 0 80px;
}
@media (min-width: 768px) {
  .interview_single_section {
    margin: 240px 0 120px;
  }
}
.interview_post_wrap {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}
.interview_post_top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .interview_post_top {
    gap: 64px;
  }
}
.interview_post_header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.interview_post_image {
  display: block;
  width: 100%;
  aspect-ratio: 800/533;
  overflow: hidden;
  border-radius: 16px;
}
.interview_post_image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: top;
}
.interview_post_image_wrap {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .interview_post_image_wrap {
    padding: 0 50px;
  }
}
.interview_post_body h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  background: #fff;
  padding: 22px 22px 22px 24px;
  border-radius: 5px;
  position: relative;
  margin-top: 32px;
}
.interview_post_body h2::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2px;
  height: calc(100% - 50px);
  background-color: hsl(46, 100%, 49%);
}
@media (min-width: 768px) {
  .interview_post_body h2 {
    font-size: 22px;
    padding: 24px 24px 24px 26px;
    margin-top: 64px;
  }
}
.interview_post_body h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  padding-bottom: 14px;
  margin-top: 32px;
  position: relative;
}
.interview_post_body h3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: hsl(46, 100%, 49%);
  border-radius: 5px;
}
@media (min-width: 768px) {
  .interview_post_body h3 {
    font-size: 20px;
    margin-top: 64px;
    padding-bottom: 16px;
  }
}
.interview_post_body h4 {
  color: hsl(46, 100%, 49%);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .interview_post_body h4 {
    font-size: 18px;
    margin-top: 64px;
  }
}/*# sourceMappingURL=base.css.map */