/* ===============================
   CSS Reset (簡易版)
   =============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
  padding-top: 80px ;
}

/* ===============================
   リンクスタイル
   =============================== */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.pc-none{
  display: none;
}

.site-header {
  width: 100%;
  background: #fff;
  padding: 10px 20px;
  border-bottom: 1px solid #eee;
  height: flex;
  min-height: 80px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
    position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
}

.navi-container {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
 .hamburger,.nav-close{
  display: none;
 }
/* ロゴ */
.logo img {
  height: 55px;
}

/* ナビ */
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    align-items: center;
}
.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* お問い合わせボタン */
.contact-button {
  background-color: #0057a0;
  color: #fff;
  padding: 0.6rem 2rem;
  text-decoration: none;
  border-radius: 1.2rem;
  font-size: 0.9rem!important;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contact-button:hover {
  background-color: #003e75;
}

.bg-blue{
  background-image: url('../img/sec03-bg.jpg');
  background-position: top center ;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 1rem;
  height: flex;
}

.bg-blue2{
  background-image: url('../img/bg-blue2.jpg');
  background-position: top center ;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 1rem;
  height: flex;
}

.mv-sec{
  width: 100%;
  background-image: url('../img/mv.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 1rem;
}

.mv-container{
  width: 100%;
  max-width: 1500px;
  height: calc(100vh - 200px);
  display: flex;
  flex-direction: row;
  gap: 2rem;
  margin: 4rem auto 1rem;
}
.mv-copy{
  width: 50%;
  height: auto;
  text-align: center;
  margin: auto 0;
}

.mv-copy .line {
  display: inline-block;
  padding: 0.5rem;
  background-color: white;
  margin-bottom: 1rem;
}

.mv-copy .line span{
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #00479D, #023573);
  font-family: "Source Han Serif", "源ノ明朝", serif;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 767px) {
.responsive-text span{
  font-size: clamp(1.6rem, 1.457rem + 0.72vw, 1.8rem);
  font-weight: 700;
}
}

@media screen and (min-width: 768px) {
  .responsive-text span{
    font-size: clamp(1.8rem, -1.087rem + 6.02vw, 3.8rem);
    font-weight: 500;
  }
}

@media screen and (min-width: 1300px) {
  .responsive-text span{
    font-size: 3.8rem;
    font-weight: 500;
  }
}


.mv-text{
  font-size:clamp(1rem, 0.18rem + 1.45vw, 1.5rem);
  color: #fff;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
  letter-spacing: 0.1rem;
  line-height: 1.8;
  margin-top: 2rem;
}

.mv-rental-box{
  width: 50%;
  position: relative;
}
.mv-btn-are{
  position: relative;
}
.mv-btn-area img{
  width: 90%;
  min-width: 400px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}
.mv-btn-area .rental-btn{
  position: absolute;
  bottom: 1.5vw;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8em 2em;
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  color: #fff;
  background: linear-gradient(to right, #00479D, #4CA8D8); /* 左から右のグラデーション */
  border-radius: 9999px; /* 極端に丸くする */
  text-decoration: none;
  box-shadow: 2px 2px 0px #00479D;
  transition: background 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (max-width:1200px) and (min-width:950px){
.cta-button {
  padding: 0.6em 1.5em;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;

}
}
@media (max-width:949px) and (min-width:768px){

  .mv-btn-area img{
  width: 400px;
  position: absolute;
  bottom: 0;
  left: unset;
  right:1rem;
  z-index: 0;
}
.cta-button {
  padding: 0.6em 1.5em;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}
}

.cta-button:hover {
  background: linear-gradient(to right, #023573, #3b9bd6);
  text-decoration: none;
}

.cta-button .arrow {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.6em;
  background-image: url('../img/arrow-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.campaign-bnr{
  width: 100%;
  margin-top: 5.75rem;
  margin-bottom: 5.6rem;
}
.sec01{
  padding-bottom: 5rem;
}
.sec01-inner{
  width: 100%;
  display: flex;
  flex-direction: row;
  gap:2rem;
  align-items: flex-start;
  justify-content: center;
}

.sec01-inner .left-box{
  width: 65%;
  max-width: 550px;
  text-align: center;
}
.sec01-inner .right-box{
  width: 35%;
  text-align: center;
}

.sec01-inner .left-box h2{
  font-size:2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.sec01-text{
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.1rem;
}
.sec01-text .strong{
  font-weight: bold;
}
.sec01-text .y-line{
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 50%, #FFF6B1 50%);
  margin: 0 auto;
  padding: 0 10px 0 10px;
}
.sec01-inner .right-box img{
  width: 100%;
}

.sec02{
  background-image: url('../img/sec02-bg.jpg');
  background-position: bottom center ;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem 1rem;
}

.sec02-inner{
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4rem 6rem;
}

.sec02-img,
.sec02-content{
  width: 50%;
}

.sec02-img img{
  width: 90%;
  margin: 0 auto;
}
.sec02-title{
  text-align: center;
  padding-bottom: 2.5rem;
}
.sec02-title .t1{
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  margin-bottom: 0.5rem;
}
.sec02-title .t2{
  font-size: 2rem;
   letter-spacing: 0.2rem;
}
.sec02-title .t2 span{
  color:#00479D;
}
.sec02-text{
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
  padding:0 0.5rem;
}

.sec03-title{
  width: 100%;
  text-align: center;
  padding: 2rem;
}

.sec03-title p{
  font-size: 1.3rem;
  letter-spacing: 0.3rem;
  line-height: 1;
}

.sec03-title h2{
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #00479D, #023573);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec03-title h2 span{
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
}

.sec03-point{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  margin-top: 40px;
}
.reverse{
  flex-direction: row-reverse!important;
}

.point-img{
  width: 40%;
}
.point-img img{
  width:  100%;
}
.point-content{
  width: 60%;
  padding: 0rem 1rem;
}
.point-content p{
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #40B0D4, #005E7C);
}
.point-content p span{
  font-size: 2rem;
  font-weight: 500;
}
.point-content h3{
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color:#00479D;
  margin-bottom: 2rem;
}
.point-content div{
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.1rem;
}

.sec04 h2{
  text-align: center;
  padding: 2rem;
}
.sec04-img01{
  width: 100%;
  max-width: 1000px;
  margin: 1rem auto;
  padding-bottom: 2rem;
}
.sec04-img01 img{
width: 100%;
}

.sec04 h3{
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
   background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #00479D, #023573);
  margin-bottom: 1.5rem;
}

.sec04-img02{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.sec04-img-description{
  font-family: 'Noto suns JP',sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  padding: 1rem 0;
}
.sec04-flexbox{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content:space-between ;
  gap: 6%;
}
.flex-item{
  width: 47%;
}
.flex-item h4{
  font-size:1.3rem;
  font-weight: 500;
  letter-spacing: 0.15rem;
     background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #00479D, #023573);
    display: flex; 
  align-items: center;
  gap: 0.2em; 
  border-bottom: 1px solid #00479D;
  padding-bottom: 5px;
  margin-bottom: 3rem;
}
.flex-item h4::before{
  content: "\f04b"; 
  font-family: "Font Awesome 5 Free"; 
  font-size: 0.6rem;
  font-weight: 900; 
  display: inline-block;  
  line-height: 1;
}
.flex-item img{
  width: 80%;
  margin: 0 auto;
}

.sec05-title{
  width: 100%;
  max-width: 500px;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec05-title p{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}

.sec05-title h2{
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
  line-height: 1.6;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
   background-image: linear-gradient(180deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec05-text{
  width: 100%;
  max-width: 700px;
  text-align: center;
  letter-spacing: 0.1rem;
    margin:  0 auto 3rem;
}
.sec05-text span{
  font-size:1.1rem;
  font-weight: 600;
}
.sec05-grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3列 */
  gap: 2rem; /* 各アイテムの間隔 */
  padding: 2rem;
  font-family: 'Noto Sans JP',sans-serif;
}

.sec05-grid .grid-item {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sec05-grid .grid-img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.sec05-grid .grid-time {
  font-size: 0.9rem;
  font-weight: 500;
  color: #FFF;
  line-height: 1;
  margin-bottom: 0.5rem;
  background-color: #00479D;
  border-radius: 2px;
  padding: 5px 10px;

  display: inline-flex;      /* ← inline-block → inline-flex に変更 */
  align-items: center;       /* ← 上下中央揃え */
  gap: 0.3em;                /* ← アイコンとテキストの間隔を確保 */
}

.sec05-grid .grid-time img {
  width: 0.9rem;
  height: 0.9rem;
  filter: brightness(0) invert(1); /* ← アイコンを白くする */
  display: inline-block;
}

.sec05-grid .grid-title {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
  color: #00479D;
}

.sec05-grid .grid-content {
  font-size: 0.9rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  text-align: justify;
  color: #333;
}

.sec06{
  text-align: center;
   background-color: #EBF7FF;
     padding: 6rem 1rem;
  height: flex;
}

.sec06-title{
  width: 100%;
  max-width: 500px;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec06-title p{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}

.sec06-title h2{
  font-size: 1.8rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
  line-height: 1.6;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec06-title h2 span{
  font-size: 2.2rem;
  font-weight: 600;
}

.sec06-text{
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
.sec06-text span{
  font-size: 1.1rem;
  font-weight: 600;
}
.sec06-grid {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 2rem; /* 各アイテムの間隔 */
  padding: 2rem;
}

.sec06-grid .grid-item {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.sec06-grid .grid-item .item-img{
  width: 20%;
  height: auto;
  margin-bottom: 1rem;
}
.sec06-grid .grid-item .item-img img{
  width: 100%
}
.sec06-grid .grid-item .item-content{
  width: 80%;
  height: auto;
  margin-bottom: 1rem;
  text-align: left;
  font-family: 'Noto sans JP',sans-serif;
}

.sec06-grid .grid-item .item-title{
  font-size: 1.2rem;
  color:#FF8000;
  letter-spacing: 0.1rem;
}
.sec06-grid .grid-item .item-personal{
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}
.sec06-grid .grid-item .item-text{
  font-size: 0.75rem;
  margin-top: 1rem;
}

.sec07{
  position: relative;
  background: 
    linear-gradient(to right, rgba(255,255,255,1) 0%,  rgba(255,255,255,1) 50%,rgba(255,255,255,0) 70%), linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 20%),
    url('../img/sec07-bg.jpg') center/cover no-repeat;
  width: 100%;
  height: flex;
}

.sec07-inner{
  width: 50%;
  min-width: 340px;
  padding: 5rem 0;
}

.sec07-inner h2{
  font-size: 3rem;
  font-weight: normal;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2rem;
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #096AB4, #00479D);
}

.sec07-copy{
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.sec07-text{
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
.sec07-text p{
  margin: 2rem 0;
}
.sec07-text span{
  color:#00479D;
}

.sec08 .container{
  width: 100%;
  max-width: 1200px;
}

.sec08-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec08-title p{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}

.sec08-title h2{
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec08-title h2 span{
  font-size: 4rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
}

.sec08-heading {
  position: relative;
  display: flex;
  align-items: center;
  height: 6rem; /* 適宜調整 */
}

.sec08-heading .number {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  font-weight: 700;
  color: #D5EEEF;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.sec08-heading .heading-content {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 2.5rem; 
  margin-top: 1rem;
  padding-bottom: 5px;
  z-index: 1;
  border-bottom: 1px solid #CCCCCC;
}

.sec08-heading .label {
  background-color: #00479D;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.2em 0.8em;
  border-radius: 4px;
  margin-right: 0.5rem;
  line-height: 1.6;
  letter-spacing: 0.1rem;
}

.sec08-heading .text {
  font-size: 1.3rem;
  color: #00479D;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.2rem;
}

.sec08-flex{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
   display: flex;
   flex-direction: row;
   gap: 2rem;
   margin-top: 3rem;
}

.sec08-flex .flex-content{
  width: 60%;
}

.sec08-flex .flex-content p{
   font-size:1.3rem;
   font-weight: 900;
   margin-bottom: 1rem;
   letter-spacing: 0.1rem;
   color: #00479D;
}

.sec08-flex .flex-img{
  width: 40%;
}

.sec08-flex .flex-img img{
  width: 100%;
}
.sec08-flex .flex-content .quality-info{
  background-color: #EEEEEE;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem
}
.sec08-flex .flex-content .quality-info p{
   font-size:1rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
   letter-spacing: 0.1rem;
   color: #000;
}

.sec08-02-grid {
  width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; /* 適宜調整 */
  padding: 2rem 0;
}

.sec08-02-grid > div {
  padding: 1rem 0.5rem;
  text-align: center;
}

.sec08-02-grid img {
  max-width: 80%;
  height: auto;
  margin-bottom: 0.5rem;
}

.sec08-02-grid p {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0rem;
  margin-bottom: 0.5rem;
  color: #C28206;
}

.sec08-02-grid span 
{
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 0.7rem;
  color: #000;
  display: block;
  margin-bottom: 0.7rem;
}

.sec08-02-grid div > div {
  font-size: 0.9rem;
  color: #000;
  text-align: left;
}

.sec08-03-title{
      width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.sec08-03-grid {
    width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; 
  padding: 0 0 2rem
}
.sec08-03-grid > div {
  padding: 1rem 0.5rem;
  text-align: center;
}

.sec08-03-grid img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.sec08-03-grid div > div {
  font-size: 0.9rem;
  color: #000;
  text-align: left;
}

.sec09-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec09-title p{
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}

.sec09-title h2{
  font-size: 2.2rem;
  letter-spacing: 0.3rem;
  font-weight: 500;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec09-text{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 1rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
.sec09 img{
  width: 100%;
  margin-top: 2rem;
}

.sec10{
  background-color: #EBF7FF;
    padding: 6rem 1rem;
  height: flex;
}
.faq-container{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap:2rem;
  align-items: flex-start;
}
.faq-box {
  width: 30%;
  padding: 0 2rem 2rem;
  text-align: left;
  font-family: "Noto Serif JP", serif;
}

.faq-box h2 {
  color: #00479D;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.faq-box .sub-en {
  color: #00479D;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.faq-box .faq-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

.contact-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 1px solid #00479D;
  color: #00479D;
  text-decoration: none;
   font-family:'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background-color 0.3s, color 0.3s;
}

.contact-btn:hover {
  background-color: #00479D;
  color: white;
}
.faq {
  width: 70%;
  margin: 0 auto;
  font-family:'Noto Sans JP', sans-serif;
}

.faq-item {
  border-radius: 6px;
  background: #f8f9fb;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  background-color: #FFFFFF;
  color: #000;
  font-weight: bold;
  padding: 1rem;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  position: relative;
}

.faq-question::before {
  content: "Q";
  color: white;
  background: #00479d;
  display: inline-block;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  margin-right: 0.5rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #eeeeee;
  padding: 0 1rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1rem;
  background-color:#eeeeee ;
}

.faq-answer .icon-a {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #00479D;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.faq-question {
  position: relative;
  padding-right: 2rem; /* アイコンのスペースを確保 */
}

.faq-question::after {
  content: "\f078"; 
  font-family: "Font Awesome 5 Free"; 
  color: #AAAAAA;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  content: "\f077";  /* 開いているときはマイナス */
}

.sec11{
  background-color: #F5F5F5;
}

.form-kv{
  width: 100%;
  background-image: url('../img/sec11-kv.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom left;
  padding: 4rem 1rem;
  height: flex;
}

.form-kv-inner{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: right;
}

.form-kv-inner img{
  width: 100%;
  max-width: 600px;
}
.form-body{
  padding: 3rem 0;
  max-width: 1000px;
  margin: 0 auto;
}
.sec12{
  padding: 2rem 0 6rem;
}
.sec12-title{
  width: 100%;
  text-align: center;
  margin: 2rem 0;
}
.sec12-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec12-title p{
  color: #00479D;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.sec12-title h2{
  color: #00479D;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.sec12-flex{
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}

.flex-info{
  width: 60%;
}

.flex-ime{
  width: 40%;
}
.info-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  padding: 0.8rem 0;
  font-family: "Noto Serif JP", serif;
  font-size: 0.95rem;
}

.info-head {
  width: 6rem; /* ラベル幅調整 */
  color: #000;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.info-text {
  flex: 1;
  color: #000;
  line-height: 1.6;
}

.info-map{
  margin-top: 1rem;
}
.info-map iframe{
  width: 100%;
  height: flex;
}
.flex-ime img{
  width: 100%;
  border-radius: 8px;
}

.site-footer {
  background-color: #eaf6fd; /* 明るい水色背景 */
  padding: 2rem 1rem;
  font-family: "Noto Serif JP", serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  border-bottom: 1px solid #cde6f9;
  padding-bottom: 1.5rem;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  text-decoration: none;
  color: #000000;
  font-size: 0.95rem;
  position: relative;
}

.footer-links a::before {
  content: "▶";
  margin-right: 0.3rem;
  font-size: 0.7rem;
  color: #00479D;
}
.footer-links a:hover {
  opacity: 0.7;
}

.footer-bottom {
  font-size: 0.75rem;
  color: #444;
  padding-top: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer-bottom a{
  padding-left: 1rem;
}
.footer-bottom a:hover{
  opacity: 0.7;
}

@media (max-width:767px){
  body{
    padding-top: 60px;
  }
  .pc-none{
    display: block;
  }
  .site-header {
    height: 60px;
    min-height:unset;
  }
  .navi-container {
  width: 100%;
  }
  .logo img{
    height: 40px;
  }
 /* ハンバーガー */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #00479D;
  border-radius: 2px;
}
.hamburger.hide {
  display: none;
}
/* メニュー本体 */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%; /* 初期位置：画面外 */
  width: 90%;
  min-width: 320px;
  height: 100vh;
  background-color: #eaf6fe;
  box-shadow: -4px 0 10px rgba(0,0,0,0.1);
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 4rem 1.5rem 2rem;
  z-index: 1000;
}

/* 開いた状態 */
.main-nav.open {
  right: 0;
}

/* 閉じるボタン */
.nav-close {
  display: block;
  position: absolute;
  top: 0.5rem;
  right: 1.5rem;
  font-size: 2.5rem;
  background: none;
  border: none;
  color: #00479D;
  cursor: pointer;
}

/* 内側ラッパー */
.nav-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.main-nav ul {
  list-style: none;
  padding:  3rem 0 0;
  margin: 0;
  display: block;
  width: 100%;
}

.main-nav li {
  border-bottom: 1px solid #b5d9ed;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

.main-nav li a {
  text-decoration: none;
  color: #000;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.main-nav li a::before {
  content: "\f0da"; /* Font Awesomeの矢印（三角） */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #00479d;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.contact-button {
  width: 89%;
  background-color: #00479d;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-align: center;
  margin-top: 2rem;
  display: block;
  text-decoration: none;
}
  /* mv */
  .mv-sec{
  width: 100%;
  height: calc(100vh - 60px);
  background-image: url('../img/mv_sp.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 1rem;
}

.mv-container{
  width: 100%;
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
    justify-content: space-between; 
  gap: 0;
  margin: 1rem auto;
    padding-bottom: 0.5rem;
}
.mv-copy{
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.mv-text{
  font-size:clamp(0.9rem, 0.446rem + 1.57vw, 1.2rem);
  letter-spacing: 0;
      margin-top: 1rem;
}
.mv-rental-box{
  width: 100%;
  position: relative;
}
.mv-btn-area img{
  width: 100%;
  min-width: 320px;
  position: relative;
  z-index: 0;
}
.mv-btn-area .rental-btn{
  width: 58%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cta-button {
  padding: 0.5em 1em;
  font-size: clamp(0.8rem, 0.446rem + 1.57vw, 1.2rem);
  letter-spacing: 0.1rem;
}


.cta-button:hover {
  background: linear-gradient(to right, #023573, #3b9bd6);
  text-decoration: none;
}

.cta-button .arrow {
  width: 1.1rem;
  height: 1.1rem;
  margin-left: 0.6em;
  background-image: url('../img/arrow-white.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.container{
  padding: 2rem 1rem;
}

.campaign-bnr{
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.sec01{
 padding-bottom: 2rem;
}
.sec01-inner{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec01-inner .left-box{
  width: 100%;
  max-width:none;
}
.sec01-inner .right-box{
  width: 100%;
  margin-top: 2rem;
}

.sec01-inner .left-box h2{
  font-size:2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
}
.sec01-text{
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0.04rem;
}
.sec01-text .strong{
  font-weight: bold;
}
.sec01-text .y-line{
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 50%, #FFF6B1 50%);
  margin: 0 auto;
  padding: 0 10px 0 10px;
}
.sec01-inner .right-box img{
  width: 100%;
}

.sec02{
  background-image: url('../img/sec02-bg.jpg');
  background-position:65% ;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec02-inner{
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding: 2rem 1rem;
}

.sec02-img,
.sec02-content{
  width: 100%;
}

.sec02-img img{
  width: 100%;
  margin-top: 2rem;
}
.sec02-title{
  text-align: center;
  padding-bottom: 2.5rem;
}
.sec02-title .t1{
  font-size: 1.25rem;
  letter-spacing: 0.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.sec02-title .t2{
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
}
.bg-blue{
  background-image: url('../img/sec03-bg.jpg');
  background-position: top center ;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 0rem;
  height: flex;
}
.sec03-title{
  width: 100%;
  text-align: center;
  padding: 0;
}

.sec03-title p{
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

.sec03-title h2{
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-weight: 600;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec03-title h2 span{
  font-size: 3rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.sec03-point{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 40px;
}
.reverse{
  flex-direction: column!important;
}

.point-img{
  width: 100%;
}
.point-img img{
  width:  100%;
}
.point-content{
  width: 100%;
  padding: 0rem;
}
.point-content p{
  font-size: 1rem;
}
.point-content p span{
  font-size: 2rem;
}
.point-content h3{
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.sec04{
  padding-bottom: 3rem;
}
.sec04 h2{
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  padding: 3rem 0 1rem;
}
.sec04-img01{
  width: 100%;
  max-width: 1000px;
  margin: 1rem auto;
  padding-bottom: 2rem;
}
.sec04-img01 img{
width: 100%;
}

.sec04 h3{
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}

.sec04-img-description{
  font-size: 0.8rem;
  letter-spacing: 0;
}
.sec04-flexbox{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content:center ;
  gap: 1rem;
}
.flex-item{
  width: 100%;
}
.flex-item h4{
  font-size:1rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
}
.flex-item h4::before{
  font-size: 0.5rem;
}
.flex-item img{
  width: 100%;
  margin: 0 auto;
}

.sec05{
  padding: 3rem 1rem;
}
.sec05-title{
  width: 100%;
  max-width: 500px;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec05-title p{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}

.sec05-title h2{
  font-size: 1.5rem;
   font-weight: 600;
  letter-spacing: 0.2rem;
}
.sec05-text{
font-size: 0.8rem;
letter-spacing: 0;
line-height: 2;
margin-bottom: 2rem;
}
.sec05-text span{
  font-size:0.8rem;
}
.sec05-grid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 1rem 0;
  font-family: 'Noto Sans JP',sans-serif;
}

.sec05-grid .grid-item {
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.sec05-grid .grid-img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.sec05-grid .grid-time {
  font-size: 0.7rem;
  gap: 0.3em;
}

.sec05-grid .grid-title {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
  color: #00479D;
}

.sec05-grid .grid-content {
  font-size: 0.7rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-align: justify;
  color: #333;
}

.sec06-title{
  width: 100%;
  max-width: 500px;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec06-title p{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}

.sec06-title h2{
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
}
.sec06-title h2 span{
  font-size: 1.5rem;
  font-weight: 600;
}
.sec06-text{
  font-size: 0.8rem;
  letter-spacing: 0;
  line-height: 2;
}
.sec06-text span{
  font-size: 0.8rem;
  font-weight: 400;
}
.sec06-grid {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 0.5rem; /* 各アイテムの間隔 */
  padding: 1rem 0;
}

.sec06-grid .grid-item {
  background: #fff;
  padding: 0.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sec06-grid .grid-item .item-img{
  width: 100%;
  height: auto;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec06-grid .grid-item .item-img img{
  width: 60%;
}
.sec06-grid .grid-item .item-content{
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
  text-align: left;
  font-family: 'Noto sans JP',sans-serif;
}

.sec06-grid .grid-item .item-title{
  font-size: 0.9rem;
  color:#FF8000;
  letter-spacing: 0.05rem;
}
.sec06-grid .grid-item .item-personal{
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
}
.sec06-grid .grid-item .item-text{
  font-size: 0.7rem;
  margin-top: 1rem;
}
.sec07{
  position: relative;
  background: 
    linear-gradient(to right, rgba(255,255,255,1) 0%,  rgba(255,255,255,1) 50%,rgba(255,255,255,0.3) 70%,rgba(255,255,255,0.3) 100%),
    url('../img/sec07-bg_sp.jpg') ;
    background-size:  contain;
    background-repeat: no-repeat;
    background-position: top;
  width: 100%;
  height: flex;
}

.sec07-inner{
  width: 100%;
  min-width: 340px;
  padding: 3rem 0;
}

.sec07-inner h2{
  font-size: 1.9rem;
  font-weight: 600;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2rem;
    background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(180deg, #096AB4, #00479D);
}

.sec07-copy{
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 2rem;
  letter-spacing: 0.2rem;
  line-height: 2;
}

.sec07-text{
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  line-height: 2;
}
.sec07-text p{
  margin: 2rem 0;
}
.sec07-text span{
  color:#00479D;
}
.sec08 .container{
  width: 100%;
  max-width: 1200px;
}

.sec08-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec08-title p{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}

.sec08-title h2{
  font-size: 1.8rem;
  letter-spacing: 0.2rem;
  font-weight: 600;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    background-image: linear-gradient(90deg, #096AB4, #00479D);
  border-bottom: 1px solid #00479D;
  display: inline-block;
}
.sec08-title h2 span{
  font-size: 3rem;
  letter-spacing: 0.3rem;
  font-weight: 600;
}

.sec08-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 1.5rem;
    margin-top: 2rem;
    position: relative;
  }

  .sec08-heading .number {
    top: -1rem;
    right: 0;
    left: auto;
    font-size: 5rem;
    transform: none;
  }

  .sec08-heading .heading-content {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 0;
    margin-top: 0.5rem;
    width: 100%;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 0.5rem;
    gap: 0.3rem;
  }

  .sec08-heading .label {
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
  }

  .sec08-heading .text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.15rem;
  }

.sec08-flex{
  width: 100%;
  max-width: none;
  margin: 0 auto;
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-top: 1rem;
}

.sec08-flex .flex-content{
  width: 100%;
}

.sec08-flex .flex-content p{
   font-size:1.3rem;
   font-weight: 900;
   margin-bottom: 1rem;
   letter-spacing: 0.1rem;
   color: #00479D;
}

.sec08-flex .flex-img{
  width: 100%;
}

.sec08-flex .flex-img img{
  width: 100%;
}
.sec08-flex .flex-content .quality-info{
  background-color: #EEEEEE;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem
}
.sec08-flex .flex-content .quality-info p{
   font-size:1rem;
   font-weight: 600;
   margin-bottom: 0.5rem;
   letter-spacing: 0.1rem;
   color: #000;
}

.sec08-02-grid {
  width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem; /* 適宜調整 */
  padding: 0 0 1rem;
}

.sec08-02-grid > div {
  padding: 0.5rem;
  text-align: center;
}

.sec08-02-grid img {
  max-width: 90%;
  height: auto;
  margin-bottom: 0.5rem;
}

.sec08-02-grid p {
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  margin-bottom: 0.5rem;
  color: #C28206;
}

.sec08-02-grid span 
{
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 0.6rem;
  color: #000;
  display: block;
  margin-bottom: 0.5rem;
}

.sec08-02-grid div > div {
  font-size: 0.7rem;
  color: #000;
  text-align: left;
}

.sec08-03-title{
      width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.sec08-03-grid {
    width: 100%;
    max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem; /* 適宜調整 */
  padding: 0 0 2rem
}
.sec08-03-grid > div {
  padding: 1rem 0rem;
  text-align: center;
}

.sec08-03-grid img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}
.sec08-03-grid div > div {
  font-size: 0.8rem;
  color: #000;
  text-align: left;
}

.sec09 .container{
  padding: 0;
}
.sec09-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec09-title p{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 1.6;
}

.sec09-title h2{
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.2rem;
}
.sec09-text{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
  letter-spacing: 0.1rem;
  line-height: 2;
}
.sec09 img{
  width: 100%;
  margin-top: 2rem;
}

.sec10{
  background-color: #EBF7FF;
    padding: 3rem 1rem;
  height: flex;
}
.faq-container{
  display: flex;
  flex-direction: column;
}
.faq-box {
  width: 100%;
  padding: 0 0 1rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.faq-box h2 {
  color: #00479D;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}

.faq-box .sub-en {
  color: #00479D;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.faq-box .faq-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #333;
}

.contact-btn {
  padding: 0.8rem 1.5rem;;
}

.faq {
  width: 100%;
}

.faq-answer {
  padding: 0 0.5rem;
  font-size:0.9rem;
}

.faq-item.open .faq-answer {
  padding: 1rem 0.5rem;
  font-size:0.9rem;
}

.form-kv{
  width: 100%;
  background: 
    linear-gradient(to right, rgba(255,255,255,0.6) 0%,rgba(255,255,255,0.6) 100%),
    url('../img/sec11-kv.jpg') ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 10%;
  padding: 3rem 1rem;
}

.form-kv-inner img{
  width: 100%;
  max-width: 600px;
}
.form-body{
  padding: 3rem 0;
}

.sec12{
  padding: 2rem 0 3rem;
}
.sec12-title{
  width: 100%;
  text-align: center;
  margin: 2rem 0;
}
.sec12-title{
  width: 100%;
  margin:  0 auto;
  margin-bottom: 2rem;
  text-align: center;
}
.sec12-title p{
  color: #00479D;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.sec12-title h2{
  color: #00479D;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: 0.2rem;
}
.sec12-flex{
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  align-items: flex-start;
}

.flex-info{
  width: 100%;
}

.flex-ime{
  width: 100%;
}
.info-row {
  padding: 0.8rem 0;
  font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.info-head {
  width: 4rem; 
}


.footer-inner {
  flex-direction: column;
}

.footer-logo {
  width: 100%;
  text-align: center;
}
.footer-logo img {
  max-width: 100px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
.footer-bottom a{
  padding: 0.5rem;
}
.footer-bottom a:hover{
  opacity: 0.7;
}

}

/* フェードインアニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}