@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #0A0A0A;
  --color-white: #ffffff;
  --color-bg-yellow: #FFF7D3;
  --color-primary-yellow: #FFD100;
  --color-subprimary-yellow: #FFEA89;
  --color-gray: #F8F8F8;


  --noto: "Noto Sans JP", sans-serif;
  --poppins: "Poppins", sans-serif;


  --fs16: 1.6rem;
  --fs18: 1.8rem;
  --fs20: 2rem;

  --fs22: 2.2rem;

  --header: 10rem;
  scroll-padding: var(--header);
}



@media screen and (max-width:767px) {
  :root {
    --fs16: 1.4rem;
    --fs18: 1.6rem;
    --fs20: 1.8rem;
    --fs22: 2rem;

    --header: 8rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1280>> 10px */
  /* font-size: 0.78125vw; */
  font-size: clamp(1px, 0.78125vw, 12px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--noto);
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background: var(--color-white);
  color: var(--color-black);
}

.wrap {
  /* 1000px */
  width: 78.125%;
  max-width: 1680px;
  /* width: 100rem; */
  margin-left: auto;
  margin-right: auto;
}

.narrow {
  /* 800px */
  width: 62.5%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

p {
  font-weight: 400;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: .6;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}

/* タイトル */
.hd {
  font-size: var(--fs18);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.hd span {
  display: block;
  font-weight: 600;
  font-family: var(--poppins);
  font-size: 3.6rem;
  letter-spacing: 0.05em;
}

@media screen and (max-width:767px) {
  html {
    /* 375px>> 10px */
    font-size: 2.666666vw;
  }

  .wrap {
    width: 95%;
  }

  .narrow {
    /* 800px */
    width: 95%;
  }

  .hd {
    margin-bottom: 2rem;
  }

  .hd span {
    font-size: 2.8rem;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 6rem;
}

.section {
  padding-top: 6rem;
}




.btnArea a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38rem;
  height: 7.8rem;
  font-size: 2.8rem;
  border: 0.5rem solid var(--color-bg-yellow);
  background: var(--color-primary-yellow);
  border-radius: 0.5rem;
  position: relative;
  gap: 1rem;
  font-weight: 700;
}

.btnArea a i {
  position: relative;
  top: 0.3rem;
  transition: all .4s;
  right: 0rem;
}

.btnArea a:hover {
  opacity: 1;
  background: var(--color-bg-yellow);
}

.btnArea a:hover i {
  top: -0.5rem;
  right: -0.5rem;
}

.line {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.line::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0.3rem;
  background: var(--color-primary-yellow);
  width: 100%;
  height: 0.5em;
  z-index: -1;
}




.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_arrow {
  background-image: url(../images/icon_arrow.png);
  width: 3.5rem;
  height: 3.5rem;
  margin-top: -0.3rem;
}

@media screen and (max-width:767px) {
  section {
    padding-bottom: 4rem;
  }

  .section {
    padding-top: 4rem;
  }

  .btnArea a {
    width: 33rem;
    height: 7rem;
    font-size: 2.2rem;
    gap: 0.5rem;
  }

  .btnArea a i {
    width: 2.6rem;
    height: 2.6rem;
  }
}

/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 9rem 0 1rem;
  transition: all .2s;
}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_left {
  width: 32rem;
  transition: all .2s;
}

.nav_right ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 2em;
}


.nav_right .nav__menu li a {
  font-size: 1.4rem;
  font-weight: 400;
}

.nav_right ul a span {
  display: none;
}




header.changeNav {
  padding: 2rem 0 1rem;
}

.changeNav .nav_left {
  width: 26rem;
}

@media screen and (max-width:767px) {
  header {
    padding: 5rem 0
  }

  header.changeNav {
    padding: 1rem 0;
  }

  .nav_left {
    width: 26rem;
  }

  .changeNav .nav_left {
    width: 22rem;
  }

  .hamburger {
    position: absolute;
    right: 1rem;
    top: 5rem;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 300;
    transition: all .2s;
  }

  .changeNav .hamburger {
    top: 1rem;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 70%;
    height: 0.15rem;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 35%;
  }

  .hamburger__line--2 {
    top: 50%;
  }

  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
  }

  .open_nav .hamburger__line--2 {
    width: 0;
    left: 50%;
  }

  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-yellow);
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 10rem 2rem;
    opacity: 0;
    pointer-events: none;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  nav.gnav.global__nav ul {
    display: block;
  }

  nav.gnav.global__nav ul li {
    margin-top: 2rem;
  }

  nav.gnav.global__nav ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.6rem;
    font-weight: 400;
  }

  .nav_right ul a span {
    display: block;
    font-family: var(--poppins);
    font-size: 2rem;
    font-weight: 600;
  }

  nav.gnav.global__nav ul li.sp {
    margin-top: 3rem;
  }

  nav.gnav.global__nav ul li.sp a {
    display: block;
    text-align: center;
    background: var(--color-primary-yellow);
    line-height: 1.2;
    padding: 2rem 0 1rem;
    font-size: 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
  }

  nav.gnav.global__nav ul li.logo {
    width: 80%;
    margin: 6rem auto 0;
  }

}

/*================================================
 *  fix_btn
 ================================================*/

#fix_btn {
  position: fixed;
  bottom: 2rem;
  right: 1rem;
  z-index: 10;
}

#fix_btn .btnArea {
  margin-top: 5rem;
}

#fix_btn .btnArea a {
  font-size: 2rem;
  width: 28rem;
  padding-left: 3rem;
}

#fix_btn .btnArea span {
  position: absolute;
  width: 18rem;
  left: -1.4rem;
  top: -4rem;
}

@media screen and (max-width:767px) {
  #fix_btn {
    width: 100%;
    bottom: 0;
    right: 0;
    opacity: 0;
    transition: all .4s;
  }

  #fix_btn.changeFix {
    opacity: 1;
  }

  #fix_btn .btnArea a {
    font-size: 1.6rem;
    width: 100%;
    height: 5rem;
    padding-left: 3rem;
  }

  #fix_btn .btnArea span {
    width: 14rem;
    left: -1rem;
    top: -3.2rem;
  }

  #fix_btn .btnArea a i {
    width: 2rem;
    height: 2rem;
  }
}


/*================================================
* mainVisual
================================================*/
#mainVisual {
  padding-top: 21rem;
  z-index: 2;
}

#mainVisual .wrap {
  position: relative;
  padding-bottom: 10rem;
}

#mainVisual .wrap .mv_ill {
  position: absolute;
  display: block;
  width: 40vw;
  max-width: 780px;
  right: -7rem;
  bottom: 0;
  z-index: -1;
}

#mainVisual h2 {
  font-size: 6rem;
  font-weight: 700;
  font-feature-settings: "palt";
  margin-bottom: 3rem;
  line-height: 1.5;
  letter-spacing: 0;
}

#mainVisual p {
  font-size: var(--fs16);
  line-height: 2;
  letter-spacing: 0;
}

#mainVisual .btnArea {
  margin-top: 5rem;
}

#mainVisual .btnArea span {
  position: absolute;
  width: 18rem;
  left: -1.4rem;
  top: -4rem;
}



@media screen and (max-width:767px) {
  #mainVisual {
    padding-top: 16rem;
  }

  #mainVisual .wrap {
    padding-bottom: 0;
  }

  #mainVisual .wrap .mv_ill {
    width: 22rem;
    right: -2%;
    bottom: 8rem;
  }

  #mainVisual h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  #mainVisual .btnArea {
    margin-top: 17rem;
  }

  #mainVisual .btnArea a {
    margin: 0 auto;
  }

  #mainVisual .btnArea span {
    width: 16rem;
    left: -1rem;
    top: -3.5rem;
  }

}


/*================================================
* features
================================================*/
#features {
  background: var(--color-bg-yellow);
  margin-top: -9rem;
  text-align: center;
}

#features h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

#features h3 span {
  position: relative;
}

.features_list {
  display: grid;
  gap: 4rem 0;
  grid-template-columns: repeat(3, 1fr);
  width: calc(100% - 12rem);
  margin: 3rem auto 0;
}

.features_list h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features_list h5 {
  font-family: var(--poppins);
  font-size: var(--fs16);
  font-weight: 600;
}

.features_list img {
  width: auto;
  max-width: unset;
  height: 14rem;
  margin: 1rem auto;
  display: block;
}

@media screen and (max-width:767px) {
  #features {
    padding-top: 9rem;
  }

  #features h3 {
    font-size: 2rem;
  }

  .features_list {
    grid-template-columns: repeat(1, 1fr);
    width: 100%;
  }
}

/*================================================
* reason
================================================*/
#reason .wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 0 8rem;
}

#reason h2 {
  text-align: left;
}

.reason_list li {
  display: flex;
  align-items: center;
  padding: 1rem 2.5rem;
  background: var(--color-bg-yellow);
  border-radius: 0.5rem;
  gap: 0rem 2rem;
  margin-top: 2rem;
}

.reason_list li h3 {
  font-family: var(--poppins);
  font-weight: 600;
  line-height: 1;
  min-width: 10rem;
}

.reason_list li h3 span {
  font-size: 3.4rem;
}

.reason_list li img {
  width: 6rem;
}

.reason_list li p {
  font-size: var(--fs18);
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width:767px) {
  #reason .wrap {
    flex-wrap: wrap;
    justify-content: start;
  }

  #reason h2 {
    margin-bottom: 0rem;
  }

  .reason_list li {
    flex-wrap: wrap;
    padding: 1rem 1.5rem 1rem 9rem;
    position: relative;
  }

  .reason_list li img {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .reason_list li h3 {
    width: 100%;
    min-width: unset;
  }

  .reason_list li h3 span {
    font-size: 2.4rem;
  }

  .reason_list li p {
    width: 100%;
  }
}

/*================================================
* flow
================================================*/
.flow_list {
  display: grid;
  gap: 4.4rem 2rem;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.flow_list li {
  position: relative;
}

.flow_list li:not(:last-child):before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/flow_arrow.png);
  width: 2rem;
  height: 2.8rem;
  top: 24%;
  right: -2rem;
}

.flow_list h4 {
  font-family: var(--poppins);
  font-size: var(--fs16);
  font-weight: 600;
}

.flow_list h3 {
  font-size: var(--fs18);
  font-weight: 600;
  background: var(--color-bg-yellow);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 0.5rem 0 1.5rem;
}

.flow_list li:nth-child(2) h3 {
  background: var(--color-subprimary-yellow);
}

.flow_list li:nth-child(3) h3 {
  background: var(--color-primary-yellow);
}

.flow_list div {
  font-weight: 400;
}

.flow_list div span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width:767px) {
  .flow_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .flow_list li:not(:last-child):before {
    width: 3rem;
    height: 4.2rem;
    top: auto;
    right: auto;
    left: 50%;
    bottom: -4.2rem;
    transform: translateX(-50%) rotate(90deg);
  }

  .flow_list div span {
    margin-bottom: 0.5rem;
  }
}

/*================================================
* plan
================================================*/

#plan {
  background: var(--color-gray);
}

.plan_list {
  display: grid;
  gap: 2rem 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.plan_list>li {
  background: var(--color-white);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}

.plan_list h3 {
  text-align: center;
  font-size: var(--fs18);
  font-weight: 600;
}

.plan_list h3 span {
  display: block;
  font-family: var(--poppins);
  font-weight: 500;
  color: #C8C8C8;
}

.plan_list .price {
  font-weight: 600;
  letter-spacing: 0;
  font-feature-settings: "palt";
  text-align: center;
  line-height: 1.4;
}

.plan_list .price span {
  font-weight: 900;
  font-size: 4rem;
}

.plan_list>li ul {
  padding: 0 1rem 2rem;
  flex-grow: 1;
}

.plan_list>li li {
  font-weight: 400;
  font-size: 1.2rem;
  position: relative;
  padding-left: 1em;
  margin-top: 0.5rem;
}

.plan_list>li li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

.plan_list>li .btnArea a {
  width: 100%;
  font-size: var(--fs18);
  height: auto;
  padding: 1rem 0;
  border: none;
  background: var(--color-subprimary-yellow);
}



.plan_list>li:nth-child(2) {
  background: var(--color-bg-yellow);
  border: 0.2rem solid var(--color-primary-yellow);
}

.plan_list>li:nth-child(2) h3 span {
  color: #F4BB00;
}

.plan_list>li:nth-child(2) .btnArea a {
  background: var(--color-primary-yellow);
  position: relative;
}

.plan_list>li:nth-child(2) .btnArea a span {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
}


.plan_list>li .btnArea a:hover {
  background: var(--color-bg-yellow);
}

.plan_list>li:nth-child(2) .btnArea a:hover {
  background: var(--color-subprimary-yellow);
}

.option {
  background: var(--color-white);
  border-radius: 0.5rem;
  padding: 3rem 0;
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.option h3 {
  text-align: left;
}

.option h3 span {
  font-size: 1.4rem;
}

.option li {
  position: relative;
  padding-left: 1em;
  font-weight: 400;
  margin-top: 0.5rem;
}

.option li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

@media screen and (max-width:767px) {
  .plan_list {
    grid-template-columns: repeat(1, 1fr);
  }

  .plan_list>li {
    padding: 2rem 2rem;
  }

  .option {
    flex-wrap: wrap;
    gap: 0;
    padding: 2rem;
  }

  .option h3 {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}

/*================================================
* faq
================================================*/
#faq {}

#accordion li {
  background: var(--color-gray);
  border-radius: 0.5rem;
  position: relative;
  margin-top: 1rem;
}



#accordion .label {
  font-size: var(--fs16);
  padding: 2rem 6.4rem 2rem 4.4rem;
  background: var(--color-gray);
  cursor: pointer;
  border-radius: 0.5rem;
  position: relative;
}

#accordion .label::before,
#accordion .label::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 0.2rem;
  background: var(--color-black);
  border-radius: 100px;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all .4s;
}

#accordion .label::after {
  transform: translateY(-50%) rotate(90deg);
}

#accordion .label.open::after {
  opacity: 0;
}

#accordion .detail {
  display: none;
  padding: 0 2rem 2rem 4.4rem;
  border-radius: 0.5rem;
  font-weight: 400;
  position: relative;
  letter-spacing: 0;
}

#accordion .detail ul {
  margin-top: 1em;
}

#accordion .detail ul li {
  position: relative;
  padding-left: 1em;
  margin-top: 0.5rem;
}

#accordion .detail ul li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
}

#accordion li::before,
#accordion .detail::before {
  position: absolute;
  content: "Q.";
  left: 2rem;
  top: 2rem;
  font-size: var(--fs16);
  font-family: var(--poppins);
  font-weight: 600;
  z-index: 1;
}

#accordion .detail::before {
  content: "A.";
  color: #F4BB00;
  top: 0;
}

@media screen and (max-width:767px) {
  #accordion .label {
    padding: 2rem 4.4rem 2rem 3.4rem;
  }

  #accordion .label::before,
  #accordion .label::after {
    right: 1.2rem;
  }

  #accordion li::before,
  #accordion .detail::before {
    left: 1rem;
  }

  #accordion .detail {
    padding: 0 2rem 2rem 3.4rem;
  }
}

/*================================================
* contact
================================================*/

#contact {
  background: var(--color-gray);
}

#contact h2 .line {
  font-family: var(--noto);
  font-size: var(--fs18);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: block;
}

#contact .read {
  text-align: center;
  margin-bottom: 3rem;
}

#contact .form {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 0.5rem;
}

.form .grid-2 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

.form .badge-req,
.form .badge-opt {
  background: var(--color-primary-yellow);
  font-size: 1.2rem;
  padding: 0.2rem 1rem;
  border-radius: 1000px;
}

.form .badge-opt {
  background: #f0f0f0;
}

.form .field {
  margin-bottom: 2rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  display: block;
  background: #f0f0f0;
  margin-top: 1rem;
  height: 4rem;
  padding: 0 1rem;
  border-radius: 0.5rem;
}

.form select {
  padding-right: 3rem;
  background: #eee url(../images/ico_select.png) no-repeat right 1rem center / 2rem auto;
}

.form textarea {
  height: 20rem;
  padding: 1rem;
  font-size: 1.4rem;
  font-family: var(--noto);
  font-weight: 400;
}

.field select {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}


.policyArea {
  margin-top: 4rem;
}

.policyArea .inner {
  padding: 2rem;
  border: 1px solid rgb(191 191 191);
  border-radius: 0.5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}

.policyArea .inner ol {
  margin-left: 1em;
  font-weight: 400;
  margin-top: 1rem;
}


.policyArea .inner ol strong {
  font-weight: 400;
}

.form-note {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 1rem;
}


.form-actions {
  margin-top: 2rem;
}

.form-actions input {
  width: 1em;
  margin: 0;
  display: inline-block;
}

.h-captcha {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2rem auto 1rem !important;
}

.btn.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30rem;
  height: 7.8rem;
  font-size: 1.8rem;
  border: 0.5rem solid var(--color-bg-yellow);
  background: var(--color-primary-yellow);
  border-radius: 0.5rem;
  position: relative;
  gap: 1rem;
  font-weight: 700;
  margin: 1rem auto;
  transition: .4s;
}

.btn.btn-primary i {
  position: relative;
  top: 0.3rem;
  transition: all .4s;
  right: 0rem;
}

.btn.btn-primary:hover {
  opacity: 1;
  background: var(--color-bg-yellow);
}

.btn.btn-primary:hover i {
  top: -0.5rem;
  right: -0.5rem;
}

div#form-status {
  display: none;
}

#sent-overlay {
  text-align: center;
  padding: 4rem 1rem;
  font-size: 2rem;
  background: #fff7d3;
  margin-top: 2rem;
  font-weight: 500;
}

#sent-overlay h3,
#sent-overlay p {
  font-weight: 500;
}

@media screen and (max-width:767px) {
  #contact .form {
    padding: 3rem 1rem;
  }

  .form .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .policyArea .inner {
    height: 10rem;
    overflow-y: scroll;
  }

  .h-captcha iframe {
    max-width: 100% !important;
  }

  #sent-overlay {
    font-size: 1.8rem;
  }

}




/*================================================
 *  footer
 ================================================*/
footer {
  padding: 8rem 0 16rem;
  letter-spacing: 0;
}

.ft_menu {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 6rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgb(10 10 10 / 20%);
}

.ft_logo {
  width: 35rem;
}

.ft_menu ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2em;
  font-weight: 400;
}

.ft_company {
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.ft_company div>a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.ft_company a .ft_logo02 {
  width: 6rem;
}

.ft_company a .ft_blank {
  width: 1.5rem;
  margin-top: 0.5rem;
}

.ft_company p {
  margin-top: 1rem;
}

.ft_company p a {
  display: inline;
}

.ft_company .copy {
  font-size: 1rem;
}

@media screen and (max-width:767px) {
  footer {
    padding: 8rem 0 9rem;
  }

  .ft_menu {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }

  .ft_logo {
    width: 28rem;
  }

  .ft_menu ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-left: 4rem;
  }

  .ft_menu ul li {
    width: 100%;
    padding-left: 1em;
    position: relative;
  }

  .ft_menu ul li::before {
    position: absolute;
    content: "-";
    left: 0;
    top: 0;
  }

  .ft_company {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .ft_company div>a {
    margin: 0 auto 0 -0.2rem;
  }

  .ft_company a .ft_logo02 {
    width: 7rem;
  }

  .ft_company p {
    margin-top: 2rem;
  }

  .ft_company .copy {
    text-align: center;
    width: 100%;
  }
}

/*================================================
* ani
================================================*/
/* fadeup */
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.fadeup.started {
  opacity: 1;
  transform: translateY(0px);
}

.delay02 {
  transition-delay: 0.2s;
}

.delay03 {
  transition-delay: 0.3s;
}

.delay04 {
  transition-delay: 0.4s;
}

.delay06 {
  transition-delay: 0.6s;
}

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

/*================================================
* access
================================================*/


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