@charset "UTF-8";

/* ===============================
bg
=============================== */
.area01 {
  height: auto;
  background-image: url(../images/bg.png);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}

.area02 {
  height: auto;
  background: #1a2e63;
  padding-top: 100px;
}

.area03 {
  height: auto;
  background: #1a2e63;
  padding-top: 100px;
}

.area04 {
  height: auto;
  background: #1a2e63;
  padding-top: 100px;
}

.area06 {
  height: auto;
  background: #1A2E63;
  padding-top: 70px;
}

.bkWhite {
  background: #fff;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
}

@media screen and (max-width: 768px) {
  .area01 {
    height: auto;
    background-position: center center;
    background-attachment: initial;
  }

  .area02 {
    padding-top: 50px;
  }

  .area03 {
    padding-top: 50px;
  }

  .area04 {
    padding-top: 50px;
  }

  .area06 {
    padding-top: 20px;
  }
}



/* ===============================
header
=============================== */
.headerInner {
  width: 98%;
  margin: 0 auto;
  padding: 1%;
}

img.logo {
  width: 97px;
  display: inline-block;
  float: left;
}

ul.gateWrap {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 0 1%;
}

.gateWrap li {
  display: inline-block;
}

.gateWrap img {
  width: 220px;
}

@media screen and (max-width: 768px) {
  .headerInner {
    height: 140px;
  }

  ul.gateWrap {
    justify-content: center;
    padding: 0 2%;
    position: absolute;
    top: 55px;
    left: 0;
  }

  .gateWrap li {
    display: inline-block;
    width: 50%;
  }

  img.logo {
    float: inherit;

  }

  .gateWrap img {
    width: 100%;
  }

  /*固定*/
  .gateWrap.UpMove {
    position: fixed;
    width: 100%;
    animation: UpAnime 0.5s forwards;
  }

  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }

  .gateWrap.DownMove {
    position: fixed;
        top: 50px;
        left: 0;
        z-index: 10;
        animation: DownAnime 0.5s forwards;
        justify-content: center;

  }

  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media screen and (max-width: 600px) {
  .headerInner {
    height: 120px;
  }

  .gateWrap.DownMove {
    position: fixed;
    top: 40px;
    left: 0;
}
}

@media screen and (max-width: 480px) {
  .headerInner {
    height: 120px;
  }
}

@media screen and (max-width: 425px) {
  .headerInner {
    height: 110px;
  }
}

@media screen and (max-width: 375px) {
  .headerInner {
    height: 100px;
  }
}

@media screen and (max-width: 320px) {
  .headerInner {
    height: 110px;
  }
}

@media screen and (max-width: 230px) {
  .headerInner {
    height: 100px;
  }
}



/* ===============================
main
=============================== */
img.main_visual {
  width: 73%;
}

.mainText {
  width: 100%;
  margin: 0 auto;
  font-size: 1.25rem;
  color: #1A2F63;
  padding: 30px 0;
  font-weight: normal;
  line-height: 1.4;
}

.box{
  max-width: 720px;
  margin: clamp(1rem, 4vw, 2rem) auto;
  padding: clamp(1rem, 5vw, 2rem) clamp(1.25rem, 6vw, 2rem);
  border: 6px solid #1f2d60;
  background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
  font-family: "Helvetica Neue", Arial, sans-serif;
  color:#222;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  box-shadow: 6px 6px 1px 0px #E0B899;
}

.row{
  display:flex;
  align-items:flex-end;
  justify-content:center;
  gap: clamp(.5rem, 3vw, 1rem);
  flex-wrap:wrap;
}

.label{
  margin:0;
  font-weight:700;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color:#1f2d60;
  letter-spacing: .05em;
}

.value{
  margin:0;
  font-weight:700;
  line-height:1;
  color:#e63946;
}

.value .strong{
  font-size: clamp(2rem, 6vw, 3rem);
}

.value .small{
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-left:.375rem;
  color:#555;
}

.note{
  text-align:center;
  color:#666;
  margin: clamp(.5rem, 2vw, .75rem) 0 clamp(1rem, 3vw, 1.125rem);
  font-size: clamp(.875rem, 2vw, 1rem);
  font-style: italic;
}

.btn{
  display:inline-block;
  margin:0 auto;
  padding: clamp(.5rem, 2vw, .625rem) clamp(1rem, 3vw, 1.5rem);
  border-radius:9999px;
  background: linear-gradient(90deg, #f6d365 0%, #fda085 100%);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size: clamp(.875rem, 2vw, 1rem);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all .3s ease;
}

.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  opacity: 0.95;
}


@media screen and (max-width: 768px) {
  img.main_visual {
    width: 100%;
  }

  .mainText {
    font-size: 1.063rem;
    padding: 10px 0;
  }
}



/* ===============================
feature
=============================== */
.stageBox {
  display: flex;
  text-align: center;
  padding-bottom: 50px;
}

.feature_txt {
  width: 60%;
}

.stageBox h3 {
  color: #EA604B;
  font-size: 1.75rem;
  font-weight: 600;
}

.feature_txt p {
  font-size: 1rem;
}

.pict {
  width: 40%;
  margin-left: 3%;
}

.pict img {
  width: 100%;
  height: auto;
}

.stageBox:nth-child(odd) {
  margin-right: 23%;
}

.stageBox:nth-child(even) {
  flex-direction: row-reverse;
  margin-left: 24%;
}

.stageBox:nth-child(even) .pict {
  margin-left: 0;
  margin-right: 3%;
}

img.banner_marriage_report {
  max-width: 730px;
  width: 85%;
  margin: 0 auto 60px;
}

@media screen and (max-width: 768px) {
  .stageBox {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }

  .feature_txt {
    width: 100%;
    text-align: left;
  }

  .stageBox h3 {
    font-size: 1.25rem;
  }

  .feature_txt p {
    font-size: 1rem;
  }

  .pict {
    width: 100%;
    text-align: center;
    min-height: 0%;
  }

  .pict img {
    width: 66%;
    height: auto;
  }

  .stageBox:nth-child(even) {
    flex-direction: column-reverse;
    margin-left: 0;
  }
}



/* ===============================
Join
=============================== */
.Joininner {
  padding: 50px 30px;
}

.JoinBox {
  /*width: 47%;
  margin: 0 1%;*/
  display: inline-block;
  border: solid 2px #1A2E63;
  background: #fff;
  border-radius: 30px;
  box-shadow: 6px 6px 1px 0px #E0B899;
  height: 430px;
  vertical-align: top;
  width: calc(89%/2);
  margin: 0 25px;
}

.jyoken_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 60px 60px;
}

.jyoken_container>div {
  display: flex;
  padding-top: 70px;
}

.check_column {
  width: calc(50% - 40px / 2);
  position: relative;
}

img.maruImg {
  width: 120px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

img.cond_01 {
  width: 50%;
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

img.cond_02 {
  width: 50%;
  padding-top: 20px;
}

.check_In {
  border: solid 2px #1A2E63;
  background: #fff;
  border-radius: 30px;
  box-shadow: 6px 6px 1px 0px #E0B899;
  padding: 50px 25px;
}

.check_In p {
  font-size: 1rem;
  text-align: justify;
}

/*ol.check_list {
  text-align: left;
  font-size: 1rem;
  height: auto;
}
ol.check_list li {
    text-align: justify;
}
ol.check_list p {
    text-align: justify;
}*/
span.red {
  color: #EA604B;
  font-size: 0.938rem;
}

span.dltxt {
  font-weight: bold;
}

span.dltxt a {
  color: #0080FF;
}

@media (max-width: 870px) {
  .jyoken_container {
    padding: 0 15px 60px;
  }

  .check_column {
    width: 100%;
  }

  .sp_margin {
    margin-top: 40px;
  }

  img.cond_01 {
    width: 30%;
    position: static;
    -webkit-transform: none;
    padding-top: 20px;
  }

  img.cond_02 {
    width: 30%;
  }

  .check_In {
    padding: 50px 10px;
  }
}

@media (max-width: 425px) {
  .jyoken_container>div {
    display: flex;
    padding-top: 50px;
  }

  img.maruImg {
    width: 100px;
  }

  img.cond_01 {
    width: 70%;
    position: static;
    -webkit-transform: none;
    padding-top: 20px;
  }

  img.cond_02 {
    width: 70%;
  }
}

@media (max-width: 320px) {
  .jyoken_container>div {
    display: flex;
    padding-top: 40px;
  }

  img.maruImg {
    width: 80px;
  }
}




/* ===============================
step
=============================== */
.step_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 60px;
}

.step_column {
  width: calc(100% / 3 - 16.18px / 1 * 2);
  padding-bottom: 60px;
}

img.stepImg {
  width: 80%;
  aspect-ratio: 1/1;
  object-fit: scale-down;
}

.step_column p {
  font-size: 1rem;
  text-align: justify;
}

.step_column.start {
  width: 100%;
  padding-top: 30px;
}

.step_column.start img {
  width: 15%;
}

img.stepImg.step_09 {
  width: 50%;
  padding-top: 80px;
}

@media (max-width: 768px) {
  .step_container {
    padding: 0 30px 50px;
  }

  .step_column {
    width: 100%;
    padding-bottom: 30px;
  }

  .step_column.start img {
    width: 30%;
  }
}

@media (max-width: 425px) {
  .step_column.start img {
    width: 40%;
  }
}

@media (max-width: 320px) {
  .step_column.start img {
    width: 55%;
  }
}


/* ===============================
app
=============================== */
.area04 {
  font-size: 1rem;
}

.area04 .contInner {
  padding-bottom: 50px;
}

img.key_logo {
  width: 120px;
  margin-right: 40px;
  display: inline-grid;
}

.app_content {
  width: 90%;
  margin: 0 auto;
}

p.dl_txt {
  display: inline-grid;
  vertical-align: top;
  text-align: left;

}

span.app_ore {
  font-size: 1.5rem;
  color: #e9604b;
  font-weight: 600;
}

span.app_blu {
  color: #1a2e63;
}

.iphone_dl,
.android_dl {
  width: 40%;
  display: inline-block;
  font-family: sans-serif;
  font-weight: bold;
}

img.dl_apple {
  width: 52%;
}

img.dl_google {
  width: 63%;
}

img.qr {
  width: 30%;
  padding-right: 10px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  img.key_logo {
    width: 30%;
    margin: 0 auto 40px;
    display: block;
  }

  .iphone_dl,
  .android_dl {
    width: 49%;
  }

  img.dl_apple {
    width: 87%;
  }

  img.dl_google {
    width: 100%;
  }
}



/* ===============================
footer
=============================== */
footer {
  width: 100%;
  height: auto;
  background: #1A2E63;
  padding-top: 70px;
}

.infoWrap {
  padding: 30px 0 40px;
  color: #fff;
  text-align: left;
}

.infoWrap a {
  color: #fff;
}

.footer-info {
  text-align: left;
}

.footer-heading {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-office,
.footer-mail,
.footer-tel {
  font-size: 1rem;
  line-height: 1.8;
}

.footer-subHeading {
  font-size: 1rem;
  font-weight: 600;
  margin: 20px 0 4px;
}

.footer-info p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.footer-links {
  margin-top: 30px;
  text-align: center;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-links li {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .infoWrap {
    padding: 24px 16px 32px;
  }

  .footer-info {
    max-width: 100%;
  }

  .footer-links ul {
    flex-direction: column;
    gap: 0.75rem;
  }
}




/* ===============================
member_fixed
=============================== */
img.member_fixed {
  width: 136px;
  position: fixed;
  right: 30px;
  top: 120px;
}

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



/* ===============================
.faq-nav（questions_and_answers.html）追加
=============================== */
/* -----------------------------------------
   FAQ ナビ（バナー）
----------------------------------------- */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 20px 0 50px;
}

.faq-nav__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  min-width: 180px;
  background: #1a2e63;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 768px) {
  .faq-nav {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem 50px;
  }

  .faq-nav__item {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .faq-section h2 {
    margin: 1.8rem 0 1.2rem;
    padding: 0.55rem 0.7rem;
  }
}


/* ===============================
area06
=============================== */
.area06 p {
  width: 90%;
  font-size: 1.25rem;
  margin: 0 auto;
  padding: 0 0 50px;
}
.area06 p a {
  color: #0080FF;
}

.area06 p.msgtext {
  width: 90%;
  font-size: 1rem;
}

