/*===================================
mv
===================================*/
#mv {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 0;
}
#mv::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 1;
}
#mv .mv_img {
  background: #000;
  height: 100vh;
}
#mv .mv_img img {
  width: 40%;
  height: 100vh;
  object-fit: cover;
  margin-left: auto;
}
#mv .mv_title {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: calc(50% + 30px);
  width: 100%;
  z-index: 2;
}
#mv .mv_title .title {
  color: #fff;
  font-size: 7vw;
  padding: 4%;
}
#mv .mv_title .title span {
  display: block;
}
#mv .mv_title .title span.sub_title {
  color: #ccc;
  font-size: .5em;
  letter-spacing: .5em;
}
#mv .mv_title .btns {
  justify-content: flex-start;
  padding: 4%
}
#mv .mv_title .btns .btn {
  border-color: #fff;
  background: #000;
  box-shadow: 5px 5px 0 #fff;
  color: #fff;
  transition: .3s all;
  width: 60vw;
}
#mv .mv_title .btns .btn:hover, #mv .mv_title .btns .btn:active {
  background: #fff;
  color: #222;
  box-shadow: 5px 5px 0 #222;
}
@media screen and (min-width:768px) {
  #mv {
    height: 70vh;
  }
  #mv .mv_img {
    height: 70vh;
  }
  #mv .mv_img img {
    height: 70vh;
  }
  #mv .mv_title .title {
    font-size: 4vw;
    line-height: 1;
  }
  #mv .mv_title .title span {
    display: inline-block;
  }
  #mv .mv_title .btns {
    margin-top: 0
  }
  #mv .mv_title .btns .btn {
    width: min(100%, 300px);
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #mv {
    width: calc(100vw - 220px);
    margin-left: auto;
  }
  #mv .mv_title .title {
    font-size: 60px;
    line-height: 1.5;
  }
  #mv .mv_title .title span.sub_title {
    display: block;
    font-size: 24px;
  }
}
/* info */
#information {
  color: #fff;
}
#information ._container .post_container {
  background: #ccc;
  display: flex;
  flex-direction: column;
  padding: 4%;
}
#information ._container .post_container {
  margin-top: 0;
}
#information ._container .post_container .post + .post {
  border-top: 1px solid #222;
}
#information ._container .post_container .post .post_link {
  display: flex;
  flex-direction: column;
  padding: 4%;
}
#information ._container .post_container .post .post_link .post_ttl {
  margin-top: 10px;
}
@media screen and (min-width:768px) {
  #information {
    color: #222;
  }
  #information ._container {
    position: relative;
    margin-top: -200px;
    z-index: 1;
  }
  #information ._container ._inner {
    background: #ccc;
    padding: 4%;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {}
/* about */
#about {
  color: #fff;
}
#about ._container ._box .img {
  margin-left: 15vw;
  widows: 100vw;
}
#about ._container ._box .img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
#about ._container ._box ._text {
  background: #222;
  width: 85vw;
  margin-top: -100px;
  padding: 4%;
}
#about ._container ._box ._text h3 {
  font-weight: 600;
  margin-top: 1em;
}
#about ._container ._box ._text p {
  margin-top: 1em;
  font-size: 3.5vw;
}
@media screen and (min-width:768px) {
  #about ._container ._box .img img {
    height: 400px;
  }
  #about ._container ._box ._text {
    margin-top: -250px;
  }
  #about ._container ._box ._text h3 {
    font-size: 5vw;
  }
  #about ._container ._box ._text p {
    font-size: 2.5vw;
    line-height: 2;
    letter-spacing: .02em;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #about ._container ._box ._text h3 {
    font-size: 36px;
  }
  #about ._container ._box ._text {
    width: min(100%, 800px);
  }
  #about ._container ._box ._text p {
    font-size: 21px;
  }
}
/* class */
#class {
  color: #fff;
}
#class ._container {
  padding: 4%;
}
#class ._container ._box {}
#class ._container ._box ._box_child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px #222;
  margin-top: 5em;
}
#class ._container ._box ._box_child .img {
  overflow: hidden;
}
#class ._container ._box ._box_child .img img {
  transition: .3s all;
  object-fit: cover;
}
#class ._container ._box ._box_child a:hover > .img img {
  transform: scale(1.2);
}
#class ._container ._box ._box_child ._text {
  padding: 4%;
  background: #222;
  width: 100%;
  border-radius: 0 0 10px 10px;
  position: relative;
}
#class ._container ._box ._box_child ._text h3 {
  color: #fff;
}
#class ._container ._box ._box_child ._text h3 span {
  display: block;
  font-size: .5em;
}
#class ._container ._box ._box_child ._text p {
  border-top: 1px solid;
  padding-top: 1em;
  margin-top: 1em;
  padding-bottom: 1em;
}
#class ._container .btns {
  margin-top: 50px;
}
#class ._container ._box ._box_child ._text .expandable-content {
  max-height: 6em;
  overflow: hidden;
  transition: 1s all;
}
#class ._container ._box ._box_child ._text .expandable-content.expanded {
  max-height: 1000px;
}
.read-more {
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 5px;
  font-size: 12px;
  color: #000;
  padding: 0.5em;
  cursor: pointer;
  text-decoration: underline;
}
@media screen and (min-width:768px) {
  #class ._container ._box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4%;
  }
  #class ._container ._box ._box_child {
    width: calc((100% - 4%) / 2);
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #class ._container {
    margin-top: 0;
    padding: 0 4%;
  }
  #class ._container ._box {
    align-items: flex-start;
  }
  #class ._container ._box ._box_child {
    width: calc((100% - 8%) / 3);
    margin-top: 0;
  }
  #class ._container ._box ._box_child:nth-child(2) {
    margin-top: 4%;
  }
  #class ._container ._box ._box_child:nth-child(3) {
    margin-top: 8%;
  }
  #class ._container ._box ._box_child:nth-child(4) {
    margin-top: 4%;
  }
  #class ._container ._box ._box_child:nth-child(5) {
    margin-top: 8%;
  }
}
/* middle_reserve */
#middle_reserve {
  color: #fff;
}
#middle_reserve ._container {}
#middle_reserve ._container .btns {
  position: relative;
  margin-top: 50px;
  z-index: 10;
}
/* coach */
#coach {
  color: #fff;
}
#coach ._container {
  padding: 4%;
}
#coach ._container ._box {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
#coach ._container ._box ._box_child {
  position: relative;
  border-radius: 20px;
  height: 300px;
  width: calc((100% - 4%) / 2);
  transition: .5s all;
  overflow: hidden;
  margin: 10px 0;
  z-index: 1
}
#coach ._container ._box ._box_child::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  background: url("../img/home/coach.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1, 1);
  transition: .5s all;
  z-index: 10;
}
#coach ._container ._box ._box_child:nth-child(1)::after {
  background: url("../img/instructor/imamura.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(2)::after {
  background: url("../img/instructor/mizoguchi.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(3)::after {
  background: url("../img/instructor/kawazoe.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(4)::after {
  background: url("../img/instructor/mizui.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(5)::after {
  background: url("../img/instructor/iida.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(6)::after {
  background: url("../img/instructor/arato.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:nth-child(7)::after {
  background: url("../img/instructor/mao.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
#coach ._container ._box ._box_child:hover::after, #coach ._container ._box ._box_child:active::after {
  transform: scale(1.3);
  background-position: top center;
}
#coach ._container ._box ._box_child ._text {
  display: flex;
  flex-direction: column;
  padding: 4%;
}
#coach ._container ._box ._box_child ._text .heading02 {
  position: absolute;
  top: 4%;
  left: 4%;
  background: #222;
  border-radius: 5px;
  color: #fff;
  padding: 4%;
  opacity: 0;
  transition: .3s all;
  z-index: 100;
}
#coach ._container ._box ._box_child ._text .heading02 span {
  color: #ccc;
  display: block;
  font-size: .5em;
}
#coach ._container ._box ._box_child ._text ._list {
  position: absolute;
  left: 4%;
  bottom: 4%;
  opacity: 0;
  transition: .3s all;
  z-index: 100;
}
#coach ._container ._box ._box_child ._text ._list svg {
  width: 35px;
  height: 35px;
  background: rgba(000 000 000 / .8);
  border-radius: 10px;
  margin-top: 10px;
  padding: 8px;
}
#coach ._container ._box ._box_child:hover, #coach ._container ._box ._box_child:active {
  background-position: left top;
  background-size: 120%;
}
#coach ._container ._box ._box_child:hover ._text h3, #coach ._container ._box ._box_child:active ._text h3 {
  opacity: 1;
}
#coach ._container ._box ._box_child:hover ._text ._list, #coach ._container ._box ._box_child:active ._text ._list {
  opacity: 1;
}
#coach ._container ._box ._box_child ._text ._list .st0 {
  fill: #fff;
  width: 20px;
  height: 20px;
}
#coach ._container .btns {
  margin-top: 50px;
}
@media screen and (min-width:768px) {
  #coach ._container ._box {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  #coach ._container ._box ._box_child {
    width: calc((100% - 8%) / 3);
    margin-top: 4%;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #coach ._container {
    padding: 0 4%;
  }
  #coach ._container ._box ._box_child {
    width: calc((100% - 16%) / 5);
    margin-top: 0;
  }
  #coach ._container ._box ._box_child:nth-child(2) {
    margin-top: 4%;
  }
  #coach ._container ._box ._box_child:nth-child(3) {
    margin-top: 8%;
  }
  #coach ._container ._box ._box_child:nth-child(4) {
    margin-top: 12%;
  }
  #coach ._container ._box ._box_child:nth-child(5) {
    margin-top: 16%;
  }
    #coach ._container ._box ._box_child:nth-child(6) {
    margin-top: -8%;
  }
  #coach ._container ._box ._box_child:nth-child(7) {
    margin-top: -4%;
  }
}
/* access */
#access {
  color: #fff;
  padding-bottom: 0;
}
#access ._container {}
#access ._container ._box {}
#access ._container ._box ._text {
  padding: 4%;
}
#access ._container ._box ._text ._list {
  margin-top: 10px;
  padding: 4% 0;
}
#access ._container ._box ._text ._list ._list_item {
  line-height: 1.3;
}
#access ._container ._box ._text ._list ._list_item span {
  display: block;
}
#access ._container ._box ._text ._list ._list_item + ._list_item {}
#access ._container ._box ._text ._list ._list_item ._list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#access ._container ._box ._text ._list ._list_item ._list ._list_item {
  margin-top: 0;
}
#access ._container ._box ._text ._list ._list_item ._list ._list_item svg {
  width: 30px;
  height: 30px;
}
#access ._container ._box ._text ._list ._list_item ._list ._list_item .cls-1 {
  fill: #fff;
}
#access ._container ._box ._text ._list ._list_item ._list ._list_item .cls-2 {
  fill: #000;
}
#access ._container ._box ._text ._list ._list_item ._list ._list_item .st0 {
  fill: #fff;
}
#access ._container ._box .map {
  width: 100vw;
  height: 400px;
}
#access ._container ._box .map iframe {
  width: 100vw;
  height: 400px;
  object-fit: cover;
}
@media screen and (min-width:768px) {
  #access {
    padding: 0;
  }
  #access ._container ._box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5%;
  }
  #access ._container ._box ._text {
    text-align: center;
    width: calc((100% - 5%) / 2);
  }
  #access ._container ._box .map {
    width: calc((100% - 5%) / 2);
    height: 100%;
  }
  #access ._container ._box .map iframe {
    width: 100%;
    height: 600px;
  }
  #access ._container ._box ._text ._list ._list_item ._list {
    justify-content: center;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #access ._container ._box ._text {
    padding: 0;
  }
  #access ._container ._box .map {
    height: 700px;
  }
  #access ._container ._box .map iframe {
    height: 700px;
  }
}
/* reserve */
#reserve {
  color: #fff;
  text-align: center;
}
#reserve ._container {
  padding: 4%;
}
#reserve ._container ._box {}
#reserve ._container ._box p {
  text-align: center;
}
/*===================================
subpage
===================================*/
.subpage_mv {
  position: relative;
  background: url("../img/home/bg_01.jpg") center center no-repeat;
  background-size: cover;
  width: 100%;
  height: 40vh;
}
.subpage_mv::after {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  z-index: 1;
}
.subpage_mv_title {
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: calc(50% + 30px);
  width: 100%;
  z-index: 2;
  padding: 4%;
}
.subpage_mv_title .title {
  color: #fff;
  font-size: clamp(21px, 6vw, 36px);
}
.subpage_mv_title .title span {
  color: #ccc;
  display: block;
  font-size: .5em;
  letter-spacing: .5em;
}
/*===================================
blog
===================================*/
@media screen and (min-width:768px) {}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {}
/*===================================
instructor
===================================*/
#instructor {
  color: #fff;
}
#instructor ._container {
  padding: 4%;
}
#instructor ._container ._box {}
#instructor ._container ._box ._box_child {
  display: flex;
  flex-direction: column;
}
#instructor ._container ._box ._box_child ._img {}
#instructor ._container ._box ._box_child ._img img {
  border-radius: 30px;
  width: 100%;
  object-fit: cover;
}
#instructor ._container ._box ._box_child ._text {
  background: #222;
  border: 1px solid;
  border-radius: 0 0 30px 30px;
  padding: 4%;
  margin-top: -30px;
}
#instructor ._container ._box ._box_child ._text .heading02 {}
#instructor ._container ._box ._box_child ._text .heading02 span {
  display: block;
  font-size: .5em;
  color: #ccc;
}
#instructor ._container ._box ._box_child ._text ._sns {
  margin-top: 20px;
}
#instructor ._container ._box ._box_child ._text ._sns ._list {
  margin: 10px 0 0 10px;
  display: flex;
  gap: 4vw;
}
#instructor ._container ._box ._box_child ._text ._sns ._list ._list_item {
  margin-top: 0;
}
#instructor ._container ._box ._box_child ._text ._sns ._list ._list_item svg {
  border-radius: 5px;
  fill: #fff;
  transition: .5s all;
  padding: 10px;
  width: 50px;
}
#instructor ._container ._box ._box_child ._text ._sns ._list ._list_item:nth-child(1) svg:hover {
  background: #d43872;
}
#instructor ._container ._box ._box_child ._text ._sns ._list ._list_item:nth-child(2) svg:hover {
  background: #1877f2;
}
#instructor ._container ._box ._box_child ._detail {
  margin-top: 20px;
}
#instructor ._container ._box ._box_child ._detail ._list {
  margin: 10px 0 0 20px;
}
#instructor ._container ._box ._box_child ._detail ._list ._list_item {
  list-style: circle;
}
@media screen and (min-width:768px) {
  #instructor ._container ._box {
    display: flex;
    flex-wrap: wrap;
    gap: 4vw;
  }
  #instructor ._container ._box ._box_child {
    width: calc((100% - 4vw) / 2);
    margin-top: 0;
  }
  #instructor ._container ._box ._box_child ._text ._sns ._list {
    gap: 1vw;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #instructor ._container ._box {
    gap: 1vw;
  }
  #instructor ._container ._box ._box_child {
    width: calc((100% - 4vw) / 3);
  }
}
/*===================================
system
===================================*/
#system {
  color: #fff;
}
#system ._container {
  padding: 4%;
}
#system ._container ._box {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
#system ._container ._box .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 20px 1px;
  margin: 10px 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgba(33, 150, 243, .4), 0 4px 6px -4px rgba(33, 150, 243, .4);
  border-radius: 10px;
  background-color: #6B6ECC;
  background: linear-gradient(to top right, #191e8deb, #0075b7);
}
#system ._container ._box .card.women {
  background: linear-gradient(to top right, #1d0613eb, #c3147e);
}
#system ._container ._box .card.students {
  background: linear-gradient(to top right, #953400eb, #e47400);
}
#system ._container ._box .card.kids {
  background: linear-gradient(to top right, #ffdc00eb, #de9500);
}
#system ._container ._box .card .content {
  padding: 20px;
}
#system ._container ._box .card .content .price {
  font-weight: 800;
  font-size: 15vw;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.42);
}
#system ._container ._box .card .content .description {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  font-size: 14px;
}
#system ._container ._box .card .content .description span {
  display: block;
}
#system ._container ._box .card .content .title {
  color: #fff;
  font-size: 25px;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.42);
  letter-spacing: 1px;
  margin-top: 10px;
}
#system ._container ._box .card button {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: none;
  outline: none;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 5vw;
  padding: 0.75rem 1.5rem;
  background-color: rgb(33 150 243);
  border: 2px solid rgb(33 150 243);
  border-radius: 0.5rem;
  width: 90%;
  text-shadow: 0px 4px 18px #2c3442;
  transition: .3s all;
}
#system ._container ._box .card button:hover, #system ._container ._box .card button:active {
  background: #000;
  border-color: #fff;
}
#system ._container ._box .card button a {
  color: #fff;
}
@media screen and (min-width:768px) {
  #system ._container ._box {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4vw;
  }
  #system ._container ._box .card {
    width: calc((100% - 4vw) / 2);
  }
  #system ._container ._box .card .content .price {
    font-size: 5vw;
  }
  #system ._container ._box .card button {
    font-size: 2vw;
    margin-top: auto;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {
  #system ._container ._box {
    gap: 1vw;
  }
  #system ._container ._box .card {
    width: calc((100% - 3vw) / 3);
  }
  #system ._container ._box .card .content .price {
    font-size: 2vw;
  }
  #system ._container ._box .card button {
    font-size: 1vw;
  }
}
/*===================================
faq
===================================*/
#faq {
  color: #fff;
}
#faq ._container {
  padding: 4%;
}
#faq ._container .accordion-item {
  background: #222;
  padding: 3vw;
}
#faq ._container .accordion-item + .accordion-item {
  margin-top: .5em;
}
#faq ._container .accordion-item .accordion-button {
  font-size: 4.5vw;
  outline: none;
  text-align: left;
  text-decoration: underline;
  transition: 0.4s;
  margin-top: 1em;
  width: 100%;
}
#faq ._container .accordion-item .accordion-button span {
  color: #000;
  -webkit-text-stroke: 1px #FFF;
  text-stroke: 1px #FFF;
  margin-right: .5em;
}
#faq ._container .accordion-item .accordion-button:first-child {
  margin-top: 0;
}
#faq ._container .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
#faq ._container .show {
  background: #303030;
  border-radius: .5em;
  padding: 4%;
  max-height: 500px;
  margin-top: 1em;
}
#faq ._container .accordion-content p a {
  display: inline-block;
  color: #2196f3;
  text-decoration: underline;
}
@media screen and (min-width:768px) {
  #faq ._container .accordion-item {
    padding: 3vw;
  }
  #faq ._container .accordion-item .accordion-button {
    font-size: 3.5vw;
  }
}
@media screen and (min-width:960px) {
  #faq ._container .accordion-item .accordion-button {
    font-size: 2.5vw;
  }
}
@media screen and (min-width:1200px) {
  #faq ._container .accordion-item .accordion-button {
    font-size: 1.5vw;
  }
}
/*===================================
schedule
===================================*/
#schedule {
  color: #fff;
}
#schedule ._container {
  padding: 4%;
}
#schedule ._container p {
  text-align: center;
}
#schedule ._container p img {
  width: min(100%, 600px);
  margin: 0 auto;
}
#schedule ._container .btns {
  margin-top: 50px;
}
@media screen and (min-width:768px) {}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {}
/*===================================
terms
===================================*/
#terms {
  color: #fff;
}
#terms ._container {
  padding: 4%;
}
#terms ._container .heading01 {
  text-align: left;
  border-bottom: 3px solid #ccc;
  position: relative;
}
#terms ._container .heading01:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #222;
  bottom: -3px;
  width: 20%;
}
#terms ._container ._box {}
#terms ._container ._box h3 {
  border-bottom: 1px solid #ccc;
  width: min(100%, 800px);
}
#terms ._container ._box + ._box {
  margin-top: 50px;
}
#terms ._container ._box p {
  margin-top: 2em;
}
#terms ._container ._box ._list {
  margin-top: 1em;
}
@media screen and (min-width:960px) {
  #terms ._container ._box h3 {
    position: relative;
  }
  #terms ._container ._box h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    padding: 0.2em 0.2em 0;
    background: linear-gradient(transparent 60%, #ccc 60%);
    z-index: -1;
  }
}
/*===================================
policy
===================================*/
#policy {
  color: #fff;
}
#policy ._container {
  padding: 4%;
}
#policy ._container .heading01 {
  text-align: left;
  border-bottom: 3px solid #ccc;
  position: relative;
}
#policy ._container .heading01:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #222;
  bottom: -3px;
  width: 20%;
}
#policy ._container ._box {}
#policy ._container ._box ._box_child {}
#policy ._container ._box ._box_child h3 {
  border-bottom: 1px solid #ccc;
  width: min(100%, 800px);
}
#policy ._container ._box ._box_child + ._box_child {
  margin-top: 50px;
}
#policy ._container ._box ._box_child p {
  margin-top: 2em;
}
#policy ._container ._box ._box_child ._list {
  margin-top: 1em;
}
@media screen and (min-width:768px) {}
@media screen and (min-width:960px) {
  #policy ._container ._box ._box_child h3 {
    position: relative;
  }
  #policy ._container ._box ._box_child h3::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    padding: 0.2em 0.2em 0;
    background: linear-gradient(transparent 60%, #ccc 60%);
    z-index: -1;
  }
}
@media screen and (min-width:1200px) {}
/*===================================
form
===================================*/
#contact_form ._container {
  padding: 4%;
}
#contact_form ._container .form {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding: 4vw;
  background-color: #171717;
  border-radius: .5em;
  transition: .4s ease-in-out;
  margin: 0 auto;
  width: min(100%, 800px);
}
#contact_form ._container .form .heading01 {
  color: #fff;
}
#contact_form ._container .form .field {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  border-radius: 25px;
  padding: 0.6em;
  border: none;
  outline: none;
  color: #fff;
  background-color: #171717;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}
#contact_form ._container .form .input-field {
  font-size: 16px;
  outline: none;
  width: 96%;
  color: #d3d3d3;
}
#contact_form ._container .form .g-recaptcha {
  margin: 1em auto;
}
#contact_form ._container .form .warning {
  color: #fff;
  font-size: 3vw;
  text-align: center;
}
#contact_form ._container .form .btn {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 1em;
}
.button1, .button2 {
  border: none;
  background-color: #252525;
  color: #fff;
  padding: 0.5em 1em;
  border-radius: .5em;
  outline: none;
  transition: .3s ease-in-out;
  margin-right: 0.5em;
  width: min(100%, 200px);
}
.button1 {
  background: #2196f3;
}
.button1:hover {
  background-color: 222;
}
.button2:hover {
  background-color: 222;
}
@media screen and (min-width:768px) {
  #contact_form ._container .form .warning {
    font-size: 1vw;
  }
}
@media screen and (min-width:960px) {}
@media screen and (min-width:1200px) {}
/*===================================
confirm
===================================*/
#confirm {
  color: #fff;
}
#confirm ._container {
  padding: 4%;
}
#confirm ._container .form {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  padding: 4vw;
  background-color: #171717;
  border-radius: .5em;
  transition: .4s ease-in-out;
  margin: 0 auto;
  width: min(100%, 800px);
}
#confirm ._container .form .heading01 {
  color: #fff;
}
#confirm ._container .form .field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  border-radius: 25px;
  padding: .5em 1em;
  border: none;
  outline: none;
  color: #fff;
  background-color: #171717;
  box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
}
#confirm ._container .form .field + .field {
  margin-top: 3vw;
}
#confirm ._container .form .field.text_area {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#confirm ._container .form .btn {
  display: flex;
  justify-content: center;
  flex-direction: row;
  margin-top: 1em;
}
@media screen and (min-width:768px) {
  #confirm ._container .form p {
    text-align: center;
  }
}
/*===================================
thanks
===================================*/
#thanks {
  color: #fff;
}
#thanks .heading01 {
  text-align: center;
}
#thanks p {
  font-size: 4.5vw;
  text-align: center;
  margin-top: 30px;
}
#thanks .btn {
  border-color: #fff;
  color: #fff;
  margin-top: 30px;
}
@media screen and (min-width:768px) {
  #thanks p {
    font-size: 16px;
  }
}
/*===================================
404
===================================*/
#error {
  color: #fff;
}
#error p {
  text-align: center;
}
#error .btn {
  margin-top: 30px;
}