@charset 'UTF-8';

/*
Theme Name: wp_heart_station
Version: 0.1
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}
:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}
:where(textarea) {
  resize: vertical;
  resize: block;
}
:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}
:where(:disabled) {
  cursor: not-allowed;
}
:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}
:where(button) {
  border-style: solid;
}
:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}
:where(ul, ol) {
  list-style: none;
}
:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}
:where(p, h1, .catch, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}
:where(h1, .catch, h3) {
  line-height: calc(1em + 0.5rem);
}
:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}
:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
  scroll-margin-block: 10vh;
}
:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:where(img) {
  width: 100%;
}

html {
  color-scheme: only light;
}

:root {
  --mainBlue: #007aff;
  --mainYellow: #fff100;
  --lineColor: #73b2f6;
  --titleFont: "Shippori Mincho B1", serif;
  --smallTitleFont: "Noto Serif JP", serif;
  --spaceS: 1rem;
  --spaceM: 2rem;
  --spaceL: 4rem;
  --radius: 20px;
}
body {
  font-size: 16px;
  color: #3f3f3f;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
a {
  text-decoration: none;
}
.ib {
  display: inline-block;
}
.content {
  margin-bottom: var(--spaceL);
}
.wrapper {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
}
.h3_wrapper {
  width: fit-content;
  margin: 0 auto;
}
.subtitle_hl {
  display: flex;
  font-family: var(--titleFont);
  color: var(--mainBlue);
  font-size: 2.3rem;
}
.small_headline {
  text-align: center;
  color: #7c90a0;
}
/*contact_button*/
.contact_button {
  width: 190px;
  height: 2.3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--mainYellow);
  border-radius: 50px;
  box-shadow: 3px 3px 0 #e7c17a;
  font-weight: 600;
  color: #3f3f3f;
  font-size: 16px;
  transition: 0.2s;
}


.top_menu li .contact_button {
  transition: 0.2s;
  font-size:18px;
}
@media (hover: hover) {
  .contact_button:hover {
    box-shadow: 0 0 0 #e7c17a;
    transform: translateY(3px);
  }
}
.contact_button.sk_contact_button {
  background-color: #ff80cc;
  box-shadow: 3px 3px 0 #f143ab;
  font-weight: 600;
  color: #fff;
}
@media (hover: hover) {
  .contact_button.sk_contact_button:hover {
    box-shadow: 0 0 0 #f143ab;
    transform: translateY(3px);
  }
}
/*more_button*/
.more_button {
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--mainYellow);
  border-radius: 50px;
  box-shadow: 3px 3px 0 #e7c17a;
  font-weight: 600;
  color: #3f3f3f;
  font-size: clamp(0.9rem, 0.755rem + 0.73vw, 1.3rem);
  transition: 0.2s;
}
@media (hover: hover) {
  .more_button:hover {
    box-shadow: 0 0 0 #e7c17a;
    transform: translateY(3px);
  }
}

/*header*/
.header {
  width: 25%;
}
.header_inner {
  display: flex;
  align-items: center;
}
.header_logo {
  display: flex;
  align-items: center;
  background-color: #fff;
}
.header_logoImg a {
  display: block;
  width: 150px;
}
h1 {
  width: auto;
  font-family: var(--titleFont);
  color: #f19dae;
  font-weight: 500;
}

.header_logo h1{
	font-size:clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
	
}

/*nav_wrapper*/
.nav_wrapper {
  width: 70%;
  margin: 0 0 0 auto;
  font-size: 18px;
}
.menu_wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.top_menu {
  width: 100%;
  padding: 35px 30px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.5rem 1.5rem;
}
.top_menu li a {
  transition: 0.4s;
}
.top_menu li a:hover {
  opacity: 0.5;
}
.top_menu_insta a {
  display: block;
  width: 35px;
}

.contact_button_wrap .contact_button:hover {
  opacity: 1;
}

.sk_button_wrap {
  padding-right: 20px;
}

.nav-link:has(.link_insta) {
  width: 2rem;
  display: inline-block;
}
/*drawer_menu*/
.drawer_menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 350px;
  height: 100svh;
  padding: 135px 80px 80px;
  transition: right 0.5s ease; /* スライドインのアニメーション */
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}

/* drawer_menuが開いているとき */
.drawer_menu.open {
  right: 0;
}

/*ドロワーボタンのスタイル */
.hamburger {
  display: none;
  position: fixed;
  top: 52px;
  right: 30px;
  width: 38px;
  height: 29px;
  cursor: pointer;
  z-index: 1500;
}
.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background-color: var(--mainBlue);
  border: 1px solid #fff;
  border-radius: 10px;
  transition: 0.5s;
}
.hamburger span:nth-child(2) {
  top: 13px;
  position: absolute;
}
.hamburger span:last-child {
  top: 25px;
  position: absolute;
}

/* バツ印に変化するスタイル */
.hamburger.active span:first-child {
  transform: rotate(45deg) translate(10px, 10px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:last-child {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* drawer_menuリストのスタイル */
.drawer_logo {
  margin: 0 auto 1.2rem;
  width: 150px;
}
.drawer_menuList {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drawer_menuList li {
  margin-bottom: var(--spaceS);
}
.drawer_menuList li a {
  transition: 0.4s;
}
.drawer_menuList li a:hover {
  opacity: 0.5;
}
.drawer_menu_insta a {
  display: block;
  width: 35px;
}
.drawer_button_wrap {
  display: flex;
  justify-content: center;
}
.drawer_sk_wrap {
  margin-top: var(--spaceS);
}

/*main_visual*/
.main_visual {
  width: 100%;
  position: relative;
  margin-top: 15px;
}
.main_img {
  aspect-ratio: 16/7;
  background-image: url(https://heartstation.or.jp/wp-content/uploads/2025/11/mainv03.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.catch {
  position: absolute;
  color: #fff;
  bottom: 25%;
  right: 0;
  font-size: clamp(1rem, 0.455rem + 2.73vw, 2.5rem);
  font-family: var(--smallTitleFont);
  font-weight: 600;
  text-shadow: 4px 2px 3px #39414d;
  background: rgba(000, 000, 000, 0.2);
  padding: 1.5rem;
  padding-right:5%;
  font-weight: 400;
}

/*top_about*/
.content.top_about {
  margin-top: var(--spaceL);
}
.content.top_about .wrapper {
  display: flex;
  justify-content: space-between;
}
.tab_left {
  width: 48%;
}
.tab_img {
  border-radius: var(--radius);
  overflow: hidden;
}
.tab_right {
  width: 48%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.tab_rightTop .h3_wrapper {
  margin: auto 0 0;
}
.tab_rightTop .h3_wrapper .small_headline {
  text-align: left;
}
.tab_txt {
  margin-top: var(--spaceM);
  line-height: 2;
}
.tab_rightBottom {
  display: flex;
  justify-content: flex-end;
}

/*top_achievement*/
.content.top_achievement .wrapper {
  border: 2px solid var(--lineColor);
  border-radius: var(--radius);
  padding: var(--spaceM);
}
.tac_total {
  margin-block: var(--spaceM) var(--spaceS);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2679c4;
  font-size: 4rem;
  font-family: var(--smallTitleFont);
  font-weight: 700;
}
.tac_totalTitle {
  font-size: 2rem;
  font-weight: 600;
}
.tac_totalNumber {
  margin-left: var(--spaceS);
}
.tac_container {
  display: flex;
  justify-content: space-between;
}
.tac_fukuoka {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tac_fukuokaImg {
  width: 450px;
  opacity: 0.3;
}
.tac_fAchievement,
.tac_tAchievement {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2679c4;
  font-size: 2.7rem;
  font-family: var(--smallTitleFont);
  font-weight: 700;
}
.tac_aTitle {
  font-size: 1.5rem;
  font-weight: 300;
}
.tac_aNumber {
  margin-left: var(--spaceS);
}
.tac_tokyo {
  width: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tac_tokyoImg {
  width: 450px;
  opacity: 0.3;
}
.tac_others {
  font-size: 1.2rem;
  text-align: center;
}
.tac_oId {
  display: inline-block;
}
.tac_bottom {
  margin-top: var(--spaceS);
  display: flex;
  justify-content: center;
}

/*top_service*/
.tse_container {
  margin-block: 3rem;
  display: flex;
  justify-content: space-between;
}
.tse_card {
  width: 30%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius);
  transition: 0.4s;
}
.tse_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 2px 3px 6px 0px #b3b3b3;
  border-radius: var(--radius);
  transition: 0.4s;
}
@media (hover: hover) {
  .tse_card:hover {
    box-shadow: none;
    transform: scale(0.99);
  }
}
.tse_card:hover::before {
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}
.tse_cardImg {
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.tse_cardContent {
  padding: var(--spaceM) var(--spaceS);
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.subtitle_pl {
  color: var(--mainBlue);
  font-family: var(--smallTitleFont);
  font-weight: 600;
  text-align: center;
  font-size: 1.2rem;
  margin-block: var(--spaceS);
}
.subtitle_plId {
  display: inline-block;
}
.tse_cardTxt {
  margin-top: var(--spaceS);
  flex-grow: 1;
  line-height: 1.8;
}
.tse_message {
  margin-bottom: var(--spaceM);
  padding: var(--spaceM);
  display: flex;
  justify-content: space-between;
  border-radius: var(--radius);
  border: 2px solid var(--lineColor);
}
.tse_message:nth-child(even) {
  flex-direction: row-reverse;
}
.tse_messageImg {
  width: 150px;
}
.tse_messageContent {
  width: calc(100% - 180px);
}
.tse_messageContent .subtitle_pl {
  margin-bottom: var(--spaceS);
  text-align: left;
}
.tse_messageTxt {
  line-height: 1.8;
}
.tse_more {
  padding-block: var(--spaceM);
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.border_left,
.border_right {
  background-color: var(--lineColor);
  height: 2px;
  width: 20%;
}
.tse_more p {
  padding: 0 var(--spaceS);
  text-align: center;
}
.tse_moreId {
  display: inline-block;
}
.tse_buttonWrap {
  display: flex;
  justify-content: center;
}

/*top_points*/
.content.top_points {
  padding-block: var(--spaceM) var(--spaceL);
  background-color: #c0ebf9;
}
.tpo_container {
  margin-top: var(--spaceL);
  display: flex;
  justify-content: space-between;
}
.tpo_box {
  width: 48%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tpo_title {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}
.pink_point {
  width: 110px;
}
.tpo_title h3 {
  color: var(--mainBlue);
  font-family: var(--smallTitleFont);
  font-size: 1.5rem;
  font-weight: 600;
}
.tpo_txt {
  margin-block: var(--spaceS);
  line-height: 1.8;
}
.process_list {
  padding-left: var(--spaceS);
  list-style-type: decimal;
}
.tpo_boxBottom {
  display: flex;
  justify-content: end;
}
.tpo_boxBottom .more_button {
  border: none;
}
.tpo_img {
  width: 48%;
}
.tpo_img img {
  border-radius: var(--radius);
}
.tpo_container:nth-child(even) {
  flex-direction: row-reverse;
}
.tpo_link {
  text-decoration: underline;
  font-weight: 600;
}

/*top_recruit*/
.ouen {
  margin-block: var(--spaceM);
}
.ouen_container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ouen_left {
  width: 55%;
  line-height: 1.8;
}
.ouen_right {
  width: 40%;
  display: flex;
  justify-content: space-between;
}
.childcare_logo {
  width: 49%;
}
.care_logo {
  width: 49%;
}
.tre_points {
  margin-top: var(--spaceL);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tre_pLeft {
  width: 35%;
}
.tre_videoTxt {
  padding-bottom: var(--spaceS);
  line-height: 2;
  font-weight: 500;
  font-size: 1.1rem;
}
.tre_video {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.tre_video iframe {
  width: 100%;
  height: 100%;
}
.tre_pRight {
  width: 60%;
}
.tre_pContainer {
  display: flex;
  align-items: end;
}
.tre_pContainer:nth-child(2) {
  margin-block: var(--spaceM);
}
.tre_number {
  width: 120px;
  min-width: 120px;
}
.tre_pContent {
  margin-left: var(--spaceS);
}
.tre_pTitle {
  padding-bottom: var(--spaceS);
  font-size: 1.6rem;
  font-weight: 500;
}
.tre_others {
  margin-block: 3rem;
}
.tre_oTop {
  margin-bottom: 2.5rem;
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: #ff80cc;
  box-shadow: 0px 0px 0px 6px #ff80cc;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.2rem;
}
.tre_oContainer {
  display: flex;
  justify-content: space-between;
}
.tre_oContainer:first-child {
  margin-bottom: var(--spaceM);
}
.tre_card {
  padding: 0.8rem;
  width: 23%;
  display: flex;
  flex-direction: column;
  background-color: #f7eeeb;
  border-radius: var(--radius);
}
.tre_cardImg {
  height: 190px;
  overflow: hidden;
}
.tre_cardImg img {
  object-fit: cover;
}
.tre_cardTitle {
  margin-block: 0.5rem;
  font-size: 1.05rem;
  text-align: center;
  color: #4f3b17;
}
.tre_cardTxt {
  line-height: 1.8;
  flex-grow: 1;
}
.tre_license {
  z-index: 10;
  position: relative;
}
.tre_lTxt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 2;
}
.tre_lId {
  display: inline-block;
}
.tre_moreWrap {
  margin-top: var(--spaceM);
  display: flex;
  justify-content: center;
}

/*content_border*/
.content_border {
  margin: 0 auto var(--spaceL);
  max-width: 1200px;
  width: 100%;
  height: 2px;
  background-color: var(--lineColor);
}

/*top_instagram*/
#sb_instagram #sbi_images .sbi_item {
  border-radius: var(--radius);
}

/*footer*/
.footer_inner {
  position: relative;
  background-image: url(https://heartstation.or.jp/wp-content/uploads/2025/08/footer01.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 11px 10px 20px 7px rgb(255 255 255);
}
.footer_inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff6b 0%, #ffffffed 88%);
}
.footer_contact {
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 1;
}
.footer_cTxt {
  padding-top: var(--spaceM);
  padding-bottom: var(--spaceS);
  font-size: 1.3rem;
  line-height: 2;
}
.footer_cTxt p {
  background-color: #ffffff80;
  backdrop-filter: blur(3px);
  border-radius: 5px;
}
.footer_Id {
  display: inline-block;
}
.footer_contactWrap {
  margin: 0 auto;
  width: fit-content;
}
.footer_contactWrap .sk_contact_button {
  margin-top: var(--spaceS);
}
.footer_main {
  max-width: 1200px;
  width: 80%;
  margin: var(--spaceS) auto 0;
  position: relative;
  z-index: 1;
}
.footer_title {
  text-align: center;
  color: var(--mainBlue);
  font-size: 2rem;
  font-family: var(--smallTitleFont);
}
.footer_container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer_logo {
  width: 17%;
}
.footer_menuWrapper {
  width: 80%;
}
.footer_menu {
  display: flex;
  justify-content: space-between;
}
.footer_menu li a {
  transition: 0.4s;
}
.footer_menu li a:hover {
  opacity: 0.5;
}
.footer_insta a {
  display: block;
  width: 35px;
}
#page-top {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  color: #ff80cc;
}
#page-top a {
  height: 2.5rem;
  display: inline-block;
}
#page-top a svg {
  width: 2.5rem;
  height: 2.5rem;
}
.footer_bottom {
  width: 95%;
  margin: 0 auto;
  padding-block: var(--spaceS);
  text-align: right;
  display: flex;
  justify-content: flex-end;
  color: var(--mainBlue);
  font-size: 0.8rem;
}
.footer_pLink {
  margin-right: var(--spaceS);
  transition: 0.4s;
}
.footer_pLink:hover {
  opacity: 0.5;
}

/*company*/
/*sub_visual*/
.sub_visual {
  width: 100%;
  position: relative;
  margin-block: 15px var(--spaceL);
}
.sub_img {
  height: 45svh;
  background-image: url(https://heartstation.or.jp/wp-content/uploads/2025/08/sky01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 25%;
  position: relative;
}
.sub_imgTitle {
  width: 23rem;
  padding-bottom: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-bottom: 2px solid #fff;
}
.page_title {
  position: relative;
  bottom: initial;
  left: initial;
  font-size: 2.8rem;
  font-family: var(--titleFont);
  color: #fff;
}

/*content company*/
.company_table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.ct_item {
  border: 0;
  outline: 0;
  vertical-align: baseline;
}
.ct_title {
  width: 20%;
  border-top: 2px solid var(--mainBlue);
  padding: var(--spaceM) 0;
  color: var(--mainBlue);
  font-weight: bold;
  text-align: left;
}
.ct_content {
  padding: var(--spaceM) 0 var(--spaceM) var(--spaceM);
  border-top: 2px solid #ccc;
  line-height: 2;
}
.td_phone {
  display: none;
}
.map_link {
  text-decoration: underline;
  transition: 0.4s;
}
.map_link:hover {
  opacity: 0.5;
}

/*chairperson*/
.chair_profile {
  margin-top: var(--spaceL);
  display: flex;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 31%,
    #99e0ef 31%,
    #99e0ef 100%
  );
}
.chair_img {
  margin-right: var(--spaceL);
  width: 300px;
  position: relative;
}
.chair_img img {
  border-radius: 50%;
}
.chair_pContent {
  padding: 0 1.5rem;
}
.chair_pTitle {
  font-weight: normal;
}
.chair_pName {
  margin-block: 0.3rem 2.9rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.chair_licenseTop {
  margin-block: 0.3rem;
  font-size: 1.1rem;
  font-weight: 500;
}
.chair_license {
  line-height: 1.8;
}
.chair_cInner {
  padding: 1.5rem;
  background-color: #dff9ff;
}
.chair_txt {
  margin-bottom: var(--spaceM);
  line-height: 1.8;
}

/*recruit*/
/*recruit_top*/
.recruit_topContainer {
  display: flex;
  justify-content: space-between;
}
.recruit_topLeft {
  width: 50%;
}
.recruit_topLeft .h3_wrapper {
  margin: initial;
}
.recruit_topLeft p {
  margin-top: var(--spaceM);
  line-height: 2;
}
.recruit_topRight {
  width: 45%;
}
.recruit_topRight img {
  border-radius: var(--radius);
}

/*employee_message*/
.employee_messageInner {
  margin-top: var(--spaceM);
}

/*job_description*/
.job_center {
  text-align: center;
  margin-top: var(--spaceS);
  font-size: 1.4rem;
  line-height: 2;
}

.shared_container {
  margin-top: 3.5rem;
  display: flex;
}
.shared_container:nth-child(even) {
  flex-direction: row-reverse;
}
.shared_img {
  width: 47%;
}
.shared_img img {
  border-radius: var(--radius);
}
.shared_box {
  width: 53%;
}
.shared_title {
  width: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 var(--spaceM);
  background: linear-gradient(
    180deg,
    #ffff 0%,
    #ffff 50%,
    var(--mainYellow) 50%,
    var(--mainYellow) 100%
  );
}
.shared_container:nth-child(even) .shared_title {
  padding: 0 var(--spaceM) 0 0;
}
.shared_txt {
  margin-top: var(--spaceS);
  padding: 0 var(--spaceM);
  line-height: 1.8;
}
.shared_container:nth-child(even) .shared_txt {
  padding: 0 var(--spaceM) 0 0;
}

/*page_works*/
/*works_main*/
.graph_container {
  margin-top: var(--spaceM);
  display: flex;
  justify-content: center;
}
.works_mainTxt {
  line-height: 2;
}
.works_mainButton {
  margin-top: var(--spaceM);
  display: flex;
  justify-content: center;
}
.works_mainButton .more_button {
  width: 335px;
}
.course_bottom {
  margin-top: var(--spaceM);
}
.course_bottom {
  text-align: center;
  font-size: 1.2rem;
}
.course_bottomTxt {
  font-weight: 500;
}
.course_contact {
  margin-top: var(--spaceM);
  display: flex;
  justify-content: center;
}

/*page_survey*/
/*survey*/
.shared_txtUpper {
  margin-bottom: var(--spaceS);
}
.survey_handicapped .shared_container {
  flex-direction: row-reverse;
}
.flow_mainTitle {
  margin-block: var(--spaceM);
  text-align: center;
  color: var(--mainBlue);
  font-family: var(--smallTitleFont);
  font-size: 1.5rem;
  font-weight: 600;
}
.flow_container {
  padding: var(--spaceM);
  border: 2px solid var(--lineColor);
  border-radius: var(--radius);
  line-height: 1.8;
}
.flow_arrow {
  height: 100px;
  position: relative;
}
.flow_arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 40px;
  background: var(--mainYellow);
}
.flow_arrow::after {
  content: "";
  display: block;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 27px solid;
  border-color: var(--mainYellow) transparent transparent transparent;
}
.flow_subTitle {
  margin-bottom: var(--spaceS);
  border-bottom: 2px dotted var(--lineColor);
  font-size: 1.3rem;
  font-weight: 500;
}
.bracket {
  margin-block: var(--spaceS);
  font-size: 1.2rem;
  font-weight: 500;
}
.colored {
  color: #ff80cc;
  font-size: 1.1rem;
  font-weight: 600;
}

/*training*/
.training_main {
  margin-top: 3.5rem;
  display: flex;
  justify-content: space-between;
}
.training_mainTxt {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.training_mainTxt:last-child {
  margin-bottom: 0;
}
.training_mainLeft {
  width: 53%;
}
.training_mainRight {
  width: 45%;
}
.lesson_img {
  width: 65%;
}
.lesson_img img {
  border-radius: var(--radius);
}
.textbook_img {
  width: 65%;
  margin-left: auto;
  margin-top: -1rem;
}
.textbook_img img {
  border-radius: var(--radius);
}
.process {
  margin-top: var(--spaceM);
}
.subtitle_uline {
  width: 100%;
  margin-bottom: var(--spaceM);
  border-bottom: 2px solid var(--mainBlue);
  color: var(--mainBlue);
  font-family: var(--smallTitleFont);
  font-size: 1.5rem;
  font-weight: 600;
}
.process_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.process_left {
  width: 33%;
}
.security {
  margin-top: var(--spaceM);
}
.security_container {
  display: flex;
  justify-content: space-between;
}
.security_left {
  width: 62%;
}
.security_right {
  width: 34%;
  line-height: 1.8;
}
.objectivity {
  margin-top: var(--spaceM);
}
.objectivity_container {
  display: flex;
  justify-content: space-between;
}
.objectivity_left {
  width: 33%;
  line-height: 1.8;
}
.objectivity_right {
  width: 40%;
}

.objectivity_woman {
  width: 50%;
  margin: -152px 0 0 auto;
}
.check_list {
  margin-top: var(--spaceM);
}
.check_listContainer {
  display: flex;
  justify-content: space-between;
}
.check_listLeft {
  width: 62%;
}
.check_listTable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--lineColor);
}
.cl_item {
  border: 0;
  outline: 0;
}
.cl_mainTitle {
  padding: var(--spaceS);
  font-size: 1.2rem;
}
.cl_title {
  width: 20%;
  border: 1px solid var(--lineColor);
  padding: var(--spaceS);
  font-weight: bold;
}
.cl_content {
  padding: var(--spaceS);
  border: 1px solid var(--lineColor);
}
.check_woman {
  width: 100%;
  margin-left: auto;
}
.check_woman img {
  transform: scale(-1, 1);
}
.check_listRight {
  width: 33%;
  line-height: 1.8;
}

/*page_contact*/
/*contact_topTxt*/
.contact_txt {
  width: fit-content;
  margin: 0 auto;
  line-height: 1.8;
}

/*contact_main*/
#wpcf7-f154-p155-o1 {
  overflow: hidden;
}
.contact_mainInner {
  margin: 0 auto;
  padding: 2rem;
  width: 65%;
  border: 2px solid var(--mainBlue);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
}
.contact_mainInner label {
  margin: 0 auto var(--spaceS);
  display: block;
  cursor: initial;
}
.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap textarea {
  width: 100%;
  border-radius: 7px;
  border: 1px solid var(--mainBlue);
  background-color: #fff;
}
.wpcf7-form-control-wrap input:not([type="checkbox"]) {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--mainBlue);
  border-radius: 7px;
}
.contact_item {
  font-size: 0.8rem;
  color: #fd1717;
}
.contact_privacy {
  width: 376px;
  margin: 0 auto;
}
.wpcf7-list-item label {
  margin-left: -1em;
}
.wpcf7-list-item label input[type="checkbox"] {
  background-color: #fff;
}
.c_privacyLink {
  text-decoration: underline;
  transition: 0.4s;
}
.c_privacyLink:hover {
  opacity: 0.5;
}
.contact_submitWrapper {
  display: flex;
  justify-content: center;
}
.contact_submitWrapper input {
  background-color: var(--mainYellow);
  border-radius: 15px;
  width: 7rem;
  height: 3rem;
  box-shadow: 3px 3px 0 #e7c17a;
  border: none;
  font-weight: 600;
  transition: 0.2s;
}
@media (hover: hover) {
  .contact_submitWrapper input:hover {
    box-shadow: 0 0 0 #e7c17a;
    transform: translateY(3px);
  }
}
.contact_submitWrapper span {
  display: none;
}
.acceptance_check {
  width: 15px;
  height: 15px;
}

/*schedule*/
.preferred_date {
  margin: 0.4rem auto;
  width: 376px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}
input[type="date"] {
  position: relative;
}
.sk_date {
  position: relative;
}
.sk_date::before {
  position: absolute;
  content: "";
  background-image: url(https://heartstation.or.jp/wp-content/uploads/2025/10/calendar.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  height: 22px;
  width: 22px;
}
.preferred_hourTitle {
  margin-block: 0.3rem;
}
.preferred_hourCheck .wpcf7-form-control {
  display: flex;
  flex-direction: column;
}
.preferred_hourCheck .wpcf7-list-item label {
  margin: 0 0 0.5rem -1rem;
}

/*privacy-policy*/
.privacy_list li {
  margin-block: var(--spaceM);
}
.privacy_contact {
  text-decoration: underline;
  transition: 0.4s;
}
.privacy_contact:hover {
  opacity: 0.5;
}

/*responsive*/
@media screen and (max-width: 1390px){
	.sk_button_wrap{
		padding-right:0;
	}
}

@media screen and (max-width: 1295px) {
  .tre_oContainer {
    flex-wrap: wrap;
    row-gap: var(--spaceM);
  }
  .tre_oContainer:nth-child(2)::after {
    width: 47%;
  }
  .tre_card {
    width: 47%;
  }

  .tre_cardImg {
    height: auto;
    width: 50%;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
  }
}
@media screen and (max-width: 1100px) {
  .header_logo {
	  width:100%;
    padding: 25px 20px;
  }
  .header_logoImg a {
    width: 150px;
  }
  h1 {
    font-size: 1rem;
  }
	
  .nav_wrapper {
    height: 70px;
	display:none;
  }
  .top_menu,
  .contact_button_wrap {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .subtitle_hl {
    font-size: 2rem;
  }
  .subtitle_pl {
    margin-block: 0;
  }
  .tre_pTitle {
    padding-bottom: 10px;
    font-size: 1.3rem;
  }
  .tre_oList {
    font-size: 1.2rem;
  }
  .tre_oImg {
    top: 51%;
    left: 75%;
  }
  .footer_cTxt {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .footer_title {
    font-size: 1.7rem;
  }
  .tac_fAchievement,
  .tac_tAchievement {
    font-size: 2.2rem;
  }
  .tac_aTitle {
    font-size: 1.3rem;
    font-weight: 500;
  }
  .tre_oBox {
    width: 54%;
  }
  .flow .subtitle_pl {
    margin-block: var(--spaceS);
  }
  .contact_mainInner {
    width: 80%;
  }
  
	.contact_button p {
		font-size:16px;
	}
}

@media screen and (max-width: 930px) {
  .catch{
    bottom:8%;
  }
  .shared_container:first-child {
    margin-top: 1rem;
  }
  .survey_handicapped {
    margin-top: 3rem;
  }
  :is(.cl_title, .cl_content) {
    width: 100%;
    display: block;
    border: none;
    border-top: 1px solid var(--lineColor);
  }
  .id_chair {
    display: inline-block;
  }
  .tre_card {
    margin: 0 auto;
    width: 100%;
  }
  .header_logo {
    padding: 20px 15px;
  }
  .main_img {
    aspect-ratio: 3 / 2;
  }
  .sub_visual {
    margin-block: 15px 3rem;
  }
  .content.top_about {
    margin-top: 3rem;
  }
  .content {
    margin-bottom: 3rem;
  }
  .content.top_about .wrapper {
    flex-direction: column-reverse;
  }
  .tab_left {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .tab_img {
    width: 70%;
  }
  .tab_right {
    width: 100%;
  }
  .subtitle_hl {
    font-size: 1.8rem;
  }
  .tab_rightTop .h3_wrapper {
    margin: 0 auto;
  }
  .tab_rightTop .h3_wrapper .small_headline {
    text-align: center;
  }
  .tab_rightBottom {
    margin-block: var(--spaceS);
    justify-content: center;
  }
  .tac_total {
    margin-block: var(--spaceS);
    font-size: 2.8rem;
  }
  .tac_totalTitle {
    font-size: 1.6rem;
  }
  .tac_fAchievement,
  .tac_tAchievement {
    flex-direction: column;
  }
  .tac_aNumber {
    margin-left: 0;
  }
  .tse_container {
    margin-block: var(--spaceM) 0;
    flex-direction: column;
  }
  .tse_card {
    margin: 0 auto var(--spaceM);
    width: 100%;
  }
  .border_left,
  .border_right {
    width: 35%;
  }
  .tpo_container {
    margin-top: var(--spaceM);
    flex-direction: column;
  }
  .tpo_container:nth-child(even) {
    flex-direction: column;
    margin-block: 4rem;
  }
  .tpo_box {
    width: 100%;
  }
  .tpo_boxBottom {
    margin: var(--spaceS) auto;
  }
  .tpo_img {
    margin: 0 auto;
    width: 65%;
  }
  .tre_points {
    margin-top: var(--spaceM);
    flex-direction: column;
  }
  .tre_pLeft {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
  }
  .tre_videoTxt {
    margin-top: var(--spaceS);
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
  }
  .tre_pRight {
    width: 100%;
  }
  .tre_oBox {
    width: 67%;
  }
  .tre_oList {
    font-size: 1.1rem;
  }
  .tre_oImg {
    width: 60%;
    left: 67%;
  }
  .tre_lTxt {
    font-size: 1.2rem;
    line-height: 1.8;
  }
  .instagram_txt {
    flex-direction: column;
  }
  .insta_icon {
    margin: 0 0 0.5rem;
  }
  .instagram_txt p {
    text-align: center;
  }
  .insta_Id {
    display: inline-block;
  }
  .insta_container {
    padding-bottom: 3rem;
  }
  .insta_articles {
    flex-direction: column;
  }
  .insta_box {
    margin: 0 auto 2rem;
    width: 70%;
  }
  .footer_logo {
    margin: 0 auto;
    width: 20%;
  }
  .footer_menuWrapper {
    display: none;
  }
  .sub_imgTitle {
    width: 18rem;
  }
  .page_title {
    font-size: 2.1rem;
  }
  .recruit_topContainer {
    flex-direction: column;
  }
  .recruit_topLeft {
    width: 100%;
  }
  .recruit_topLeft .h3_wrapper {
    margin: 0 auto;
  }
  .recruit_topLeft .h3_wrapper .subtitle_hl {
    font-size: 1.6rem;
  }
  .recruit_topLeft .h3_wrapper .subtitle_hl br {
    display: none;
  }
  .recruit_topLeft p {
    margin-top: var(--spaceS);
    line-height: 1.8;
  }
  .recruit_topRight {
    margin: var(--spaceS) auto 0;
    width: 60%;
  }
  .shared_container {
    margin-top: 3rem;
    flex-direction: column-reverse;
  }
  .shared_container:nth-child(even) {
    flex-direction: column-reverse;
  }
  .shared_img {
    margin: var(--spaceS) auto 0;
    width: 70%;
  }
  .shared_box {
    width: 100%;
  }
  .shared_title {
    padding: 0;
    text-align: center;
  }
  .shared_txt {
    padding: 0;
  }
  .chair_img {
    margin-right: 1.3rem;
    width: 240px;
    min-width: 240px;
    height: 240px;
  }
  .chair_img::after {
    top: -25px;
    left: -25px;
  }
  .chair_pName {
    margin-block: 0.3rem 2.5rem;
  }
  .chair_txt {
    width: 100%;
  }

  .chair_licenseBox {
    padding-bottom: 1rem;
  }

  .ouen_container {
    flex-direction: column-reverse;
  }
  .ouen_left {
    margin-top: var(--spaceS);
    width: 100%;
  }
  .ouen_right {
    width: 100%;
    justify-content: center;
  }
  .childcare_logo,
  .care_logo {
    width: initial;
  }
  .graph_container {
    flex-direction: column;
    align-items: center;
  }
  .course_bottomId {
    display: inline-block;
  }
  .flow_subTitle {
    font-size: 1.2rem;
  }
  .bracket {
    margin-block: 0.3rem;
    font-size: 1.1rem;
  }
  .colored {
    font-size: 1rem;
    font-weight: 500;
  }
  .survey_handicapped .shared_container {
    flex-direction: column-reverse;
  }
  .training_main {
    margin-top: var(--spaceM);
    flex-direction: column;
  }
  .training_mainLeft {
    width: 100%;
  }
  .training_mainTxt {
    margin-bottom: 0.5rem;
  }
  .training_mainRight {
    margin-top: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .lesson_img {
    width: 45%;
  }
  .textbook_img {
    width: 45%;
    margin: 0;
  }
  .process_container {
    flex-direction: column-reverse;
  }
  .process_left {
    width: 50%;
  }
  .process_right {
    width: 100%;
  }
  .security {
    margin-top: 0;
  }
  .security_container {
    flex-direction: column;
    align-items: center;
  }
  .security_left {
    width: 85%;
  }
  .security_right {
    margin-top: var(--spaceS);
    width: 100%;
  }
  .objectivity_container {
    flex-direction: column-reverse;
  }
  .objectivity_left,
  .objectivity_right {
    width: 100%;
  }

  .objectivity_listImg {
    width: 50%;
    margin: 0 auto;
  }

  .check_listContainer {
    flex-direction: column;
  }
  .check_listLeft {
    width: 100%;
  }
  .cl_mainTitle {
    font-size: 1.1rem;
  }
  .check_listRight {
    margin-top: var(--spaceS);
    width: 100%;
  }
  .check_woman {
    width: 40%;
    margin-top: var(--spaceS);
    margin-inline: auto;
  }
  .contact_mainInner {
    padding: 2rem var(--spaceS);
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .header_inner {
    justify-content: center;
  }
  .nav_wrapper {
    display: none;
  }
  .process_container {
    margin-bottom: var(--spaceS);
  }
  .chair_pTitle {
    text-align: center;
  }
  .tac_fukuoka,
  .tac_tokyo {
    width: 100%;
  }
  .tac_container {
    flex-direction: column;
    align-items: center;
  }
  .footer_contactWrap .contact_button {
    font-size: 1.1rem;
    width: 160px;
    height: 1.8rem;
  }
  input::placeholder {
    font-size: 0.8rem;
  }
  .preferred_date {
    margin: 0.4rem auto 0.4rem 0;
    width: 80%;
  }
  .tse_message:nth-child(even) {
    flex-direction: column;
  }
  .tse_message {
    flex-direction: column;
    align-items: center;
  }
  .tse_messageContent {
    width: 100%;
  }
  .tse_messageContent .subtitle_pl {
    margin-bottom: 0;
    margin-block: 0.3rem;
    text-align: center;
  }
  :is(.chair_pName, .chair_licenseTop, .chair_license) {
    text-align: center;
  }
  .chair_profile {
    flex-direction: column;
    align-items: center;
  }
  .chair_img {
    margin-right: 0;
    margin-block: 0.3rem;
  }
  .chair_pName {
    margin-block: 0.3rem;
  }
  .chair_licenseBox {
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
  }
  .td_phone {
    display: block;
  }
  .header_logo {
    flex-direction: column;
    padding: 15px 10px;
  }
  .header_logoImg a {
    width: 135px;
  }
  h1 {
    font-size: 0.9rem;
  }
  .sub_visual {
    margin-block: 15px 1.5rem;
  }
  .sub_imgTitle {
    width: 16rem;
  }
  .page_title {
    font-size: 1.7rem;
  }
  .content.top_about {
    margin-top: 1.5rem;
  }
  .h3_wrapper {
    text-align: center;
  }
  .subtitle_hl {
    display: initial;
    font-size: 1.4rem;
  }
  .id {
    display: inline-block;
  }
  .tab_img,
  .tpo_img {
    width: 100%;
  }
  .tab_txt {
    margin-top: var(--spaceS);
    line-height: 1.8;
  }
  .content.top_achievement .wrapper {
    padding: var(--spaceS);
  }
  .tac_total {
    font-size: 2rem;
  }
  .tac_totalTitle {
    font-size: 1.2rem;
  }
  .tac_fAchievement,
  .tac_tAchievement {
    font-size: 1.5rem;
  }
  .tac_aTitle {
    font-size: 1.1rem;
    font-weight: 600;
  }
  .tse_container {
    margin-block: var(--spaceS) 0;
  }
  .tse_cardContent {
    padding: var(--spaceS);
  }
  .tse_cardTxt {
    margin-top: 0.5rem;
  }
  .tse_message {
    margin-bottom: var(--spaceS);
  }
  .tse_messageImg {
    width: 95px;
  }
  .tse_more {
    padding-block: var(--spaceS);
  }
  .border_left,
  .border_right {
    display: none;
  }
  .tse_more p {
    font-size: 1.1rem;
  }
  .content.top_points {
    padding-block: 1.5rem var(--spaceM);
  }
  .tpo_container {
    margin-top: var(--spaceS);
  }
  .pink_point {
    width: 75px;
  }
  .tpo_title h3 {
    font-size: 1.2rem;
  }
  .tpo_boxBottom {
    margin: 0 auto var(--spaceS);
  }
  .tre_points {
    margin-top: var(--spaceS);
  }
  .tre_number {
    width: 90px;
    min-width: 90px;
  }
  .tre_pTitle {
    font-size: 1.1rem;
    padding-bottom: 5px;
  }
  .tre_oBox {
    width: 80%;
    padding: 1.5rem;
  }
  .tre_oList {
    padding: 0.8rem 0 0.8rem 1.3rem;
    line-height: 1.8;
  }
  .tre_oImg {
    width: 54%;
    top: 61%;
    left: 62%;
  }
  .tre_lTxt {
    font-size: 1.1rem;
  }
  .tre_moreWrap {
    margin-top: var(--spaceS);
  }
  .content_border {
    margin: 0 auto var(--spaceM);
  }
  .instagram_txt {
    margin: var(--spaceS) auto;
  }
  .footer_cTxt {
    padding-top: var(--spaceS);
    font-size: 1rem;
  }
  .footer_title {
    font-size: clamp(1.2rem, 0.367rem + 3.556vw, 1.7rem);
  }
  .footer_logo {
    width: 105px;
  }
  .footer_bottom {
    flex-direction: column;
  }
  .footer_pLink {
    margin: 0 0 5px 0;
  }
  .privacy_list {
    margin-top: var(--spaceS);
  }
  .subtitle_uline {
    margin-bottom: var(--spaceS);
    font-size: 1.2rem;
  }
  .privacy_Id {
    display: inline-block;
  }
  .privacy_list li {
    margin-block: var(--spaceS);
  }
  .recruit_topLeft .h3_wrapper .subtitle_hl {
    font-size: 1.4rem;
  }
  .recruit_topLeft .h3_wrapper .subtitle_hl br {
    display: initial;
  }
  .recruit_topRight {
    width: 80%;
  }
  .shared_img {
    width: 100%;
  }
  .shared_title {
    font-size: clamp(1rem, 0.333rem + 2.844vw, 1.4rem);
  }
  .employee_messageInner .tse_message {
    flex-direction: column;
  }
  .employee_messageInner .tse_message .tse_messageImg {
    margin: 0 auto;
  }
  .employee_messageInner .tse_message .tse_messageContent {
    width: 100%;
  }
  .ct_title {
    padding: var(--spaceS) 0px;
    width: 100%;
    display: block;
    text-align: center;
  }
  .ct_content {
    padding: var(--spaceS) 0;
    width: 100%;
    display: block;
    text-align: center;
  }
  .td_Id {
    display: inline-block;
  }
  .graph_container {
    margin-top: 0;
  }
  .works_mainButton {
    margin-top: var(--spaceS);
  }
  .works_mainButton .more_button {
    font-size: 1.2rem;
  }
  .course_bottom {
    margin-top: var(--spaceS);
  }
  .course_bottomTxt {
    font-size: 1.1rem;
  }
  .course_contact {
    margin-top: var(--spaceS);
  }
  .flow_container {
    padding: var(--spaceS);
  }
  .flow_arrow {
    height: 75px;
  }
  .flow_arrow::before {
    height: 28px;
  }
  .flow_arrow::after {
    top: 38px;
  }
  .training_main {
    margin-top: var(--spaceS);
  }
  .training_mainRight {
    margin-top: var(--spaceS);
    flex-direction: column;
    align-items: center;
  }
  .lesson_img {
    margin-bottom: var(--spaceS);
    width: 100%;
  }
  .textbook_img {
    width: 100%;
  }
  .process_left {
    width: 80%;
  }
  .security_left {
    width: 100%;
  }
  .objectivity_woman {
    margin: -85px 0 0 auto;
    width: 65%;
  }
  .check_woman {
    width: 50%;
  }
  .contact_mainInner {
    width: 100%;
  }
  .wpcf7-form-control-wrap input,
  textarea {
    width: 95%;
  }
  .wpcf7-list-item label input[type="checkbox"] {
    width: initial;
    margin-right: 10px;
  }
}
