html,
body {
  font-size: 62.5%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

@media screen and (min-width: 768px) {
  html,
  body {
    font-size: calc(10 * (100vw / 1440));
  }
}

@media screen and (max-width: 768px) {
  html,
  body {
    font-size: calc(10 * (100vw / 375));
  }
}

body {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}

body.is-active {
  overflow: hidden;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* header */
header {
  position: fixed;
  width: 100%;
  left:0;
  top:0;
  z-index: 99999;
}

.header-container {
  max-width: 100%;
  display: flex;
  column-gap: 5%;
  background: #fff;
}

.header-logo, .header-logo-sp {
  width:25em;
}

.header-logo img, .header-logo-sp img{
  width:100%;
  height: auto;
}

.header-logo-sp {
  display: none;
}

.conv-9b {
  display: none;
}

.logo-lead p {
  font-family: corporate-logo-ver2, sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.06em;
  padding-left: 1rem;
}

.drawer {
  width: 46%;
}

.drawer-inner {
  display: flex;
  justify-content: end;
  font-weight: 500;
  line-height: normal;
  color: #333;
}

/* conv-1 */
.conv-btn{
  margin-top: 2rem;
}

.drawer .conv-btn{
  display: none;
}

.conv-btn a {
 display: inline-block;
  border-radius: 99999px;
  background-color: #00A0A6;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 3em;
  padding:0 1em;
}

.conv-btn a:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.conv-btn a:before{
  content:'';
  display: inline-block;
  background:url(../img/email-icon.png) no-repeat;
  background-size:contain;
  width: 3.4rem;
  height: 2em;
  position: relative;
  top:0.8em;
  margin-right: 0.2em;
}

.conv-btn a:after{
  content:'';
  display: inline-block;
  background:url(../img/request-icon.png) no-repeat;
  background-size:contain;
  width: 2rem;
  height: 2rem;
  position: relative;
  top:0.2em;
  margin-left:0.5em;
}

.conv-btn02 a {
 display: block;
  border-radius: 99999px;
  border:2px solid #fff;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  line-height: 3em;
  padding:0 1em;
  font-size: 3rem;
}

.conv-btn02 a:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.conv-btn02 a:before{
  content:'';
  display: inline-block;
  background:url(../img/email-icon.png) no-repeat;
  background-size:contain;
  width: 5.4rem;
    height: 1.4em;
  position: relative;
  top:0.4em;
  margin-right: 0.2em;
}

.conv-btn02 a:after{
  content:'';
  display: inline-block;
  background:url(../img/request-icon.png) no-repeat;
  background-size:contain;
  width: 3rem;
  height: 3rem;
  position: relative;
  top:0.2em;
  margin-left:0.5em;
}

.global-nav {
  display: flex;
  gap: 2.2rem;
  margin-top: 4rem;
}

.global-nav li a {
  text-decoration: none;
  color: #333;
}

.nav-list a:hover {
  opacity: 0.6;
}

@media screen and (max-width:768px) {

  .header-logo, .header-logo-sp {
    width:15em;
    position: relative;
    z-index: 9999;
    }

  .header-container {
    background: transparent;
  }


  .conv-9b-2 p a {
    -webkit-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }

  .conv-btn {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
  }

.drawer .conv-btn{
  position: relative;
  bottom: inherit;
  left: inherit;
  transform: none;
  display: block;
  text-align: center;
}

  .conv-btn a{
     line-height: 3.6em;
  }

.conv-btn a:before {
      width:2.4em;
      height:2.4rem;
    }

.conv-btn a:after {
    width: 1.5rem;
    height: 1.5rem;
    }

.conv-btn02{
  margin-bottom: 1em;
}

.conv-btn02 a {
  font-size: 1.2rem;
}

.conv-btn02 a:before{
  width:3.4rem;
    height: 1.4em;
  top:0.4em;
}

.conv-btn02 a:after{
        width: 1.6rem;
        height: 1.6rem;
        top: 0.3em;
        margin-left: 0.5em;
}

  .hamburger {
    position: fixed;
    top: 0.5rem;
    right: 2.0rem;
    z-index: 150;
    width: 3.0rem;
    height: 3.0rem;
    cursor: pointer;
  }

  .hamburger :hover {
    opacity: 0.8;
    transition: 0.5s;
  }

  .hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
  }

  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
  }

  .hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 0.2rem;
    background-color: #00A0A6;
    transition: transform .3s;
  }

  .hamburger.is-active span {
    background-color: #00A0A6;
  }

  .hamburger span:nth-child(1) {
    top: 30%;
  }

  .hamburger span:nth-child(2) {
    top: 60%;
  }

  .hamburger span:nth-child(3) {
    top: 90%;
  }


  .hamburger::after {
    position: absolute;
    content: "MENU";
    bottom: -1.5em;
    left: 0.3em;
    font-size: 0.8rem;
    color: #00A0A6;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.04em;
    z-index: 9;
  }

  .hamburger.is-active:after {
    content: "CLOSE";
  }

  .hamburger-sp::after:hover {
    opacity: 0.8;
    transition: 0.5s;
  }

  .drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 130;
    width: 100%;
    transition: opacity .3s, visibility .3s;
  }

  .drawer.is-active {
    visibility: visible;
    opacity: 1;
    height: 100vh;
  }

  .drawer-inner {
    display: flex;
    justify-content: center;
    padding: 0 2rem;
    width: 100%;
    padding-top:2em;
  }

  .global-nav {
    display: flex;
    flex-direction: column;
    width: 26.4rem;
    position: relative;
    padding-bottom:3rem;
    padding-top: 3rem;
    border-radius: 4.0rem;
    background-color: #fff;
    gap: 0;
  }

  .nav-list a {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    color: #333;
    position: relative;
  }

  .nav-list {
    position: relative;
  }

  .nav-list::before {
    content: "";
    position: absolute;
    background-image: url(../img/capsule.png);
    width: 2.0rem;
    height: 1.9rem;
    background-repeat: no-repeat;
    background-size: contain;
    top: 33%;
    left: 5%;
  }

  .nav-list {
    width: 17.0rem;
    height: 3.6rem;
    border-bottom: 0.1rem solid #00A0A6;
    margin: 0 auto;
    padding-left: 4rem;
    padding-top: 0.5rem;
  }

  /* アニメーション前のメニューの状態 */
  .drawer {
    transform: translateX(100vw);
    transition: all .3s linear;
  }

  /* アニメーション後のメニューの状態 */
  .drawer.is-active {
    transform: translateX(0);
    background-color: #C9EDEF;
  }

  .sp-show {
    display: block;
  }
  .conv-9b-1 {
    width: 18.7rem;
    margin-top: 2.4rem;
  }

  .conv-9b-1 img {
    width: 3.24rem;
    height: 2.27rem;
    margin-top: -14%;
    margin-bottom:10%;
    margin-left:10%;
  }

  .conv-9b-2 {
    width: 100%;
  }

  .conv-9b-2 p {
    margin-top: 0.5rem;
    margin-left: -4rem;
  }

  .conv-9b-2 p a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.0;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    width:16rem;
  }

  .conv-9b-3 {
    margin-top: 11%;
    margin-right: 13%;
  }

  .conv-9b-3 img {
    width: 1.8rem;
    height: 1.8rem;
    margin-top: -1.5rem;
    margin-right: -1.5rem;
    display: block;
  }
}

/* main */
/* first view */
.first-view {
  padding-top: 16.3rem;
}

.first-view-wrapper1 {
  display: flex;
  justify-content: space-between;
  width:85%;
  margin:0 auto 5rem auto;
}

.first-view-txt {
  width: 60%;
  line-height: 1.36;
  font-weight: 600;
}

.first-view-txt p {
  font-size: 2.2rem;
  color: #333;
  letter-spacing: 0.14em;
  padding-bottom: 1.9rem;
  position: relative;
  padding-left: 0.5rem;
}

.first-view-txt p::after {
  content:"";
  background:url(../img/capsule-pill.png) no-repeat;
  background-size: contain;
  position: absolute;
  width:10rem;
  height: 10rem;
  top: 10rem;
  right:9em;
  z-index: -1;
}

.first-view-txt p span {
  color: #F67E62;
}

.first-view-txt h2 {
  color: #00A0A6;
  font-size: 6.1rem;
  letter-spacing: 0.15em;
  line-height: 1.36;
  font-weight: 700;
}

.span-large {
  color: #333;
  font-size: 6.1rem;
  letter-spacing: 0.1em;
}

.span-small {
  color: #333;
  font-size: 4.6rem;
  letter-spacing: -0.5em;
}

.first-view-img {
  width: 40%;
}

.first-view-img img{
  width:100%;
  height: auto;
}

@media(max-width:768px) {
  .first-view {
    padding-top: 6rem;
  }

  .first-view-wrapper1 {
    width:100%;
    flex-direction: column;
    padding-left: 0;
    align-items: center;
    margin:3rem auto;
  }

  .first-view-txt {
    line-height: 1.36;
    width: auto;
    font-weight: 600;
  }

  .first-view-txt p {
    font-size: 1.2rem;
    color: #333;
    letter-spacing: 0.17em;
    padding-bottom: 1rem;
    position: relative;
    padding-left: 0;
  }

  .first-view-txt p::after {
    position: absolute;
    content: "";
    background-image: url(../img/capsule-pill.png);
    top: 5rem;
    left: 18rem;
    width: 5rem;
    height: 5rem;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

  .first-view-txt h2 {
    color: #00A0A6;
    font-size: 2.4rem;
    letter-spacing: 0.15em;
    line-height: 1.5;
    font-weight: 700;
    width: 28rem;
  }

  .span-large {
    color: #333;
    font-size: 2.4rem;
    letter-spacing: 0.15em;
  }

  .span-small {
    color: #333;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
  }

  .first-view-img{
    width:80%;
    margin:3rem auto 0 auto;
  }

  .first-view-img img {
    width:100%;
  }
}

/* first view 3 items */
.first-view-wrapper2 {
  width: 100%;
  height: 100%;
  padding-bottom: 5.5%;
  background: linear-gradient(white, rgba(106, 216, 224, 0.39))
}

.first-view-wrapper2 ul {
  display: flex;
  column-gap: 5%;
  flex-direction: row;
  justify-content: center;
}

 .fv-item{
    width: 24.1rem;
    height: 24.1rem;
    border-radius: 50%;
    background-color: #00A0A6;
    color: #fff;
    list-style: none;
    text-align: center;
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.fv-item1a {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  display: block;
}

.fv-item1b {
  display: block;
   border-top: 1px solid #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  margin:0.3em 0 0 0;
  padding:0.3em 0 0 0;
  line-height: 1.4;
}
 

@media(max-width:768px) {

  .first-view-wrapper2 ul {
    display: flex;
    column-gap: 0.4rem;
    flex-direction: row;
    justify-content: center;
  }

  .fv-item{
    width: 10.6rem;
    height: 10.6rem;
    border-radius: 50%;
    background-color: #00A0A6;
    color: #fff;
    list-style: none;
    align-items: center;
    position:relative;
  }

.fv-item1a {
  font-size: 1.0rem;
  line-height: 1.3;
}

.fv-item1b {
  font-size: 1.2rem;
}

}

/* second view */
.second-view-upper {
  margin: 0 auto;
  margin-top: 1.4rem;
  margin-bottom: 9.4rem;
}

.sv-capsule {
  display: flex;
  justify-content: center;
  margin-top: 6.15rem;
}

.sv-capsule img {
  width: 5.6rem;
  padding-bottom: 1.7rem;
  margin-top:-5rem;
}
.circle-text1{
  color: #333;
  font-size: 3.0rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.21em;
}

.sv-text1 {
  width: 100%;
}

.sv-text1a {
  font-size: 3rem;
  color: #333;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.sv-text1b {
  font-size: 4.0rem;
  color: #333;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-bottom: 3.4rem;
}

.sv-text1b b {
  font-size: 3.0rem;
}

.sv-text2 {
  width: 25%;
  border-radius: 9999px;
  background-color: #C9EDEF;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0 auto;
  margin-bottom: 5rem;
  position: relative;
  margin-top: -8.0rem;
}

.sv-text2::after {
  position: absolute;
  content: url(../img/2ndview_fukidashi.png);
  top: -1.5rem;
  left: 30.5rem;
}

.sv-text2a {
  font-size: 2.0rem;
  color: #333;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding-left: 0.9rem;
}

.sv-text2a span{
  position: relative;
}

.sv-text2a span::before {
  content:"";
  position: absolute;
  width:0.3em;
  height: 0.3em;
  border-radius: 50%;
  top: -0.5rem;
  left:0.65rem;
  background:#F67E62;
}

.sv-text3 {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1.66;
  letter-spacing: 0.08em;
  margin: 0 auto;
  margin-bottom: 7rem;
  text-align: center;
}

.sv-text3a {
  color: #333;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.08em;
}

.sv-text3b {
  color: #F67E62;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.08em;
}

.sv-text3c {
  color: #00A0A6;
  padding-bottom: 5rem;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.66;
  letter-spacing: 0.08em;
}

.sv-text3a-br-sp {
  display: none;
}

.sv-text4a-wrapper {
  display: flex;
  gap: 0;
}

.sv-text4a-p{
  width:54rem;
  margin:0 auto;
  margin-bottom: 2.8rem;
}
.sv-text4a-p span{
  font-size: 2.4rem;
  color: #333;
  font-weight: 900;
  line-height: 1.65;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
  text-align: center;
}
.sv-text4a-p-br-sp{             
  display:none;
}

.sv-text4b {
  font-size: 2.0rem;
  color: #333;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.06em;
  padding-right: 11rem;
  padding-left: 11rem;
}

.sv-text4b span {
  font-weight: 700;
}

.sv-text4 {
  width: 98.5rem;
  height: 22.1rem;
  border-radius: 9999px;
  background-color: #fff;
  padding-top: 4rem;
  padding-bottom: 4rem;
  margin: 0 auto;
}

.sv-text4-br-sp {
  display: none;
}

.sv-gradient {
  background: linear-gradient(white, rgba(106, 216, 224, 0.39));
  padding-bottom: 7rem;
}

@media(max-width:768px) {

  .second-view-upper span {
    font-family: Noto Sans JP, sans-serif;
    font-size: 1.8rem;
    height: 200px;
    color: #333;
    width: 20px;
    left: 50%;
    top: 10px;
  }

   .sv-capsule {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .sv-capsule img {
    width: 3.6rem;
    padding-top: 6rem;
    padding-bottom: 1.7rem;
  }
  .circle-text1{
    color: #333;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.03em;
  }

  .sv-text1a {
    font-size: 1.6rem;
    color: #333;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }

  .sv-text1b {
    font-size: 2.0rem;
    color: #333;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-bottom: 2.2rem;
  }

  .sv-text1b b {
    font-size: 1.6rem;
  }

  .sv-text2 {
    width: 65%;
    border-radius: 9999px;
    background-color: #C9EDEF;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin: 0 auto;
    margin-bottom: 2rem;
    position: relative;
    margin-top: -10.0rem;
  }

  .sv-text2::after {
    position: absolute;
    content: url(../img/2ndview_fukidashi.png);
    top: -1.5rem;
    left: 19.5rem;
  }

  .sv-text2a {
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.1em;
    position: relative;
    padding-left: 0.9rem;
  }

  .sv-text3 {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.66;
    letter-spacing: 0.04em;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    text-align: center;
    width: 29.0rem;
    height: 9.6rem;
  }

  .sv-text3a {
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .sv-text3b {
    color: #F67E62;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .sv-text3c {
    color: #00A0A6;
    padding-bottom: 5rem;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .sv-text3a-br-sp {
    display: inline;
  }

  .sv-text4a-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .sv-text4a-p{
    width:23rem;                                  
    margin:0 auto;
    margin-bottom: 1.5rem;
  }
  .sv-text4a-p span{
    font-size: 1.4rem;
    color: #333;
    font-weight: 900;
    line-height: 1.65;
    letter-spacing: 0.06em;
    background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
    text-align: center;
  }
  .sv-text4a-p-br-sp{             
    display:inline;
  }

  .sv-text4b {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    line-height: 1.64;
    letter-spacing: 0.06em;
    padding-right: 4.5rem;
    padding-left: 4.4rem;
    margin: 0 auto;
    margin-top: 1.1rem;
  }

  .sv-text4b span {
    font-weight: 900;
  }

  .sv-text4 {
    width: 32.3rem;
    height: 19.0rem;
    border-radius: 3.3rem;
    background-color: #fff;
    padding-top: 1.5rem;
    padding-bottom: 4rem;
    margin: 0 auto;
  }

  .sv-text4-br-sp {
    display: inline;
  }

  .sv-gradient {
    background: linear-gradient(white, rgba(106, 216, 224, 0.39));
    padding-bottom: 2rem;
  }

  .sv-text4a-wrapper {
    text-align: center;
  }

  .sv-text4a-p1 {
    background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
    margin: 0 auto;
    width: 60%;
  }

  .sv-text4a-p2 {
    background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
    margin: 0 auto;
    width: 23%;
  }
}

/* conv-2/3/4 */
.conv-2 {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #00A0A6;
  column-gap: 5rem;
}

.conv-2a {
  padding: 6.25rem 0 6.25rem 15rem;
}

.conv-2a h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 700;
  padding-top: 1rem;
  letter-spacing: 0.08em;
}

.conv-2a h3 span {
  color: #FEC800;
  padding-bottom: 1rem;
}

.conv-2a p {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03em;
  font-family: "Inter", sans-serif;
  color: #fff;
}


@media(max-width:768px) {
  .conv-2 {
    width: 100%;
    background-color: #00A0A6;
    column-gap: 1rem;
    margin-bottom: 6%;
    flex-direction: column;
  }

  .conv-2a {
    padding: 1.381rem 2.1rem 1rem 2.1rem;
    text-align: center;
  }

  .conv-2a h3 {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding-top: 0;
  }

  .conv-2a h3 span {
    color: #FEC800;
    padding-bottom: 1.38rem;
    text-align: center;
  }

  .conv-2a p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.03em;
    font-family: "Inter", sans-serif;
    color: #fff;
    text-align: center;
  }

}

/* Four Characters */
.fc-title {
  color: #333;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  /* text-align: center; */
  padding-top: 6rem;
  position: relative;
  text-align: center;
  /* margin-bottom: 4%; */
  letter-spacing: 0.2em;            
}
.circle-text2{
  letter-spacing:0.2em;
}
.fc-h2 {
  text-align: center;
  letter-spacing: 0.2em;
}

.fc-1 {
  font-size: 9.1rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08;
  color: #F67E62;
}

.fc-2 {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.08;
  color: #333;
}

.fc-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-image: url("../img/four-character-bg.png");
  background-repeat: no-repeat;
  background-size: 95%;
  background-position: 50% 40%;
}

.fc1,
.fc3,
.fc2,
.fc4 {
  width: 40%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 5%;
}


.fc1a {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 8.8rem;
  font-weight: 700;
  color: #f67e62;
  line-height: 1.272;
  padding-bottom: 5%;
}

.fc1 p img,
.fc2 p img,
.fc3 p img,
.fc4 p img {
  width: 45%;
}

.fc1b {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 2%;
}

.fc1b span {
  color: #f67e62;
}

.fc1c {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: center;
}
.fc2a {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 8.8rem;
  font-weight: 700;
  color: #00A0A6;
  line-height: 1.272;
  padding-bottom: 5%;
}

.fc2b {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 2%;
}

.fc2b span {
  color: #00A0A6;
}

.fc2c {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}

.fc3a {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 8.8rem;
  font-weight: 700;
  color: #1A86C7;
  line-height: 1.272;
  padding-bottom: 5%;
}

.fc3b {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 2%;
}

.fc3b span {
  color: #1A86C7;
}

.fc3c {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}

.fc4a {
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 8.8rem;
  font-weight: 700;
  color: #FEC800;
  line-height: 1.272;
  padding-bottom: 10%;
}

.fc4b {
  font-size: 3.2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.06em;
  text-align: center;
  padding-bottom: 7%;
}

.fc4b span {
  color: #F8C60D;
}

.fc4c {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  margin: 0 auto;
  display: inline-block;
}

@media(max-width:768px) {
  .fc-title {
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    padding-top: 1rem;
    position: relative;
    text-align: center;
    margin-bottom: 4%;
    letter-spacing: 0.2em;
  }

  .fc-h2 {
    text-align: center;
    letter-spacing: 0.2em;
  }

  .fc-1 {
    font-size: 4.0rem;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.08em;
    color: #F67E62;
  }

  .fc-2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.42;
    letter-spacing: 0.08em;
    color: #333;
  }

  .fc-wrapper {
    display: flex;
    flex-direction: column;
    background-image: url("");
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: 50% 40%;
  }

  .fc1,
  .fc2,
  .fc3,
  .fc4 {
    width:95%;
    margin: 0 auto;
    padding-bottom: 5%;
    padding-left: 0;
    margin-bottom: 5rem;
    position: relative;
  }

  .fc1::after,
  .fc2::after,
  .fc3::after,
  .fc4::after {
    position: absolute;
    content: "";
    background: url(../img/four-character-bg-sp.png) no-repeat bottom;
    background-size: contain;
    background-repeat: no-repeat;
   top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .fc1a {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    font-size: 3.4rem;
    font-weight: 700;
    color: #f67e62;
    line-height: 1.272;
    padding-bottom: 5%;
    margin-right: 16rem;
    padding:0;
  }

  .fc1 p img,
  .fc2 p img,
  .fc3 p img,
  .fc4 p img {
    width:30%;
    margin-top: -2.6rem;
  }

  .fc1b {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.06em;

  }

  .fc1b span {
    color: #f67e62;
  }

  .fc1c {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
  }

  .fc2a {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    font-size: 3.4rem;
    font-weight: 700;
    color: #00A0A6;
    line-height: 1.272;
    margin-right: 16rem;
    padding:0;
  }

  .fc2b {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.06em;

  }

  .fc2c {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
  }

  .fc3a {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    font-size: 3.4rem;
    font-weight: 700;
    color: #1A86C7;
    line-height: 1.272;
    margin-right: 16rem;
    padding:0;
  }

  .fc3b {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }

  .fc3c {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
  }

  .fc4a {
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.08em;
    font-size: 3.4rem;
    font-weight: 700;
    color: #FEC800;
    line-height: 1.272;
    margin-right: 16rem;
    padding:0;
  }

  .fc4b {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }

  .fc4c {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
  }
}

/* Merits */
.merits {
  background: linear-gradient(rgba(106, 216, 224, 0.39)25%, #fff 50%);
  padding-bottom: 14rem;
}
.merits-title {
  position: relative;
  color: #333;
  font-size: 3rem;
  font-weight: 600;
  padding-top: 14rem;
  text-align: center;
}
.circle-text3{
  margin-top: 1rem;
  letter-spacing:0.2em;
}
.merit-h2 {
  color: #00A0A6;
  font-size: 4.6rem;
  text-align: center;
  margin-bottom: 5%;
  margin-top: 4rem;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.06em;
}
.merits-title::after {
  position: absolute;
  content: "MERIT";
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21.1rem;
  letter-spacing: 0.26em;
  line-height: 1.27;
  color: rgba(201, 237, 239, 1.0);
  top: 1rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.merits-wrapper {
  display: flex;
  flex-wrap: wrap;
  background-repeat: no-repeat;
  background-size: 100%;
  gap: 10.4rem 3rem;
  /* margin-top: -13rem; */
}

.merit1,
.merit2,
.merit3,
.merit4 {
  width: 32%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 7%;
  border: 3px solid #00A0A6;
  border-radius: 3.6rem;
  position: relative;
}

.merit1,
.merit3 {
  margin-left: 20rem;
}

.merit2,
.merit4 {
  margin-right: 20rem;
}

.merit1a {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  line-height: 1.1;
  letter-spacing: 0.06em;
  padding-top: 9.3%;
  padding-bottom: 6%;
}

.merit1a span {
  color: #00A0A6;
  padding-bottom: 5%;
}

.merit1b {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  line-height: 1.64;
  text-align: left;
  padding: 0 4rem 1rem 5.4rem;
  letter-spacing: 0.03em;
}

.merit1b span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
}

.merit1::before {
  position: absolute;
  content:"";
  background: url(../img/merit1.png) no-repeat;
  background-size: contain;
  width:15rem;
  height: 15rem;
  top: 70%;
  left: 50%;
 transform: translateX(-50%);
}

.merit2::before {
  position: absolute;
  content:"";
  background: url(../img/merit2.png) no-repeat;
  background-size: contain;
  width:17rem;
  height: 17rem;
  top: 70%;
  left: 50%;
 transform: translateX(-50%);
}

.merit3::before {
  position: absolute;
  content:"";
  background: url(../img/merit3.png) no-repeat;
  background-size: contain;
  width:20rem;
  height: 20rem;
  top: 70%;
  left: 50%;
 transform: translateX(-50%);
}

.merit4::before {
  position: absolute;
  content:"";
  background: url(../img/merit4.png) no-repeat;
  background-size: contain;
  width:15rem;
  height: 15rem;
  top: 70%;
  left: 50%;
 transform: translateX(-50%);
}

@media(max-width:768px) {
  .merits {
    background: linear-gradient(rgba(106, 216, 224, 0.39)25%, #fff 50%);
    padding-bottom: 4.7rem;
  }
  .circle-text3{
    margin-top:-10rem;
  }
  .merits-title {
    position: relative;
    color: #333;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;

  }
  /* .circle-text3{
    margin: top 0;
  } */

  .merits-title::after {
    position: absolute;
    content: "MERIT";
    z-index: -1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.26em;
    line-height: 1.27;
    color: rgba(201, 237, 239, 1.0);
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .merit-h2 {
    color: #00A0A6;
    font-size: 1.6rem;
    text-align: center;
    margin-bottom: 5%;
    margin-top: 2rem;
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: 0.06em;
  }

  .merits-wrapper {
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: 100%;
    gap: 5.4rem 3rem;
    margin-top: -2rem;
  }

  .merit1,
  .merit2,
  .merit3,
  .merit4 {
    width: 30.5rem;
    height: 18.5rem;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 7%;
    border: 3px solid #00A0A6;
    border-radius: 3.6rem;
    position: relative;
    margin-left: 3.5rem;
    margin-right: 3.5rem;
    z-index:1;
  }

  .merit1a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: normal;
    letter-spacing: 0.06em;
    padding-top: 1.9rem;
    padding-bottom: 1.3rem;
  }

  .merit1b {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    line-height: 1.64;
    text-align: left;
    padding: 0 1rem 1rem 2rem;
    letter-spacing: 0.03em;
  }
                                      
  .merit1b span {
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
  }

  .merit1::before {
    position: absolute;
    content: "";
    top: 14rem;
    width: 8.4rem;
    height: 7.9rem;
    background-image: url(../img/merit1.png);
    background-size: contain;
    background-repeat: no-repeat;
    z-index:99;
  }

  .merit2::before {
    position: absolute;
    content: "";
    top: 14rem;
    width: 7.1rem;
    height: 5.8rem;
    background-image: url(../img/merit2.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .merit3::before {
    position: absolute;
    content: "";
    top: 14rem;
    width: 11rem;
    height: 13rem;
    background-image: url(../img/merit3.png);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .merit4::before {
    position: absolute;
    content: "";
    top: 14rem;
    width: 5.5rem;
    height: 6.8rem;
    background-image: url(../img/merit4.png);
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/* Support */
.support h2 {
  font-size: 4.6rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.0;
  letter-spacing: 0.06em;
  margin-top: 13rem;
  margin-bottom: 13rem;
  position: relative;
}

.support h2::after {
  position: absolute;
  content: "PERSON";
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21rem;
  letter-spacing: 0.26em;
  color: rgba(248, 241, 233, 1);
  top: -10rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.support-1a,
.support-1b {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #333;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 0.8rem;
}

.support-br-sp {
  display: none;
}

.support-1b {
  margin-bottom: 10%;
}

.support-1a span {
  text-align: center;
  color: #F67E62;
  line-height: 1.5;
}

.support-1b span {
  background: linear-gradient(transparent 70%, rgba(252, 211, 201, 1.0) 50%);
  font-weight: 700;
}

.staff {
  display: flex;
  color: #333;
  gap: 13.7rem;
  padding: 3% 10%;
  background-color: #F8F1E9;
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  margin-left: 10%;
  margin-bottom: 10%;
}

.staff img {
  margin-bottom: 10%;
  width: 100%;
}

.staff1,
.staff2,
.staff3 {
  width: 30%;
  line-height: 2;
  text-align: center;
}

.career1:hover {
  opacity: 0.5;
  transition: 0.5s;
}

.staff1a {
  font-size: 1.6rem;
  line-height: 1.0;
  letter-spacing: 0.04em;
  padding-bottom: 1rem;
}

.staff1a span {
  padding-right: 1rem;
}

.staff1b {
  font-size: 2.0rem;
  line-height: 1.5;
  padding-bottom: 3rem;
}

@media(max-width:768px) {
  .support h2 {
    font-size: 2.0rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.06em;
    margin-top: 4.3rem;
    margin-bottom: 4rem;
    position: relative;
  }
  .support h2::after {
    position: absolute;
    content: "PERSON";
    z-index: -1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.26em;
    color: rgba(248, 241, 233, 1);
    top: -3rem;
    left: 3rem;
    right: 0;
    margin: 0 auto;
  }

  .support-1a,
  .support-1b {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #333;
    text-align: center;
    line-height: 1.5;
    padding-bottom: 0.8rem;
  }

  .support-br-sp {
    display: block !important;
  }

  .support-1a span {
    text-align: center;
    color: #F67E62;
    line-height: 1.5;
  }

  .support-1b span {
    background: linear-gradient(transparent 100%, rgba(252, 211, 201, 1.0) 50%);
    font-weight: 700;
  }

  .staff {
    flex-direction: column;
    color: #333;
    gap: 3rem;
    padding: 4rem 5rem;
    background-color: #F8F1E9;
    border-top-left-radius: 14.2rem;
    border-bottom-left-radius: 14.2rem;
    margin-left: 2.9rem;
    margin-bottom: 2.3rem;
  }

  .staff img {
    margin-bottom: 10%;
    width: 9.2rem;
    height: 9.2rem;
  }

  .staff1,
  .staff2,
  .staff3 {
    display: flex;
    width: 100%;
    line-height: 2;
    text-align: center;
    gap: 2rem;
  }

  .staff1a {
    font-size: 1.2rem;
    line-height: 1.0;
    letter-spacing: 0.04em;
    padding-bottom: 1rem;
    margin-top: -1rem;
  }

  .staff1a span {
    padding-right: 1rem;
    font-size: 1.0rem;
  }

  .staff1b {
    font-size: 1.2rem;
    line-height: 1.5;
    padding-top: 3rem;
    padding-bottom: 0;
    width: 100%;
  }
}

.modal-open {
  text-decoration: none;
  font-size: 2.2rem;
  background-color: #FFFFFF;
  border-radius: 9999px;
  border: solid #9F8C7C;
  cursor: pointer;
  color: #333;
  line-height: 1.0;
  padding: 1.4rem 2rem 1.4rem 0;
  position: relative;
  width: 22.8rem;
  display: block;
}

table tr{
  border-bottom: 1px solid #ccc;
}

table th{
  width:11em;
  padding: 1rem 0;
}
.career1 {
  width: 22.8rem;
  height: 5.4rem;
  position: relative;
}

.modal-open::after {
  position: absolute;
  content: url(../img/support-arrow.png);
  display: block;
  top: 1.2rem;
  right: 2rem;
}

.modal-open span {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 4rem 2rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 999;
}

.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

.modal.is-active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 93%;
  width: 100%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1.1rem;
  right: 3.3rem;
  width: 4.0rem;
  height: 4.0rem;
  color: #00A0A6;
  border-radius: 50%;
  cursor: pointer;
  font-size: 3.0rem;
  z-index: 20;
}

.modal-content {
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.8;
  padding: 3%;
  width: 100%;
  border-radius: 50px;
  color:#333;
}

.modal-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

@media(max-width:768px) {
  .modal-open {
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.27;
    background-color: #FFFFFF;
    border-radius: 9999px;
    border: solid #9F8C7C;
    cursor: pointer;
    color: #333;
    padding: 0.5rem 0.5rem;
    margin-top:1em;
    width:8rem;
    position: relative;
  }

  .career1 {
    width: 6.91rem;
    height: 0.6906rem;
    padding-left: 1.5rem;
    position: relative;
  }

  .modal-open::after {
    position: absolute;
    content: "";
    background-image: url(../img/support-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    width: 0.759rem;
    height: 0.453rem;
    right: 0.3rem;
    top: 0.9rem;
  }

  .modal-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 99%;
    width: 100%;
  }

  .modal-content {
    background: #fff;
    font-size: 1.0rem;
    font-weight: 500;
    text-align: left;
    padding: 5%;
    width: 95%;
    border-radius: 2em;
    color:#333;
  }

  .modal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1rem 0;
  }
  table td{
    width:20em;
    padding: 1rem 0;
  }
}

/* Plan */
.plan {
  background: linear-gradient(rgba(106, 216, 224, 0.39)25%, #fff 50%);
}

.plan h2 {
  font-size: 4.6rem;
  color: #00A0A6;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  line-height: 1;
  padding-top: 10%;
  margin-bottom: 10%;
  position: relative;
}

.plan h2::after {
  position: absolute;
  content: "PLAN";
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21rem;
  letter-spacing: 0.26em;
  color: rgba(201, 237, 239, 1);
  top: 5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.plan h3 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.76;
  letter-spacing: 0.08em;
  color:#333;
  text-align: center;
}

.plan h3 span {
  color: #00A0A6;
}

.plan-wrapper {
  flex-direction: column;
}

.plan01,
.plan02,
.plan03 {
  border: 0.6rem solid #00A0A6;
  border-radius: 30px;
  width: 104.0rem;
  margin: 5% auto 5%;
  display: flex;
  gap: 5%;
  align-items: center;
}

.plan02 {
  background-color: #C8ECEE;
}

.plan03 {
  background-color: #44B9C1;
  position: relative;
  z-index: 999;
}

.plan03::before {
  content:"";
  background: url(../img/crown-mark.png) no-repeat;
  width:5rem;
  height: 5rem;
  background-size: contain;
  position: absolute;
  top: -9.5rem;
  left: -3rem;
  z-index: 99;
}

.plan03::after {
  content: "";
  background:url(../img/support_no1.png) no-repeat;
  width: 16em;
  height:3em;
  background-size: contain;
  position: absolute;
  top: -5.5rem;
  left: 5em;
}

.plan01-1,
.plan01-2 {
  width: 50%;
}

.plan01a {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.08em;
  text-align: left;
  width: 110%;
  padding: 3.5rem 3.5rem 3.5rem 7rem;
  line-height: 1.5;
  position: relative;
}

.plan01a span {
  padding-right: 0.7rem;
}

.plan01a::before {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background-color: #00A0A6;
  font-size: 5rem;
  font-weight: 500;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "01";
  text-align: center;
  position: absolute;
  top: -7rem;
  left: -7rem;
  padding-top: 1rem;
  z-index: 1;
  border: double 10px;
}

.plan01a::after {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "PLAN";
  position: absolute;
  top: -5.5rem;
  left: -3rem;
  right: 0;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  z-index: 1;
}

.plan01b {
  font-size: 6rem;
  font-weight: 600;
  color: #333;
  text-align: left;
  width: 100%;
  padding: 4.3rem 5rem 1rem 8rem;
  line-height: 1;
  position: relative;
  letter-spacing: 0.12em;
  font-family: "Oswald", sans-serif;
}

.plan01b::after {
  font-size: 1.4rem;
  font-weight: 600;
  align-content: center;
  color: #333;
  content: "税別";
  position: absolute;
  top: 48%;
  left: 55%;
  z-index: 1;
}

.plan01b span {
  font-size: 3rem;
  padding-left: 3%;
}

.plan01c {
  font-size: 2.1rem;
  font-weight: 700;
  color: #0E849C;
  padding-bottom: 2rem;
  padding-left: 10rem;
  letter-spacing: 0.12em;
  line-height: 1.272;
}

.plan02a {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: left;
  width: 110%;
  padding: 6rem 4rem 6rem 7rem;
  position: relative;
}

.plan02a::before {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background-color: #00A0A6;
  font-size: 5rem;
  font-weight: 500;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "02";
  text-align: center;
  position: absolute;
  top: -7rem;
  left: -7rem;
  padding-top: 1rem;
  z-index: 1;
  border: double 10px;
  position: absolute;
}

.plan02a::after {
  font-size: 2rem;
  font-weight: 500;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "PLAN";
  position: absolute;
  top: -5.5rem;
  left: -3rem;
  z-index: 1;
}

.plan02b {
  font-size: 2.2rem;
  line-height: 1.272;
  font-weight: 700;
  color: #333;
  text-align: center;
  background-color: #FCD3C9;
  border-radius: 9999px;
  padding: 0.2em 1em;
  margin-top: 1rem;
  display: inline-block;
}

.plan02c {
  font-size: 6rem;
  font-weight: 700;
  color: #333;
  text-align: left;
  width: 110%;
  padding: 0 6rem 0 0;
  line-height: 1.0;
  position: relative;
  letter-spacing: 0.12em;
  font-family: "Oswald", sans-serif;
}

.plan02c::after {
  font-size: 1.4rem;
  font-weight: 600;
  align-content: center;
  color: #333;
  content: "税別";
  position: absolute;
  top: 20%;
  left: 50%;
  z-index: 1;
}

.plan02c span {
  font-size: 3rem;
  padding-left: 3%;
}

.plan03a {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.08em;
  text-align: left;
  width: 110%;
  padding: 3.5rem 3.5rem 3.5rem 7rem;
  line-height: 1.5;
  position: relative;
}

.plan03a span {
  padding-right: 0.7rem;
}

.plan03a::before {
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background-color: #00A0A6;
  font-size: 5rem;
  font-weight: 500;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "03";
  text-align: center;
  position: absolute;
  top: -7rem;
  left: -7rem;
  padding-top: 1rem;
  z-index: 1;
  border: double 10px;
  position: absolute;
}

.plan03a::after {
  font-size: 2rem;
  font-weight: 500;
  align-content: center;
  font-family: "Oswald", sans-serif;
  color: #fff;
  content: "PLAN";
  position: absolute;
  top: -5.5rem;
  left: -3rem;
  z-index: 1;
}
 .plan3b{
  display:flex;
  gap:8%;
 }
 .plan03b1,  .plan03b2{
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  padding: 2rem 2rem 0 0;
  line-height: 1.5;
  margin-left: -5rem;
  position: relative;
}

.plan03b-span1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  background-color: #FCD3C9;
  border-radius: 9999px;
  padding: 0.2em 1em;
  display: inline-block;
}

.plan03b-span2 {
  font-size: 2.2rem;
  font-weight: 700;
  background-color: #FFECA8;
  border-radius: 9999px;
  padding: 0.2em 1em;
  display: inline-block;
}

.plan03c {
  font-size: 6rem;
  font-weight: 700;
  color: #333;
  text-align: left;
  width: 110%;
  padding: 0 6rem 0 0;
  position: relative;
  letter-spacing: 0.12em;
  line-height: 1.0;
  font-family: "Oswald", sans-serif;
}

.plan03c span {
  font-size: 3rem;
  padding-left: 3%;
}

.plan03c::after {
  font-size: 1.4rem;
  font-weight: 600;
  align-content: center;
  color: #333;
  content: "税別";
  position: absolute;
  top: 19%;
  left: 49.5%;
  z-index: 1;
}

@media(max-width:768px) {
  .plan03::after {
    width: 14em;
    height:1.2em;
    background-size: contain;
    top: -5.5rem;
    left: 3em;
  }

  .plan03::before {
    width: 3rem;
    top: -3.5rem;
    left: -0.5rem;
    height: 3rem;
  }

  .plan h2 {
    font-size: 2.2rem;
    color: #00A0A6;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1;
    padding-top: 4rem;
    margin-bottom: 10%;
    position: relative;
  }

  .plan h2::after {
    position: absolute;
    content: "PLAN";
    z-index: -1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.26em;
    color: rgba(201, 237, 239, 1);
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .plan h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.06em;
    color: #333;
    text-align: left;
    padding: 1rem 5.4rem 4rem 5.4rem;
  }

  .plan01,
  .plan02,
  .plan03 {
    border: 0.4rem solid #00A0A6;
    border-radius: 30px;
    width: 31.0rem;
    margin: 0 auto;
    flex-direction: column;
    margin-bottom: 3.3rem;
  }

  .plan03::after {
    top: -3rem;
    padding:0;
  }

  .plan01-1,
  .plan01-2 {
    width:auto;
  }

  .plan01a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.08em;
    text-align: left;
    width: 30rem;
    padding: 1rem 3.5rem 0 7rem;
    line-height: 1.3;
    position: relative;
  }

  .plan01a::before {
    width: 7.8rem;
    height: 7.8rem;
    border-radius: 50%;
    background-color: #00A0A6;
    font-size: 3.2rem;
    font-weight: 500;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "01";
    text-align: center;
    position: absolute;
    top: -2rem;
    left: -3rem;
    padding-top: 1rem;
    z-index: 1;
    border: double 10px;
  }

  .plan01a::after {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "PLAN";
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    right: 0;
    margin: 0 auto;
    margin-bottom: 0.5rem;
    z-index: 1;
  }

  .plan01b {
    font-size: 3.8rem;
    font-weight: 600;
    color: #333;
    text-align: left;
    width: 30rem;
    padding: 0 0 1rem 8rem;
    line-height: 1;
    letter-spacing: 0.12em;
    position: relative;
  }

  .plan01b::after {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.0;
    align-content: center;
    color: #333;
    content: "税別";
    position: absolute;
    top: 20%;
    left: 66.5%;
    z-index: 1;
  }

  .plan01b span {
    font-size: 1.8rem;
    padding-left: 3%;
  }

  .plan01c {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0E849C;
    padding-bottom: 2rem;
    padding-left: 6rem;
    letter-spacing: 0.12em;
    line-height: 1.272;
    width: 200%;
  }

  .plan02a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-align: left;
    width: 30rem;
    padding: 1rem 1rem 1rem 6rem;
    position: relative;
  }

  .plan02a::before {
    width: 7.8rem;
    height: 7.8rem;
    border-radius: 50%;
    background-color: #00A0A6;
    font-size: 3.2rem;
    font-weight: 500;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "02";
    text-align: center;
    position: absolute;
    top: -2rem;
    left: -3rem;
    padding-top: 1rem;
    z-index: 1;
    border: double 10px;
    position: absolute;
  }

  .plan02a::after {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "PLAN";
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    z-index: 1;
  }

  .plan02b {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.272;
    color: #333;
    text-align: center;
    background-color: #FCD3C9;
    border-radius: 9999px;
    padding: 0.5rem 0 0.5rem 0;
    width: 18rem;
    margin-top: 0rem;
    margin-left: 4.5rem;
    letter-spacing: 0.16em;
  }

  .plan02c {
    font-size: 3.8rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    width: 30rem;
    padding: 0 0 0 3rem;
    line-height: 1.3;
    position: relative;
    margin-top: 1rem;
  }

  .plan02c::after {
    font-size: 0.9rem;
    font-weight: 600;
    align-content: center;
    color:#333;
    content: "税別";
    position: absolute;
    top: 28%;
    left: 66.5%;
    z-index: 1;
  }

  .plan02c span {
    font-size: 1.8rem;
    padding-left: 3%;
  }

  .plan03a {
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.08em;
    text-align: left;
    width: 30rem;
    padding: 1rem 1rem 0 6rem;
    line-height: 1.3;
    position: relative;
  }

  .plan03a::before {
    width: 7.8rem;
    height: 7.8rem;
    border-radius: 50%;
    background-color: #00A0A6;
    font-size: 3.2rem;
    font-weight: 500;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "03";
    text-align: center;
    position: absolute;
    top: -2rem;
    left: -3rem;
    padding-top: 1rem;
    z-index: 1;
    border: double 10px;
    position: absolute;
  }

  .plan03a::after {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    align-content: center;
    font-family: "Oswald", sans-serif;
    color: #fff;
    content: "PLAN";
    position: absolute;
    top: -0.5rem;
    left: -0.5rem;
    z-index: 1;
  }
   .plan3b{
    display:inline;
   }
   .plan03b1, .plan03b2{
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    padding: 0 0 0 1rem;
    line-height: 1.5;
    margin-top: 0.5rem;
    margin-left: -1rem;
    position: relative;
    width: 30rem;
  }

  .plan03b-span1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background-color: #FCD3C9;
    border-radius: 9999px;
    letter-spacing: 0.16em;
  }

  .plan03b-span2 {
    font-size: 1.4rem;
    font-weight: 700;
    background-color: #FFECA8;
    border-radius: 9999px;
    margin-top: 1rem;
    letter-spacing: 0.16em;
    margin-left: -4.8rem;
  }

  .plan03c {
    font-size: 3.8rem;
    font-weight: 700;
    color: #333;
    text-align: left;
    width: 30rem;
    padding: 1rem 1rem 1rem 3rem;
    position: relative;
    letter-spacing: 0.12em;
    line-height: 1.0;
  }

  .plan03c span {
    font-size: 1.8rem;
    padding-left: 3%;
  }

  .plan03c::after {
    font-size: 0.9rem;
    font-weight: 600;
    align-content: center;
    color: #333;
    content: "税別";
    position: absolute;
    top: 34%;
    left: 65.5%;
    z-index: 1;
  }
}

/* Flow */
.flow {
  background: linear-gradient(rgba(106, 216, 224, 0.39)25%, #fff 50%);
}

.flow h2 {
  font-size: 4.6rem;
  font-weight: 700;
  color: #00A0A6;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  padding-top: 10%;
  margin-bottom: 10%;
  position: relative;
}

.flow h2::after {
  position: absolute;
  content: "FLOW";
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21rem;
  letter-spacing: 0.26em;
  color: rgba(201, 237, 239, 1);
  top: 5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.flow-wrapper {
  display: flex;
  gap: 5%;
  margin-left: 8%;
  margin-bottom: 9rem;
}

.flow1,
.flow2,
.flow3,
.flow4 {
  width: 19%;
  height: 30%;
  border-radius: 20px;
  box-shadow: 5px 0 20px rgb(0,160,166,0.3);
}

.flow1,
.flow2,
.flow3 {
  position: relative;
}

.flow1::after,
.flow2::after,
.flow3::after {
  content: "";
  background:url(../img/flow-arrow.png) no-repeat;
  background-size: contain;
  width:2rem;
  height: 2rem;
  position: absolute;
  top: 45%;
  right:-5rem;
}

.flow1a,
.flow2a,
.flow3a,
.flow4a {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 99999px;
  background-color: #00A0A6;
  font-family: "Inter", sans-serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 1rem auto 3rem;
  line-height: 1.5;
}

.flow3a {
  margin: 1rem auto 2rem;
}

.flow1b,
.flow2b,
.flow3b,
.flow4b {
  text-align: center;
}

.flow1c,
.flow2c,
.flow3c,
.flow4c {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00A0A6;
  text-align: center;
  padding-bottom: 1rem;
}

.flow1d,
.flow2d,
.flow3d,
.flow4d {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  text-align: left;
  padding-right: 4rem;
  padding-left: 4rem;
}

.flow3d,
.flow4d {
  padding-right: 3rem;
  padding-left: 4rem;
}

.flow1d {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.flow2d {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.flow3d {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.flow4d {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.flow4d span {
  font-weight: 700;
  background: linear-gradient(transparent 70%, rgba(255, 236, 168, 1.0) 50%);
}

@media(max-width:768px) {
  .flow {
    background: linear-gradient(rgba(106, 216, 224, 0.39)10%, #fff 20%);
  }

  .flow h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00A0A6;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    padding-top: 3.5rem;
    margin-bottom: 4.3rem;
    position: relative;
  }

  .flow h2::after {
    position: absolute;
    content: "FLOW";
    z-index: -1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.26em;
    color: rgba(201, 237, 239, 1);
    top: 1rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .flow-wrapper {
    flex-direction: column;
    gap: 5%;
    margin-left: 8%;
    margin-bottom: 2rem;
  }

  .flow1,
  .flow2,
  .flow3,
  .flow4 {
    width: 32.6rem;
    height: 15.3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
  }

  .flow1::after,
  .flow2::after,
  .flow3::after {
    content: "";
    background-image: url(../img/flow-arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    width: 1.7rem;
    height: 2.0rem;
    position: absolute;
    top: 105%;
    right: 50%;
  }

  .flow1a,
  .flow2a,
  .flow3a,
  .flow4a {
    width: 4.7rem;
    height: 4.7rem;
    border-radius: 99999px;
    background-color: #00A0A6;
    font-family: "Inter", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    padding-top: 0.7rem;
    margin-left: 1.6rem;
    margin-top: 1.6rem;
  }

  .flow1b,
  .flow2b,
  .flow3b,
  .flow4b {
    text-align: left;
  }

  .flow1b img,
  .flow2b img,
  .flow3b img,
  .flow4b img {
    width: 31%;
    margin-top: -11%;
    margin-left: 16%;
  }

  .flow1c,
  .flow2c,
  .flow3c,
  .flow4c {
    font-size: 1.6rem;
    font-weight: 700;
    color: #00A0A6;
    text-align: left;
    margin-top: -11rem;
    margin-left: 7rem;
  }

  .flow1d,
  .flow2d,
  .flow3d,
  .flow4d {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    text-align: left;
    padding-right: 2rem;
    padding-left: 17rem;
    margin-top: -1rem;
    line-height: normal;
  }
}

/* voice */
.voice h2 {
  font-size: 4.6rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.06em;
  text-align: center;
  color: #333;
  line-height: 1;
  padding-top: 4rem;
  padding-bottom: 10rem;
  position: relative;
  margin-top:8rem;
}

.voice h2::after {
  position: absolute;
  content: "VOICE";
  z-index: -1;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21rem;
  letter-spacing: 0.2em;
  color: rgba(248, 241, 231, 1);
  top: -5rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.voice-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10rem;
  align-items: center;
}

.voice-wrapper {
  flex-direction: column;
  width:60%;
}

.voice1,
.voice2 {
  display: flex;
  margin: 7rem 0 0 0;
  background-color: #F8F1E9;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  padding: 6% 7%;
  align-items: center;
}

.voice1-photo,
.voice2-photo {
  text-align: center;
  margin-top: 2%;
  margin-right: 5%;
}

.voice1-text,
.voice2-text {
  width: 25%;
}

.voice-1a,
.voice-2a {
  width: 200%;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  text-align: left;
  padding-bottom: 1.6rem;
  letter-spacing: 0.04em;
}

.voice-1b,
.voice-2b {
  width: 36.4rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #333;
  text-align: left;
}

.voice-map-wrapper {
width:35%;
padding-right: 5%;
}

.voice-map {
  position: relative;
  z-index: 1;
  margin-top: 7rem;
}

.voice-map img{
  width:100%;
  height: auto;
}

.voice-map::before {
  position: absolute;
  content: "";
  top: 9rem;
  left: -1rem;
  width: 22rem;
  height: 22rem;
  background-image: url(../img/voice-map-tegaki-text.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.map-text1 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.06em;
  padding-top: 1rem;
  padding-left: 1rem;
  position: absolute;
  top: 10rem;
  left: 3rem;
}

.map-text2 {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.272;
  letter-spacing: 0.06em;
  padding-top: 1rem;
  text-align: right;
}

.map-text1::before {
  content: "";
  width: 0.3rem;
  height: 1.5rem;
  background-color: #333;
  rotate: -30deg;
  position: absolute;
  top: 70%;
  transform-origin: top;
  transform: translateY(-50%);
  left: -5%;
}

.map-text1::after {
  content: "";
  width: 0.3rem;
  height: 1.5rem;
  background-color: #333;
  rotate: 30deg;
  position: absolute;
  top: 70%;
  transform-origin: top;
  transform: translateY(-50%);
  right: -7%;
}

@media(max-width:768px) {
  .voice h2 {
    font-size: 2.2rem;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    letter-spacing: 0.06em;
    text-align: center;
    color: #333;
    line-height: 1;
    padding-bottom: 4rem;
    position: relative;
    margin-top: 2rem;
  }

  .voice h2::after {
    position: absolute;
    content: "VOICE";
    z-index: -1;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 6.4rem;
    letter-spacing: 0.2em;
    color: rgba(248, 241, 231, 1);
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }

  .voice-container {
    width: 100%;
    gap: 10%;
    display: block;
    margin-bottom: 3rem;
  }

  .voice-wrapper {
    flex-direction: column;
    width: 100%;
  }

  .voice-map-wrapper{
    width:100%;
  }

  .voice1,
  .voice2 {
    display: flex;
    margin: 0;
    background-color: #FAF7F3;
    margin-bottom: 1.923rem;
    padding-bottom: 10%;
  }

  .voice1-photo,
  .voice2-photo {
    text-align: center;
    margin-left: 3rem;
    position: relative;
    z-index: 1;
  }

  .voice1-photo::before {
    position: absolute;
    content: "";
    width: 11.2rem;
    height: 6.4rem;
    background-color: #EFE9E1;
    top: 10%;
    left: 10%;
    z-index: -1;
  }

  .voice2-photo::before {
    position: absolute;
    content: "";
    width: 11.2rem;
    height: 6.4rem;
    background-color: #EFE9E1;
    top: 10%;
    left: 10%;
    z-index: -1;
  }

  .voice1-photo::after {
    position: absolute;
    content: "埼玉県内医療法人様";
    font-weight: 700;
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: 0.04em;
    color: #333;
    top: 100%;
    left: 0;
  }

  .voice2-photo::after {
    position: absolute;
    content: "神奈川県内医療法人様";
    font-weight: 700;
    font-size: 1.2rem;
    line-height: normal;
    letter-spacing: 0.04em;
    color: #333;
    top:100%;
    left: -11%;
    width: 15rem;
  }

  .voice1-photo img,
  .voice2-photo img {
    width: 11.4rem;
    height: 6.5rem;
  }

  .voice1-text,
  .voice2-text {
    width: 25%;
  }

  .voice-1a,
  .voice-2a {
    display: none;
  }

  .voice-1b,
  .voice-2b {
    width: 16rem;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    text-align: left;
  }

  .voice-map {
    position: relative;
      margin: 0 auto;
      width:50%;
  }

  .voice-map::before {
    position: absolute;
    content: "";
    top: 6rem;
    width: 10rem;
    height: 5rem;
    background-image: url(../img/voice-map-tegaki-text.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .map-text1 {
    display: none;
  }

  .map-text2 {
    font-size: 1.0rem;
    font-weight: 500;
    line-height: 1.272;
    letter-spacing: 0.06em;
    margin-left: -7rem;
    color:#333;
  }
}


/* FAQ */
.faq {
  width: 100%;
  background: linear-gradient(rgba(106, 216, 224, 0.39) 0%, #fff 30%);
}

.faq h2 {
  font-size: 4.6rem;
  font-weight: 700;
  color: #00A0A6;
  line-height: 1;
  letter-spacing: 0.06em;
  text-align: center;
  padding-top: 11rem;
  position: relative;
  z-index: 99;
}

.faq h2::after {
  position: absolute;
  content: "FAQ";
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 21rem;
  letter-spacing: 0.2em;
  color: #b6eff3;
  top: 3rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
}

.faq_wrapper {
  width: 80%;
  text-align: left;
  margin: 0 auto;
  margin-top: 15rem;
  margin-bottom: 7.8rem;
}

.faq_summary {
  width: 90%;
  background-color: #FFF;
  border-radius: 20px;
  border: 2px solid #D9D9D9;
  font-size: 1.6rem;
  color: #333;
  font-weight: 500;
  line-height: normal;
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.4rem;
  margin: 0 auto 2rem;
  box-shadow: 2px 4px 0px 0px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.faq_details:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.faq_summary span {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 99999px;
  background-color: #00A0A6;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  /*左右中央揃え*/
  align-items: center;
  /*上下中央揃え*/
  padding: 0.6rem;
  padding-bottom: 1.1rem;
  margin-left: 3.2rem;
  cursor: pointer;
}

.faq_details {
  width: 100%;
  margin-bottom: 2rem;
}

.faq_details p {
  width: 80%;
  font-size: 1.6rem;
  line-height: normal;
  color: #333;
  font-weight: 500;
  margin-bottom: 3rem;
  display: flex;
  gap: 3.3rem;
}

.faq_details p span {
  width: 4.7rem;
  height: 4.7rem;
  border-radius: 99999px;
  border: 2px solid #44B9C1;
  color: #44B9C1;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  /*左右中央揃え*/
  align-items: center;
  /*上下中央揃え*/
  padding: 1.6rem;
  padding-bottom: 2.0rem;
}

.p-span {
  width: 5.2rem;
  height: 3.7rem;
}

.faq_details summary {
  justify-content: normal;
  position: relative;
  line-height: normal;
}

.faq_details summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 2rem;
  height: 2rem;
  margin-left: 10px;
  border-bottom: 3px solid #00A0A6;
  border-right: 3px solid #00A0A6;
  content: '';
  transition: transform .3s;
  position: absolute;
  top: 3rem;
  right: 5rem;
  cursor: pointer;
}

.faq_details[open] summary::after {
  transform: rotate(225deg);
}

.faq_details p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3rem 2rem 1.0rem;
  color: #333333;
  transition: transform .5s, opacity .5s;
}

.faq_details[open] p {
  transform: none;
  opacity: 1;
  width:87%;
  margin:0 auto;
  line-height: normal;
}

.faq-details-a1a {
  padding-left: 17rem;
  margin-top: -3rem;
   color: #333333;
}

.faq-details-a1b {
  padding-left: 20rem;
  margin-top: -3rem;
  color: #333333;
}

@media(max-width:768px) {
  .faq h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00A0A6;
    line-height: 1;
    letter-spacing: 0.06em;
    text-align: center;
    padding-top: 5.3rem;
    position: relative;
    z-index: 99;
  }

  .faq h2::after {
    font-size: 6.4rem;
  }

  .faq_wrapper {
    width: 100%;
    text-align: left;
    margin: 0 auto;
    margin-top: 6rem;
    margin-bottom: 1.8rem;
  }

  .faq_summary {
    width: 32.0rem;
    background-color: #FFF;
    border-radius: 20px;
    border: 2px solid #D9D9D9;
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    line-height: normal;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.0rem;
    margin: 0 auto;
    padding-right: 6rem;
    box-shadow: 2px 4px 0px 0px rgba(0, 0, 0, 0.25);
  }


  .faq_summary span {
    width: 3.0rem;
    height: 3.0rem;
    aspect-ratio:1/1;
    border-radius: 99999px;
    background-color: #00A0A6;
    color: #fff;
    font-size: 1.2rem;
    line-height: normal;
    font-weight: 700;
    display: flex;
    justify-content: center;
    /*左右中央揃え*/
    align-items: center;
    /*上下中央揃え*/
    padding:  0.8rem 0.7rem 0.6rem 0.6rem;
    padding-bottom: 1.1rem;
    margin-left: 1.2rem;
    cursor: pointer;
  }

  .faq_details {
    width: 100%;
  }

  .faq_details p {
    width: 80%;
    font-size: 1.2rem;
    line-height: 1.4;
    color: #333;
    font-weight: 500;
    margin-bottom: 3rem;
    display: flex;
    gap: 1rem;
  }

  .faq_details p span {
    height: 3.0rem;
    aspect-ratio:1/1;
    border-radius: 99999px;
    border: 2px solid #44B9C1;
    color: #44B9C1;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    /*左右中央揃え*/
    align-items: center;
    /*上下中央揃え*/
    padding: 0 0 0.4rem 0;
    padding-bottom:0;
  }


  .faq_details summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 1.5rem;
    height: 1.5rem;
    margin-left: 10px;
    border-bottom: 3px solid #00A0A6;
    border-right: 3px solid #00A0A6;
    content: '';
    transition: transform .3s;
    position: absolute;
    top: 38%;
    right: 5%;
    cursor: pointer;
  }

  .faq_details p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0;
    color: #333333;
    transition: transform .5s, opacity .5s;
  }

  .faq_details[open] p {
    transform: none;
    opacity: 1;
    margin:0 auto;
    line-height: normal;
    width: 80%;
    padding-top:2rem;
  }

  .faq-details-a1a {
    padding-left: 6rem;
    margin-top: -3rem;
    font-size: 1.2rem;
  }

  .faq-details-a1b {
    padding-left: 6rem;
    margin-top: -3rem;
    font-size: 1.2rem;
  }
}

/* conv-5 */
.conv-5 {
  width: 100%;
  background-color: #00A0A6;
  column-gap: 10rem;
}

.conv-5p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.47;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
  width: 100%;
  padding-top: 3.3rem;
  font-family: "Open Sans Hebrew", sans-serif;
}

.conv-5 p span {
  position: relative;
}

.conv-5 p span::before {
  content: "";
  width: 3px;
  height: 27px;
  background-color: #FFFFFF;
  rotate: -30deg;
  position: absolute;
  top: 60%;
  transform-origin: top;
  transform: translateY(-50%);
  left: -4%;
}

.conv-5 p span::after {
  content: "";
  width: 3px;
  height: 27px;
  background-color: #FFFFFF;
  rotate: 30deg;
  position: absolute;
  top: 60%;
  transform-origin: top;
  transform: translateY(-50%);
  right: -4%;
}

.conv-5-wrapper {
  width: 100%;
  display: flex;
   align-items: center;
   justify-content: space-around;
}

.conv-5a {
  font-size: 2.2rem;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  padding-left: 15rem;
  padding-top: 1.6rem;
  letter-spacing: 0.03em;
  width: 46%;
}

.conv-5a p {
  padding-top: 0;
}

.conv-5a h3 {
  padding: 1.0rem 0 0.6rem 0;
  line-height: 1.5;
  position: relative;
  letter-spacing: 0.08em;
  white-space:nowrap;
}

.conv-5a h3::before {
  content: url(../img/staff-in-last-conv.png);
  position: absolute;
  top: -110%;
  left: -16%;
}

.conv-5a h3 span {
  color: #FEC800;
  padding-bottom: 1rem;
}

.conv-5a p {
  font-size: 3.6rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.03em;
  font-family: "Inter", sans-serif;
  color: #fff;
  text-align: left;
  margin-bottom: 8rem;
}

.conv-5b {
  display: flex;
  border: solid #fff;
  border-radius: 99999px;
  width: 56.6rem;
  height: 8.8rem;
  margin: 0 auto;
  margin-top: 3rem;
  cursor: pointer;
}

.conv-5b:hover {
  opacity: 0.8;
  transition: 0.5s;
}

.conv-5b-1 {
  width: 13.7rem;
  margin-top: 2.4rem;
}

.conv-5b-1 img {
  width: 5.7rem;
  height: 4.0rem;
  margin-left: 4.5rem;
}

.conv-5b-2 {
  width: 100%;
  text-align: center;
}

.conv-5b-2 p {
  margin-top: 2.7rem;
}

.conv-5b-2 p a {
  text-decoration: none;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.0;
  font-weight: 600;
}

.conv-5b-3 {
  margin-top: 2.5rem;
  margin-right: 2.8rem;
}

.conv-5b-3 img {
  width: 3.75rem;
  height: 3.75rem;
}

@media(max-width:768px) {
  .conv-5 {
    width: 100%;
    background-color: #fff;
    column-gap: 10rem;
  }

  .conv-5p {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.47;
    letter-spacing: 0.06em;
    color: #00A0A6;
    text-align: center;
    width: 100%;
    padding-top: 3.3rem;
  }

  .conv-5 p span::before {
    display: none;
  }

  .conv-5 p span::after {
    display: none;
  }

  .conv-5-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #00A0A6;
    column-gap: 1rem;
    margin-bottom: 6%;
  }

  .conv-5a {
    text-align: center;
        width: 100%;
        padding: 1rem 0 1.5rem 2.5rem;
  }

  .conv-5a h3 {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #fff;
    font-weight: 700;
    padding-top: 0;
    letter-spacing: 0.03em;
    width: 31rem;
    position: relative;
  }

  .conv-5a h3::before {
    content: "";
    top: -5rem;
    left: -1rem;
    width: 2.52rem;
    height: 5.72rem;
    background-image: url(../img/staff-in-last-conv.png);
    background-repeat: no-repeat;
    background-size: contain;
  }

  .conv-5a h3 span {
    color: #FEC800;
    padding-bottom: 1.38rem;
    text-align: center;
  }

  .conv-5a p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.03em;
    font-family: "Inter", sans-serif;
    color: #fff;
    text-align: center;
    padding-top: 0;
    width: 30rem;
    margin-bottom: 0;
  }

  .conv-5b {
    display: flex;
    border: solid #fff;
    border-radius: 99999px;
    width: 25.3rem;
    height: 4.4rem;
    cursor: pointer;
    margin: auto;
    margin-bottom: 1.1rem;
  }

  .conv-5b-1 {
    width: 18.7rem;
    margin-top: 2.4rem;
  }

  .conv-5b-1 img {
    width: 3.24rem;
    height: 2.27rem;
    margin-top: -1.5rem;
    margin-bottom: 3rem;
    margin-left: 1.5rem;
  }

  .conv-5b-2 p {
    margin-top: 0.5rem;
    margin-left: -4rem;
  }

  .conv-5b-2 p a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.0;
    font-weight: 600;
  }

  .conv-5b-3 img {
    width: 1.8rem;
    height: 1.8rem;
    margin-top: -1.5rem;
    margin-right: -1.5rem;
    display: block;
  }
}

/* Footer */
.footer-container {
  background-color: #FFF;
  width: 100%;
  display: flex;
  margin-top: 6.1rem;
  margin-bottom: 8.0rem;
  column-gap: 12rem;
  padding-left: 10.1rem;
}

.footer-logo p img {
  height: 6.3rem;
}

.ope-company,
.monodukuri {
  padding-top: 2rem;
}
.ope-company {
  color:#333;
}


.ope-company a{
  color: #00A0A6;
}

.ope-comp-span1 {
  padding-left: 1.5rem;
}

/* .ope-comp-span2 {
  padding-left: 10rem;
} */

.monodukuri{
  font-size: 1.4rem;
  text-align: right;
  color: #707070;
  line-height: 1.0;
}

.ope-company p {
  padding-bottom: 0.3rem;
}

.monodukuri p{
  padding-bottom: 1.6rem;
  text-align: right;
} 
.monodukuri-p {
  padding-right:9.8rem;
}

.ope-company-br-sp {
  display:none;
}

@media(max-width:768px) {
  .footer-container {
    background-color: #FFF;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 0.9rem;
    margin-bottom: 5rem;
    column-gap: 12rem;
    padding-left: 0;
    text-align: center;
  }

  .footer-logo p img {
    height: 2.99rem;
  }

  .ope-company {
    padding-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.4;
    color:#333;
  }
  .ope-company-br-sp {
    display: block !important;
  }
  .ope-comp-span1 {
    padding-left: 0;
  }

  .monodukuri {
    padding-top: 2rem;
    font-size: 0.9rem;
    text-align: right;
    color: #707070;
    line-height: 1.0;
    text-align: center;
    padding-bottom: 0.3rem;
  }

  .ope-company p {
    padding-bottom: 0;
    text-align: center;
  }

  .monodukuri p {
    padding-bottom: 0.4rem;
    text-align: center;
  }
  .monodukuri-p {
    padding-right:0;
}
}

/* ページトップへ戻るボタン */
.page-top {
  display: none;
  /* 非表示 */
  position: fixed;
  /* ページ右下に固定 */
  right: 5px;
  bottom: 5px;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 99999px;
  background-color: #8AE2E6;
  cursor: pointer;
  /* カーソルをポインターに */
}

.page-top-arrow {
  transform: translateY(70%) rotate(225deg);
  width: 1rem;
  height: 1rem;
  margin: 0.5rem auto;
  border-bottom: 2px solid #00A0A6;
  border-right: 2px solid #00A0A6;
  transition: transform .3s;
}

.page-top p {
  color: #00A0A6;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.27;
}

@media(max-width:768px) {
  .page-top p {
    display: none;
  }

  .page-top {
    display: none;
    /* 非表示 */
    position: fixed;
    /* ページ右下に固定 */
    right: 5px;
    bottom: 5px;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 99999px;
    background-color: #fff;
    border: 1px solid #9e9c9c;
    cursor: pointer;
    /* カーソルをポインターに */
  }

  .page-top-arrow {
    transform: translateY(70%) rotate(225deg);
    width: 0.6rem;
    height: 0.6rem;
    margin: 0.9rem auto;
    border-bottom: 1.2px solid #9e9c9c;
    border-right: 1.2px solid #9e9c9c;
    transition: transform .3s;
  }

  .page-top-upper-bar {
    width: 1rem;
    height: 0.1rem;
    border-top: 1px solid #ABABAB;
    margin: 0 auto;
    margin-top: -1.35rem;
  }

  .page-top p {
    color: #ababab;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.27;
  }
}

/* activeクラスが付与されたとき */
.page-top.active {
  display: block;
}

/* ホバーしたとき */
.page-top:hover {
  opacity: 0.8;
  transition: 0.5s;
}