/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  --ease: 0.3s ease;
}

/*============================================================
  Layout
  ============================================================ */


/*============================================================
  Header
  ============================================================ */

.header__ {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: #fff;
  box-sizing: border-box;
  z-index: 100;
}

.header__flex-wrap {
  /* width: min(1440px, 100%); */
  height: 100%;
  display: flex;
  justify-content: space-between;
  /* margin: auto; */
}

.header__logo {
  width: 22%;
  width: 324px;
  padding: 0 0 0 25px;
  margin: auto 0;
}

.header__menu-wrap {
  width: 62%;
  min-width: 891px;
  display: flex;
}

.header__menu {
  width: 60%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: clamp(10px, 2.2vw, 40px);
  font-weight: bold;
  white-space: nowrap;
}

.header__contact {
  width: 16%;
  background-color: #0A2540;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  font-weight: bold;
}

.header__download {
  width: 23%;
  background-color: #FFCC00;
  font-weight: bold;
}

.header__download a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}

.circle_down_mark {
  width: 24px;
  height: 24px;
  margin-top: 2px;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: auto 20px auto auto;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #091423;
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  height: calc(100vh - 90px);
  background: #fff;
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 0 24px 40px;
}

.mobile-nav__inner > a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(9, 20, 35, 0.1);
  font-weight: bold;
  font-size: 16px;
  color: #091423;
}

.mobile-nav__contact {
  margin-top: 32px;
  padding: 16px 0 !important;
  background: #0A2540;
  color: #fff !important;
  text-align: center;
  border-bottom: none !important;
  border-radius: 4px;
}

.mobile-nav__download {
  margin-top: 12px;
  padding: 16px 0 !important;
  background: #FFCC00;
  color: #091423 !important;
  text-align: center;
  border-bottom: none !important;
  border-radius: 4px;
}

@media screen and (max-width:1250px) {
  .header__menu-wrap {
    display: none;
  }
  .header__logo {
    width: 324px;
    padding: 9px 0 9px 25px;
    flex-shrink: 0;
  }
  .hamburger {
    display: flex;
  }
  .mobile-nav {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .header__logo {
    width: 18%;
    min-width: 223px;
    padding: 0 0 0 24px;
    flex-shrink: 0;
  }
}

.header__menu a:hover,
.header__contact:hover,
.header__download a:hover,
.mobile-nav__inner > a:hover,
.mobile-nav__contact:hover,
.mobile-nav__download:hover {
  opacity: 0.8;
}


/*============================================================
  footer
  ============================================================ */

.footer__ {
  width: 100%;
  height: 90px;
}

.footer__wrap {
  width: min(1440px,100%);
  margin: auto;
  padding: 100px;
  box-sizing: border-box;
}

.footer__flex {
  display: flex;
  justify-content: space-between;
  padding: 0 48px 58px;
  border-bottom: 1px solid rgba(9, 20, 35, 0.5);
}

.footer__logo {
  width: 32%;
  min-width: 368px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 26px;
  color: #091423;
  font-weight: 500;
}

.footer__copyright {
  display: flex;
  margin-top: 48px;
  justify-content: space-between;
  font-family: var(--font-en);
  font-size: 14px;
  color: rgba(9, 20, 35, 0.5);
}

@media screen and (max-width:1250px) {
  .footer__logo {
    width: 32%;
    min-width: 300px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0px;
    color: #091423;
  }
}

@media screen and (max-width:1020px) {
  .footer__wrap {
    width: min(1440px,100%);
    margin: auto;
    padding: 20px 50px;
    box-sizing: border-box;
  }
  .footer__flex {
    display: block;
    justify-content: none;
    padding: 0 24px 30px;
    border-bottom: 1px solid rgba(9, 20, 35, 0.5);
  }
  .footer__logo {
    width: fit-content;
    min-width: 0px;
    margin: auto;
  }
  .footer__grid {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 20px;
    margin: 20px auto 0;
    color: #091423;
  }
  .footer__copyright {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
    color: rgba(9, 20, 35, 0.5);
  }
}

@media screen and (max-width:590px) {
  .footer__wrap {
    width: min(1440px,100%);
    margin: auto;
    padding: 20px 10px;
    box-sizing: border-box;
  }
  .footer__flex {
    display: block;
    justify-content: none;
    padding: 0 1px 30px;
    border-bottom: 1px solid rgba(9, 20, 35, 0.5);
  }
  .footer__grid {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    margin: 20px auto 0;
    color: #091423;
    font-size: 14px;
  }
  .footer__copyright {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    color: rgba(9, 20, 35, 0.5);
    font-size: 12px;
  }
}

.footer__grid a:hover,
.footer__copyright a:hover {
  opacity: 0.8;
}

/*============================================================
  thanks
  ============================================================ */

.thanks__ {
  background-color: #F8F9FF;
}

.thanks__wrap {
  width: min(1440px,75%);
  margin: auto;
  padding: 100px 0;
}

.thanks__headline {
  font-size: 85px;
  font-family: var(--font-en);
  font-weight: bold;
  text-align: center;
  color: #091423;
}

.thanks__subtitle {
  margin-top: 69px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #1C1B1B;
}

.thanks__desc-wrap {
  margin-top: 30px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1.77;
  color: #444650;
}

.thanks__button-wrap {
  width: fit-content;
  margin: 50px auto 0;
}

.thanks__button-desc {
  width: fit-content;
  background-color: #0A2540;
  padding: 20px 30px 20px 44px;
  text-align: center;
  margin: auto;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
  border-radius: 60px;
}

.thanks__button-desc span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFCC00;
  border-right: 2px solid #FFCC00;
  transform: rotate(45deg);
  vertical-align: middle;
  margin-left: 30px;
  margin-top: -3px;
}

.thanks__button-desc:hover {
  opacity: 0.8;
}

@media screen and (max-width:1020px) {
  .thanks__wrap {
    width: min(1440px,92%);
    margin: auto;
    padding: 50px 0;
  }
  .thanks__headline {
    font-size: 50px;
    font-weight: bold;
    text-align: center;
  }

  .thanks__subtitle {
    margin-top: 50px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
  }
  .thanks__disc-wrap {
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    line-height: 1.77;
  }
  .thanks__button-desc {
    width: fit-content;
    background-color: #0A2540;
    padding: 16px 25px 16px 35px;
    text-align: center;
    margin: auto;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 60px;
  }
  .thanks__button-desc span {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #FFCC00;
    border-right: 2px solid #FFCC00;
    transform: rotate(45deg);
    vertical-align: middle;
    margin-left: 25px;
    margin-top: -2px;
  }
}

/*============================================================
  company
  ============================================================ */

.company__ {
  background-color: #F7F7F7;
}

.company__wrap {
  width: min(1440px,100%);
  margin: auto;
}

.company__headline-wrap {
  padding: 100px 100px;
  box-sizing: border-box;
}

.company__headline {
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  margin-bottom: 33px;
  color: #091423;
}

.company__subtitle {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.company__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 5px 10px 0 0;
}

.company__hero {
  width: 26%;
  min-width: 374px;
}

.company__hero-image {
  width: 100%;
  max-width: 370px;
  margin: 0 auto;
}

.company__list-flex {
  width: 100%;
  display: flex;
  padding: 0 100px 5px;
  box-sizing: border-box;
}

.company__list-wrap {
  width: 56%;
  margin-left: 64px;
}

.company__list-item-flex {
  display: flex;
  padding: 32px 0;
  border-bottom: 1px solid rgba(197, 198, 204, 0.2);
}
.company__list-item-flex:first-child {
  display: flex;
  padding: 0 0 32px;
}
.company__list-item-flex:last-child {
  display: flex;
  padding: 32px 0 0;
  border-bottom: none;
}

.company__list-item-title {
  width: 25%;
  flex-shrink: 0;
  color: #091423;
  line-height: 1.5;
}
.company__list-item-subtitle {
  color: #44474C;
  line-height: 1.5;
}

/* 所在地：2拠点目（東京）の住所だけ上に余白 */
.company__list-item-subtitle--branch {
  margin-top: 16px;
}

.company__list-item-subtitle-url {
  color: #091423;
}

@media screen and (max-width:1250px) {
  .company__list-wrap {
    width: 56%;
    margin-left: 24px;
  }
  .company__list-item-title {
    width: 18%;
    color: #091423;
  }
}

@media screen and (max-width:1020px) {
  .company__list-flex {
    width: 100%;
    display: block;
    padding: 0 0 85px;
  }
  .company__hero {
    width: 26%;
    min-width: 374px;
    margin: auto;
  }
  .company__list-wrap {
    width: 92%;
    max-width: 370px;
    margin-left: 0;
    margin: 30px auto 0;
  }

  .company__list-item-flex {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(197, 198, 204, 0.2);
  }
  .company__list-item-flex:first-child {
    display: block;
    padding: 0 0 16px;
  }
  .company__list-item-flex:last-child {
    display: block;
    padding: 16px 0 0;
    border-bottom: none;
  }

  .company__list-item-title {
    margin-bottom: 12px;
    width: 100%;
    color: #091423;
  }
}

@media screen and (max-width:768px) {
  .company__headline-wrap {
    padding: 33px 0 33px 8px;
    width: 26%;
    min-width: 300px;
  }

  .company__headline {
    font-size: 60px;
    font-weight: bold;
    line-height: 0.8;
    margin-bottom: 20px;
    color: #091423;
  }

  .company__subtitle {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #091423;
  }
  .company__subtitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFCC00;
    margin: 2px 10px 0 10px;
  }

  .company__list-flex {
    width: 100%;
    display: block;
    padding: 0 0 50px;
  }

  .company__hero {
    width: 26%;
    min-width: 300px;
    margin: auto;
  }

  .company__list-item-flex {
    display: block;
    padding: 24px 0;
    border-bottom: 1px solid rgba(197, 198, 204, 0.2);
  }
  .company__list-item-flex:first-child {
    display: block;
    padding: 0 0 24px;
  }
  .company__list-item-flex:last-child {
    display: block;
    padding: 24px 0 0;
    border-bottom: none;
  }
}

/*============================================================
  works
  ============================================================ */

.works__ {
  background-color: #F7F7F7;
}

.works__wrap {
  width: min(1440px,100%);
  margin: auto;
}

.works__headline-wrap {
  padding: 100px 100px;
}

.works__headline {
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  margin-bottom: 33px;
  color: #091423;
}

.works__subtitle {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.works__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 5px 10px 0 0;
}

.works__grid {
  width: min(1440px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto;
  padding: 0 100px 5px;
  gap: 55px 32px;
  box-sizing: border-box;
}

.works__grid-item {
  margin: 0 auto;
  max-width: 392px;
}

.works__grid-item-image {
  width: 100%;
  max-width: 392px;
  margin: 0 auto;
}

.works__grid-item-title {
  display: flex;
  margin: 24px 0 0;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  color: #0A2540;
}
.works__grid-item-title::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 4px 8px 0 0;
}

.works__grid-item-subtitle {
  margin: 12px 0 0;
  font-size: 20px;
  color: #091423;
  font-weight: bold;
}

@media screen and (max-width:1200px) {
  .works__grid {
    width: min(1440px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    padding: 0 100px 85px;
    gap: 55px 32px;
    box-sizing: border-box;
  }

}
@media screen and (max-width:768px) {
  .works__headline-wrap {
    padding: 33px 0;
    width: 100%;
    padding-left: 8px;
    box-sizing: border-box;
  }

  .works__headline {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    color: #091423;
  }

  .works__subtitle {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #091423;
  }
  .works__subtitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFCC00;
    margin: 2px 10px 0 10px;
  }

  .works__grid {
    width: min(1440px, 100%);
    display: block;
    grid-template-columns: none;
    margin: auto;
    padding: 0 8px 85px;
    gap: 55px 32px;
    box-sizing: border-box;
  }


  .works__grid-item {
    margin: 0 auto 32px;
    max-width: 392px;
  }

  .works__grid-item-title {
    display: flex;
    margin: 8px 0 0;
    font-size: 12px;
    line-height: 1.3;
    color: #0A2540;
  }
  
  .works__grid-item-subtitle {
    margin: 6px 0 0;
    color: #091423;
  }

}

/*============================================================
  our strengths
  ============================================================ */

.our-strengths__ {
  background-color: #F7F7F7;
}

.our-strengths__wrap {
  width: min(1440px,100%);
  margin: auto;
}

.our-strengths__headline-wrap {
  padding: 100px 100px;
}

.our-strengths__headline {
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  margin-bottom: 33px;
  color: #091423;
}

.our-strengths__subtitle {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.our-strengths__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 5px 10px 0 0;
}

.our-strengths__grid {
  width: min(1440px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  padding: 0 100px 20px;
  gap: 55px 32px;
  box-sizing: border-box;
}

.our-strengths__grid-item-title {
  display: flex;
  margin: 24px 0 0;
  font-size: 32px;
  font-weight: bold;
  color: #0A2540;
}

.our-strengths__grid-item-subtitle {
  line-height: 1.7;
  font-weight: bold;
  margin: 12px 0 0;
  color: #091423;
}

.our-strengths__grid-item {
  margin: 0 auto;
  max-width: 616px;
}

.our-strengths__grid-item-image {
  width: 100%;
  max-width: 616px;
  margin: 0 auto;
}

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

  .our-strengths__headline-wrap {
    padding: 33px 50px;
    width: 100%;
    box-sizing: border-box;
  }

  .our-strengths__grid {
    width: min(1440px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    padding: 0 50px 85px;
    gap: 55px 32px;
    box-sizing: border-box;
  }
}

@media screen and (max-width:1020px) {
  .our-strengths__grid-item-title {
    display: flex;
    margin: 24px 0 0;
    font-size: 24px;
    font-weight: bold;
    color: #0A2540;
  }

  .our-strengths__grid-item-subtitle {
    line-height: 1.7;
    font-weight: bold;
    margin: 12px 0 0;
    color: #091423;
  }
}

@media screen and (max-width:768px) {
  .our-strengths__headline-wrap {
    padding: 33px 0 33px 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .our-strengths__headline {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    color: #091423;
  }

  .our-strengths__subtitle {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #091423;
  }
  .our-strengths__subtitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFCC00;
    margin: 2px 10px 0 10px;
  }

  .our-strengths__grid {
    width: min(1440px, 100%);
    display: block;
    grid-template-columns: none;
    margin: auto;
    padding: 0 8px 85px;
    gap: 55px 32px;
    box-sizing: border-box;
  }
  .our-strengths__grid-item {
    margin: 0 auto 32px;
    max-width: 616px;
  }
  .our-strengths__grid-item-title {
    display: flex;
    margin: 8px 0 0;
    font-size: 20px;
    font-weight: bold;
    color: #0A2540;
  }
  .our-strengths__grid-item-subtitle {
    line-height: 1.7;
    font-weight: bold;
    margin: 6px 0 0;
    color: #091423;
  }
}

/*============================================================
  energy
============================================================*/

.energy__ {
  background-color: #F7F7F7;
  overflow-x: hidden;
}

.energy__wrap {
  width: min(1440px,100%);
  margin: auto;
}

.energy__headline-wrap {
  padding: 100px 100px;
  box-sizing: border-box;
}

.energy__headline {
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  margin-bottom: 33px;
  color: #091423;
}

.energy__subtitle {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.energy__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 5px 10px 0 0;
}

.energy__hero {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.energy__hero img {
  min-width: 1020px;
  width: 100%;
  flex-shrink: 0;
}

.energy__desc {
  width: min(840px,100%);
  padding: 0 clamp(12px, 6vw, 50px);
  margin: 50px auto 78px;
  font-weight: bold;
  box-sizing: border-box;
  line-height: 1.7;
}

.energy__item-wrap {
  width: min(1440px, 100%);
  margin: auto;
  padding: 0 20px 40px;
  box-sizing: border-box;
}

.energy__item {
  width: min(1036px,100%);
  display: flex;
  margin: auto auto 28px;
  background-color: rgba(8, 32, 54, 0.1);
}

.energy__item-image {
  width: 35.23%;
  padding: 82px 0;
  margin: auto;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
}

.energy__item-image img {
  width: fit-content;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: auto;
  max-width: 164px
}

.energy__item-desc-wrap {
  padding: 55.5px 64px 55.5px 47px;
  box-sizing: border-box;
  background-color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.energy__item-title {
  display: flex;
  font-size: 32px;
  font-weight: 900;
  color: #111C2B;
}

.energy__item-desc1 {
  line-height: 1.6;
  font-weight: bold;
  margin: 20px 0 0;
  color: #44474C;
}

.energy__item-desc2 {
  line-height: 1.6;
  font-weight: bold;
  margin: 28px 0 0;
  color: #44474C;
}

.energy__item-desc3 {
  line-height: 1.6;
  font-weight: bold;
  color: #44474C;
}

.energy__item--wide {
  width: min(546px,93%);
  box-sizing: border-box;
  margin: auto auto 28px;
  background-color: #FFF;
}

.energy__item-image--wide {
  width: 100%;
  padding: 46px 0 0;
  margin: auto;
}

.energy__item-image--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: auto;
  max-width: 430px;
}

.energy__item-desc-wrap--wide {
  padding: 40px;
  text-align: center;
  font-weight: bold;
}

.energy__item-desc--wide {
  color: #44474C;
}

@media screen and (max-width:1200px) {
  .energy__headline-wrap {
    padding: 33px 50px;
    width: 100%;
    box-sizing: border-box;
  }

  .energy__item-wrap {
    width: min(1440px, 100%);
    margin: auto;
    padding: 0 20px 120px;
    box-sizing: border-box;
  }

}

@media screen and (max-width:1020px) {
  .energy__item-wrap {
    width: min(1440px, 100%);
    margin: auto;
    padding: 0 50px 120px;
    gap: 55px 32px;
    box-sizing: border-box;
  }

  .energy__item {
    width: 100%;
    display: block;
    margin: auto auto 28px;
    background-color: rgba(8, 32, 54, 0.1);
  }

  .energy__item-desc-wrap {
    padding: 20px;
    box-sizing: border-box;
    background-color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .energy__item-image {
    width: fit-content;
    padding: 30px 0;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
  }

}

@media screen and (max-width:768px) {
  .energy__headline-wrap {
    padding: 33px 0 33px 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .energy__headline {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    color: #091423;
  }

  .energy__subtitle {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #091423;
  }
  .energy__subtitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFCC00;
    margin: 2px 10px 0 10px;
  }

  .energy__item-wrap {
    width: min(1440px, 100%);
    margin: auto;
    padding: 0 8px 30px;
    gap: 55px 32px;
    box-sizing: border-box;
  }

  .energy__item-image {
    width: fit-content;
    padding: 20px 0;
    margin: auto;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
  }

  .energy__item-title {
    display: flex;
    font-size: 20px;
    font-weight: 900;
    color: #111C2B;
  }

  .energy__item-desc1 {
    line-height: 1.2;
    font-weight: bold;
    margin: 16px 0 0;
    color: #44474C;
  }

  .energy__item-desc2 {
    line-height: 1.2;
    font-weight: bold;
    margin: 16px 0 0;
    color: #44474C;
  }

  .energy__item-desc3 {
    line-height: 1.2;
    font-weight: bold;
    color: #44474C;
  }

  .energy__item-desc-wrap--wide {
    padding: 20px;
    text-align: center;
    font-weight: bold;
  }

  .energy__item-image--wide {
    width: 100%;
    padding: 32px 0 0;
    margin: auto;
  }

}

/*============================================================
  servicepage
  ============================================================ */

.servicepage__ {
  background-color: #F7F7F7;
}

.servicepage__wrap {
  width: min(1440px,100%);
  margin: auto;
}

.servicepage__headline-wrap {
  padding: 100px 100px;
}

.servicepage__headline {
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  margin-bottom: 33px;
  color: #091423;
}

.servicepage__subtitle {
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.servicepage__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: 5px 10px 0 0;
}

.servicepage__grid {
  width: min(1440px, 100%);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  padding: 0 100px 20px;
  gap: 32px 32px;
  box-sizing: border-box;
}

.servicepage__grid-item {
  background-color: #FFF;
  max-width: 604px;
  margin: 0 auto;
  scroll-margin-top: 90px;
}

.servicepage__grid-item-image {
  width: 100%;
  max-width: 604px;
  margin: 0 auto;
}

.servicepage__grid-item-desc-wrap {
  padding: 40px 40px 60px;
}

.servicepage__grid-item-ditail {
  padding: 40px 40px 28px;
}

.servicepage__grid-item-title {
  display: flex;
  font-size: 32px;
  font-weight: 900;
  color: #111C2B;
}

.servicepage__grid-item-subtitle {
  line-height: 1.6;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 0;
  color: rgba(17, 28, 43, 0.5);
}

.servicepage__grid-item-desc {
  margin: 12px 0 0;
  color: #44474C;
  line-height: 1.8;
  font-weight: bold;
}

.servicepage__grid-item-ditail-desc {
  margin: 12px 0 28px;
  line-height: 1.8;
  font-weight: bold;
}

.servicepage__grid-item-detail-link {
  line-height: 1.7;
  font-weight: bold;
}

.servicepage__grid-item-detail-link:hover {
  opacity: 0.8;
}
.servicepage__grid-item-detail-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  margin: -2px 0 0 4px;
}

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

  .servicepage__headline-wrap {
    padding: 33px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .servicepage__grid {
    width: min(1440px, 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: auto;
    padding: 0 10px 85px;
    gap: 55px 15px;
    box-sizing: border-box;
  }

  .servicepage__grid-item-desc-wrap {
    padding: 20px 20px 30px;
  }
  .servicepage__grid-item-ditail {
    padding: 20px 20px 14px;
  }
}

@media screen and (max-width:1020px) {
  .servicepage__grid-item-title {
    display: flex;
    font-size: 24px;
    font-weight: bold;
    color: #0A2540;
  }

  .servicepage__grid-item-subtitle {
    line-height: 1.2;
    font-size: 12px;
    font-weight: bold;
    margin: 12px 0 0;
    color: #091423;
  }

  .servicepage__grid-item-subtitle {
    line-height: 1.4;
    font-weight: bold;
    margin: 6px 0 0;
    color: #091423;
  }

  .servicepage__grid-item-desc {
    margin: 12px 0 0;
    line-height: 1.75;
    font-weight: bold;
  }

  .servicepage__grid-item-ditail-desc {
    margin: 12px 0 28px;
    line-height: 1.75;
    font-weight: bold;
  }

}

@media screen and (max-width:768px) {
  .servicepage__headline-wrap {
    padding: 33px 0 33px 8px;
    width: 100%;
    box-sizing: border-box;
  }

  .servicepage__headline {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
    color: #091423;
  }

  .servicepage__subtitle {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    color: #091423;
  }
  .servicepage__subtitle::before {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #FFCC00;
    margin: 2px 10px 0 10px;
  }

  .servicepage__grid {
    width: min(1440px, 100%);
    display: block;
    grid-template-columns: none;
    margin: auto;
    padding: 0 8px 85px;
    gap: 55px 32px;
    box-sizing: border-box;
  }
  .servicepage__grid-item {
    background-color: #FFF;
    max-width: 604px;
    margin: 0 auto 32px;
  }
  .servicepage__grid-item-title {
    display: flex;
    margin: 8px 0 0;
    font-size: 20px;
    font-weight: bold;
    color: #0A2540;
  }

  .servicepage__grid-item-subtitle {
    line-height: 1.2;
    font-weight: bold;
    margin: 6px 0 0;
    color: #091423;
  }

  .servicepage__grid-item-desc {
    margin: 12px 0 0;
    line-height: 1.75;
    font-weight: bold;
  }

  .servicepage__grid-item-ditail-desc {
    margin: 12px 0 28px;
    line-height: 1.75;
    font-weight: bold;
  }
}

/*============================================================
  privacy policy
  ============================================================ */

.policy__ {
  background-color: #F8F9FF;
}

.policy__wrap {
  padding: 0 0 100px;
  box-sizing: border-box;
}

.policy__headline-wrap {
  padding: 100px 24px 60px;
}

.policy__headline {
  width: min(1440px , 100%);
  margin: 0 auto 33px;
  font-size: 85px;
  font-weight: bold;
  font-family: var(--font-en);
  line-height: 0.8;
  color: #091423;
}

.policy__subtitle {
  width: min(1440px , 100%);
  margin: 0 auto;
  display: flex;
  font-size: 24px;
  font-weight: bold;
  color: #091423;
}
.policy__subtitle::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #FFCC00;
  margin: auto 10px auto 0;
}

.policy__list-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 0 36px;
  box-sizing: border-box;
}

.policy__item {
  width: min(922px, 100%);
  margin: 23px auto 0;
  line-height: 1.8;
}
.policy__item:first-child {
  margin-top: 0;
}

.policy__item-title {
  margin-bottom: 23px;
  font-size: 24px;
  font-weight: bold;
  color: #000;
  line-height: 2;
}

.policy__item-desc {
  line-height: 1.8;
  color: #000;
}

.policy__text + .policy__text {
  margin-top: 12px;
}

@media screen and (max-width: 1020px) {
  .policy__headline {
    font-size: 50px;
  }
  .policy__subtitle {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .policy__headline-wrap {
    padding: 60px 8px 32px;
  }
  .policy__headline {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .policy__subtitle {
    font-size: 16px;
  }
  .policy__subtitle::before {
    margin: 2px 10px 0 10px;
  }
  .policy__list-wrap {
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
  }
  .policy__section-title {
    font-size: 16px;
  }
  .policy__text {
    font-size: 14px;
  }
}


/*******************************************************************************/


.main {
  overflow-x: hidden;
}

.hero-wrap {
  background: url("../img/hero-bg-sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  min-height: 100vh;
}

.hero__inner {
  padding: 180px 0 20px 0;
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
}

.hero__title {
  font-size: 54px;
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--color-white);
}

.hero__lead {
  font-size: 24px;
  color: var(--color-white);
  font-weight: 700;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 13.5px;
  margin: 60px 0 0 0;
}

.hero__stat {
  width: calc((100% - 27px) / 3);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #0A2540;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero__stat-label {
  font-size: 12px;
  color: #FFCC00;
  font-weight: bold;
}

.hero__stat-value {
  font-family: var(--font-en);
  font-weight: 800;
  color: #FFCC00;
  line-height: 1.5;
}

@media (min-width: 767px) {
  .hero-wrap {
    background-image: url("../img/hero-bg-pc.png");
    background-position: center;
  }
}

.section-title {
  font-family: var(--font-en);
  font-weight: 800;
  color: var(--color-white);
  font-size: 48px;
}

.section-title-ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 28px;
  margin: 18px 0 0 0;
}

.aboutus {
  background: url("../img/aboutus-bg-sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}

.aboutus__inner {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 90px 0 70px 0;
  display: grid;
  gap: 28px;
}

@media (min-width: 767px) {
  .aboutus {
    background-image: url("../img/aboutus-bg-pc.png");
    background-position: center;
  }
}

.section-desc {
  color: var(--color-white);
  margin: 25px 0 0 0;
  line-height: 1.75;
  font-weight: bold;
}

.service {
  position: relative;
  background-color: #0A2540;
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.service__inner {
  width: 92%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 96px 0 60px 0;
}

.service .section-title {
  text-align: center;
}

.service__list {
  margin: 20px 0 0 0;
}

.service__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(196,198,210,0.2);
}

.service__list li:last-child .service__item {
  border: none;
}

.service__item:hover {
  opacity: 0.8;
}

.service__item-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service__item-body span {
  font-size: 28px;
  font-family: var(--font-en);
  color: var(--color-white);
  font-weight: 700;
  opacity: 0.5;
}

.service__item-body h3{
  font-size: 22px;
  color: var(--color-white);
  font-weight: 700;
}

.service__image-wrap {
  margin: 28px 0 0 0;
}

.service__item-icon {
  width: 7px;
  color: var(--color-white);
}

.problem__inner {
  max-width: 900px;
  width: 90%;
  margin: 50px auto 0 auto;
}

.problem__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #082037;
  line-height: 1.25;
}

.problem__list {
  display: grid;
  gap: 16px;
  margin: 38px 0 0 0;
}

.problem__item {
  padding: 24px 7%;
  text-align: center;
  background: var(--color-white);
  color: #0A2540;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  border: 1px solid rgba(196,198,210,0.3);
}

.feature-banner {
  margin: 40px auto 0 auto;
  max-width: 900px;
  width: 90%;
  padding: 40px 0 65px 0;  
  border-radius: 10px;
}

.feature-banner--strengths {
  background: url("../img/our-strengths-bg-sp.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-banner--recruit {
  background: url("../img/recruit-bg-sp.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 77px 0;
  margin: 50px auto 0 auto;
}

.feature-banner__title {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 48px;
  color: var(--color-white);
  text-align: center;
  line-height: 1;
}

.feature-banner__title-ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  margin: 10px 0;
}

.feature-banner__link {
  position: relative;
  max-width: 217px;
  display: flex;
  justify-content: center;
  margin: 30px auto 0 auto;
  border-radius: 60px;
  padding: 12px 0;
  background: #0A2540;
  color: var(--color-white);
  font-weight: 700;
}

.feature-banner__link:hover {
  opacity: 0.8;
}

.feature-banner__link-icon {
  position: absolute;
  right: 30px;
  color: #FFCC00;
}

.cta {
  padding: 68px 0;
  margin: 40px 0 0 0;
  background-color: #0A2540;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta__inner {
  width: 87%;
  margin: 0 auto;
}

.cta__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 800;
  color: var(--color-white);
}

.cta__text {
  text-align: center;
  line-height: 1.75;
  color: var(--color-white);
  margin: 40px 0 0 0;
}

.cta__buttons {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 27px;
  margin: 27px 0 0 0;
}


.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 322px;
  padding: 20px;
  background: #ffd400;
  color: #1a2436;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
}

.cta__button:first-child {
  background: #0092D9;
  color: var(--color-white);
}

.cta__button:first-child .cta__button-icon {
  color: #FFCC00;
}

.cta__button-text {
  width: 83%;
  text-align: center;
  line-height: 1.5;
}

.cta__button-icon {
  text-align: center;
  width: 24px;
}

.cta__button:hover {
  opacity: 0.8;
}

@media (min-width: 767px) {
  .hero {
    width: 92%;
    max-width: 1240px;
    margin: 0 auto;
  }
  .hero__inner {
    padding: 260px 0 0 0;
    margin: 0;
  }
  
  .hero__title {
    font-size: 70px;
  }

  .hero__lead {
    font-size: 28px;
    margin: 35px 0 0 0;
  }

  .hero__stats {
    gap: 24px;
  }

  .hero__stat {
    width: calc((100% - 96px) / 5);
  }

  .hero__stat-label {
    font-size: 16px;
    color: #FFCC00;
    font-weight: bold;
  }

  .hero__stat-value {
    margin-top: 5px;
    font-size: 20px;  
  }

  .hero__stat-unit {
    font-size: 12px;
    margin: 0 0 0 5px;
  }

  .section-title {
    font-size: 64px;
  }

  .section-title-ja{
    margin: 18px 0 0 0;
  }

  .aboutus__inner {
    padding: 80px 0;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 96px;
  }

  .service__inner{
    padding: 128px 0;
  }

  .service__group {
    align-items: center;
  }

  .service__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin: 80px 0 0 0;
  }

.service__item-body span {
  font-size: 31px;
}

.service__item-body h3{
  font-size: 24px;
}


  .problem__inner {
    margin: 128px auto 0 auto;
  }

  .problem__list {
    grid-template-columns: 1fr 1fr;
    margin: 64px 0 0 0;
  }

  .feature-banner {
    margin: 64px auto 0 auto;
  }

  .feature-banner--strengths {
    padding: 77px 0;
  }

  .feature-banner--recruit {
    margin: 175px auto 0 auto;
  }

  .feature-banner__title {
    font-size: 64px;
  }

  .feature-banner__title-ja {
    font-size: 28px;
  }

  .feature-banner__link {
    font-size: 18px;
  }

  .cta {
    padding: 100px 0;
    background-color: #0A2540;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 80px 0 0 0;
  }

  .cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.page-title-wrap {
  width: 92%;
  max-width: 1240px;
  margin: 0 auto;
}

.page-title {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 85px;
  line-height: 1;
  color: #091423;
  padding: 100px 0 0;
}

.page-title-ja {
  display: block;
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 0 0;
}

.page-title-ja::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-color: #FFCC00;
  border-radius: 50%;
  margin: 0 10px 0 10px;
}

.form__wrap {
  width: 92%;
  max-width: 1080px;
  margin: 100px auto 0 auto;
  background-color: #fff;
  padding: 50px 9%;
  box-sizing: border-box;
  border-radius: 4px;
}

.contact-form__group {
  margin: 0 0 48px 0;
}

.contact-form__legend,
.contact-form__label {
  color: #7a7a7a;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.contact-form__required {
  font-size: 14px;
  color: #ff0000;
  margin: 0 0 0 7px;
}

.contact-form__choice {
  display: inline-block;
  color: #1C1B1B;
  font-weight: 700;
  margin: 0 32px 0 0;
}


.contact-form__choice:last-child {
  margin: 0;
}

.contact-form__divider {
  border: none;
  border-top: 1px solid rgba(196, 198, 210, 0.2);
  margin: 0 0 48px 0;
}

.contact-form__field {
  margin: 0 0 29px 0;
}

.contact-form__input {
  display: block;
  width: 100%;
  background-color: #F6F3F2;
  border-radius: 4px;
  border: none;
  padding: 13px 0 13px 16px;
  color: #6B7280;
  font-size: 14px;
  font-weight: 700;
  margin: 8px 0 0 0;
}

.contact-form__input::placeholder {
  font-weight: 700;
  color: #6B7280;
  opacity: 0.3;
}

.contact-form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form__textarea {
  display: block;
  width: 100%;
  background-color: #F6F3F2;
  border-radius: 4px;
  border: none;
  padding: 13px 0 13px 16px;
  color: #1C1B1B;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin: 8px 0 0 0;
}

.contact-form__textarea::placeholder {
  font-weight: 700;
  color: #6B7280;
  opacity: 0.3;
}

.contact-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1C1B1B;
  font-weight: 700;
}

.contact-form__privacy-link {
  color: #1C1B1B;
  font-weight: 700;
}

.contact-form__footer {
  margin: 27px 0 0 0;
}

.contact-form__submit {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 217px;
  margin: 0 auto;
  background-color: #0A2540;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  border: none;
  padding: 20px;
  border-radius: 60px;
  font-weight: 700;
}

.contact-form__submit:hover {
  opacity: 0.8;
}

.contact-form__submit-text {
  width: 84%;
}

.contact-form__submit-image {
  width: 8px;
  padding: 0 8px 0 0;
  color: #FFCC00;
}

.contact-form__submit-image svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .form__wrap {
    margin: 50px auto 0 auto;
  }
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-title {
    font-size: 48px;
  }

  .page-title-ja {
    font-size: 18px;
  }
}

.download {
  width: 92%;
  max-width: 1152px;
  margin: 100px auto 0 auto;
}

.download__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 50px;
}

.download__item {
  padding: 42px 9% 32px 9%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.download__item-image {
  width: 60%;
  max-width: 143px;
  margin: 0 auto;
}

.download__item-title {
  font-size: 20px;
  color: #0A2540;
  line-height: 1.4;
  font-weight: 700;
  margin: 44px 0 0 0;
}

.download__item-desc {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: #444650;
  margin: 15px 0 16px 0;
}

.download__item-link {
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding: 12px 0;
  background: #0A2540;
  margin: 16px 0 0 0;
  margin-top: auto;
}

.download__item-link:hover {
  opacity: 0.8;
}

.download__item-link::after {
  content: "";
  position: absolute;
  right: 20px;
  background: url("../img/download-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 24px;
  height: 24px;
}

@media (max-width: 1200px) {
  .download__list {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 768px) {
  .download__list {
    grid-template-columns: 1fr;
  }
}

.download-form__wrap {
  width: 92%;
  max-width: 900px;
  margin: 100px auto 0 auto;
  background-color: #fff;
  padding: 50px 5%;
  box-sizing: border-box;
  border-radius: 4px;
}

.download-form {
  width: 92%;
}

.contact-form__note {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  margin: 16px 0 0 0;
  font-weight: 700;
  color: rgba(68, 70, 80, 0.6);
}

.download-form__wrap .contact-form__label {
  font-size: 12px;
  color: #444650;
}

.download-form__wrap .contact-form__required {
  color: #BA1A1A;
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .download-form__wrap {
    margin: 50px auto 0 auto;
  }
}
/* ============================================================
   Contact Form 7 由来クラスの無効化
   CF7が自動生成するラッパー/状態クラスをレイアウトに影響させない。
   見た目は contact-form__* など既存デザインクラスで制御する。
   ============================================================ */

/* CF7が挿入するラッパー要素を“透明化”してボックスツリーから除外 */
.wpcf7-form-control-wrap,
.wpcf7-radio,
.wpcf7-checkbox,
.wpcf7-acceptance {
  display: contents;
}

/* ラジオ/チェックの各選択肢を横並びの既存デザインに合わせる（.contact-form__choice 相当） */
.wpcf7-list-item {
  display: inline-block;
  margin: 0 32px 0 0;
  color: #1C1B1B;
  font-weight: 700;
}
.wpcf7-list-item:last-child {
  margin: 0;
}

/* CF7独自UI（送信中スピナー等）を非表示 */
.wpcf7-spinner {
  display: none;
}

/* 入力欄のCF7状態クラス（バリデーション）による枠線装飾を無効化 */
.wpcf7-form-control.wpcf7-not-valid {
  border: none;
}

/* 送信ボタン：CF7では<input>になるため flex を解除して中央寄せ */
/* CF7の[submit]は<input>になりSVGを子に持てないため、矢印は背景画像で付与 */
input.contact-form__submit {
  display: block;
  text-align: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 12'%3E%3Cpath d='M4.6 6L0 1.4L1.4 0L7.4 6L1.4 12L0 10.6L4.6 6Z' fill='%23FFCC00'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px top calc(50% - 1px);
  background-size: 8px 12px;
}
