@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0066cc;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
}

.Wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.Main {
  flex: 1;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.Inner {
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .Inner {
    padding: 0 1rem;
  }
}

.Title {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .Title {
    margin-bottom: 20px;
  }
}
.Title__sub {
  font-size: 25px;
  color: #036DD6;
  margin-bottom: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .Title__sub {
    font-size: 20px;
  }
}
.Title__text {
  font-size: 42px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Title__text {
    font-size: 24px;
  }
}

.Content__title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 32px;
  text-align: center;
  color: #036DD6;
}
@media screen and (max-width: 768px) {
  .Content__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.Content__text {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .Content__text {
    font-size: 16px;
  }
}

.text-blue {
  color: #0066cc;
}

.Header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.Header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Header__inner {
    flex-direction: column;
    padding: 10px;
  }
}
.Header__logo {
  font-weight: bold;
  color: #333;
}
.Header__logo__img {
  width: auto;
  height: 20px;
}
.Header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .Header__nav {
    display: none;
  }
}
.Header__nav__list {
  display: flex;
  gap: 20px;
}
.Header__nav__item a {
  color: #3B3B3B;
  font-weight: bold;
  font-size: 14px;
}
.Header__nav__item a:hover {
  color: #036DD6;
}
.Header__nav__contact a {
  width: 200px;
  height: 40px;
  border-radius: 20px;
  background: #036DD6;
  color: white;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Footer {
  background-color: #333;
  color: #fff;
  padding: 2rem 0;
}
.Footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}
.Footer__copyright {
  font-size: 0.9rem;
}

@media screen and (max-width: 768px) {
  .MainVisual {
    padding: 16px;
  }
}
.MainVisual__inner {
  max-width: 1200px;
  height: 700px;
  margin: 0 auto;
  padding: 0 50px;
  background-image: url("../img/fv_pc.png");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .MainVisual__inner {
    padding: 0 20px;
    height: 400px;
    align-items: center;
  }
}
.MainVisual__title {
  font-size: 48px;
  margin-bottom: 24px;
  color: #3B3B3B;
  line-height: 1.45;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .MainVisual__title {
    font-size: 28px;
  }
}
.MainVisual__text {
  font-size: 24px;
  color: #3B3B3B;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .MainVisual__text {
    font-size: 16px;
  }
}
.MainVisual__button {
  position: relative;
}
.MainVisual__button__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0066cc;
  color: #fff;
  font-weight: bold;
  width: 430px;
  height: 60px;
  padding: 0 8px 0 27px;
  border-radius: 30px;
  background: #036dd6;
  transition: all 0.3s ease;
}
.MainVisual__button__link:hover {
  background-color: #0055aa;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 102, 204, 0.3);
}
.MainVisual__button__link__img {
  width: 44px;
}
@media screen and (max-width: 768px) {
  .MainVisual__button__link__img {
    position: absolute;
    right: 8px;
  }
}
@media screen and (max-width: 768px) {
  .MainVisual__button__link {
    font-size: 14px;
    width: 100%;
    height: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .MainVisual__button {
    width: 100%;
  }
}

.Summary, .Guide, .Product, .System, .Member, .Contact {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .Summary, .Guide, .Product, .System, .Member, .Contact {
    padding: 3rem 0;
  }
}

.Summary {
  background-color: #fff;
}
.Summary__content {
  margin: 0 auto;
}
.Guide {
  background-image: url("../img/bg_guide.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.Guide__content__text {
  text-align: center;
}
.Guide__content__box {
  margin-top: 52px;
  background-color: #fff;
  padding: 32px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .Guide__content__box {
    padding: 16px;
  }
}
.Guide__content__box__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-bottom: 24px;
  text-align: center;
  color: #3B3B3B;
  border-bottom: 4px solid #F7F7F7;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__title {
    font-size: 18px;
  }
}
.Guide__content__box__wrap {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__wrap {
    flex-direction: column;
    gap: 16px;
  }
}
.Guide__content__box__img {
  width: 46%;
}
.Guide__content__box__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__img {
    width: 100%;
  }
}
.Guide__content__box__list {
  width: 54%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__list {
    width: 100%;
  }
}
.Guide__content__box__list .GuideItem {
  background-color: #F0F8FF;
  border: 1px solid #D1E5F8;
  border-radius: 6px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__list .GuideItem {
    padding: 12px 16px;
    align-items: flex-start;
    gap: 8px;
  }
}
.Guide__content__box__list .GuideItem__num {
  width: 38px;
  height: 38px;
  background-color: #036DD6;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .Guide__content__box__list .GuideItem__num {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .Guide__content__box__list .GuideItem__text {
    width: calc(100% - 38px);
  }
}
.Guide__content__box__list .GuideItem__text__title {
  font-size: 18px;
  font-weight: 500;
  color: #036DD6;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px dotted #036DD6;
}
.Guide__content__box__list .GuideItem__text__text {
  font-size: 14px;
  font-weight: 500;
}

.Product {
  background-color: #fff;
}
.Product__content__text {
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .Product__content__text {
    margin-bottom: 32px;
    text-align: left;
  }
}
.Product__content__kadai {
  background-color: #F8F8F8;
  padding: 32px 30px;
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .Product__content__kadai {
    flex-direction: column;
    width: 100%;
    padding: 16px;
  }
}
.Product__content__kadai__img {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .Product__content__kadai__img {
    display: none;
  }
}
.Product__content__kadai__img__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .Product__content__kadai__img__sp {
    display: block;
    text-align: center;
    margin-bottom: 16px;
  }
  .Product__content__kadai__img__sp img {
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .Product__content__kadai__img {
    width: 100%;
  }
}
.Product__content__kadai__text {
  width: calc(100% - 272px);
}
@media screen and (max-width: 768px) {
  .Product__content__kadai__text {
    width: 100%;
  }
}
.Product__content__kadai__text__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #3B3B3B;
}
@media screen and (max-width: 768px) {
  .Product__content__kadai__text__title {
    font-size: 18px;
    text-align: center;
  }
}
.Product__content__kadai__text__list {
  display: flex;
  flex-direction: column;
}
.Product__content__app {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .Product__content__app {
    flex-direction: column;
    gap: 0;
  }
}
.Product__content__app__img {
  width: 270px;
}
@media screen and (max-width: 768px) {
  .Product__content__app__img {
    width: 100%;
    text-align: center;
  }
}
.Product__content__app__img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .Product__content__app__img img {
    width: 180px;
  }
}
.Product__content__app__text {
  width: calc(100% - 310px);
  padding: 24px;
  border: 1px solid #D1E5F8;
  background-color: #F0F8FF;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .Product__content__app__text {
    width: 100%;
    margin-top: -80px;
  }
}
.Product__content__app__text__tag {
  display: inline-block;
  background-color: #036DD6;
  color: white;
  padding: 8px 17px;
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .Product__content__app__text__tag {
    margin-bottom: 8px;
    width: 100%;
    text-align: center;
  }
}
.Product__content__app__text__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #3B3B3B;
  border-bottom: 1px dotted #036DD6;
}
@media screen and (max-width: 768px) {
  .Product__content__app__text__title {
    text-align: center;
  }
}
.Product__content__app__text__text {
  font-size: 16px;
  margin-bottom: 24px;
}

.ProductKadaiItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  padding: 24px 0;
  border-radius: 5px;
  border-top: 1px solid #D3D3D3;
}
.ProductKadaiItem:last-child {
  margin-bottom: 0;
  border-bottom: 1px solid #D3D3D3;
}
@media screen and (max-width: 768px) {
  .ProductKadaiItem {
    flex-direction: column;
    padding: 16px 0;
    margin-bottom: 0;
  }
}
.ProductKadaiItem__title {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ProductKadaiItem__title {
    font-size: 16px;
    text-align: center;
  }
}
.ProductKadaiItem img {
  margin: 0 16px;
  width: 13px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .ProductKadaiItem img {
    margin: 8px auto;
    width: 26px;
  }
}
.ProductKadaiItem__text {
  color: #036DD6;
  font-weight: bold;
  font-size: 18px;
}

.ProductTech__title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: #036DD6;
  border-bottom: 4px solid white;
}
@media screen and (max-width: 768px) {
  .ProductTech__title {
    text-align: center;
  }
}
.ProductTech__box {
  display: flex;
  background-color: #f5f9ff;
  border-radius: 5px;
  gap: 36px;
}
@media screen and (max-width: 768px) {
  .ProductTech__box {
    flex-direction: column;
    gap: 18px;
  }
}
.ProductTech__box__img {
  width: 390px;
}
@media screen and (max-width: 768px) {
  .ProductTech__box__img {
    width: 100%;
  }
}
.ProductTech__box__list {
  width: calc(100% - 426px);
  display: flex;
  gap: 11px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .ProductTech__box__list {
    width: 100%;
    gap: 8px;
  }
}
.ProductTech__box__list__item {
  font-weight: bold;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.ProductTech__box__list__item::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 26px;
  margin-right: 8px;
  background-image: url("../img/icon_check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.ProductTech__box__list__item__little {
  font-size: 14px;
  font-weight: bold;
}


.Member {
  background-color: #fff;
}
.Member__content__navi {
  display: flex;
  justify-content: center;
  background-color: #EBEBEB;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .Member__content__navi {
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
    background-color: transparent;
  }
}
.Member__content__navi__item {
  width: 20%;
  padding: 17px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Member__content__navi__item {
    width: calc(50% - 4px);
    background-color: #EBEBEB;
  }
}
.Member__content__navi__item.active {
  background-color: #036DD6;
  color: white;
  position: relative;
}
.Member__content__navi__item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #036DD6;
}
@media screen and (max-width: 768px) {
  .Member__content__navi__item.active::after {
    display: none;
  }
}
.Member__content__navi__item:hover {
  background-color: #e0e0e0;
}
.Member__content__navi__item:hover.active {
  background-color: #0055aa;
}
.Member__content__navi__item:hover.active::after {
  border-top-color: #0055aa;
}
.Member__content__navi__item__name {
  font-weight: bold;
  font-size: 18px;
}
.Member__content__box {
  margin-bottom: 24px;
}
.Member__content__button {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.5rem;
}
.Member__content__button__text {
  font-size: 16px;
  font-weight: bold;
  color: #036DD6;
}
.Member__content__button__box {
  display: flex;
  gap: 16px;
}
.Member__content__button__box__button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.Member__content__button__box__button img {
  width: 44px;
  transition: all 0.3s ease;
}
.Member__content__button__box__button:hover img {
  opacity: 0.7;
}

.MemberItem {
  display: none;
}
.MemberItem.active {
  display: flex;
  gap: 32px;
  padding: 32px;
  background-color: #F0F8FF;
  border: 1px solid #D1E5F8;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .MemberItem.active {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
}
.MemberItem__img {
  width: 420px;
  height: 420px;
}
@media screen and (max-width: 768px) {
  .MemberItem__img {
    width: 100%;
    height: auto;
  }
}
.MemberItem__img__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.MemberItem__text {
  width: calc(100% - 452px);
}
@media screen and (max-width: 768px) {
  .MemberItem__text {
    width: 100%;
  }
}
.MemberItem__text__name {
  font-size: 22px;
  font-weight: bold;
  color: #036DD6;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dotted #036DD6;
}
@media screen and (max-width: 768px) {
  .MemberItem__text__name {
    font-size: 18px;
    text-align: center;
  }
}
.MemberItem__text__text {
  line-height: 1.5;
  font-size: 14px;
  font-weight: 500;
  color: #3B3B3B;
}

.Contact {
  background-color: #F8F8F8;
}
.Contact__content__text {
  text-align: center;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .Contact__content__text {
    margin-bottom: 32px;
    text-align: left;
  }
}
.Contact__content__form {
  margin: 0 auto;
}
.Contact__content__form__navi {
  display: flex;
  margin-bottom: 2rem;
  border-radius: 5px;
  overflow: hidden;
}
.Contact__content__form__navi__item {
  flex: 1;
  padding: 1rem;
  background-color: #e0e0e0;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.Contact__content__form__navi__item:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.Contact__content__form__navi__item:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.Contact__content__form__navi__item.active {
  background-color: #036DD6;
  color: white;
}
.Contact__content__form__navi__item:hover {
  background-color: #cccccc;
}
.Contact__content__form__navi__item:hover.active {
  background-color: #0055aa;
}

.ContactForm {
  display: none;
}
.ContactForm.active {
  display: block;
}
.ContactForm__item {
  margin-bottom: 32px;
  display: flex;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ContactForm__item {
    flex-direction: column;
    gap: 16px;
  }
}
.ContactForm__item__title {
  width: 300px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ContactForm__item__title {
    width: 100%;
  }
}
.ContactForm__item__title__text {
  font-weight: bold;
  font-size: 18px;
}
.ContactForm__item__title__required {
  background-color: #e53935;
  color: white;
  font-size: 14px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 20px;
}
.ContactForm__item__title__nini {
  background-color: #9e9e9e;
  color: white;
  font-size: 14px;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  margin-left: 20px;
}
.ContactForm__item__form {
  width: calc(100% - 320px);
}
@media screen and (max-width: 768px) {
  .ContactForm__item__form {
    width: 100%;
  }
}
.ContactForm__item__form__wrap {
  display: flex;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .ContactForm__item__form__wrap {
    flex-direction: column;
  }
}
.ContactForm__item__form__wrap__input {
  flex: 1;
  position: relative;
}
.ContactForm__item__form__wrap__input__text {
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  background-color: white;
  padding: 0 0.3rem;
  font-size: 0.8rem;
  color: #666;
}
.ContactForm__item__form__wrap__input__input {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.ContactForm__item__form__wrap__input__input:focus {
  outline: none;
  border-color: #0066cc;
}
.ContactForm__item__form__select select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  appearance: none;
  font-size: 16px;
  background-image: url("../img/icon_down_arrow.png");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 12px;
}
.ContactForm__item__form__select select:focus {
  outline: none;
  border-color: #0066cc;
}
.ContactForm__item__form__tel, .ContactForm__item__form__email, .ContactForm__item__form__company_name {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
.ContactForm__item__form__tel:focus, .ContactForm__item__form__email:focus, .ContactForm__item__form__company_name:focus {
  outline: none;
  border-color: #0066cc;
}
.ContactForm__item__form__textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  min-height: 150px;
  resize: vertical;
  font-size: 16px;
}
.ContactForm__item__form__textarea:focus {
  outline: none;
  border-color: #0066cc;
}
.ContactForm__button {
  text-align: center;
  margin-top: 2rem;
}
.ContactForm__button__button {
  background: none;
  border: none;
  cursor: pointer;
  background-color: #036DD6;
  color: white;
  padding: 1rem 8px 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  width: 258px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.ContactForm__button__button:hover {
  background-color: #0055aa;
}
.ContactForm__button__button__text {
  margin-right: 0.8rem;
}
.ContactForm__button__button img {
  width: 44px;
  height: 44px;
}
.ContactForm__error {
  background-color: #fff5f5;
  border: 2px solid #e53935;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
.ContactForm__error__title {
  color: #e53935;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0.5rem;
}
.ContactForm__error__list {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.ContactForm__error__list li {
  color: #e53935;
  margin-bottom: 0.3rem;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .ContactForm__error {
    padding: 0.8rem;
  }
  .ContactForm__error__title {
    font-size: 16px;
  }
  .ContactForm__error__list li {
    font-size: 13px;
  }
}
.ContactForm .has-error input, .ContactForm .has-error select, .ContactForm .has-error textarea {
  border-color: #e53935;
  background-color: #fff5f5;
}

.FloatingButton {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: white;
  padding: 8px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .FloatingButton {
    display: block;
  }
}
.FloatingButton.hidden {
  transform: translateY(100%);
}
.FloatingButton__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.FloatingButton__button {
  width: 100%;
  position: relative;
}
.FloatingButton__button__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #036dd6;
  color: #fff;
  font-weight: bold;
  width: 100%;
  height: 60px;
  padding: 0 60px 0 0;
  border-radius: 30px;
  transition: all 0.3s ease;
}
.FloatingButton__button__link:hover {
  background-color: #0055aa;
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 102, 204, 0.3);
}
.FloatingButton__button__link__text {
  font-size: 14px;
  text-align: center;
}
.FloatingButton__button__link__img {
  width: 44px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
/*# sourceMappingURL=style.css.map */




.SystemItem {
  display: flex;
  align-items: flex-start;   /* 上揃え */
  gap: 32px;                 /* 画像とテキストの間隔 */
  margin-top: 28px;
}

.SystemItem__img__img {
  width: 200px;              /* 必要に応じて調整 */
  height: auto;
  display: block;            /* 余計な隙間防止 */
  border-radius: 12px;       /* お好み：角丸 */
}

.SystemItem__text {
  flex: 1;                   /* 右側を残り幅いっぱいに */
  line-height: 1.8;
  font-size: 16px;
}

/* スマホで縦並びに切り替え（任意） */
@media (max-width: 768px) {
  .SystemItem {
    flex-direction: column;
    align-items: center;
    text-align: left;        /* 中央にしたければ center */
  }
  .SystemItem__img__img {
    width: 70%;
    max-width: 320px;
  }
}
