@charset "utf-8";
/* CSS Document */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  color: #1f1f1f;
  line-height: 1.8em;
}
html {
  scroll-behavior: smooth;
}
.wrap {
  overflow: hidden;
}
.txt_center {
  text-align: center;
}
table {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
  transition: 1.0s;
}
.center-block {
  display: block;
  margin: 0 auto;
}
.container-f {
  padding-left: 0px;
  padding-right: 0px;
  margin-right: auto;
  margin-left: auto;
}
.container {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1100px;
}
.container-w {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1600px;
}
.flex_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex_box_jc {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.flex_box_center, .flex_box_reverse_center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.flex_box_reverse {
  display: flex;
  justify-content: space-between;
}
.item2 {
  width: calc(50% - 30px);
}
.item3 {
  width: calc(33.3% - 30px);
}
.item4 {
  width: calc(25% - 30px);
}
.item5 {
  width: calc(20% - 30px);
}
.item30 {
  width: calc(30% - 30px);
}
.item40 {
  width: calc(40% - 30px);
}
.item60 {
  width: calc(60% - 30px);
}
.item70 {
  width: calc(70% - 30px);
}
.p30 {
  padding-bottom: 30px;
  padding-top: 30px;
}
.breadcrumb {
  padding-top: 15px;
  padding-bottom: 15px;
  list-style: none;
  margin-top: 70px;
}
.breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 13px;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  text-decoration: none;
  color: #000;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.navbar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5px 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 20px;
  font-weight: bold;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links li {
  list-style: none;
  position: relative;
  flex: none;
  font-size: 14px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  padding: 5px 10px;
  display: block;
  white-space: nowrap;
  font-weight: 700;
}
/* PC用アコーディオン（クリックで開閉） */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  width: max-content; /* テキスト幅に合わせる */
  min-width: calc(100% + 50px); /* 親メニュー幅＋50px */
  padding: 10px 0;
  z-index: 999;
}
.submenu li a {
  padding: 10px 25px;
  white-space: nowrap;
  display: block;
}
.has-sub.open .submenu {
  display: flex;
}
/* ===== モバイル用 ===== */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  position: relative;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  position: absolute;
  width: 100%;
  height: 3px;
  background: #333;
  left: 0;
  transition: 0.3s;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 10px;
}
.hamburger span:nth-child(3) {
  top: 20px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 10px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 10px;
}
/* モバイルメニュー（全面表示） */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: right 0.3s ease;
  padding-top: 60px;
  z-index: 999;
}
.mobile-nav.open {
  right: 0;
}
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav li {
  border-bottom: 1px solid #eee;
}
.mobile-nav a, .mobile-nav .accordion {
  display: block;
  padding: 15px;
  color: #333;
  text-decoration: none;
  background: #fff;
  font-size: 16px;
  border: none;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
/* モバイルアコーディオン */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}
.mobile-submenu a {
  padding-left: 30px;
}
.mobile-submenu.open {
  max-height: 500px; /* 十分に大きな値 */
}
/*.mv {
  height: 100vh;
}*/
.sec_box {
  padding-top: 110px;
  padding-bottom: 110px;
}
.concept h2 {
  font-size: 300%;
  line-height: 1.6em;
  font-weight: bolder;
}
.eng_tl {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  font-size: 450%;
}
.sec_tl {
  letter-spacing: .1rem;
  font-weight: 700;
  font-size: 200%;
  margin-top: 40px;
  margin-bottom: 80px !important;
}
.features_inner_l {
  background: linear-gradient(90deg, #e8e7f3 0%, #e8e7f3 40%, #fff 40%, #fff 100%);
  margin-top: 60px;
  margin-bottom: 60px;
}
.features_inner_r {
  background: linear-gradient(90deg, #fff 0%, #fff 60%, #e8e7f3 60%, #e8e7f3 100%);
  margin-top: 60px;
  margin-bottom: 60px;
}
.imgbx {
  margin: 7% 5%;
}
.features h3, .flow h3 {
  font-size: 28px;
  margin-bottom: 30px;
}
.featurenum {
  margin-bottom: 30px;
  font-size: 33px;
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #7465dc;
  position: relative;
}
.featurenum::after {
  position: absolute;
  content: "";
  top: 50%;
  width: 200px;
  height: 1px;
  background-color: #7465dc;
}
.btn_base {
  cursor: pointer;
  border: none;
  background-color: #7465dc;
  background-image: url(../img/mail.svg);
  background-repeat: no-repeat;
  background-position: right 55px top 26px;
  background-size: 14px 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  width: 310px;
  padding: 22px 5px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: .1rem;
}
.about .btn_base {
  background-image:none;
}
img {
  border-radius: 20px;
}
header img {
  border-radius: 0;
}
.products img:hover {
  transform: rotateY(180deg);
}
.flow {
  background: rgba(142, 134, 191, .1);
}
.flow_box {
  background: #fff;
  padding: 3%;
  position: relative;
  display: inline-block;
  margin-bottom: 100px;
  border-radius: 30px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
/* 白い三角（本体） */
.flow_box:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  border: 35px solid transparent;
  border-top: 35px solid #fff;
  z-index: 2; /* ← 白を前面に */
}
/* 影の三角 */
.flow_box:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -35px;
  border: 35px solid transparent;
  border-top: 35px solid rgba(0, 0, 0, 0.2); /* 影の色 */
  filter: blur(4px); /* ぼかす */
  transform: translateY(6px); /* 少し下にずらす */
  z-index: 1; /* ← 背面に */
}
.flow_box_last {
  background: #fff;
  padding: 3%;
  border-radius: 30px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  margin-bottom: 100px;
}
.navbtn_1 {
  border-radius: 30px;
  background: #7465dc;
  color: #fff !important;
  font-size: 13px;
}
.navbtn_2 {
  font-size: 13px;
  background: #598ef6;
  color: #fff !important;
  border-radius: 30px;
}
.footer_contact h2 {
  font-size: 260%;
  line-height: 1.6em;
  font-weight: bolder;
  margin-top: 0;
  color: #fff;
}
.footer_contact .flex_box {
  align-items: baseline;
}
.footerbtn {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-size: 160%;
  color: #000;
  align-items: center;
  font-weight: 600;
}
.faq {
  background: url("../img/tran.png");
  background-repeat: repeat;
  background-position: top center;
}
.faq .container {
  background: #fff;
}
.footer_contact {
  background: url("../img/purple.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 100px;
}
.mt100 {
  margin-top: 100px;
}
.mpab {
  position: absolute;
  right: 20%;
  bottom: 45%;
}
.nonround {
  border-radius: 0;
}
.smtx {
  font-size: 75%;
}
.news_box {
  background: rgba(142, 134, 191, .2);
  padding: 4%;
  border-radius: 30px;
}
.news_box a {
  color: #111;
  text-decoration: none;
}
.news_box li {
  font-weight: 700;
  padding-top: 20px;
  padding-bottom: 20px;
}
.date {
  color: #666;
  padding-right: 20px;
}
.footerbtn {
  display: flex;
  width: 100%;
  border-radius: 10px;
  background: #fff;
  padding: 30px 10px;
  justify-content: center;
  align-items: center;
}
.footer_contact .fa-file {
  font-size: 200%;
  color: #7465dc !important;
}
.footer_contact .fa-envelope {
  font-size: 200%;
  color: #7465dc !important;
}
.footer_contact .fa-tooth {
  font-size: 200%;
  color: #7465dc !important;
}
/*アコーディオン全体*/
.accordion-area {
  list-style: none;
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
}
.accordion-area li {
  margin: 10px 0;
}
.accordion-area section {
  border: 1px solid #ccc;
}
/*アコーディオンタイトル*/
.title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  padding: 1% 3% 1% 50px;
  transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before, .title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 4px;
  background-color: #7465dc;
}
.title::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);
}
.title::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}
.title.close::after {
  transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
  display: none; /*はじめは非表示*/
  background: #f3f3f3;
  margin: 0 3% 3% 3%;
  padding: 3%;
}
.footer_menu {
  padding-bottom: 30px;
  padding-top: 50px;
}
.mt30 {
  margin-top: 30px;
}
.footer_menu h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer_menu p {
  font-size: 13px;
}
.copy {
  text-align: center;
  font-size: 11px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.fm a {
  text-decoration: none;
  color: #000;
}
.fm {
  font-weight: 700;
  font-size: 15px;
}
.fm li {
  padding-bottom: 10px;
}
.fm_child {
  padding-left: 20px;
  position: relative;
}
.fm_child li {
  padding-bottom: 5px;
  font-weight: 500;
  font-size: 15px;
}
.fm_child li:before {
  content: '- ';
}
.footerbtn img {
  height: 70px;
  width: auto;
}
/* スライド */
.slider {
  position: relative;
  width: 100%;
  height: 40vh; /* 高さを画面高さの割合で設定 */
  min-height: 200px;
  overflow: hidden;
}
.slide {
  position: absolute;
  width: 20%; /* 幅を画面幅に応じて可変 */
  max-width: 200px;
  animation-name: moveSlide;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
}
.slide img {
  width: 100%;
  border-radius: 10px;
  display: block;
}
#faq h4 {
  max-width: 880px;
  background: #7465dc;
  color: #fff;
  display: block;
  margin: auto;
  padding: 10px 10px;
}
.txt_right {
  text-align: right;
}
.hw {
  font-size: 23px;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
}
#company th {
  border: 1px solid #ccc;
  padding: 15px 10px;
  background: #f3f3f3;
}
#company td {
  border: 1px solid #ccc;
  padding: 15px 10px;
}
.sectl {
  letter-spacing: .1rem;
  background: rgba(142, 134, 191, .2);
  padding: 10px;
  margin-bottom: 20px;
  font-size: clamp(18px, 2.5vw, 25px);
}
.anc_btn {
  font-size: clamp(15px, 1.8vw, 18px);
  background-color: #7465dc;
  border: 1px solid #7465dc;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: block;
  margin: auto;
  width: 100%;
  padding: 16px 5px;
  font-weight: bold;
  letter-spacing: .1rem;
  border-radius: 10px;
}
.anc_btn:hover {
  color: #7465dc;
  background-color: #fff;
}
.formbtn .btn_base {
  display: block;
  margin: auto;
}
/* フォーム */
.entrytable {
  margin-bottom: 50px;
}
.entrytable th {
  font-size: 16px;
  letter-spacing: .1rem;
  width: 27%;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 20px;
  border-bottom: 1px solid #ccc;
}
.entrytable td {
  font-size: 16px;
  letter-spacing: .1rem;
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.entrytable textarea {
  width: 100%;
  height: 200px;
}
.entrytable input {
  width: 100%;
  height: 36px;
}
.entrytable select {
  width: 100%;
  height: 40px;
}
.req {
  background: #7465dc;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  margin-left: 20px;
  padding: 3px 8px;
  border-radius: 5px;
}
.nonreq {
  background: #ccc;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  margin-left: 5px;
  padding: 3px 8px;
}
.pricetb th {
  background: #ccc;
  padding: 10px;
  border: 1px solid #fff;
}
.pricetb td {
  text-align: center;
  padding: 10px 5px;
  border: 1px solid #ccc;
}
.plancure1 {
  background: rgba(116, 101, 220, .2);
}
.plancure2 {
  background: rgba(116, 101, 220, .4);
}
.plancure3 {
  background: rgba(116, 101, 220, .6);
}
dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
dt {
  width: 20%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
dd {
  width: 80%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
select {
  width: 100%;
}


@keyframes moveSlide {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-220px);
  }
}
/* 小さい画面向け調整 */
@media (max-width: 768px) {
  .slide {
    width: 30%;
    max-width: 150px;
  }
}
@media (max-width: 480px) {
  .slide {
    width: 40%;
    max-width: 120px;
  }
}
/* ===== レスポンシブ切替 ===== */
@media(max-width:900px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
@media (min-width: 771px) {
  .visible-xs {
    display: none;
  }
}
@media (max-width: 770px) {
  dt {
    width: 100%;
    letter-spacing: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  dd {
    width: 100%;
  }
  .pricepg .container {
    padding-right: 5px;
    padding-left: 5px;
  }
  .pricetb td {
    padding: 10px 3px;
    width: 28%;
    font-size: 12px;
    line-height: 1.5em;
  }
  .pricetb th {
    text-align: center;
    padding: 10px 3px;
    line-height: 1.5em;
    font-size: 12px;
  }
  .flex_box_reverse_center {
    flex-wrap: wrap-reverse;
  }
  .anc_btn {
    margin-bottom: 10px;
  }
  .hidden-xs {
    display: none;
  }
  .item4, .item3, .item2, .item30, .item40, .item60, .item70 {
    width: 100%;
  }
  .products .item4 {
    width: calc(50% - 2px);
    margin-bottom: 10px;
  }
  .eng_tl {
    font-size: 350%;
    margin-top: 30px;
  }
  .sec_tl {
    font-size: 150%;
    margin-bottom: 40px !important
  }
  p {
    font-size: 14px;
  }
  .sec_box {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flow_box {
    padding: 8%;
  }
  .features h3, .flow h3 {
    font-size: 20px;
  }
  .featurenum {
    font-size: 25px;
  }
  .title {
    font-size: 15px;
    font-weight: 500;
  }
  .news_box li {
    font-size: 14px;
  }
  .date {
    display: block;
  }
  .footer_contact h2 {
    font-size: 160%;
    text-align: center;
  }
  .copy p {
    font-size: 10px;
  }
  .mpab {
    width: 60%;
    bottom: 87%;
  }
  .mt100 {
    margin-top: 70px;
  }
  .footerbtn {
    margin-bottom: 30px;
    padding: 8px 5px;
    width: 98%;
    font-size: 100%;
    justify-content: flex-start
  }
  .footerbtn img {
    height: 50px;
  }
  .fm {
    margin-top: 20px;
  }
  .fm li {
    font-size: 13px;
  }
  .entrytable th {
    width: 100%;
    white-space: nowrap;
    display: block;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 0 !important;
    border-bottom: none !important;
  }
  .entrytable th p{
    white-space: initial !important;
  }
  .entrytable td {
    width: 100%;
    padding-top: 0px !important;
    padding-bottom: 10px !important;
    display: block;
  }
}
/* 初期状態は透明・少し下にずらす */
img {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
/* 表示時のアニメーション */
img.show {
  opacity: 1;
  transform: translateY(0);
}
.tenpufile {
  padding: 5px 5px;
}
.tenpudummy li {
  display: inline-block;
  margin-right: 10px;
}
.tenpudummy {
  margin-bottom: 10px;
}
.pricetable th {
  border: 1px solid #ccc;
  padding: 15px 10px;
  text-align: center;
  background: #7465dc;
  color: #fff;
}
.pricetable td {
  border: 1px solid #ccc;
  padding: 15px 10px;
  text-align: center;
}
.pricetable td:last-of-type {
  text-align: right;
}

.doc .item2{
	margin-bottom: 40px;
}

@media (max-width: 770px) {
  .pricetable th {
    font-size: 12px;
    padding: 10px 0px;
    line-height: 1.2em;
  }
  .pricetable td {
    font-size: 12px;
    padding: 10px 5px;
  }
}

.navbtn_1sp{
	border-radius: 30px;
	padding: 5px 15px;
	background: #7465dc!important;
    color: #fff !important;}


.navbtn_2sp{
	border-radius: 30px;
	padding: 5px 15px;
	background: #598ef6!important;
    color: #fff !important;}

.cv{
	background: url(../img/purple.jpg);
	background-size: cover;
	background-position: right;
	background-repeat: no-repeat;
}