@charset "utf-8";
/*----------------------------------
	loading
-----------------------------------*/
.stage {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #fff;
}
.firstview {
  position: absolute;
  inset: 0;
  background: #dce8f0;
  display: flex;
  flex-direction: column;
  box-shadow: inset 0 -20px 30px -10px rgba(0, 0, 0, 0.15);
}
.fv-header {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.fv-logo-mark {
  width: 200px;
}
.fv-logo-sub {
  font-size: 10px;
  color: #888;
  letter-spacing: 0.1em;
  margin-top: 2px;
}
.fv-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.fv-nav span {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.04em;
}
.fv-nav-cta {
  padding: 8px 20px;
  background: #0d2444;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-radius: 2px;
}
#introBg {
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 20;
}
#introCatch {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 3.5rem;
  font-weight: 900;
  color: #2E4360;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 30;
  opacity: 0;
  text-align: center;
}
#introBigOuter {
  position: absolute;
  left: 0;
  right: 0;
  height: 96px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 30;
}
#introBig {
  display: flex;
  font-size: 10.0rem;
  font-weight: 900;
  color: #2E4360;
  letter-spacing: -0.02em;
  line-height: 1;
  opacity: 0;
}
#introBig span {
  display: inline-block;
}
#kvImageWrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 52%;
  z-index: 5;
  filter: drop-shadow(0 -8px 24px rgba(0, 0, 0, 0.15));
}
#kvImage {
  width: 100%;
  display: block;
}
/*----------------------------------
	menu
-----------------------------------*/
.hamburger {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  position: fixed;
  right: 2.0rem;
  z-index: 1000;
  background: #2E4360;
  opacity: 0;
}
.bar-wrap {
  position: relative;
  width: 35px;
  height: 16px;
}
.bar-wrap span {
  display: block;
  position: absolute;
  left: 0;
  width: 35px;
  height: 1px;
  background: #fff;
  transform-origin: center center;
  will-change: transform, opacity;
}
#bar1 {
  top: 0;
}
#bar2 {
  top: 50%;
  transform: translateY(-50%);
}
#bar3 {
  bottom: 0;
}
#overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 36, 68, 0.5);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: #fff;
  z-index: 110;
  transform: translateX(101%);
  display: flex;
  flex-direction: column;
  padding: 0 40px 40px;
}
.drawer-close {
  align-self: flex-end;
  margin-top: 16px;
  margin-right: -8px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  flex-shrink: 0;
}
.close-icon {
  position: relative;
  width: 20px;
  height: 20px;
}
.close-icon span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #0d2444;
  transform-origin: center;
}
.close-icon span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.close-icon span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}
.menu-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 8px;
}
.menu-item {
  border-bottom: 0.5px solid #eee;
}
.menu-item:first-child {
  border-top: 0.5px solid #eee;
}
.menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 0;
  font-size: 2.1rem;
  color: #0d2444;
  letter-spacing: 0.04em;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  font-weight: 700;
}
.menu-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.drawer-cta {
  margin-top: 24px;
  padding: 14px;
  background: #0d2444;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
}
.drawer-sub {
  margin-top: 14px;
  font-size: 11px;
  color: #aaa;
  text-align: center;
  letter-spacing: 0.06em;
  opacity: 0;
}
/*----------------------------------
	about
-----------------------------------*/
#about {
  padding: 10.0rem 0;
}
.about-subttl {
  font-size: 3.0rem;
  text-align: center;
  margin-bottom: 5.0rem;
}
.about-subttl span {
  display: block;
  font-size: 1.8rem;
}
.about-box {
  border-radius: 3.0rem;
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 8.0rem;
  position: sticky;
  margin-bottom: 16px;
}
.about-box:nth-child(3) {
  top: 40px;
  z-index: 1;
  background: #cbeed3;
}
.about-box:nth-child(4) {
  top: 56px;
  z-index: 2;
  background: #fffbe5;
}
.about-box:nth-child(5) {
  top: 72px;
  z-index: 3;
  background: #bfe7e6;
}
.about-box .about-box-L, .about-box .about-box-R {
  width: 48%;
}
.about-box .about-box-L h4 {
  font-size: 3.5rem;
  margin-bottom: 2.0rem;
}
.about-box .about-box-L h4 span {
  display: block;
  font-size: 1.8rem;
}
/*----------------------------------
	service
-----------------------------------*/
#point {
  position: relative;
  padding: 10.0rem 0;
  background: #fff0b2;
}
.point-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5.0rem;
}
.point-list li {
  padding: 5.0rem;
  text-align: center;
  width: 32%;
  height: 190px;
  background: #FF622E;
  border-radius: 2.0rem;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.point-list-postion {
  position: absolute;
  width: 95%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 5.0rem;
}
.point-list-postion li {
  padding: 5.0rem;
  text-align: center;
  width: 32%;
  height: 190px;
  background: #FF622E;
  border-radius: 2.0rem;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
#point .image {
  width: 30%;
  margin: 0 auto;
}
/*----------------------------------
	voice
-----------------------------------*/
#voice {
  padding: 10.0rem 0;
  background: #dce8f0;
}
.voice-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.0rem;
}
.voice-list li {
  width: 49%;
  padding: 5.0rem;
  background: #fff;
  border-radius: 3.0rem;
}
.voice-header {
  display: flex;
  align-items: center;
  margin-bottom: 2.0rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #2E4360;
}
.voice-header .voice-image {
  width: 120px;
  background: #dce8f0;
  margin-right: 2.0rem;
}
.voice-header-detail {
  font-size: 2.1rem;
  font-weight: 700;
}
/*----------------------------------
	faq
-----------------------------------*/
#faq {
  padding: 10.0rem 0;
}
.faq-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
  margin: 0 auto;
}
.faq-item {
  position: relative;
  height: 140px;
}
.faq-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-origin: center center;
  cursor: pointer;
}
/* 表面・裏面 共通 */
.faq-front, .faq-back {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
/* ── 表面 ── */
.faq-front {
  background: #bfe7e6;
}
.faq-q-mark {
  font-size: 3.0rem;
  font-weight: 900;
  color: #0d2444;
  flex-shrink: 0;
  line-height: 1;
}
.faq-q-txt {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0d2444;
  letter-spacing: 0.04em;
  line-height: 1;
  padding-top: 0.5rem;
  flex: 1;
}
.faq-hint {
  font-size: 1.4rem;
  color: #f0506e;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.faq-hint svg {
  width: 10px;
  height: 10px;
}
/* ── 裏面 ── */
.faq-back {
  background: #f0506e;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  padding: 24px 28px;
  color: #fff;
}
/* 裏面 質問部分 */
.faq-back-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  width: 100%;
}
.faq-back-q-mark {
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.faq-back-q-txt {
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
/* 裏面 回答部分 */
.faq-back-a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}
.faq-a-mark {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
}
.faq-a-txt {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1.2;
  padding-top: 0.25rem;
}
/* 裏面 ヒント */
.faq-back-hint {
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.06em;
  width: 100%;
  text-align: right;
}
.faq-hidden {
  display: none;
}
.faq-more-btn {
  display: block;
  margin: 24px auto 0;
  padding: 14px 48px;
  background: none;
  border: 1px solid #0d2444;
  color: #0d2444;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.faq-more-btn:hover {
  background: #0d2444;
  color: #fff;
}
.faq-close-btn {
  display: none; /* 最初は非表示 */
  margin: 24px auto 0;
  padding: 14px 48px;
  background: none;
  border: 1px solid #aaa;
  color: #aaa;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.faq-close-btn:hover {
  background: #aaa;
  color: #fff;
}
/*----------------------------------
	contact
-----------------------------------*/
#contact {
  padding: 10.0rem 0;
  background: #fff0b2;
}
.form-inner {
  background: #FFFDF2;
  width: 90%;
  margin: 0 auto;
  padding: 8.0rem;
  border-radius: 3.0rem;
  opacity: 0;
}
.form-row {
  font-size: 2.1rem;
  margin-bottom: 5.0rem;
}
.form-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.form-box label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  width: 30%;
}
.form-box label .required {
  font-size: 1.4rem;
  color: #fff;
  background: #EB3838;
  padding: 0.5rem 1.0rem;
  margin-right: 2.0rem;
}
.form-box .wpcf7-form-control-wrap {
  width: calc(100% - 30%);
}
.form-box input, .form-box textarea {
  padding: 1.0rem;
  width: 100%;
  border: 1px solid #2E4360;
  border-radius: 1.0rem;
}
.form-box select {
  padding: 1.0rem;
  border: 1px solid #2E4360;
  border-radius: 1.0rem;
}
.form-box .wpcf7-list-item input {
  width: auto;
}
.form-box .wpcf7-list-item .wpcf7-list-item-label {
  padding: 0 2.0rem 0 1.0rem;
}
.privacy-ttl {
  margin-bottom: 2.0rem;
}
.privacy-txt {
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 10px 12px;
  background: #fafafa;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.privacy-txt h4 {
  margin-top: 2.0rem;
}
.agree-txt {
  text-align: center;
  margin-bottom: 3.0rem;
}
.contact-btn input {
  width: 300px;
  margin: 0 auto;
  display: block;
  padding: 2.0rem;
  border-radius: 3.0rem;
  background: #FF622E;
  color: #fff;
}
/*----------------------------------
	company
-----------------------------------*/
#company {
  padding: 10.0rem 0;
  background: #f1f1f1;
}
.company-box {
  width: 80%;
  margin: 0 auto;
  background: #fff;
  border-radius: 3.0rem;
  padding: 8.0rem;
}
.company-box table{
	width: 100%;
}
.company-box table tr th, .company-box table tr td{
	padding: 2.0rem 1.0rem;
	text-align: left;
	border-bottom: 1px solid #2E4360;
}
.company-box table tr th{
	width: 30%;
}
.company-box table tr td{
	width: 70%;
}
/*----------------------------------
	page
-----------------------------------*/
header{
	height: 64px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	border-bottom: 1px solid #e8e8e8;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
header .hamburger {
	opacity: 1;
}
#page {
	text-align: center;
	padding: 100px 50px;

}
#page .link{
	background: #FF622E;
	display: block;
	width: 300px;
	margin: 0 auto;
	padding: 17px 0 20px;
	color: #fff;
}


