@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@100..900&display=swap");


/*--- setting ---*/
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-green: #006A38;
  --color-yellow: #EBBB1A;
  --color-dyellow: #D9A024;

  --font-notosans: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-notoserif: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;

  --fonts-12: min(1.11111vw, 12px);
  --fonts-16: min(1.48148vw, 16px);
  --fonts-20: min(1.85185vw, 20px);
  --fonts-24: min(2.22222vw, 24px);
  --fonts-32: min(2.96296vw, 32px);
  --fonts-40: min(3.7037vw, 40px);
}


@media screen and (max-width: 767px) {

  :root {
    --fonts-12: min(3.20000vw, 12px);
    --fonts-16: 3.2vw;
    --fonts-20: 4.0vw;
    --fonts-24: 4.8vw;
    --fonts-32: 6.4vw;
    --fonts-40: 8.0vw;
  }
}



/*--- for reset ---*/
.font,
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: min(1.4814814815vw, 16px);
    line-height: 1.6;
    letter-spacing: 0.08em;
    color: #333;
}

@media screen and (max-width: 767px) {

    .font,
    body {
        font-size: 3.4666666667vw;
    }
}

* {
    border: 0;
    outline: none;
    vertical-align: baseline;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-feature-settings: "palt" on;
}

html {
    height: 100%;
    -webkit-overflow-scrolling: touch;
}

body {
    height: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

h1,
h2 {
    position: relative;
    font-weight: 700;
}

*:focus {
    outline: none;
}

p a {
    word-break: break-all;
    text-decoration: underline;
}

sup {
    vertical-align: top;
    font-size: 50%;
}

sub {
    vertical-align: baseline;
    font-size: 50%;
}

em,
b,
strong,
th {
    font-weight: 700;
}

a {
    color: #333;
    cursor: pointer;
    transition: opacity 0.3s;
}

figcaption,
small {
    font-size: min(1.1111111111vw, 12px);
}

@media screen and (max-width: 767px) {

    figcaption,
    small {
        font-size: 2.6666666667vw;
    }
}

img {
    display: block;
    height: auto;
}

input,
button,
select,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    font: inherit;
    outline: none;
}

textarea {
    resize: vertical;
}

input[type=checkbox],
input[type=radio] {
    display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}


  br.sp {
    display: none;
  }
@media screen and (max-width: 767px) {
  br.sp {
    display: block;
  }
}



/* header --------------------------------------------------*/
#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 100;
}

.header_inner {
    width: min(92.5925925926vw, 1140px);
    height: 80px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#logo {
  max-width: 200px;
}
#logo img {
  width: 100%;
}

.h_nav {
  display: flex;
  align-items: center;
}
.business {
  margin-right: 50px;
  
}
.business a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4em;
}
.business a::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, translate .2s ease;
}
.business a:hover::after {
  translate: 4px 0;
}
.registration {
  margin-right: 24px;
}
.registration a {
  display: inline-block;
  padding: 8px 26px;
  border: none;
  border-radius: 4px;
  background: linear-gradient(270deg, #d1880d, #e9bb2c, #d1880d);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transition: background-position 0.4s ease;
  box-shadow: 2px 2px 0px rgba(217, 175, 34, 0.2);
}
.registration a:hover {
  background-position: 100% 50%;
}
.login a {
  color: #11AF71;
}


@media screen and (max-width: 767px) {
  #logo {
      width: 30vw;
  }

  .h_nav {
    align-items: center;
    justify-content: flex-end;
    width: 58vw;
  }
  .business {
    display: none;
  }
  .registration {
    margin-right: 2vw;
  }
  .registration a {
    padding: 4px 26px;
  }
  .login a {
    display: block;
    padding: 8px 10px;
  }
}





/* first view ---------------------------------------*/
.fv {
  width: 100%;
  min-height: 520px;
  margin-top: 80px;
  background: #fff url(../../img/fv_bg_pc.png) top center no-repeat;
  background-size: cover;
}
.fv_inner {
  position: relative;
  display: flex;
  align-items: center;
  width: min(92.5925925926vw, 1140px);
  margin: auto;
  min-height: 520px;
}
.fv_img .img {
    display: block;
    width: 100%;
    min-height: 520px;
}
.txt_box {
  position: relative;
  left: 0;
  z-index: 10;
}
.txt_box .read_txt {
  margin-bottom: 32px;
  color: var(--color-green);
  font-family: var(--font-notoserif);
  font-size: min(2.59259vw, 28px);
  font-weight: 700;
}
.txt_box .logo_img {
  margin-bottom: 48px;
}
.txt_box .login_link a {
  color: #000;
}
.photo {
  position: absolute;
  right: 54px;
  bottom: 0;
  z-index: 0;
}


@media screen and (max-width: 767px) {

  .fv {
  width: 100%;
  min-height: auto;
  margin-top: 80px;
  background: #fff url(../../img/fv_bg_sp.png) top center no-repeat;
  background-size: cover;
}
.fv_inner {
  flex-direction: column;
  align-items: center;
  width: 96vw;
  min-height: auto;
  padding-top: 40px;
}
.fv_img .img {
    display: block;
    width: 100%;
    min-height: 520px;
}
.txt_box {
  position: relative;
  left: 0;
  z-index: 10;
}
.txt_box .read_txt {
  margin-bottom: 32px;
  color: var(--color-green);
  font-family: var(--font-notoserif);
  font-size: 3.5vw;
  font-weight: 700;
}
.txt_box .logo_img img {
  width: 80vw;
  margin: auto;
}
.txt_box .login_link a {
  color: #000;
}
.photo {
  position: relative;
  margin: 12px auto 0;
  right: 0;
  left: 0;
}
.photo img {
  width: 80vw;
}

}



/* common */

.sec_inner {
  max-width: 1000px;
  margin: auto;
  padding: 64px 0 0;
}
.flex_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
.flex_wrap div {
  width: calc(100% / 3);
  max-width: 320px;
}

@media screen and (max-width: 767px) {
  .sec_inner {
    max-width: 1000px;
    margin: auto;
    padding: 10vw 4vw 0;
  }
  .flex_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    max-width: 92vw;
  }
  .flex_wrap > p {
    margin-bottom: 30px;
  }
  .flex_wrap > p:last-child {
    margin-bottom: 0;
  }
  .flex_wrap div {
    width: 92vw;
    max-width: 320px;
    margin: auto;
    margin-bottom: 30px;
  }
}





.btn_area {
  padding: 42px 0;
  background: #006A38 url(../../img/sec01_bg.png) center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.btn_large {
  text-align: center;
}
.btn_large a {
  display: inline-block;
  min-width: 400px;
  max-width: 400px;
  padding: 14px 36px;
  border-radius: 9999px;
  background: linear-gradient(90deg,#d48c00 0%, #f1c845 50%, #e6b519 100%);
   background-size: 200% 100%;
  color: #fff;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  position: relative;
  text-shadow: 0 3px 3px rgba(0,0,0,.1);
  box-shadow: 2px 2px 0px rgba(217, 175, 34, 0.2);
  transition: transform .05s ease, filter .2s ease, background .3s ease;
  font-family: var(--font-notoserif);
  font-size: var(--fonts-32);
  box-sizing: border-box;
  text-align: center;
}
/* hoverすると1回だけスッとグラデーションが流れる */
.btn_large a:hover {
  animation: gradient-slide 0.6s ease forwards;
}

@keyframes gradient-slide {
  from { background-position: 0% 0; }
  to   { background-position: 100% 0; }
}

.login_link {
  text-align: center;
}
.login_link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  margin-top: 15px;
  color: #fff;
  text-decoration: none
}
.login_link a::after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease, translate .2s ease;
}
.login_link a:hover::after {
  translate: 4px 0;
}


@media screen and (max-width: 767px) {
  .btn_large {
    max-width: 92vw;
    margin: auto;
  }
  .btn_large a {
    display: inline-block;
    min-width: 70vw;
    max-width: 400px;
    padding: 14px 36px 16px;
    font-size: 5vw;
  }
  
}




/* sec01 ------------------------------------------------------- */
#sec01 {
  padding-bottom: 64px;
  background: #006A38 url(../../img/sec01_bg.png) center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#sec01 p {
  font-size: var(--fonts-20);
  font-family: var(--font-notoserif);
  line-height: 2.4;
  text-shadow: 3px 3px 4px rgba(31, 31, 31, 0.1);
}

@media screen and (max-width: 767px) {
  #sec01 {
    padding: 0 0 10.6666666667vw;
  }
  #sec01 p {
    font-size: 3.2vw;
    line-height: 180%;
  }
}



/* sec02 ------------------------------------------------------- */
#sec02 {
  padding-bottom: 80px;
}
#sec02 {
  background-image: url("../../img/bg_lt.png"), url("../../img/bg_rt.png"), url("../../img/bg_rb.png"), url("../../img/bg_lb.png"), url(../../img/sec02_bg.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, auto, auto, cover;
  background-position: left top, right top, right bottom, left bottom, center center;
  background-color: #fff;
}
#sec02 h2 {
  margin-bottom: 32px;
  color: var(--color-yellow);
  font-size: var(--fonts-40);
  font-family: var(--font-notoserif);
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
#sec02 h2 span {
  display: inline-block;
  padding: 0 15px 10px;
  border-bottom: 2px solid #fff;
}

.grid_wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 20px;
}
.grid_wrap .inbox {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 22px;
  background-color: #fff;
  border: 1px solid #D9A123;
  border-radius: 4px;
  box-sizing: border-box;
}
.inbox::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 48px solid transparent;
  border-bottom: 40px solid #EDDBB3;
}
.industry {
  margin-bottom: 10px;
  padding-bottom: 10px;
  color: #000;
  border-bottom: 1px solid #D3D3D3;
  font-size: var(--fonts-20);
}
.annual_income {
  margin-bottom: 6px;
  color: #D9A123;
  font-family: var(--font-notoserif);
  font-size: var(--fonts-24);
}
.detail {
  color: #000;
}

#sec02 .success .flex_wrap img {
  width: 100%;
  max-width: 320px;
}
#sec02 .strength > p {
  margin-bottom: 48px;
  color: #fff;
  font-size: var(--fonts-20);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .grid_wrap{
    display: block;
  }
  .grid_wrap .inbox {
    max-width: 320px;
    margin: auto;
    margin-bottom: 20px;
  }
  .grid_wrap .inbox:last-child {
    margin-bottom: 0;
  }

  #sec02 .strength > p {
    font-size: 3.2vw;
  }
}


/* sec03 ------------------------------------------------------- */
#sec03 {
  min-height: 400px;
  background: #fff url(../../img/sec03_bg.png) center center no-repeat;
  background-size: cover;
  border-top: 4px solid #D9A024;
}
.sec03_inner {
  display: flex;
  align-items: center;
  width: min(92.5925925926vw, 1140px);
  min-height: 400px;
  margin: auto;
}
#sec03 h2 {
  max-width: 576px;
  
  font-family: var(--font-notoserif);
  text-align: center;
}
#sec03 h2 .text {
  font-size: var(--fonts-24);
}
#sec03 h2 .logo {
  margin-top: 30px;
}
#sec03 h2 .logo img {
  width: 100%;
  filter: drop-shadow(0px 0px 7px #fff);
}

@media screen and (max-width: 767px) {
  #sec03 {
    min-height: 400px;
    background: #fff url(../../img/sec03_bg_sp.png) center center no-repeat;
    background-size: cover;
  }
  #sec03 h2 .logo {
    max-width: 320px;
    margin: 30px auto 0;
    text-align: center;
  }
  .sec03_inner {
    justify-content: center;
  }
}



/* sec04 ------------------------------------------------------- */
#sec04 {
  padding: 80px 0;
  background: #fff url(../../img/sec04_bg.png) center center no-repeat;
  background-size: cover;
}
#sec04 .scout h2 {
  margin-bottom: 90px;
  text-align: center;
  font-weight: 500;
  font-size: var(--fonts-24);
}
#sec04 h2 .logo {
  display: inline-block;
  max-width: 320px;
  margin-right: 17px;
}
#sec04 h2 .logo img {
  width: 100%;
}
.column_wrap {
  display: flex;
  justify-content: space-between;
}
.clm_box {
  display: flex;
  min-width: 280px;
  margin-right: 40px;
  padding-right: 32px;
  border-right: 2px solid #D3D3D3;
}
.clm_box:last-child {
  margin-right: 0;
  border-right: 0;
}
.clm_box p {
  width: 80px;
  margin-right: 24px;
}
.clm_box p img {
  width: 100%;
}
.clm_box div {
  width: calc(100% - 104px);
}
.clm_box div h3 {
  margin-bottom: 24px;
  color: #D69415;
  font-size: var(--fonts-24);
}
.clm_box div ul {
  margin-left: 24px;
}
.clm_box div ul li {
  list-style: disc;
}
#sec04 .flow h2 {
  margin-bottom: 48px;
  color: var(--color-green);
  font-family: var(--font-notoserif);
  font-size: var(--fonts-40);
  text-align: center;
}
#sec04 .flow h2 span {
  display: inline-block;
  margin-left: 30px;
  color: #000;
  font-family: var(--font-notosans);
  font-size: var(--fonts-16);
  font-weight: normal;
}
.flow_inbox h3 {
  margin-top: 24px;
  color: var(--color-green);
  font-family: var(--font-notoserif);
  font-size: var(--fonts-24);
}

@media screen and (max-width: 767px) {
  #sec04 .scout h2 {
    margin-bottom: 45px;
    text-align: center;
  }
  #sec04 .scout h2 span {
    display: block;
    font-size: 4.8vw;
  }
  #sec04 h2 .logo {
    max-width: 320px;
    margin: auto;
    margin-bottom: 20px;
  }

  .column_wrap {
    flex-direction: column;
  }
  .clm_box {
    display: flex;
    min-width: 280px;
    width: 92vw;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto !important;
    margin-bottom: 20px;
    padding-right: 0;
    padding-bottom: 20px;
    border-right: 0;
    border-bottom: 2px solid #D3D3D3;
  }
  .clm_box p {
    width: 60px;
    margin-right: 24px;
  }
  .clm_box div {
    width: calc(100% - 104px);
  }
  .clm_box div h3 {
    margin-bottom: 12px;
  }
  .clm_box div ul {
  }
  .clm_box div ul li {
  }
  #sec04 .flow h2 {
    margin-bottom: 24px;
    font-size: var(--fonts-40);
    text-align: center;
  }
  #sec04 .flow h2 span {
    display: block;
    margin-left: 0;
  }
  .flow_inbox h3 {
    margin-top: 15px;
    color: var(--color-green);
    font-family: var(--font-notoserif);
    font-size: var(--fonts-24);
  }

}





/* sec05 ------------------------------------------------------- */
/* よくあるご質問 */
#sec05 {
  padding: 64px 0 72px;
}
.qa_inner {
  max-width: 800px;
  margin: auto;
}
#sec05 h2 {
  font-size: var(--fonts-40);
  text-align: center;
}
#sec05 h2 span {
  display: block;
  color: var(--color-green);
  font-size: var(--fonts-24);
  font-weight: 500;
  letter-spacing: 0.2em; 
}




.adlp-accordion {
    background: #fff;
    border-radius: min(0.7407407407vw, 8px);
    border: 1px solid var(--1-main, #889B88);
    background: var(--1, #FFF);
    padding: min(1.4814814815vw, 16px) 0;
}

.adlp-accordion__wrapper {
    display: flex;
    flex-direction: column;
    gap: min(2.962962963vw, 32px);
    margin: min(2.962962963vw, 32px) 0 0;
}

@media screen and (max-width: 767px) {
  #sec05 h2 {
    font-size: 7.46667vw;
  }
  #sec05 h2 span {
    font-size: 4.8vw;
  }
    .adlp-accordion__wrapper {
        gap: 6.4vw;
        margin-top: min(2.962962963vw, 32px);
    }
}

@media screen and (max-width: 767px) {
    .adlp-accordion {
        border-radius: 1.0666666667vw;
        padding: 2.1333333333vw 0;
        border: 0.2666666667vw solid var(--1-main, #889B88);
    }
}

.adlp-accordion__header {
    position: relative;
    cursor: pointer;
}

.adlp-accordion__header__inner {
    display: flex;
    align-items: center;
    padding: min(1.4814814815vw, 16px) min(7.4074074074vw, 80px) min(1.4814814815vw, 16px) min(3.7037037037vw, 40px);
}

@media screen and (max-width: 767px) {
    .adlp-accordion__header__inner {
        padding: 3.2vw 14.9333333333vw 3.2vw 5.3333333333vw;
    }
}

.adlp-accordion__header__inner .text {
    color: var(--base-black-333, #333);
    font-size: min(1.4814814815vw, 16px);
    font-weight: 700;
    line-height: 180%;
}

@media screen and (max-width: 767px) {
    .adlp-accordion__header__inner .text {
        font-size: 3.4666666667vw;
    }
}




.adlp-accordion__header.--open::after {
    transform: translateY(-50%) rotate(180deg);
}

.adlp-accordion__header.--open::before {
    opacity: 0;
}

.adlp-accordion__header.--img::after {
    display: none;
}

.adlp-accordion__header.--img>span:last-child {
    display: none;
}

.adlp-accordion__header.--img.--open>span:first-child {
    display: none;
}

.adlp-accordion__header.--img.--open>span:last-child {
    display: block;
}

.adlp-accordion__body {
    display: none;
}

.adlp-accordion__body .text {
    color: var(--base-black-333, #333);
    text-align: justify;
    font-size: min(1.4814814815vw, 16px);
    font-weight: 400;
    line-height: 180%;
}


.adlp-accordion__body__inner {
  display: block;
  margin: 0 min(3.7037037037vw, 40px);
  padding: 16px 0 10px;
  border-top: 1px solid #D3D3D3;
    
}



.adlp-accordion__wrapper {
  margin-top: 45px;
}
.adlp-accordion {
  margin-bottom: 24px;
  background: #fff;
  border-radius: 8px;
  border: 2px solid #000;
  background: var(--1, #FFF);
  padding: min(1.4814814815vw, 16px) 0;
}
.adlp-accordion__header {
  position: relative;
}
.adlp-accordion__header::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: min(2.2222222222vw, 24px);
    height: min(2.2222222222vw, 24px);
    right: min(4.1666666667vw, 45px);
    transition: all 0.3s;
    background-image: url(../../img/arw_dwn.svg);
    background-size: 100% 100%;
}

.adlp-accordion__header__inner .text {
    font-size: var(--fonts-16);
    font-weight: 500;
    line-height: 180%;
}
.adlp-accordion__body .text {
    text-align: justify;
    font-size: var(--fonts-12);
    font-weight: 500;
    line-height: 180%;
}

@media screen and (max-width: 767px) {
    .adlp-accordion {
      margin-bottom: 0;
    }
    .adlp-accordion__wrapper {
        max-width: 84vw;
        margin: auto;
        margin-top: min(2.962962963vw, 32px);
    }
    .adlp-accordion__header::after {
        width: 5.3333333333vw;
        height: 5.3333333333vw;
        right: 4.6666666667vw;
    }
     .adlp-accordion__header__inner .text {
        font-size: 3.4666666667vw;
    }
        .adlp-accordion__body .text {
        font-size: 3.4666666667vw;
        font-weight: normal;
    }
}



/* footer ------------------------------------------------------- */
#footer {
  padding: 40px 0;
  background-color: #FFFDF5;
  text-align: center;
}
#f_navi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
} 
#f_navi li {
  margin: 0 20px;
  font-weight: 500;
}


@media screen and (max-width: 767px) {
  #footer {
    padding: 7.4666666667vw 0;
  }
  #f_navi {
    flex-direction: column;
    font-size: 3.4666666667vw;
  } 
  #f_navi li {
    margin: 0 20px;
    font-weight: 500;
    gap: 5.3333333333vw;
  }
  .copyright {
    font-size: 2.6666666667vw;
    margin: 8.5333333333vw auto 0;
  }
}
