@charset "UTF-8";

/*==============================================================
>>> COMMON CONTENTS
----------------------------------------------------------------
1.0 Common
  1.1 Base
  1.2 Loding
  1.3 Layout
  1.4 text

2.0 Header
  2.1 header-top
  2.2 Logo
  2.3 menu-btn
  2.4 Layout
  2.5 gnav-menu
  2.6 header-cv

3.0 Footer
  3.1 Layout
  3.2 Font
  3.3 footer-menu テキストサイズ
  3.4 footer-terms
  3.5 Logo
  3.6 footer-cv
  3.7 breadcrumbs
  3.8 display none
  3.9 padding-0

4.0 Main
  4.1 text
  4.2 img
  4.3 button
  4.4 fade
  4.5 other

==============================================================*/
/* 注意
  汎用classは単独で使わないように
  index, top, page, detail, inner, hide
  ::before,::afterを使用するときは、.sectionに.page-(カラークラス)をつけて指定すると楽です。(例：page-c1)
--------------------------------------------------------------*/
/*==============================================================
1.0 Common
--------------------------------------------------------------*/
/* 1.1 Base
--------------------------------------------------------------*/
:root {
  /* カラークラス */
  --solba-yellow: #ffaf00;
  --solba-yellow2: #f3a703;
  --solba-green: #239b69;
  --black: #000;
  --white: #fff;
  --greige: #e6dcd7;
  --bgc: #f1f1f1;
  --c0: #ffaf00;
  --c1: #ff5b00;
  --c2: #f32622;
  --c3: #fa6fb1;
  --c4: #007900;
  --c5: #01c792;
  --text-black: #1a1a1a;

  --ease-01: cubic-bezier(0.32, 0.48, 0, 1);
  --trans: 0.3s;
}
* {
  padding: 0;
  margin: 0;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ========================================
   フォントサイズ設定（Edge完全対応版）
======================================== */
/* デフォルト: デスクトップ */
html {
  font-size: calc(100vw / 1440);  /* CSS変数を使わない */
  scrollbar-gutter: stable;
}

/* mobile */
@media screen and (max-width: 768px) {
  html {
    font-size: calc(100vw / 393);
  }

  body:before {
    background-size: 50%;
  }
}

/* tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  html {
    font-size: calc(100vw / 991);
  }
}

/* desktop */
@media screen and (min-width: 1025px) {
  html {
    font-size: clamp(0.875px, calc(100vw / 1440), 1px);
  }

  body:before {
    background-size: 25%;
  }
}
body {
  font-family: "IBM Plex Sans JP", Arial, sans-serif;
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-black);
  background-attachment: scroll;
  width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}
video,
iframe {
  max-width: 100%;
}
body,
div,
pre,
p,
blockquote,
form,
fieldset,
dl,
dt,
dd,
li,
table,
th,
td,
embed,
object,
button {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-weight: 400;
}
main {
  margin-top: 0;
  padding-top:80rem;
  /* margin-top: -80rem;
  padding-top: 80rem; */
  overflow: hidden;
  position: relative;
}
ul,
ol {
  list-style-type: none;
}
ul.disc {
  list-style: disc;
}
dt,dd {
  position: relative;
}
a {
  cursor: pointer;
  outline: medium none;
  font-size: inherit;
}
a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}
a:focus,
*:focus {
  outline: none;
}
.no-link > a {
  pointer-events: none!important;
  cursor: default!important;
  text-decoration: none;
}
.link-item > a {
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    text-decoration: underline;
}

.svg-icon_external {
  display: inline-block;
  margin: 0;
  font-size: 0;
  position: absolute;
  width: 25rem;
  bottom: 3rem;
}
.link-item.text-link {
  position: relative;
}
.link-item.text-link .svg-icon_external {
  bottom: -4rem;
}


*:after {
  clear: both;
}
table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
table th,
table td {
  white-space: normal;
  word-break: break-word;
}
.table-wrap {
 position: relative;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/* 右側にグラデーション（スクロール可能を示す） */
.table-shadow {
  position: relative;
  width: 100%;
}
.table-shadow::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(to left, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}
/* スクロール最後まで行ったら影を消す */
.table-shadow.scroll-end::after {
  opacity: 0;
}
.table-wrap table {
  table-layout: auto;
  width: auto;
  min-width: 768px;
  border-collapse: collapse;
}
@media screen and (min-width:769px) {
.table-wrap::after {
  display: none;
}
.table-shadow::after {
background: none;
}
.table-wrap table {
  min-width: unset;
}
}
dl {
  display: grid;
  grid-template-columns: auto 1fr;
}
dl.sp-column {
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width:769px) {
dl.sp-column {
  grid-template-columns: auto 1fr;
}
}
input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
textarea {
  font: inherit;
  resize: vertical;
}
input[type="checkbox"],
input[type="radio"] {
  display: none;
}
input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}



/* 1.2 Loding
--------------------------------------------------------------*/
#white-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 1;
  transition: opacity 0.8s ease;
}
#white-overlay.hide {
  display: none;
}
.header .hide,
.footer .hide {
  display: none;
}

/* 1.3 Layout
--------------------------------------------------------------*/
/* media query : mobile all-browser */
.wrapper {
  position: relative;
  height: 100%;
}
.scrollify {
  width: 100%;
  height: 100svh;
}
.opacity {
  opacity: 0.5;
}
.section {
  width: 100%;
  position: relative;
  margin-top: 30rem;
  margin-bottom: 30rem;
}
.section.bgc {
  margin-top: 0;
  margin-bottom: 0;
  overflow: hidden;
  padding-top: 40rem;
  padding-bottom: 40rem;
}
.section.bgc.out-of-section {
  overflow: unset;
}
.section.marginTB-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.container {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 1;
  padding-left: 20rem;
  padding-right: 20rem;
}
.content-inner.out-of-inner {
  overflow: unset;
}
.cnt-inner {
  position: relative;
  width: 100%;
}
.wrap {
  position: relative;
}
/* media query : tablet */
@media screen and (min-width: 601px) {
  .container {
    padding-left: 30rem;
    padding-right: 30rem;
  }
}
/* media query : tablet & desktop */
@media screen and (min-width: 769px) {
  .scrollify {
    height: 100vh;
  }
  .section {
    margin-top: 80rem;
    margin-bottom: 80rem;
  }
  .section.bgc {
    padding-top: 80rem;
    padding-bottom: 80rem;
  }
  .section.marginTB-0 {
    margin-top: 0;
    margin-bottom: 0;
  }
  .container {
    padding-left: 60rem;
    padding-right: 60rem;
  }
}
/* media query : desktop */
@media screen and (min-width: 1025px) {
  .section {
    margin-top: 100rem;
    margin-bottom: 100rem;
  }
  .section.bgc {
    padding-top: 100rem;
    padding-bottom: 100rem;
  }
  .container {
    padding-left: 80rem;
    padding-right: 80rem;
  }
}
/* media query : desktop-wide */
@media screen and (min-width: 1280px) {
  .container {
    padding-left: 100rem;
    padding-right: 100rem;
  }
}

/* grid-box、flex-box
--------------------------------------------------------------*/
.grid-box {
  display: grid;
  column-gap: 10rem;
  row-gap: 10rem;
  margin-left: auto;
  margin-right: auto;
}
.flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20rem 0;
  width: 100%;
}
.flex-box li {
  position: relative;
}
.flex-box.flex-2 > li {
  flex: 0 0 100%;
}
.flex-box.flex-2 > .flex-left,
.flex-box.flex-2 > .flex-right {
  flex: 0 0 100%;
  width: 100%;
}
.flex-box.flex-3 > li {
  flex: 0 0 100%;
}
.flex-box-center {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 769px) {
  .flex-box {
    gap: 30rem;
  }
  .flex-box.flex-2 > li {
    flex: 0 0 calc((100% - 30rem) / 2);
    width: calc((100% - 30rem) / 2);
  }
  .flex-box.flex-2 > .flex-left,
  .flex-box.flex-2 > .flex-right {
    flex: 0 0 calc((100% - 30rem) / 2);
    width: calc((100% - 30rem) / 2);
  }
  .flex-box.flex-3 > li {
    flex: 0 0 calc((100% - 60rem) / 3);
    width: calc((100% - 60rem) / 3);
  }
}
@media screen and (min-width: 1025px) {
  .flex-box {
    gap: 40rem;
  }
  .flex-box.flex-2 > li {
    flex: 0 0 calc((100% - 40rem) / 2);
    width: calc((100% - 40rem) / 2);
  }
  .flex-box.flex-2 > .flex-left,
  .flex-box.flex-2 > .flex-right {
    flex: 0 0 calc((100% - 40rem) / 2);
    width: calc((100% - 40rem) / 2);
  }
  .flex-box.flex-3 > li {
    flex: 0 0 calc((100% - 80rem) / 3);
    width: calc((100% - 80rem) / 3);
  }
}

/* 1.4 text
--------------------------------------------------------------*/
/* font-weight
---------------*/
.normal {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.black {
  font-weight: 900;
}

ul.medium > li {
  font-weight: 500;
}
ul.semibold > li {
  font-weight: 600;
}
ul.bold > li {
  font-weight: 700;
}

/* text-align
---------------*/
.text-center {
  text-align: center;
}
.sp-center {
  text-align: center;
}
.pc-center {
  text-align: left;
}
.text-left {
  text-align: left;
  width: 100%;
}
.text-right {
  text-align: right;
}
.sp-left {
  justify-self: unset;
  text-align: justify;
}
.text-left > .text {
  text-align: justify;
}
@media screen and (min-width: 769px) {
  .sp-center {
    text-align: left;
  }
  .sp-left {
    justify-content: center;
    text-align: center;
  }
  .pc-center {
    text-align: center;
  }
}

/*==============================================================
2.0 Header
--------------------------------------------------------------*/

/* 2.0 header-top
--------------------------------------------------------------*/
/* media query : mobile all-browser */
.header {
  width: 100%;
  height: -webkit-fit-content; /* Safari用 */
  height: -moz-fit-content; /* Firefox用 */
  height: fit-content;
  line-height: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  transform: translateZ(0);
}
.header-top {
  height: -webkit-fit-content; /* Safari用 */
  height: -moz-fit-content; /* Firefox用 */
  height: fit-content;
  background: var(--white);
  /* box-shadow: 0px 1px 1px 0px rgb(47 47 47 / 10%),
    inset 2px -1px 2px -1px rgb(148 148 148 / 10%); */
  padding: 8rem 10rem;
  margin-left: 10rem;
  border-bottom-left-radius: 20rem;
}
#header .active > .header-top {
  box-shadow: none;
}
#header .header-top > .container {
  flex-direction: row;
  justify-content: flex-start;
  padding-left: 0;
  z-index: unset;
}
/* media query : tablet-mini */
@media screen and (min-width: 601px) {
  .header {
  position: fixed;
  }
  .header-top {
    padding: 2rem 10rem;
    margin-left: 10rem;
  }
}
/* media query : tablet & desktop */
@media screen and (min-width: 769px) {
  .header {
  position: fixed;
  }
  .header-top {
    padding: 2rem 10rem 5rem 10rem;
    margin-left: 10rem;
    border-bottom-left-radius: 25rem;
  }
}
/* media query : desktop */
@media screen and (min-width: 1025px) {
  .header {
  position: fixed;
  }
  .header-top {
    padding: 8rem 20rem 12rem 20rem;
    margin-left: 20rem;
    border-bottom-left-radius: 40rem;
  }
}/* media query : desktop-wide */
@media screen and (min-width: 1280px) {}

/* 2.2 logo
--------------------------------------------------------------*/
.header-logo .logo-symbol path:nth-child(-n + 3) {
  fill: var(--solba-yellow);
}
.header-logo .logo-symbol path:nth-child(4) {
  fill: var(--solba-green);
}
.header-logo .logo-text {
  fill: var(--black);
}
.header-logo {
  display: flex;
  justify-content: flex-start;
  z-index: 1;
}
.logo__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 0;
}
.header-logo .logo__link {
  width: 120rem;
  height: auto;
  gap: 7rem;
}
@media screen and (min-width: 601px) {
  .header-logo .logo__link {
    width: 90rem;
    height: auto;
    gap: 7rem;
  }
}
@media screen and (min-width: 769px) {
  .header-logo .logo__link {
    width: 160rem;
    height: auto;
    gap: 10rem;
  }

}
@media screen and (min-width: 1025px) {
  .header-logo .logo__link {
    width: 190rem;
    height: auto;
    gap: 13rem;
  }

}

/* 2.3 menu-btn ミートボールメニュー(ハンバーガーメニュー)
--------------------------------------------------------------*/
.header-nav-button {
  background: var(--black);
  position: absolute;
  z-index: 200;
  border-radius: 6rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-trigger {
  display: flex;
  position: relative;
  width: 38rem;
  height: 38rem;
  transition: var(--trans);
}
.menu-trigger.active {
  transform: rotate(45deg);
}
.menu-trigger:hover {
  opacity: 1;
}
.menu-trigger .meatball {
  display: block;
  position: absolute;
  width: 5rem;
  height: 5rem;
  background: var(--white);
  border-radius: 50%;
  transition: var(--trans);
}
/* 1番目：左 */
.menu-trigger .meatball:nth-child(1) {
  top: 50%;
  left: 7rem;
  transform: translateY(-50%);
}
/* 2番目：真ん中 */
.menu-trigger .meatball:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* 3番目：右 */
.menu-trigger .meatball:nth-child(3) {
  top: 50%;
  right: 7rem;
  transform: translateY(-50%);
}
/* 4番目：上（最初は非表示） */
.menu-trigger .meatball:nth-child(4) {
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
/* 5番目：下（最初は非表示） */
.menu-trigger .meatball:nth-child(5) {
  bottom: 7rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
/* 開いた時に4,5を表示 */
.menu-trigger.active .meatball:nth-child(4),
.menu-trigger.active .meatball:nth-child(5) {
  opacity: 1;
}
@media screen and (min-width: 601px) {
  .menu-trigger {
    width: 28rem;
    height: 28rem;
  }
  .menu-trigger .meatball {
    width: 4rem;
    height: 4rem;
  }
  .menu-trigger .meatball:nth-child(1) {
    left: 5rem;
  }
  .menu-trigger .meatball:nth-child(3) {
    right: 5rem;
  }
  .menu-trigger .meatball:nth-child(4) {
    top: 5rem;
  }
  .menu-trigger .meatball:nth-child(5) {
    bottom: 5rem;
  }
}
@media screen and (min-width: 769px) {
  .header-nav-button {
    border-radius: 10rem;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .menu-trigger {
    width: 50rem;
    height: 50rem;
  }
  .menu-trigger .meatball {
    width: 6rem;
    height: 6rem;
  }
  .menu-trigger .meatball:nth-child(1) {
    left: 9rem;
  }
  .menu-trigger .meatball:nth-child(3) {
    right: 9rem;
  }
  .menu-trigger .meatball:nth-child(4) {
    top: 9rem;
  }
  .menu-trigger .meatball:nth-child(5) {
    bottom: 9rem;
  }
}
@media screen and (min-width: 1025px) {
  .menu-trigger {
    width: 60rem;
    height: 60rem;
  }
  .menu-trigger .meatball {
    width: 7rem;
    height: 7rem;
  }
  .menu-trigger .meatball:nth-child(1) {
    left: 11rem;
  }
  .menu-trigger .meatball:nth-child(3) {
    right: 11rem;
  }
  .menu-trigger .meatball:nth-child(4) {
    top: 11rem;
  }
  .menu-trigger .meatball:nth-child(5) {
    bottom: 11rem;
  }
}

/* 2.4 Layout
--------------------------------------------------------------*/
.header-nav {
  display: none;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}
/* オーバーレイ（背景） */
.header-nav .nav-overlay {
  width: 100%;
  height: 100%;
  padding-top: 80rem;
  background: rgba(255, 255, 255, 0);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.header-nav .nav-content {
  background: var(--white);
  border-bottom-left-radius: 40px;
  box-shadow: 0px 1px 1px 0px rgb(47 47 47 / 10%),
    inset 2px -1px 2px -1px rgb(148 148 148 / 10%);
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: calc(100% - 10rem);
  height: 100vh;
  padding-left: 20rem;
  padding-right: 20rem;
}
#header .nav-content > .container {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: calc(100vh - 80rem);
  padding-left: 0;
  padding-right: 0;
  padding-top: 80rem;
}
@media screen and (min-width: 769px) {
  #header .nav-content > .container {
    min-height: auto;
  }
  .header-nav .nav-content {
    width: calc(100% - 20rem);
    height: auto; /* ✅ コンテンツに応じて */
    min-height: 50vh; /* ✅ 最低60% */
    max-height: 90vh; /* ✅ 最大90%（伸びすぎ防止） */
    padding-left: 50rem;
    padding-right: 50rem;
  }

}


/* gnav-menu ----------------*/
.gnav-menu {
  width: 100%;
}
.gnav-menu a:link,
.gnav-menu a:visited {
  color: var(--text-black);
}
.gnav-menu .menu-block1,
.gnav-menu .menu-block2,
.gnav-menu .menu-block3 {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 10rem;
}
.gnav-menu .menu-block1 h3 + div > ul,
.gnav-menu .menu-block3 h3 + div > ul,
.gnav-menu .menu-block2 h3 + .menu-block-child {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 769px) {
  .gnav-menu {
    width: 100%;
    padding-left: 20rem;
    padding-right: 20rem;
    padding-top: 2vh;
    padding-bottom: 2vh;
  }
  .gnav-menu .menu-block1,
  .gnav-menu .menu-block2,
  .gnav-menu .menu-block3 {
    flex-direction: row;
    align-items: center;
    margin-bottom: 20rem;
  }
  .gnav-menu .menu-block2 {
    align-items: flex-start;
  }
  .gnav-menu .menu-block1 h3 + div > ul,
  .gnav-menu .menu-block3 h3 + div > ul,
  .gnav-menu .menu-block2 h3 + .menu-block-child {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px) {
  .gnav-menu {
    padding-left: 70rem;
    padding-right: 70rem;
  }
}

/* 2.5 gnav-menu
--------------------------------------------------------------*/
#menu-wrap1,
#menu-wrap2 .sub-menu,
#menu-wrap3 .sub-menu,
#menu-wrap5 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0 15rem;
}
.gnav-menu #menu-wrap2.menu li.solution-head,
.gnav-menu #menu-wrap3.menu li.solution-head {
  margin-bottom: 12rem;
}
#menu-wrap2 > li > a,
#menu-wrap3 > li > a,
#menu-wrap4 > li > a {
  display: block;
  margin-bottom: 15rem;
}
.gnav-menu .nav-cate-head {
  margin-bottom: 10rem;
}
.gnav-menu .menu > li {
  margin-bottom: 10rem;
}
.gnav-menu .sub-menu > li {
  margin-bottom: 10rem;
}
.gnav-menu .menu-block3 {
  margin-bottom: 20rem;
}
.gnav-menu .menu-block2 {
  margin-bottom: 0;
}
/* フォントサイズ */
.gnav-menu #menu-wrap4.menu li.solution-head {
  margin-bottom: 22rem;
}
.gnav-menu .nav-cate-head {
  white-space: nowrap;
  font-size: 17rem;
}
.gnav-menu .menu li.solution-head {
  font-size: 15rem;
}
.gnav-menu .menu > li {
  font-size: 14rem;
}
.gnav-menu .sub-menu > li {
  font-size: 14rem;
}
@media screen and (min-width: 769px) {
  .header-nav {
    width: 100%;
  }
  #menu-wrap2 .sub-menu,
  #menu-wrap3 .sub-menu {
    flex-direction: column;
  }
  .gnav-menu .menu-block1,
  .gnav-menu .menu-block3 {
    margin-bottom: 10rem;
  }
  .gnav-menu .menu-block1,
  .gnav-menu .menu-block2,
  .gnav-menu .menu-block3 {
    gap: 100rem;
  }
  .gnav-menu .menu-block2 h3 + .menu-block-child {
    gap: 60rem;
  }
  #menu-wrap1,
  #menu-wrap5 {
    gap: 10rem 40rem;
  }
  .gnav-menu .menu-block2 .menu {
    gap: 20rem;
  }
  .gnav-menu .menu-block1 {
    margin-bottom: 2vh;
  }
  .gnav-menu .menu-block2 {
    margin-bottom: 1vh;
  }
  .gnav-menu .menu > li > a {
    display: inline-flex;
    margin-bottom: 10rem;
  }
  .gnav-menu .menu-block1 .menu > li > a,
  .gnav-menu .menu-block3 .menu > li > a {
    margin-bottom: 0;
  }
  .gnav-menu .menu li.solution-head a {
    margin-top: 2rem;
  }
  .gnav-menu .sub-menu > li {
    margin-bottom: 15rem;
  }
  /* フォントサイズ */
  .gnav-menu .nav-cate-head {
    font-size: 16rem;
  }
  .gnav-menu .menu li.solution-head {
    font-size: 13rem;
  }
  .gnav-menu .menu > li {
    font-size: 12rem;
  }
  .gnav-menu .sub-menu > li {
    font-size: 12rem;
  }
}
@media screen and (min-width: 1025px) {
  .gnav-menu .menu-block1,
  .gnav-menu .menu-block2,
  .gnav-menu .menu-block3 {
    gap: 130rem;
  }
  .gnav-menu .menu-block2 h3 + .menu-block-child {
    gap: 90rem;
  }
  /* フォントサイズ */
  .gnav-menu .nav-cate-head {
    font-size: 22rem;
  }
  .gnav-menu .menu li.solution-head {
    font-size: 18rem;
  }
  .gnav-menu .menu > li {
    font-size: 16rem;
  }
  .gnav-menu .sub-menu > li {
    font-size: 16rem;
  }
}

/* 2.6 header-cv
--------------------------------------------------------------*/
.header-cv {
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 5rem;
  padding-top: 10rem;
  padding-bottom: 6vh;
  color: var(--black);
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  border-top: 1px solid var(--black);
}
.header-cv.flex-box > .flex-left {
  text-align: center;
}
.header-cv.flex-box > .flex-left .h2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header-cv.flex-box > .flex-left .h2 strong {
  display: block;
  color: var(--black);
  font-weight: 600;
  line-height: 1;
}
.header-cv.flex-box > .flex-left .h2 span {
  margin-top: 1em;
  padding: 0;
  font-weight: 400;
  line-height: 1;
}
.header-cv__link .button-round {
  margin-left: 0;
  margin-right: auto;
  position: relative;
}
.header-cv__link a {
  display: flex;
  background: var(--solba-yellow);
}
.header-cv__link .button::before {
  border-top: 1rem solid var(--black);
  border-right: 1rem solid var(--black);
}
@media screen and (min-width: 769px) {
  .header-cv {
    flex-direction: row;
    gap: 10rem;
    padding-top: 3vh;
    padding-bottom: 5vh;
    padding-left: 20rem;
    padding-right: 20rem;
  }
  .header-cv.flex-box > .flex-left .h2 {
    flex-direction: row;
    width: 100%;
  }
}

@media screen and (min-width: 1200px) {
  .header-cv {
    gap: 30rem;
    padding-left: 70rem;
    padding-right: 70rem;
  }
}


/* フォントサイズ */
.header-cv.flex-box > .flex-left .h2 strong {
  font-size: 44rem;
}
.header-cv.flex-box > .flex-left .h2 span {
  font-size: 16rem;
}
/* ボタンサイズ */
.header-cv__link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20rem;
    width: 100%;
    margin-top: 0;
    font-size: 25rem;
}
.header-cv__link .button-round {
  width: 280rem;
  height: 45rem;
}
.header-cv__link .button {
  max-width: 280rem;
  max-height: 54rem;
}

@media screen and (min-width: 769px) {
  /* フォントサイズ */
  .header-cv.flex-box > .flex-left .h2 strong {
    font-size: 30rem;
  }
  .header-cv.flex-box > .flex-left .h2 span {
    white-space: nowrap;
    padding: 0 10rem 0 20rem;
    font-size: 12rem;
  }
  /* ボタンサイズ */
  .header-cv__link {
    display: grid;
    gap: 20rem;
    margin-top: 20rem;;
    font-size: 15rem;
    grid-template-columns: repeat(2, 200rem);
  }
  .header-cv__link .button-round {
    width: 200rem;
    height: 35rem;
    font-size: 14rem;
  }
  .header-cv__link .button-round.arrow::before {
    right: 12rem;
    width: 10rem;
    height: 10rem;
    border-top: 1.5rem solid var(--black);
    border-right: 1.5rem solid var(--black);
  }
  .header-cv__link .button {
    max-width: 280rem;
    max-height: 54rem;
  }
}
@media screen and (min-width: 1100px) {
  /* フォントサイズ */
  .header-cv.flex-box > .flex-left .h2 strong {
    font-size: 44rem;
  }
  .header-cv.flex-box > .flex-left .h2 span {
    font-size: 16rem;
  }
  /* ボタンサイズ */
  .header-cv__link {
    grid-template-columns: repeat(2, 280rem);
  }
  .header-cv__link .button-round {
    width: 280rem;
    height: 45rem;
    font-size: 18rem;
  }
  .header-cv__link .button-round.arrow::before {
    right: 25rem;
    width: 13rem;
    height: 13rem;
    border-top: 2rem solid var(--black);
    border-right: 2rem solid var(--black);
  }
  .header-cv__link .button {
    max-width: 280rem;
    max-height: 54rem;
  }
}



/*==============================================================
3.0 Footer
--------------------------------------------------------------*/
/* 3.1 Layout レイアウト
--------------------------------------------------------------*/

#footer {
  position: relative;
  z-index: 1;
  line-height: 1;
}
#footer .footer-wrap {
  flex-direction: column-reverse;
  align-items: stretch;
  border-top: 2px solid var(--black);
}
#footer .footer-wrap .flex-left {
  display: flex;
  flex: none;
  width: 100%;
  flex-direction: column;
}
#footer .footer-nav > .container {
  padding: 25rem 30rem 20rem;
}
#footer .footer-wrap > .flex-left {

}
#footer .footer-wrap > .flex-left > .container {
  flex-direction: column;
}
#footer .footer-wrap > .flex-left > .container > #footer .footer-menu {
  display: flex;
  flex-direction: column;
}
#footer .footer-wrap > .flex-right {
  display: flex;
  flex: none;
  flex-direction: column;
  min-width: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#footer .footer-cv.flex-right > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 25rem;
}
#footer .footer-cv.flex-right > .container .link-item.text-link {
  margin-right: 30rem;
}
@media screen and (min-width: 769px) {
#footer .footer-cv.flex-right > .container {
  padding: 30rem 0;
}
}
/* footer-menu -------------------------
.footer-block1 .menu-left・・・企業情報
.footer-block1 .menu-right・・・事業内容
.footer-block2・・・採用情報
.footer-block3・・・SNS
-------------------------------------- */
#footer .footer-menu,
#footer .footer-menu .footer-block1,
#footer .footer-menu .footer-block1 .menu-left,
#footer .footer-menu .footer-block1 .menu-right,
#footer .footer-menu .footer-block1 .menu-left .solution-head,
#footer .footer-menu .footer-block2,
#footer .footer-menu .footer-block3,
#footer .footer-menu .menu-item {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}
#footer .footer-menu .footer-block1 .menu-left,
#footer .footer-menu .footer-block1 .menu-right,
#footer .footer-menu .footer-block2.block-recruit {
  margin-bottom: 10rem;
}
#footer .footer-menu .footer-block1 .menu-left .menu,
#footer .footer-menu .footer-block1 .menu-right .menu,
#footer .footer-menu .footer-block2 .menu,
#footer .footer-menu .footer-block3 .menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 8rem;
  column-gap: 20rem;
}
#footer .footer-menu .footer-block1 .menu-block-child {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}
#footer .footer-menu .footer-block1 .menu-right .menu-block-grandchild {
  display: flex;
  flex-direction: column;
  row-gap: 8rem;
}
#footer .footer-menu .footer-block1 .solution-head .sub-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 8rem;
  column-gap: 20rem;
}
#footer .footer-menu .footer-block2 .nav-cate-head {
  margin-right: 20rem;
  white-space: nowrap;
}
#footer .footer-menu .menu-item a {
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
#footer .footer-wrap {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#footer .footer-wrap > .flex-left {
  flex: 0 1 920rem;
  min-width: 0;
}
#footer .footer-wrap > .flex-left > .container {
  flex-direction: column;
  padding: 0;
}
#footer .footer-wrap > .flex-left > .container > .footer-menu {
  flex-direction: column;
  padding: 40rem 40rem 20rem;
}
#footer .footer-wrap > .flex-right {
  flex: 0 1 530rem;
  min-width: 0;
}

#footer .footer-wrap > .flex-right > .container {
    padding: 40rem 30rem 20rem;
}

/* 企業情報 */
#footer .footer-menu .footer-block1 .menu {
  flex-direction: column;
}
/* 事業内容 */
#footer .footer-menu .footer-block1 .nav-cate-head + .sub-menu {
  flex-direction: column;
}
#footer .footer-menu .footer-block2 {
  flex-direction: column;
}
#footer .footer-menu .footer-block3 {
  flex-direction: row;
  margin-top: 20rem;
  padding-top: 20rem;
  border-top: 1px solid var(--black);
}
#footer .footer-menu .footer-block2 .menu,
#footer .footer-menu .footer-block3 .menu {
  row-gap: 8rem;
  column-gap: 20rem;
  flex-direction: row;
  flex-wrap: wrap;
}
}
@media screen and (min-width: 1200px) {
#footer .footer-wrap {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: nowrap;
}
#footer .footer-wrap > .flex-left {
  flex: 0 1 920rem;
  min-width: 0;
}
#footer .footer-wrap > .flex-left > .container {
  flex-direction: column;
  padding: 0;
}
#footer .footer-wrap > .flex-left > .container > .footer-menu {
  flex-direction: column;
  padding: 40rem 0 20rem 40rem;
}
#footer .footer-wrap > .flex-right {
  flex: 0 1 460rem;
  min-width: 0;
}

#footer .footer-wrap > .flex-right > .container {
    padding: 40rem 40rem 20rem;
}
/* footer-menu */
#footer .footer-menu .footer-block1 {
  width: fit-content;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20rem;
  column-gap: 30rem;
}
#footer .footer-menu .footer-block1 .menu-block-child {
  /* 事業内容のブロック */
  flex-direction: row;
  column-gap: 30rem; /* メニューの文字数によって調節 */
}

#footer .footer-menu .footer-block1 .menu-right .menu-block-grandchild {
  row-gap: 10rem;
  display: flex;
  flex-direction: column;
}
#footer .footer-menu .footer-block1 .solution-head .sub-menu {
  flex-direction: column;
  row-gap: 10rem;
}

#footer .footer-menu .footer-block1 .menu-left,
#footer .footer-menu .footer-block1 .menu-right {
  flex-direction: column;
}
#footer .footer-menu .footer-block1 .menu-left > .nav-cate-head,
#footer .footer-menu .footer-block1 .menu-right > .nav-cate-head {
  margin-bottom: 8rem;
}
#footer .footer-menu .footer-block1 .menu-left .menu,
#footer .footer-menu .footer-block1 .menu-left .solution-head {
  row-gap: 10rem;
  flex-direction: column;
}

/* 企業情報 */
#footer .footer-menu .footer-block1 .menu {
  flex-direction: column;
}
/* 事業内容 */
#footer .footer-menu .footer-block1 .nav-cate-head + .sub-menu {
  flex-direction: column;
}
#footer .footer-menu .footer-block2 .menu,
#footer .footer-menu .footer-block3 .menu {
  row-gap: 8rem;
  column-gap: 20rem;
  flex-direction: row;
  flex-wrap: wrap;
}
#footer .footer-menu .footer-block2 {
  flex-direction: row;
}
#footer .footer-menu .footer-block3 {
  flex-direction: row;
  margin-top: 10rem;
  padding-top: 20rem;
  border-top: 1px solid var(--black);
}
}


/* 3.2 Font　テキストサイズとマージン
--------------------------------------------------------------*/
/* 大見出し */
#footer .footer-menu .nav-cate-head {
  width: 100%;
  white-space: nowrap;
  color: var(--text-black);
  font-size: 14rem;
}
/* 小見出し */
#footer .footer-menu .menu-item.solution-head {
  width: 100%;
  column-gap: 15rem;
  row-gap: 8rem;
  color: var(--black);
}
/* テキスト */
#footer .footer-menu .menu-item {
  width: auto;
  font-size: 13rem;
  color: var(--text-black);
}
@media screen and (min-width: 769px) {
/* 大見出し：16px相当 */
#footer .footer-menu .nav-cate-head {
  font-size: 18rem;
  font-weight: 600;
}
/* 採用情報 */
#footer .footer-menu .footer-block2 .nav-cate-head {
  width: 80rem;
  margin-right: 20rem;
}
/* SNS */
#footer .footer-menu .footer-block3 .nav-cate-head {
  width: 180rem;
  margin-right: 20rem;
  font-size:  20rem;
}
/* 小見出し */
#footer .footer-menu .menu-item.solution-head {
  row-gap: 8rem;
}
/* テキスト */
#footer .footer-menu .menu-item {
  font-size: 16rem;
}

/* ===== Edge専用 ===== */
/* 大見出し：16px（scaleなし） */
.is-edge #footer .footer-menu .nav-cate-head {
  font-size: 18px;
  font-size: clamp(13px, calc(1.2vw + 10px), 18px);
}
/* 小見出し：14px（scale使用） */
.is-edge #footer .footer-menu .menu-item.solution-head {
  transform-origin: left top;
}
/* テキスト：12px（scale使用） */
.is-edge #footer .footer-menu .menu-item {
  font-size: 16px;
  font-size: clamp(11px, calc(1.1vw + 8px), 16px);
  transform-origin: left top;
}
}
@media screen and (min-width: 1200px) {
/* 大見出し */
#footer .footer-menu .nav-cate-head {
  font-size: 18rem;
  font-weight: 600;
}
/* 小見出し */
#footer .footer-menu .menu-item.solution-head {
  row-gap: 8rem;
  font-size: 16rem;
}
/* 採用情報 */
#footer .footer-menu .footer-block2 .nav-cate-head {
  width: 80px;
  margin-right: 20rem;
}
/* SNS */
#footer .footer-menu .footer-block3 .nav-cate-head {
  width:  160px;
  margin-right: 20rem;
  font-size:  20rem;
}
/* テキスト */
#footer .footer-menu .menu-item {
  font-size: 16rem;
}
/* ===== Edge専用 ===== */
.is-edge #footer .footer-menu .footer-block1,
.is-edge #footer .footer-menu .footer-block1 .menu-block-child {
  flex-direction: column;
  margin-bottom: 0;
}
.is-edge #footer .footer-menu .footer-block1 .menu-left > .nav-cate-head,
.is-edge #footer .footer-menu .footer-block1 .menu-right > .nav-cate-head {
  margin-bottom: 0;
}
.is-edge #footer .footer-menu .footer-block1 .menu-left .menu,
.is-edge #footer .footer-menu .footer-block1 .menu-left .solution-head,
.is-edge #footer .footer-menu .footer-block1 .solution-head .sub-menu {
  flex-direction: row;
}
}

@media screen and (min-width: 1310px) {
/* ===== Edge専用 ===== */
.is-edge #footer .footer-menu .footer-block1,
.is-edge #footer .footer-menu .footer-block1 .menu-block-child,
.is-edge #footer .footer-menu .footer-block2 {
  flex-direction: row;
}
.is-edge #footer .footer-menu .footer-block1 .menu-left .menu,
.is-edge #footer .footer-menu .footer-block1 .menu-left .solution-head,
.is-edge #footer .footer-menu .footer-block1 .solution-head .sub-menu {
  flex-direction: column;
}
/* 大見出し：16px（scaleなし） */
.is-edge #footer .footer-menu .nav-cate-head {
  font-size: 18px;
  font-size: clamp(13px, calc(1.2vw + 10px), 18px);
}
/* 小見出し：14px（scale使用） */
.is-edge #footer .footer-menu .menu-item.solution-head {
  display: flex;
}
/* テキスト：12px（scale使用） */
.is-edge #footer .footer-menu .menu-item {
  font-size: 16px;
  font-size: clamp(11px, calc(1.1vw + 8px), 16px);
}
}

/* 3.3 footer-menu
--------------------------------------------------------------*/
/* 企業情報と事業内容の並べ方 */

/* 事業内容の並べ方 */

/* エネルギーソリューション・ビジネスソリューション・設計ソリューション 並べ方 */

/* タイトルとコンテンツ 縦並び */


/* 各ページ並べ方
---------------------------------*/
/* 企業情報の各ページ 並べ方 */

/* 建設ソリューションと住環境ソリューションの各ページ 並べ方 */

/* 採用情報の各ページ並べ方 */

@media screen and (min-width: 769px) {

}
@media screen and (min-width: 1025px) {

}

/* 3.4 footer-terms
--------------------------------------------------------------*/
.footer-terms {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-terms #menu-terms-menu {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 30rem;
  margin-bottom: 10rem;
}
.footer-copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.footer-copyright .img-box:before {
  padding-top: 30%;
}
.footer-copyright p {
  font-size: 13rem;
  font-weight: 300;
  letter-spacing: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
.footer-copyright {
  padding-right: 50rem;
  padding-bottom: 20rem;
}
}

/* 3.5 logo
--------------------------------------------------------------*/
.footer-terms .svg-logo {
    width: 145rem;
    height: auto;
    margin-top:30rem;
    margin-bottom: 10rem;
}
@media screen and (min-width: 769px) {
  .footer-terms .svg-logo {
    /* width: 200rem; */
    width: 150rem;
  }
}
@media screen and (min-width: 1025px) {
  .footer-terms .svg-logo {
    /* width: 270rem; */
    width: 200rem;
    margin-top: 20rem;
  }
}

#footer .hide {
  display: none !important;
}

/* 3.6 cv
--------------------------------------------------------------*/
.footer.scrollify {
  height: auto !important;
}
.footer-cv {
  background: var(--black);
  color: var(--white);
}
.footer-cv .svg-logo__symbol {
  width: 160rem;
  height: auto;
  opacity: 0.2;
  position: absolute;
  right: -14rem;
  top: 66px;
}
.footer-cv .h2 {
  position: relative;
  margin-bottom: 20rem;
}
.footer-cv .h2 strong {
  display: block;
  font-weight: 600;
  line-height: 1;
  font-size: 60rem;
}
.footer-cv .h2 strong::selection {
  background: transparent;
}
.footer-cv .h2 span {
  font-size: 20rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 20rem;
}
.footer-cv__link {
  display: grid;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(1, 300rem);
  gap: 20rem;
  font-size: 25rem;
}
.footer-cv__link .button-round {
  width: 100%;
}

@media screen and (min-width: 769px) {
.footer-cv .svg-logo__symbol {
  width: 185rem;
  right: -20rem;
  top: -80rem;
}
#footer .footer-cv .container {
    width: 100%;
}
.footer-cv .h2 {
  margin-bottom: 40rem;
}
.footer-cv .h2 strong {
  text-align: center;
  font-size: 60rem;
}
.footer-cv .h2 span {
  font-size: 16rem;
  font-weight: 400;
  line-height: 1;
  margin-top: 20rem;
}
.footer-cv__link {
  justify-content: flex-start;
}
.footer-cv__link .button-round {
  font-size: 20rem;
}
}
@media screen and (min-width: 1025px) {
.footer-cv__link {
  grid-template-columns: repeat(1, 380rem);
  gap: 20rem;
}
.footer-cv__link .button-round {
  font-size: 25rem;
}
.footer-cv .svg-logo__symbol {
  width: 185rem;
  right: 50rem;
  top: -70rem;
}
.footer-cv .h2 strong {
  text-align: left;
  font-size: 80rem;
}
}

/* 3.7 breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  position: relative;
  z-index: 0;
}
.breadcrumbs .container {
  padding: 5rem 10rem;
}
@media screen and (min-width: 769px) {
.breadcrumbs .container {
  padding: 10rem 55rem;
}
}

/*==============================================================
4.0 Common
--------------------------------------------------------------*/
/* 4.1 text
--------------------------------------------------------------*/
.content-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20rem;
  font-weight: bold;
  line-height: 1.2;
  font-size: 24rem;
}
.content-title.text-center {
  justify-content: center;
}
.content-title.text-left {
  justify-content: flex-start;
}
.content-title.lines {
  line-height: 1.3;
}
.content-title .big {
  font-size: larger;
}
.content-text {
  padding-bottom: 35rem;
  font-size: 16rem;
  line-height: 1.7;
}
.content-text.bold {
  line-height: 1.8;
}
.content-subtitle {
  font-size: 28rem;
}
.title-block {
  display: inline-flex;
  margin-bottom: 35rem;
  padding: 10rem 25rem 8rem;
  border-radius: 10rem;
}
.title,.text {
  position: relative;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.content-text.sp-pb20 {
  padding-bottom: 20rem;
}
.note {
  text-indent: -1.3em;
  margin-left: 1em;
}
@media screen and (min-width: 769px) {
  .content-title {
    margin-bottom: 50rem;
    font-size: 38rem;
  }
  .content-text.sp-pb20 {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  .content-title {
    font-size: 40rem;
  }
}
/* 4.2 img
--------------------------------------------------------------*/
figure {
  margin-bottom: 0;
  line-height: 1;
  font-size: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0px;
  padding: 0px;
  border: 0;
}
a img {
  border-style: none;
  border: 0;
}
.img-box {
  display: block;
  margin: 0;
}
.img-box:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.img-box img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover !important;
  object-position: center;
}
.img-box.img img {
  position: relative;
  top: unset;
  left: unset;
  width: 100%;
  height: 100%;
  transform: unset;
  object-fit: unset;
}
.img-box.img:before {
  display: none;
}
.img-box.img.bg-img {
  position: absolute;
  top: 0;
}
.img-box.full {
  height: 100%;
}
svg {
  width: 100%;
  height: 100%;
}
.img-svg {
  display: inline-block;
  margin: 0;
  font-size: 0;
}

.deco-svg {
  display: inline-block;
  margin: 0;
  font-size: 0;
  position: absolute;
}
.deco-circle {
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  position: absolute;
}

/* 4.3 button
--------------------------------------------------------------*/
.button-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 10rem;
  width: 100%;
}
.button-round {
  position: relative;
  text-align: center;
  border-radius: 75px;
  overflow: hidden;
  pointer-events: painted;
  width: 70%;
  height: 38rem;
  font-size: 16rem;
}
@media screen and (min-width: 769px) {
  .button-wrap {
    flex-direction: row;
    justify-content: space-around;
    gap: 20rem;
  }
  .button-round {
    width: 380rem;
    height: 52rem;
    font-size: 20rem;
  }
}
@media screen and (min-width: 1025px) {
  .button-round {
    width: 400rem;
    height: 62rem;
    font-size: 25rem;
  }
}

/* button-rectangle
-------------------------------*/
.button-rectangle {
  position: relative;
  height: 50rem;
  font-size: 20rem;
  overflow: hidden;
}
.button-rectangle .button {
  padding-left: 20rem;
  padding-right: 20rem;
}
@media screen and (min-width: 769px) {
  .button-rectangle {
    height: 52rem;
    font-size: 25rem;
    overflow: hidden;
  }
  .button-rectangle .button {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}
@media screen and (min-width: 1025px) {
  .button-rectangle {
    height: 62rem;
    font-size: 30rem;
    overflow: hidden;
  }
  .button-rectangle .button {
    padding-left: 20rem;
    padding-right: 20rem;
  }
}

/* arrow、triangle
-------------------------------*/
.arrow::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20rem;
  z-index: 1;
  width: 10rem;
  height: 10rem;
  transform: rotate(45deg);
  border-top: 1.8rem solid var(--black);
  border-right: 1.8rem solid var(--black);
  pointer-events: none;
}

.arrow2::before {
  content: "→";
  color: var(--black);
  font-size: 40rem;
  margin: auto;
  position: absolute;
  right: 10rem;
  z-index: 1;
  pointer-events: none;
}
.arrow2::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 1rem;
  z-index: 0;
  width: 60rem;
  height: 60rem;
  background-color: var(--white);
  border: 1px solid var(--black);
  pointer-events: none;
}
.triangle::before {
  content: "";
  margin: auto;
  position: absolute;
  top: 50%;
  bottom: 50%;
  z-index: 1;
  background: var(--black);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  pointer-events: none;
  width: 12rem;
  height: 16rem;
  right: 30rem;
}
.triangle::after {
  content: "";
  margin: auto;
  pointer-events: none;
  position: absolute;
  top: 50%;
  bottom: 50%;
  right: 20rem;
  z-index: 0;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--white);
  width: 35rem;
  height: auto;
}
.back.triangle::before {
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  right: unset;
  left: 31rem;
}
.back.triangle::after {
  right: unset;
  left: 20rem;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-top: 0.2em;
  color: inherit;
  line-height: 1.2;
  overflow: hidden;
  z-index: 0;
}
.button.text-left {
  justify-content: flex-start;
}
.button.text-right {
  justify-content: flex-end;
}
.button.text-center {
  justify-content: center;
}
.button:visited {
  color: inherit;
}
.only-icon.triangle {
  position: relative;
  width: 40rem;
  height: 40rem;
}
.only-icon.triangle::before {
  right: 36%;
}
.only-icon.triangle::after {
  left: 0;
}
/* media query : mobile */
@media screen and (min-width: 769px) {
  .arrow::before {
    right: 25rem;
    width: 13rem;
    height: 13rem;
    border-top: 2rem solid var(--black);
    border-right: 2rem solid var(--black);
  }
  .back.triangle::before {
    left: 31rem;
  }

  .only-icon.triangle::before {
    right: 30%;
  }
}
@media screen and (min-width: 1025px) {
.triangle::before {
    right: 31rem;
}
  .triangle::after {
    width: 40rem;
    height: 40rem;
  }
}

/* 4.4 fade
--------------------------------------------------------------*/
.fadeUp {
  opacity: 0;
  transform: translate(0, 70rem);
  transition: transform 800ms, opacity 1000ms;
}

.fadeLeft {
  opacity: 0;
  transform: translate(-70rem, 0);
  transition: transform 800ms, opacity 1000ms;
}

.fadeRight {
  opacity: 0;
  transform: translate(70rem, 0);
  transition: transform 800ms, opacity 1000ms;
}

.fadeUp.appear {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeLeft.appear {
  opacity: 1;
  transform: translate(0, 0);
}

.fadeRight.appear {
  opacity: 1;
  transform: translate(0, 0);
}



/* 4.5 other
--------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .cursor {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 0px;
    height: 0px;
    border-radius: 50%;
    background: #f1f1f1;
    z-index: 1000;
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
    transition-timing-function: ease-out;
    transform: translate(0, 0);
    pointer-events: none;
    mix-blend-mode: difference;
  }
  /*aタグにホバーした時に見た目変化*/
  .cursor.cursor--hover {
    top: -25px;
    left: -25px;
    width: 50px;
    height: 50px;
  }
}
.card-box {
  border-radius: 20rem;
  overflow: hidden;
}
.box-shd {
  box-shadow: 10rem 10rem 30rem rgb(0 0 0/10%);
}
.flex-column {
  flex-direction: column;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}
.block-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.block-left {
  display: block;
  margin-left: 0;
  margin-right: auto;
}

/* リストスタイルのドットを復活 */
ul.dot {
  list-style: revert;
}


/*  display none 表示非表示・改行
--------------------------------------------------------------*/
/* SPでのみで表示 */

@media screen and (max-width: 768px) {
  .sp {
    display: inline-block;
    visibility: visible;
  }
}
/* PCでのみ表示 */
.pc {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
    visibility: hidden;
  }
  .pc {
    display: inline-block;
    visibility: visible;
  }
}
/* タブレットでのみ表示 769px〜1024px */
.tablet {
  display: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
/* 1024px以下で表示 */
.under-w1024 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .under-w1024 {
    display: block;
  }
}
/* 1025px以上で表示 */
.over-w1024 {
  display: none;
}
@media screen and (min-width: 1025px) {
  .over-w1024 {
    display: block;
  }
}
/* 3.9 padding-0
--------------------------------------------------------------*/
.container.paddingL-0 {
  padding-left: 0;
}
.container.paddingR-0 {
  padding-right: 0;
}
.container.paddingLR-0 {
  padding-left: 0;
  padding-right: 0;
}
