@charset "UTF-8";
:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", sans-serif;
  --color-primary: #009845;
  --color-bg: #efeeea;
}

html:focus-within {
  scroll-behavior: auto;
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
}
body {
  position: relative;
  font-family: var(--font-noto);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*PC，SP出し分け*/
.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
/*改行のPC，SP出し分け*/
.br-is-pc {
  display: block;
}

.br-is-sp {
  display: none;
}

@media (max-width: 767px) {
  .br-is-pc {
    display: none;
  }
  .br-is-sp {
    display: block;
  }
}
@media only screen and (max-width: 1320px) {
  svg {
    width: 100%;
  }
}
/*----------------------------------------------
 section
----------------------------------------------*/
.section {
  width: 100%;
  overflow: hidden;
  font-family: var(--font-serif);
}

.section__inner.section__inner--full {
  width: 100%;
  max-width: none;
}

/*----------------------------------------------
 header
----------------------------------------------*/
.header {
  background: #fff;
}

.header .header__inner {
  display: flex;
  align-items: center;
  max-width: 1280px;
  min-height: 145px;
  margin: 0 auto;
  padding: 0 50px;
}

@media (max-width: 767px) {
  .header .header__inner {
    padding: 0 20px;
    min-height: 128px;
  }
}
.header .header__logoGCA {
  margin-bottom: 18px;
  margin-left: 10px;
  display: flex;
  gap: 10px;
}
.header .header__logoGCA a {
  width: 77px;
  height: 84px;
}
.header .header__logoGCA .header__logoJPX {
  width: 70px;
  height: 90px;
}
.header .header__logoGCA .header__fukuoka {
  width: 69px;
  height: 89px;
}

@media (max-width: 767px) {
  .header .header__logoGCA {
    margin: 0;
    order: 1;
  }
}
.header .header__navWrap {
  margin-left: auto;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .header .header__navWrap {
    order: 3;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .header .header__nav {
    display: none;
  }
}
.header .header__navList {
  display: flex;
  gap: 10px 38px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header .header__navListLink {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #292929;
}

@media (hover: hover) {
  .header .header__navListLink:hover {
    color: var(--color-primary);
  }
}
.header .header__contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 14px;
}

@media (max-width: 767px) {
  .header .header__contact {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin-top: 0;
  }
}
.header .header__telWrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.header .header__telImage + .header__tel {
  margin-left: 12px;
}

@media (max-width: 767px) {
  .header .header__telImage + .header__tel {
    margin-left: 0;
  }
}
.header .header__tel {
  color: var(--color-primary);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .header .header__tel {
    font-size: 15px;
  }
}
.header .header__BtnContainer {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
}

.header .header__contactBtn {
  width: 100%;
}

.header .header__langBtn {
  width: 100%;
}

@media (max-width: 767px) {
  .header .header__langBtn {
    display: none;
  }
}
/*----------------------------------------------
 mainVisual
----------------------------------------------*/
.section--mv {
  position: relative;
}

.section--mv .mainVisual {
  width: 100%;
  height: auto;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  animation-name: mvAni;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes mvAni {
  0% {
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
/*----------------------------------------------
 intro
----------------------------------------------*/
.section--intro {
  background-color: var(--color-bg);
  padding: 0 20px;
}

@media (max-width: 767px) {
  .section--intro {
    padding: 0 12px 0 20px;
  }
}
.section--intro .introText__wrap {
  max-width: 1212px;
  padding: 0 20px;
  margin: 48px auto 0;
  background-image: url(../images/sec-intro-bg.jpg);
}

@media (max-width: 767px) {
  .section--intro .introText__wrap {
    margin: 32px auto 0;
  }
}
.section--intro .introText__wrap p {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 2.75;
  letter-spacing: 0.04em;
  padding-top: 61px;
  padding-bottom: 62px;
}

@media (max-width: 767px) {
  .section--intro .introText__wrap p {
    font-size: 15px;
    line-height: 2.8;
    padding-top: 40px;
    padding-bottom: 37px;
  }
}
/*----------------------------------------------
 共通
----------------------------------------------*/
@media (max-width: 767px) {
  .section .section__title:before {
    width: 10px;
    height: calc(100% - 24px);
  }
}
@media (max-width: 767px) {
  .section .section__titleLetterSpacingSmall {
    letter-spacing: 0.06em;
  }
}
.section__title {
  opacity: 0;
}

.section .section__subTitle {
  font-size: 34px;
  font-family: var(--font-serif);
  font-weight: 600;
  color: #222222;
  letter-spacing: 0;
  line-height: 1;
}

@media (max-width: 767px) {
  .section .section__subTitle {
    font-size: 15px;
    line-height: 1.2;
  }
}
/*----------------------------------------------
 tvcmAndMaking
----------------------------------------------*/
/*----------------------------------------------
 tvcmAndMaking
----------------------------------------------*/
.section.section--tvcmAndMaking {
  background: var(--color-bg);
  padding-top: 112px;
  padding-bottom: 40px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section.section--tvcmAndMaking {
    padding-top: 79px;
    padding-bottom: 22px;
  }
}
.section.section--tvcmAndMaking .section__inner {
  max-width: 1225px;
  width: 100%;
  background: #E9E8E4;
  margin-right: 0;
  margin-left: auto;
}

@media only screen and (min-width: 1800px) {
  .section.section--tvcmAndMaking .section__inner {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .section.section--tvcmAndMaking .section__inner {
    background: transparent;
  }
}
.section.section--tvcmAndMaking .section__inner .tvcmAndMaking__bg {
  background-image: url(../images/sec-tvcmAndMaking-bg.jpg);
  margin-right: 13px;
  padding-top: 211px;
  padding-bottom: 71px;
}

@media only screen and (max-width: 767px) {
  .section.section--tvcmAndMaking .section__inner .tvcmAndMaking__bg {
    margin-right: 0;
    margin-left: 49px;
    padding-top: 118px;
    padding-bottom: 75px;
  }
}
.section.section--tvcmAndMaking .section__inner .tvcmAndMaking__titleWrap {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 887px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section.section--tvcmAndMaking .section__inner .tvcmAndMaking__titleWrap {
    max-width: 355px;
    top: 52px;
  }
}
.section.section--tvcmAndMaking .section__inner .tvcmAndMaking__titleWrap .section__subTitle {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  color: #222222;
  margin-top: -3px;
  padding-top: 0 !important;
}

@media only screen and (max-width: 767px) {
  .section.section--tvcmAndMaking .section__inner .tvcmAndMaking__titleWrap .section__subTitle {
    font-size: 15px;
    margin-top: 4px;
  }
}
.tvcmAndMaking {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 124px 42px;
  margin-left: -96px;
}

@media only screen and (min-width: 1800px) {
  .tvcmAndMaking {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1320px) {
  .tvcmAndMaking {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .tvcmAndMaking {
    grid-template-columns: 1fr;
    grid-gap: 50px 0;
  }
}
.tvcmAndMaking__itemWrap {
  max-width: 580px;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: 37px;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking__itemWrap {
    max-width: 96.778%;
    padding-top: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .tvcmAndMaking__itemWrap:nth-child(odd) {
    margin-left: -11.734%;
  }
}
.tvcmAndMaking__itemWrap:nth-child(even) {
  margin-top: 21px;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking__itemWrap:nth-child(even) {
    margin-top: 0;
    margin-left: 4.696%;
  }
}
.tvcmAndMaking .tvcmAndMaking__itemTitle {
  font-size: 19px;
  font-weight: 500;
  text-align: right;
  color: #101012;
  letter-spacing: 0;
  padding-right: 41px;
}

@media only screen and (max-width: 1130px) {
  .tvcmAndMaking .tvcmAndMaking__itemTitle {
    font-size: 16px;
  }
}
@media only screen and (max-width: 980px) {
  .tvcmAndMaking .tvcmAndMaking__itemTitle {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .tvcmAndMaking .tvcmAndMaking__itemTitle {
    font-size: 9px;
    padding-right: 32px;
  }
}
.tvcmAndMaking .tvcmAndMaking__videoLinkWrap {
  padding-right: 41px;
  margin-top: 4px;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking .tvcmAndMaking__videoLinkWrap {
    padding-right: 23px;
  }
}
.tvcmAndMaking .tvcmAndMaking__videoLinkWrap::before {
  position: absolute;
  content: "";
  background-color: rgba(239, 238, 234, 0.7);
  width: 90.5%;
  height: 98%;
  top: -33px;
  right: 0;
  z-index: -1;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking .tvcmAndMaking__videoLinkWrap::before {
    width: 86.97%;
    height: 97.72%;
    top: -20px;
  }
}
.tvcmAndMaking .tvcmAndMaking__videoLink {
  position: relative;
  display: block;
  cursor: pointer;
}

.tvcmAndMaking .tvcmAndMaking__videoLink:before {
  content: "";
  display: block;
  width: 104px;
  height: 104px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: width 0.3s, height 0.3s;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking .tvcmAndMaking__videoLink:before {
    width: 75px;
    height: 75px;
  }
}
.tvcmAndMaking .tvcmAndMaking__videoLink:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-right: 0 solid transparent;
  border-left: 34px solid #ffffff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  right: 0;
  margin: auto;
  opacity: 0.8;
}

@media only screen and (max-width: 767px) {
  .tvcmAndMaking .tvcmAndMaking__videoLink:after {
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 23px solid #ffffff;
  }
}
.tvcmAndMaking .tvcmAndMaking__videoLink img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (hover: hover) {
  .tvcmAndMaking .tvcmAndMaking__videoLink:hover:before {
    width: 114px;
    height: 114px;
    background-color: #ffffff;
  }
  .tvcmAndMaking .tvcmAndMaking__videoLink:hover:after {
    border-top: 23px solid transparent;
    border-bottom: 23px solid transparent;
    border-right: 0 solid transparent;
    border-left: 40px solid #5C5C5C;
  }
}
.remodal-wrapper {
  background: rgba(45, 45, 45, 0.95);
}

@media only screen and (max-width: 767px) {
  .remodal-wrapper {
    padding: 9px;
  }
}
.remodal-wrapper .remodal {
  position: relative;
  padding: 0;
  max-width: 806px;
  width: 100%;
  height: 466px;
}

@media only screen and (max-width: 767px) {
  .remodal-wrapper .remodal {
    max-width: 373px;
    height: 216px;
  }
}
.remodal-wrapper .remodal iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.remodal-wrapper .remodal-cancel {
  position: absolute;
  bottom: -99px;
  left: 50%;
  transform: translateX(-50%);
  background: #919191;
  border-radius: 50%;
  min-width: 65px;
  min-height: 65px;
}

.remodal-wrapper .remodal-cancel::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 24px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.remodal-wrapper .remodal-cancel::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: 24px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

/*----------------------------------------------
 realEstateInvestment
----------------------------------------------*/
.section.section--realEstateInvestment {
  position: relative;
  padding: 222px 32px 0px;
  color: #222222;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment {
    padding: 99px 21px 0;
  }
}
.section.section--realEstateInvestment .section__inner {
  background-image: url(../images/sec-realEstateInvestment-bg.jpg);
  padding: 0 20px;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .section__inner {
    padding: 0 18px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__titleWrap {
  position: absolute;
  max-width: 1251px;
  width: 100%;
  padding: 0 20px;
  top: 133px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__titleWrap {
    max-width: 282px;
    top: 70px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__lead {
  padding-top: 219px;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead {
    padding-top: 151px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__lead .bubble {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  max-width: 636px;
  width: 100%;
  height: 136px;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead .bubble {
    font-size: 18px;
    max-width: 256px;
    height: 55px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__lead .bubble::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 39px solid transparent;
  border-bottom: 39px solid transparent;
  border-right: 33px solid #fff;
  border-left: 0;
  bottom: -39px;
  right: 50%;
  transform: translateX(-50%);
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead .bubble::before {
    border-top: 15.7px solid transparent;
    border-bottom: 15.7px solid transparent;
    border-right: 13px solid #fff;
    bottom: -15.7px;
    right: 47%;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__lead .bubble .plusMark {
  font-size: 64px;
  padding-right: 13px;
  margin-top: -7px;
  font-weight: 500;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead .bubble .plusMark {
    font-size: 24px;
    padding-right: 7px;
    margin-top: 0;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__lead .bubble .ls-small {
  letter-spacing: -0.3em;
}

.section.section--realEstateInvestment .realEstateInvestment__lead .realEstateInvestment__leadSmall {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding-top: 55px;
}

@media only screen and (max-width: 931px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead .realEstateInvestment__leadSmall .br-is-sp {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__lead .realEstateInvestment__leadSmall {
    font-size: 18px;
    line-height: 1.88888889;
    padding-top: 20px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__imageContainer {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 48px;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__imageContainer {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__imageContainer .is-sp {
  display: contents;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__imageContainer .is-sp {
    display: block;
  }
  .section.section--realEstateInvestment .realEstateInvestment__imageContainer .is-sp:last-child {
    display: flex;
    gap: 9px;
  }
}
@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__imageContainer .realEstateInvestment__image {
    width: 152px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__textWrap {
  font-size: 26px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 915px;
  width: 100%;
  margin: 71px auto 0;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__textWrap {
    font-size: 17px;
    gap: 8px;
    margin-top: 38px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__text {
  background-color: #fff;
  padding: 14px 20px 14px 60px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__text {
    padding: 15px 14px 15px 26px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__text::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  background-color: #959595;
  border-radius: 50%;
  left: 29px;
  top: 50%;
  transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__text::before {
    width: 9px;
    height: 9px;
    left: 11px;
    top: 24px;
    transform: none;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__textOther {
  padding-left: 60px;
}

@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__textWrap .realEstateInvestment__textOther {
    padding-top: 9px;
    padding-left: 26px;
  }
}
.section.section--realEstateInvestment .realEstateInvestment__linkContainer {
  display: flex;
  justify-content: center;
  gap: 25px;
  padding-bottom: 170px;
  margin-top: 105px;
}

@media only screen and (max-width: 1074px) {
  .section.section--realEstateInvestment .realEstateInvestment__linkContainer {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .section.section--realEstateInvestment .realEstateInvestment__linkContainer {
    padding-bottom: 80px;
    margin-top: 64px;
  }
  .section.section--realEstateInvestment .realEstateInvestment__linkContainer .linkBtn {
    justify-content: center;
    padding: 10px 0;
  }
}
/*----------------------------------------------
 goodComAsset
----------------------------------------------*/
.section--goodComAsset {
  position: relative;
  margin-top: 96px;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset {
    margin-top: 80px;
  }
}
.section--goodComAsset .goodComAsset__titleWrap {
  max-width: 924px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__titleWrap {
    max-width: 400px;
    padding: 0 14px;
  }
}
.section--goodComAsset .goodComAsset__titleWrap .section__subTitle {
  text-align: center;
  padding-top: 20px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__titleWrap .section__subTitle {
    padding-top: 5px;
  }
}
.section--goodComAsset .goodComAsset__bg {
  margin-top: 85px;
  background-image: url(../images/sec-goodComAsset-bg.jpg);
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1450px) {
  .section--goodComAsset .goodComAsset__bg {
    background-size: 91% auto;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__bg {
    background-image: url(../images/sec-goodComAsset-bg-sp.jpg);
    background-size: cover;
    margin-top: 38px;
    margin-right: 14px;
  }
}
.section--goodComAsset .goodComAsset {
  color: #fff;
}

.section--goodComAsset .goodComAsset__contWrap01 {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  padding-left: 20px;
  position: relative;
}

@media only screen and (min-width: 1700px) {
  .section--goodComAsset .goodComAsset__contWrap01 {
    padding-right: 10%;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap01 {
    flex-direction: column;
    padding: 0 33px 0 27px;
  }
}
.section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap {
  margin-top: 140px;
  text-align: center;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 2.22222222;
  background-image: url(../images/sec-goodComAsset-flame01.png);
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 544px;
  width: 100%;
}

@media only screen and (max-width: 893px) {
  .section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap {
    background-image: url(../images/sec-goodComAsset-flame01-sp.png);
    margin-top: 53px;
    font-size: 16px;
    line-height: 2.5;
    max-width: 316px;
    margin-inline: auto;
  }
}
.section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap p {
  padding: 53px 71px 278px 65px;
}

@media only screen and (max-width: 893px) {
  .section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap p {
    padding: 43px 51px 218px 45px;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contTextWrap p {
    padding: 41px 28px 351px 26px;
  }
}
.section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contImgWrap {
  margin-top: -5px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap01 .goodComAsset__contImgWrap {
    position: absolute;
    max-width: 164px;
    width: 100%;
    right: 0;
    bottom: 10px;
    margin-top: 0;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 {
  max-width: 1091px;
  width: 100%;
  padding-right: 13px;
  padding-left: 20px;
  padding-bottom: 86px;
  margin-right: 0;
  margin-left: auto;
  margin-top: -22px;
}

@media only screen and (min-width: 1700px) {
  .section--goodComAsset .goodComAsset__contWrap02 {
    margin-right: 10%;
  }
}
@media only screen and (max-width: 1070px) {
  .section--goodComAsset .goodComAsset__contWrap02 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 {
    margin-top: 13px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 28px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 .goodComAsset__contText01 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 543px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 .goodComAsset__contText01 {
    font-size: 20px;
    line-height: 1.65;
    max-width: 371px;
    margin: 0 auto;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div {
  display: flex;
  gap: 31px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div {
    flex-direction: column;
    gap: 30px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea {
  max-width: 543px;
  width: 100%;
  margin-top: 97px;
  background-image: url(../images/sec-goodComAsset-flame02.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea {
    max-width: 312px;
    margin: 56px auto 0;
    background-image: url(../images/sec-goodComAsset-flame02-sp.png);
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contTextIntro {
  position: absolute;
  background-color: #fff;
  color: #169A46;
  text-align: center;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.40740741;
  padding: 15px 54px;
  width: 378px;
  top: -78.5px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 3px 6px 6px 0px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contTextIntro {
    font-size: 15px;
    line-height: 1.46666667;
    letter-spacing: 0.08em;
    padding: 5px 0;
    width: 202px;
    top: -38px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 {
  font-size: 57px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1;
  padding: 101px 46px 54px 83px;
  min-width: 543px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 {
    font-size: 30px;
    padding-top: 35px;
    padding-right: 28px;
    padding-bottom: 0;
    padding-left: 25px;
    min-width: 312px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt01 {
  margin-left: -26px;
  padding-bottom: 2px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt01 {
    margin-left: -18px;
    padding-bottom: 4px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt02 {
  font-size: 75px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt02 {
    font-size: 39px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt03 {
  font-size: 178px;
  letter-spacing: -0.05em;
  margin-left: -2px;
  padding-right: 12px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt03 {
    font-size: 97px;
    margin-left: 2px;
    padding-right: 10px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt04 {
  font-size: 117px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt04 {
    font-size: 63px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt05 {
  font-size: 21px;
  margin-left: -3px;
  padding-top: 63px;
  vertical-align: top;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt05 {
    font-size: 9px;
    margin-left: 2px;
    padding-top: 34px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt06 {
  display: inline-block;
  padding-top: 23px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02 .txt06 {
    padding-top: 12px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .annotation {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: right;
  padding: 0 21px 17px;
  margin-inline: 21px;
  background-image: url(../images/sec-goodComAsset-border02.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .annotation {
    font-size: 10px;
    padding: 19px 22px 11px;
    margin-inline: 9px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02End {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 18px 0 20px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contTextArea .goodComAsset__contText02End {
    font-size: 14px;
    padding: 7px 0 13px;
  }
}
.section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contImg02Wrap {
  max-width: 472px;
  width: 100%;
  margin-top: 97px;
}

@media only screen and (max-width: 767px) {
  .section--goodComAsset .goodComAsset__contWrap02 > div .goodComAsset__contImg02Wrap {
    margin: 0 auto;
  }
}
/*----------------------------------------------
 goodPoint
----------------------------------------------*/
.section--goodPoint {
  position: relative;
  background-color: var(--color-bg);
  padding-top: 690px;
  margin-top: -534px;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint {
    padding-top: 118px;
    margin-top: -45px;
  }
}
.section--goodPoint .goodPoint__titleWrap {
  max-width: 652px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__titleWrap {
    max-width: 286px;
    padding-bottom: 28px;
  }
}
.section--goodPoint .goodPoint {
  background-image: url(../images/sec-goodPoint-bg.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  margin-top: -9px;
}

@media only screen and (min-width: 1450px) {
  .section--goodPoint .goodPoint {
    background-size: 91% 100%;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint {
    background-image: url(../images/sec-goodPoint-bg-sp.jpg);
  }
}
.section--goodPoint .goodPoint__inner {
  max-width: 1266px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px 43px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner {
    padding-bottom: 74px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #fff;
  padding-top: 177px;
  margin-bottom: 188px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 {
    max-width: 350px;
    width: 100%;
    flex-direction: column;
    padding-top: 118px;
    margin-bottom: 60px;
    margin-inline: auto;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemImg {
  max-width: 362px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemImg {
    order: 1;
    max-width: 124px;
    position: absolute;
    bottom: 0;
    left: -17px;
    z-index: 10;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap {
  max-width: 552px;
  width: 100%;
  padding-top: 33px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap {
    order: 0;
    padding-top: 0;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle {
  display: flex;
  gap: 24px;
  padding-bottom: 21px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle {
    justify-content: center;
    align-items: end;
    gap: 11px;
    padding-bottom: 21px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22222222;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle h3 {
    font-size: 24px;
    line-height: 1.25;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle > div {
  max-width: 97px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemTextTitle > div {
    max-width: 50px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemMap {
  padding-bottom: 19px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap .goodPoint__itemMap {
    max-width: 352px;
    padding-bottom: 24px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap > p {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.81818182;
}

@media only screen and (max-width: 860px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap > p br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap01 .goodPoint__itemTextWrap > p {
    font-size: 15px;
    line-height: 1.53333333;
    padding-left: 34.28571429%;
    padding-bottom: 36px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 {
  display: flex;
  justify-content: center;
  gap: 27px;
  color: #fff;
  padding-left: 6px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 {
    flex-direction: column;
    padding-left: 0;
    gap: 0;
    max-width: 350px;
    width: 100%;
    margin-inline: auto;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemImg {
  max-width: 408px;
  width: 100%;
  padding-top: 134px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemImg {
    max-width: 124px;
    position: absolute;
    bottom: 0;
    right: -6px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap {
  max-width: 552px;
  width: 100%;
}

.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle {
  display: flex;
  gap: 12px;
  padding-bottom: 18px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle {
    justify-content: center;
    align-items: end;
    gap: 9px;
    padding-bottom: 14px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.22222222;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle h3 {
    font-size: 24px;
    line-height: 1.25;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle > div {
  max-width: 116px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemTextTitle > div {
    max-width: 58px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemMap {
  padding-bottom: 17px;
}

@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap .goodPoint__itemMap {
    padding-bottom: 18px;
  }
}
.section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap > p {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.81818182;
}

@media only screen and (max-width: 998px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap > p br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap > p {
    font-size: 15px;
    line-height: 1.53333333;
    padding-right: 37%;
    padding-bottom: 18px;
  }
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap > p br {
    display: block;
  }
  .section--goodPoint .goodPoint__inner .goodPoint__itemWrap02 .goodPoint__itemTextWrap > p br:last-child {
    display: none;
  }
}
/*----------------------------------------------
 section--link
----------------------------------------------*/
.section--link {
  padding-top: 58px;
  padding-bottom: 70px;
  background-color: var(--color-bg);
}

.section--link .section__inner {
  max-width: 1055px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.section--link .section__inner .link__linkContainer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 33px 55px;
}

@media only screen and (max-width: 767px) {
  .section--link .section__inner .link__linkContainer {
    flex-direction: column;
    gap: 18px;
  }
}
.section--link .section__inner .link__linkContainer a {
  max-width: 480px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .section--link .section__inner .link__linkContainer a {
    font-size: 13px;
  }
}
/*----------------------------------------------
 footer
----------------------------------------------*/
.footer {
  overflow-x: hidden;
}

.footer .footer__head {
  background: #3A3A3A;
  color: #ffffff;
  min-height: 373px;
  align-items: center;
  padding: 45px 82px 58px;
}

@media (max-width: 767px) {
  .footer .footer__head {
    padding: 36px 28px 36px;
    display: flex;
    justify-content: center;
  }
}
.footer .footer__navContainer {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 83px;
}

@media (max-width: 767px) {
  .footer .footer__navContainer {
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    margin: 0;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .footer .footer__nav + .footer__nav {
    margin-top: 15px;
  }
}
.footer__nav {
  max-width: 181px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .footer__nav {
    max-width: 67%;
    text-align: left;
  }
}
.footer .footer__navList + .footer__otherLinkList {
  margin-top: 15px;
}

@media (max-width: 767px) {
  .footer .footer__navList + .footer__otherLinkList {
    margin-top: 22px;
  }
}
.footer .footer__navItem + .footer__navItem {
  margin-top: 11px;
}

@media (max-width: 767px) {
  .footer .footer__navItem + .footer__navItem {
    margin-top: 18px;
  }
}
.footer .footer__navChildList {
  margin-top: 9px;
  margin-left: -1em;
  padding-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .footer .footer__navChildList {
    margin-left: 0;
    margin-top: 8px;
    padding-bottom: 0;
  }
}
.footer .footer__navItemLink {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2.4;
  margin-left: -1em;
  border-top: 1px solid #fff;
  padding-top: 5px;
  display: block;
  position: relative;
}

.footer .footer__navItemLink::before {
  position: absolute;
  content: "";
  background-image: url(../images/Icon_arrow.svg);
  width: 12px;
  height: 8px;
  right: 0;
  top: 20px;
  transition: right 0.3s;
}

@media (hover: hover) {
  .footer .footer__navItemLink:hover::before {
    right: -5px;
  }
}
@media (hover: hover) {
  .footer .footer__navItemLink:hover {
    color: #ADADAD;
  }
}
@media (max-width: 767px) {
  .footer .footer__navItemLink {
    font-size: 17px;
    margin: 0;
  }
}
.footer .footer__navChildListItemLink {
  font-size: 15px;
  font-weight: 0;
  letter-spacing: 0;
  line-height: 1.86666667;
  color: #DEDEDE;
  padding-bottom: 3px;
}

@media (hover: hover) {
  .footer .footer__navChildListItemLink:hover {
    color: #ADADAD;
  }
}
@media (max-width: 767px) {
  .footer .footer__navChildListItemLink {
    font-size: 17px;
    line-height: 1.875;
    font-weight: 300;
    padding-bottom: 13px;
    display: inline-block;
  }
}
.footer .footer__otherLinkListItem + .footer__otherLinkListItem {
  margin-top: 11px;
}

@media (max-width: 767px) {
  .footer .footer__otherLinkListItem + .footer__otherLinkListItem {
    margin-top: 20px;
  }
}
@media (hover: hover) {
  .footer .footer__otherLinkListItemLink:hover {
    color: #ADADAD;
  }
}
.footer .footer__telTitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.footer .footer__telTitle + .footer__telText {
  margin-left: 5px;
}

.footer .footer__telText {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .footer .footer__telText {
    font-size: 23px;
  }
}
.footer .footer__body {
  position: relative;
  background: #ffffff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #3A3A3A;
}

.footer .footer__pageTop {
  position: absolute;
  top: 18px;
  right: 85px;
}

@media (max-width: 767px) {
  .footer .footer__pageTop {
    top: 32px;
    right: 32px;
  }
}
.footer .footer__bodyInner {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  padding: 25px 77px 26px 100px;
  position: relative;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer .footer__bodyInner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 32px 28px 45px;
    min-height: 295px;
  }
}
.footer__bodyInner > div {
  display: flex;
  gap: 46px;
}

@media only screen and (max-width: 767px) {
  .footer__bodyInner > div {
    flex-direction: column;
    gap: 16px;
  }
}
.footer .footer__logoGCA {
  display: flex;
  width: 78px;
}

@media (max-width: 767px) {
  .footer .footer__logoGCA {
    margin: 0 auto;
  }
}
.footer .footer__companyAddressWrap {
  padding-top: 20px;
}

@media (max-width: 767px) {
  .footer .footer__companyAddressWrap {
    margin: 0 auto;
    padding-top: 0;
  }
}
.footer .footer__companyName {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.82352941;
}

.footer .footer__address {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.66666667;
  margin-right: 23px;
  display: inline-flex;
  gap: 0 1em;
  flex-wrap: wrap;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .footer .footer__address {
    gap: 0;
    justify-content: center;
    margin: 0;
    flex-direction: column;
  }
}
.footer .footer__address > span {
  display: inline-block;
}

.footer .footer__copyright {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2;
  white-space: nowrap;
  padding-top: 50px;
}

@media (max-width: 767px) {
  .footer .footer__copyright {
    padding-top: 16px;
    font-size: 10px;
  }
}
.footer__nav--3 {
  max-width: 166px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .footer__nav--3 {
    max-width: 67%;
  }
}
.footer__nav--3 .footer__navChildListItem {
  padding-bottom: 17px;
}

.footer__otherLinkList {
  max-width: 125px;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .footer__otherLinkList {
    margin: 0 auto;
  }
}
/*----------------------------------------------
 downArrow
----------------------------------------------*/
.downArrow {
  position: relative;
  overflow: hidden;
  height: 237px;
}

@media (max-width: 767px) {
  .downArrow {
    height: 167px;
  }
}
.downArrow .downArrow__circle {
  background: var(--color-primary);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media (max-width: 767px) {
  .downArrow .downArrow__circle {
    width: 8px;
    height: 8px;
  }
}
.downArrow .downArrow__arrow {
  position: relative;
  height: 237px;
}

@media (max-width: 767px) {
  .downArrow .downArrow__arrow {
    height: 167px;
  }
}
.downArrow .downArrow__arrow:before {
  content: "";
  display: block;
  background: var(--color-primary);
  width: 2px;
  height: calc(100% - 14px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.downArrow .downArrow__arrow:after {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  position: absolute;
  bottom: 0px;
  right: 50%;
  margin: auto;
  border-bottom: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  transform: rotate(45deg);
  transform-origin: right bottom;
}

@media (max-width: 767px) {
  .downArrow .downArrow__arrow:after {
    width: 20px;
    height: 20px;
  }
}
/*----------------------------------------------
 Button
----------------------------------------------*/
.contactBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  min-width: 148px;
  height: 28px;
}

@media (hover: hover) {
  .contactBtn:hover {
    background: #ffffff;
    color: var(--color-primary);
  }
}
@media (max-width: 767px) {
  .contactBtn {
    font-size: 12px;
  }
}
.langBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  min-width: 148px;
  height: 28px;
  border: 2px solid var(--color-primary);
  text-align: center;
  background: #ffffff;
}

.linkBtn {
  background: #3A3A3A;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 10px 45px;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 340px;
}

@media (hover: hover) {
  .linkBtn:hover {
    background-color: #00C358;
  }
  .linkBtn:hover:after {
    right: 21px;
  }
}
@media (max-width: 767px) {
  .linkBtn {
    font-size: 16px;
    padding: 10px 45px 10px 50px;
    justify-content: flex-start;
    max-width: 286px;
    min-height: 71px;
  }
}
.linkBtn.linkBtn--full {
  max-width: none;
}

.linkBtn.linkBtn--black {
  background: #000000;
  color: #ffffff;
}

@media (max-width: 767px) {
  .linkBtn.linkBtn--black {
    padding: 10px 36px 10px 30px;
  }
}
@media (hover: hover) {
  .linkBtn.linkBtn--black:hover {
    background-color: var(--color-primary);
  }
  .linkBtn.linkBtn--black:hover:after {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}
.linkBtn.linkBtn--black:after {
  border-bottom: 2px solid #7E7E7E;
  border-right: 2px solid #7E7E7E;
}

.linkBtn:after {
  content: "";
  position: absolute;
  background-image: url(../images/Icon_arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 14px;
  height: 10px;
  right: 24.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

@media (max-width: 767px) {
  .linkBtn:after {
    right: 19px;
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 767px) {
  .linkBtn .linkBtn__textSmall {
    font-size: 13px;
  }
}
.section--requestInfoBtn {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 88px;
  position: sticky;
  bottom: -88px;
  z-index: 100;
  opacity: 0;
  transition: 0.3s;
}

.section--requestInfoBtn.active {
  bottom: 0;
  opacity: 1;
}

.section--requestInfoBtn .requestInfoBtn__inner {
  max-width: 440px;
  width: 100%;
  padding: 20px;
  margin: 0 auto;
}

.section--requestInfoBtn .requestInfoBtn__inner .requestInfoBtn {
  background-color: #009845;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.05em;
  box-shadow: 3px 6px 6px 0px rgba(0, 0, 0, 0.16);
  transition: 0.3s;
  transform: scale(1);
}

@media (hover: hover) {
  .section--requestInfoBtn .requestInfoBtn__inner .requestInfoBtn:hover {
    transform: scale(1.03);
  }
}
.section--requestInfoBtn .requestInfoBtn__inner .requestInfoBtn a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 11.5px 17px;
}

.otherLinkBtn {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 10px;
  border: 1px solid #ffffff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  min-height: 44px;
}

@media (hover: hover) {
  .otherLinkBtn:hover {
    background-color: #ffffff;
    color: #707070;
  }
}
@media (max-width: 767px) {
  .otherLinkBtn {
    font-size: 19px;
    min-width: 222px;
    min-height: 50px;
  }
}
.pageTop .pageTop__link {
  display: block;
  background: #5C5C5C;
  border-radius: 3px;
  width: 46px;
  height: 46px;
  position: relative;
}

@media (hover: hover) {
  .pageTop .pageTop__link:hover {
    background-color: var(--color-primary);
  }
  .pageTop .pageTop__link:hover:after {
    top: -5px;
  }
}
.pageTop .pageTop__link:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -12px;
  left: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  transform: rotate(45deg);
  margin: auto;
  transition: top 0.3s;
}

/*----------------------------------------------
 アニメーション
----------------------------------------------*/
.slideIn__animation {
  opacity: 0;
}

.slideIn__animation.active {
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  animation-name: slideIn__animation;
  animation-duration: 0.9s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

@keyframes slideIn__animation {
  0% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  transform: translateY(20px);
}