@charset "UTF-8";
/*---------------------------------------------

	初期設定用

---------------------------------------------*/

:root{
  /* font-size */
    --fs-heading-lg: 22px;
    --fs-heading-md: 20px;
    --fs-heading-sm: 18px;
    --fs-body: 14px;
      /* width */
    --main-width: 90%;
}


/*---------------------------------------------

	その他

---------------------------------------------*/
section, footer {
    margin: 0 auto 50px;
}
header{
  position:relative;
  height:80px;
  gap:auto;
}
header nav.menu,
header nav.cta{
  display:none;
}
header button,
header nav.header-nav{
  display:block;
}
header nav ul.nav-list{
  display:block;
}
header h1{
  width:80%;
  max-width:350px;
}
header h1 img{
  width:100%;
}



.btn-trigger {
    position: absolute;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    top:20px;
    right:8px;
}
.btn-trigger span {
  display: block;
  position: absolute;
  left: 50%;
  width: 70%;
  height: 2px;
  background-color: var(--orange);
  transition: transform 0.3s, top 0.3s, opacity 0.2s;
  transform: translateX(-50%);
}

.btn-trigger span:nth-child(1) { top: calc(50% - 10px); }
.btn-trigger span:nth-child(2) { top: 50%; transform: translate(-50%, -50%); }
.btn-trigger span:nth-child(3) { top: calc(50% + 10px); }

.btn-trigger.active{
  position: fixed;
  top: 20px;
  right: 8px;
  width: 40px;
  height: 40px;  
  z-index: 99999;
}
.btn-trigger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.btn-trigger.active span:nth-child(2) {
  opacity: 0;
}
.btn-trigger.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}




.header-nav {
    position: fixed;
    top: -170%;
    left: 0;
    width: 100%;
    transition: top 0.4s ease-in-out;
    z-index: 9998;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}
.header-nav.active {
    top: 0;
}

.nav-list {
    list-style: none;
    background: #fff;
    padding: 80px 20px 30px;
    max-width: calc(var(--contents-width-pc) * 1px);
    max-height: 100vh;
    margin: 0 auto;
    z-index: 9998;
}

.nav-item {
    border-bottom: 1px solid #eee;
}

.nav-item:last-child {
    border-bottom: none;
}

.nav-item a {
    display: block;
    padding: 20px 15px;
    color: #000;
    text-decoration: none;
    font-family: var(--ff-root);
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.nav-item a:hover {
    color: #f3981e;
    background-color: #fef9f3;
}
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}





.fv{
  margin-top:0;
  width:100%;
}
.fv img{
  width:100%;
}



.course{
  padding:0;
  margin-bottom:0;
}
.course .main-width{
  width:100%;
  max-width:100%;
}
.course ul{
  gap:0;
  padding:0;
}
.course ul li{
  padding:15px 0;
  box-shadow:none!important;
}
.course ul li br{
  display:block;
}
.course ul li a{
  text-align:left;
}



.cta-box{
  width:100%;
  max-width:100%;
  margin-top:0;
  padding:50px 20px;
}
.cta-box .cta-inner{
  flex-direction:column;
  gap:60px;
}


.needs{
  margin:0 auto;
}
.needs .needs-list ul {
  width:100%;
  padding-bottom:40px;
}

.triangle{
  top:-30px;
}

.reasons{
  padding-top: clamp(60px, 10vw, 120px);
}
.reasons-box{
  padding-bottom:0;
}

.reasons-item{
  flex-direction: column!important;
  background-position: 102% 102%!important;
  padding:30px;
}
.reasons-item-title{
  text-align:center;
}
.title-band{
  gap:clamp(0px, calc((100vw - 400px) * 0.1), 30px);
  align-items: center;
}
.title-band-deco {
  width:40px;
}

.image-text-box {
  flex-direction: column;
}
.image-text-box >div:first-child{
  overflow:visible;
}



.support-box{
  flex-direction: column;
}



.flow-item h3 br{
  display:block;
}


footer{
  margin-bottom:0;
  padding-right:20px ;
  padding-left:20px ;
}

footer .footer-inner .footer-nav{
  display:none;
}




.fixed-buttons{
  display:flex;
  justify-content: center;
  align-items:center;
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  box-sizing:border-box;
  z-index: 9997;
  gap:0;
  text-align:center;
}
.fixed-buttons div{
  width:100%;
}
.fixed-buttons a{
  display:block;
  flex:1;
  width:100%;
  font-weight:var(--fw-bold);
  color:#fff;
  padding:15px;
}
.fixed-buttons div:first-child a{
  background-color:var(--orange);
}
.fixed-buttons div:last-child a{
  background-color:var(--blue);
}

.fixed-buttons a i{
  margin-right:10px;
}