#titleBlock {
  margin: 40px auto 50px;
}

#titleBlock > h2 {
  font-size: 48px;
  color: #009944;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 30px;
}

#titleBlock > h3 {
  font-size: 28px;
  color: #009944;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

#titleBlock > p {
  font-size: 20px;
  color: #009944;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 900px) {
  #titleBlock {
    width: 86%;
    margin: 30px auto 30px;
  }

  #titleBlock > h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  #titleBlock > h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  #titleBlock > p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
  }
}
#consultationSection {
  padding: 60px 0;
  background-color: #f1f1f1;
}

#consultationBlock {
  width: 1000px;
  padding: 40px 0;
  border-radius: 20px;
  margin: auto;
  background-color: #fefefe;
}

#consultationBlock > h4 {
  font-size: 20px;
  color: #009944;
  letter-spacing: 0.05em;
  text-align: center;
}

#consultationFlex {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  column-gap: 20px;
}

#consultationFlex > div {
  width: 240px;
  height: 120px;
  border: solid 2px #009944;
  border-radius: 5px;
  text-align: center;
  transition: all 0.3 ease-in-out;
}

#consultationFlex > div:hover {
  filter: opacity(0.8);
}

#consultationFlex > div > a {
  display: inline-block;
  padding: 10px 0;
  width: 100%;
  height: 100%;
  transition: all 0.3 ease-in-out;
}

#consultationFlex > div a > img {
  width: 48px;
  object-fit: contain;
  margin-top: 10px;
  margin-bottom: 10px;
}

#consultationFlex > div a > img.conIcon02 {
  width: 45px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#consultationFlex > div a > img.conIcon03 {
  width: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

#consultationFlex > div a > h5 {
  font-size: 18px;
  color: #009944;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 5px;
}

#consultationFlex > div a > p {
  font-size: 11px;
  color: #009944;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 900px) {
  #consultationSection {
    padding: 30px 0;
  }

  #consultationBlock {
    width: 90%;
    padding: 30px 0 20px;
  }

  #consultationBlock > h4 {
    font-size: 18px;
  }

  #consultationFlex {
    flex-direction: column;
  }

  #consultationFlex > div {
    width: 84%;
    height: auto;
    border: solid 1px #009944;
    border-radius: 35px;
    margin: auto;
    margin-bottom: 20px;
  }

  #consultationFlex > div > a {
    position: relative;
    padding: 12px 0;
  }

  #consultationFlex > div a > img {
    width: 30px;
    position: absolute;
    top: -1px;
    left: 10%;
  }

  #consultationFlex > div a > img.conIcon02 {
    width: 26px;
    top: 18px;
    margin-top: 0;
    margin-bottom: 0;
  }

  #consultationFlex > div a > img.conIcon03 {
    width: 15px;
    top: 12px;
    left: 12%;
    margin-top: 0;
    margin-bottom: 0;
  }

  #consultationFlex > div a > h5 {
    font-size: 15px;
    text-align: left;
    padding-left: 25%;
  }

  #consultationFlex > div a > p {
    font-size: 9px;
    text-align: left;
    padding-left: 25%;
  }
}
#guideDetailBlock {
  padding: 40px 0 80px;
  background-color: #009944;
  scroll-margin-top: 60px;
}

.guideTabs {
  width: 1000px;
  margin: 40px auto 0;
}

.tabMenu {
  display: flex;
  list-style: none;
  padding: 0;
  position: sticky;
  top: 150px;
  z-index: 20;
  border-bottom: solid #fefefe 5px;
}

.tabMenu li {
  font-size: 15px;
  color: #fefefe;
  background-color: #009944;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 400px;
  text-align: center;
  box-sizing: border-box;
  position: relative;
  top: 0;
  padding-left: 2px;
}

.tabMenu li > span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 14px 0 15px;
  border: solid 2px #fefefe;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  color: #fefefe;
  background-color: #009944;
}

.tabMenu li > a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 14px 0 15px;
  border: solid 2px #fefefe;
  border-bottom: none;
  border-radius: 20px 20px 0 0;
  color: #fefefe;
  background-color: #009944;
  box-sizing: border-box;
}

.tabMenu li:first-child {
  padding-left: 0;
}

.tabMenu li.tabActive {
  background-color: #009944;
}

.tabMenu li.tabActive > span {
  color: #434343;
  background-color: #fefefe;
}

.tabContent {
  background-color: #fefefe;
  border-radius: 0 0 20px 20px;
}

.tabContent > div {
  width: 100%;
  padding: 70px 100px 80px;
  box-sizing: border-box;
}

.tabContent > div:nth-child(2), .tabContent > div:nth-child(3) {
  display: none;
}

@media (max-width: 1000px) {
  #guideDetailBlock {
    padding: 20px 0 50px;
    scroll-margin-top: 40px;
  }

  .guideTabs {
    width: 90%;
    margin: 30px auto 0;
  }

  .tabMenu li {
    font-size: 12px;
    width: 50%;
    letter-spacing: 0;
  }

  .tabContent > div {
    padding: 50px 50px;
  }
}
@media (max-width: 900px) {
  .tabMenu {
    top: 90px;
  }
}
@media (max-width: 800px) {
  .tabContent > div {
    padding: 40px 20px;
  }
}
#moveinTitle {
  margin: auto;
  margin-bottom: 50px;
}

#moveinTitle > h4 {
  font-size: 32px;
  color: #009944;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 20px;
}

#moveinTitle > p {
  font-size: 16px;
  color: #009944;
  text-align: center;
  line-height: 1.4;
}

@media (max-width: 900px) {
  #moveinTitle {
    margin-bottom: 30px;
  }

  #moveinTitle > h4 {
    font-size: 20px;
  }

  #moveinTitle > p {
    font-size: 14px;
    text-align: left;
    line-height: 1.4;
  }
}
#supportLink {
  margin-left: 5px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  column-gap: 10px;
}

#supportLink > div {
  margin-bottom: 20px;
}

#supportLink > div a {
  color: #fefefe;
  font-size: 15px;
  display: block;
  width: 190px;
  height: 36px;
  line-height: 36px;
  background-color: #009944;
  text-align: center;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

#supportLink > div a:hover {
  filter: opacity(0.8);
}

@media (max-width: 900px) {
  #supportLink {
    margin-left: 0;
    flex-wrap: wrap;
  }

  #supportLink > div {
    margin-bottom: 0;
  }

  #supportLink > div a {
    font-size: 13px;
    width: 142px;
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.supportBlock {
  border-top: solid 1px #009944;
  margin: auto;
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}

.supportBlock > h5 {
  font-size: 24px;
  color: #009944;
  margin-bottom: 30px;
}

.supportBlock > h5 > span {
  font-size: 16px;
  font-weight: 500;
}

.supportBlock > div.supportNum {
  top: 40px;
  right: 0;
  position: absolute;
}

.supportBlock > div.supportNum > p {
  font-size: 20px;
  color: #009944;
  font-weight: 600;
  line-height: 0.9;
  text-align: center;
}

.supportBlock > div.supportNum > p > span {
  font-size: 96px;
  font-weight: 700;
  display: block;
}

div.supportMainPhoto {
  margin: auto;
  margin-bottom: 30px;
}

div.supportMainPhoto div.supportSinglePhoto > img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 20px;
}

#support07 div.supportMainPhoto div.supportSinglePhoto > img {
  object-fit: contain;
}

div.supportMainPhoto div.supportMainFlex {
  display: flex;
  width: 100%;
}

div.supportMainPhoto div.supportMainFlex > div {
  width: 50%;
}

div.supportMainPhoto div.supportMainFlex > div img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

div.supportMainPhoto div.supportMainFlex > div:first-child img {
  border-radius: 20px 0 0 20px;
}

div.supportMainPhoto div.supportMainFlex > div:last-child img {
  border-radius: 0 20px 20px 0;
}

@media (max-width: 900px) {
  .supportBlock {
    padding-top: 40px;
  }

  .supportBlock > h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .supportBlock > h5 > span {
    font-size: 13px;
    display: block;
    padding-top: 5px;
  }

  .supportBlock > div.supportNum > p {
    font-size: 14px;
  }

  .supportBlock > div.supportNum > p > span {
    font-size: 48px;
  }

  div.supportMainPhoto div.supportSinglePhoto > img {
    height: 200px;
  }

  div.supportMainPhoto div.supportMainFlex > div img {
    height: 200px;
  }
}
div.supportMainImg {
  margin: 50px auto;
}

div.supportMainImg > div {
  margin: auto;
  text-align: center;
}

div.supportMainImg > div img {
  width: 480px;
  object-fit: contain;
}

#support02 div.supportMainImg > div img {
  width: 470px;
}

#support03 div.supportMainImg > div img {
  width: 440px;
}

@media (max-width: 900px) {
  div.supportMainImg {
    margin: 30px auto;
  }

  div.supportMainImg > div img {
    width: 100%;
    max-width: 400px;
  }

  #support02 div.supportMainImg > div img {
    width: 100%;
    max-width: 400px;
  }

  #support03 div.supportMainImg > div img {
    width: 100%;
    max-width: 400px;
  }
}
div.supportTxt {
  margin: auto;
}

div.supportTxt p.supportTxtTitle {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}

div.supportTxt p.supportTxtText {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 20px;
}

div.supportTxt p.supportTxtInfo {
  font-size: 12px;
  line-height: 1.5;
}

div.supportBtn {
  margin: auto;
  margin-top: 30px;
}

div.supportBtn > a {
  font-size: 16px;
  color: #fefefe;
  font-weight: 600;
  background-color: #009944;
  width: 340px;
  height: 40px;
  line-height: 40px;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 22px;
}

@media (max-width: 900px) {
  div.supportBtn > a {
    font-size: 14px;
    width: 200px;
    height: 36px;
    line-height: 36px;
  }

  div.supportBtn.btnLong > a {
    width: 300px;
  }
}
div.supportInfo {
  width: 480px;
  margin: auto;
  position: relative;
  top: -20px;
}

div.supportInfo > p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

@media (max-width: 900px) {
  div.supportTxt p.supportTxtTitle {
    font-size: 16px;
  }

  div.supportTxt p.supportTxtText {
    font-size: 12px;
  }

  div.supportTxt p.supportTxtInfo {
    font-size: 10px;
  }

  div.supportInfo {
    width: 100%;
  }

  div.supportInfo > p {
    font-size: 10px;
  }
}
div.supportSubContent {
  width: 480px;
  margin: 40px auto;
}

div.supportSubContent > p {
  font-size: 20px;
  font-weight: 600;
  color: #009944;
  position: relative;
  padding-left: 50px;
}

div.supportSubContent > p::before {
  content: "";
  width: 40px;
  height: 40px;
  left: 0;
  top: -10px;
  background-color: #009944;
  border-radius: 22px;
  position: absolute;
}

div.supportSubContent > p::after {
  content: "";
  width: 22px;
  height: 22px;
  left: 9px;
  top: -2px;
  background: url("../image/support/supportIcon01.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

div.supportSubContent div.supportSubFlex {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin: 30px auto;
}

div.supportSubContent div.supportSubFlex > div {
  width: 230px;
  height: 120px;
  padding: 20px 0;
  border: solid 2px #009944;
  border-radius: 10px;
  text-align: center;
}

div.supportSubContent div.supportSubFlex > div img {
  height: 39px;
  object-fit: contain;
}

div.supportSubContent div.supportSubFlex > div:first-child img {
  height: 40px;
}

div.supportSubContent div.supportSubFlex > div > p {
  font-size: 13px;
  color: #009944;
  padding-top: 5px;
  line-height: 1.4;
}

div.supportSubContent div.supportSubFlex > div > p > span {
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 900px) {
  div.supportSubContent {
    width: 100%;
    max-width: 480px;
    margin: 30px auto;
  }

  div.supportSubContent > p {
    font-size: 16px;
    padding-left: 40px;
  }

  div.supportSubContent > p::before {
    content: "";
    width: 32px;
    height: 32px;
    top: -8px;
  }

  div.supportSubContent > p::after {
    content: "";
    width: 18px;
    height: 18px;
    left: 7px;
    top: -1px;
  }

  div.supportSubContent div.supportSubFlex {
    column-gap: 10px;
  }

  div.supportSubContent div.supportSubFlex > div {
    width: 50%;
  }

  div.supportSubContent div.supportSubFlex > div img {
    height: 32px;
  }

  div.supportSubContent div.supportSubFlex > div:first-child img {
    height: 33px;
  }

  div.supportSubContent div.supportSubFlex > div > p {
    font-size: 11px;
  }

  div.supportSubContent div.supportSubFlex > div > p > span {
    font-size: 13px;
    letter-spacing: 0;
  }
}
