/* base */
html {
  font-size: 62.5%;
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  color: #333;
}

figure {
  margin: 0;
  padding: 0;
}

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

a {
  color: #333;
  text-decoration: none;
  transition: all 0.5s 0s ease;
}

a:hover {
  color: #333;
  text-decoration: none;
  opacity: .6;
}

input, textarea {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  max-width: 100%;
}

.pc-only {
  display: block;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

/* base end */
.l-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .l-wrapper {
    width: 100%;
  }
}

.l-header {
  position: relative;
  overflow: hidden;
}

.l-main {
  position: relative;
  width: 100%;
  overflow-x: hidden;
}

.l-footer {
  padding: 0;
}

.body {
  line-height: 2;
  font-size: 1.6rem;
  letter-spacing: .1rem;
}

@media (max-width: 768px) {
  .body {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1300px) {
  .inner {
    width: 95%;
  }
}
@media (max-width: 1000px) {
  .inner {
    width: 90%;
  }
}


.inner2 {
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 1088px) {
  .inner2 {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .inner2 {
    width: 90%;
  }
}

.title img {
  margin-bottom: 5rem;
  max-width: 80%;
}
@media (max-width:1000px) {
  .title img {
     max-width: 40%;
  }
}
@media (max-width: 768px) {
  .title img {
    margin-bottom: 2rem;
    max-width: 50%;
  }
}
@media (max-width: 428px) {
  .title img {
    max-width: 60%;
  }
}

.title__text {
  font-size: 2rem;
  display: block;
  letter-spacing: 1rem;
}

@media (max-width: 768px) {
  .title__text {
    font-size: 1.6rem;
  }
}

.header {
  padding: 5rem 0 20rem;
}

@media (max-width: 768px) {
  .header {
    padding: 3rem 0 9rem;
  }
}

.header__inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .header__inner {
    
  }
}

.header__menu {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}

.header__menu--item {
  margin-left: 6rem;
}

.header__toggle {
  cursor: pointer;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 60;
  display: none;
  box-sizing: border-box;
  margin-left: 2rem;
}
@media (max-width: 768px) {
  .header__toggle {
    display: block;
  }
}


.header__toggle span {
  border-bottom: solid 2px #333;
  display: block;
  -moz-transition: .35s ease-in-out;
  position: absolute;
  transition: .35s ease-in-out;
  -webkit-transition: .35s ease-in-out;
  width: 100%;
}

.header__toggle span:nth-child(1) {
  top: 0;
}

.header__toggle span:nth-child(2) {
  top: 12px;
}

.header__toggle span:nth-child(3) {
  top: 24px;
}

.header__toggle.is-active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-45deg);
  -webkit-transform: translateY(8px) rotate(-45deg);
  border-bottom: solid 1px #333;
}

.header__toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
  -webkit-transform: translateY(-8px) rotate(45deg);
  border-bottom: solid 1px #333;
}

.side {
  background: #fff;
  position: fixed;
  right: -20vw;
  top : 0;
  width: 0;
  height: 100vh;
  z-index: 9999;
  padding: 1.5rem 3rem 3rem 3rem;
  box-sizing: border-box;
  transition:.3s all;
}

body.is-open .side {
  right: -0;
  width: 30vw;
}
@media (max-width: 1000px) {
  body.is-open .side {
    width: 50vw;
  }
}
@media (max-width: 768px) {
  body.is-open .side {
    width: 70vw;
  }
}

.side__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #D7D7D0;
}
.side__item.side__item-close img {
  width: 36px;
}
.side__item.side__item-close a {
  font-size: 3rem;
}
.side__item a {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
}

.overlay {
  position: fixed;
  left: 0;
  top : 0;
  z-index: 9998;
  background: rgba(0,0,0,.8);
  width: 100%;
  height: 100vh;
  opacity: 0;
  display: none;
  transition:.3s all;
}
body.is-open .overlay {
   opacity: 1;
   display: block;
}

.mv {
  height: 800px;
  max-height: 800px;
  position: relative;
}
@media (max-width: 768px) {
  .mv {
    background: none;
    height: auto;
    max-height: auto;
    margin-bottom: 0;
  }
}

.mv__bg {
  background: transparent url("../img/bg_mv.jpg") no-repeat center center;
  background-size: cover;
  height: 800px;
  max-height: 800px;
  animation:text_anime_on 1s ease-out forwards;
  animation-delay: 2.5s;
  position: absolute;
  left: 0;
  top : 0;
  width: 100%;
  opacity: 0;
 
}
@media (max-width: 768px) {
  .mv__bg {
    display: none;
  }
}

.mv__lead {
  font-size: 3.6rem;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 3rem;
  font-weight: 600;
  z-index: 50;
}
.mv__lead span {
  opacity: 0; 
}
.mv__lead.appeartext span{ animation:text_anime_on 1s ease-out forwards; }

@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
@media (max-width: 768px) {
  .mv__lead {
    font-size: 2rem;
    top : -5rem;
  }
}

.mv__sp {
  display: none;
}
@media (max-width: 768px) {
  .mv__sp {
    display: block;
    opacity: 0;
    animation:text_anime_on 1s ease-out forwards;
    animation-delay: 1.5s;
  }
}

.mv__eng {
  text-align: center;
  position: absolute;
  bottom: 10rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation:text_anime_on 1s ease-out forwards;
  animation-delay: 3s;
  width: 100%;
}
@media (max-width: 1200px) {
  .mv__eng {
   width: 95vw;
  }
}
@media (max-width: 1000px) {
  .mv__eng {
   width: 90vw;
  }
}

@media (max-width: 768px) {
  .mv__eng {
   display: none;
  }
}

.mv__eng--sp {
  display: none;
}

@media (max-width: 768px) {
  .mv__eng--sp {
     text-align: center;
      position: absolute;
      bottom: 10rem;
      left: 50%;
      transform: translateX(-50%);
      opacity: 0;
      animation:text_anime_on 1s ease-out forwards;
      animation-delay: 2s;
      display: block;
      width: 95vw;
  }
}

.news {
  padding: 8rem 0 30rem;
}
@media (max-width: 1100px) {
  .news {
    padding: 6vw 0 15vw;
  }
}
@media (max-width: 768px) {
  .news {
    padding: 0 0 5rem;
  }
}

.news__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 1100px) {
  .news__wrap {
    display: block;
  }
}

.news__title {
  width: 20%;
  text-align: right;
  padding: 0 4rem 0 0;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .news__title {
    text-align: left;
    padding: 0;
    margin-bottom: 3rem;
    width: 100%;
  }
}

.news__title--inner {
  background: #F8F8F8;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.6rem 3rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .news__title--inner {
    font-size: 1.4rem;
    display: block;
    width: 100vw;
    text-align: center;
    margin-right: calc(50% - 50vw);
margin-left: calc(50% - 50vw);
  }
}

.news__list {
  width: 80%;
}

@media (max-width: 1100px) {
  .news__list {
    width: 100%;
  }
}

.news__item {
  margin-bottom: 2rem;
}
.news__item:last-child {
  margin-bottom: 0;
}

.message {
  padding: 0 0 30rem;
  position: relative;
}
@media (max-width: 1100px) {
  .message {
    padding: 0 0 15vw;
  }
}
@media (max-width: 768px) {
  .message {
    padding: 0 0 5rem;
  }
}

.message .inner {
  position: relative;
}

.message .inner::after {
  content: "";
  display: block;
  width: 528px;
  height: 731px;
  background: #F8F8F8;
  position: absolute;
  right: 0;
  top: -7rem;
}

@media (max-width: 768px) {
  .message .inner::after {
    display: none;
  }
}

.message .title {
  margin-bottom: 7rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .message .title {
    margin-bottom: 3.5rem;
  }
}

.message__lead {
  font-size: 2rem;
  margin-bottom: 7rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .message__lead {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}

.message__text {
  margin-bottom: 5rem;
  position: relative;
  z-index: 10;
}

.school {
  padding: 0 0 30rem;
  position: relative;
}
@media (max-width: 1100px) {
  .school {
    padding: 0 0 15vw;
  }
}
@media (max-width: 768px) {
  .school {
    padding: 0 0 5rem;
  }
}

.school::after {
  background: transparent url("../img/bg_school.jpg") no-repeat center center;
  background-size: cover;
  width: 100vw;
  max-height: 530px;
  height: 530px;
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .school::after {
    display: none;
  }
}

.school .title {
  margin-bottom: 14rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .school .title {
    margin-bottom: 3rem;
  }
}

.school__wrap {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

@media (max-width: 1000px) {
  .school__wrap {
    display: block;
  }
}

.school__box {
  width: 100%;
  max-width: 560px;
  background: #fff;
  box-shadow: 0 0 60px #ddd;
}
@media (max-width: 1200px) {
  .school__box {
    max-width: 46.5vw;
  }
}
@media (max-width: 1000px) {
  .school__box {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .school__box {
    margin-bottom: 4rem;
  }
}

.school__box--inner {
  padding: 6rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .school__box--inner {
    padding: 3rem;
  }
}

.school__name {
  font-size: 2.8rem;
  line-height: 1.6;
  margin-bottom: 8rem;
}

@media (max-width: 768px) {
  .school__name {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}

.school__name--en {
  display: block;
}

@media (max-width: 768px) {
  .school__name--en {
    max-width: 70%;
    margin: .5rem 0 0;
  }
}
@media (max-width: 428px) {
  .school__name--en {
    max-width: 50%;
  }
}

.school__name2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .school__name2 {
 
    display: block;
  }
}
@media (max-width: 768px) {
  .school__name2 {
    font-size: 1.6rem;
 
  }
}

.school__btn a {
  width: 100%;
  max-width: 180px;
  display: block;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  padding: 1rem 2.5rem 1rem 1.5rem;
  text-align: center;
  margin: 0 auto;
  background: #fff;
  font-size: 1.4rem;
  letter-spacing: .1rem;
  transition: all 0.5s 0s ease;
  color: #333;
  display: block;
  position: relative;
}
@media (max-width: 1024px) {
  .school__btn a {
    max-width: 100%;
    margin: 1rem 0 0;
  }
}

.school__btn a::before {
  right: 9px;
  top: 21px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  display: block;
  position: absolute;
  transition: all 0.5s 0s ease;
}
.school__btn a:hover {
  cursor: pointer;
  background: #010101;
  color: #fff;
}

.school__btn-disable a {
pointer-events: none;
}
.school__btn-disable a::before {
  display: none;
}

.school__text {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .school__text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.school__nav a {
  text-decoration: underline;
  font-size: 1.8rem;
  position: relative;
}

@media (max-width: 768px) {
  .school__nav a {
    font-size: 1.4rem;
  }
}

.school__nav a::before {
  right: -20px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  display: block;
  position: absolute;
}

.school__map {
  height: 420px;
}

@media (max-width: 768px) {
  .school__map {
    height: 300px;
  }
}

.school__map iframe {
  width: 100%;
  height: 420px;
}

@media (max-width: 768px) {
  .school__map iframe {
    height: 100%;
  }
}

.company {
  padding: 0 0 30rem;
}
@media (max-width: 1100px) {
  .company {
    padding: 0 0 15vw;
  }
}
@media (max-width: 768px) {
  .company {
    padding: 0 0 5rem;
  }
}

.company .inner {
  position: relative;
}

.company .inner::after {
  background: transparent url("../img/bg_company.jpg") no-repeat center center;
  background-size: cover;
  width: 73vw;
  max-height: 300px;
  height: 300px;
  content: "";
  display: block;
  position: absolute;
  top: 3rem;
  left: 33rem;
}

@media (max-width: 768px) {
  .company .inner::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .company .inner .inner2 {
    width: 100%;
  }
}

.company .title {
  margin-bottom: 28rem;
  position: relative;
  z-index: 10;
}
@media (max-width: 1100px) {
  .company .title {
    margin-bottom: 15vw;
  }
}
@media (max-width: 768px) {
  .company .title {
    margin-bottom: 3rem;
  }
}

.company__table {
  width: 100%;
  font-size: 2rem;
  position: relative;
  z-index: 10;
}

@media (max-width: 768px) {
  .company__table {
    font-size: 1.4rem;
  }
}

@media (max-width: 1000px) {
  .company__table-inner {
    margin-bottom: 1.5rem;
  }
}

.company__table-label {
  width: 32%;
  padding: 4rem 0;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .company__table-label {
    display: block;
    width: 100%;
    border: none;
    padding: 2rem 1rem 0;
  }
}

.company__table-label-last {
  border: none;
}

.company__table-box {
  width: 68%;
  padding: 4rem 2rem 4rem 0;
  box-sizing: border-box;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 768px) {
  .company__table-box {
    display: block;
    width: 100%;
    padding: 1rem 1rem 2rem;
  }
}

.company__table-box-last {
  border: none;
}

.company__table-flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1000px) {
  .company__table-flex {
    display: block;
  }
}

.image {
  background: transparent url("../img/bg_image.jpg") no-repeat center center;
  width: 100vw;
  max-height: 500px;
  height: 500px;
  background-size: cover;
}

@media (max-width: 768px) {
  .image {
    height: 200px;
    max-height: 200px;
  }
}

.contact {
  padding: 24rem 0 25rem;
  text-align: center;
  position: relative;
}
@media (max-width: 1100px) {
  .contact {
    padding: 15vw 0 15vw;
  }
}
@media (max-width: 768px) {
  .contact {
    padding: 8rem 0;
  }
}

.contact--thanks {
  padding: 10rem 0 30rem;
}
@media (max-width: 768px) {
  .contact--thanks {
    padding: 0 0 10rem;
  }
}

.contact::before {
  content: "";
  width: 1312px;
  height: 548px;
  position: absolute;
  top: 26.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: #F8F8F8;
}
@media (max-width: 768px) {
  .contact::before {
    display: none;
  }
}

.contact--thanks::before {
  display: none;
}

.contact__text--thanks {
  font-size: 2rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .contact__text--thanks {
    font-size: 1.4rem;
  }
}

.contact__text--thanks a {
  text-decoration: underline;
}

.contact .title {
  margin-bottom: 7rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact .title {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .contact .inner2 {
    width: 95%;
  }
}

.contact__text {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: .5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #CCCCCC;
  display: inline-block;
  margin: 0 auto 4.5rem;
}

@media (max-width: 768px) {
  .contact__text {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
}

.contact__tel {
  font-size: 3.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 7rem;
}

@media (max-width: 768px) {
  .contact__tel {
    display: block;
    margin-bottom: 4rem;
  }
}

.contact__tel img {
  margin-right: 3rem;
}

@media (max-width: 768px) {
  .contact__tel img {
    margin-right: 2rem;
  }
}

.contact__tel--time {
  font-size: 1.6rem;
  padding-left: 3rem;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .contact__tel--time {
    display: block;
    font-size: 1.4rem;
  }
}

.contact__box {
  width: 100%;
  box-shadow: 0 0 60px #ddd;
  background: #fff;
  z-index: 50;
  position: relative;
  padding: 10rem;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .contact__box {
    padding: 5vw;
  }
}

@media (max-width: 768px) {
  .contact__box {
    padding: 4rem 2rem;
  }
}

.contact__title {
  font-size: 2rem;
  letter-spacing: .7rem;
  margin-bottom: 7rem;
}
@media (max-width: 1100px) {
  .contact__title {
    margin-bottom: 3vw;
  }
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 1.6rem;
    letter-spacing: .1rem;
    margin-bottom: 2rem;
  }
}

.contact__table {
  width: 100%;
  margin-bottom: 4rem;
}

@media (max-width: 768px) {
  .contact__table {
    margin-bottom: 2rem;
  }
}

.contact__table-label {
  width: 27%;
  padding: 2rem 0;
}
@media (max-width: 1100px) {
  .contact__table-label {
    width: 35%;
    text-align: left;
  }
}
@media (max-width: 768px) {
  .contact__table-label {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding-bottom: 0;
  }
}

.contact__table-label-vt {
  vertical-align: top;
}

.contact__table-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact__table-box {
  width: 73%;
  padding: 2rem 0 2rem 5rem;
  box-sizing: border-box;
  text-align: left;
}
@media (max-width: 1100px) {
  .contact__table-box {
    width: 65%;
  }
}
@media (max-width: 768px) {
  .contact__table-box {
    display: block;
    width: 100%;
    padding: 1rem 0 2rem;
  }
}

.contact__table-must {
  font-size: 1.2rem;
  color: #BC0000;
}

.contact__input {
  background: #F8F8F8;
  border: none;
  width: 100%;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  margin-bottom: .5rem;
}

@media (max-width: 768px) {
  .contact__input {
    padding: 1.5rem;
  }
}

.contact__textarea {
  background: #F8F8F8;
  border: none;
  width: 100%;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.6rem;
  height: 14rem;
}

@media (max-width: 768px) {
  .contact__textarea {
    padding: 1.5rem;
    height: 20rem;
  }
}

.contact__check {
  margin-bottom: 8rem;
}

@media (max-width: 768px) {
  .contact__check {
    width: 85%;
    margin: 0 0 4rem auto;
    text-align: left;

  }
}

.contact__check a {
  text-decoration: underline;
}

.contact__check label {
  cursor: pointer;
  position: relative;
}

.contact__check label::before,
.contact__check label::after {
  content: "";
  display: block;
  position: absolute;
}

.contact__check label::before {
  background-color: #ccc;
  border-radius: 0%;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 10px;
  left: -40px;
}

.contact__check label::after {
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 6px;
  left: -35px;
}

.contact__check input:checked + label::after {
  opacity: 1;
}

.contact__submit {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  transition: all 0.5s 0s ease;
}

.contact__submit::before {
  right: 90px;
  top: 30px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  display: block;
  position: absolute;
  transition: all 0.5s 0s ease;
}

@media (max-width: 768px) {
  .contact__submit::before {
    right: 20px;
  }
}

.contact__submit:hover::before {
  border-color: #fff;
}

.contact__submit-btn {
  width: 100%;
  max-width: 420px;
  display: block;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  padding: 2rem 0;
  text-align: center;
  margin: 0 auto;
  background: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  letter-spacing: .2rem;
  transition: all 0.5s 0s ease;
  color: #333;
}

@media (max-width: 768px) {
  .contact__submit-btn {
    font-size: 1.6rem;
  }
}

.contact__submit-btn:hover {
  cursor: pointer;
  background: #010101;
  color: #fff;
}

input[type="button"] {
  width: 100%;
  max-width: 420px;
  display: block;
  border: 1px solid #CCCCCC;
  box-sizing: border-box;
  padding: 2rem 0;
  text-align: center;
  margin: 0 auto;
  background: #fff;
  font-family: 'Shippori Mincho', serif;
  font-size: 1.8rem;
  letter-spacing: .2rem;
  transition: all 0.5s 0s ease;
  color: #333;
}

input[type="button"]:hover {
  cursor: pointer;
}

.privacy {
  padding: 0 0 25rem;
  text-align: left;
}
@media (max-width: 1100px) {
  .privacy {
    padding: 0 0 15vw;
  }
}
.privacy .title {
  text-align: center;
  margin-bottom: 4rem;
}
.privacy__first {
  margin-bottom: 3rem;
}
.privacy__box {
  margin-bottom: 3rem;
}
.privacy__label {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
}
.privacy__text {
  margin-bottom: 2rem;
}
.privacy__text-indent {
  padding-left: 2rem;
  box-sizing: border-box;
}
.privacy__bold {
  font-weight: 700;
}

.footer {
  background: #010101;
  padding: 9.5rem 0;
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 5rem 0;
  }
}

.footer a {
  color: #fff;
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .footer__wrap {
    display: block;
  }
}

.footer__left {
  margin-bottom: 17rem;
}

@media (max-width: 768px) {
  .footer__left {
    margin-bottom: 2rem;
  }
}

.footer__logo {
  margin-bottom: 6.5rem;
}

@media (max-width: 768px) {
  .footer__logo {
    margin-bottom: 5rem;
    text-align: center;
  }
}

.footer__text {
  margin-bottom: 4rem;
  font-size: 1.8rem;
}

@media (max-width: 768px) {
  .footer__text {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}

.footer__text--right {
  margin-left: 10rem;
}

@media (max-width: 1000px) {
  .footer__text--right {
    margin: 0;
  }
}

.footer__text--name {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .footer__text--name {
    font-size: 1.4rem;
    line-height: 3;
  }
}

.footer__tel a {
  font-size: 3.6rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .footer__tel a {
    font-size: 2.8rem;
  }
}

.footer__tel a img {
  margin-right: 2.5rem;
}

.footer__denshi {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .footer__denshi {
    font-size: 1.4rem;
  }
}

.footer__right {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1000px) {
  .footer__right {
    display: block;
    margin-bottom: 5rem;
  }
}

.footer__copy {
  font-size: 1.8rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__copy {
    font-size: 1.2rem;
  }
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.contact__checkbox {
  display: none;
}

.denshi {
  padding-bottom: 20rem;
}
@media (max-width: 768px) {
  .denshi {
    padding-bottom: 10rem;
  }
}

.denshi__title .title__text {
  font-size: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .denshi__title .title__text {
    margin-bottom: 4rem;
  }
}

.denshi__item {
  margin-bottom: 10px;
}

.denshi__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: underline;
}

.denshi__item a img {
  margin-left: 10px;
}

.denshi__sub {
  font-size: 2rem;
  margin-bottom: 2rem;
}

