
@charset "utf-8";


:root {
  /* Color */
  --c-bg: #ffffff;
  --c-text: #1a1a1a;
  --c-text-sub: #ffffff;
  /* content幅 */
  --container-max: clamp(1200px, 80vw, 1440px); /* 本文最大幅 */
  --container-pad: 24px; /* SP最小ガター */
  --container-pad-tab: 32px; /* TAB最小ガター */
  --container-pad-pc: clamp(40px, 4vw, 80px); /* PC最小ガター */
  --container-pad-pcl: clamp(40px, 6vw, 120px); /* PC large最小ガター */

  --container-pad-bottom: 48%;
  /* font */
  --ff-base: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Helvetica", Arial, sans-serif;
  /* font-size */
  --fz-root: 1.6rem;
  --fz-sm: 1.2rem;
  --fz-md: 1.4rem;
  --fz-lg: 1.8rem;
}


/* ========== Media Queries Shortcut (参考用コメント)
  SP: 0–767px
  TAB: 768–1023px
  PC: 1024px–
=========================================================== */

/* =====common===== */
html {
  font-size:62.5%;
  box-sizing: border-box;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-size: var(--fz-md);
  max-width: 100vw;
  margin: 0 auto;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-base);
  font-style: normal;
  line-height: 1.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,1)), 
    url("../images/background.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-attachment: fixed;
  text-align: left;
  overflow-x: hidden;
  overflow-y: hidden;
  box-sizing: border-box;
}

img svg {
  vertical-align: bottom;
}

#content {
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  max-width: 100vw;
  box-sizing: border-box;
  margin: 0 auto;
}

.section__title img{
  width: 80%;
  height: auto;
  margin: 0 auto;
}

/* ===== ボタン・リンクのホバー時の色を暗く ===== */
a:hover,
button:hover,
.main__cta-link:hover,
.create__cta-link:hover,
.cta__button a:hover,
.menu-panel__external:hover {
  filter: brightness(0.9);
  transition: filter 0.2s;
}

.br-sp, .br-tab { display: block; }

/* =====common tab===== */
@media screen and (min-width :768px) {
  body {
    font-size:var(--fz-root);
  }

  #content {
    padding-left: var(--container-pad-tab);
    padding-right: var(--container-pad-tab);
    max-width: var(--container-max);
    margin: 0 auto;
  }

  .section__title img{
    width: 60%;
    height: auto;
    margin: 0 auto;
  }

  .br-sp { display: inline; }
}

/* =====common pc===== */
@media screen and (min-width :1024px) {
  body {
    font-size:var(--fz-lg);
  }

  #content {
    padding-left: var(--container-pad-pc);
    padding-right: var(--container-pad-pc);
    max-width: var(--container-max);
    margin: 0 auto;
  }

  .section__title img{
    width: 28%;
    height: auto;
    margin: 0 auto;
  }

}

/* =====common pc large===== */
@media screen and (min-width :1280px) {
  #content {
    padding-left: var(--container-pad-pcl);
    padding-right: var(--container-pad-pcl);
    max-width: var(--container-max);
    margin: 0 auto;
  }
@media screen and (min-width: 1920px) {
  body {
    max-width: 1920px;
    margin: 0 auto;
  }
  #content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: clamp(40px, 8vw, 160px);
    padding-right: clamp(40px, 8vw, 160px);
  }
}

}


/* =====　header ===== */
/* ======= Responsive Header ======= */
.site-header {
  width: 100%;
  background: #fff;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0.2em 0.5em;
}

.site-header__nav {
  display: none;
}
.site-header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0.7em;
  text-decoration: none;
  flex-direction: row-reverse;
  padding-left: 4%;
}

.site-header__logo img {
  height: 100px;
  width: auto;
}

/* ハンバーガー＋インスタグラム右グループ */
.site-header__right-group {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding-right: 6%;
}
.site-header__insta img {
  width: 48px;
  height: 48px;
  display: block;
}

.site-header__nav-list span {
  display: block;
  text-align: center;
}

.site-brand {
  font-size: var(--fz-sm);
  text-align: center;
  padding-bottom: 10%;
}

.site-brand span{
  display: block;
}

.nav__en {
  font-size: var(--fz-sm);
}

.nav__ja {
  font-size: var(--fz-root);
}

@media (min-width: 768px) {
  .menu-panel__logo {
    height: 88px;
    align-items: center;
  }
  .menu-close {
    right: 2.5em;
    top: 50%;
    transform: translateY(-50%);
  }
  .site-header__logo {
    padding-left: 2%;
  }

  .site-header__logo img {
    height: 120px;
    width: auto;;
  }
  .site-header__right-group {
    padding-right: 10%;
  }


  .site-header__insta img {
    width: 64px;
    height: 64px;
  }

  .site-header__menu-btn {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .site-header__logo img {
    height: 112px;
    width: auto;
  }
  .site-header__nav {
    display: block;
  }
  .site-header__nav-list {
    display: flex;
    gap: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .site-header__nav-list li a {
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.2s;
  }

  .site-header__menu-btn {
    display: none;
  }

  .site-header__right-group {
    padding-right: 2%;
  }

  .site-header__logo {
    padding-left: 2%;
  }

}

/* ======= モバイルメニュー（mobile-menu / .menu-panel） ======= */
.menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: rgba(255,255,255,0.97);
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  transition: opacity 0.3s, visibility 0.3s;
}
.menu-panel[hidden] {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}


.menu-panel__head {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.2em 1.5em 0.5em 1.5em;
  background: rgba(255,255,255,0.97);
}


.menu-panel__logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  gap: 0;
}


.menu-close {
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close img {
  width: 28px;
  height: 28px;
}
.mobile-nav__list {
  list-style: none;
  margin: 24% auto 16%;
  display: flex;
  flex-direction: column;
  gap: 2em;
  align-items: center;
  text-align: center;
}

.mobile-nav__item span {
  display: block;
}

.mobile-nav__item a {
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}


.menu-panel__logo-under{
  margin: 0 auto 2%;
}

@media (min-width: 768px) {
  .menu-panel__head {
    padding: 6% 16%;
  }

  .menu-panel {
    height: 100vh;
    overflow-y: auto;
    max-height: 100vh;
  }

  .mobile-nav__list {
    list-style: none;
    margin:10% auto 16%;
  }

  .menu-close {
    margin: 0 12%;
  }
}

@media (min-width: 1024px) {
  .menu-panel {
    display: none !important;
  }
}



/*======= FV ========*/
/* ==================== First View (KV) ==================== */

/* ファーストビューの親を相対配置 */
.main__container {
  max-width: 100vw;
  box-sizing: border-box;
  position: relative;
  min-height: 80vh;
  margin-bottom: 16%;
}

.main__cta {
  position: absolute;
  top: 70%;
  left: 70%;
  transform: translate(-50%, -50%);
  width: 80%;
  text-align: center;
  z-index: 2;
}

.main__cta img {
  width: 50%;
  height: auto;
}



/*======= FV tab========*/
@media (min-width: 768px){
  .main__cta {
    position: absolute;
    top: 56%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    z-index: 2;
  }

  .main__cta img {
    width: 60%;
    height: auto;
  }
}
/*======= FV pc========*/
@media (min-width: 1024px){
  .main__cta {
    position: absolute;
    top: 56%;
    left: 59%;
    transform: translate(-50%, -50%);
    width: 42%;
    text-align: center;
    z-index: 2;
  }

}

/*======= scroll ========*/
.hero-deco {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24%;
  height: auto;
  margin: 0;
  z-index: 10;
  /* FVボタンの下に配置 */
  top: calc(64% + 66px); /* スマホは上に詰める */
}

.hero-deco.poyoyon2.is-animated {
  animation: poyoyon2 2.5s ease-in-out infinite;
}
 
@keyframes poyoyon2 {
  0%  {
    transform: translateX(-50%) translateY(0);
  }
  20% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-6px);
  }
  60% {
    transform: translateX(-50%) translateY(0);
  }
  100% {
    transform: translateX(-50%) translateY(0);
  }
}

@media (min-width: 768px){
  .hero-deco {
    left: 54%;
    top: calc(58% + 48px); /* タブレットはもう少し上 */
  }
}

@media (min-width: 1024px){
  .hero-deco {
    width: 16%;
    left: 50%;
    top: calc(58% + 40px); /* PCはもう少し上 */
  }
}

@media (min-width: 1280px){
  .hero-deco {
    width: 16%;
    left: 50%;
    top: calc(58% + 64px); /* .main__ctaのtop:64% + ボタン下の余白 */
  }
}




/*======= about ========*/
.about__text {
  text-align: center;
  font-size: var(--fz-sm);
  padding: 24% var(--container-pad);
}

.about__catch {
  position: relative;
  font-size: var(--fz-sm);
  line-height: 1.8;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 32%;
}

.about__catch-create {
  padding-bottom: 6%;
}

.about__catch-create strong {
  display: inline-block;
  border-bottom: 7px solid transparent;
  border-image: url("../images/about_catch_deco.svg") 7 repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.about__catch-kadai strong{
  display: inline-block;
  border-bottom: 7px solid transparent;
  border-image: url("../images/about_catch_deco.svg") 7 repeat;
}

.about__rings{
  padding-bottom: 16%;
}

.about__rings img{
  width: 60%;
  height: auto;
  margin: 0 auto 4%;
}

.about__message {
  text-align: center;
  font-size: var(--fz-root);
  background-color: #FFDD55;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.about__messageSub { 
  font-size: var(--fz-sm);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 24%;
  line-height: 2.0;
}

.katudou_title img {
  width: 70%;
  height: auto;
  margin: 0 auto 16%;
}

.about__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  height: auto;
  margin: 0 auto 16%;
  flex-wrap: wrap;
  min-width: 0;
}

.about__arrows img{
  width: 10%;
  height: auto;
  margin: 8% auto 32%;
}

/* =========================about TAB=========================== */
@media screen and (min-width :768px) {

  .about__text {
    font-size: var(--fz-root);
  }
  
  .about__catch {
    font-size: var(--fz-root);
    padding-left: 14%;
    padding-right: 14%;
  }

  .about__rings img{
    margin: 0 auto 2%;
  }

  .about__message {
    text-align: center;
    font-size: 2.0rem;
    width: 70%;
  }

  .about__messageSub { 
    font-size: var(--fz-root);
    max-width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 16%;
  }

  .about-card{
    width: 40%;
    height: auto;
    margin: 0 20% 10%;
  }

  .about-card img{
    width: 80%;
    height: auto;
  }

  .about__arrows img{
    margin: 8% auto 32%;
  }

}  
/* =========================about  PC=========================== */
@media screen and (min-width :1024px) {
  #about {
    padding-top: 10%;
  }

  .about__text {
    font-size: 2.4rem;
    padding: 10%;
  }

  .about__catch { 
    font-size: var(--fz-lg); 
    padding-left: 26%;
    padding-right: 26%;
    padding-bottom: 12%;
  }

  .about__rings img{
    width: 40%;
    height: auto;
  }

  .about__message {
    text-align: center;
    font-size: 2.4rem;
    width: 56%;
  }

   .about__messageSub { 
    font-size: var(--fz-lg);
    padding-left: 10%;
    padding-right: 10%;
  }

  .about__links {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .about__links {
    width: 90%;
    height: auto;
    margin: 0 auto 8%;
    gap: 4px;
  }

  .about-card{
    width: 30%;
    height: auto;
    margin: 0 auto; 
  }

  .about__arrows img{
    width: 6%;
    height: auto;
    margin: 10% auto 0;
  }

}

/* =========================about  PC large=========================== */
@media screen and (min-width :1280px) {
  .about__catch { 
      padding-left: 24%;
      padding-right: 24%;
  }

  .about__messageSub { 
    font-size: var(--fz-lg);
    padding-left: 14%;
    padding-right: 14%;
  }

  .katudou_title img{
    width: 50%;
  }
}


/*=======  link to create========*/
.section__title--create {
  margin-bottom: 32%;
}

.create_subarea img {
  width: 80%;
  height: auto;
  margin: 0 auto 24%;
}

.create__secondTextarea {
  width: 80%;
  height: auto;
  margin: 0 auto;
}

.create_secondText {
  padding-bottom: 6%;
}

.create__band img {
  width: 70%;
  height: auto;
  margin: 16% auto 16%;
}

.create__wrap {
  width: 80%;
  height: auto;
  margin: 0 24% 10%;
}

.create__text {
  line-height: 1.8;
}

.create__text strong {
  background-image: url("../images/create_text-strong.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.benefit {
  width: 100%;
  height: auto;
  margin: 0 auto 16%;
}

.create__footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: auto;
  margin: 0 auto 16%;
  gap: 32px;
}

.create__message{
  max-width: 80%;
  margin: 0 auto 16%;
}

.create__arrows img{
  width: 10%;
  height: auto;
  margin: 8% auto 24%;
}


  /* ======================link to create TAB=========================== */
@media screen and (min-width :768px) {
  .create__secondTextarea {
    width: 80%;
    height: auto;
    margin: 0 16% 16%;
  }

  .create_secondText {
    font-size: var(--fz-root);
    padding-bottom: 4%;
  }

  .create__wrap {
    width: 80%;
    height: auto;
    margin: 0 auto 10%;
  }


  .create__text {
    text-align: center;
  }

  .create__footer {
    gap: 64px;
  }

  .create__arrows img{
    margin: 8% auto 32%;
  }
}  
/* =========================link to create  PC=========================== */
@media screen and (min-width :1024px) {
  #link-to-create {
    padding-top: 16%;
  }

  .section__title--create {
     margin-bottom: 10%;
  }
  
  .create_subarea img {
    width: 70%;
    margin: 0 auto 10%;
  }

  .create__secondTextarea {
    width: 80%;
    height: auto;
    margin: 0 26% 10%;
  }

  .create__band img {
    width: 60%;
    height: auto;
    margin: 8% auto 10%;
  }

  .benefit {
    width: 100%;
    height: auto;
    margin: 0 auto 6%;
  }


  .create__footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: auto;
    margin: 10% auto 16%;
    gap: 48px;
  }

  .create__arrows img{
    width: 6%;
    height: auto;
    margin: 0 auto;
  }
}

/* =========================link to create  PC large=========================== */
@media screen and (min-width :1280px) {
  .create_subarea img {
    width: 70%;
    height: auto;
  }

  .create__secondTextarea {
    margin: 0 22% 16%;
  }

  .create_secondText {
    font-size: 2.0rem;
  }

  .create__band {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  .create__message img{
    width: 70%;
    height: auto;
    margin: 0 auto;
  }

  .create__footer {
    gap: 24px;
  }

}

  /*======= Companies ========*/
.section__title--companies{
  width: 100%;
  height: auto;
  margin-bottom: 16%;
}

.companies__contents img {
  width: 80%;
  height: auto;
  margin: 0 auto 16%;
}

.companies__lead img{
  width: 80%;
  height: auto;
  margin: 0 auto 16%;
}

.companies__lines {
  width: 80%;
  height: auto;
  margin: 0 auto 16%;
}

.cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta__item  {
  width: 80%;
  height: auto;
  margin: 0 auto 16%;
}

.cta__arrows {
  padding-bottom: 10%;
}


.cta__arrows-blog {
  padding-bottom: 10%;
}

.cta__arrows-blog img {
  width: 86%;
  height: auto;
  margin: 0 auto;
}

.cta__icon{
  width: 30%;
  height: auto;
  margin: 0 auto 10%;
}

.cta__button {
  width: 60%;
  height: auto;
  margin: 0 auto;
}

/* =========================Companies TAB=========================== */
@media screen and (min-width :768px) {
  .cta {
    width: 60%;
    height: auto;
    margin: 0 auto;
  }

}

/* =========================Companies PC=========================== */
@media screen and (min-width :1024px) {
  #for-companies {
    padding-top: 10%;
  }

  .section__title--companies{
    width: 48%;
    height: auto;
    margin: 0 auto 10%;
  }

  .section__title--companies img{
    width: 80%;
    height: auto;
    margin: 0 auto 16%;
  }
  
  .companies__contents img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
  
  .companies__lead img{
    margin: 0 auto 14%;
  }

  .cta {
    width: 60%;
    height: auto;
    flex-direction: row;
    justify-content: center;
    gap: 48px;
    margin: 0 auto;
  }
}

/* =========================Companies PC large=========================== */
@media screen and (min-width :1280px) {
  .companies__contents img{
    width: 60%;
    height: auto;
    margin: 0 auto 16%;
  }

  .companies__lines {
    width: 40%;
    height: auto;
    margin: 0 auto 10%;
  }
}
/*======= blog ========*/
.section__title--blog {
  margin-bottom: 16%;
}

.blog__text {
  width: 80%;
  height: auto;
  margin: 0 16% 16%;
}

.blog__lines img{
  width: 80%;
  height: auto;
  margin: 0 auto  16%;
}

/* =========================blog TAB=========================== */
@media screen and (min-width :768px) {
  .blog__lines img{
    width:60%;
    height: auto;
    margin: 0 auto  16%;
  }
}  
/* =========================blog PC=========================== */
@media screen and (min-width :1024px) {
  #blog {
    padding-top: 10%;
  }

  .section__title--blog {
      margin-bottom: 8%;
  }

  .blog__lines img{
    width:60%;
    height: auto;
    margin: 0 auto  16%;
  }
}

/* =========================blog PC large=========================== */
@media screen and (min-width :1280px) {
  .blog__text{
    margin: 0 26% 10%;
  }

  .blog__lines img {
    width: 40%;
    height: auto;
    margin: 0 auto 10%;
  }
}

/* ===========footer========== */
.menu-panel__divider {
  width: 90%;
  height: auto;
  margin: 0 auto;
  padding-bottom: 16%;
}

.footer_nav-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
  align-items: center;
}

.global-nav__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  text-align: center;
}

.global-nav__item span{
  display: block;
}

.nav__en {
  font-size: var(--fz-sm);
}


.menu-panel__logo-under {
  width: 50%;
  height: auto;
  margin: 10% auto;
}

.menu-panel__org {
  width: 90%;
  height: auto;
  font-size: var(--fz-sm);
  padding:var(--container-pad);
  margin: 0 14% 6%;

}

/* フッター外部リンク下線 */

.menu-panel__external-text {
  font-weight: 700;
}

.menu__panel-item a{
  text-decoration: underline;
}


.menu__panel-item {
  padding-bottom: 4%;
}

.menu__panel-item span{
  display: block;
}

.menu-panel__external-text a{
  border-bottom: none;
}

.menu-panel__external-text span{
  display: block;
}

.menu-panel__copyright {
  text-align: center;
}

footer{
  margin: 0 auto 10%;

}

/* =========================footer TAB=========================== */
@media screen and (min-width :768px) {
  .menu-panel__org {
    width: 90%;
    height: auto;
    font-size: var(--fz-sm);
    padding:var(--container-pad);
    margin: 0 24% 6%;
}
}  
/* =========================footer PC=========================== */
@media screen and (min-width :1024px) {
  .menu-panel__divider {
    width: 70%;
    padding-bottom: 10%;
  }

  .footer_nav-inner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 48px;
    padding-bottom: 6%;
  }

  .global-nav__list {
    display: flex;
    flex-direction: row;
    gap: 32px;
    text-align: center;
  }

  .menu-panel__logo-under {
    padding-bottom: 4%;
  }

  .menu-panel__org {
    font-size: var(--fz-root);
    margin: 0 28% 6%;
  }

  .menu-panel__external-text span{
    display: inline-block;
    text-decoration: underline;
  }

  .menu-panel__sns {
    padding-bottom: 0;
  }

}

@media screen and (min-width :1280px) {
  .menu-panel__divider {
    width: 60%;
    padding-bottom: 6%;
  }


  .menu-panel__logo-under {
    width: 30%;
    height: auto;
    margin: 0 auto;
  }

  .menu-panel__org {
    font-size: var(--fz-lg);
    margin: 0 28% 6%;
  }

  .menu__panel-item {
    padding-bottom: 2%;
  }


}

