@charset "UTF-8";


/* 全体の設定 */
@media all and (min-width: 1600px) {
  .container {
    max-width: 1464px;
  }
}

main {
  width: 100%;
  margin-top: 50px;
}

p {
  margin-bottom: 0;
}

.br-xxl-none {
  display: block;
}

@media all and (min-width: 1400px) {
  .br-xxl-none {
    display: none;
  }
}

/* // 色 */
:root {
  --main-green: #00C08A;
  --main-orange: #FDAB60;
  --main-orange2: #FD9536;
  /*FVのnewの色*/
  --main-blue: #11ACB2;
  --bg-lightgreen: #E4F2F1;
  --gray1: #777777;
  --gray2: #BEBEBE;
  --grayborder: #E6E6E6;
}

/* あしらい  */
.under-dash {
  border-bottom: 2px dashed var(--main-orange);
}

.under-dash-pattern-1 {
  background-position: bottom left 0px;
  background-repeat: repeat-x;
  background-size: calc(1em / 2) 3px;
  background-image: url(../images/under-dash.svg);
  padding-bottom: 12px;
}

.under-dash-pattern-2 {
  background-position: bottom left 0px;
  background-repeat: repeat-x;
  background-size: calc(1em / 3) 2px;
  background-image: url(../images/under-dash.svg);
  /* padding-bottom: 12px; */
}

.under-dash-pattern-3 {
  background-position: bottom left 0px;
  background-repeat: repeat-x;
  background-size: calc(1em / 3) 1.5px;
  background-image: url(../images/under-dash.svg);
}

.radial-dot {
  background-position: top left 0px;
  background-repeat: repeat-x;
  background-size: 1em 4px;
  background-image: url(../images/dot.svg);
  /* background-image: radial-gradient(3px 3px at center center, var(--main-orange), var(--main-orange) 100%, transparent, transparent); */
  padding-top: 0.35em;
}

@media all and (min-width: 768px) {
  .radial-dot {
    background-size: 1em 6px;
  }
}

.dot-text {
  position: relative;
}

.dot-text::before {
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  padding-top: 10px;
  background: radial-gradient(circle 10px, orange 50%, transparent 50%);
  background: -moz-radial-gradient(circle 10px, orange 50%, transparent 50%);
}

/* 注釈 */
.annotation-txt {
  color: #777;
  font-size: 0.875rem;
}

/* 矢印  */
.lr-arrow {
  position: relative;
}

.lr-arrow::after,
.lr-arrow::before {
  content: "";
  width: 12px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  background: #FFF;
  position: absolute;
  right: 10px;
}

.lr-arrow::before {
  top: calc(50% - 4px);
  /* 数値は微調整してください */
  transform: rotate(45deg);
  /* 45度回転させる */
}

.lr-arrow::after {
  bottom: calc(50% - 6px);
  /* 数値は微調整してください */
  transform: rotate(-45deg);
  /* -45度回転させる */
}

.ud-arrow {
  position: relative;
}

.ud-arrow::after,
.ud-arrow::before {
  content: "";
  width: 12px;
  height: 3px;
  display: inline-block;
  border-radius: 4px;
  background: #FFF;
  position: absolute;
  right: 10px;
}

.ud-arrow::before {
  top: calc(50% - 1px);
  right: 13px;
  /* 数値は微調整してください */
  transform: rotate(-45deg);
  /* 45度回転させる */
}

.ud-arrow::after {
  bottom: calc(50% - 2px);
  right: 20px;
  /* 数値は微調整してください */
  transform: rotate(45deg);
  /* -45度回転させる */
}

/* spとpc  */
.pc {
  display: none;
}

.sp {
  display: block;
}

@media all and (min-width: 768px) {
  .pc {
    display: block;
  }

  .sp

  /* .fv-newbarner.sp  */
    {
    display: none;
  }
}

/* ボタン  */
.button {
  display: block;
  color: #FFF;
  text-align: center;
  width: 290px;
  height: 55px;
  border-radius: 50px;
  font-weight: 600;
  margin-right: auto;
  margin-left: auto;
}

a.button:hover,
a.button:active {
  box-shadow: none;
  transform: translateY(4px);
  opacity: 1;
  transition: 0.2s;
}

.button-orange {
  background-color: var(--main-orange);
  box-shadow: 0 5px 0 #FD9536;
}

.button-green {
  background-color: #00C08A;
  box-shadow: 0 5px 0 #01B281;
}

.button-blue {
  background-color: #11ACB2;
  box-shadow: 0 5px 0 #0E989D;
}

.buttontxt-top,
.buttontxt-bottom {
  font-size: .75rem;
}

.buttontxt-top,
.tel-button .buttontxt-main {
  padding-top: 8px;
}

.buttontxt-main {
  font-size: 1.5rem;
  line-height: 1.1;
}

.button.lr-arrow::before, .button.lr-arrow::after {
  right: 18px;
}

@media all and (min-width: 992px) {
  .button {
    height: 79px;
  }

  .document-button {
    width: 100%;
  }

  .buttontxt-top,
  .tel-button .buttontxt-main {
    padding-top: 20px;
  }
}

@media all and (min-width: 1600px) {
  .button {
    width: 388px;
  }

  .document-button {
    width: 100%;
  }
}

/* //全体の設定 */

/* ヘッダー  */
header {
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  height: 80px;
}

.header-fixed {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 120;
}

header .inner {
  padding: 16px 10px 16px 10px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;

}

.logo {
  margin-bottom: 0;
}

.logo>a {
  display: grid;
  place-items: center;
}

header .logo img {
  height: 48px;
  width: auto;
}

header p {
  font-size: 1.4rem;
  margin: 0 0 0 25px;
}

@media screen and (max-width: 768px) {
  header .inner {
    padding: 9px 15px 9px 15px !important;
  }

  header .logo img {
    height: 32px;
  }

  header p {
    font-size: 0.875rem;
    margin: 0 0 0 14px;
    line-height: 1.2;
  }
}

@media all and (min-width: 1200px) {
  header .inner {
    padding: 16px 20px 16px 20px;
  }
}

@media all and (min-width: 1440px) {
  header .inner {
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }

}

@media all and (max-width: 375px) {
  header p {
    font-size: 0.625rem;
  }
}

.ham-menu {
  position: fixed;
  width: 100%;
  z-index: 150;
}

.ham-btn-box {
  z-index: 200;
  /* left: 50%;
  transform: translateX(-50%); */
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  text-align: end;
  padding-right: 15px;
}

.ham-txt {
  color: #00C18A;
  transition: all 0.5s;
  position: absolute;
  bottom: -5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hamburger.open .ham-txt {
  color: var(--main-green);
}

.hamburger {
  display:inline-block;
  width: 45px;
  height: 63px;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  z-index: 200;
  background-color: transparent;
}

.hamburger.open {
  width: 44px;
}

.hamburger .ham_icon,
.hamburger .ham_icon::after,
.hamburger .ham_icon::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 4px;
  background-color: #00C18A;
  transition: all 0.5s;
  border-radius: 3px;
}

.hamburger .ham_icon::before {
  top: -10px;
}

.hamburger .ham_icon::after {
  bottom: -10px;
}

.hamburger.open .ham_icon {
  background-color: transparent;
}

.hamburger.open .ham_icon::before {
  top: 0;
  transform: rotate(45deg);
  background-color: var(--main-green);
}

.hamburger.open .ham_icon::after {
  bottom: 0;
  transform: rotate(-45deg);
  background-color: var(--main-green);
}

.ham-content {
  position: fixed;
  width: 42%;
  height: 100vh;
  top: 0;
  right: -100%;
  background-color: var(--bg-lightgreen);
  transition: all 0.5s;
  border-top: 1px solid #fff;
  z-index: 150;
}

.ham-content-inner {
  max-width: 500px;
  text-align: center;
  margin-bottom: 100px;
}

.ham-bar {
  height: 100%;
  overflow: auto;
  padding: 94px 0;
}

.nav-item {
  width: 380px;
  font-weight: 600;
}

.nav-item a {
  display: block;
  font-size: 1.25rem;
  color: var(--main-green);
  text-decoration: none;
  padding: 7.5px 0 7.5px 0;
  text-transform: uppercase;
}

.nav-item a:hover {
  opacity: 0.8;
}

.ham-content.open {
  right: 0;
}

.open.overlay {
  opacity: 0.8;
  visibility: visible;
}

.overlay {
  background-color: #000;
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all 0.6s;
  visibility: hidden;
  width: 100vw;
  z-index: 135;
}

.hambtn2 {
  margin-bottom: 300px;
  margin-right: 30px;
  margin-top: 8px;
}

.hambtn2 .ham_icon, .hambtn2 .ham_icon::after, .hambtn2 .ham_icon::before {
  width: 75%;
  height: 2px;
}

.hambtn2 .ham-txt {
  position: absolute;
  top: 20px;
  left: 58px;
  font-size: 0.875rem;
}

.ham-menu .cta-buttonbox-inner {
  display: block;
}

.ham-menu .button {
  width: 291px;
  height: 55px;
}

.ham-menu .button.lr-arrow::before,
.ham-menu .button.lr-arrow::after {
  right: 18px;
}

.ham-menu .tel-button .buttontxt-main {
  padding-top: 10px;
}

.nav-item .lr-arrow {
  width: 11px;
}

.ham-txt {
  font-size: 0.75rem;
}

@media all and (max-width: 992px) {
  .ham-content {
    width: 55%;
  }
}

@media all and (max-width: 768px) {
  header {
    height: 46px;
  }

  .ham-bar {
    padding: 58px 0;
  }

  .hamburger {
    width: 30px;
    height: 30px;
  }

  .hamburger.open {
    width: 35px;
  }

  .hamburger .ham_icon, .hamburger .ham_icon::after, .hamburger .ham_icon::before {
    height: 3px;
  }

  .ham-content {
    width: 100%;
  }

  .ham-content-inner {
    margin: 0 auto;
  }

  .ham-txt {
    font-size: 0.5625rem;
    bottom: -11px;
  }

  .ham-btn-box {
    padding-right: 10px;
  }

  .hamburger .ham_icon::before {
    top: -7px;
  }

  .hamburger .ham_icon::after {
    bottom: -7px;
  }

  .hambtn2 .ham_icon, .hambtn2 .ham_icon::after, .hambtn2 .ham_icon::before {
    height: 2px;
  }
}

@media all and (min-width: 768px) {

  .ham-menu .nav-button-txt,
  .ham-menu .buttontxt-main {
    font-size: 1.5rem;
  }

  .ham-menu .buttontxt-bottom {
    font-size: 0.75rem;
  }

  .ham-menu .nav-button-txt {
    padding: 12px 0;
  }
}

@media all and (min-width: 992px) {}

@media all and (min-width: 1200px) {
  .ham-content {
    width: 38.5%;
  }

  .nav-item {
    width: 321px;
  }
}

/* ハンバーガーメニューの中身 */
.nav {
  margin-top: 33px;
  justify-content: center;
}

.nav-logo-img {
  margin-bottom: 17px;
  width: 180px;
}

.nav-txt1 {
  color: #000;
  line-height: 1.375;
}

.nav-item>a {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}

.nav-item .lr-arrow::before,
.nav-item .lr-arrow::after {
  background-color: var(--main-green);
}

.ham-content .inquiry-link {
  display: inline;
}

.ham-content .inquiry-link li {
  width: 100%;
}

.ham-content .inquiry-link .inquiry-document,
.ham-content .inquiry-link .inquiry-visit {
  width: 276px;
  margin-right: auto;
  margin-left: auto;

}

.ham-content .btn-document,
.ham-content .btn-visit {
  padding: 20px 0;
  font-size: 2.2rem;
}

.ham-content .btn-document {
  margin-right: 0;
  margin-bottom: 17px;
}

.ham-content .btn-document .icon {
  padding-left: 44px;
}

.ham-content .btn-visit .icon {
  padding-left: 40px;
}

.ham-content .inquiry-link .inquiry-tel {
  justify-content: center;
  font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", sans-serif;
}

.ham-content .has-fukidashi-fixed {
  top: 0;
  min-width: unset;
}

.ham-content .btn-document .icon::before,
.ham-content .btn-visit .icon::before {
  width: 32px;
  height: 35px;
  background-size: 30px auto;
}

.ham-content .inquiry-tel {
  padding-top: 13px;
  text-shadow: none;
  font-weight: 500;
}

.ham-content .inquiry-tel .btn {
  box-shadow: none;
  /* width: 325px; */
}

.ham-content .inquiry-tel .tit {
  position: relative;
  line-height: 1;
  display: flex;
  align-items: center;
  text-shadow: none;
}

.ham-content .tit:before,
.ham-content .tit:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #FFF;
  display: block;
}

.ham-content .tit:before {
  margin-right: 0.4em;
}

.ham-content .tel::before {
  background-image: url(../img/tel-white.png);
  top: 13px;
}

.tel-pc-box {
  display: flex;
  justify-content: space-between;
  margin-top: -9px;
}

.tel-pc-box .btn {
  text-shadow: none;
}

.tel-pc-box .tel {
  font-size: 2.4rem;
  padding: 0;
  font-weight: 500;
  letter-spacing: 0.009em;
}

.tel-pc-box .tel .icon {
  padding-top: 5px;
  padding-left: 27px;
  white-space: nowrap;
  text-shadow: none;
}

.tel-pc-box .ham-time {
  font-size: 1.2rem;
  letter-spacing: 0.009em;
  white-space: nowrap;
  margin-bottom: 8px;
  display: flex;
  text-shadow: none;
  align-items: flex-end;
  font-weight: 500;
}

.nav-button-txt {
  font-size: 1.5rem;
  padding: 10px 0;
}

.nav-buttonbox .button {
  margin-top: 25px;
}

.nav-logo {
  padding-right: 20px;
}

.nav-buttonbox .button {
  position: relative;
}

.ham-content .has-fukidashi-fixed {
  top: -12px;
  min-width: unset;
}

.has-fukidashi {
  position: absolute;
  top: 5px;
  left: 25px;
  z-index: 2;
  background: #FFFFFF;
  text-align: center;
  color: #FE9337;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  /* box-shadow: 0 0 6px rgba(00, 00, 00, 0.15); */
  -webkit-filter: drop-shadow(0 0 6px rgba(00, 00, 00, 0.15));
  -moz-filter: drop-shadow(0 0 6px rgba(00, 00, 00, 0.15));
  -ms-filter: drop-shadow(0 0 6px rgba(00, 00, 00, 0.15));
  filter: drop-shadow(0 0 6px rgba(00, 00, 00, 0.15));
  padding: 1.3px 15px;
  min-width: 70px;
}

.has-fukidashi:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -11px;
  border: 4px solid transparent;
  border-top: 5px solid #ffffff;
}

.has-fukidashi-green {
  color: var(--main-green);
}

@media all and (max-width: 1200px) {
  .nav-item a {
    padding: 3.5px 3% 3.5px 8%;
    gap: 30px;
  }
}

@media all and (max-width: 768px) {
  .nav-item {
    width: auto;
    padding: 0 20px;
  }

  .nav {
    margin-top: 17px;
  }

  .nav-item a {
    padding: 4.5px 0 4.5px 0;
    text-align: left;
    gap: 30px;
  }

  .nav-txt1 {
    font-size: 1.2rem;
  }

  .nav-logo {
    padding-right: 0;
  }

  .ham-content .inquiry-link .inquiry-document,
  .ham-content .inquiry-link .inquiry-visit {
    width: 240px;
    margin-right: auto;
    margin-left: auto;

  }

  .ham-content .btn-document,
  .ham-content .btn-visit {
    padding: 10px 0;
    font-size: 2.2rem;
  }

  .ham-content .btn-document .icon {
    padding-left: 35px;
  }

  .ham-content .btn-visit .icon {
    padding-left: 32px;
  }

  .tel-pc-box .tel .icon {
    margin-top: 4px;
  }

  .tel-pc-box .ham-time {
    margin-top: 20px;
  }

  .tel::before {
    height: 30px;
  }

  .hambtn2 {
    margin-right: 36px;
    margin-top: 21px;
    width: 52px;
    height: 40px;
  }

  .hambtn2 .ham-txt {
    top: 12px;
  }

  .ham-content .btn.btn-document {
    margin-right: 0px !important;
  }
}

@media all and (max-width: 370px) {
  .ham-content .inquiry-tel .btn {
    width: auto;
  }

  .tel-pc-box .tel {
    font-size: 1.6rem;
  }

  .nav-txt1 {
    font-size: 1.0rem;
  }

  .nav-item a {
    font-size: 1rem;
    gap: 30px;
  }


  .tel-pc-box .ham-time {
    font-size: 1rem;
    margin-top: 16px;
  }

  .ham-content .tel::before {
    width: 14px;
    height: 22px;
    background-size: contain;
    top: 11px;
  }

  .tel-pc-box .tel .icon {
    padding-left: 20px;
    margin-top: 6px;
  }
}

@media all and (min-width: 992px) {
  .nav-button-txt {
    font-size: 2rem;
  }
}

/* //ハンバーガーメニューの中身 */
/* ヘッダー */

/* fv */
.fv {
  position: relative;
}

.fv-bg {
  width: 94.6%;
  height: calc(537 / 375 * 100vw);
  border-radius: 0px 20px 20px 0px;
  background: linear-gradient(rgba(171, 229, 212, 0.57) 0%, rgba(17, 172, 178, 0.42) 100%);
  background: linear-gradient(to left, rgba(171, 229, 212, 0.57) 0%, rgba(17, 172, 178, 0.42) 100%);
}

.fv-under-txt {
  font-size: 1.125rem;
}

.fv-under-txt .under-dash-pattern-2 {
  font-weight: 600;
  padding-bottom: 2px;
}

.fv-imgbox {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
}

.fv-txtimg.sp img {
  margin-top: 1.5vw;
  width: 65vw;
}

.fv-imgbox {
  width: 87%;
  height: calc(435/375 * 100vw);
}

.fv-txtbox {
  position: absolute;
  top: 12.8vw;
  left: 0;
}

.fv-txt1 {
  font-size: 3.73vw;
  margin-bottom: 1vw;
}

.fv-txt1, .fv-circle-box,
.fv-circle-box2 {
  margin-left: 2vw;
}

.fv-imgbox img {
  border-radius: 20px 0px 0px 20px;
  width: 100%;
}

.fv-circle-box {
  max-width: 59.73vw;
}

.fv-circle {
  color: var(--main-green);
  background-color: #F2FFFB;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.16));
  border-radius: 50%;
  display: grid;
  place-items: center;
  width: 13.87vw;
  height: 13.87vw;
  font-weight: bold;
  font-size: 3.2vw;
  text-align: center;
}

.fv-circle-box2 {
  position: absolute;
  max-width: 53.87vw;
  right: 6vw;
  bottom: 24vw;
}

.fv-circle2 {
  width: 25.6vw;
  height: 25.6vw;
  color: #fff;
  background: var(--main-green);
  border-radius: 50%;
  padding: 2vw 0;
}

.fv-circle2-txt1 {
  font-size: 3.2vw;
  font-weight: 600;
}

.fv-circle2-txt1 sup {
  font-weight: 600;
}

.fv-circle2-txt2 {
  font-size: 6.4vw;

}


.fv-curtion {
  font-size: 2.67vw;
  color: #777777;
  position: absolute;
  bottom: 3.73vw;
  left: 21.33vw;
  width: 71vw;
}

.fv-copy {
  margin: 30px 0;
}

@media all and (min-width: 768px) {
  main {
    margin-top: 90px;
  }

  header .inner {
    height: 90px;
  }

  .fv-under-txt {
    font-size: 1.5rem;
  }


  .fv-bg {
    width: 87.5%;
    height: calc(919 /1920 * 100vw);
  }

  .fv-imgbox {
    top: 48%;
    width: 82.2%;
    height: calc(673/1920 * 100vw);
  }

  .fv-txtimg img {
    width: 48.17vw;
    margin-top: -1.7vw;
  }

  .fv-txtbox {
    top: 7.135vw;
    position: absolute;
    left: 36.7%;
    transform: translateX(-50%);
  }

  .fv-txt1 {
    font-size: 1.46vw;
    margin-left: 0;
    margin-bottom: 0;
  }

  .fv-circle-box {
    width: 21.1vw;
    margin-top: 0.6vw;
    margin-left: 1vw;
  }

  .fv-circle {
    width: 4.69vw;
    height: 4.69vw;
    font-size: 1.04vw;
  }

  .fv-circle-box2 {
    width: 24.75vw;
    right: auto;
    left: 11vw;
    bottom: 8.5vw;
  }

  .fv-circle2 {
    width: 11.46vw;
    height: 11.46vw;
    padding: 3vw 0;
  }

  .fv-circle2-txt1 {
    font-size: 1.146vw;
  }

  .fv-circle2-txt2 {
    font-size: 3.02vw;
  }

  .fv-circle2-txt2 span {
    font-size: 1.98vw;
    font-weight: 600;
  }

  .fv-curtion {
    font-size: 0.833vw;
    left: 12.33vw;
  }

  .fv-copy {
    margin: 50px 0;
  }
}

@media all and (max-width: 350px) {
  .fv-under-txt {
    font-size: 1rem;
  }
}

/* //fv */

/* スクロール */
/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: -9.33vw;
  left: 3.35vw;
  width: 8.82px;
}

.scrolldown1 img {
  position: absolute;
  bottom: 115px;
  left: -3px;
  height: 51.39px;
  width: 8.82px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown1:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-blue);
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
  z-index: 5;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 95px;
  }

  100% {
    bottom: 5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }

  50% {
    opacity: 1;
  }

  80% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown1:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 102.5px;
  background: #000;
}

@media all and (min-width: 768px) {
  .scrolldown1 {
    bottom: -2.33vw;
    left: 3.35vw;
    width: 11px;
  }

  .scrolldown1:after {
    height: 141px;
  }

  .scrolldown1 img {
    bottom: 150px;
    width: 11px;
    height: 70px;
  }

  .scrolldown1:before {
    width: 14px;
    height: 14px;
    left: -6px;
  }

  @keyframes circlemove {
    0% {
      bottom: 130px;
    }

    100% {
      bottom: 5px;
    }
  }
}


/* //スクロール */

/* cta */
.cta-wrapper {
  background-color: var(--bg-lightgreen);
  border-radius: 15px;
  padding: 40px 4px 40px 4px;
}

.cta-txtbox {
  position: relative;
  padding-top: 12px;
  padding-right: 15px;
}

.cta-txtbox img {
  position: absolute;
  top: 10px;
  left: -14px;
}

.cta-txt1 {
  font-size: 0.75rem;
}

.cta-txt2 {
  margin-top: 21px;
  font-size: 1.25rem;
}

.cta-flex {
  display: flex;
}

.cta-box {
  justify-content: center;
  gap: 25px;
}

.cta-buttonbox {
  margin-top: 28px;
}

.cta .button {
  margin-bottom: 15px;
}

.button:hover {
  color: #FFF;
  opacity: 0.8;
}

@media all and (min-width: 768px) {
  .cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .cta-box {
    position: relative;
  }

  .cta-txtbox1-pc {
    position: absolute;
    top: 0;
    right: 0;
  }

  .cta-txtbox1-pc img {
    position: absolute;
    top: 0;
    right: 10px;
    width: 100%;
  }

  .cta-txt1 {
    font-size: 1rem;
  }

  .cta-txt2 {
    margin-bottom: 27.6px;
  }

  .cta-buttonbox {
    margin-top: 0;
  }

  .cta-imgbox {
    display: grid;
    place-items: end;
  }

  .cta-imgbox picture img {
    width: 250px;
  }

  .cta-pattern2 .cta-imgbox picture img {
    width: 240px;
  }

  .cta .button {
    margin-bottom: 25px;
  }
}

@media all and (min-width: 992px) {
  .cta-imgbox {
    display: grid;
    place-items: end;
  }

  .cta-buttonbox-inner {
    display: flex;
    gap: 24px;
  }

  .buttontxt-top,
  .buttontxt-bottom {
    font-size: 1rem;
  }

  .buttontxt-main {
    font-size: 2rem;
  }

  .buttontxt-top,
  .tel-button .buttontxt-main {
    padding-top: 10px;
  }

  .cta-txt2 {
    font-size: 2.25rem;
  }
}

@media all and (min-width: 1200px) {
  .cta-imgbox {
    display: grid;
    place-items: end;
    margin: 100px 100px 0 0;
  }

  .cta-imgbox picture img {
    width: 295px;
  }

  .cta-buttonbox {
    margin-top: 25px;
  }

  .cta-txt1 {
    font-size: 1.5rem;
    white-space: nowrap;
    padding-left: 38px;
  }

  .cta-txtbox1-pc {
    width: 383px;
    position: absolute;
    top: 15px;
    right: -33px;
  }


}

@media all and (min-width: 1600px) {
  .cta-wrapper {
    padding: 45px 116px;
    justify-content: space-between;
  }

  .button.lr-arrow::before, .button.lr-arrow::after {
    right: 40px;
  }

  .tel-button .buttontxt-main {
    padding-top: 12px;
  }

  .cta-txtbox1-pc {
    right: -84px;
  }
}

@media all and (max-width: 374px) {
  .cta-txt1 {
    font-size: 0.625rem;
  }

  .cta-txt2 {
    font-size: 1rem;
  }

  .cta-imgbox img {
    width: 100px;
  }
}

/* //cta */

/* achievements */
.achievements {
  padding-top: 48px;
  margin-bottom: 75px;
}

.achievements-ttl {
  font-size: 1.125rem;
  line-height: 1.7777777778;
}

.achievements-ttl span {
  font-size: 1.375rem;

}



.achievements-card {
  padding: 28px 20px 28px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  margin: 20px;
  height: 92%;
}

.achievements-card-ttl {
  color: var(--main-green);
  margin-bottom: 23px;
  font-size: 1.25rem;
  flex-grow: 1;
  font-weight: 600;
}

.emp-record .achievements-card-ttl span {
  font-size: 0.75rem;
}

.achievements-card-txt span {
  font-size: 0.875rem;
  color: #777;
}

.achievements-card-imgbox {
  position: relative;
}

.achievements-card-imgtxt {
  font-size: 2.4375rem;
  color: var(--main-blue);
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.achievements-card-imgtxt span {
  font-size: 1.75rem;
}

.emp-record .achievesplidements-card-ttl span {
  font-size: 0.75rem;
}

.achievements-card-txt {
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
}


.achievements-pc .achievements-card {
  margin: 0;
}

.emp-record {
  margin-top: 40px;
}

.emp-record .archevements-card-ttl {
  line-height: 1;
}

.emp-record .achievements-card {
  margin: 0;
  height: 100%;
}

.achevements-card-ul {
  padding-left: 22px;
}

.achevements-card-li {
  position: relative;
  list-style: none;
  line-height: 1.5;
  padding-left: 15px;
  margin-bottom: 10px;
}

.achevements-card-li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--main-blue);
  position: absolute;
  left: -10px;
  top: calc(0.75em - 3px);
}

@media all and (min-width: 768px) {
  .achievements {
    padding-top: 98px;
  }

  .achievements-ttl {
    font-size: 1.75rem;
    margin-bottom: 55px;
  }

  .achievements-ttl span {
    font-size: 2.25rem;
    padding-bottom: 0.15em;
  }

  .achievements-pc>.row>div {
    margin-top: 30px;
  }

  .achievements-card {
    height: 100%;
  }

  .achevements-card-ul {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(11, auto);

  }

  .emp-record .achievements-card {
    padding: 28px 40px 28px;

  }

  .emp-record-wrapper {
    max-width: 1224px;
    margin-right: auto;
    margin-left: auto;
  }
}

@media all and (min-width: 992px) {
  .achevements-card-ul {
    grid-template-rows: repeat(7, auto);

  }
}

@media all and (max-width: 350px) {
  .achievements-ttl {
    font-size: 1rem;
  }

  .achievements-ttl span {
    font-size: 1.25rem;
  }
}

/* スライダー見た目調整 */
.splide .splide__arrow {
  display: grid;
  place-content: center;
  width: 35px;
  height: 35px;
  cursor: pointer;
  /* transition: 0.8 ease-in; */
  background-color: var(--bg-lightgreen);
  border-radius: 50%;
  border: none;
}

.splide .arrow-icon {
  display: inline-block;
  vertical-align: middle;
  color: var(--main-blue);
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
}

.splide .arrow-icon::before,
.splide .arrow-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.splide .arrow-icon::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.splide .arrow-icon::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
}

.splide-1 {
  position: relative;
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 14px;
}

.splide .splide__arrow--next,
.splide .splide__arrow--prev {
  position: absolute;
  z-index: 10;
  top: 0;
  bottom: 0;
  margin: auto;
}

.splide .splide__arrow--next:disabled,
.splide .splide__arrow--prev:disabled {
  opacity: 0;
}

.splide .splide__arrow--prev {
  transform: rotate(180deg);
}

.splide .splide__arrow--next {
  right: 0.2%;
}

.splide .splide__arrow--prev {
  left: 0.2%;
}

.splide-1 .splide__pagination {
  gap: 20px;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide__pagination__page {
  background: #BEBEBE;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 15px;
  margin: 0 0.1rem;
  padding: 0;
  position: relative;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 15px;
}

.splide__pagination__page.is-active {
  background: var(--main-blue);
}

@media all and (min-width: 576px) {
  .splide .splide__arrow--next {
    right: -2%;
  }

  .splide .splide__arrow--prev {
    left: -2%;
  }

  .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}



@media all and (min-width: 992px) {
  .splide .splide__arrow {
    width: 50px;
    height: 50px;
  }

  .splide .splide__arrow--next,
  .splide .splide__arrow--prev {
    top: 145px;
  }

  .splide .splide__arrow--next {
    right: 0%;
  }

  .splide .splide__arrow--prev {
    left: 0%;
  }
}

/* //achievements */

/* c-cta */
.c-cta-copy-txt {
  font-size: 1.25rem;
  color: var(--main-blue);
  position: relative;
  padding-bottom: 42px;
}


.c-cta-area {
  background-color: var(--bg-lightgreen);
  padding: 40px 0;
}

.c-cta-buttonbox {
  margin-top: 28px;
}


.c-cta-txt2 {
  font-size: 1.125rem;
  margin-bottom: 19px;
  position: relative;
  padding-left: 6px;
}

.c-cta-txt2::before {
  content: "";
  position: absolute;
  background-image: url(../images/cta/banzai-left.svg);
  background-size: cover;
  left: -26px;
  width: 18px;
  height: 30.23px;
}

.c-cta-txt2::after {
  content: "";
  position: absolute;
  background-image: url(../images/cta/banzai-right.svg);
  background-size: cover;
  right: -26px;
  width: 18px;
  height: 30.23px;
}

.c-cta .button {
  margin-bottom: 15px;
}

.c-cta-txt1 {
  margin-right: auto;
  margin-left: auto;
}

.c-cta .button {
  width: 87%;
}

.c-cta-copy-sp {
  max-width: 351px;
  margin-right: auto;
  margin-left: auto;
}

.c-cta-copy-sp .c-cta-copy-txt::before {
  content: "";
  background-image: url(../images/cta/c-cta1-sp.png);
  background-size: cover;
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: 0;
  left: 0;
}


@supports (background-image: url("../images/cta/c-cta1-sp.webp")) {
  .c-cta-copy-sp .c-cta-copy-txt::before {
    background-image: url(../images/cta/c-cta1-sp.webp);
  }
}

.c-cta-copy-sp .c-cta-copy-txt::after {
  content: "";
  background-image: url(../images/cta/c-cta2-sp.png);
  background-size: cover;
  position: absolute;
  width: 90px;
  height: 90px;
  bottom: 0;
  right: 0;
}

.c-cta-centerbox {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.c-cta-pc {
  display: none;
}

@supports (background-image: url("../images/cta/c-cta2-sp.webp")) {
  .c-cta-copy-sp .c-cta-copy-txt::after {
    background-image: url(../images/cta/c-cta2-sp.webp);
  }
}

@media all and (min-width: 576px) {
  .c-cta-txt1 {
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  .c-cta-copy-txt {
    padding-bottom: 23px;
  }

}

@media all and (min-width: 992px) {
  .c-cta .button {
    width: 100%;
  }
}

@media all and (min-width: 1200px) {
  .c-cta-sp {
    display: none;
  }

  .c-cta-pc {
    display: block;
  }

  .c-cta-txt1 {
    font-size: 1.5rem;
  }

  .c-cta-txt2 {
    font-size: 1.5rem;
    padding-left: 8px;
  }

  .c-cta-copy-txt {
    font-size: 2.25rem;
  }

  .c-cta-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
  }

  .c-cta-imgbox {
    display: flex;
    align-items: flex-end
  }

  .c-cta-centerbox {
    width: 75%;
  }
}

@media all and (max-width: 350px) {
  .c-cta-copy-txt {
    font-size: 1.125rem;
  }

  .c-cta-copy-sp .c-cta-copy-txt::after,
  .c-cta-copy-sp .c-cta-copy-txt::before {
    width: 80px;
    height: 80px;
  }
}

/* //c-cta */

/* onayami */
.onayami {
  padding-top: 50px;
  padding-bottom: 50px;
}

.container.container--narrow {
  max-width: 100vw;
  padding-left: 20px;
  padding-right: 20px;

}

/* onayami-heading */
.onayami-heading-wrapper {
  z-index: 2;
  position: relative;
  /* margin-bottom: 30px; */
}

.onayami-text-pattern-1 {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0;

}

.onayami-list-wrapper {
  margin-top: -18px;
  /* width: 100%; */
  border: 2px solid #11ACB2;
  border-radius: 15px;
  padding: 28px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.onayami-image {
  z-index: 0;
  /* max-width: 264px; */
  height: auto;
}

.onayami-image-wrapper {
  margin-top: -20px;
}

.onayami-list {
  margin-bottom: 0;
  width: fit-content;
}

.onayami-list-item {
  width: fit-content;
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 2;
  font-weight: 500;
}

.onayami-list-item:last-child {
  margin-bottom: 0;
}

.onayami-list-item-text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

.onayami-list-item-text::before {
  position: absolute;
  left: 0;
  top: 5px;
  content: "";
  background: url(../images/onayami/check-circle-solid.svg);
  background-size: contain;
  /* または cover */

  background-repeat: no-repeat;
  background-position: center;
  width: 20px;
  height: 20px;
}

.onayami-strong-1 {
  padding-bottom: 0.25rem;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: calc(22/18);
}

.onayami-strong-2 {
  font-size: 1.625rem;
  font-weight: bold;
  color: #00C08A;
  line-height: calc(42/24);
}


.onayami-strong-2-text {
  font-size: 1.5rem;
}


.onayami-triangle-image-wrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}

.onayami-triangle-image {
  max-width: 178px;
  height: auto;
  aspect-ratio: 178 / 38;
}



.text-dashed-line {
  border-bottom: 2px dashed #FDAB60;
}

.text-dots {
  background-image: radial-gradient(circle at center, #FDAB60 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.3em;
  padding-top: .4em;
}



@media all and (max-width:374px) {
  .container.container--narrow {
    max-width: 100vw;
  }

  .onayami-text-pattern-1 {
    font-size: 1rem;
  }
}

@media all and (min-width:576px) {
  .onayami {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .container.container--narrow {
    /* max-width: 767px; */
    padding-left: 30px;
    padding-right: 30px;

  }


  .onayami-text-pattern-1 {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .onayami-heading-wrapper {
    /* margin-bottom: 45px; */
  }

  .onayami-image-wrapper {
    margin-top: -40px;
  }

  .onayami-image {
    width: 400px;
  }

  .onayami-list-wrapper {
    padding: 30px 30px 30px 30px;
  }

  .onayami-list-item-text::before {
    top: 0;
    width: 30px;
    height: 30px;
  }

  .onayami-strong-1 {
    font-size: 1.5rem;
  }

  .onayami-strong-2 {
    font-size: 3.125rem;
  }

  .onayami-strong-2-text {
    font-size: 3rem;
  }

  .onayami-list-item-text {
    padding-left: 40px;
    margin-bottom: 30px;
    font-size: 1.125rem;
    line-height: calc(29/24);
  }

  .onayami-list-item:last-child .onayami-list-item-text {
    margin-bottom: 0;
  }

  .onayami-triangle-image-wrapper {
    margin-top: 50px;
    margin-bottom: 35px;
  }

  .onayami-triangle-image {
    max-width: 320px;
    height: auto;
    aspect-ratio: 494 / 78;
  }




}

@media all and (min-width:768px) {
  /* .onayami-image {
    max-width: 200px;
  } */
}

@media all and (min-width:992px) {
  .onayami {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .container.container--narrow {
    padding-right: 80px;
    padding-left: 80px;

  }


  .onayami-text-pattern-1 {
    font-size: 2.25rem;
    line-height: calc(56/36);
    letter-spacing: 0.03em;
  }

  .onayami-heading-wrapper {
    margin-bottom: 45px;
  }

  .onayami-image-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: -40px;
    padding-right: 30px;
  }

  .onayami-image {
    min-width: 300px;
  }

  .onayami-list-item-text::before {
    top: 0;
    width: 35px;
    height: 35px;
  }

  .onayami-list-wrapper {
    margin-top: 0;
  }

  .onayami-strong-1 {
    font-size: 1.5rem;
  }

  .onayami-strong-2 {
    font-size: 3.125rem;
  }

  .onayami-strong-2-text {
    font-size: 3rem;
  }

  .onayami-list-item-text {
    padding-left: 50px;
    margin-bottom: 15px;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .onayami-triangle-image-wrapper {
    margin-top: 50px;
    margin-bottom: 35px;
  }


  .onayami-triangle-image {
    max-width: 494px;
    height: auto;
    aspect-ratio: 494 / 78;
  }



  .onayami-image-wrapper {
    margin-top: 0px;
  }
}

@media all and (min-width:1200px) {
  .onayami-image {
    min-width: 350px;
  }

  .onayami-list-item-text {
    margin-bottom: 25px;
  }

  .onayami-list-wrapper {
    padding: 40px 50px;
  }
}

@media all and (min-width:1400px) {
  .onayami-list-wrapper {
    padding: 50px 90px 50px 90px;
    width: auto;
  }

  .container.container--narrow {
    max-width: 1248px;
    padding-left: 0;
    padding-right: 0;
  }

  .onayami-strong-1 {
    font-size: 1.75rem;
  }

  .onayami-strong-2 {
    font-size: 3.125rem;
  }

  .onayami-strong-2-text {
    font-size: 3rem;
  }

  .onayami-list-item-text {
    padding-left: 50px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    line-height: calc(29/24);
  }
}


/* //onayami */

/* support */
.support {
  z-index: 1;
  /* padding-top:  50px; */
  padding-bottom: 50px;
}

.support .onayami-heading-wrapper {
  margin-bottom: 30px;
}

.support-section-bg {
  /* background-color: var( --bg-lightgreen); */
}

/* support-heading, support-card*/
.support-heading-pattern-1 {
  color: var(--main-blue);
  font-weight: bold;
  font-style: italic;
  font-family: Arial, Helvetica, sans-serif;
  opacity: .6;
}

.support-section-rounded-bg {
  z-index: 1;
  background: var(--bg-lightgreen);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -530px;
  margin-right: -530px;
  padding-left: 265px;
  padding-right: 265px;
  padding-bottom: 100px;
}

.support-section-rounded-body {
  padding-top: 50px;
  z-index: 2;
}

.support-flow-cards {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding-right: 6px;
}

.support-flow-card {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-width: 45%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  padding-top: 25px;
  padding-bottom: 25px;
  cursor: pointer;
}

.support-flow-card:nth-child(2n) {
  margin-left: 24px;
}

.support-flow-card:nth-child(-n+2) {
  margin-bottom: 15px;
}

.support-flow-card:not(:last-child)::after {
  content: "";
  background: url(../images/support/support-triangle-r.svg);
  position: absolute;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  width: 14px;
  height: 18px;
  right: -21px;
  top: calc(50% - 5px);
}


.support-flow-card-heading {
  font-size: 0.75rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.support-flow-card-image-wrapper {
  margin-bottom: 10px;
}

.support-flow-card-image {
  width: 50px;
  height: 50px;
}

.support-flow-card-text {
  font-size: 1rem;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
  color: #000;
}

.support-flow-card-text-wrapper {
  margin-bottom: 10px;
}

.support-flow-card-toggle-mark-wrapper {
  width: 100%;
}

.support-flow-card-toggle-mark.ud-arrow::after,
.support-flow-card-toggle-mark.ud-arrow::before {
  background: var(--main-blue);
}

.support-flow-card-toggle-mark.ud-arrow::after {
  transform: rotate(45deg);
  right: 48%;
}

.support-flow-card-toggle-mark.ud-arrow::before {
  transform: rotate(-45deg);
  right: calc(48% - 7px);
}

/* .support-flow-card:hover .support-flow-card-toggle-mark.ud-arrow::after,
.support-flow-card:hover .support-flow-card-toggle-mark.ud-arrow::before{
  top:5px;
  transition: .5s;
} */

.support-flow-card:hover .support-flow-card-toggle-mark.ud-arrow::after,
.support-flow-card:hover .support-flow-card-toggle-mark.ud-arrow::before {
  top: 5px;

}

.support-strong-1 {
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: 0.03em;

  font-weight: bold;
  color: var(--main-blue);
}





@media all and (max-width:374px) {
  .support-flow-cards {
    justify-content: center;
  }

  .support-flow-card {}

  .support-flow-card:nth-child(2n) {
    margin-left: 24px;
  }

  .support-flow-cards {
    padding-right: 16px;
    margin-bottom: 30px;
  }

}

@media all and (min-width:576px) {
  .support {
    z-index: 1;
    /* padding-top:  70px; */
    padding-bottom: 70px;
  }

  .support-section-rounded-body {
    padding-top: 70px;
  }

  .support-section-rounded-bg {
    padding-bottom: 70px;
  }

  .support-flow-card {
    width: calc(100% * (276 / 1224));
    margin-bottom: 0;
    max-width: 22.5%;
    min-width: auto;
  }

  .support-flow-cards {
    justify-content: space-between;
  }

  .support-flow-card:nth-child(2n) {
    margin-left: 0;
  }

  .support-flow-card:nth-child(-n+2) {
    margin-bottom: 0px;
  }

  .support-flow-card:not(:last-child)::after {
    right: -17px;
  }


  .support-flow-card:not(:last-child)::after {
    right: calc(-13%);
  }

  .support-strong-1 {
    font-size: 3rem;
  }
}

@media all and (min-width:768px) {
  .support-flow-cards {
    padding-right: 0;
  }

  .support-flow-card {
    width: calc(100% * (276 / 1224));
    padding-top: 25px;
    padding-bottom: 25px;
    margin-bottom: 0;
    max-width: 22.5%;
    min-width: auto;
  }

  .support-heading-pattern-1 {
    font-size: 1rem;
  }

  .support-flow-card-heading {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
  }

  .support-flow-card-text {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: bold;
  }

  .support-flow-card-image-wrapper {
    margin-bottom: 15px;
  }

  .support-flow-card-text-wrapper {
    margin-bottom: 12px;
  }

  .support-flow-card-toggle-mark.ud-arrow::after {
    transform: rotate(45deg);
    right: 50%;
  }

  .support-flow-card-toggle-mark.ud-arrow::before {
    transform: rotate(-45deg);
    right: calc(50% - 7px);
  }

  .support-flow-card:not(:last-child)::after {
    /* width: 22px;
    height:32px; */
    right: calc(-12%);
    top: calc(50% - 6px);

  }

  .support-strong-1 {
    font-size: 3.75rem;

  }

}

@media all and (min-width:992px) {
  .support {
    z-index: 1;

    /* padding-top:  100px; */
    padding-bottom: 100px;
  }

  .support-section-rounded-body {
    padding-top: 100px;
  }

  .support-section-rounded-bg {
    border-top-left-radius: 250%;
    border-top-right-radius: 250%;
    margin-left: -1000px;
    margin-right: -1000px;
    padding-left: 150px;
    padding-right: 150px;
    padding-bottom: 100px;
  }

  .support-flow-card {
    min-width: auto;
  }


  .support-flow-card:not(:last-child)::after {
    width: 22px;
    height: 32px;
    right: -30px;
    top: calc(50% - 12px);
  }
}

@media all and (min-width:1200px) {
  .support .onayami-heading-wrapper {
    margin-bottom: 45px;
  }

  .support-flow-card:not(:last-child)::after {
    width: 22px;
    height: 32px;
    right: -33px;
    top: calc(50% - 12px);
  }

  .support-flow-card-image {
    width: 80px;
    height: 80px;
  }
}

@media all and (min-width:1400px) {}

/*  // support-heading, support-card*/


/* support-slide */
.support-slide {
  width: 50vw !important;
}

.support-slide-wrapper {
  background-color: #fff;
  border: 2px solid var(--main-blue);
  padding: 30px 10px 30px 20px;
  border-radius: 15px;
  /* box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35); */

}


.support-slide-inner {
  height: 603px;
  overflow-y: scroll;
  padding-right: 15px;
}

.support-slide-inner::-webkit-scrollbar {
  border-right: 16px solid transparent;
  width: 10px;

  /* firefox */
  scrollbar-color: var(--main-blue) var(--grayborder);
  scrollbar-width: 10px;
}

.support-slide-inner::-webkit-scrollbar-thumb {
  background-color: var(--main-blue);
  border-radius: 6px;
}

.support-slide-inner::-webkit-scrollbar-track {
  background-color: var(--grayborder);
  border-radius: 6px;
}

.support-slide-wrapper::-webkit-scrollbar {}


.support-splide-wrapper .splide__slide {
  box-shadow: none;
}

.support-slide-heading-wrapper {
  display: flex;
  justify-content: left;
}

.support-slide-heading-image {
  width: 50px;
  height: auto;
  aspect-ratio: 1;
}

.support-slide-heading-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 5px;
  margin-bottom: 30px;
}

.support-slide-heading {
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: bold;
}

.support-slide-heading-sub {
  font-size: 0.75rem;
  color: var(--main-blue);
  font-weight: bold;
  font-style: italic;
  line-height: calc(28/18);
}

.support-slide-text-lead {
  font-size: 1em;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--grayborder);
  font-weight: 500;
}

.support-slide-body-section {
  margin-top: 15px;
}

.support-slide-body-heading-sub {
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 5px;
}

.support-slide-body-heading {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 10px;

}

.splide__pagination.support-pagination {
  margin-top: 30px;
}

.splide__pagination__page.is-active.support-pagination-page {
  background: var(--main-blue);
}

.splide__pagination__page.support-pagination-page {
  background: var(--gray2);
  width: 15px;
  height: 15px;
  margin-right: 20px;
  margin-left: 0;
}

.splide__pagination.support-pagination li:last-child .splide__pagination__page.support-pagination-page {
  margin-right: 0;
}

.splide__arrow.support-arrow {
  background-color: #ABE5D4;
  opacity: .7;
  top: 0;
  width: 34px;
  height: 34px;
}

.splide__arrow--next.support-arrow {
  right: -15px;
}

.splide__arrow--prev.support-arrow {
  left: -15px;
}

.splide__arrow.support-arrow:not([disabled]):hover {
  opacity: 1;
}


.support-splide-wrapper .splide__slide {
  margin-right: 10px !important;
}

.support-splide-wrapper .splide__track {

  overflow: visible;
}

.support-arrow.splide__arrow .lr-arrow::after,
.support-arrow.splide__arrow .lr-arrow::before {
  right: -8px;
  width: 12px;
  background: var(--main-blue);
  height: 2px;
}


.support-arrow.splide__arrow .lr-arrow::before {

  top: calc(50% - 4px);
}

.support-arrow.splide__arrow .lr-arrow::after {
  bottom: calc(50% - 5px);

}

@media all and (max-width:374px) {
  .support-slide-wrapper {
    padding: 38px 6px 38px 12px;
  }

  .support-slide-inner {
    padding-right: 6px;
  }

  .support-slide-wrapper .splide__slide {
    margin-right: 3px !important;
  }

  .splide__arrow--next.support-arrow {
    right: -10px;
  }

  .splide__arrow--prev.support-arrow {
    left: -10px;
  }

}



@media all and (min-width:576px) {
  .support-slide-body-heading-sub {
    font-size: 0.875rem;
  }

  .splide__arrow.support-arrow {
    top: -40px;
    width: 50px;
    height: 50px;
  }

  .splide__arrow--next.support-arrow {
    right: -25px;
  }

  .splide__arrow--prev.support-arrow {
    left: -25px;
  }

}

@media all and (min-width:768px) {
  .support-slide-wrapper {
    padding: 38px 18px 38px 68px;
  }

  .support-slide-heading {
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.03em;
  }

  .support-slide-heading-sub {
    font-size: 1.125rem;
    color: var(--main-blue);
    font-weight: bold;
    font-style: italic;
    line-height: calc(28/18);
  }

  .support-slide-heading-text-wrapper {
    margin-left: 20px;
    margin-bottom: 30px;
  }

  .support-slide-inner {
    height: 424px;
    padding-right: 50px;
  }

  .support-slide-inner::-webkit-scrollbar {
    border-right: 16px solid transparent;
    width: 10px;
  }

  .support-slide-text-lead {
    font-size: 1.25rem;
    padding-bottom: 18px;
  }

  .support-slide-body-heading-sub {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 5px;
  }

  .support-slide-body-heading {
    font-size: 1.125rem;
  }

  .support-slide-body-section {
    margin-top: 20px;
  }

  .splide__arrow.support-arrow {
    top: -40px;
    width: 50px;
    height: 50px;
  }

  .splide__arrow--next.support-arrow {
    right: -30px;
  }

  .splide__arrow--prev.support-arrow {
    left: -30px;
  }

  .support-arrow.splide__arrow .lr-arrow::after,
  .support-arrow.splide__arrow .lr-arrow::before {
    right: -10px;
    height: 4px;
    width: 16px;
  }


  .support-arrow.splide__arrow .lr-arrow::before {
    top: calc(50% - 7px);
  }


  .support-arrow.splide__arrow .lr-arrow::after {
    bottom: calc(50% - 6px);
  }

  .support-splide-wrapper .splide__slide {
    margin-right: 15px !important;
  }

  .splide__slide {
    margin-right: 50px !important;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  }
}

@media all and (min-width:992px) {
  .support-slide-heading-image {
    width: 60px;
  }

  .splide__arrow.support-arrow {
    top: -40px;
    width: 70px;
    height: 70px;
  }

  .splide__arrow--next.support-arrow {
    right: -45px;
  }

  .splide__arrow--prev.support-arrow {
    left: -45px;
  }
}

@media all and (min-width:1200px) {
  .support-splide-wrapper .splide__slide {
    margin-right: 30px !important;
  }

  .support-slide-heading-image {
    width: 60px;
  }

  .splide__arrow.support-arrow {
    top: -40px;
    width: 70px;
    height: 70px;
  }

  .splide__arrow--next.support-arrow {
    right: -50px;
  }

  .splide__arrow--prev.support-arrow {
    left: -50px;
  }
}

@media all and (min-width:1400px) {
  .support-splide-wrapper .splide__slide {
    margin-right: 50px !important;
  }

  .splide__arrow.support-arrow {
    top: -40px;
    width: 70px;
    height: 70px;
  }

  .splide__arrow--next.support-arrow {
    right: -60px;
  }

  .splide__arrow--prev.support-arrow {
    left: -60px;
  }

}


/* // support-slide */



/* support-service */
.support-service {
  margin-top: 50px;
}

.support-service-heading-wrapper {
  margin-bottom: 30px;
}

.support-service-heading {
  position: relative;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: calc(28/18);
}

.support-service-heading::before,
.support-service-heading::after {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 30.23px;
  bottom: 4px;
}

.support-service-heading::before {
  left: -30px;
  background-image: url(../images/support/banzai-left.svg);
}

.support-service-heading::after {
  right: -30px;
  background-image: url(../images/support/banzai-right.svg);
}


.support-service-box {
  border: 2px solid var(--main-blue);
  padding: 30px 18px 30px 18px;
  border-radius: 15px;
  background-color: #FFF;
}

.support-service-box-heading {
  color: var(--main-green);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  font-weight: bold;
}

.support-service-box-heading-wrapper {
  margin-bottom: 17px;
}

.support-service-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support-service-media-image-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.support-service-media-image {
  width: 100%;
  border-radius: 15px;

}

.support-service-text-wrapper {
  max-width: 696px;
}

.support-service-text {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 18px;
  font-weight: 500;

}

.support-service-text-sub {
  font-size: 0.875rem;
  color: #777777;
  font-weight: 500;

}

@media all and (min-width:576px) {
  .support {
    z-index: 1;
    /* padding-top:  70px; */
    padding-bottom: 70px;
  }


  .support-service-media-image {
    max-width: 350px;
    min-width: 300px;
  }

}

@media all and (min-width:768px) {
  .support-service {
    margin-top: 120px;
  }

  .support-service-heading-wrapper {
    margin-bottom: 50px;
  }

  .support-service-heading {
    font-size: 1.75rem;
    font-weight: bold;
    letter-spacing: 0.03em;
    line-height: calc(44/28);
  }

  .support-service-heading::before,
  .support-service-heading::after {
    bottom: 8px;
  }

  .support-service-heading::before {
    left: -35px;
  }

  .support-service-heading::after {
    right: -35px;
  }

  .support-service-box {
    padding: 25px;
  }

  .support-service-box-heading {
    font-size: 1.75rem;
    line-height: 1;
  }

  .support-service-box-heading-wrapper {
    margin-bottom: 30px;
  }

  .support-service-media-image {
    /* max-height: 219px; */
    min-width: 250px;
    border-radius: 15px;
  }

  .support-service-media {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .support-service-text-wrapper {
    padding-left: 15px;
  }

  .support-service-media-image-wrapper {
    display: block;
    /* justify-content: center;
    align-items: center;
    flex-direction: column; */
    /* min-width: 100% * (348 / 1920); */
    margin-bottom: 0px;
  }

  .support-service-text-wrapper {
    height: fit-content;
  }

}

@media all and (min-width:992px) {
  .support-service-box {
    padding: 38px 68px 38px 68px;
  }

  .support-service-text-wrapper {
    padding-left: 20px;
  }

  .support-service-media-image {
    max-height: 219px;
    min-width: 348px;
  }

}

@media all and (min-width:1200px) {
  .support-service-media-image-wrapper {
    display: block;
  }

  .support-service-text-wrapper {
    padding-left: 0px;
    margin-left: 10px;
  }
}

@media all and (min-width:1400px) {}

/* // support-slide */
/* //support */

/* schedule */
/* schedule-tab */


.js-schedule-box {
  display: none;
}

.js-schedule-box.js-schedule-box-active {
  display: inherit;

}


.schedule-box-and-tabs-wrapper {
  margin-top: 50px;
}

.schedule-tabs-wrapper {
  display: flex;
  justify-content: center;
}

.schedule-tab {
  text-align: center;
  padding: 5px 10px;
}

.schedule-tab-wrapper:hover {
  background-color: var(--main-blue);
  color: #fff;
  cursor: pointer;

}

.schedule-tab-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px 5px 0 0;
  border: 2px solid var(--main-blue);
  border-bottom: none;
  background-color: var(--bg-lightgreen);
  width: 100px;
  margin-left: 5px;
  margin-right: 5px;
  color: var(--main-blue);
}


.schedule-tab-wrapper.js-schedule-tab-active {
  background-color: var(--main-blue);
  color: #fff;
}

.schedule-tab-label {
  font-size: 0.75rem;

  font-weight: bold;
  display: block;
  /* padding-right: 32px; */
}

@media all and (min-width:374px) {}

@media all and (min-width:576px) {}

@media all and (min-width:768px) {


  .schedule-tab-wrapper {
    width: 200px;
    height: 50px;
  }

  .schedule-tab-label {
    display: inline-block;
    font-size: 0.875rem;
  }

  .schedule-tab-label:first-child {
    margin-right: 0.5em;
  }
}

@media all and (min-width:992px) {
  .schedule-tab-wrapper {
    width: 280px;
    height: 50px;
  }

  .schedule-tab-label {
    font-size: 1rem;
  }
}

@media all and (min-width:1200px) {
  .schedule-tab-wrapper {
    width: 300px;
    height: 62px;
  }

  .schedule-tab-label {
    font-size: 1.25rem;
  }
}

@media all and (min-width:1400px) {
  .schedule-tab-wrapper {
    width: 392px;
    height: 62px;
  }
}

/* //schedule-tab */



/* schedule-timetable */

.schedule {
  padding-top: 50px;
  padding-bottom: 50px;
}

.schedule-box-wrapper {}

.schedule-box {
  background-color: #fff;
  padding: 25px 20px 50px 20px;
  border: 2px solid var(--main-blue);
  border-left: none;
  border-right: none;
}

.schedule-box-heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;

}

.schedule-box-heading-inner {
  display: flex;
  justify-content: left;
  width: fit-content;

}

.schedule-box-heading-image-wrapper {
  padding-right: 13px;
}

.schedule-box-heading-image {
  width: 90px;
}

.schedule-box-heading-text-wrapper {
  padding-left: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.schedule-box-heading-text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.2rem;
}

.schedule-box-heading-text-sub {
  margin-top: 0.2rem;
  font-size: 0.625rem;
  font-weight: medium;
  line-height: 1.33;
}



.schedule-box-timetable {
  position: relative;
}

.schedule-box-timetable-col {
  position: relative;
}

.schedule-box-timeline {
  position: absolute;
  border-radius: 50px;
  background-color: var(--main-blue);
  top: -20px;
  height: calc(100% + 40px);
  width: 55px;
  z-index: 1;
}

.schedule-box-activities-wrapper {
  position: relative;
  z-index: 2;
  margin-left: 10px;

}

.schedule-box-timetable-col:first-child .schedule-box-activities-wrapper {
  padding-top: 10px;
}

.schedule-box-activity {
  display: flex;
  margin-bottom: 15px;
}

/* .schedule-box-activity:nth-child(n+1){
  margin-top: 10px;
} */

.schedule-box-activity-time {
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
}

.schedule-box-activity-body {
  margin-left: 25px;
}

.schedule-box-activity-body-content {
  position: relative;
}

.schedule-box-activity .schedule-box-activity-body-content:not(.schedule-content-nodots)::before {
  content: "";
  left: -46px;
  position: absolute;
  height: 100%;
  width: 8px;
  background-image: radial-gradient(circle at center, #fff 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-y;
  background-size: 8px 8px;
}

.schedule-box-activity-body-image {
  width: 100%;
  border-radius: 15px;
}

.schedule-box-activity-body-heading {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}


.schedule-box-activity-body-content-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
}

.schedule-box-activity-body-content-text sup {
  color: #777;
}



@media all and (min-width:374px) {
  .schedule-box-heading-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.2rem;
  }

  .schedule-box-heading-text-sub {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    line-height: 1.33;
  }

}

@media all and (min-width:576px) {
  .schedule-box {
    padding: 25px 20px 50px 20px;
    border: 2px solid var(--main-blue);
    border-radius: 15px;
  }

  .schedule-box-activity-body-image {
    max-width: 265px;
    margin-top: 10px;
  }

  .schedule-box-heading-wrapper {
    margin-bottom: 30px;
  }

}

@media all and (min-width:768px) {
  .schedule {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .schedule-box-timeline {
    width: 70px;
    left: -4px;
  }

  .schedule-box-timetable-row {
    display: flex;
    justify-content: space-between;
  }

  .schedule-box-heading-image {
    width: 120px;
  }

  .schedule-box-timetable-col:nth-child(2) {
    margin-right: 10px;
  }

  .schedule-box-heading-text {
    font-size: 1.25rem;
  }

  .schedule-box-heading-text-sub {
    font-size: 1rem;
  }

  .schedule-box-activity-body-heading {
    font-size: 1.125rem;
  }

  .schedule-box-activity-body-content-text {
    font-size: 1rem;
  }

  .schedule-box-activity-body {
    margin-left: 30px;
  }

  .schedule-box-activity-time {
    font-size: 1rem;
  }

  .schedule-box-activity-body-image-wrapper {}

  .schedule-box-activity-body-image {
    max-width: 314px;
    margin-top: 10px;
  }

  .schedule-box-timetable-col {
    width: 46.5%;
  }

  .schedule-box-activity .schedule-box-activity-body-content:not(.schedule-content-nodots)::before {
    left: -54px;
  }


}

@media all and (min-width:992px) {
  .schedule-box-heading-wrapper {
    margin-bottom: 50px;
  }
}

@media all and (min-width:1200px) {
  .schedule-box {
    padding: 40px 68px 75px 68px;
  }

  .schedule-box-activities-wrapper {}

  .schedule-box-timeline {
    width: 100px;
    left: -15px;
  }

  /* .schedule-box-heading-inner{
    width:20vw;
  } */

  .schedule-box-timetable-col:nth-child(2) {
    padding-right: 40px;
    margin-right: 0;
  }

  .schedule-box-activity-body {
    margin-left: 50px;
  }

  .schedule-box-activity-time {
    font-size: 1.25rem;
  }

  .schedule-box-activity .schedule-box-activity-body-content:not(.schedule-content-nodots)::before {
    left: -80px;
  }
}

@media all and (min-width:1400px) {
  .schedule-box-heading-text {
    font-size: 1.5rem;
  }

  .schedule-box-heading-text-sub {
    font-size: 1rem;
  }

  .schedule-box-activity-body-heading {
    font-size: 1.125rem;
  }

  .schedule-box-activity-body-content-text {
    font-size: 1rem;
  }

  .schedule-box-activity-time {
    font-size: 1.25rem;
  }

  .schedule-box-activity .schedule-box-activity-body-content:not(.schedule-content-nodots)::before {
    left: -80px;
  }
}

/* //schedule-timetable */



/* //schedule */

/* voice */
.ttl-pattern1 {
  font-size: 1.25rem;
}

.lead {
  font-size: 0.875rem;
  color: var(--main-orange);
}

.voice {
  background: var(--bg-lightgreen);
  padding: 50px 0;
}

.grad-wrap {
  position: relative;
}

.grad-wrap+.grad-wrap {
  margin-top: 40px;
}

.grad-trigger {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: -1px;
  left: -1px;
  width: calc(100% + 2px);
  margin: auto;
  padding: 15px 10px 15px 10px;
  border-radius: 0 0 10px 10px;
  background: var(--main-blue);
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); */
  height: 50px;
  box-sizing: border-box;
  font-weight: bold;
}

.grad-trigger:hover {
  opacity: 0.9;
}

.grad-trigger::after {
  content: "詳しく見る";
  /*クリック前のボタンのラベル*/
  font-size: 16px;
  display: block;
}

.grad-trigger .fa {
  margin-right: 0.5em;
}

.grad-item {
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease;
  height: 290px;
  /*隠した後の高さ*/
}

.grad-item>p {
  margin-bottom: 17px;
}

/* .grad-trigger.is-show {
  bottom: -1em;
} */

.grad-trigger.is-show::after {
  content: "閉じる";
  /*クリック後にボタンのラベルを変える*/
}

.grad-trigger.is-show+.grad-item::before {
  display: none;
}

.fa-chevron-down:before {
  content: "" !important;
  background: #fff;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  font-size: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  line-height: 1.18;
  left: 20%;
  color: #00c18a;
  font-weight: bold;
  background-image: url(../img/icon-more.png);
}

.is-show.grad-trigger {
  background: var(--main-blue);
  color: #FFF;
  border: 1px solid var(--main-blue);
  padding: 15px 20px 15px 20px;
}

.is-show.grad-trigger .fa-chevron-down:before {
  background-image: url(../img/icon-close.png);
}

.voice-wrap {
  border: 2px solid var(--main-blue);
  border-radius: 15px;
  background: #FFF;
  margin-bottom: 20px;
}

.voice-wrap:last-of-type {
  margin-bottom: 0;
}

.voice-name {
  width: 30%;
  padding: 30px;
  min-width: 180px;
  text-align: center;
}

.voice-name-1 {
  background: rgba(51, 186, 204, 0.65);
}

.voice-name-2 {
  background: rgba(217, 68, 114, 0.65);
}

.voice-name-3 {
  background: rgba(35, 155, 148, 0.65);
}

.voice-name dl {
  text-align: center;
  color: #fff;
}

.voice-name dt {
  font-size: 3rem;
  margin: 10px 0;
}

.voice-name dd {
  line-height: 1.4;
}



.voice_catch-copy {
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
  padding: 13px 26px;
}

.voice_catch-copy::before,
.voice_catch-copy::after {
  content: "";
  background-image: url(../images/voice/voice-quo1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 14.27px;
  position: absolute;
}

.voice_catch-copy::before {
  background-image: url(../images/voice/voice-quo1.svg);
  top: 0;
  left: 0;
}

.voice_catch-copy::after {
  background-image: url(../images/voice/voice-quo2.svg);
  bottom: 0;
  right: 0;
}

.voice-text h4 {
  position: relative;
  font-weight: bold;
  padding-left: 10px;
  margin-bottom: 14px;
}

.voice-text h4::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--main-green);
  border-radius: 5px;
}

.voice-text h4:first-of-type {
  margin-top: 30px;
}

/* .grad-item p:last-of-type {
  padding-bottom: 30px;
} */

.voice-txt1 {
  margin-top: 20px;
  margin-bottom: 27px;
}

.voice-no {
  font-style: italic;
  color: var(--main-blue);
  opacity: 0.6;
  margin-bottom: 5px;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

.person-box {
  margin-top: 15px;
  justify-content: center;
  gap: 20px;
}

.person-prof {
  margin-top: 10px;
  margin-bottom: 5px;
}

.person-diagnosis,
.person-job {
  font-size: 0.875rem;
}

.grad-trigger .ud-arrow {
  position: absolute;
  bottom: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 136px;
  height: 7px;
}

.grad-trigger.is-show .ud-arrow::before {
  transform: rotate(45deg);
}

.grad-trigger.is-show .ud-arrow::after {
  transform: rotate(-45deg);
}

.grad-item {
  padding: 25px 20px 65px 20px;
}

.voice-frontbox {
  margin-bottom: 40px;
}

.center-button.ud-arrow::before {
  right: calc(70px - 7px);
}

.center-button.ud-arrow::after {
  right: 70px;
}

@media screen and (max-width: 768px) {


  .voice-wrap {
    display: block;
  }

  .voice-name {
    width: auto;
    display: flex;
    padding: 10px 0 10px 10px;
    align-items: center;
  }

  .voice-name img {
    width: 90px;
  }

  .voice_catch-copy {
    font-size: 1rem;
    padding: 3px 26px 0;
  }

  .voice-name dl {
    text-align: left;
    margin-left: 10px;
    margin-bottom: 10px;
  }

  .voice-name dt {
    font-size: 2.1rem;
  }

  .voice-name dd {
    font-size: 1.4rem;
  }


  .voice-text h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .grad-trigger {
    width: 100%;
    height: 44px;
    padding: 13px 37px 13px 10px;
  }

  .grad-trigger:hover {
    opacity: 1;
  }

  .is-show.grad-trigger {
    padding: 10px 20px 10px 3px;
  }

  .fa-chevron-down:before {
    left: 18%;
  }



}

@media all and (min-width: 768px) {
  .voice {
    padding: 96px 0;
  }

  .voice-wrap {
    max-width: 1224px;
    margin-right: auto;
    margin-left: auto;
  }

  .grad-item {
    height: 262px;
  }

  .ttl-pattern1 {
    font-size: 2.25rem;
  }

  .lead {
    font-size: 1.25rem;
  }

  .voice-frontbox {
    display: flex;
    gap: 20px;
  }

  .voice-no {
    text-align: left;
    margin-bottom: 20px;
  }

  .voice-nobox {
    width: 60%;
  }

  .voice_catch-copy {
    max-width: 635px;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.25rem;
    padding: 13px 26px 0;
  }

  .voice_catch-copy::before, .voice_catch-copy::after {
    width: 26.6px;
    height: 21.08px;
  }

  .voice-text h4 {
    font-size: 1.125rem;
  }

  .grad-item>p {
    margin-bottom: 27px;
  }

  .grad-trigger .ud-arrow {
    width: 167px;
    bottom: 19px;
  }

  .center-button.ud-arrow::before {
    right: calc(95px - 7px);
  }

  .center-button.ud-arrow::after {
    right: 95px;
  }
}

@media all and (min-width: 992px) {
  .voice-txt1 {
    font-size: 1.5rem;
  }

  .voice-frontbox {
    display: flex;
    gap: 40px;
  }

  .person-imgbox img {
    width: 120px;
    height: 120px;
  }

  .voice-no {
    font-size: 1.125rem;
    text-align: left;
    margin-bottom: 20px;
  }

  .person-prof {
    font-size: 1.5rem;
  }

  .person-diagnosis, .person-job {
    font-size: 16px;
  }

  .voice_catch-copy {
    font-size: 1.5rem;
  }

  .grad-item {
    padding: 38px 50px 75px 50px;
  }

  .voice_catch-copy::before {
    left: -6px;
  }

  .voice_catch-copy::after {
    right: -42px;
  }

  .button.center-button {
    width: 340px;
  }
}

@media all and (min-width: 1200px) {
  .voice-frontbox {
    gap: 85px;
  }

  .grad-item {
    padding: 38px 70px 75px 70px;
  }

}

@media all and (max-width: 350px) {
  .grad-item {
    height: 295px;
  }

  .grad-item {
    padding: 25px 13px 65px;
  }

  .person-imgbox img {
    width: 75px;
  }
}

/* //voice */

/* challenge */
.challenge {
  padding: 50px 0;
}

.challenge .under-dash-pattern-2 {
  padding-bottom: 0.15em;
}

.challenge-ttl {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  font-size: 18px;
}

.challenge-ttl::before {
  content: "";
  position: absolute;
  background-image: url(../images/cta/banzai-left.svg);
  background-size: cover;
  left: -30px;
  width: 18px;
  height: 30.23px;
  bottom: 2px;
}

.challenge-ttl::after {
  content: "";
  position: absolute;
  background-image: url(../images/cta/banzai-right.svg);
  background-size: cover;
  right: -26px;
  width: 18px;
  height: 30.23px;
  bottom: 2px;
}

.challenge-frontbox {
  margin-bottom: 40px;
}

.challenge-card-ttl {
  color: var(--main-green);
  font-size: 1.25rem;
  margin-bottom: 13px;
}

.challenge-card-ttl span {
  font-size: 0.75rem;
}

.challenge-inner-ttl {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.challenge-frontbox-txt {
  font-size: 1.125rem;
  line-height: 1.6;
}

.challenge-frontbox-txt span {
  font-weight: 600;
}

.challenge-inner-txt1 {
  color: var(--main-blue);
  font-style: italic;
  opacity: 0.6;
}

.challenge-inner-txt2 {
  font-size: 1.125rem;
}

.challenge-inner-txt3 {}

.challenge-step {
  border-top: 1px solid var(--grayborder);
  border-bottom: 1px solid var(--grayborder);
  padding: 40px 0;
}

.button.center-button {
  background: var(--main-green);
  display: grid;
  place-items: center;
  height: 50px
}

.challenge-under-txt {
  color: var(--main-green);
  margin-bottom: 20px;
}


.challenge-text .grad-item {
  height: 350px;
}

.currlculum {
  margin: 40px 0 45px;
}

.challenge-frontbox {
  height: 270px;
}

@media all and (min-width: 576px) {
  .challenge-frontbox {
    height: 220px;
  }

  .challenge-text .grad-item {
    height: 285px;
  }
}

@media all and (min-width: 768px) {
  .challenge {
    padding: 100px 0;
  }

  .challenge-frontbox-txt {
    font-size: 1.25rem;
  }

  .challenge-ttl {
    font-size: 1.75rem;
  }

  .challenge-inner-ttl {
    font-size: 1.25rem;
  }

  .challenge-frontbox {
    height: 240px;
  }

  .challenge-text .grad-item {
    height: 320px;
  }

  .challenge-card-ttl {
    font-size: 1.75rem;
    margin-bottom: 29px;

  }

  .challenge-card-ttl span {
    font-size: 1rem;
  }

  .challenge-under-txt {
    text-align: center;
  }
}

@media all and (max-width: 374px) {
  .challenge-text .grad-item {
    height: 370px;
  }
}

@media all and (max-width: 350px) {
  .button.center-button {
    width: 250px;
  }
}

/* //challenge */

/* center */

.center {
  padding-top: 50px;
  padding-bottom: 50px;
}

.center-header {
  background-image: url(../images/center/center-map.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

@supports (background-image: url("../images/center/center-map.webp")) {
  .center-header {
    background-image: url(../images/center/center-map.webp);
  }
}

.center-circlebox>.d-flex {
  justify-content: center;
  gap: 15px;
}

.center-cercle {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  text-align: center;
  color: white;
}

.center-cercle_ttl {
  font-size: 0.875rem;
}

.center-cercle_txt {
  font-size: 8px;
}

.center-cercle_number {
  font-size: 1.625rem;
  line-height: 1.2;
}

.center-cercle_center {
  font-size: 0.75rem;
}

.cercle-w {
  background-color: var(--main-green);
  padding-top: 22px;
}

.cercle-c {
  background-color: #05C3DE;
  padding-top: 10px;
}

.center-coution {
  text-align: center;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--gray1);
}

.center-content {
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
}

.center-header>.ttl-pattern2 {
  text-align: center;
  font-size: 20px;
}

.lpcenter_name.arrow::before {
  bottom: calc(50% - 0px);
  transform: rotate(0deg);
}

.lpcenter_name.arrow::after {
  bottom: calc(50% - 0px);
  transform: rotate(-45deg);
}

.center_li {
  border-bottom: 1px solid var(--grayborder);
  padding: 13px 0;
}

.center_list {
  display: none;
  margin: 0 15px;
  padding: 0 0 30px 0;
}

.center_list.on {
  display: block;
}

.lpcenter_name {
  padding: 10px;
  background-color: var(--main-blue);
  color: white;
  font-size: 1.125rem;
  position: relative;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}


.lpcenter_name::after {
  content: "";
  position: absolute;
}

.lpcenter_name.active.ud-arrow::after {
  transform: rotate(-45deg);
}

.lpcenter_name.active.ud-arrow::before {
  transform: rotate(45deg);
}

.lpcenter_btn_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lpcenter_btn_txt {
  width: 100%;
  text-align: center;
  font-size: 0.75rem;
  margin-right: 0;
  padding: 0 0 7px 0;
  font-weight: bold;
}

.lpcenter_btn {
  border-radius: 80px;
  background-color: #fff;
  font-weight: bold;
  font-size: 0.75rem;
  padding: 1px 7px 0;
  margin-right: 8px;
}

.lpcenter_btn:hover,
.lpcenter_btn.is-active {
  text-decoration: none;
  color: #fff;
}

.lpcenter_btn:last-of-type() {
  margin-right: 0;
}

.lpcenter_btn01 {
  border: 2px solid #ff2a77;
  color: #ff2a77;
}

.lpcenter_btn01:hover,
.lpcenter_btn01.is-active {
  background-color: #ff2a77;
}

.lpcenter_btn02 {
  border: 2px solid #FF9E1A;
  color: #FF9E1A;
}

.lpcenter_btn02:hover,
.lpcenter_btn02.is-active {
  background-color: #FF9E1A;
}

.lpcenter_btn03 {
  border: 2px solid #FB8D92;
  color: #FB8D92;
}

.lpcenter_btn03:hover,
.lpcenter_btn03.is-active {
  background-color: #FB8D92;
}

.ver12 .is-hide {
  display: none;
}

.center_list>li:first-child {
  border-top: none;
}

.center_link-time {
  font-size: 0.875rem;
  font-weight: 500;
  margin: 12px 0 0 0;
}

.center_link-past {
  margin: 3px 0 0 0;
}

.clock-icon,
.train-icon {
  margin-right: 7px;
}

.clock-icon {
  margin-top: 1px;
}

.train-icon {
  margin-top: -2px;
}

.map-icon {
  margin-right: 4px;
}

.center_link-past,
.center_link-time {
  display: flex;
}

.link-time_txt,
.link-past_txt {
  margin-top: 1.8px;
  font-size: 0.75rem;
}

.center_link-tel {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 5px;
}

.center_link-parking {
  font-size: 0.875rem;
  font-weight: 500;
}

.link-parking_txt {
  margin: 7px 0 0 0;
}

.time-br {
  display: none;
}

.map-icon img {
  width: 9px;
}

.lpcenter_wrap:before {
  top: -188px;
  width: 52px;
  height: 82px;
  right: 11px;
}

.lpcenter_in {
  margin-bottom: 15px;
}

.center_link-time {
  font-size: 0.75rem;
}

.center_link-parking {
  font-size: 0.75rem;
}

.center-circlebox {
  margin-top: 30px;
}


.center-type-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;


  /* width: 450px; */
}

.center-type-inner span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  padding: 9px 15px 8px 15px;
  color: #fff;
  border-radius: 15px;
  -ms-border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
}

.center_li {
  padding: 10px 0;
}

.is-employ {
  background-color: var(--main-green);
}

.is-independence {
  background-color: #05C3DE;
}

.is-rework {
  background-color: #4E8EC4;
}

.center_link {
  margin-bottom: 8px;
}

@media all and (min-width: 768px) {
  .center_li {
    display: table;
    width: 100%;
  }

  .center_type {
    display: table-cell;
    vertical-align: middle;
    text-align: right;
  }

  .center_link {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    max-width: 370px;
  }

  .center-type-inner {
    float: right;
    justify-content: flex-end;
  }

  .center-type-inner span {
    font-size: 16px;
  }

  .lpcenter_name:hover {
    opacity: 0.8;
  }

  .center-circlebox {
    margin-top: 0;
  }

  .center {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .center-header>.ttl-pattern2 {
    font-size: 36px;
  }

  .center_link-past,
  .center_link-time {
    display: flex;
  }

  .map-icon img {
    width: 13px;
  }

  .lpcenter_btn_txt {
    margin-right: 20px;
    padding: 8px 0;
  }

  .lpcenter_btn {
    border-radius: 80px;
    background-color: #fff;
    padding: 8px 16px;
    margin-right: 10px;
    font-weight: bold;
  }

  .lpcenter_in {
    margin-bottom: 30px;
  }

  .center_link_name {
    font-size: 1.5rem;
  }

  .link-time_txt,
  .link-past_txt {
    font-size: 16px;
  }

  .lpcenter_name {
    padding: 15px 35px;
    font-size: 1.625rem;
    border-radius: 15px;
  }

  .lpcenter_name.ud-arrow::before {
    right: 47px;
  }

  .lpcenter_name.ud-arrow::after {
    right: 55px;
  }

  .center_list {
    margin: 0 35px;
    padding: 0 0 10px 0;
  }

  .center_li {
    padding: 30px 0;
  }

  .clock-icon {
    margin-top: 2.5px;
  }

  .train-icon {
    margin-top: -1px;
  }
}

@media all and (min-width: 992px) {

  /* .center_link{
    max-width: none;
  } */
  .center-header {
    max-width: 1015px;
    margin-right: auto;
    margin-left: auto;
    background-position: 17% 50%;
  }

  .center-header .ttl-pattern2 {
    font-size: 2.25rem;
  }

  .center-circlebox {
    margin-top: 61px;
  }

  .center-cercle {
    width: 220px;
    height: 220px;
  }

  .center-cercle_ttl {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .center-cercle_txt {
    font-size: 0.875rem;
  }

  .center-cercle_number {
    font-size: 51px;
    line-height: 1.2;
  }

  .center-cercle_center {
    font-size: 1.125rem;
  }

  .cercle-w {
    padding-top: 35px;
  }

  .cercle-c {
    padding-top: 29px;
  }

  .center-coution {
    text-align: end;
    font-size: 16px;
    margin-top: 16px;
  }

  .center-header {
    display: flex;
    justify-content: space-between;
  }

  .lpcenter_name {
    padding: 15px 50px;
  }

  .center_list {
    margin: 0 50px;
  }

  .center-content {
    margin-top: 51px;
  }
}

@media all and (max-width: 450px) {
  .time-br {
    display: block;
  }
}

@media all and (max-width: 350px) {
  .map-icon img {
    /* width: 14px; */
  }

  .lpcenter_btn_wrapper {
    flex-wrap: wrap;
    margin-bottom: 15px;
  }

  .lpcenter_btn_txt {
    width: 100%;
    text-align: center;
    font-size: 10px;
  }

  .lpcenter_btn {
    font-size: 10px;
    padding: 0px 7px;
    margin-right: 8px;
  }

  .lpcenter_wrap:before {
    top: -155px;
  }
}

/* center */

/* step */

.step {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--bg-lightgreen);
}

.step-cards-wrapper {
  margin: 50px 20px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;

}

.step-cards {
  max-width: 1440px;
}

.step-card-wrapper {
  margin-bottom: 40px;

}

.step-card {
  position: relative;
  padding: 28px 18px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
}

.step-card-wrapper:not(:last-child) .step-card::after {
  position: absolute;
  content: "";
  background: url(../images/step/step-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 32px;
  height: 22px;
  bottom: -32px;
}

.step-card-wrapper:nth-child(5) {
  margin-bottom: 0;
}

.step-card-heading-wrapper {
  text-align: center;
  margin-bottom: 10px;
}

.step-card-heading-sub {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--main-green);
  font-weight: bold;
  font-size: 0.875rem;
  line-height: 2;
}

.step-card-heading {
  font-weight: bold;
  font-size: 1.125rem;
  letter-spacing: 0.03em;
  margin-bottom: 0;
}

.step-card-text {
  font-weight: 500;
}

.step-card-image-wrapper {
  margin-bottom: 15px;
}

.step-card-link {
  color: var(--main-blue);
  font-weight: bold;
  text-decoration: underline;
}

.step-card-link:hover {
  color: var(--main-blue);
}


@media all and (min-width: 374px) {}

@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {
  .step {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .step-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .step-card-wrapper {
    width: 30%;
    padding-bottom: 0;
    margin-right: 30px;
  }

  .step-card-wrapper:nth-child(3) {
    margin-right: 0;
  }

  .step-card-wrapper:nth-child(4) {
    margin-bottom: 0;
  }

  .step-card-wrapper:nth-child(5) {
    margin-right: 0;

  }

  .step-card {
    height: fit-content;
    height: 100%;
    justify-content: start;
  }

  .step-card-wrapper:not(:last-child) .step-card::after {
    width: 32px;
    height: 22px;
    right: -32px;
    top: 50%;
    transform: rotate(-90deg);

  }
}

@media all and (min-width: 992px) {
  .step {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .step-card-heading-sub {
    font-size: 1rem;
    line-height: 2;
  }

  .step-card-heading {
    font-size: 1.25rem;
  }
}

@media all and (min-width: 1200px) {
  .step-card-heading-sub {
    font-size: 1.25rem;
    line-height: 2;
  }

  .step-card-heading {
    font-size: 1.5rem;
  }
}

@media all and (min-width: 1400px) {
  .step-card-wrapper {
    flex: 1;
    padding-bottom: 0;
    margin-right: 30px;
    max-width: 256px;
    margin-bottom: 0;
  }

  .step-card-wrapper:nth-child(3) {
    margin-right: 30px;
  }

}


/* //step */


/* faq */
.faq {
  padding: 50px 0;
}

.faq dd {
  margin-bottom: 0;
}

.FAQ-items {
  background: var(--bg-lightgreen);
  border-radius: 5px;
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 15px;
}

.FAQ-icon {
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.FAQ-wrap>.text-center {
  margin-bottom: 20px;
}

.Q-box-inner .FAQ-icon {
  background-color: var(--main-blue);
  color: #FFF;
}

.A-box-inner .FAQ-icon {
  background-color: #FFF;
  color: var(--main-blue);
}

.Q-box-inner {
  height: 68px;
  border-radius: 5px;
  background: var(--bg-lightgreen);
  padding: 20px 50px 20px 10px;
  margin-bottom: 15px;
  display: block;

  align-items: center;
}

.Q-box {
  height: 68px;
  border-radius: 5px;
  background: var(--bg-lightgreen);

}

.Q-box-inner, .A-box-inner {
  display: flex;
  gap: 15px;
}

.A-box-inner {
  padding: 15px 10px 15px 10px;
}

.FAQ-items a {
  color: #333;
}

.FAQ-items a:hover {
  opacity: 1;
}

.FAQ-txt {
  width: 95%;
  line-height: calc(20/16);
}

.FAQ-items .ud-arrow::after, .FAQ-items .ud-arrow::before {
  background-color: var(--main-blue);
}

.FAQ-items .is-accordion-head-opened.ud-arrow::before {
  transform: rotate(45deg);
}

.FAQ-items .is-accordion-head-opened.ud-arrow::after {
  transform: rotate(-45deg);
}

.FAQ-items .ud-arrow:has(.is-accordion-head-opened)::before {
  transform: rotate(45deg);
}

.FAQ-items .ud-arrow:has(.is-accordion-head-opened)::after {
  transform: rotate(-45deg);
}

@media all and (min-width: 768px) {
  .faq {
    padding: 100px 0;
  }

  .FAQ-icon {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
  }

  .Q-box-inner {
    padding: 20px 50px 20px 45px;
  }

  .A-box-inner {
    padding: 15px 10px 15px 45px;
  }

  .FAQ-items .ud-arrow::before {
    right: 42px;
  }

  .FAQ-items .ud-arrow::after {
    right: 50px;
  }


}

/* //faq */

/* company */
.company {
  padding-top: 50px;
  padding-bottom: 50px;
  margin: 50px 0;
  background-color: var(--bg-lightgreen);
}

.company-content-wrapper {
  margin: 20px auto 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.company-text-wrapper {
  margin-bottom: 30px;
}

.company-text-heading {
  font-size: 1.125rem;
  color: var(--main-blue);
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

.company-text {
  font-weight: 500;
  line-height: 1.5;
}

.company-card {
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
  border-radius: 15px;
  padding: 30px 20px;
}

.company-card-dl {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.company-card-dt {
  width: 160px;
  padding-left: 5px;
  padding-top: 20px;
  padding-bottom: 12px;
  line-height: 1;
  color: var(--main-green);
  font-weight: bold;
}

.company-card-dd {
  width: 100%;
  padding-top: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grayborder);
  margin-bottom: 0;
  line-height: 1;
  padding-left: 5px;
  font-weight: 500;
}

.company-card-dd-text-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray1);
}


.company-card-image-wrapper {
  display: flex;
  justify-content: center;

}

.company-card-image {
  border-radius: 50%;
}

.company-card-ul {
  margin-bottom: 10px;
}

.company-card-ul-item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.company-card-ul-item:last-child {
  margin-bottom: 0;
}


.company-card-ul-item::before {
  position: absolute;
  margin: auto;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  top: 7px;
  border-radius: 50%;
  background-color: var(--main-blue);
}


.company-card-ol {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;

}

.company-card-ol-item {
  margin-bottom: 10px;

}

.company-card-ol-item:last-child {
  margin-bottom: 0;
}

.company-card-ol-item-text-number {
  padding-right: 15px;
  color: var(--main-blue);
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.company-card-ol-item-text {
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  justify-content: left;
}

@media all and (min-width: 374px) {
  .company-content-wrapper {
    max-width: 400px;
  }

}

@media all and (min-width: 576px) {
  .company {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .company-text-heading {
    margin-bottom: 25px;
  }

  .company-text-wrapper {
    margin-bottom: 40px;
  }

  .company-content-wrapper {
    max-width: 650px;
  }

  .company-card-image-wrapper {
    /* margin-bottom: 20px; */
  }

  .company-card {
    padding: 40px 30px;
  }

  .company-card-dt {
    border-bottom: 1px solid var(--grayborder);
  }

  .company-card-dd {
    width: calc(100% - 160px);
    padding-top: 20px;
  }
}

@media all and (min-width: 768px) {
  .company {
    padding-top: 100px;
    padding-bottom: 100px;
    margin: 100px 0;
  }

  .company-content-wrapper {
    max-width: 750px;
  }
}

@media all and (min-width: 992px) {

  .company-content-wrapper {
    max-width: 850px;

  }

  .company-card {
    padding: 50px 90px;
  }

  .company-card-image-wrapper {
    margin-bottom: 15px;
  }

  .company-card-image {
    width: 232px;
  }

}

@media all and (min-width: 1200px) {
  .company-content-wrapper {
    max-width: 1000px;
  }

  .company-text-heading {
    font-size: 1.5rem;
    line-height: calc(38/24);
    letter-spacing: 0.03em;
  }

  .company-text {
    font-size: 1.125rem;
    line-height: calc(28/18);
  }

  .company-card-dt {
    /* width: 160px; */
    /* padding-left: 5px; */
    padding-top: 25px;
    padding-bottom: 25px;
    line-height: 1;
    color: var(--main-green);
    font-weight: bold;
  }

  .company-card-dd {
    padding-top: 25px;
  }

  .company-card-ul, .company-card-ol {
    margin-bottom: 15px;
  }

  .company-card-dd-text-sub {
    font-size: 0.875rem;
  }

  .company-card-image {
    width: 262px;
  }


}

@media all and (min-width: 1400px) {}


/* //company */

/* footer */
footer {
  margin-top: 50px;
  background: var(--main-green);
  color: #fff;
  padding-bottom: 20px;
}

footer .inner {
  padding: 35px 10px 15px 10px;
}

footer .title {
  font-size: 1.25rem;
  margin-bottom: 28px;
}

footer .contents p {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}

footer .contents small {
  text-align: center;
  display: block;
  font-size: .875rem;
}

@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 0px;

  }

  footer .inner {
    /* padding: 25px 10px 15px 10px !important; */
    padding: 28px 10px 45px 10px !important;
  }
}

@media all and (min-width: 768px) {
  footer {
    margin-top: 100px;
  }

  footer .title {
    font-size: 1.5rem;
  }
}

@media all and (min-width: 1200px) {
  footer .contents p {
    max-width: 1000px;
  }
}

/* //footer */


/* 20241222追記　FVに地域別バナー追加 */
.fv-newbarner {
  height: 11.2vw;
  margin-left: -0.53vw;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid #11ACB2;
  border-radius: 0 10px 10px 0;
  display: grid;
  place-items: center;
  padding: 0 4vw 0 1.33vw;
}


.fv-newbarner-container {}

.fv-newbarner-new {
  padding-top: 0.8vw;
}

.fv-newbarner-newtxt {
  font-size: 3.2vw;
  font-weight: 700;
  letter-spacing: 0.03em;
  transform: rotate(-90deg);
  color: var(--main-orange2);
  text-wrap: nowrap;
  font-family: Arial, Helvetica, sans-serif;
}

.fv-newbarner-name {}

.fv-newbarner-nametxt {
  font-size: 4vw;
  font-weight: 700;
  text-wrap: nowrap;

}

.fv-newbarner-nametxt .under-dash-pattern-3 {
  padding-bottom: 1.1vw;
}

.fv-newbarner-open {
  margin-left: 2.67vw;
}

.fv-newbarner-opentxt {
  font-size: 4vw;
  font-weight: 700;
  color: var(--main-blue);
  padding-top: 0.53vw;
  text-wrap: nowrap;
}

.fv-newbarner-opentxt .small-txt {
  font-size: 2.93vw;
}

@media all and (min-width: 768px) {
  .fv-newbarner {
    position: absolute;
    bottom: -11vw;
    left: 27vw;
    height: 7.54vw;
    margin-left: 0;
    padding: 0px 1.5vw 0 0.33vw;
    border-radius: 15px;
    border: 2px solid #11ACB2;
  }

  .fv-newbarner-new {
    padding-top: 0.73vw;
  }

  .fv-newbarner-newtxt {
    font-size: 1.46vw;
  }

  .fv-newbarner-name {
    margin-bottom: 0.5vw;
  }

  .fv-newbarner-nametxt {
    font-size: 1.46vw;

  }

  .fv-newbarner-nametxt .under-dash-pattern-3 {
    padding-bottom: 0.6vw;
  }

  .fv-newbarner-open {
    margin-left: 0;
  }

  .fv-newbarner-opentxt {
    font-size: 1.46vw;
  }

  .fv-newbarner-opentxt .small-txt {
    font-size: 0.94vw;
  }

  .fv-newbarner-opentxt .middle-txt {
    font-size: 1.354vw;
  }
}