html {
  scroll-behavior: smooth;
}

body {
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  margin: 0;
}
body header {
  position: fixed;
  width: 100%;
  z-index: 10;
}
body header > div {
  display: flex;
  justify-content: space-between;
  align-items: top;
  padding: 20px;
}
body header > div h1 {
  margin: 0;
}
body header > div h1 a img {
  width: 100px;
  height: 100px;
}
body header > div > div.pcnav {
  display: flex;
}
body header > div > div.pcnav nav {
  margin-right: 50px;
  width: 820px;
}
body header > div > div.pcnav nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  background-color: #fff;
  padding: 15px 50px;
  border-radius: 100px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.3);
}
body header > div > div.pcnav nav ul li a {
  text-decoration: none;
  color: #292f3e;
  font-size: 18px;
  font-weight: bold;
  padding: 0 30px;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  padding-bottom: 8px;
  transition: 0.3s;
}
body header > div > div.pcnav nav ul li:last-child a {
  color: #fff;
  background-color: #292f3e;
  padding: 10px 40px;
  font-size: 22px;
  border-radius: 10px;
  margin-left: 20px;
}
body header > div > div.pcnav nav ul li:last-child:hover a {
  color: #292f3e;
  background-color: #fff;
  box-shadow: inset 0 0 0 4px #000;
  border-bottom: 3px solid rgba(41, 47, 62, 0);
}
body header > div > div.pcnav nav ul li:hover a {
  border-bottom: 3px solid black;
}
body header > div > div.pcnav > a {
  margin-right: 50px;
}
body header > div > div.pcnav > a img {
  width: 150px;
}
body header > div .hamburger {
  display: none;
}
body header > div.spnav {
  display: none;
}
body a.sprb {
  display: none;
}
@media screen and (max-width: 1300px) {
  body header > div > div > a {
    display: none;
  }
  body a.sprb {
    display: block;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
  }
  body a.sprb img {
    width: 150px;
  }
}
@media screen and (max-width: 1000px) {
  body header {
    overflow: hidden;
  }
  body header > div > div.pcnav {
    display: none;
  }
  body header > div .hamburger {
    display: block;
  }
  body header > div .hamburger img {
    width: 100px;
    height: 100px;
  }
  body header > div.spnav {
    position: fixed;
    top: 0;
    display: block;
    transform: translateY(-200px);
    text-align: center;
    background-color: #292f3e;
    width: 100%;
    padding: 0;
    transition: 0.7s;
  }
  body header > div.spnav nav ul {
    padding-inline-start: 0px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  body header > div.spnav nav ul li {
    color: #fff;
    list-style: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 20px;
  }
  body header > div.spnav nav ul li a {
    text-decoration: none;
    color: #fff;
  }
  body header > div.spnav.active {
    transform: translateY(0);
  }
}
@media screen and (max-width: 600px) {
  body header > div h1 a img {
    width: 60px;
    height: 60px;
  }
  body header > div .hamburger img {
    width: 60px;
    height: 60px;
  }
  body a.sprb {
    right: 20px;
    bottom: 20px;
  }
  body a.sprb img {
    width: 100px;
  }
}
body main > div.mv {
  width: 100%;
  height: 100vh;
  background-image: url(../img/mv.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
}
@media screen and (max-width: 800px) {
  body main > div.mv {
    height: 30vh;
    background-size: 70%;
  }
}
body main section.kuroki {
  width: 95%;
  margin: auto;
  border-radius: 30px;
  background-image: url(../img/kuroki_back.jpg);
  border: 3px solid #292f3e;
  height: 1000px;
  overflow-y: scroll;
}
body main section.kuroki > div h2 {
  font-size: 60px;
  text-align: center;
  margin: 80px 0;
}
body main section.kuroki > div h2::before, body main section.kuroki > div h2::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 150px;
  background-image: url(../img/hair_icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
body main section.kuroki > div h2::before {
  margin-right: 30px;
}
body main section.kuroki > div h2::after {
  margin-left: 30px;
}
body main section.kuroki > div > div.greeting {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body main section.kuroki > div > div.greeting img {
  width: 40%;
}
body main section.kuroki > div > div.greeting p {
  width: 55%;
  font-size: 22px;
  font-weight: bold;
  line-height: 46px;
}
body main section.kuroki > div > div.greeting p span {
  font-size: 50px;
}
body main section.kuroki > div h3 img {
  display: block;
  width: 800px;
  margin: 100px auto 50px;
}
body main section.kuroki > div > div.adventure > div {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-between;
  padding-bottom: 50px;
  align-items: center;
}
body main section.kuroki > div > div.adventure > div img {
  width: 30%;
  border-right: 2px dashed #292f3e;
  padding-right: 5%;
}
body main section.kuroki > div > div.adventure > div div {
  width: 60%;
}
body main section.kuroki > div > div.adventure > div div p {
  margin: 0;
  font-size: 20px;
}
body main section.kuroki > div > div.adventure > div div p:first-child {
  font-size: 24px;
  font-weight: bold;
}
body main section.kuroki > div > div.adventure > div div h4 {
  font-size: 34px;
  margin: 0 0 15px;
}
body main section.kuroki > div > div.before_after {
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: space-around;
}
body main section.kuroki > div > div.before_after div {
  width: 45%;
}
body main section.kuroki > div > div.before_after div img {
  width: 100%;
  display: block;
  margin: 0 auto 50px;
}
body main section.kuroki > div > div.before_after div .balogo {
  width: 80%;
  margin-bottom: 20px;
}
body main section.kuroki > div > div.kuroki_end p {
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  margin: 80px 0 100px;
  line-height: 60px;
}
@media screen and (max-width: 1050px) {
  body main section.kuroki {
    height: unset;
    overflow-y: unset;
    width: 90%;
  }
  body main section.kuroki > div h2 {
    font-size: 36px;
    margin: 50px 0;
  }
  body main section.kuroki > div h2::before, body main section.kuroki > div h2::after {
    width: 20px;
    height: 60px;
  }
  body main section.kuroki > div h2::before {
    margin-right: 20px;
  }
  body main section.kuroki > div h2::after {
    margin-left: 20px;
  }
  body main section.kuroki > div > div.greeting {
    display: block;
  }
  body main section.kuroki > div > div.greeting img {
    display: block;
    width: 80%;
    margin: auto;
  }
  body main section.kuroki > div > div.greeting p {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
    margin-top: 30px;
  }
  body main section.kuroki > div > div.greeting p span {
    font-size: 30px;
  }
  body main section.kuroki > div h3 img {
    width: 80%;
    margin: 100px auto 50px;
  }
  body main section.kuroki > div > div.adventure > div {
    padding-bottom: 50px;
  }
  body main section.kuroki > div > div.adventure > div img {
    width: 35%;
    padding-right: 5%;
  }
  body main section.kuroki > div > div.adventure > div div {
    width: 55%;
  }
  body main section.kuroki > div > div.adventure > div div p {
    margin: 0;
    font-size: 18px;
  }
  body main section.kuroki > div > div.adventure > div div p:first-child {
    font-size: 20px;
    font-weight: bold;
  }
  body main section.kuroki > div > div.adventure > div div h4 {
    font-size: 26px;
    margin: 0 0 15px;
  }
  body main section.kuroki > div > div.before_after {
    width: 100%;
    justify-content: space-evenly;
  }
  body main section.kuroki > div > div.before_after div {
    width: 48%;
  }
  body main section.kuroki > div > div.before_after div img {
    margin: 0 auto 10px;
  }
  body main section.kuroki > div > div.before_after div .balogo {
    width: 90%;
    margin-bottom: 20px;
  }
  body main section.kuroki > div > div.kuroki_end p {
    font-size: 24px;
    margin: 50px 0 70px;
    line-height: 40px;
  }
}
@media screen and (max-width: 700px) {
  body main section.kuroki {
    width: 90%;
  }
  body main section.kuroki > div h2 {
    font-size: 20px;
    margin: 30px 0;
  }
  body main section.kuroki > div h2::before, body main section.kuroki > div h2::after {
    width: 12px;
    height: 40px;
  }
  body main section.kuroki > div h2::before {
    margin-right: 5px;
  }
  body main section.kuroki > div h2::after {
    margin-left: 5px;
  }
  body main section.kuroki > div > div.greeting p {
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    margin-top: 20px;
  }
  body main section.kuroki > div > div.greeting p span {
    font-size: 24px;
  }
  body main section.kuroki > div > div.greeting p .grbr {
    display: none;
  }
  body main section.kuroki > div h3 img {
    width: 90%;
    margin: 50px auto 30px;
  }
  body main section.kuroki > div > div.adventure > div {
    display: block;
    padding-bottom: 50px;
  }
  body main section.kuroki > div > div.adventure > div img {
    display: block;
    width: 90%;
    margin: auto;
    padding-right: 0;
    border: none;
    padding-bottom: 10px;
  }
  body main section.kuroki > div > div.adventure > div div {
    width: 100%;
    padding-top: 10px;
    border-top: 2px dashed #292f3e;
  }
  body main section.kuroki > div > div.adventure > div div p {
    margin: 0;
    font-size: 16px;
  }
  body main section.kuroki > div > div.adventure > div div p:first-child {
    font-size: 16px;
  }
  body main section.kuroki > div > div.adventure > div div h4 {
    font-size: 20px;
    margin: 0;
  }
  body main section.kuroki > div > div.kuroki_end p {
    width: 90%;
    font-size: 18px;
    margin: 30px auto 50px;
    line-height: 32px;
  }
}
body main section.features {
  box-shadow: #000 0 0 30px;
  background-image: url(../img/bg_orange.jpg);
  background-size: contain;
  border-radius: 30px;
  width: 95%;
  margin: auto;
  overflow-x: hidden;
  padding-top: 3%;
  margin-top: 200px;
}
body main section.features > div.about {
  position: relative;
  width: 90%;
  margin: auto;
}
body main section.features > div.about div.about1 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
body main section.features > div.about div.about1 img {
  width: 48%;
}
body main section.features > div.about div.about1 .rightText {
  transform: translateX(1500px);
  transition: 2s ease;
}
body main section.features > div.about div.about1 .rightText.show {
  transform: translateX(0px);
}
body main section.features > div.about .about1_jet {
  transform: translateX(2500px);
  z-index: 99;
  transition: transform 5s ease;
  position: absolute;
  top: 300px;
}
body main section.features > div.about .about1_jet.animate {
  transform: translateX(-3000px);
}
body main section.features > div.about div.about3 {
  width: 100%;
  display: block;
  margin: auto;
}
body main section.features > div.about div.about3 > img {
  display: block;
  width: 50%;
  max-width: 500px;
  margin: 100px auto 0;
}
body main section.features > div.about div.about3 > p {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
  font-size: 30px;
  font-family: serif;
  font-weight: bold;
}
body main section.features > div.about div.about3 > p span {
  font-size: 60px;
}
body main section.features > div.about div.about3 > div {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 100px auto;
}
body main section.features > div.about div.about3 > div a {
  color: #fff;
  text-decoration: none;
  background-color: #292f3e;
  margin: auto;
  border-radius: 20px;
  padding: 20px;
  display: block;
  text-align: center;
}
body main section.features > div.about div.about3 > div a div {
  display: flex;
  justify-content: center;
  width: 400px;
  margin: auto;
}
body main section.features > div.about div.about3 > div a div img {
  width: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.features > div.about div.about3 > div a div p {
  font-size: 24px;
  font-family: sans-serif;
  font-weight: bold;
}
body main section.features > div.load {
  margin-top: 150px;
}
body main section.features > div.load h2 {
  font-size: 80px;
  text-align: center;
  padding: 100px 0;
  background-color: #fff;
}
body main section.features > div.load > div {
  background-image: url(../img/koushi.jpg);
  background-size: contain;
  padding-bottom: 300px;
}
body main section.features > div.load > div > div {
  width: 90%;
  margin: auto;
}
body main section.features > div.load > div div.load1 {
  display: flex;
  justify-content: center;
  max-width: 1000px;
}
body main section.features > div.load > div div.load1 div {
  width: 50%;
}
body main section.features > div.load > div div.load1 div h3 {
  color: #fff;
  background-color: #292f3e;
  outline: 6px solid #292f3e;
  outline-offset: 10px;
  border-radius: 15px;
  padding: 15px 60px;
  font-size: 40px;
  display: inline-block;
}
body main section.features > div.load > div div.load1 div p {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.4rem;
}
body main section.features > div.load > div div.load1 > img {
  width: 50%;
}
body main section.features > div.load > div div.load2 {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
}
body main section.features > div.load > div div.load2 img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 50%;
}
body main section.features > div.load > div div.load2 > div {
  width: 45%;
  border: 2px solid #292f3e;
  padding: 50px 0;
}
body main section.features > div.load > div div.load2 > div h3 {
  text-align: center;
  font-size: 80px;
  line-height: 1;
  border-bottom: 2px solid #292f3e;
  width: 400px;
  margin: 0 auto 30px;
}
body main section.features > div.load > div div.load2 > div h3 span {
  font-size: 40px;
}
body main section.features > div.load > div div.load2 > div p {
  font-size: 24px;
  padding: 0 50px;
  text-align: center;
  margin: 0;
  font-weight: bold;
}
body main section.features > div.load > div > img {
  display: block;
  width: 80%;
  margin: auto;
}
body main section.features > div.load > div div.load3 {
  display: flex;
  justify-content: space-around;
  max-width: 1000px;
}
body main section.features > div.load > div div.load3 > div {
  display: flex;
  align-items: end;
}
body main section.features > div.load > div div.load3 > div h3 {
  font-size: 80px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  margin: 0;
}
body main section.features > div.load > div div.load3 > div h3 span {
  font-size: 70px;
}
body main section.features > div.load > div div.load3 > div p {
  font-size: 30px;
  margin: 0 0 0 30px;
}
body main section.features > div.load > div div.load4 {
  max-width: 1000px;
}
body main section.features > div.load > div div.load4 > img {
  display: block;
  margin: 100px auto 50px;
  width: 50%;
  max-width: 500px;
}
body main section.features > div.load > div div.load4 h3 img {
  display: block;
  width: 70%;
  margin: auto;
}
body main section.features > div.load > div div.load4 a {
  text-decoration: none;
  color: #000;
  font-size: 40px;
  font-family: serif;
  border-bottom: 3px solid #000;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  padding: 10px 20px;
}
body main section.features > div.load > div div.load5 {
  margin-top: 100px;
  max-width: 1000px;
}
body main section.features > div.load > div div.load5 div {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  justify-content: center;
}
body main section.features > div.load > div div.load5 div h3 {
  font-size: 50px;
  font-family: serif;
  font-weight: bold;
  writing-mode: vertical-rl;
  border-left: 2px solid #000;
  padding-left: 20px;
  margin: 0 50px 0 150px;
}
body main section.features > div.load > div div.load5 div p {
  margin: 0;
}
body main section.features > div.load > div div.load5 div p:first-child {
  font-size: 100px;
  font-family: serif;
  font-weight: bold;
  padding: 30px;
  border-radius: 300px;
  border: 2px solid #000;
  line-height: 1.2;
}
body main section.features > div.load > div div.load5 div p:last-child {
  font-size: 30px;
  font-family: serif;
}
body main section.features > div.load > div div.load5_6 {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
}
body main section.features > div.load > div div.load5_6 img {
  width: 300px;
}
body main section.features > div.load > div div.load6 div.load6_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
body main section.features > div.load > div div.load6 div.load6_title p {
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: bold;
}
body main section.features > div.load > div div.load6 div.load6_title p:first-child {
  font-size: 150px;
  font-family: serif;
}
body main section.features > div.load > div div.load6 div.load6_title p:last-child {
  font-size: 30px;
  letter-spacing: 1rem;
  text-align: center;
  padding: 0 50px;
}
body main section.features > div.load > div div.load6 div.load6_gallery {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
body main section.features > div.load > div div.load6 div.load6_gallery img {
  -o-object-fit: contain;
     object-fit: contain;
}
body main section.features > div.load > div div.load6 div.load6_link {
  display: flex;
  justify-content: space-evenly;
  text-align: center;
}
body main section.features > div.load > div div.load6 div.load6_link div p {
  color: #fff;
  background-color: #292f3e;
  outline: 5px solid #292f3e;
  outline-offset: 5px;
  border-radius: 15px;
  padding: 10px 30px;
  font-size: 30px;
  display: inline-block;
  font-weight: bold;
  margin: 100px 0 0;
}
body main section.features > div.load > div div.load6 div.load6_link div img {
  display: block;
  width: 300px;
  margin: 50px 0;
}
body main section.features > div.load > div div.load6 div.load6_link div a {
  text-decoration: none;
  color: #fff;
  background-color: #292f3e;
  font-size: 30px;
  padding: 20px;
  display: block;
}
body main section.features > div.load > div div.load7 {
  margin-top: 100px;
}
body main section.features > div.load > div div.load7 div {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main section.features > div.load > div div.load7 div p {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin: 0 100px 0 0;
}
body main section.features > div.load > div div.load7 div p span {
  font-size: 30px;
}
@media screen and (max-width: 1600px) {
  body main section.features > div.load > div div.load7 {
    margin-bottom: 100px;
  }
  body main section.features > div.load > div div.load7 div > img {
    width: 30%;
  }
  body main section.features > div.load > div div.load7 div p {
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    margin: 0 100px 0 0;
  }
  body main section.features > div.load > div div.load7 div p span {
    font-size: 30px;
  }
  body main section.features > div.load > div div.load7 div h3 img {
    width: 60%;
  }
}
body main section.features > div.load > div div.load8 div {
  display: flex;
  align-items: center;
  justify-content: center;
}
body main section.features > div.load > div div.load8 div p {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.8rem;
  border-bottom: 5px solid #000;
  padding: 10px 50px;
  margin-right: 100px;
}
body main section.features > div.load > div div.load8 div img {
  width: 400px;
}
body main section.features > div.complete {
  background-color: #fff;
  padding: 200px 0;
  text-align: center;
}
body main section.features > div.complete p {
  margin: 0;
  font-weight: bold;
}
body main section.features > div.complete p:first-child {
  font-size: 100px;
  font-family: serif;
}
body main section.features > div.complete p:nth-child(3) {
  font-size: 30px;
  font-family: serif;
  margin-bottom: 50px;
  letter-spacing: 1rem;
}
body main section.features > div.complete p:last-child {
  font-size: 40px;
  letter-spacing: 1.2rem;
  border: 1px solid #000;
  padding: 40px 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
body main section.features > div.complete div {
  margin: 100px auto;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
}
body main section.features > div.complete div img {
  display: block;
}
body main section.features > div.complete div img:first-child, body main section.features > div.complete div img:last-child {
  width: 150px;
}
body main section.features > div.complete div img:nth-child(2) {
  margin: 0 100px;
  width: 500px;
}
@media screen and (max-width: 1050px) {
  body main section.features {
    box-shadow: #000 0 0 15px;
    width: 90%;
    margin-top: 100px;
    padding-top: 100px;
  }
  body main section.features > div.about div.about1 {
    width: 100%;
    display: block;
  }
  body main section.features > div.about div.about1 img {
    display: block;
    width: 100%;
    margin: 0 auto 50px;
  }
  body main section.features > div.about div.about1 .rightText {
    transform: translateX(4000px);
  }
  body main section.features > div.about .about1_jet {
    top: 800px;
  }
  body main section.features > div.about div.about3 > img {
    display: block;
    width: 50%;
    max-width: 500px;
    margin: 100px auto 0;
  }
  body main section.features > div.about div.about3 > p {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 50px auto;
    font-size: 30px;
    font-family: serif;
    font-weight: bold;
  }
  body main section.features > div.about div.about3 > p span {
    font-size: 60px;
  }
  body main section.features > div.about div.about3 > div {
    display: block;
    width: 80%;
    max-width: 500px;
    margin: 50px auto;
  }
  body main section.features > div.about div.about3 > div a {
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }
  body main section.features > div.about div.about3 > div a div {
    display: flex;
    width: 300px;
    margin: auto;
  }
  body main section.features > div.about div.about3 > div a div img {
    width: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body main section.features > div.about div.about3 > div a div p {
    font-size: 20px;
    font-family: sans-serif;
    font-weight: bold;
  }
  body main section.features > div.load {
    margin-top: 50px;
  }
  body main section.features > div.load h2 {
    font-size: 40px;
    padding: 50px 0;
  }
  body main section.features > div.load > div {
    padding-bottom: 100px;
  }
  body main section.features > div.load > div > div {
    width: 90%;
    margin: auto;
  }
  body main section.features > div.load > div div.load1 {
    max-width: 1000px;
  }
  body main section.features > div.load > div div.load1 div {
    width: 50%;
  }
  body main section.features > div.load > div div.load1 div h3 {
    outline: 4px solid #292f3e;
    outline-offset: 6px;
    border-radius: 10px;
    padding: 10px 40px;
    font-size: 30px;
  }
  body main section.features > div.load > div div.load1 div p {
    font-size: 26px;
    font-weight: bold;
    letter-spacing: unset;
  }
  body main section.features > div.load > div div.load1 > img {
    width: 50%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body main section.features > div.load > div div.load2 {
    margin-top: 50px;
  }
  body main section.features > div.load > div div.load2 img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 50%;
  }
  body main section.features > div.load > div div.load2 > div {
    width: 45%;
    padding: 30px 0;
  }
  body main section.features > div.load > div div.load2 > div h3 {
    font-size: 50px;
    width: 250px;
    margin: 0 auto 10px;
    padding-bottom: 10px;
  }
  body main section.features > div.load > div div.load2 > div h3 span {
    font-size: 30px;
  }
  body main section.features > div.load > div div.load2 > div p {
    font-size: 20px;
    padding: 0 20px;
  }
  body main section.features > div.load > div > img {
    width: 90%;
  }
  body main section.features > div.load > div div.load3 > div {
    align-items: center;
  }
  body main section.features > div.load > div div.load3 > div h3 {
    font-size: 40px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    margin: 0;
  }
  body main section.features > div.load > div div.load3 > div h3 span {
    font-size: 36px;
  }
  body main section.features > div.load > div div.load3 > div p {
    font-size: 20px;
    margin: 0 0 0 30px;
  }
  body main section.features > div.load > div div.load4 > img {
    margin: 50px auto 30px;
  }
  body main section.features > div.load > div div.load4 a {
    font-size: 24px;
    border-bottom: 2px solid #000;
    margin: 15px auto 0;
    padding: 5px 10px;
  }
  body main section.features > div.load > div div.load5 {
    margin-top: 50px;
  }
  body main section.features > div.load > div div.load5 div h3 {
    font-size: 32px;
    padding-left: 10px;
    margin: 0 20px 0 70px;
  }
  body main section.features > div.load > div div.load5 div p {
    margin: 0;
  }
  body main section.features > div.load > div div.load5 div p:first-child {
    font-size: 50px;
    padding: 20px;
  }
  body main section.features > div.load > div div.load5 div p:last-child {
    font-size: 20px;
  }
  body main section.features > div.load > div div.load5_6 img {
    display: block;
    margin: 30px auto;
    width: 150px;
  }
  body main section.features > div.load > div div.load6 div.load6_title p:first-child {
    font-size: 50px;
    font-family: serif;
  }
  body main section.features > div.load > div div.load6 div.load6_title p:last-child {
    font-size: 24px;
    letter-spacing: unset;
    padding: 0 20px;
  }
  body main section.features > div.load > div div.load6 div.load6_gallery img {
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  body main section.features > div.load > div div.load6 div.load6_link div p {
    outline: 3px solid #292f3e;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 22px;
    display: inline-block;
    font-weight: bold;
    margin: 50px 0 0;
  }
  body main section.features > div.load > div div.load6 div.load6_link div img {
    display: block;
    width: 200px;
    margin: 50px 0;
  }
  body main section.features > div.load > div div.load6 div.load6_link div a {
    text-decoration: none;
    color: #fff;
    background-color: #292f3e;
    font-size: 22px;
    padding: 10px 20px;
    display: block;
  }
  body main section.features > div.load > div div.load7 {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  body main section.features > div.load > div div.load7 div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main section.features > div.load > div div.load7 div p {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    margin: 0 30px 0 0;
  }
  body main section.features > div.load > div div.load7 div p span {
    font-size: 30px;
  }
  body main section.features > div.load > div div.load8 div {
    display: block;
  }
  body main section.features > div.load > div div.load8 div p {
    font-size: 24px;
    text-align: center;
    letter-spacing: unset;
    border-bottom: 2px solid #000;
    padding: 10px 0px;
    margin-right: 0;
  }
  body main section.features > div.load > div div.load8 div img {
    display: block;
    margin: auto;
    width: 300px;
  }
  body main section.features > div.complete {
    padding: 50px 0;
  }
  body main section.features > div.complete p {
    margin: 0;
    font-weight: bold;
  }
  body main section.features > div.complete p:first-child {
    font-size: 50px;
    font-family: serif;
  }
  body main section.features > div.complete p:nth-child(3) {
    font-size: 24px;
    font-family: serif;
    margin-bottom: 20px;
    letter-spacing: unset;
  }
  body main section.features > div.complete p:last-child {
    font-size: 30px;
    letter-spacing: unset;
    padding: 20px 60px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  body main section.features > div.complete div {
    margin: 30px auto;
    justify-content: center;
  }
  body main section.features > div.complete div img {
    display: block;
  }
  body main section.features > div.complete div img:first-child, body main section.features > div.complete div img:last-child {
    width: 50px;
  }
  body main section.features > div.complete div img:nth-child(2) {
    margin: 0 30px;
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  body main section.features {
    box-shadow: #000 0 0 10px;
    margin-top: 50px;
    padding-top: 50px;
  }
  body main section.features > div.about div.about1 img {
    margin: 0 auto 30px;
  }
  body main section.features > div.about div.about1 .rightText {
    transform: translateX(3000px);
  }
  body main section.features > div.about .about1_jet {
    top: 100px;
  }
  body main section.features > div.about div.about3 > div {
    display: block;
    width: 90%;
    margin: 30px auto;
  }
  body main section.features > div.about div.about3 > div a {
    border-radius: 10px;
    padding: 10px 0;
    margin-bottom: 20px;
  }
  body main section.features > div.about div.about3 > div a div {
    display: flex;
    width: 200px;
    margin: auto;
  }
  body main section.features > div.about div.about3 > div a div img {
    width: 50px;
  }
  body main section.features > div.about div.about3 > div a div p {
    font-size: 18px;
  }
  body main section.features > div.load {
    margin-top: 30px;
  }
  body main section.features > div.load h2 {
    font-size: 28px;
    padding: 30px 0;
  }
  body main section.features > div.load > div {
    padding-bottom: 50px;
  }
  body main section.features > div.load > div > div {
    width: 90%;
    margin: auto;
  }
  body main section.features > div.load > div div.load1 {
    display: block;
  }
  body main section.features > div.load > div div.load1 div {
    width: 90%;
    margin: auto;
  }
  body main section.features > div.load > div div.load1 div h3 {
    padding: 10px 20px;
    font-size: 22px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  body main section.features > div.load > div div.load1 div p {
    font-size: 20px;
  }
  body main section.features > div.load > div div.load1 > img {
    display: block;
    width: 60%;
    margin: auto;
  }
  body main section.features > div.load > div div.load2 {
    margin-top: 0;
    display: block;
  }
  body main section.features > div.load > div div.load2 img {
    display: block;
    width: 60%;
    margin: auto;
  }
  body main section.features > div.load > div div.load2 > div {
    width: 100%;
    padding: 15px 0;
  }
  body main section.features > div.load > div div.load2 > div h3 {
    font-size: 30px;
    width: 250px;
    margin: 0 auto 10px;
    padding-bottom: 10px;
  }
  body main section.features > div.load > div div.load2 > div h3 span {
    font-size: 22px;
  }
  body main section.features > div.load > div div.load2 > div p {
    font-size: 18px;
  }
  body main section.features > div.load > div > img {
    width: 100%;
    margin: 20px 0;
  }
  body main section.features > div.load > div div.load3 > div {
    align-items: center;
  }
  body main section.features > div.load > div div.load3 > div h3 {
    font-size: 30px;
    line-height: 1;
    text-align: center;
    display: inline-block;
    margin: 0;
  }
  body main section.features > div.load > div div.load3 > div h3 span {
    font-size: 24px;
  }
  body main section.features > div.load > div div.load3 > div p {
    font-size: 18px;
    margin: 0 0 0 30px;
  }
  body main section.features > div.load > div div.load3 img {
    display: none;
  }
  body main section.features > div.load > div div.load4 > img {
    margin: 30px auto 10px;
  }
  body main section.features > div.load > div div.load4 a {
    font-size: 20px;
    border-bottom: 1px solid #000;
    margin: 5px auto 0;
    padding: 5px;
  }
  body main section.features > div.load > div div.load5 {
    margin-top: 30px;
  }
  body main section.features > div.load > div div.load5 div h3 {
    font-size: 24px;
    padding-left: 5px;
    margin: 0 0px 0 10px;
  }
  body main section.features > div.load > div div.load5 div p:first-child {
    font-size: 30px;
    padding: 15px;
  }
  body main section.features > div.load > div div.load5 div p:last-child {
    font-size: 18px;
  }
  body main section.features > div.load > div div.load5_6 img {
    display: block;
    margin: 20px auto;
    width: 100px;
  }
  body main section.features > div.load > div div.load6 div.load6_title p:first-child {
    font-size: 40px;
  }
  body main section.features > div.load > div div.load6 div.load6_title p:last-child {
    font-size: 20px;
    letter-spacing: unset;
    padding: 0 10px;
  }
  body main section.features > div.load > div div.load6 div.load6_link div img {
    width: 150px;
    margin: 30px auto;
  }
  body main section.features > div.load > div div.load7 {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  body main section.features > div.load > div div.load7 div {
    justify-content: center;
    align-items: center;
  }
  body main section.features > div.load > div div.load7 div img.japanmap {
    display: none;
  }
  body main section.features > div.load > div div.load7 div p {
    font-size: 16px;
    text-align: center;
    font-weight: bold;
    margin: 0;
  }
  body main section.features > div.load > div div.load7 div p span {
    font-size: 22px;
  }
  body main section.features > div.load > div div.load7 div h3 {
    width: 150px;
  }
  body main section.features > div.load > div div.load7 div h3 img {
    margin-left: 20px;
  }
  body main section.features > div.load > div div.load8 div img {
    width: 90%;
  }
  body main section.features > div.complete {
    padding: 30px 0;
  }
  body main section.features > div.complete p:first-child {
    font-size: 40px;
  }
  body main section.features > div.complete p:nth-child(3) {
    font-size: 20px;
    margin-bottom: 20px;
  }
  body main section.features > div.complete p:last-child {
    font-size: 24px;
    letter-spacing: unset;
    padding: 10px 20px;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
  body main section.features > div.complete div {
    margin: 30px auto;
    justify-content: center;
  }
  body main section.features > div.complete div img {
    display: block;
  }
  body main section.features > div.complete div img:first-child, body main section.features > div.complete div img:last-child {
    width: 30px;
  }
  body main section.features > div.complete div img:nth-child(2) {
    margin: 0 30px;
    width: 150px;
  }
}
body main section.voice {
  margin-top: 200px;
}
body main section.voice .voice_archive_link a {
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding: 20px 40px;
  border: 5px solid #fff;
  display: block;
  width: fit-content;
  margin: auto;
  color: #fff;
}
body main section.voice h2 {
  letter-spacing: 1rem;
  margin: 0;
  color: #fff;
  font-weight: bold;
  font-family: serif;
  text-align: center;
  font-size: 60px;
  text-shadow: 0px 0px 10px rgb(0, 0, 0);
}
body main section.voice > div {
  width: 80%;
  max-width: 1200px;
  margin: 100px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
body main section.voice > div div {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  text-align: center;
  transition: 0.5s;
  will-change: transform;
}
body main section.voice > div div a {
  display: block;
  width: 250px;
  height: 250px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 25px;
  transition: 0.5s;
  border-radius: 50%;
  text-decoration: none;
  color: #000;
}
body main section.voice > div div a img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}
body main section.voice > div div a h3 {
  margin: 0;
  font-size: 22px;
  padding-bottom: 10px;
  border-bottom: 3px dashed #000;
}
body main section.voice > div div a p {
  margin: 0;
  padding: 10px 30px;
  opacity: 0;
  transition: 0.3s;
  overflow: hidden;
}
body main section.voice > div div a:hover {
  transform: scale(1.2);
}
body main section.voice > div div a:hover p {
  opacity: 1;
}
@media screen and (max-width: 900px) {
body main section.voice > div {
  justify-content: center;
}
}
@media screen and (max-width: 600px) {
  body main section.voice {
    margin-top: 100px;
  }
  body main section.voice h2 {
    letter-spacing: 1rem;
    font-size: 40px;
    text-shadow: 0px 0px 6px rgb(0, 0, 0);
  }
  body main section.voice > div {
    width: 80%;
    margin: 50px auto 0;
    display: block;
    gap: 50px;
  }
  body main section.voice > div div {
    margin: 0 auto 50px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    text-align: center;
    transition: 0.5s;
    will-change: transform;
  }
}
body main section.end {
  margin-top: 200px;
}
body main section.end div.mes img {
  display: block;
  margin: auto;
}
body main section.end div.mes img:first-child {
  margin-bottom: 100px;
}
body main section.end div.mes img:last-child {
  width: 1200px;
}
body main section.end div.endlink {
  width: 1500px;
  margin: 500px auto 0;
  display: flex;
  justify-content: space-around;
}
body main section.end div.endlink img {
  display: block;
  width: 600px;
}
@media screen and (max-width: 1500px) {
  body main section.end div.mes img:first-child {
    width: 80%;
  }
  body main section.end div.mes img:last-child {
    max-width: 1200px;
    width: 80%;
  }
  body main section.end div.endlink {
    width: 100%;
    margin: 300px auto 0;
  }
  body main section.end div.endlink img {
    display: block;
    width: 450px;
  }
}
@media screen and (max-width: 1000px) {
  body main section.end {
    margin-top: 50px;
  }
  body main section.end div.mes img:first-child {
    margin-bottom: 50px;
  }
  body main section.end div.endlink {
    margin: 50px auto 0;
    display: block;
  }
  body main section.end div.endlink img {
    display: block;
    min-width: 300px;
    width: 70%;
    margin: 0 auto 30px;
  }
}
body footer {
  margin-top: 100px;
  padding: 50px;
}
body footer div.sns {
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
  padding: 30px;
}
body footer div.sns ul {
  display: flex;
  justify-content: space-between;
  width: 600px;
}
body footer div.sns ul li {
  list-style: none;
}
body footer div.address {
  text-align: right;
}
body footer div.address img {
  width: 150px;
  margin-top: 200px;
  margin-bottom: 50px;
}
body footer div.privacy {
  padding: 50px;
  border-top: 3px solid #fff;
  font-weight: bold;
}
body footer div.privacy a {
  text-decoration: none;
  color: #fff;
  font-size: 22px;
}
@media screen and (max-width: 1000px) {
  body footer {
    padding: 0px;
  }
  body footer div.sns {
    padding: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  body footer div.sns ul {
    flex-wrap: wrap;
    width: 90%;
    padding-inline-start: 0;
    margin: auto;
    justify-content: space-evenly;
  }
  body footer div.address img {
    width: 80px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  body footer div.privacy {
    padding: 50px;
    border-top: 3px solid #fff;
  }
  body footer div.privacy a {
    text-decoration: none;
    color: #fff;
    font-size: 22px;
  }
}

/*about.html*/
main section.about_overview {
  color: #fff;
  font-family: serif;
  padding-top: 300px;
}
main section.about_overview div {
  width: 800px;
  margin: auto;
}
main section.about_overview div img {
  display: block;
  margin: auto;
  width: 200px;
}
main section.about_overview div h2 {
  font-size: 60px;
  text-align: center;
  margin-bottom: 0;
}
main section.about_overview div p {
  font-size: 30px;
  text-align: center;
  margin-top: 10px;
}
main section.about_overview div table {
  margin: 100px auto;
  position: relative;
  border-collapse: collapse;
  border-spacing: 0;
}
main section.about_overview div table tr td {
  padding: 20px 100px;
  font-size: 24px;
  vertical-align: top;
  font-weight: bold;
}
main section.about_overview div table tr td:first-child {
  border-right: 8px solid #fff;
}
@media screen and (max-width: 1000px) {
  main section.about_overview {
    padding-top: 150px;
  }
  main section.about_overview div {
    width: 90%;
  }
  main section.about_overview div img {
    width: 130px;
  }
  main section.about_overview div h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 0;
  }
  main section.about_overview div p {
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
  }
  main section.about_overview div table {
    margin: 30px auto;
  }
  main section.about_overview div table tr td {
    padding: 10px;
    font-size: 18px;
  }
  main section.about_overview div table tr td:first-child {
    border-right: 2px solid #fff;
  }
}
main section.about_representative {
  margin-top: 200px;
}
main section.about_representative div {
  width: 99%;
  margin: auto;
}
main section.about_representative div img {
  display: block;
  width: 100%;
}
main section.about_representative div div {
  width: 100%;
  background-color: #fff;
  padding-bottom: 150px;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
}
main section.about_representative div div h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  text-align: center;
  padding: 40px 200px;
  border: 1px solid #333;
  font-size: 30px;
}
main section.about_representative div div figure img {
  display: block;
  margin: auto;
  width: 300px;
}
main section.about_representative div div figure figcaption {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
}
main section.about_representative div div p {
  font-size: 20px;
  font-weight: bold;
  line-height: 60px;
  width: 1000px;
  margin: auto;
}
main section.about_representative div div h3 {
  font-size: 40px;
  font-family: serif;
  text-align: center;
}
main section.about_representative div div h4 {
      width: 1000px;
    margin: auto;
    font-size: 30px;
    font-family: serif;
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
    margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  main section.about_representative {
    margin-top: 100px;
  }
  main section.about_representative div {
    width: 96%;
  }
  main section.about_representative div div {
    width: 100%;
    padding-bottom: 50px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
  }
  main section.about_representative div div h2 {
    margin: 0 auto 30px;
    padding: 10px 30px;
    border: 1px solid #333;
    font-size: 24px;
  }
  main section.about_representative div div figure img {
    display: block;
    margin: auto;
    width: 100px;
  }
  main section.about_representative div div figure figcaption {
    font-size: 18px;
    margin-top: 10px;
  }
  main section.about_representative div div p {
    font-size: 18px;
    font-weight: unset;
    line-height: 30px;
    width: 90%;
    margin: auto;
  }
}

/*contact.html*/
main section.contact {
  padding-top: 200px;
}
main section.contact h2 {
  color: #fff;
  text-align: center;
  margin-bottom: 100px;
  font-size: 28px;
}
main section.contact div.contact_links {
  display: flex;
  width: 80%;
  max-width: 1200px;
  margin: auto;
  justify-content: space-between;
}
main section.contact div.contact_links div {
  text-align: center;
  margin: auto;
  width: 300px;
}
main section.contact div.contact_links div a {
  display: block;
  color: #292f3e;
  text-decoration: none;
  font-weight: bold;
  font-size: 26px;
  background-color: #fff;
  padding: 20px 50px;
  border-radius: 50px;
}
main section.contact div.contact_links div p {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}
main section.contact div.contact_form {
  width: 800px;
  margin: auto;
  padding-top: 100px;
}
/*
main section.contact div.contact_form form label {
  color: #fff;
  font-size: 20px;
  margin-top: 50px;
  font-weight: bold;
}
main section.contact div.contact_form form label span {
  line-height: 32px;
}
main section.contact div.contact_form form label input {
  width: 50px;
  margin: 0;
  height: unset;
  transform: scale(3);
}
main section.contact div.contact_form form label.form_privacy {
  display: block;
  text-align: center;
  margin: 100px auto;
}
main section.contact div.contact_form form input {
  margin-bottom: 50px;
  width: 100%;
  font-size: 20px;
  height: 2rem;
}
  */
main section.contact div.contact_form form textarea {
  width: 100%;
  font-size: 20px;
}
main section.contact div.contact_form form button {
  font-size: 20px;
  background-color: #fff;
  color: #333;
  font-weight: bold;
  border: none;
  padding: 8px 70px;
  border-radius: 10px;
  display: block;
  margin: auto;
  transition: 0.3s;
}
main section.contact div.contact_form form button:hover {
  background-color: #b4e2ff;
}
main section.contact div.contact_form > div {
  color: #fff;
  margin-top: 100px;
}
main section.contact div.contact_form > div h3 {
  font-size: 26px;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 30px;
  border-bottom: 3px solid #fff;
}
main section.contact div.contact_form > div p {
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 1300px) {
  main section.contact {
    padding-top: 150px;
  }
  main section.contact h2 {
    margin-bottom: 50px;
  }
  main section.contact div.contact_links {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  main section.contact h2 {
    font-size: 24px;
  }
  main section.contact div.contact_links {
    display: block;
  }
  main section.contact div.contact_links div a {
    display: block;
    font-size: 22px;
    padding: 10px 20px;
    border-radius: 50px;
  }
  main section.contact div.contact_links div p {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 30px;
  }
  main section.contact div.contact_form {
    width: 90%;
    padding-top: 50px;
  }
  main section.contact div.contact_form form label {
    font-size: 18px;
    margin-top: 30px;
  }
  main section.contact div.contact_form form label span {
    line-height: 22px;
  }
  main section.contact div.contact_form form label input {
    width: 100%;
    margin: 0;
    height: unset;
  }
  main section.contact div.contact_form form label input[type="checkbox"] {
    width: 50px;
    transform: scale(2);
  }
  main section.contact div.contact_form form label.form_privacy {
    margin: 50px auto;
  }
  main section.contact div.contact_form form input {
    margin-bottom: 50px;
    width: 100%;
    font-size: 20px;
    height: 2rem;
  }
  main section.contact div.contact_form form textarea {
    font-size: 18px;
  }
  main section.contact div.contact_form form button {
    font-size: 18px;
    background-color: #fff;
    color: #333;
    font-weight: bold;
    border: none;
    padding: 8px 50px;
    border-radius: 10px;
    display: block;
    margin: auto;
    transition: 0.3s;
  }
  main section.contact div.contact_form form button:hover {
    background-color: #b4e2ff;
  }
  main section.contact div.contact_form > div {
    color: #fff;
    margin-top: 100px;
  }
  main section.contact div.contact_form > div h3 {
    font-size: 26px;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 30px;
    border-bottom: 3px solid #fff;
  }
  main section.contact div.contact_form > div p {
    font-size: 18px;
    font-weight: bold;
  }
}

/*sightseeing.html*/
main section.sightseeing {
  padding-top: 200px;
}
main section.sightseeing svg a {
  display: block;
  transition: 1s;
  transform-origin: center;
}
main section.sightseeing svg a:hover {
  transform: scale(1.05);
}
main section.sightseeing svg.spsvg {
  display: none;
}
main section.sightseeing > div img {
  display: block;
  margin: auto;
}
main section.sightseeing > div.spimgs {
  display: none;
}

@media screen and (max-width: 1000px) {
  main section.sightseeing {
    padding-top: 100px;
  }
  main section.sightseeing svg.pcsvg {
    display: none;
  }
  main section.sightseeing svg.spsvg {
    display: block;
  }
  main section.sightseeing > div.pcimgs {
    display: none;
  }
  main section.sightseeing > div.spimgs {
    display: block;
  }
  main section.sightseeing > div.spimgs img {
    width: 90%;
    max-width: 600px;
  }
}
/*plan.html*/
main section.plan {
  padding-top: 200px;
  color: #fff;
}
main section.plan h2 {
  font-size: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 30px 70px;
  border: 6px solid #fff;
  margin-bottom: 80px;
}
main section.plan > div ul {
  display: flex;
  width: 1200px;
  margin: auto;
  justify-content: space-between;
  padding: 0;
}
main section.plan > div ul li {
  width: 380px;
  list-style: none;
  background-color: #fff;
  color: #292f3e;
  font-size: 20px;
  border-radius: 20px;
}
main section.plan > div ul li h3 {
  border-radius: 20px 20px 0 0;
  background-color: #292f3e;
  color: #fff;
  margin: 0;
  text-align: center;
  padding: 15px 0;
  font-size: 34px;
}
main section.plan > div ul li p:nth-child(2) {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
main section.plan > div ul li p:nth-child(3) {
  padding: 0 20px;
}
main section.plan > div ul li p:last-child {
  text-align: center;
  font-weight: bold;
  border-top: 3px dashed #292f3e;
  padding-top: 20px;
  font-size: 22px;
}
@media screen and (max-width: 1250px) {
  main section.plan {
    padding-top: 150px;
  }
  main section.plan h2 {
    font-size: 26px;
    padding: 20px 50px;
    border: 4px solid #fff;
    margin-bottom: 50px;
  }
  main section.plan > div {
    width: 100%;
  }
  main section.plan > div ul {
    display: block;
    width: 100%;
  }
  main section.plan > div ul li {
    margin: auto;
    width: 90%;
    max-width: 380px;
    font-size: 16px;
  }
  main section.plan > div ul li h3 {
    font-size: 26px;
  }
  main section.plan > div ul li p:last-child {
    padding-bottom: 20px;
    font-size: 20px;
  }
}
main section.option {
  color: #292f3e;
  margin-top: 200px;
}
main section.option h2 {
  padding: 30px 100px;
  border-radius: 50px;
  background-color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
}
main section.option > div {
  display: flex;
  width: 1000px;
  margin: auto;
  flex-wrap: wrap;
  justify-content: space-around;
}
main section.option > div > div {
  background-color: #fff;
  width: 400px;
  height: 400px;
  border-radius: 450px;
  position: relative;
  box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.5);
  margin-top: 80px;
}
main section.option > div > div div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
main section.option > div > div div h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 0 30px 30px;
  font-size: 30px;
  border-bottom: 3px dashed #292f3e;
}
main section.option > div > div div p {
  padding: 0 50px;
}
main section.option > p {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  main section.option {
    margin-top: 100px;
  }
  main section.option h2 {
    padding: 20px 50px;
  }
  main section.option > div {
    width: 100%;
  }
  main section.option > div > div {
    margin: 50px auto 0;
    width: 300px;
    height: 300px;
  }
  main section.option > div > div div h3 {
    font-size: 24px;
    padding: 0 20px 10px;
  }
  main section.option > div > div div p {
    margin-bottom: 0;
  }
  main section.option > p {
    width: 90%;
    margin: 100px auto 0;
    font-size: 20px;
  }
}

/*news.html*/
main section.news {
  color: #fff;
  padding-top: 200px;
}
main section.news h2 {
  font-size: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding: 30px 70px;
  border: 6px solid #fff;
  margin-bottom: 80px;
}
main section.news > div.news_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-left: 0;
}
main section.news > div.news_list ul li {
  list-style: none;
  width: 300px;
  border-right: 3px solid #fff;
  padding-right: 50px;
  padding-left: 50px;
  margin-top: 50px;
}
main section.news > div.news_list ul li a {
  text-decoration: none;
  color: #fff;
}
main section.news > div.news_list ul li a div {
  display: flex;
}
main section.news > div.news_list ul li a div p {
  font-family: serif;
  font-weight: bold;
  font-size: 22px;
  writing-mode: vertical-rl;
  transform: scale(-1, -1);
  text-align: right;
  padding-bottom: 15px;
  margin: 0;
  margin-right: 10px;
}
main section.news > div.news_list ul li a div img {
  width: 230px;
  height: 230px;
}
main section.news > div.news_list ul li a > p {
  font-weight: bold;
}
main section.news > div.news_list ul li:nth-of-type(4n) {
  border-right: none;
}
main section.news > div.news_arrows {
  display: flex;
  align-items: center;
  width: 300px;
  margin: 100px auto;
  justify-content: center;
}
main section.news > div.news_arrows a {
  text-decoration: none;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
}
main section.news > div.news_arrows a.prev_arrow,
main section.news > div.news_arrows a.next_arrow {
  margin: 0 100px;
}

main section.news > div.news_arrows a img {
  width: 70px;
}
main section.news > div.news_arrows a:first-child img {
  transform: rotate(180deg);
}
@media screen and (max-width: 1300px) {
  main section.news > div.news_list ul li:nth-of-type(3n) {
    border-right: none;
  }
}
@media screen and (max-width: 1260px) {
  main section.news > div.news_list ul li:nth-of-type(2n) {
    border-right: none;
  }
  main section.news > div.news_list ul li:nth-of-type(3n) {
    border-right: 3px solid #fff;
  }
}
@media screen and (max-width: 860px) {
  main section.news > div.news_list ul li:nth-of-type(1n) {
    border-right: none;
  }
}

/*privacy.html*/
main section.privacy{
  width: 90%;
  max-width: 1000px;
  margin: auto;
  color: #fff;
  padding-top: 150px;
}
@media screen and (max-width: 1000px) {
main section.privacy{
  padding-top: 100px;
}
}

/*single.html*/
main section.single {
  padding-top: 250px;
}
main section.single > div {
  background-color: #fff;
  width: 80%;
  margin: auto;
  padding: 100px;
  color: #292f3e;
  border-radius: 30px;
  border: 3px solid #292f3e;
}
main section.single > div h2 {
  font-size: 42px;
  text-align: center;
  margin-bottom: 100px;
}
main section.single > div > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
main section.single > div > div img {
  display: block;
  width: 30%;
  height: -moz-fit-content;
  height: fit-content;
}
main section.single > div > div div {
  border-left: 3px solid #292f3e;
  width: 60%;
  padding-left: 5%;
}
main section.single > div > div div h3 {
  font-size: 30px;
}
@media screen and (max-width: 1000px) {
  main section.single {
    padding-top: 100px;
  }
  main section.single > div {
    padding: 50px;
  }
  main section.single > div h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  main section.single > div > div {
    display: block;
  }
  main section.single > div > div img {
    width: 90%;
    height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
  main section.single > div > div div {
    width: 100%;
    margin: auto;
    border: none;
    padding-left: 0;
  }
  main section.single > div > div div h3 {
    text-align: center;
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  main section.single > div {
    padding: 30px;
  }
  main section.single > div h2 {
    font-size: 26px;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  main section.single > div > div {
    display: block;
  }
  main section.single > div > div img {
    width: 90%;
    height: 300px;
    -o-object-fit: contain;
       object-fit: contain;
    margin: auto;
  }
  main section.single > div > div div {
    width: 100%;
    margin: auto;
    border: none;
    padding-left: 0;
  }
  main section.single > div > div div h3 {
    font-size: 22px;
    text-align: center;
  }
}

/*flow.html*/
main section.flow {
  padding-top: 250px;
}
main section.flow > div {
  width: 1000px;
  margin: auto;
}
main section.flow > div h2 {
  color: #fff;
  font-size: 30px;
  padding: 30px 70px;
  text-align: center;
  border: 5px solid #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
}
main section.flow > div div div {
  width: 860px;
  padding: 20px 70px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #fff;
  border-radius: 20px;
}
main section.flow > div div div div.fn1 {
  background-color: #292f3e;
  color: #fff;
  width: 50px;
  border-radius: unset;
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
main section.flow > div div div div.fc1 {
  width: 760px;
  color: #292f3e;
  padding: 0 0 0 50px;
  display: block;
  border-bottom: 5px solid #292f3e;
  border-radius: unset;
}
main section.flow > div div div div.fc1 h3 {
  font-size: 28px;
}
main section.flow > div div img {
  display: block;
  width: 150px;
  margin: 50px auto;
}
@media screen and (max-width: 1000px) {
  main section.flow > div {
    width: 90%;
    max-width: 1000px;
  }
  main section.flow > div h2 {
    font-size: 24px;
    padding: 20px 50px;
    border: 3px solid #fff;
    margin: 0 auto 50px;
  }
  main section.flow > div div div {
    width: 80%;
    margin: auto;
    padding: 20px 50px;
  }
  main section.flow > div div div div.fn1 {
    width: 50px;
    font-size: 24px;
  }
  main section.flow > div div div div.fc1 {
    width: 70%;
    border-bottom: 5px solid #292f3e;
    border-radius: unset;
    margin: 0;
  }
  main section.flow > div div div div.fc1 h3 {
    font-size: 28px;
  }
  main section.flow > div div img {
    width: 100px;
    margin: 20px auto;
  }
}
@media screen and (max-width: 600px) {
  main section.flow {
    padding-top: 100px;
  }
  main section.flow > div {
    width: 80%;
  }
  main section.flow > div div div {
    width: 90%;
    margin: auto;
    padding: 20px;
  }
  main section.flow > div div div div.fn1 {
    width: 30px;
    font-size: 20px;
  }
  main section.flow > div div div div.fc1 {
    width: 70%;
    border-bottom: 5px solid #292f3e;
    border-radius: unset;
    margin: 0;
    padding-left: 20px;
  }
  main section.flow > div div div div.fc1 h3 {
    font-size: 22px;
  }
  main section.flow > div div img {
    width: 70px;
    margin: 10px auto;
  }
}

/*archive-voice.php*/

main section.v_archive{
  padding-top: 200px;
  margin-top: 0;
}

main section.v_archive .voice-pagination{
  justify-content: space-around;
}
main section.v_archive .voice-pagination a{
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin: auto;
}

@media screen and (max-width: 600px){
main section.v_archive{
  padding-top: 100px;
}
}




/*# sourceMappingURL=style.css.map */