@charset "utf-8";


/* Base Style*/
body
{
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}
label, input, textarea, select, button
{
    cursor: pointer;
}
.button {
    border: 0px;
}

/*section*/
.section{
    padding: 30px 15px;
    /*background-color: #f0f4f8;*/
}
/*.section.section-secounday{
    /*background: #efefef;
}*/
.section.section-secounday2{
    background: #efefef;
}
.section-subtitle{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
}
.section-description{
    text-align: center;
    font-size: 15px;
    /*font-weight: bold;*/
}
.section-headline{
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 40px;
}
.section-button{
    margin-top: 40px 0 0;
    text-align: center;
}
.section-task{
    text-align: center;
    font-size: 20px;
    /*font-weight: bold;*/
}
@media screen and (max-width:768px){
    .section{
        padding: 20px 10px;
    }
    .section-headline{
        font-size: 30px;
        margin: 0 0 20px;
    }
    .section-button{
        margin: 20px 0 0;
    }
}



/*grid*/
.grid{
    margin: 0;
    padding: 0;
    display:flex;
    /*align-items: center;*/
    align-items: stretch;
    justify-content: center;
}
.grid-item{
    list-style: none;
    display: flex;             /* ← 必須 */
    flex-direction: column;   /* ← 縦並び */
}

.grid-col-2 > .grid-item{
    width: 50%;
}
.grid-col-3 > .grid-item{
    width: 33.3%;
}
.grid-col-4 > .grid-item{
    width: 25%;
}
@media screen and (max-width:768px){
    .grid{
        display: block;
    }
    .grid-col-2 > .grid-item,
    .grid-col-3 > .grid-item,
    .grid-col-4 > .grid-item{
        width: 100%;
        margin: 20px 0;
    }
}

/*header*/
.header{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
}
.hear-logo{
    margin: 0;
}
.header-logo > a{
    display: block;
    color: transparent;
}
/*header-nav{}*/
.header-navlist{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/*.header-navitem{}*/
.header-navitem > a{
    display: block;
    padding: 10px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.header-navitem > a:hover
{
    border-bottom: 2px solid #333;
}

@media screen and (max-width:768px){
    .header{
        font-size: 12px;
    }
}

/*hero*/
.hero{
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}
.hero > strong{
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: #fff;
    font-weight: bold;
    width: 100%;
    text-align: center;
    /*text-shadow:*/
    /* 第1アウトライン（内側） オレンジ */
    /*-1px -1px orange,
     1px -1px orange,
    -1px  1px orange,
     1px  1px orange,

    /* 第2アウトライン（外側） 濃いオレンジまたは赤系 */
    /*-2px -2px darkorange,
     2px -2px darkorange,
    -2px  2px darkorange,
     2px  2px darkorange,
    -2px  0px darkorange,
     2px  0px darkorange,
     0px  2px darkorange,
     0px -2px darkorange;*/
     
}
.hero > video {
    position: absolute;
    z-index: 1;
    width: auto;
    height: 100%;
}
.hero-particles{
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:768px){
    .hero > strong{
        font-size: 50px;
    }
}

/*about*/
.about{
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    width: 100vw;
    height: 100vh; /* 全画面表示 */
}
.about-image{
    /*position: absolute;*/
    display: block;
    /*margin-left: 0;*/
    margin: 0;
    padding: 0;
    /*width: 600px;   
    height: 400px;*/
    width: 60vw;
    height: 600px;
    object-fit: cover;
    
}
.about-caption{
    /*padding-left: 15px;*/
    /*padding: 20px;
    max-width: 600px;*/
    width: 40vw;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: white;
  box-sizing: border-box;

}
.about-headline{
    margin:0 0 20px;
    font-size: 35px;
}
.about-description{
    font-size: 20px;
}
/*
@media screen and (max-width:768px){
    .about{
        display: block;
        height: auto;
    }
    .about-image{
        width: 100%;
        height: auto;

    }
    .about-headline{
        font-size: 20px;
        text-align: center;
    }
}*/
/* スマホ用: 縦並びに切り替え */
@media screen and (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-caption {
    width: 100%;
  }

  .about-headline {
    font-size: 1.2em;
  }

  .about-description {
    font-size: 0.95em;
  }
}

/*feature*/
.feature{
    text-align: center;
    padding: 0 15px;
    flex: 1;                   /* ← 高さを埋める */
    display: flex;            /* ← コンテンツも縦に整える */
    flex-direction: column;
    justify-content: space-between; /* 見た目調整にも有効 */
}
.feature-headline{
    font-weight: bold;
    margin: 0 0 20px;
}
.feature-img{
    /*margin: 0 0 20px;*/
    margin-bottom: 20px;
}
.feature-description{
    /*margin: 0;*/
    margin-top: auto;
    text-align: left;
}

/*card*/
.card{
    padding: 0 10px;
}
.card-link{
    display: block;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: background-color .25s;
}
.card-link:hover{
    background-color: #eee;
}
.card-label{
    position: absolute;
    left: 0;
    top: 0;
    background-color: #999;
    color: #fff;
    display: block;
    padding: 5px 10px;
    font-size: 12px;
}
.card-image{
    display: block;
    width: 100%;
    /*width: 400px;*/   
    /*height: 200px;*/
    height: auto;
}
.card-info{
    padding: 5px 10px;
}
/*.card-time{}*/
.card-headline{
    margin: 0;
}
.card-subtitle{
     margin: 0;
     font-size: 20px;
}
.card-description{
    margin: 0;
}

/*button*/
.button{
    display: inline-block;
    color: #fff;
    font-weight: bold;
    background-color: #333;
    text-align: center;
    padding: 15px 60px;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 5px 5px 0 #bbb;
    transition: box-shadow .25s;

}
.button:hover{
    box-shadow: 0 0 0 #bbb;
}
.button.button-submission{
    background: #92d3ca;

}

/*
.select,.input, .radio, .textarea
*/
.select{
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    min-width: 500px;
}
.input{
    border-radius: 5px;
    padding: 10px;
    border: solid #ccc;
    min-width: 500px;
}
.radio{
    margin: 0 10px;
}
.textarea{
    border-radius: 5px;
    padding: 10px;
    border: solid #ccc;
    min-width: 500px;
    min-height: 100px;
}
@media screen and (max-width:768px){
    .select,
    .input,
    .textarea{
        min-width: auto;
        width: 100%;
    }
}


/*
form
*/
/*form[]*/
.form-table {
    margin: 0 auto;
}
/*.form-table tr {}*/
.form-table th {
    padding: 10px;
    text-align: left;
}
.form-table td{ 
    padding: 10px;
}
.form-button {
    margin: 20px;
    text-align: center;
}
@media screen and (max-width:768px){
    .form-table,
    .form-table tbody,
    .form-table tr,
    .form-table th,
    .form-table td{
        display: block;
    }
}
/*.form-wrapper {
  max-width: 600px;
  margin: 40px auto;
  background: #fff;
  padding: 40px 30px;
  border: 2px solid #5e9f7d;
  border-radius: 16px;
  box-shadow: 0 4px rgba(0,0,0,0.1);
}

@media screen and (max-width: 767px) {
  .form-wrapper {
    padding: 20px 15px;
  }
}

.form-title {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  border-bottom: 2px dotted #5e9f7d;
  padding-bottom: 10px;
  display: inline-block;
}
.form-title {
  text-align: center;
  border-bottom: 2px dotted #5e9f7d;
  display: inline-block;
}
.form_subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #1a1a4b;
}

.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-input,
.form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f2f2f2;
  font-size: 16px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .form-input,
  .form-textarea {
    width: 80%;
  }
}

.form-button-wrapper {
  text-align: center;
  margin-top: 30px;
}

.submit-button {
  background-color: #5e9f7d;
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.submit-button:hover {
  background-color: #4a8767;
}*/
.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: #EEFFFF;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #00FF00
}

.form-title {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #4a90e2;
  font-weight: 700;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 10px;
}
.form-note {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #4a90e2;
  outline: none;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background-color: #4a90e2;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #357abd;
}


/*
works
*/
.works{
    margin: 40px 0;
    padding: 20px;
    text-align: center;
}
.works > img{
    margin: 0 15px;
}
@media screen and (max-width:768px){
    .works{
        margin: 20px 0;
        padding: 10px;
    }
    .works > img{
        width: 100px;
        margin: 5px;
    }
}

/*
price
*/
.pricing {
  text-align: center;
  padding: 50px 20px;
  background-color: #efefef;
}

.price_title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a4b;
}

.price_subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  color: #1a1a4b;
}

.price_plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  /*gap: 60px;*/
}

.plan {
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px;
  width: 300px;
  box-sizing: border-box;
  text-align: left;
  background-color: #fff;
}

.plan h2 {
  font-size: 20px;
  color: #1a1a4b;
  margin-bottom: 20px;
}

.plan ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

.plan button {
  background-color: white;
  color: #ff4a00;
  border: 2px solid #ff4a00;
  border-radius: 24px;
  padding: 10px 24px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan button:hover {
  background-color: #ff4a00;
  color: white;
}

.plan.free {
  background-color: #fff;
}

.plan .price_highlight {
  font-weight: bold;
  font-size: 20px;
  color: #1a1a4b;
  margin: 10px 0 20px;
}

.plan.basic .price {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a4b;
  margin: 20px 0;
  line-height: 1.6;
}

.plan.advanced .price_coming {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a4b;
  margin: 20px 0;
}

.plan.advanced .price_status {
  margin-top: 20px;
  color: #555;
  font-size: 14px;
}
.li_linebreak{
    white-space: nowrap;
}

/*
footer
*/
.footer{
    background-color: #333;
    color: #fff;
}
.footer-map{
    margin: 0;
    padding: 40px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-map > iframe{
    width: 60%;
}
.footer-mapinfo{
    width: 40%;
    padding: 15px;
}
.footer-maplogo{
    font-size: 25px;
    font-weight: bold;
    fill:none;
}
.footer-maplogo > svg {
    fill: transparent;
    margin-right: 10px;
}
.footer-mapaddress{
    font-style: normal;
}
.footer-mapaddress > a {
    color: #fff;
}
.footer-line{
    border-color: #444;
}
.footer-copy{
    display: block;
    text-align: center;
    padding: 10px;
}

@media screen and (max-width:768px){
    .footer-map{
        padding: 15px;
        display: block;
    }
    .footer-map > iframe{
        width: 100%;
        height: 200px;
    }
    .footer-mapinfo{
        width: 100%;
        text-align: center;
    }
}