@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP:500,700");

/* 【03 - global.css 追加】 */
/* -------------------------------------------------------------------------------------------------------------------- */
/* wordpress化の時、textrea・枠線を消す */
textarea:focus {
  outline: none;
}
/* wordpress化の時、textrea・調整マークを消す */
textarea {
  resize: none;
}

/* header固定 */
/* div[class^="under-section-wrapper"] {
  top: 80px;
}
div[class^="header-section"] {
  z-index: 9999;
  position: fixed !important;
} */

/* button */
/* ー＞ */
div[class^="button"] {
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #000; /* 初期テキストカラー */
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1); /* スムーズな色変更 */
}
div[class^="button"]::after {
  background: #5130f7;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
div[class^="button"]:hover {
  color: #fff; /* ホバー時のテキストカラー */
}
div[class^="button"]:hover::after {
  transform: scale(1, 1);
}
/* button hover時 検索で"text-"で、"text"に変換 */
div[class^="button"] .text-6 {
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1); /* スムーズな色変更 */
}
div[class^="button"]:hover .text-6 {
  color: #fff; /* ホバー時のテキストカラー */
}

/* link */
/* hover-link */
/* ー＞ */
div[class^="hover-link"]::after {
  /* ー＞ */
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 1s; /*変形の時間*/
}
div[class^="hover-link"]:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* header-hover-link */
/* ー＞ */
div[class^="header-hover-link"]::after {
  /* ー＞ */
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 1s; /*変形の時間*/
}
div[class^="header-hover-link"]:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* footer-hover-link */
/* ー＞ */
div[class^="footer-hover-link"]::after {
  /* ー＞ */
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #fcfbfb;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 1s; /*変形の時間*/
}
div[class^="footer-hover-link"]:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
/* menu-hover-link */
/* ー＞ */
div[class^="menu-hover-link"]::after {
  /* ー＞ */
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  bottom: -10px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 1s; /*変形の時間*/
}
div[class^="menu-hover-link"]:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

/* image */
div[class^="parent-image"] {
  /* display: inline-block; */
  /* display: block; */
  line-height: 0;
  overflow: hidden;
}
/* クラス名で、hover-image-2ある。削除しないで、"class="hover-image-"で検索して、" hover-image"を右側に追加 */
.hover-image {
  display: block;
  transform: scale(1);
  transition-property: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
div[class^="parent-image"]:hover .hover-image {
  transform: scale(1.3);
}
/* -------------------------------------------------------------------------------------------------------------------- */

.screen a {
  display: contents;
  text-decoration: none;
}

.valign-text-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.valign-text-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hidden,
.hidden * {
  pointer-events: none;
  visibility: hidden;
}

* {
  box-sizing: border-box;
}

.header2 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  min-width: 960px;
  position: relative;
  width: 100%;
}

.background-horizontal-border {
  align-items: center;
  align-self: stretch;
  background-color: var(--wwwapplecomwhite);
  display: flex;
  height: 80px;
  position: relative;
  width: 100%;
}

.x2024-09-05-142344-1 {
  cursor: pointer;
  height: 48px;
  object-fit: cover;
  position: relative;
  width: 145px;
}

.header-hover-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.menu-button-contact {
  align-items: center;
  align-self: stretch;
  background-color: var(--big-stone);
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 10px 30px;
  position: relative;
}

.path-124 {
  height: 15.05px;
  position: relative;
  width: 20px;
}

.pagehero-pc {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.page-hero2 {
  align-items: flex-start;
  background-color: var(--desert-storm);
  flex-direction: column;
  gap: 10px;
  height: 210px;
  padding: 56px 110px;
  width: 100%;
}

.company {
  align-self: stretch;
  height: 28px;
  letter-spacing: 0;
  line-height: 28px;
  margin-top: -1px;
  position: relative;
  white-space: nowrap;
}

.breadcrumbs {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.breadcrumbs2 {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  padding: 10px 110px;
  position: relative;
  width: 100%;
}

.item-link-home {
  cursor: pointer;
  height: 14px;
  letter-spacing: 0;
  line-height: 21.6px;
  position: relative;
  text-decoration: underline;
  white-space: nowrap;
  width: 30.85px;
}

.item {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 16px;
  padding: 0px 0px 0px 10px;
  position: relative;
}

.cta-pc {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.cat1 {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.cta_plus {
  align-items: flex-start;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(16, 0, 83) 50%
  );
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 55px 110px;
  position: relative;
  width: 100%;
}

.text-item {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.company-portfolio {
  align-self: stretch;
  letter-spacing: 0;
  line-height: 50px;
  margin-top: -1px;
  position: relative;
  text-align: center;
}

.container_button {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 0px 210px;
  position: relative;
  width: 100%;
}

.place {
  align-self: stretch;
  flex: 1;
  letter-spacing: 0;
  line-height: 50px;
  margin-top: -1px;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.text_description {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.tel-0823-82-9977 {
  align-self: stretch;
  letter-spacing: 0;
  line-height: 40px;
  margin-bottom: -4px;
  margin-top: -1px;
  position: relative;
  text-align: center;
}

.footer1 {
  align-items: center;
  align-self: stretch;
  background-color: var(--big-stone);
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 99px 100px;
  position: relative;
  width: 100%;
}

.link-index-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.x2024-09-05-142228-1 {
  cursor: pointer;
  height: 80px;
  object-fit: cover;
  position: relative;
  width: 220px;
}

.footer-hover-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  position: relative;
}

.container_text {
  align-items: flex-start;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 29px;
  min-width: 420px;
  padding: 6px 20px 30px 30px;
  position: relative;
}

.copyright {
  flex: 1;
  height: 23px;
  letter-spacing: 2.2px;
  line-height: 18.3px;
  margin-top: -1px;
  position: relative;
}

.footer-hover-link-3 {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 10px;
  position: relative;
}

.page {
  align-self: stretch;
  display: flex;
  position: relative;
}

.header-section-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.header-mobile {
  align-items: flex-start;
  align-self: stretch;
  box-shadow: 0px 4px 4px #00000040;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.background-horizontal-border-1 {
  align-items: center;
  align-self: stretch;
  background-color: var(--wwwapplecomwhite);
  display: flex;
  height: 80px;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

.link-index-2 {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  padding: 0px 20px;
}

.x2024-09-05-142344-1-1 {
  cursor: pointer;
  height: 48px;
  object-fit: cover;
  position: relative;
  width: 145px;
}

.menu-button-mobile {
  align-items: center;
  align-self: stretch;
  background-color: var(--big-stone);
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.line-1 {
  height: 2.15px;
  margin-right: -0.01px;
  position: relative;
  width: 20px;
}

.under-section-wrapper-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  min-width: 375px;
  position: relative;
  width: 100%;
}

.pagehero-mobile {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.company-1 {
  align-self: stretch;
  height: 28px;
  letter-spacing: 0;
  line-height: 28px;
  margin-top: -1px;
  position: relative;
  white-space: nowrap;
}

.breadcrumbs-mobile {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  position: relative;
  width: 100%;
}

.breadcrumbs2-1 {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  padding: 10px 30px;
  position: relative;
  width: 100%;
}

.item-link-home-1 {
  cursor: pointer;
  height: 14px;
  letter-spacing: 0;
  line-height: 21.6px;
  position: relative;
  text-decoration: underline;
  white-space: nowrap;
  width: 30.85px;
}

.item-1 {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 16px;
  padding: 0px 0px 0px 10px;
  position: relative;
}

.cta-mobile {
  flex: 1;
  flex-grow: 1;
  gap: 10px;
  justify-content: center;
  min-width: 375px;
}

.cat1-1 {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  padding: 40px 0px;
  position: relative;
}

.cta_plus-1 {
  align-items: center;
  align-self: stretch;
  background: linear-gradient(
    180deg,
    rgb(255, 255, 255) 50%,
    rgb(16, 0, 83) 50%
  );
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 30px;
  position: relative;
  width: 100%;
}

.parent-image-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}

.company-portfolio-1 {
  align-self: stretch;
  letter-spacing: 0;
  line-height: 30px;
  margin-top: -1px;
  position: relative;
  text-align: center;
}

.cta-1 {
  background-color: var(--wwwapplecomwhite);
  flex: 0 0 auto;
  flex-direction: column;
  max-width: 640px;
  min-width: 320px;
  padding: 30px;
  width: 100%;
}

.place-1 {
  align-self: stretch;
  flex: 1;
  letter-spacing: 0;
  line-height: 50px;
  margin-top: -1px;
  position: relative;
  text-align: center;
}

.line-2 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 0px 70px;
  position: relative;
  width: 100%;
}

.tel-0823-82-9977-1 {
  align-self: stretch;
  letter-spacing: 0;
  line-height: 40px;
  margin-top: -1px;
  position: relative;
  text-align: center;
}

.button-contact-3 {
  display: flex;
  width: 275px;
}

.footer-mobile {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 1;
  flex-grow: 1;
  gap: 10px;
  justify-content: center;
  position: relative;
}

.footer1-1 {
  align-items: flex-start;
  background-color: var(--big-stone);
  display: flex;
  flex: 1;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 0px 0px;
  justify-content: space-around;
  padding: 70px 30px 70px 40px;
  position: relative;
}

.container_link-1 {
  gap: 10px;
  padding: 0px 0px 30px;
}

.link-index-3 {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  width: 100%;
}

.x2024-09-05-142228-1-1 {
  cursor: pointer;
  height: 80px;
  object-fit: cover;
  position: relative;
  width: 220px;
}

.container_link-2 {
  gap: 20px;
  padding: 5px 0px 30px;
}

.item-link {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 30.5px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.item-link-1 {
  align-items: flex-start;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.copyright-1 {
  align-self: stretch;
  height: 23px;
  letter-spacing: 2.2px;
  line-height: 18.3px;
  margin-top: -1px;
  position: relative;
}

.abcsamplecojp {
  align-self: stretch;
  height: 46px;
  letter-spacing: 0;
  line-height: 22.4px;
  position: relative;
}

.container-item-1 {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  position: relative;
  width: 100%;
}
