html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
  width: auto;
}

body {
  margin: 0;
}

.hiddenWrap {
  overflow: hidden;
}

p {
  font-weight: 400;
  font-size: 1.5vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #231815;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1.8vw;
  }
}

h1 {
  font-weight: 700;
  font-size: 3.5vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #231815;
}

h2 {
  font-weight: 500;
  font-size: 2.25vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #231815;
}

h3 {
  font-weight: 500;
  font-size: 2vw;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: #231815;
}

li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

.slidein {
  transform: translateY(20px);
  opacity: 0;
  transition: 0.5s;
}

.slidein.show {
  transform: translateY(0);
  opacity: 1;
}

/*-------------------------header-------------------------*/

.address-header {
  gap: 0;
  margin-left: 1vw;
}

.address-header > div {
  gap: 0.5vw;
  margin: -2vw 0 -2.5vw;
}

.address-header img {
  width: 1.5vw;
}
.address-header h2 {
  font-size: 2vw;
  letter-spacing: 0;
  white-space: nowrap;
}
.address-header p {
  white-space: nowrap;
  font-size: 1vw;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 0.25vw;
}

.contactButton {
  text-align: center;
  margin: 0.5vw 2vw 0.5vw 1vw;
  width: 7vw;
  transition: 0.3s;
}

.contactButton:hover {
  opacity: 0.8;
}

.c-header {
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.c-header__logo {
  margin: 0 2vw 0;
  width: 15vw;
  padding: 1vw;
}

.c-header__list {
  box-sizing: border-box;
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 2vw;
}

.c-header__list-item {
  list-style: none;
  text-decoration: none;
}

.c-header__list-item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.3vw;
  color: #231815;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.c-header__list-item a:visited {
  color: #231815;
}

.c-header__list-item a:hover {
  color: #199be4;
}

.c-hamburger-menu {
  position: fixed;
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__list {
    background-color: #fff;
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 5vw;
    position: absolute;
    transform: translateX(100%);
    transition: 0.3s;
    top: 100%;
    width: 100%;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    transform: translateX(0%);
    transition: 0.3s;
  }

  .c-header__logo {
    width: 25vw;
    padding: 4vw 3vw;
  }

  .c-header__list {
    gap: 7.5vw;
  }

  .c-header__list-item a {
    font-size: 3vw;
  }

  .address-header {
    position: absolute;
    right: 27vw;
  }

  .address-header img {
    width: 2.5vw;
  }
  .address-header h2 {
    font-size: 3.25vw;
  }
  .address-header p {
    font-size: 1.75vw;
    margin-top: -3.5vw;
  }

  .contactButton {
    width: 11vw;
    position: absolute;
    right: 12.5vw;
    top: 0.5vw;
  }
}

.c-hamburger-menu__input {
  display: none;
}

.c-hamburger-menu__bg {
  background-color: #eeeeee;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu__bg {
  display: block;
}

.c-hamburger-menu__button {
  display: none;
}

@media screen and (max-width: 768px) {
  .c-hamburger-menu__button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    height: 7.5vw;
    justify-content: center;
    width: 7.5vw;
  }
}

.c-hamburger-menu__button-mark {
  background-color: #000;
  display: block;
  height: 0.5vw;
  transition: 0.3s;
  width: 5vw;
  margin-right: 7.5vw;
}

@media screen and (max-width: 768px) {
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
    transform: translate(0.2vw, 0.5vw) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked ~ .c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
    transform: translate(0.2vw, 0.1vw) rotate(-45deg);
    transform-origin: 0%;
  }
}

/*-------------------------decoration-------------------------*/

.decoration {
  width: auto;
  height: 100vh;
  position: absolute;
}

.decoration > p {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  position: fixed;
  top: 50%;
  padding-left: 3vw;
  z-index: 2;
  color: #000000;
  font-size: 1.5vw;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  cursor: default;
}

.decoration > p:nth-child(1) {
  transform: rotate(-90deg);
  left: -9vw;
  top: 52.5%;
}

.decoration > p:nth-child(2) {
  white-space: pre;
  transform: rotate(90deg);
  left: 82.5vw;
}

/*-------------------------top-------------------------*/

#top {
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}

@media screen and (max-width: 768px) {
  #top {
    padding-top: 12.5vw;
  }
}

.fadein {
  overflow-x: hidden;
  transform-origin: top center;
  animation: loading 1s;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

#top img {
  width: 80%;
  aspect-ratio: 16 / 9;
  border-radius: 5vw;
  margin-top: 5vw;
  object-fit: cover;
}

#top > div:first-child {
  position: absolute;
  margin-top: 3vw;
  right: 7.5vw;
  justify-items: right;
}

#top > div:first-child h1,
#top > div:first-child h2 {
  background-color: #fff;
  width: fit-content;
  padding: 0.25vw 2vw;
  border-radius: 1vw;
  margin: 0.5vw;
}

#top .flexContainer {
  justify-content: center;
  margin: -10vw 7.5vw -7.5vw;
  gap: 1vw;
}

.medalContainer {
  position: relative;
  padding: 0;
  width: 25vw;
  margin: 0 -2.5vw;
}

.medalLayer {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.medalText {
  font-size: 1.8vw;
  line-height: 2.5vw;
  white-space: nowrap;
  margin-top: -10vw;
}

#top .accentblock {
  width: 80%;
  margin: 3vw auto;
  padding: 2.5vw 0 5vw;
  justify-items: center;
}

.large {
  font-size: 10vw;
  letter-spacing: 0.05em;
}

#top > .accentblock > p:nth-child(1) {
  font-size: 3vw;
}

#top > .accentblock > p:nth-child(2) {
  font-size: 5vw;
  font-weight: 600;
  margin-top: -2vw;
  letter-spacing: 0.05em;
  margin-top: -5vw;
  margin-left: 5vw;
  margin-bottom: 0;
}

/*-------------------- introduction01 --------------------*/

#introduction01 {
  padding: 3vw 0 7vw;
}

.iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

iframe {
  position: absolute;
  top: 7.5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
}

.questionsContainer {
  text-align: center;
  margin: 0 7.5vw;
  position: relative;
}

.questions {
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 5vw;
}
.questions-child {
  width: 25%;
  height: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5vw;
  border: 0.25vw solid black;
  border-radius: 2.5vw;
}
.questions-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.75vw;
  color: #199be4;
  font-weight: 600;
}

.questions-child:nth-of-type(1) {
  margin-left: 17.5%;
}
.questions-child:nth-of-type(2) {
  margin-right: 17.5%;
}
.questions-child:nth-of-type(n + 3) {
  margin-top: 3vw;
}

#introduction01 > div:nth-child(4) {
  margin-top: 15vw;
}

.arrow {
  margin-top: -3vw;
  width: 7.5vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

#introduction01 .arrow {
  margin-top: 4vw;
}

/* --------------------introduction02-------------------- */

#introduction02 {
  padding-bottom: 7.5vw;
}

.introduction02-content01 {
  padding: 7.5vw;
}

.introduction02-content02 {
  display: flex;
  justify-content: space-around;
  padding: 0 5vw;
}

.introduction02-content02 .sublead {
  margin: 9vw 0 0 0;
  text-align: center;
}

.equipment {
  position: relative;
  flex: 1;
}

.number {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 5vw;
  color: #ffee00;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  margin-top: -5.5vw;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.item {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 12.5vw;
  top: 15vw;
  margin-top: 3vw;
}

.second {
  width: 20vw;
  top: 13.5vw;
}

.introduction02-content03 {
  margin-top: 20vw;
}

.introduction02-content03 .accentblock ul {
  list-style: none;
  padding-left: 1vw;
}

.introduction02-content03 .accentblock li {
  font-size: 2vw;
  white-space: nowrap;
  text-align: left;
  line-height: 1.8em;
  letter-spacing: 0.05em;
  background: url(../Links/check.png) no-repeat left 0 top 0.5vw;
  background-size: auto 2.5vw;
  padding-left: 3vw;
}

.introduction02-content03 .subblock {
  width: 80%;
  margin: 2vw auto;
}

.introduction02-content03 .subblock p {
  width: 90%;
  margin: auto;
}

.introduction02-content03 .subblock:last-child .flexContainer {
  gap: 0vw;
  
}

.introduction02-content03 .subblock:last-child p {
  width: 50%;
}

.introduction02-content03 .subblock:last-child img {
  width: 35%;
  padding: 2vw;
}

/*-------------------- ranking --------------------*/
#ranking{
  padding: 10vw 0 5vw;
}


#ranking .speechBubble{
  margin-bottom: -3vw;
  margin-top: 0;
  z-index: 1;
}

.bubbleTitle{
  margin: 0;
}

#ranking .accentblock {
  padding: 4vw;
  margin-bottom: 0;
  margin-top: -1vw;
}

.rankingContents{
  margin-top: 5vw;
}

#ranking .rankingContents-child {
  gap: 2vw;
  justify-content: left;
  margin-bottom: 5vw;
}

.rankingText{
  width: 65vw;
}

.rankingText h2,
.rankingText p,
.rankingText a{
  margin: 0.5vw;
}

.rankingContents-child h1{
  margin: -1vw auto 0;
}

.rankingUrl {
font-size: 1.75vw;
}

.rankingUrl:link {
color:#199BE4;
}

.rankingUrl:visited {
color:#199BE4;
}

.yellowNumber {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 6vw;
  color: #ffee00;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  z-index: 1;
  margin-top: -1vw;
}

.pickup{
  position: absolute;
  margin-top: -11vw;
  right: 14vw;
  letter-spacing: 0vw;
  font-weight: 600;
}

.rankingCharacter{
  width: 35vw;
  margin: -5vw auto;
  z-index: 1;
}

/*-------------------- QandA --------------------*/
#QandA{
  padding: 5vw 0;
}


#QandA .speechBubble{
  width: fit-content;
  margin: 0 auto;
}

#QandA .accentblock:nth-of-type(2){
  padding: 4vw;
  margin-top: -3vw;
}

.QandATitle{
  gap: 0.5vw;
  align-items: baseline;
}

.QandATitle h1{
  color: #fff;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 6vw;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  margin: 0;
}

.QandATitle h1:first-child{
  color: #ffee00;
  font-size: 7.5vw;
}

.QandATitle h1:last-child{
  color: #ECAFA0;
  font-size: 7vw;
}

.QandAContents{
}

.QandAContents-child .flexContainer{
  justify-content: left;
  text-align: left;
  gap: 2vw;
  margin-bottom: 4vw;
}

.QandAContents-child .flexContainer:first-child{
  align-items: center;
  margin-bottom: -2vw;
}

.QandAYellow,
.QandARed{
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 5vw;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  margin: 0;
}

.QandAYellow{
  color: #ffee00;
}

.QandARed{
  color: #ECAFA0;
}

.QandAContents-Text{
  width: 67.5vw;
}

.QandAContents-Text p{
  margin-bottom: 0;
}

#QandA .character {
  margin-top: -10vw;
}

#QandA .accentblock:nth-of-type(4){
  font-weight: 500;
  z-index: 5;
  margin: 7.5vw auto 0;
  width: 80%;
  justify-items: center;
  border: 0.2vw solid #000;
}

#QandA .accentblock:nth-of-type(4) p {
  margin: 0 auto 5vw;
}

#QandA .arrow {
  margin-top: 1vw;
}


/*-------------------- pickup --------------------*/
#pickup{
  margin: 10vw 0;
  scroll-margin-top: 10vw;
}

#pickup > div > img{
  width: 80%;
  margin: 5vw 0 10vw;
}


/* --------------------primary-explanation-01 --------------------*/

#primary-explanation-01 {
  padding: 5vw;
  scroll-margin-top: 10vw;
}
#benefits {
  scroll-margin-top: 2vw;
}

.number-shadow {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 7vw;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  color: #ffee00;
  text-shadow: 0.1vw 0.1vw #000, 0.2vw 0.2vw #000, 0.3vw 0.3vw #000, 0.4vw 0.4vw #000, 0.5vw 0.5vw #000;
  transform: skewY(-5deg);
  margin: -3vw 0;
}

#primary-explanation-01 .subblock .flexContainer {
  gap: 5vw;
}

#primary-explanation-01 > .subblock > .flexContainer > div > p {
  white-space: nowrap;
  margin-top: 3vw;
}

#primary-explanation-01 > .subblock {
  /*width: 80%;*/
  margin: 3.5vw auto;
}

#primary-explanation-01 .subblock > h2 {
  margin: 1.5vw auto 7vw;
}

.number-white {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 5vw;
  letter-spacing: 0;
  color: #fff;
  -webkit-text-stroke: 0.15vw #000;
  text-stroke: 0.15vw #000;
  margin-top: -6.5vw;
  z-index: 5;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.family {
  font-weight: 500;
  padding-top: 2vw;
  font-size: 2vw;
  border-bottom: 0.15vw solid #231815;
  max-width: 35vw;
  white-space: nowrap;
}

.condition {
  padding-top: 1.75vw;
  font-weight: 500;
  font-size: 2vw;
}

.conditionContent {
  font-weight: 500;
}

#primary-explanation-01 .subblock .balloonContainer .balloon-s {
  left: 39vw;
  margin-top: -3vw;
}

#primary-explanation-01 .subblock .balloonContainer .balloonText-s {
  margin-top: -1vw;
  margin-left: -22vw;
  font-size: 1.5vw;
}

th,
td {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  border: solid 0.15vw #231815;
}

tr {
  height: 7.5vw;
}

th {
  width: 15vw;
  background-color: #d9d5c5;
  font-size: 1.5vw;
  font-weight: 500;
  white-space: nowrap;
}

.comments {
  font-size: 1.3vw;
  font-weight: 400;
  white-space: nowrap;
}

td {
  background-color: #fff;
  font-weight: 500;
  font-size: 1.5vw;
  line-height: 1.75vw;
}

table div p {
  font-size: 1.5vw;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  th {
    font-size: 1.75vw;
  }
  td {
    font-size: 1.65vw;
  }
  table div p {
    font-size: 1.75vw;
    margin: 0 1vw;
  }
}

table {
  border-collapse: collapse;
  margin-top: 7vw;
}

#primary-explanation-01 table{
  background-color: #199be4;
  margin: 0 auto;
}

.tableFixed {
  table-layout: fixed;
  width: 75vw;
}

.arrow-red {
  width: 4vw;
  position: absolute;
  margin-top: -5.5vw;
  left: 42.5vw;
}

#primary-explanation-01 .subblock .separateLine {
  margin-top: 5vw;
  margin-bottom: 7vw;
}

/* --------------------primary-explanation-02-------------------- */
#primary-explanation-02 {
  margin-top: 7vw;
  padding-bottom: 5vw;
}

#primary-explanation-02 h3 {
  border-bottom: 0.25vw solid #231815;
  margin: 3vw auto 1vw;
}

#primary-explanation-02 img {
  margin-bottom: 3vw;
}

/* --------------------contact-01------------------- */

#contact-01 {
  padding: 7vw 0 10vw;
  scroll-margin-top: 5vw;
}

#contact-01 > div:nth-of-type(2) {
  margin: 7vw 0 3vw;
}

.service__ttl {
  position: relative;
  text-align: center;
  display: block;
  width: fit-content;
  line-height: 1.2;
  margin: 3vw auto 0;
  padding: 0 2.5vw;
}

.service__ttl::before,
.service__ttl::after {
  content: '';
  position: absolute;
  bottom: 0.1;
  width: 0.15vw;
  height: 2.5vw;
  background: #231815;
}
.service__ttl::before {
  transform: rotate(-30deg);
  left: 0;
}
.service__ttl::after {
  transform: rotate(30deg);
  right: 0.5vw;
}

.contactUs {
  background-color: #fff;
  border-radius: 5vw;
  border: 0.25vw solid #231815;
  padding: 3vw 7vw;
  margin: 0 auto;
}

.contactUs .separateLine {
  margin: 0 auto;
}

.contactUs h2 {
  font-weight: 600;
  margin-top: 3vw;
}

.contactUs p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 600;
  font-size: 2vw;
  letter-spacing: 0;
  margin-top: -3vw;
}

.contactUs > div:nth-child(3) {
  margin: 3vw 0;
}

.address {
  gap: 2vw;
  margin: -5.5vw 0 -3vw;
}

.address img {
  width: 5vw;
  height: 5vw;
  margin-right: -4vw;
}

.address h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  font-size: 5vw;
  letter-spacing: 0;
  white-space: nowrap;
}

.address p {
  font-size: 1.5vw;
  white-space: nowrap;
  border-left: 0.15vw solid #231815;
  margin-top: 5vw;
  padding-left: 2vw;
}

.buttonFlex {
  display: flex;
  gap: 5vw;
}

.buttonFlex button {
  flex: 1;
}

.contact-thirdblock {
  gap: 0;
  margin-top: -3vw;
}

.contact-thirdblock p {
  font-size: 2.25vw;
  line-height: 2em;
}

.contact-thirdblock > div:first-child {
  justify-items: center;
  align-content: center;
}

.contact-thirdblock img {
  width: 30vw;
}

/* --------------------achivement-------------------- */

#archivements {
  margin-top: 7vw;
  padding-bottom: 7vw;
  scroll-margin-top: 10vw;
}

#archivements > .subblock {
  margin: 0 auto 3vw;
  padding: 1vw;
  width: 90%;
}

#archivements > .balloonContainer {
  z-index: 5;
  padding-bottom: 2.75vw;
}

#archivements > .subblock .conditionContent {
  white-space: nowrap;
  width: fit-content;
}

#archivements > .subblock table td:last-child {
  width: 40vw;
}

#archivements > .subblock .flexContainer {
  gap: 3vw;
}

#archivements > .subblock table {
  margin: 5vw 0 4vw;
}

#archivements > .subblock .conditionContent {
  font-size: 1.3vw;
}

#archivements .separateLine {
  margin: 5vw 0 7vw;
}

.brackets01,
.brackets02,
.brackets03 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brackets01:before {
  content: '';
  position: absolute;
  width: 22.5vw;
  height: 7vw;
  border-radius: 10% / 50%;
  border: 0.1vw solid #231815;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.brackets02:before {
  content: '';
  position: absolute;
  width: 20vw;
  height: 7vw;
  border-radius: 10% / 50%;
  border: 0.1vw solid #231815;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.brackets03:before {
  content: '';
  position: absolute;
  width: 25vw;
  height: 7vw;
  border-radius: 10% / 50%;
  border: 0.1vw solid #231815;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

/*--------------------onepoint-01--------------------*/
#onepoint {
  background-color: #cce9f9;
  padding-bottom: 12.5vw;
}

#onepoint .accentblock {
  width: 75vw;
  height: 32.5vw;
  border-radius: 7.5vw;
  position: relative;
  top: 6vw;
}

#onepoint .number-white {
  margin-top: 4vw;
}

#onepoint .accentblock p:nth-of-type(1) {
  margin: 0.5vw auto 3vw;
}


.solution {
  position: absolute;
  margin: 5vw 65vw;
  z-index: 5;
  width: 17.5vw;
}

#onepoint .accentblock h2 {
  margin-top: 1vw;
}

#onepoint .accentblock p:last-child {
  margin-top: -3.5vw;
}

#onepoint .character {
  margin-top: 31.5vw;
  width: 35vw;
}

/*--------------------secondary-explanation-01-------------------*/

#secondary-explanation-01 {
  padding: 0 10vw 4vw;
  scroll-margin-top: 5vw;
}

#secondary-explanation-01 .upperCircle {
  margin-top: 10vw;
}

.secondary-explanation-01-wrap01 {
  gap: 3vw;
  align-items: center;
  margin-bottom: 5vw;
}

.secondary-explanation-01-wrap01 p {
  letter-spacing: 0.05em;
}

#secondary-explanation-01 .sublead {
  font-size: 2vw;
  line-height: 1.5em;
}

.secondary-explanation-01-wrap01 .wrap h3 {
  font-size: 1.75vw;
  width: 100%;
  margin: auto;
}

.secondary-explanation-01-wrap01 img {
  width: 15vw;
  object-fit: contain;
}

.secondary-explanation-01-wrap01 > div:nth-child(2) > div:first-child img:last-child {
  width: 17vw;
}

.secondary-explanation-01-wrap01 > div:nth-child(2) > div:last-child {
  margin-left: 2vw;
}

.secondary-explanation-01-wrap01 .arrow-black {
  width: 6vw;
  position: absolute;
  margin-top: 5vw;
  margin-left: -2vw;
}

/*--secondary-explanation-01-wrap02--*/

.secondary-explanation-01-wrap02 .subblock {
  padding: 1vw 2vw;
}

.secondary-explanation-01-wrap02 .subblock p {
  font-size: 1.5vw;
  letter-spacing: 0.05em;
  line-height: 1.5em;
  text-indent: -1em;
  padding-left: 1em;
}

.secondary-explanation-01-wrap02 .wrap {
  margin: auto 0;
}

.secondary-explanation-01-wrap02 .wrap .flexContainer {
  gap: 1vw;
}

.secondary-explanation-01-wrap02 .wrap .flexContainer h3 {
  font-size: 1.75vw;
}

.secondary-explanation-01-wrap02 img {
  width: 16vw;
  object-fit: contain;
}

.secondary-explanation-01-wrap02 > div:nth-child(2) > div:first-child {
  margin-bottom: 7vw;
}

.secondary-explanation-01-wrap02 .arrow-black {
  width: 6vw;
  position: absolute;
  transform: rotate(90deg);
  margin-top: -4vw;
  margin-left: 7vw;
}

/*--------------------secondary-explanation-02-------------------*/

#secondary-explanation-02 {
  padding-top: 8vw;
  padding-bottom: 5vw;
}

#secondary-explanation-02 img {
  width: 15vw;
}

#secondary-explanation-02 .accentblock {
  width: 80%;
  margin: 3vw 5vw;
  padding: 3vw;
}

.secondary-explanation-02-wrap01 {
  gap: 2vw;
}

.secondary-explanation-02-wrap01 .subblock {
  white-space: nowrap;
  margin: 2vw 0 5vw;
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 2.5vw;
  flex: 1;
}

.secondary-explanation-02-wrap01 .subblock p {
  margin-top: -1.5vw;
}

.accentblock-outline {
  border: 0.15vw solid #231815;
  border-radius: 2.5vw;
  padding: 2vw;
}

.secondary-explanation-02-wrap02 > .accentblock-outline {
  white-space: nowrap;
  margin-bottom: 3vw;
}

.secondary-explanation-02-wrap02 > .accentblock-outline h3 {
  margin-left: 1vw;
}

.secondary-explanation-02-wrap02 > .accentblock-outline img {
  margin: 0 -3vw;
  object-fit: contain;
}

.secondary-explanation-02-wrap02 > .accentblock-outline:nth-child(2) img {
  width: 16vw;
}

.secondary-explanation-02-wrap02 > .accentblock-outline p {
  margin: auto 0;
  width: 50%;
}

/*----------onepoint-02---------*/

/*----------contactus-02---------*/

/*----------verifications---------*/

.verifications {
  padding-bottom: 7.5vw;
}

.verifications > div:first-child {
  padding: 5vw;
}

.verifications > div:nth-child(2) {
  margin-top: -2vw;
}

.verifications > div:nth-child(2) img {
  width: 30vw;
}

.verifications > div:nth-child(2) p {
  font-size: 1.75vw;
  margin-top: 2vw;
}

.verifications .subblock {
  padding-top: 0;
  width: 80%;
  margin: 0 auto;
}

/*wrap01*/

.verifications-wrap01 > div {
  gap: 10vw;
}

/*wrap02*/

.verification-content {
  margin-top: 7vw;
}

.verification-title {
  height: 7vw;
  margin-top: -2vw;
  margin-bottom: -2vw;
  margin-left: -1vw;
  z-index: 10;
}

.verification-text {
  font-size: 1.75vw;
  font-weight: 600;
  line-height: 1.25;
  z-index: 5;
}

.verification-number {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: 5.5vw;
  margin-top: 5vw;
  margin-left: -4.5vw;
  z-index: 5;
}

.verifications .balloonLayer-l {
  margin-top: -1.5vw;
}

.verifications .balloon-l {
  width: 47.5vw;
}

.verifications .balloonText-m {
  font-size: 2.25vw;
  letter-spacing: 0;
}

.comparison {
  background-color: #199be4;
  width: 80%;
  margin: 1vw 0;
}

/*--------------------onepoint-02-------------------*/
.spfontsize-16 {
  font-size: 1.5vw;
}

@media screen and (max-width: 768px) {
  .spfontsize-16 {
    font-size: 1.6vw;
  }
}

/*--------------------introduction-frow-------------------*/
#introduction-frow {
  margin-top: 5vw;
  scroll-margin-top: 7.5vw;
}

#introduction-frow > div:nth-child(2) {
  margin: 5vw 0 7vw;
}

#introduction-frow > div:nth-child(2) h3 {
  font-weight: 500;
  border-bottom: 0.15vw solid #231815;
  width: fit-content;
  margin: 0 auto 4vw;
}

.frow {
  width: 70%;
}

#introduction-frow .annotation {
  width: 80%;
  margin: 0 auto 7.5vw;
}

/*--------------------reason-01-------------------*/

#reason-01 {
  padding-bottom: 5vw;
}

.reason-01-wrap01 {
  padding: 0 10vw;
}

#reason-01 > div:first-child {
  padding: 2vw;
}

#reason-01 > div > div:first-child {
  margin: 5vw 0 3vw;
}

#reason-01 > div > div:nth-child(2) .flexContainer {
  gap: 1vw;
}

#reason-01 > div > div:nth-child(2) .accentblock {
  border-radius: 2.5vw;
  white-space: nowrap;
  height: 5vw;
  margin: 0;
  flex: 1;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
}

#reason-01 > div > div:nth-child(3) {
  padding: 0 5vw 4vw;
}

#reason-01 > div > div:nth-child(3) h2 {
  padding: 3vw 0 2vw;
}

#reason-01 > div > div:nth-child(3) img {
  width: 60vw;
}

#reason-01 > div > div:nth-child(3) img:last-child {
  width: 61.5vw;
  margin-left: 1.5vw;
}

/*--------------------reason-02-------------------*/

#reason-02 {
  padding: 5vw 0 10vw;
}

#reason-02 > .underBalloon {
  margin-top: 5vw;
}

#reason-02 h2 {
  text-align: left;
  margin-top: 7vw;
  text-indent: 1.25em;
}

#reason-02 .photo-container {
  margin-top: -1.5vw;
}

#reason-02 .photo-container p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-align: justify;
}

#reason-02 .photo-container img {
  border-radius: 5vw;
  aspect-ratio: 5 / 3;
  width: 30vw;
  object-fit: cover;
}

#reason-02 > div:last-child > div:last-child {
  margin-top: 5vw;
}

/*--------------------reason-03-------------------*/
#reason-03 {
  padding: 5vw 0 7vw;
}

.reason-03-wrap01 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 7.5vw;
}

.reason-03-wrap01 > div {
  width: 40%;
  margin: 2vw 1.5vw;
}

.reason-03-wrap01 div > div {
  margin: 2vw;
}

.reason-03-wrap01 div img {
  background-color: #fff;
  border-radius: 5vw;
  width: 95%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
  padding: 1vw;
}
.reason-03-wrap01 div .sublead {
  font-size: 2vw;
  text-align: left;
  line-height: 1.75em;
  white-space: nowrap;
}

.reason-03-wrap01 div p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  text-align: justify;
}

/*----------customer-voice---------*/
#customer-voice {
  padding: 5vw 0;
  scroll-margin-top: 5vw;
}

.voices {
  margin: 3vw 10vw -3vw;
}

.voices > div {
  margin-bottom: 5vw;
}

.customerContainer {
  display: flex;
  align-items: end;
  border-bottom: 0.25vw solid #231815;
  margin-bottom: 2vw;
}
.customerContainer img {
  width: 10%;
  margin-left: 2vw;
}
.customerContainer h3 {
  margin-left: 2vw;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.customerContainer ~ p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 0 1.5em;
  margin-bottom: 2vw;
}

/*--------------------contact-03-------------------*/
#contact-03 .bg-brown {
  padding: 4vw 50vw 9vw;
}

#contact-03 > div:nth-child(2) {
  margin-top: 3vw;
  width: 80%;
  margin: 3vw auto 0;
}

#contact-03 > div:nth-child(3) {
  padding-top: 3vw;
}

/*--------------------contact-form-------------------*/
#contact-form {
  padding: 7vw 0;
  scroll-margin-top: 5vw;
}

form {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  width: 80%;
  margin: 0 auto;
}
.formRow {
  display: flex;
  align-items: center;
  padding: 5vw 1vw;
  border-bottom: 0.1vw solid #231815;
}

#email_match {
  margin: 2vw 0 -5vw 0;
  padding-top: 2vw;
  text-align: center;
  font-size: 2vw;
}

form > div:nth-child(9),
form > div:nth-child(10) {
  align-items: flex-start;
}

.formRow:nth-child(10),
.formRow:last-child {
  border-bottom: none;
}
.formLabel {
  display: flex;
  justify-content: space-between;
  width: 30%;
  margin-left: 0;
}
.formLabel label {
  font-size: 1.5vw;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .formLabel label {
    font-size: 1.7vw;
  }
}

.formLabel span {
  font-size: 1.5vw;
  font-weight: 500;
  padding: 0vw 1.5vw;
  color: #fff;
  background-color: #231815;
  white-space: nowrap;
}

#contact-form .flexContainer {
  justify-content: flex-start;
  gap: 3vw;
}

/*--form-parts--*/
input,
textarea {
  background-color: #ececec;
  border: 0.15vw solid #949494;
  border-radius: 1vw;
  font-size: 2vw;
  margin-left: 3vw;
  padding: 1.5vw 0;
  color: #231815;
  flex-grow: 1;
  vertical-align: top;
}

input[type='radio'],
input[type='checkbox'] {
  vertical-align: middle;
}

.radioButtons {
  font-size: 1.75vw;
  white-space: nowrap;
  padding-left: 0;
  margin-left: 3vw;
  width: 60%;
}

.radioButtons input {
  transform: scale(1.75);
  min-width: 1.5vw;
  min-height: 1.5vw;
  margin: 0 1vw 0 3vw;
}

.radioButtons input:first-child {
  margin-left: 0;
}

.checkboxButtons {
  font-size: 1.75vw;
  white-space: nowrap;
  line-height: 2em;
  width: 60%;
}

.checkboxButtons input {
  transform: scale(1.75);
  min-width: 1.5vw;
  min-height: 1.5vw;
  margin: 0 1vw 0 3vw;
}

.agreementText {
  width: 95%;
  height: 25vw;
  border: 0.15vw solid #b6b6b6;
  overflow-y: scroll;
  text-align: left;
  margin: 2vw auto;
}

.agreementText p {
  line-height: 1.5em;
  font-size: 1.25vw;
}

@media screen and (max-width: 768px) {
  .radioButtons input {
    transform: scale(0.75);
    margin: 0 0.5vw 0 2vw;
  }

  .checkboxButtons input {
    transform: scale(0.75);
    margin: 0 0.5vw 0 2vw;
  }

  .agreementText p {
    font-size: 1.5vw;
  }
}

.formRow:last-child {
  margin: 5vw;
}

#contact-form .button-black {
  margin: 5vw;
  padding: 1.25vw 10vw;
}

/*--------------------footer-------------------*/

.footer-wrap01 {
  background: #199be4;
  margin: 0;
  padding: 5vw;
  padding-bottom: 15vw;
}

.footer-wrap01 .separateLine {
  background: yellow;
}

.footer-wrap01 p,
.footer-wrap01 h2 {
  color: #fff;
}

.footer-wrap01 > h2 {
  position: relative;
}

.footer-wrap01 > h2::after {
  position: absolute;
  content: '';
  background-color: #fff;
  width: 15vw;
  height: 0.25vw;
  top: 7vw;
  left: 50%;
  transform: translateX(-50%);
}

.footer-wrap01 > p {
  margin-top: 7vw;
}

.footer-wrap01 .address p {
  border-left: 0.25vw solid #fff;
  margin-top: 6vw;
}

.footer-wrap01 .buttonFlex {
  padding: 3vw;
  gap: 0;
}

.footer-wrap02 {
  background-color: #000;
  border-radius: 7.5vw 7.5vw 0 0;
  padding: 5vw 0 5vw;
  margin-top: -10vw;
}

.footer-wrap02 img {
  width: 20%;
  margin-bottom: 5vw;
}

.footer-wrap02 .nav-list a {
  color: #fff;
}

.footer-wrap02 .nav-list a:hover {
  color: #199be4;
}

.footer-wrap02 .flexContainer {
  gap: 2vw;
}

.nav-list {
  width: 100%;
}

.nav-list a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.75vw;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s;
}

.nav-list a:visited {
  color: #fff;
}

.nav-list a:hover {
  color: #199be4;
}

.fas_sns_circle {
  padding: 0;
  margin: 5vw 0;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: center;
}
.fas_sns_circle li {
  list-style: none;
  margin: 0 1.5vw 0 0;
}
.fas_sns_circle li a {
  text-decoration: none;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.fas_sns_circle li a:hover {
  opacity: 0.5;
}
.fas_sns_circle li a i {
  display: inline-block;
  width: 4vw;
  height: 4vw;
  color: #fff;
  font-size: 2.5vw;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  font-size: 1vw;
}
