@charset "UTF-8";

/*
Theme Name : workfor-general
*/
/* ===================
ベーススタイル
=================== */
:root {
  --font-12: 0.75rem;
  --font-14: 0.875rem;
  --font-16: 1rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-24: 1.5rem;
  --font-32: 2rem;
  --font-40: 2.5rem;
  --font-en: 120px;
  --gutter-8: 8px;
  --gutter-16: 16px;
  --gutter-24: 24px;
  --gutter-32: 32px;
  --gutter-40: 40px;
  --gutter-60: 60px;
  --unit: 100px;
  --color-section: #E1A6AE;
  --color-section-d: #c35e6c;
}

@media screen and (max-width: 810px) {
  :root {
    --font-18: 1rem;
    --font-20: 1.125rem;
    --font-24: 1.25rem;
    --font-32: 1.5rem;
    --font-40: 1.75rem;
    --gutter-24: 20px;
    --gutter-32: 28px;
    --gutter-60: 40px;
    --font-en: 80px;
    --unit: 80px;
  }
}

body {
  font-family: "EB Garamond", "Shippori Mincho", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  color: #4A2E17;
  line-height: 1.6;
}

.wrap {
  width: 100%;
  padding: var(--unit) 5%;
  overflow: hidden;
  position: relative;
}

.wrap-max {
  width: 100%;
  padding: var(--unit) 0;
  overflow: hidden;
}

.inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.inner_narrow {
  width: min(810px, 100%);
  margin: 0 auto;
}

.inner-max {
  width: 100vw;
  margin: 0;
}

@media screen and (max-width: 810px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 810.1px) {
  .sp {
    display: none !important;
  }
}

.dib {
  display: inline-block;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  font-size: var(--font-18);
  line-height: 1.3;
  word-break: auto-phrase;
}

strong {
  font-weight: 700;
  font-weight: 600;
}

a,
button {
  text-decoration: none;
  color: #4A2E17;
}

ul {
  list-style: none;
}

.disc {
  list-style-type: "・ ";
  padding-left: 1em;
}

/* 電話番号a表示 */
@media screen and (min-width: 810.1px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}

.tac {
  text-align: center;
  margin-inline: auto;
}

.tar {
  text-align: right;
}

.pt-0 {
  padding-top: 0;
}

.mgt80 {
  margin-top: 80px;
}

.small {
  font-size: var(--font-14);
}

.strong {
  font-weight: 700;
  font-weight: 600;
}

p+p {
  margin-top: 8px;
}

.mincho {
  font-family: "EB Garamond", "Shippori Mincho", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  color: #4A2E17;
}

.gothic {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
}

.bg_sand {
  background: url("img/bg_sand.png") top center no-repeat;
  background-size: cover;
}

.font-20 {
  font-size: var(--font-20);
}

.font-24 {
  font-size: var(--font-24);
}

.font-32 {
  font-size: var(--font-32);
}

.font-w {
  color: #fff;
}

.ttl {
  font-size: var(--font-40);
  text-align: center;
  margin-bottom: var(--gutter-40);
}

.ttl_en {
  color: #C3D0DF;
  opacity: 0.14;
  position: absolute;
  top: 0;
  font-size: var(--font-en);
  white-space: nowrap;
}

.ttl_en.right {
  right: 2%;
}

.ttl_en.left {
  left: 2%;
}

.ttl_en.l-box_ttl_en {
  top: var(--unit);
}

/* ===================
header/nav
=================== */
header {
  position: relative;
}

.header {
  margin: 20px 5%;
  height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header h1 {
  display: contents;
}

.header h1 img {
  height: 100%;
  width: auto;
}

.main_nav {
  font-size: var(--font-18);
}

.main_nav .page li {
  margin-bottom: var(--gutter-8);
}

.links {
  margin-top: var(--gutter-32);
  opacity: 1;
  transition: opacity 0.5s ease;
}

.links li {
  margin-top: var(--gutter-16);
}

.links li a span {
  font-size: 0.9em;
}

/* PC */
@media screen and (min-width: 810.1px) {
  .links {
    opacity: 1;
    transition: opacity 0.5s ease;
  }

  .links li a p {
    width: 9em;
  }

  .links.fixed {
    position: fixed;
    bottom: 1em;
    right: -3px;
    z-index: 97;
  }

  .links.fixed .c-btn.l-line {
    border-radius: 8px 0 0 8px;
  }

  .links.fixed .c-btn.l-line::before {
    border-radius: 5px 0 0 5px;
  }

  .links.fixed .preparation {
    border-radius: 8px 0 0 8px;
  }
}

/* SP */
@media screen and (max-width: 810px) {
  .header {
    height: 46px;
  }

  header .links li+li {
    margin-top: .3em;
  }

  main .links {
    position: fixed;
    z-index: 97;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*2024/06/26追加*/
    align-items: center;
    /*2024/06/26追加*/
    width: 100%;
    margin-left: -5vw;
    padding: 16px 5%;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  main .links li {
    width: 48%;
    margin: 0 auto 10px;
  }

  main .links li a {
    width: 100%;
    text-align: center;
    line-height: 1.2;
    font-size: 0.9em;
    letter-spacing: 0.01em;
  }

  main .links li a.c-btn {
    padding: 5px;
  }

  main .links li a.c-btn::after {
    display: none;
  }

  main .links li a.c-btn.line {
    /*padding: 2px;*/
    /*padding: 8px;*/
    padding: 6.75px;
    /*2024/07/02追加*/
  }

  main .links#links {
    display: none;
  }
}



/* ===================
バーガー
=================== */
/* バーガーボタン */
.burger {
  z-index: 100;
  position: fixed;
  top: 20px;
  right: 0;
  margin: 0 5vw;
  display: flex;
  gap: .5em;
  align-items: center;
  font-size: min(4.5vw, 16px);
}

.burger a {
  padding: .8em 1.2em;
  background: linear-gradient(160deg, #90D1CA, #159A91);
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  line-height: 1.1;
  text-align: center;
}

.burger a:last-of-type {
  background: linear-gradient(160deg, #FFBCA7, #FF9270);
}

.burger_btn {
  position: relative;
  width: 52px;
  aspect-ratio: 1;
  background: linear-gradient(125deg, #E1A6AE, #C6A2BC, #86ADD4);
  text-align: center;
  border: none;
  border-radius: 8px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.burger_btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--color-section);
  font-size: 11px;
  font-weight: bold;
}

.burger_btn::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: #fff;
  top: 2px;
  left: 2px;
  border-radius: 6px;
}

.burger_btn span::before,
.burger_btn span::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-section);
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
  transition: all .5s ease-in-out;
}


.burger_btn span::after {
  top: -22%;
}

/* バーガーボタンアクティブ */

body:has(.burger_active) .burger_btn span::before {
  top: -13%;
  transform: translatex(-50%) rotate(158deg);
}

body:has(.burger_active) .burger_btn span::after {
  top: -13%;
  transform: translatex(-50%) rotate(-158deg);
}

/* バーガー内メニュー */
.burger_menu {
  position: fixed;
  background: #fff;
  width: min(100%, 10% + 20em);
  z-index: 99;
  right: -100%;
  top: 0;
  height: 100%;
  padding: 92px 5% 2em;
  overflow: scroll;
  opacity: 0;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  transition: right .5s ease-in-out, opacity .5s ease-in-out;
}

/* バーガー内メニューアクティブ */
body::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  top: 0;
  left: 0;
  z-index: 98;
  pointer-events: none;
  transition: opacity .5s ease-in-out, z-index .5s .5s ease-in-out;
}

body:has(.burger_active) {
  height: 100%;
  overflow: hidden;
}

body:has(.burger_active)::before {
  opacity: 1;
}

body:has(.burger_active) .burger_menu {
  right: 0;
  opacity: 1;
}

@media screen and (max-width: 810px) {
  .burger_menu {
    width: 100%;
  }

  .burger {
    width: 90vw;
    justify-content: flex-end;
  }

  .burger a {
    flex: 1;
    max-width: 10em;
    padding: .8em .4em;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease-in-out;
  }

  .burger_btn {
    /* margin-left: auto; */
  }

  body:has(.burger_active) .burger a {
    opacity: 1;
    pointer-events: painted;
  }
}

/* ===================
swiper
=================== */
.swiper_fv {
  flex: 1;
  border-radius: 80px 0 80px 80px;
  height: 700px;
  /*2024/07/02追加*/
}

@media screen and (max-width: 810px) {
  .swiper_fv {
    width: 100vw;
    margin-left: -5vw;
    height: auto;
    /*2024/07/02追加*/
  }
}

@media screen and (min-width: 810.1px) {
  .swiper_fv .swiper-wrapper {
    aspect-ratio: 3/2;
    height: 100%;
  }
}

@media screen and (max-width: 810px) {
  .swiper_fv .swiper-wrapper {
    aspect-ratio: 2/3;
    max-height: 600px;
  }
}

.swiper_fv .swiper-slide-active img,
.swiper_fv .swiper-slide-duplicate-active img,
.swiper_fv .swiper-slide-prev img,
.swiper_fv img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  -webkit-animation: zoomUp 8s linear 0s 1 normal both;
  animation: zoomUp 8s linear 0s 1 normal both;
}

/* ===================
button
=================== */
.c-btn.l-line {
  padding: 10px 35px 10px 18px;
  border-radius: 8px;
}

.c-btn.l-line::before {
  border-radius: 5px;
}

.c-btn.l-line::after {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid var(--color-section);
  border-right: 2px solid var(--color-section);
  transform: translatey(-50%) rotate(45deg);
  top: 50%;
  right: 24px;
}

.c-btn.line {
  display: inline-block;
  position: relative;
  border-radius: 8px;
  background: #fff;
  /*border: 3px solid #B6DCC9;*/
  border: 2px solid #00b900;
  /*2024/07/02追加*/
  font-family: "Noto Sans JP", Helvetica;
  /*2024/07/02追加*/
  /*padding: 7px 32px 7px 15px;*/
  padding: 14px 15px;
  /*2024/07/02追加*/
  font-weight: 900;
  transition: all 0.2s ease;
  /*2024/07/02追加*/
  color: #00b900;
  font-weight: 900;
  letter-spacing: 0.28px;
  line-height: normal;
  text-align: center;
  width: 100%;
}

.c-btn.line:hover {
  opacity: 0.6;
  /*2024/07/02追加*/
}

.link-button-txt {
  width: 100% !important;
  /*2024/07/02追加*/
}

.pc-cbtn {
  border-radius: 5px 0 0 5px !important;
  /*2024/06/26追加*/
}

.c-btn.line img {
  width: 1.3em;
  height: 1.3em;
  position: absolute;
  border-radius: 0;
  top: 50%;
  /*right: 12px;*/
  left: 12px;
  /*2024/07/02追加*/
  transform: translateY(-50%);
}

@media screen and (max-width: 810px) {
  .c-btn.line img {
    left: 5px;
    /*2024/07/02追加*/
  }
}

.c-btn.gradation {
  display: block;
  color: #fff;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  font-weight: 700;
  font-weight: 600;
  margin-top: var(--gutter-16);
  padding: 1em;
  line-height: 1.3;
  font-size: var(--font-18);
  border-radius: 8px;
}

.c-btn.gradation::before {
  content: "";
}

.c-btn.gradation::before:first-of-type {
  width: 1.5em;
  height: 1.5em;
}

.c-btn.sby {
  background: linear-gradient(to left, #E1A6AE, #C6A2BC, #86ADD4);
}

.c-btn.tksk {
  background: linear-gradient(to left, #F3B4A8, #BCA4DE);
}

.preparation {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.preparation::before {
  content: "";
  position: absolute;
  z-index: 4;
  background: #4A2E17;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.preparation::after {
  content: "準備中";
  color: #fff;
  position: absolute;
  text-align: center;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translatex(-50%) translatey(-50%);
}

/* ===================
other
=================== */
.c-star {
  position: absolute;
  top: 10px;
  z-index: 5;
  width: min(210px, 30%);
}

.c-star.right {
  right: 0;
}

.c-star.left {
  left: 0;
}

.c-star img:first-of-type {
  -webkit-animation: star1 5s ease-in-out infinite;
  animation: star1 5s ease-in-out infinite;
}

.c-star img:last-of-type {
  position: absolute;
  top: 0;
  -webkit-animation: star2 3s ease-in-out infinite;
  animation: star2 3s ease-in-out infinite;
}

/* ===================
box・枠類
=================== */
.l-line {
  position: relative;
  display: inline-block;
  width: 100%;
  /*2024/06/26追加*/
}

.l-line::before {
  content: "";
  position: absolute;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background: #fff;
  right: 3px;
  top: 3px;
}

.l-line p {
  position: relative;
}

.l-line.l-box {
  padding: var(--gutter-40) 5%;
}

.l-line.l-box::before {
  border-radius: 58px 0 58px 58px;
}

.l-box {
  padding: var(--unit) min(5%, 60px);
  border-radius: 60px 0 60px 60px;
}

.l-box.sby {
  background: linear-gradient(to left, #E1A6AE, #C6A2BC, #86ADD4);
}

.l-box.tksk {
  background: linear-gradient(to left, #F3B4A8, #BCA4DE);
}

.l-nomg {
  margin: 0 calc(50% - 50vw);
  background: #ccc;
}

.l-feature {
  display: grid;
  justify-content: center;
  gap: var(--gutter-40);
}

@media screen and (min-width: 810.1px) {
  .l-feature {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter-16) 5%;
  }
}

.l-feature:last-of-type {
  margin-top: var(--gutter-40);
}

@media screen and (min-width: 810.1px) {
  .l-feature:last-of-type {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-feature_card {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: var(--gutter-16);
}

.l-feature_card img {
  width: 150px;
  margin-inline: auto;
  margin-top: auto;
}

.l-feature_card img.size-l {
  width: 170px;
}

.l-feature_card div {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.l-feature_card div p {
  text-align: right;
  font-size: var(--font-14);
  color: #C3D0DF;
  display: flex;
  align-items: center;
  margin-bottom: var(--gutter-8);
}

.l-feature_card div p::before {
  content: "";
  height: 1px;
  width: 100%;
  flex: 1;
  background: #C3D0DF;
  margin-right: 1em;
}

.l-feature_card div h3 {
  font-size: var(--font-24);
}

.l-feature_card>ul,
.l-feature_card>p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  word-break: break-all;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
}

.l-feature_card ul li {
  padding-left: 1em;
  position: relative;
}

.l-feature_card ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.l-support>*+* {
  margin-top: var(--gutter-40);
}

@media screen and (min-width: 810.1px) {
  .l-support_card {
    display: flex;
    align-items: center;
    gap: 5%;
  }
}

@media screen and (min-width: 810.1px) {
  .l-support_card div {
    width: 50%;
  }
}

@media screen and (max-width: 810px) {
  .l-support_card div {
    margin-top: var(--gutter-16);
  }
}

.l-support_card div span {
  display: flex;
  align-items: center;
  gap: 1em;
  font-size: var(--font-14);
  color: #C3D0DF;
}

.l-support_card div h3 {
  font-size: var(--font-24);
  margin-top: var(--gutter-8);
}

.l-support_card div p {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  word-break: break-all;
  margin-top: var(--gutter-16);
}

.l-support_card img {
  border-radius: 40px 0 40px 40px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 20em;
}

.l-support_card img.top {
  -o-object-position: top;
  object-position: top;
}

@media screen and (max-width: 810px) {
  .l-support_card img {
    aspect-ratio: 3/1;
    min-height: 200px;
  }
}

@media screen and (min-width: 810.1px) {
  .l-support_card:nth-of-type(odd) img {
    width: calc(50vw - 5%);
    margin-left: calc(50% - 50vw);
  }
}

.l-support_card:nth-of-type(odd) div span::before {
  content: "";
  flex: 1;
  height: 1px;
  background: #C3D0DF;
}

@media screen and (min-width: 810.1px) {
  .l-support_card:nth-of-type(even) {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 810.1px) {
  .l-support_card:nth-of-type(even) img {
    width: calc(50vw - 5%);
    margin-right: calc(50% - 50vw);
  }
}

.l-support_card:nth-of-type(even) h3 {
  text-align: right;
}

.l-support_card:nth-of-type(even) div span::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #C3D0DF;
}

.l-voice .swiper-wrapper {
  transition-timing-function: linear;
  word-break: break-all;
}

.l-voice .swiper-wrapper .swiper-slide {
  padding: 50px 0 0 66px;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
}

@media screen and (max-width: 810px) {
  .l-voice .swiper-wrapper .swiper-slide {
    padding: 25px 8px 0 33px;
  }
}

.l-voice .swiper-wrapper .swiper-slide img {
  position: absolute;
  overflow: visible;
  top: 0;
  left: 32px;
  width: 100px;
}

@media screen and (max-width: 810px) {
  .l-voice .swiper-wrapper .swiper-slide img {
    left: 8px;
    width: 50px;
  }
}

.l-voice .swiper-wrapper .swiper-slide div {
  padding: calc(50px - 1em) var(--gutter-24) var(--gutter-32);
  border: 2px solid #86ADD4;
  border-radius: 0 0 32px 32px;
}

@media screen and (max-width: 810px) {
  .l-voice .swiper-wrapper .swiper-slide div {
    padding: 25px 16px;
  }
}

.l-voice .swiper-wrapper .swiper-slide div span {
  text-align: right;
  display: block;
  color: #86ADD4;
}

.l-voice .swiper-wrapper .swiper-slide div p {
  margin-top: var(--gutter-8);
}

.l-record .swiper-wrapper {
  transition-timing-function: linear !important;
  word-break: break-all;
  margin-bottom: var(--gutter-60);
}

.l-record .swiper-wrapper .swiper-slide {
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  text-align: center;
  font-size: 0.9em;
}

@media screen and (max-width: 810px) {
  .l-record .swiper-wrapper .swiper-slide {
    text-align: left;
  }
}

.l-record .swiper-wrapper .swiper-slide>div {
  border: 1px solid #ccc;
  border-radius: 32px 0 32px 32px;
  padding: var(--gutter-32) var(--gutter-40);
  margin-bottom: 0.5em;
}

@media screen and (max-width: 810px) {
  .l-record .swiper-wrapper .swiper-slide>div {
    padding: 16px 24px;
  }
}

.l-record .swiper-wrapper .swiper-slide>div img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

.l-doctor {
  position: relative;
  width: 100%;
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: var(--gutter-40);
}

@media screen and (min-width: 810.1px) {
  .l-doctor {
    grid-template-columns: 40% 1fr;
    gap: var(--gutter-16) 5%;
  }
}

@media screen and (max-width: 810px) {
  .l-doctor {
    grid-template-columns: 1fr;
  }

  .l-doctor>div:first-child {
    width: min(200px, 70%);
    margin-inline: auto;
  }

  .l-doctor>div:last-child {
    width: fit-content;
  }
}

.l-doctor ul {
  margin: var(--gutter-24) 0;
}

.l-program {
  margin: var(--gutter-40) 0 var(--gutter-32);
  display: grid;
  gap: 1em min(var(--gutter-24), 2.5%);
}

@media screen and (min-width: 810.1px) {
  .l-program {
    margin: var(--gutter-40) 0;
    grid-template-columns: repeat(2, 1fr);
  }

  .l-program:has(> :nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.l-program>div {
  border-radius: 28px 0 28px 28px;
}

.l-program img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/10;
  border-radius: 28px 0 28px 28px;
}

.program-box {
  border: 3px solid var(--color-section);
  padding: var(--gutter-32) min(2em, 10%);
  border-radius: 28px 0 28px 28px;
  background: #fff;
}

.ttl_sub2 {
  font-size: var(--font-24);
  width: fit-content;
  margin-inline: auto;
  text-align: center;
  margin-bottom: var(--gutter-24);
}

.line_btm {
  padding-bottom: var(--gutter-8);
  border-bottom: 2px solid var(--color-section);
}

.color-section {
  color: var(--color-section-d);
}

.program-box2 {
  border: none;
  padding-inline: 0;
}

.user-wrap {
  padding: var(--gutter-40) 5%;
}

@media screen and (max-width: 810px) {
  .user-wrap {
    padding: var(--gutter-40) 5%;
  }
}

.voice-box {
  position: relative;
  display: grid;
  gap: var(--gutter-40);
  grid-template-columns: 20% 1fr;
}

@media screen and (max-width: 810px) {
  .voice-box {
    grid-template-columns: 1fr;
  }

  .voice-box>div:first-child {
    display: grid;
    grid-template-columns: min(40%, 150px) 8em;
    align-items: center;
    justify-content: center;
  }
}

.voice-box span {
  display: block;
  text-align: center;
  color: #86ADD4;
  padding-top: 1em;
  margin-inline: auto;
  width: fit-content;
}

.l-company {
  margin: var(--gutter-40) 0;
  display: grid;
  gap: var(--gutter-32);
}

@media screen and (min-width: 810.1px) {
  .l-company {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gutter-40);
  }
}

.l-company .company-box {
  border: 3px solid var(--color-section);
  padding: var(--gutter-32);
  border-radius: 28px 0 28px 28px;
}

.l-company .company-box>div {
  text-align: center;
  color: var(--color-section-d);
}

.l-company .company-box>div span {
  display: block;
  font-weight: bold;
  margin: 1em 0 2em;
}

.l-company .company-box>div img {
  width: min(50%, 200px);
  margin-inline: auto;
}

.l-taiyo h3 {
  text-align: center;
  font-size: var(--font-24);
}

.l-taiyo>div:not([class]) {
  width: 70%;
  margin-inline: auto;
}

.l-taiyo .taiyo {
  margin-top: var(--gutter-24);
  display: grid;
}

@media screen and (max-width: 810px) {
  .l-taiyo .taiyo {
    gap: var(--gutter-40);
  }
}

@media screen and (min-width: 810.1px) {
  .l-taiyo .taiyo {
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-taiyo .taiyo h4 {
  margin: 0.5em 0 var(--gutter-16);
  font-size: var(--font-20);
}

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

@media screen and (min-width: 810.1px) {
  .fv .inner {
    display: flex;
    gap: 5%;
    align-items: center;
  }
}

.fv .inner h2 {
  position: absolute;
  z-index: 2;
  right: 0;
  /*bottom: 1em;*/
  bottom: 1.3em;
  /*2024/07/02*/
  font-size: var(--font-32);
}

@media screen and (max-width: 810px) {
  .fv .inner h2 {
    top: -100%;
    bottom: inherit;
    right: 50%;
    transform: translateX(50%);
    writing-mode: vertical-rl;
    -webkit-animation: fvAnimWrapSp 0.4s ease-in-out 1s forwards;
    animation: fvAnimWrapSp 0.4s ease-in-out 1s forwards;
  }
}

.fv .inner .catch-copy {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: block;
}

@media screen and (min-width: 810.1px) {
  .fv .inner .catch-copy:last-of-type {
    margin-top: .3em;
  }
}

@media screen and (max-width: 810px) {
  .fv .inner .catch-copy {
    margin-bottom: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin-top: 0;
    margin-right: 0.4em;
  }
}

.fv .inner .catch-copy:last-of-type>span span {
  background: url("img/bg-wf2.svg") no-repeat center;
  background-size: cover;
  -webkit-background-clip: text;
}

@media screen and (max-width: 810px) {
  .fv .inner .catch-copy:last-of-type>span span {
    background: url("img/bg-wf2-sp.svg") no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
  }
}

.fv .inner .catch-copy>span {
  display: block;
  position: relative;
  right: 0;
  overflow: hidden;
  background: #fff;
  margin-left: auto;
}

@media screen and (min-width: 810.1px) {
  .fv .inner .catch-copy>span {
    height: 1.9em;
    width: 0;
    -webkit-animation: fvAnimWrap 0.4s ease-in-out 1s forwards;
    animation: fvAnimWrap 0.4s ease-in-out 1s forwards;
    border-radius: 16px 0 0 16px;
  }
}

@media screen and (max-width: 810px) {
  .fv .inner .catch-copy>span {
    padding: 0.4em 0.2em 0.8em;
    margin-bottom: auto;
    border-radius: 0 0 16px 16px;
  }
}

.fv .inner .catch-copy>span span {
  display: block;
  position: relative;
  right: 0;
  opacity: 0;
  padding-block: 0.2em;
  background: url("img/bg-wf1.svg") no-repeat center;
  background-size: cover;
  -webkit-background-clip: text;
  color: transparent;
}

@media screen and (min-width: 810.1px) {
  .fv .inner .catch-copy>span span {
    -webkit-animation: fvAnimInner 1s ease-in-out 1s forwards;
    animation: fvAnimInner 1s ease-in-out 1s forwards;
  }
}

@media screen and (max-width: 810px) {
  .fv .inner .catch-copy>span span {
    -webkit-animation: fvAnimInnerSp 1s ease-in-out 1s forwards;
    animation: fvAnimInnerSp 1s ease-in-out 1s forwards;
    background: url("img/bg-wf1-sp.svg") no-repeat center;
    background-size: cover;
    -webkit-background-clip: text;
  }
}

/* ===================
働くことに不安のある、あなたへ。
=================== */
.anxiety {
  position: relative;
}

.anxiety::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: var(--unit);
  background: #fff;
  transform: skew(55deg, 0);
  transform-origin: bottom;
}

.anxiety::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: var(--unit);
  background: #fff;
  transform: skew(-55deg, 0);
  transform-origin: bottom;
}

.anxiety_talk {
  display: flex;
  gap: var(--gutter-32);
  align-items: flex-end;
}

.anxiety_talk img {
  width: 168px;
}

.anxiety_talk div {
  flex: 1;
  font-family: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Meiryo", sans-serif;
  margin-bottom: var(--gutter-32);
}

@media screen and (max-width: 810px) {
  .anxiety_talk div {
    padding-inline: 60px;
  }
}

.anxiety_talk div p {
  border-radius: 8px;
  color: #fff;
  padding: 0.5em 1.2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.anxiety_talk div p::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 10px;
}

@media screen and (max-width: 810px) {
  .anxiety_talk div p::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
  }
}

.anxiety_talk div p:nth-of-type(odd) {
  background: var(--color-section);
  margin-left: auto;
}

.anxiety_talk div p:nth-of-type(odd)::before {
  background: url("img/balloon-p.svg") no-repeat top left;
  background-size: contain;
  right: -16px;
}

@media screen and (max-width: 810px) {
  .anxiety_talk div p:nth-of-type(odd)::before {
    right: -8px;
  }
}

@media screen and (max-width: 810px) {
  .anxiety_talk div p:nth-of-type(odd)::after {
    background: url("img/f-sp.svg") no-repeat top left;
    background-size: cover;
    right: -60px;
    top: -6px;
  }
}

.anxiety_talk div p:nth-of-type(even) {
  background: #86ADD4;
  margin-right: auto;
}

.anxiety_talk div p:nth-of-type(even)::before {
  background: url("img/balloon-b.svg") no-repeat top left;
  background-size: contain;
  left: -16px;
}

@media screen and (max-width: 810px) {
  .anxiety_talk div p:nth-of-type(even)::before {
    left: -8px;
  }
}

@media screen and (max-width: 810px) {
  .anxiety_talk div p:nth-of-type(even)::after {
    background: url("img/m-sp.svg") no-repeat top left;
    background-size: cover;
    left: -60px;
    top: -6px;
  }
}

.anxiety_next {
  padding-top: calc(var(--unit) / 2);
}

.anxiety_next .ttl {
  font-size: var(--font-32);
  margin-block: var(--gutter-16) var(--gutter-40);
}

.anxiety_next .ttl_supplement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
}

@media screen and (max-width: 810px) {
  .anxiety_next .ttl_supplement {
    font-size: var(--font-14);
  }
}

.anxiety_next .ttl_supplement::before {
  content: "＼";
}

.anxiety_next .ttl_supplement::after {
  content: "／";
}

.under-line {
  background: linear-gradient(transparent 30%, #FDEFCB 30%);
}

.anxiety_next .l-box span {
  display: block;
  position: relative;
  margin: var(--gutter-32) auto;
  width: 3px;
  height: 3px;
  background: #C3D0DF;
  border-radius: 50%;
}

.anxiety_next .l-box span::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #C3D0DF;
  border-radius: 50%;
  top: -6px;
}

.anxiety_next .l-box span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  background: #C3D0DF;
  border-radius: 50%;
  bottom: -6px;
}

/* ===================
あなたのお悩みお聞かせください
=================== */
.contact {
  background: url("img/bg_contact.jpg") center no-repeat;
  background-size: cover;
  position: relative;
  overflow: inherit;
}

.contact::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: #C3D0DF;
  top: -30px;
  left: calc(50% - 1px);
}

.contact::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 60px;
  background: #C3D0DF;
  bottom: -30px;
  left: calc(50% - 1px);
}

.contact .ttl {
  width: fit-content;
  margin-inline: auto;
}

.contact .ttl::before {
  content: "＼";
  position: absolute;
  left: -1.2em;
  bottom: 0;
}

.contact .ttl::after {
  content: "／";
  position: absolute;
  right: -1.2em;
  bottom: 0;
}

.contact .ttl span {
  position: relative;
}

.contact .ttl span::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  top: -5px;
  left: calc(50% - 2px);
}

.contact_wrap {
  display: flex;
  gap: 2.5%;
  margin-top: var(--gutter-40);
}

@media screen and (max-width: 810px) {
  .contact_wrap {
    flex-direction: column;
    gap: var(--gutter-24);
  }
}

.contact_card {
  background: rgba(255, 255, 255, 0.8);
  flex: 1;
  padding: var(--gutter-32) 5%;
  border-radius: 28px 0 28px 28px;
}

@media screen and (max-width: 810px) {
  .contact_card {
    display: flex;
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
    /*2024/06/26追加*/
  }
}

.contact_card>p {
  line-height: 1.2;
}

@media screen and (max-width: 810px) {
  .contact_card>p {
    font-size: var(--font-14);
    /*writing-mode: vertical-rl;*/
    writing-mode: horizontal-tb;
    /*2024/06/26追加*/
  }
}

.contact_card>p span:first-of-type {
  font-size: var(--font-32);
}

@media screen and (max-width: 810px) {
  .contact_card div {
    /*flex: 1;*/
    flex: none;
    /*2024/06/26追加*/
    width: 100%;
    /*2024/06/26追加*/
  }
}

.contact_card .c-btn.gradation {
  position: relative;
}

.contact_card .c-btn.gradation:first-of-type {
  transition: 0.5s ease-in-out all;
}

@media screen and (min-width: 810.1px) {
  .contact_card .c-btn.gradation:first-of-type:hover {
    background: #86ADD4;
  }
}

.contact_card .c-btn.gradation:first-of-type::before {
  content: "";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: url("img/ico_web.svg") no-repeat;
}

.contact_card .c-btn.gradation:first-of-type::after {
  content: "";
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 0.7em;
  height: 0.7em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.contact_card .c-btn.gradation:last-of-type::before {
  content: "";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  background: url("img/ico_tel.svg") no-repeat;
}

@media screen and (max-width: 810px) {
  .contact_card .c-btn.gradation:last-of-type::after {
    content: "";
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.7em;
    height: 0.7em;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

@media screen and (max-width: 810px) {
  .contact_card .c-btn.gradation::after {
    content: "";
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0.7em;
    height: 0.7em;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.job>div>ul {
  display: grid;
  gap: var(--gutter-16);
  grid-template-columns: repeat(auto-fit, minmax(min(19em, 80%), 1fr));
  color: #86ADD4;
}

.job>div>ul li {
  background: #fff;
  padding: 0.5em 0 0.5em 2.5em;
  border-radius: 4em 0 4em 4em;
  position: relative;
}

.job>div>ul li::before {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: 1px solid #86ADD4;
  border-radius: 50%;
  left: 0.8em;
  top: calc(50% - 0.6em);
}

.job>div>ul li::after {
  content: "";
  position: absolute;
  width: 0.3em;
  height: 0.5em;
  border-bottom: 1px solid #86ADD4;
  border-right: 1px solid #86ADD4;
  top: 50%;
  transform: rotate(45deg);
  left: 1.25em;
  top: calc(50% - 0.35em);
}

.ttl_sub {
  font-size: var(--font-24);
  text-align: center;
  margin: var(--gutter-60) 0 var(--gutter-24);
}

.program ul.program-list {
  display: grid;
  gap: var(--gutter-16);
  color: #fff;
}

@media screen and (min-width: 810.1px) {
  .program ul.program-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.program ul.program-list li {
  background: #86ADD4;
  padding: 0.5em 0 0.5em 1.5em;
  border-radius: 4em 0 4em 4em;
}

.voice {
  padding-inline: 0;
}

.record {
  padding-inline: 0;
}

.office h3 {
  text-align: center;
  font-size: var(--font-24);
  margin-bottom: var(--gutter-40);
}

@-webkit-keyframes star1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@keyframes star1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes star2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes star2 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
    transform-origin: center;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
    transform-origin: center;
  }
}

@-webkit-keyframes openAnime {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes openAnime {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* スクロールフェードイン */
.fade-up {
  opacity: 0;
  transform: translateY(50px);
}

.fade-up_on {
  -webkit-animation: fadeAnime 1s ease-in-out forwards;
  animation: fadeAnime 1s ease-in-out forwards;
}

@-webkit-keyframes fadeAnime {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeAnime {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.zoom-in {
  opacity: 0;
}

.zoom-in_on {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.blur {
  filter: blur(10px);
  will-change: filter;
}

.blur_on {
  -webkit-animation: blurAnime 0.6s ease-in-out forwards;
  animation: blurAnime 0.6s ease-in-out forwards;
}

@-webkit-keyframes blurAnime {
  100% {
    filter: blur(0);
  }
}

@keyframes blurAnime {
  100% {
    filter: blur(0);
  }
}

@media screen and (min-width: 810.1px) {
  @-webkit-keyframes fvAnimWrap {
    100% {
      width: 100%;
      padding-inline: 0.4em;
    }
  }

  @keyframes fvAnimWrap {
    100% {
      width: 100%;
      padding-inline: 0.4em;
    }
  }

  @-webkit-keyframes fvAnimInner {
    50% {
      opacity: 0;
      bottom: -1.5em;
    }

    100% {
      opacity: 1;
      bottom: -0.1em;
    }
  }

  @keyframes fvAnimInner {
    50% {
      opacity: 0;
      bottom: -1.5em;
    }

    100% {
      opacity: 1;
      bottom: -0.1em;
    }
  }
}

@media screen and (max-width: 810px) {
  @-webkit-keyframes fvAnimWrapSp {
    100% {
      top: 0;
    }
  }

  @keyframes fvAnimWrapSp {
    100% {
      top: 0;
    }
  }

  @-webkit-keyframes fvAnimInnerSp {
    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  @keyframes fvAnimInnerSp {
    50% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }
}

/*# sourceMappingURL=style.css.map */


/* ===================
2024/06/26追加分
=================== */
.tel-item {
  align-items: center;
  /*display: inline-flex;*/
  display: block;
  flex: 0 0 auto;
  position: relative;
}

.label {
  align-items: center;
  background-color: rgb(174, 178, 180);
  border-radius: 4px;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 8px;
  position: relative;
}

.label-text {
  color: #ffffff;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  text-align: center;
  width: fit-content;
}

.info {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  padding: 0px 16px 0px 8px;
  position: relative;
}

.tel-number {
  color: #424242;
  font-family: "Inter", Helvetica;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.96px;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.time {
  color: #616161;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.28px;
  line-height: normal;
  position: relative;
  width: fit-content;
}

@media screen and (max-width: 810px) {
  .pc-br {
    display: none;
  }

  .label-text {
    font-size: 0.9em;
  }

  .time {
    font-size: 0.8em;
  }

  .tel-number {
    display: none;
  }

  .label {
    width: 100%;
  }

  .info {
    padding: 0;
  }

  .tel-item {
    /*display: inline-flex;*/
    display: none;
  }
}

.apply-button {
  align-items: flex-start;
  background: linear-gradient(90deg, rgb(188, 164, 222) 0%, rgb(243, 180, 168) 100%);
  border-radius: 8px;
  cursor: pointer;
  display: block;
  flex: 0 0 auto;
  gap: 12px;
  padding: 16px 32px;
  position: relative;
  transition: all 0.2s ease;
}


.text-17 {
  letter-spacing: 0.56px;
  line-height: normal;
  margin-top: -1.00px;
  position: relative;
  width: fit-content;
}

.notosansjp-bold-white-14px {
  color: #ffffff;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  margin: 0 auto;
}

.line-button {
  width: 100%;
}

@media screen and (min-width: 810.1px) {
  .apply-button:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 810px) {
  main .apply-button {
    padding: 8px;
    border-radius: 8px;
  }

  .notosansjp-bold-white-14px {
    font-size: 0.9em;
  }

  .line-button p {
    font-size: 0.8em;
  }
}

.line-btn {
  align-items: center;
  align-self: stretch;
  background-color: #fff;
  /*2024/07/02追加*/
  border: 2px solid #00b900;
  /*2024/07/02追加*/
  border-radius: 10px;
  cursor: pointer;
  /*display: flex;*/
  display: block;
  /*2024/07/02追加*/
  flex: 0 0 auto;
  gap: 12px;
  justify-content: center;
  overflow: hidden;
  padding: 10px 24px;
  position: relative;
  transition: all 0.2s ease;
  width: 100%;
  margin: 10px auto 0;
}

.line-btn:hover {
  opacity: 0.6;
}

.line-2 {
  align-self: stretch;
  letter-spacing: 0.64px;
  line-height: normal;
  position: relative;
  text-align: center;
}

.notosansjp-bold-white-16px {
  color: #ffffff;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
}

@media screen and (max-width:810px) {
  .notosansjp-bold-white-16px {
    font-size: 17px;
  }
}

.index .text-6 {
  align-self: stretch;
  letter-spacing: 0.24px;
  line-height: normal;
  margin-top: -2px;
  position: relative;
  text-align: center;
}

.notosansjp-medium-white-12px {
  color: #ffffff;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.line-icon-7 {
  height: 34px;
  /*position: relative;*/
  width: 34px;
  /*2024/07/02追加*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.labels {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  line-height: 1.4em;
  margin: 0 auto;
  /*2024/07/02追加*/
}

.labels>.line-1,
.labels>.text-6 {
  /*2024/07/02追加*/
  color: #00b900;
  font-weight: 900;
}

@media screen and (max-width: 810px) {
  .line-btn {
    gap: 0;
  }

  .labels {
    line-height: 1.422em;
  }
}

.soudan-button {
  font-weight: 900 !important;
}

/* ジョブコーチ */
.job-coach {
  --color-section: #12998E;
  --color-section-d: #008177;
  /* background: #F2F8F8; */
}

.card_strong {
  border: 8px solid var(--color-section);
  position: relative;
}

.txt_float {
  position: absolute;
  top: -1.8em;
  left: -8px;
  background: var(--color-section);
  padding: .3em .8em;
  color: #fff;
  border-radius: 4em;
  font-weight: bold;
}

.txt_float::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 5px solid var(--color-section);
  border-right: 5px solid var(--color-section);
  border-left: 5px solid transparent;
  border-bottom: 5px solid transparent;
  bottom: -10px;
  right: 2em;
}

.cta_min {
  width: 100%;
  border-radius: 28px;
  background: var(--color-section);
  padding: var(--gutter-32) min(2em, 10%);
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: center;
  justify-content: space-around;
  margin-top: var(--gutter-40);
}

.cta_min p {
  color: #fff;
  font-size: var(--font-20);
  line-height: 1.2;
}

.cta_min p span {
  font-size: 1.5em;
}

.cta_min div {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center
}

.cta_min a {
  background: #fff;
  padding: 1em;
  font-size: var(--font-20);
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.cta_min a::after {
  content: "";
  display: inline-block;
  width: .5em;
  height: .5em;
  border-right: 2px solid var(--color-section);
  border-top: 2px solid var(--color-section);
  transform: rotate(45deg);
  margin-left: .5em;

}

.cta_min a span {
  font-size: 1.3em;
  font-weight: bold;
}

@media screen and (min-width: 810.1px) {
  .cta_min a {
    font-size: var(--font-20);
  }
}

@media screen and (max-width: 810px) {
  .cta_min {
    width: 100vw;
    border-radius: 0;
    margin-left: -5vw;
  }
}

/* リワークプログラム */
.business {
  --color-section: #F16E46;
  --color-section-d: #E4410F;
  background: linear-gradient(to bottom, #fff calc(var(--unit) * 2), #FAE8E2 calc(var(--unit) * 2));
}

.business .ttl {
  width: fit-content;
  position: relative;
  padding: .5em 1em .5em 0;
  background: var(--color-section);
  border-radius: 0 8px 8px 0;
  margin-bottom: 0;
}

.business .ttl::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 100%;
  background: var(--color-section);
  top: 0;
  left: -50vw;
}

.business .ttl h2 {
  color: #fff;
  font-size: var(--font-40);
}

.business .txt_float {
  font-size: var(--font-16);
  background: #fff;
  border: 2px solid var(--color-section);
  color: var(--color-section);
}

.business .txt_float::after {
  border-top: 5px solid #fff;
  border-right: 5px solid #fff;
}

.business picture {
  width: calc(100% + 10vw);
  margin-left: -5vw;
  margin-top: calc(var(--font-40) * -1);
}

.card_bg-w {
  border-radius: 28px;
  background: #fff;
  padding: var(--gutter-32) min(2em, 10%);
  margin: var(--gutter-40) 0 var(--gutter-32);
}

.business .card_bg-w {
  position: relative;
}

.business .card_bg-w .under-line {
  font-size: var(--font-24);
  font-weight: bold;
}

@media screen and (min-width: 810.1px) {
  .business .card_bg-w {
    margin-top: calc(-1 * 10vw);
  }
}