@charset "utf-8";

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
PC版
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* mv */
#mv {
  background: url("../img/mv_bg.png") no-repeat;
  background-size: cover;
  background-position: 10%;
}
@media screen and (max-width: 1600px) {
  #mv {
    background-position: 40%;
  }
}

#mv .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 77px 0;
}

#mv .catch {
  width: 776px;
}

#mv .catch img {
  max-width: 100%;
}

.mv-cta {
}
.mv-cta .inner {
  padding-top: 96px;
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
main style
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* sec_01 */
#sec_01 {
}
#sec_01 .inner {
  padding-bottom: 0;
}

.sec_01-hedcontent {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.sec_01-hedcontent .txt-content {
  width: 676px;
}

.sec_01-hedcontent .txt-content .cmn-h3 {
  margin-bottom: var(--sp-2);
}
.sec_01-hedcontent .txt-content .txt {
}

.sec_01-hedcontent .img {
  width: 400px;
}

.sec_01-cont {
}
.sec_01-cont h4.title {
  background-color: var(--clr-main);
  color: var(--clr-white);
  text-align: center;
  padding: 12px var(--sp-1);
  font-size: var(--h4-fz);
  font-weight: var(--bold);
  margin-bottom: var(--sp-2);
}
.sec_01-list-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 1px;
  margin-bottom: var(--sp-10);
}
.sec_01-list-wrap .img {
  position: relative;
  width: 110px;
}
.sec_01-list_img{
  /* height: 100%; */
}
.sec_01-list {
  width: 989px;

  position: relative;
}
.sec_01-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  background: url("../img/sec_01-cont_arrow.png?20250430") no-repeat;
  background-size: contain;
  width: 127px;
  height: 665px;
}

.sec_01-list-item {
  padding: var(--sp-2) var(--sp-2);
  padding-right: 130px;

  border-bottom: 1px solid #ddd;
}
.sec_01-list-item:last-of-type {
  border-bottom: none;
}

.sec_01-list-item .ttl {
  font-size: var(--h5-fz);
  font-weight: var(--bold);
}
.sec_01-list-item .txt-content {
  margin-top: var(--sp-1);
}
.sec_01-list-item .txt-content .txt {
}
.sec_01-list-item .txt-content .txt strong {
  font-weight: var(--regular);
  color: var(--clr-red);
}
.sec_01-list-item .txt-content .txt .marker {
  position: relative;
  margin-top: var(--sp-1);
  width: fit-content;
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--regular);
  margin-left: var(--sp-2);
}
.sec_01-list-item .txt-content .txt .marker::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/icon_check.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 6px);
  left: -13px;
}

.sec_01-list-item .txt-content .txt small {
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--regular);
  margin-top: var(--sp-1);
}
.sec_01-list-item .txt-content .txt small::before {
  content: "※";
}

.sec_01-list-item .txt-content .list {
  margin-top: var(--sp-2);
  margin-left: var(--sp-2);
  margin-bottom: var(--sp-2);
}
.sec_01-list-item .txt-content .list:last-of-type {
  margin-bottom: 0;
}
.sec_01-list-item .txt-content .list dt {
  font-weight: var(--bold);
  font-size: var(--h6-fz);
  margin-bottom: var(--sp-1);
}
.sec_01-list-item .txt-content .list dt::before {
  content: "・";
}

#sec_01 .sec_cta {
}
#sec_01 .sec_cta .txt {
  text-align: center;
  font-size: 24px;
  font-weight: var(--bold);
  margin-bottom: var(--sp-2);
}
#sec_01 .sec_cta h2 {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--h3-fz);

  background: linear-gradient(
    transparent 40%,
    var(--clr-accent) 40%,
    var(--clr-accent) 100%
  );
  display: block;
  text-align: center;
  padding: 0 2px; /* テキストの左右に少し余白を追加 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: var(--sp-4);
}

/* sec_02 */
#sec_02 {
}
#sec_02 .inner {
  padding-bottom: calc(40px + 20px);
}
.sec_02-hedcontent {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--sp-5);
}

.sec_02-hedcontent .txt-content {
  width: 676px;
}

.sec_02-hedcontent .txt-content .cmn-h3 {
  margin-bottom: var(--sp-2);
}
.sec_02-hedcontent .txt-content .txt {
}

.sec_02-hedcontent .img {
  width: 400px;
}

.sec_02-list-wrap {
}
.sec_02-list {
  margin-bottom: var(--sp-4);
}
.sec_02-cont {
}
.sec_02-cont_arrow {
  margin-bottom: var(--sp-2);
}
.sec_02-list ul {
  display: flex;
  justify-content: space-between;
}

.sec_02-list-item {
  background-color: var(--clr-bg);
  padding: var(--sp-2) 0;
  width: var(--col-4);
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}
.sec_02-list-item .txt-content {
}

.sec_02-list-item .ttl {
  text-align: center;
  font-size: var(--h6-fz);
  margin-bottom: var(--sp-1);
}
.sec_02-list-item .txt {
  text-align: center;
}

.sec_02-list-item .img {
}
.sec_02-list-item .img img {
  height: 38px;
}

.sec_02-list-item-contact {
  background-color: var(--clr-bg);
  padding: var(--sp-2) 0;
  width: var(--col-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sec_02-list-item-contact .ttl {
  font-size: var(--h6-fz);
  text-align: center;
  font-weight: var(--bold);
  margin-bottom: var(--sp-1);
}
.sec_02-list-item-contact .ttl small.marker {
  display: block;
  font-size: var(--small-fz);
  font-weight: var(--bold);
  padding: 2px;
  margin-bottom: var(--sp-1);
}
.sec_02-list-item-contact .tel {
  margin-bottom: var(--sp-1);
}
.sec_02-list-item-contact .tel small {
  font-size: var(--body-fz);
  display: block;
  margin-bottom: -5px;
}
.sec_02-list-item-contact .tel a {
  position: relative;
  font-size: 24px;
  font-weight: var(--bold);
  padding-left: 26px;
}
.sec_02-list-item-contact .tel a::before {
  position: absolute;
  left: 0;
  top: calc(50% - 9px);
  content: "";
  background: url("../img/icon_tel.png") no-repeat;
  background-size: contain;
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.sec_02-list-item-contact .mail {
  width: fit-content;
  display: block;
  background-color: #ff544b;
  border-radius: 35px;
  font-size: var(--body-fz);
  font-weight: var(--bold);
  color: var(--clr-white);
  padding: 11px 38px;
}
.sec_02-list-item-contact .mail span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.sec_02-list-item-contact .mail span::before {
  content: "";
  background: url("../img/icon_mail.png") no-repeat;
  background-size: contain;
  display: block;
  width: 16px;
  height: 16px;
  left: 0;
  top: calc(50% - 9px);
}

/* sec_02to03  */
.sec_02to03 {
  position: relative;
}
.sec_02to03 .inner::before {
  content: "";
  position: absolute;
  top: calc(50% - 102px);
  left: 0;
  display: block;
  width: 100%;
  height: 204px;
  background: var(--clr-bg);
  z-index: -1;
}
.sec_02to03::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: calc(50% - 30px);
  background: url("../img/icon_arrow_sec_02to03.png") no-repeat;
  background-size: contain;
  width: 60px;
  height: 30px;
}
.sec_02to03 .inner {
  position: relative;
  z-index: 1;
  padding: 0;
  padding-bottom: calc(40px + 30px);
}
.sec_02to03 h2.title {
  text-decoration: none;
  margin-bottom: var(--sp-3);
}
/* sec_03 */
#sec_03 {
}
#sec_03 .inner {
  padding-top: 40px;
  padding-bottom: 0;
}

.sec_03-cont {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: 111px;
}
.sec_03-cont-item {
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.25);
}
.sec_03-cont-item .ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--clr-main); */
  background-color: #002366;
  color: var(--clr-white);
  padding: var(--sp-2);
  text-align: center;
  font-size: var(--h4-fz);
  font-weight: var(--bold);
}

.sec_03-cont-item .ttl .num {
  font-size: 24px;
  margin-right: var(--sp-1);
}
.sec_03-cont-item .ttl .num small {
  font-size: var(--h6-fz);
}
.sec_03-cont-item-content {
  padding: var(--sp-3);
}

.sec_03-cont-item-content-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sec_03-cont-item-content-main .txt {
  line-height: 1.8;
  width: 700px;
}
.sec_03-cont-item-content-main .img {
  width: 328px;
}

.sec_03-cont-item-content-small {
  position: relative;
  padding-left: 20px;
  width: 700px;
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-2);
  font-size: var(--small-fz);
}
.sec_03-cont-item-content-small::before {
  position: absolute;
  left: 0;
  content: "※";
}

.sec_03-cont-item-content-sub {
}
.sec_03-cont-item-content-sub .sec-title {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: var(--sp-1);
}
.sec_03-cont-item-content-sub .cmn-h3 {
  font-size: 22px;
  color: #002366;
  margin-bottom: 0;
}
.sec_03-cont-item-content-sub .cmn-h3::before {
  background-color: #002366;
}

.sec_03-cont-item-content-sub .link {
  width: fit-content;
  text-decoration: underline;
  position: relative;
  font-size: 10px;
  display: block;
  text-align: right;
  padding-right: var(--sp-2);
}
.sec_03-cont-item-content-sub .link::after {
  position: absolute;
  content: "";
  background: url("../img/icon_link.png") no-repeat;
  background-size: contain;
  display: block;
  width: 12px;
  height: 13px;
  right: 0;
  top: calc(50% - 6px);
}

/* ===============
sec_03アニメーション
===============*/
/* 点滅 */
.sec_01-list-wrap {
  z-index: 1;
  position: relative;
}
.sec_03_anime01 {
  position: absolute;
  top: 60px;
  left: 12px;
  width: 86px;
  height: auto;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
}
.hidden .sec_03_anime01{
  opacity: 0;
}

/* 矢印 */
.sec_01-list {
  overflow-y: hidden;
}
.sec_01-list::after {
  animation: slideInOpacity 3s ease-in-out infinite;
  /* アニメーション設定 */
}
.sec_01-cont_txt {
  position: absolute;
  width: 59px;
  top: 215px;
  right: 36px;
  z-index: 1;
}
/* 画像が上から下に表示されるアニメーション */
@keyframes slideInOpacity {
  0% {
    opacity: 0;
    /* 最初は透明 */
    transform: translateY(-100%);
    /* 上の見えない位置から開始 */
  }

  30% {
    opacity: 1;
    /* 50%のところで完全に表示 */
    transform: translateY(0);
    /* 通常位置まで移動 */
  }

  60% {
    opacity: 1;
    /* 50%のところで完全に表示 */
    transform: translateY(0);
    /* 通常位置まで移動 */
  }

  100% {
    opacity: 0;
    /* 100%で再び透明 */
    transform: translateY(100%);
    /* 下に移動して消える */
  }
}
/* ============ */

/* sec_04 */
#sec_04 .inner {
  padding-bottom: 40px;
}
.sec_04-cont {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

.sec_04-cont-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-2);
}

.sec_04-cont-item .txt-content {
  width: 665px;
}
.sec_04-cont-item .txt-content .ttl {
  padding: var(--sp-2) var(--sp-3);
  background-color: var(--clr-main);
  color: var(--clr-white);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.sec_04-cont-item .txt-content .ttl .num {
  display: block;
  width: 73px;
}
.sec_04-cont-item .txt-content .ttl .num img {
  max-width: 100%;
}
.sec_04-cont-item .txt-content .ttl .ttl-txt {
  display: block;
  font-size: var(--h4-fz);
  font-weight: var(--bold);
}

.sec_04-cont-item .txt-content .txt {
  min-height: 165px;
  line-height: 1.8;
  background-color: var(--clr-bg);
  padding: var(--sp-2) var(--sp-2);
}

.sec_04-cont-item .txt-content .sub-txt {
  font-size: var(--small-fz);
  font-weight: var(--regular);
  margin-top: var(--sp-2);
}
.sec_04-cont-item .img {
  width: 429px;
}

#sec_04 .sec_cta {
}
#sec_04 .sec_cta .txt {
  position: relative;
  width: 740px;
  margin: 0 auto;
  padding: var(--sp-2) 0;
  padding-bottom: 10px;
  border-top: 1px solid #000;
  font-size: 24px;
  line-height: 1.5;
  font-weight: var(--bold);
  letter-spacing: 0;
  text-align: center;
  margin-bottom: var(--sp-3);
}
#sec_04 .sec_cta .txt::after {
  content: "";
  display: block;
  background: url("../img/sec_04_cta_underline.png") no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 12px;
  position: absolute;
  left: 0;
  bottom: -10px;
}
#sec_04 .sec_cta h2 {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--h3-fz);

  background: linear-gradient(
    transparent 60%,
    var(--clr-accent) 60%,
    var(--clr-accent) 100%
  );
  display: block;
  text-align: center;
  padding: 0 2px; /* テキストの左右に少し余白を追加 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  margin-bottom: var(--sp-4);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
既存パーツ調整
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

#faq .sec_cta {
  margin-bottom: var(--sp-10);
}
#faq {
}
#faq .inner {
  padding: 0;
}
.section-ttl-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--h3-fz);
  font-weight: var(--medium);
  margin-bottom: var(--sp-4);
}

.sec-ttle {
  color: var(--clr-main);
}

#faq .qa-list dd::before {
  top: 25px;
}
.qa-list .in-dl {
  padding-right: 5vw;
}
