@charset "utf-8";

html {overflow: auto;scroll-behavior: smooth;}
body{
font-family:"Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "noto-sans",
    Meiryo,
    sans-serif;
font-size: 20px;
line-height: 1.6;
letter-spacing: 0.05em;
color: #002d5a;
overflow: hidden;
}
/*-------------------- img */
img{ display: block; width: auto;}
a img:hover{transform: scale(110%);transition: .2s;}
@media(max-width:780px){a img:hover{opacity: 1;}}/* @media */

/*-------------------- a */
a:link   {color: #000;text-decoration: none; transition: ease .3s all;}
a:visited{color: #000;}a:hover  {color: #999;}a:active {color: #ccc;}

/*-------------------- PC-SP */
.pc{ display: block !important;}@media(max-width:780px){.pc{ display: none !important;}}
.sp{ display: none !important;}@media(max-width :780px){.sp{ display: block !important;}}

/*-------------------- font */
.min {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.t_600{
  font-weight: 600;
}
.t_700 {
  font-weight: 700;
}
.t_red{
  color: #cc0000;
}
.t_orange{
  color: #ffaa45;
}
.t_yellow{
  color: #ffe9b9;
}
.t_white{
  color: #fff;
}
.t_blue{
  color: #37a6b6;
}
.t_green{
  color: #5cc4cd;
}
.t_gold {
  color: #b7934e;
}
.emp {
  font-size: 1.4em;
}
.note {
  font-size: 0.65em;
}
h2 {
  width: 1000px;
  padding: .5em 0;
  margin: 0 auto 2em;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  position: relative;
}
h2:before,
h2:after {
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  background: url("../img/ttl1-min.png") center center / cover no-repeat;
  position: absolute;
  top: -10px;
  left: 0;
}
h2:after {
  background: url("../img/ttl2-min.png") center center / cover no-repeat;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
}
h3 {
  padding: .3em 0;
  margin: 2em auto .8em;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}
h4 {
  padding: .3em .5em;
  margin: 2em auto .8em;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  position: relative;
}

/*-------------------- design */
.b_yellow{
  background: linear-gradient(transparent 60%, #fff3c5 0%);
}
.icon_b:before,
.icon_a:after {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin: 0 .5em 0 0;
}
.icon_a:after {
  margin: 0 .5em 0 0;
}
.tri {
  width:0;
  height: 0;
  border-top: 3em solid #000;
  border-right: 4em solid transparent;
  border-bottom: 3em solid transparent;
  border-left: 4em solid transparent;
  margin: 0 auto;
}
.slash:before,
.slash:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  transform: rotate(-45deg);
  margin: 0 .5em 0 0;
  background: #000;
  vertical-align: middle;
}
.slash:after {
  transform: rotate(45deg);
  margin: 0 0 0 .5em;
}
.ac {
  text-align: center;
}
.al {
  text-align: left;
}
.ar {
  text-align: right;
}

/*-------------------- MV */
#mv {
  background: url("../img/mvbg-min.jpg") center center / cover no-repeat;
  position: relative;
}

/*-------------------- cta */
.cta {
  background: #002d5a;
  padding: 1vw 5vw 5vw;
  position: relative;
}
.btn {
  width: fit-content;
  width: -moz-fit-content;
  margin: 0 auto;
}
.btn img {
  margin: 10px auto;
  animation: anime1 0.5s ease 0s infinite alternate;
  transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}

/*-------------------- contents */
.mf {
  padding: 5vw 0;
}
.frame {
  width: 1200px;
  margin: 0 auto;
}
.inner {
  width: 1000px;
  margin: 0 auto;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media(max-width :780px){.flex{ flex-direction: column !important;}}
/* ==== LP 3枚画像（PC: 横3 / SP: 縦3） ==== */
.lp-multi-image {
  max-width: 1200px;   /* ページ中央に収める幅。1080→1200など広げてOK */
  margin: 0 auto;
  padding: 0 20px;     /* 左右に20pxだけ余白を確保（お好みで） */
}

.lp-row {
  display: flex;
  gap: 16px;           /* 画像の間の余白 */
  margin-bottom: 20px;
  justify-content: center; /* 中央寄せ */
}

.lp-row .lp-img-item {
  flex: 1 1 0;
  max-width: 360px;    /* 1枚あたりの最大幅（お好みで） */
}

.lp-img-item { margin: 0; }
.lp-img-item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;  /* 角丸不要なら削除 */
}

/* スマホは縦3枚 */
@media (max-width: 780px) {
  .lp-row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }
  .lp-row .lp-img-item {
    max-width: none;
  }
}
/*-------------------- mf1 */
#mf1 .cbox ul {
  width: 83%;
  margin: 0 2% 0 0;
}
#mf1 .cbox .cboxs {
  width: 15%;
}
#mf1 .cbox li {
  position: relative;
  font-size: 1.6em;
  font-weight: 700;
  text-indent: -1.7em;
}
#mf1 .cbox li:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url("../img/mf1i1-min.jpg") center center / contain no-repeat;
  margin: 0 .5em 0 0;
  vertical-align: sub;
}
#mf1 .cboxs img:first-child {
  margin: 0 0 1vw;
}

/*-------------------- mf2 */
#mf2 {
  background: url("../img/mf2bg-min.jpg") center center / cover no-repeat;
}
#mf2 .cbox {
  margin: 3vw auto;
}

/*-------------------- mf3 */
#mf3 {
  background: url("../img/mf3bg-min.png") center bottom / cover no-repeat;
}
#mf3 .cboxs,
#mf3 .note{
  margin: 0 0 0 2%;
}
#mf3 .tbox {
  margin: 3vw auto;
}
#mf3 .ibox {
  justify-content: flex-start;
  align-items: flex-end;
}

/*-------------------- mf4 */
#mf4 .cbox {
  margin: 3vw auto;
}
#mf4 .cbox figure:last-child {
  margin: 0 0 0 2%;
}

/*-------------------- mf5 */
#mf5 {
  background: url("../img/mf3bg-min.png") center bottom / cover no-repeat;
}
#mf5 .cbox {
  padding: 2em;
  margin: 3vw auto;
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(0,0,0,.15);
  border-radius: 30px;
  align-items: flex-start;
}
#mf5 .cbox:nth-of-type(even) {
  flex-direction: row-reverse;
}

#mf5 .cbox figure {
  width: 50%;
}
#mf5 .cbox .cboxs {
  width: 50%;
  padding: 0 0 0 6%;
}
#mf5 .cbox:nth-of-type(even) .cboxs {
  padding: 0 6% 0 0;
}
#mf5 .cbox .cboxs .num {
  display: block;
  margin: 0 0 30px;
}
#mf5 .cbox h3 {
  margin: 0 0 1.5em;
  font-size: 2em;
}

/*-------------------- mf6 */
#mf6 {
  background: #ead8bc;
}
#mf6 .cbox {
  background: #fff;
  border: 5px solid #002d5a;
  padding: 2em 2em 0;
  margin: 1vw auto;
  align-items: end;
}
#mf6 .cbox .cboxs {
  width: 80%;
}
#mf6 .cbox h3 {
  margin: 0;
}
#mf6 .cbox figure {
  width: 18%;
  margin-left: 2%;
}

/*-------------------- mf7 */
#mf7 dt {
  background: #f8f1e8;
  padding: 8px 20px;
  padding-left: 80px;
  font-size: 1.2em;
  position: relative;
}
#mf7 dd {
  padding: 8px 20px;
  padding-left: 80px;
  margin: 0 0 1.5em 0;
  position: relative;
}
#mf7 dt:before,
#mf7 dd:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url("../img/mf7i1-min.jpg") center center / contain no-repeat;
  position: absolute;
  top: 4px;
  left: 20px;
}
#mf7 dd:before {
  background: url("../img/mf7i2-min.jpg") center center / contain no-repeat;
}

/*-------------------- footer */
footer {
  padding: 20px 0 10px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}
footer a {
  text-decoration: underline !important;
}

@media screen and (max-width: 1400px) {
  .frame {
    width: 1000px;
  }
  .inner {
    width: 800px;
  }
}

@media screen and (max-width: 1024px) {
  body {
    font-size: 2.5vw;
  }
  .frame {
    width: auto;
    padding: 0 5vw;
  }
  .inner {
    width: auto;
  }
  .mf {
    padding: 10vw 0;
  }
  img {
    width: 100%;
  }
  h2 {
    width: 90%;
    margin: 0 auto 1em;
    font-size: 4vw;
  }
  h2:before, h2:after {
    width: 6.5vw;
    height: 6.5vw;
  }
  #mf1 .cbox ul {
    width: 90%;
    margin: 0 auto 5vw;
  }
  #mf1 .cbox li {
    padding-left: 1.2em;
    font-size: 1.2em;
  }
  #mf1 .flex {
    flex-direction: column;
  }
  #mf1 .cbox .cboxs {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #mf1 .cboxs img:first-child {
    margin: 0 2vw 0 0;
  }
  #mf2 .cbox {
    margin: 5vw auto;
  }
  #mf5 .cbox h3 {
    font-size: 3.8vw;
    margin: 0;
  }
  #mf5 .num {
    width: 8vw;
  }
  #mf6 .cbox {
    flex-direction: column;
    margin: 2vw auto;
  }
  #mf6 .cbox .cboxs {
    width: 100%;
  }
  #mf6 .cbox figure {
    margin: -8vw auto 0 3vw;
  }
  #mf7 dt:before, #mf7 dd:before {
    width: 4.5vw;
    height: 4.5vw;
    top: 1vw;
  }

  footer {
    padding: 5vw 0 1vw;
    font-size: 2.2vw;
  }
}

@media screen and (max-width: 780px) {
  body {
    font-size: 3vw;
  }
  .cta .cbox {
    margin: -10vw auto 5vw;
  }
  h2:before, h2:after {
    width: 5vw;
    height: 5vw;
  }
  h3 {
    font-size: 3.8vw;
  }
  .emp {
    font-size: 1.2em;
  }
  #mf1 .cbox li {
    font-size: 3.4vw;
  }
  #mf3, #mf5 {
    background: url("../img/mf3bg-min.png") center bottom / 100% no-repeat;
  }
  #mf3 .cboxs {
    margin: 5vw auto 8vw;
  }
  #mf3 .note {
    margin: 3vw auto 0 0;
  }
  #mf4 .cbox figure:last-child {
    margin: 3vw auto 0;
  }
  #mf5 .cbox figure {
    width: 100%;
  }
  #mf5 .cbox .cboxs,
  #mf5 .cbox:nth-of-type(even) .cboxs {
    width: 100%;
    padding: 3vw;
  }
  #mf5 .cbox h3 {
    font-size: 4.8vw;
  }
  #mf6 .cbox figure {
    width: 25%;
  }
  #mf7 dt:before, #mf7 dd:before {
    width: 5vw;
    height: 5vw;
    top: 1.2vw;
  }
  #mf7 dt {
    font-size: 3.2vw;
  }
}

@media screen and (max-width: 540px) {
  body {
    font-size: 3.6vw;
  }
  h2 {
    font-size: 5.5vw;
  }
  h3 {
    font-size: 4.4vw;
  }
  #mf1 .cboxs img {
    width: 40vw;
  }
  #mf1 .cbox li {
    font-size: 4.2vw;
  }
  #mf2 .tbox .emp {
    font-size: 5vw;
  }
  #mf3 .note {
    font-size: .8em;
  }
  #mf5 .cbox h3 {
    font-size: 5.2vw;
  }
  #mf5 .cbox .cboxs .num {
    width: 13vw;
    margin: 0 0 3vw;
  }
  #mf7 dt:before, #mf7 dd:before {
    width: 8vw;
    height: 8vw;
    left: 2vw;
  }
  #mf7 dt {
    font-size: 3.6vw;
    padding: 2.5vw 3vw 2vw 13vw
  }
  #mf7 dd {
    padding-left: 13vw;
  }
  footer {
    font-size: 2.6vw;
  }
}
