@charset "UTF-8";

html{
	font-size: 62.5%;
    scroll-behavior: smooth;
    overflow-x: clip; 
}
body{
	font-family:"Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
	font-size: 1.4rem;
    margin: 0;
    padding: 0;
    overflow-x: clip; 
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
  height: 100%;
}
a {
    color: #000;
    text-decoration: none;
    transition: all 0.2s;
    outline: none;
}
:root {
  --decor-h: 480px;   /* 上下装飾の高さ */
  --overlap: 1px;     /* 重ねる分（隙間消し） */
}

/* 改行 */
.br-pc {
  display: inline;
  line-height: 0.3;
}
@media screen and (max-width: 440px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 440px) {
  .br-sp {
    display: inline;
  }
}


/* header */
#global_header {
    position: fixed;
    width: 92%;
    left: 0;
    right: 0;
    top: 15px;
    margin: auto;
    display: flex;
    max-width: 1440px;
    padding: 10px 30px;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    background: rgb(255 255 255 / 85%);
    z-index: 1000;
}
#global_header .company {
    display: flex;
    gap: 1.5rem;
    width: 42rem;
    align-items: flex-end;
}
#global_header .logo {
    display:inline-block;
    width: 12rem;
}
#global_header .logo:hover {
    opacity: 0.7;
}
#global_header .logo img {
    display:block;
    width: 100%;
    height:auto;
}
#global_header h1 {
    font-size: 1.8rem;
}
#global_header ul {
    display: flex;
    gap: 20px;
}
#global_header .cta_btn_line {
    width: 22.5rem;
    height: 6rem;
    background-color: #07B53B;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#global_header .cta_btn_line:hover {
    opacity: 0.7;
}
#global_header .cta_btn_casual {
    width: 22.5rem;
    height: 6rem;
    background-color: #00A1E9;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#global_header .cta_btn_casual:hover {
    opacity: 0.7;
}
#global_header .cta_btn_support {
    width: 22.5rem;
    height: 6rem;
    background-color: #1068B0;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
#global_header .cta_btn_support:hover {
    opacity: 0.7;
}
#global_header [class^="cta_btn_"] .cta_btn_inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 1rem;
  height: 100%;
}
#global_header [class^="cta_btn_"] .cta_txt {
    width: 12.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#global_header [class^="cta_btn_"] .cta-divider{
  width:0.1rem;
  height:70%;
  background:rgba(255,255,255,.8);
}
#global_header [class^="cta_btn_"] img {
    width: 3rem;
    height: auto;
}
#global_header [class^="cta_btn_"] > a {
  display: block;
  align-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

#global_menu_box_sp{
  display: none;
}

.only_sp{ display: none!important; }

@media screen and (max-width: 1080px) {

  .only_pc{ display: none !important; }
  .only_sp{ display: block !important; }

  body {
    width: 100vw;
    overflow-x: hidden;
  }

  body.fixed {
    position: relative;
    width: auto;
    height: auto;
  }

/*==========================
  global_header
============================*/

  #global_header{
    top: 20px;
    padding: 12px 20px;
    z-index: 10000;
  }

  #global_header .logo{
    width: 30%;
  }

  .btn_menu{
    width: 7%;
    height: 24px;
    position: relative;
  background: none;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

  .btn_menu span {
    position: absolute;
    width: 60%;
    height: 2px;
    background: #111;
    left: 0;
    right: 0;
    margin:auto;
    transition: all 0.2s ease-out;
  }

  #global_header ul {
    display: block;
  }

  .btn_menu span:nth-of-type(1) {
    top: 6px;
  }

  .btn_menu span:nth-of-type(2) {
    top: 12px;
  }

  .btn_menu span:nth-of-type(3) {
    top: 18px;
  }

/*==========================
  nav
============================*/
#global_menu_box_sp{
  display: flex;
  width: 0;
  height: 0;
  padding: 40px 30px;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 10px;
  background: var(--green, #00A1E9);
  position: fixed;
  top: 20px;
  right: 4%;
  --width-timing-function-close: cubic-bezier(0.34,1.2,0.64,1);
  --width-duration: 0.3s;
  transition: width var(--width-duration) var(--width-timing-function-close),height var(--width-duration) var(--width-timing-function-close),border-radius .3s,transform .1s;
}

#global_menu_box_sp{
  --move: -16px;
  transform-origin: right top;
  transform: translate(var(--move),calc(-1 * var(--move))) scale(0);
  --width-timing-function-open: cubic-bezier(0.2,1.3,0.4,1);
}

#global_menu_box_sp.is_open{
  width: 250px;
  height: 320px;
  transform: translate(0) scale(1);
  --transform-transition-duration: 0.3s;
  transition-timing-function: var(--width-timing-function-open);
}

#global_menu_sp{
  transition: opacity .15s;
  opacity: 0;
}

#global_menu_box_sp.is_open #global_menu_sp{
  opacity: 1;
  transition-duration: .3s;
  transition-delay: .3s;
}

.btn_menu_close{
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
background: none;
  border: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.btn_menu_close span{
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 10px;
  right: 0;
}

.btn_menu_close span:nth-of-type(1) {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);

}

.btn_menu_close span:nth-of-type(2) {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

#global_menu_sp{
  width: 100%;
}

#global_menu_sp li a{
font-size: 1.6rem;
  color: #fff;
  display: block;
  margin-bottom: 24px;
}

#global_menu_sp li:last-child a{
  margin-bottom: 0;
}
}
/* header end */


/* body */
#content_index {
  max-width: 1440px;
  margin: 0 auto;
}
.section_ttl_wrap {
    text-align: center;
    margin-bottom: 7.0rem;
}
h2.section_ttl {
    font-size: 6.4rem;
    font-weight: bold;
    color: #004471;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 5.0rem;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0 -1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
}
h2.section_ttl::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:16px; height:16px;           /* 偶数pxでシャープに */
  transform:translateX(-50%);         /* 中央基準 */
  border-radius:50%;
  background:#2E5D9E;                 /* 中央の色 */
  box-shadow:
    -60px 0 0 #224371,                /* 左2個 */
    -30px 0 0 #284F86,
     30px 0 0 #356CB6,                /* 右2個 */
     60px 0 0 #3B79CC;
}
@media screen and (max-width: 768px) {
h2.section_ttl {
    font-size: 5.0rem;
}
}

@media screen and (max-width: 599px) {
.section_ttl_wrap {
    margin-bottom: 4.0rem;
}

h2.section_ttl {
    font-size: 3.4rem;
    padding-bottom: 3.3rem;
}

h2.section_ttl::after {
    width:12px; height:12px;
}
}


/* body end */

/* CTA */
.cta_wrap {
  position: relative;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  overflow: hidden;
  padding: calc(var(--decor-h) - var(--overlap)) 0;
}
.cta_wrap::before,
.cta_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(var(--decor-h) + var(--overlap));
  background: url("/lp4/img/cta_bg.svg") no-repeat center / cover;
  z-index: 0;
}
.cta_wrap::before { top: calc(-1 * var(--overlap)); } /* 上側 */
.cta_wrap::after { bottom: calc(-1 * var(--overlap)); transform: rotate(180deg); } /* 下側 */
.cta {
  background-color: #22a1e9;
  position: relative;
  z-index: 1;
  margin: 0;
}
.cta_inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 1rem 2rem;
  position: relative;
  z-index: 2;
}
.cta_section_ttl_wrap {
    position: relative;
    text-align: center;
}
.cta_section_ttl_wrap img.fukidashi {
    position: absolute !important;
    top: -52px;
    right: 660px;
    z-index: 2;
}
h2.cta_section_ttl {
    font-size: 6.4rem;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 5.0rem;
}
h2.cta_section_ttl::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:16px; height:16px;           /* 偶数pxでシャープに */
  transform:translateX(-50%);         /* 中央基準 */
  border-radius:50%;
  background:#2E5D9E;                 /* 中央の色 */
  box-shadow:
    -60px 0 0 #224371,                /* 左2個 */
    -30px 0 0 #284F86,
     30px 0 0 #356CB6,                /* 右2個 */
     60px 0 0 #3B79CC;
}
.cta_message {
    text-align: center;
    font-size: 2.4rem;
    color: #fff;
    margin: 3rem 0 3rem 0;
}
.cta_box {
    display: flex;
    justify-content: space-between;
}
.cta_card {
    width: 35rem;
    height: 100%;
    text-align: center;
    background-image: url("/lp4/img/cta_card_bg.svg");
    background-repeat: no-repeat;    /* 画像を繰り返さない */
    background-position: center;     /* 中央配置 */
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.cta_card_inner {
    padding: 3rem 0 3rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}
.means {
    font-size: 2.4rem;
    font-weight: 700;
    color: #00A1E9;
}
.means_exp {
    font-size: 1.8rem;
}
.cta_want {
    display: block;
    margin: 0 auto;
    width: 32rem;
    background-color: #F1F7FF;
}
.cta_want ul{
    height: 7.6rem;
    text-align: left;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}
.cta_img img{
    width: 16rem;
}
.cta_card_inner .cta_btn_line {
    width: 22.5rem;
    height: 6rem;
    margin: 0 auto;
    background-color: #07B53B;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.cta_card_inner .cta_btn_line:hover {
    transform: scale(1.1);
}
.cta_card_inner .cta_btn_casual {
    width: 22.5rem;
    height: 6rem;
    margin: 0 auto;
    background-color: #00A1E9;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.cta_card_inner .cta_btn_casual:hover {
    transform: scale(1.1);
}
.cta_card_inner .cta_btn_support {
    width: 22.5rem;
    height: 6rem;
    margin: 0 auto;
    background-color: #1068B0;
    color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.cta_card_inner .cta_btn_support:hover {
    transform: scale(1.1);
}
.cta_card_inner [class^="cta_btn_"] .cta_btn_inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 1rem;
  height: 100%;
}
.cta_card_inner [class^="cta_btn_"] .cta_txt {
    width: 12.5rem;
    font-size: 1.6rem;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: 1.3;        /* ← 行間を詰めて上下バランスを取る */
    display: flex;           /* ← フレックスで上下中央に再配置 */
    flex-direction: column;  /* ← 改行を縦方向に並べる */
    justify-content: center; /* ← 上下中央に揃える */
}
.cta_card_inner [class^="cta_btn_"] .cta-divider{
  width:0.1rem;
  height:70%;
  background:rgba(255,255,255,.8);
}
.cta_card_inner [class^="cta_btn_"] img {
    width: 3rem;
    height: auto;
}
.cta_card_inner [class^="cta_btn_"] > a {
  display: block;       /* ← aタグをブロック化 */
  align-content: center;
  width: 100%;          /* ← liいっぱいに広げる */
  height: 100%;         /* ← liの高さも全体をカバー */
  text-decoration: none;
  color: inherit;       /* テキストの色を継承 */
}
.time_exp {
    text-align: center;
    font-size: 1.6rem;
    color: #fff;
    margin: 3rem 0 3rem 0;    
}
/* CTA end */

/* fix cta box */
#fix_cta_box {
    position:fixed;
    /* width: 85px; */
    /* padding: 7px 4px; */
    bottom: 200px;
    margin: 0;
    right: 0px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
}
#fix_cta_box.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#fix_cta_box.show,
#fix_cta_box.is-show {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto;
}
.fix_cta_list {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}
.fix_btn_line {
    width: 12.5rem;
    height: 6rem;
    background-color: #07B53B;
    color: #fff;
    border-radius: 0.5rem 0 0 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.fix_btn_line:hover {
    transform: scale(1.1);
}
.fix_btn_casual {
    width: 12.5rem;
    height: 6rem;
    background-color: #00A1E9;
    color: #fff;
    border-radius: 0.5rem 0 0 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.fix_btn_casual:hover {
    transform: scale(1.1);
}
.fix_btn_support {
    width: 12.5rem;
    height: 6rem;
    background-color: #1068B0;
    color: #fff;
    border-radius: 0.5rem 0 0 0.5rem;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    transition-duration: .4s;
}
.fix_btn_support:hover {
    transform: scale(1.1);
}
#fix_cta_box [class^="fix_btn_"] > a {
    display: block;
    align-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

#fix_cta_box [class^="fix_btn_"] .fix_btn_inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 1rem;
    height: 100%;
}

#fix_cta_box .fix_btn_txt {
    width: 12.5rem;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    text-align: left;
    line-height: 1.3;
}

#fix_cta_box [class^="fix_btn_"] .fix_btn-divider {
    width: 0.1rem;
    height: 70%;
    background: rgba(255, 255, 255, .8);
}

#fix_cta_box [class^="fix_btn_"] img {
    width: 3rem;
    height: auto;
}

/* fix cta box end */

/* page top */
#page_top {
    position: fixed;
    right: 20px;
    z-index: 900;
    transition-duration: .4s;
}
#page_top:hover {
    transform: scale(1.1);
}
/* page top end */

/* footer */
#global_footer {
    padding: 80px 0 40px;
    background-color: #224371;
    position: relative;
    z-index: 10;
}
footer .footer_inner{
    max-width: 1440px;
    margin: 0 auto;
    width: calc(100% - 160px);
}
.footer_inner_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #ffffff;
}
#global_footer .logo {
    display:inline-flex;
    align-items:center;
}
#global_footer .logo:hover {
    opacity: 0.7;
}
#global_footer .logo a {
    display:inline-block;
}
#global_footer .logo img {
  width: auto;      /* ← 100% を無効化 */
  height: 50px;     /* 好みの見た目に調整 */
  max-width: none;  /* 念のため */
  display:block;
}
.footer_nav {
    display: flex;
    gap: 60px;
}
.footer_nav li a, .footer_inner_info {
    font-size: 1.6rem;
    color: #fff;
}
.footer_inner_info {
    font-size: 1.6rem;
    color: #fff;
    border-bottom: 1px solid;
    padding-bottom: 25px;
    margin-bottom: 10px;
}
.footer_inner_info dl {
    margin-bottom: 10px;
    line-height: 1.6;
    display: flex;
    align-items: baseline; /* 上下の揃えを自然に */
    gap: 0.5em;            /* dtとddの間の余白 */
}
.footer_inner_info dl:first-of-type {
    margin-bottom: 20px;
}
.footer_inner_info dl dt{
  min-width: 8em;        /* ラベル幅を固定したい場合 */
}
.footer_inner_info dl dt dd{
  margin: 0;             /* デフォルトの余白を消す */
}
.footer_inner_info dl dt span {
    font-size: 2.4rem;
}
#copyright {
    display: block;
    text-align: center;
    padding-bottom: 30px;
    font-size: 1.4rem;
    color: #fff;
}

@media screen and (max-width: 768px) {
#global_footer {
    padding: 40px 0 0px;
}

footer .footer_inner{
    width: calc(100% - 40px);
}

#global_footer .logo img {
  height: 40px;
}

.footer_inner_info dl dt span {
    font-size: 2.0rem;
}
.footer_inner_info dt {
    font-size: 1.4rem;
}
.footer_inner_info dd {
    font-size: 1.4rem;
}
}





/* footer end*/

/*--- cookies popup---*/
.cookie-consent {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 12px;
    color: #fff;
    background: #3e5686;
    padding: 1.2em;
    box-sizing: border-box;
    visibility: hidden;
    z-index: 9999;
}
.cookie-consent.is-show {
    visibility: visible;
}
.cookie-text {
    width: 60%;
    text-align: center;
}
.cookieBtnBox {
    width: 30%;
    display: flex;
}
.policy-link{
    color: rgb(0, 136, 255);
    font-size: 15px;
    text-decoration: none;
}
.cookie-agree, .cookie-reject,.cookieBtnBox a{
    color: #fff;
    background: dodgerblue;
    padding: 2px 10px;
    margin-left: 20px;
    border-radius: 5px;
}
.cookie-agree:hover, .cookie-reject:hover,.cookieBtnBox a:hover{
    cursor: pointer;
    opacity: 0.7;
}
/* パッと消える */
.cc-hide1 {
    display: none;
}
/* ゆっくり消える */
.cc-hide2 {
    animation: hide 1s linear 0s;
    animation-fill-mode: forwards;
}
@keyframes hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}
@media screen and (max-width:1000px) {
  .cookie-consent {
    flex-wrap: wrap;
  }
  .cookie-text {
      width: 96%;
      margin-bottom: 20px;
      line-height: 1.5;
  }
  .cookieBtnBox {
      width: 96%;
      justify-content: center;
  }

  .cookie-agree, .cookie-reject,.cookieBtnBox a{
    margin-left: 10px;
    text-align: center;
  } 
}
/*--- cookies popup end---*/


/* 円周テキストの見える化（暫定） */
.ov_badge,
.ov_badge .ov_badge__text{
  position: relative;
  width: 200px;     /* 半径90pxに対応：必要なら調整 */
  height: 200px;
  line-height: 1;
  z-index: 10;      /* 背景に埋もれないように */
}

.ov_badge span{
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  font-size: 14px;     /* 小さすぎ回避 */
  color: #224371;      /* 背景と同化回避（暫定色） */
  white-space: pre;    /* スペース保持 */
  pointer-events: none;
}