body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

header {
  width: 100%;
  top: 0;
  height: 50px;
  background-color: #454545;
  position: fixed;
  z-index: 10;
}
header .inner {
  margin: 0 15px;
  justify-content: center;
}
header .inner nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background-color: rgba(255, 255, 255, 0.9);
}
header .inner nav ul {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-start;
  width: 250px;
  margin: auto;
  right: 0;
  left: 0;
}
header .inner nav ul li {
  border-bottom: 2px #878787 solid;
}
header .inner nav ul li a {
  display: block;
  font-size: 16px;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  padding: 6px 0 6px 30px;
}
header .inner h1.corp {
  position: absolute;
  top: 9px;
  left: 10px;
  color: #ffffff;
  font-size: 20px;
}
header .inner .menu-tx {
  position: absolute;
  top: 20px;
  right: 60px;
  color: #ffffff;
  font-size: 16px;
}
header .btn-trigger {
  position: fixed;
  border-bottom: 0;
  top: 24px;
  right: 10px;
  width: 34px;
  height: 28px;
  transform: translateY(-50%);
  cursor: pointer;
}
header .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
header .btn-trigger span:nth-of-type(1) {
  top: 0;
}
header .btn-trigger span:nth-of-type(2) {
  top: 12px;
}
header .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
header #btn.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
  background-color: #333333 !important;
}
header #btn.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  animation: active-btn-bar02 0.8s forwards;
}
@keyframes active-btn-bar02 {
  100% {
    height: 0;
  }
}
header #btn.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
  background-color: #333333 !important;
}
header .corp a {
  text-decoration: none;
  color: #FFFFFF;
}

#layer {
  height: 140vh;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #layer {
    height: 100vh;
  }
}

.media {
  height: 100%;
  width: 120vw;
  margin: 0 calc(50% - 60vw);
  background-image: url("/commons/images/zen_hp_top.jpg");
  background-size: 120%;
  background-position: center;
  background-repeat: repeat;
  background-attachment: fixed;
  transition: transform 0.5s ease-out;
  position: relative;
}
@media screen and (max-width: 767px) {
  .media {
    width: 100%;
    background-size: cover;
    margin: auto;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-image: url("/commons/images/zen_hp_top_sp.jpg");
  }
}
.media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  background-attachment: fixed;
}

.whiteout-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.content {
  position: relative;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .content {
    top: 40%;
  }
}

.read {
  position: relative;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
}
@media screen and (max-width: 1020px) {
  .read {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .read {
    font-size: 32px;
    line-height: 1.8;
  }
}

.triangle-wrapper {
  position: absolute;
  bottom: -40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .triangle-wrapper {
    bottom: -30%;
  }
}

.animation-container {
  position: relative;
  width: 50px;
  height: 50px;
}

.line {
  position: absolute;
  width: 2px;
  height: 100px;
  background-color: #fff;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation: lineAnimation 2s ease-in-out infinite;
  -webkit-animation: lineAnimation 2s ease-in-out infinite;
  -moz-animation: lineAnimation 2s ease-in-out infinite;
  -o-animation: lineAnimation 2s ease-in-out infinite;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
}

.triangle {
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: 100%;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  opacity: 0;
  animation: triangleAnimation 2s ease-in-out infinite;
  -webkit-animation: triangleAnimation 2s ease-in-out infinite;
  -moz-animation: triangleAnimation 2s ease-in-out infinite;
  -o-animation: triangleAnimation 2s ease-in-out infinite;
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  -o-animation-delay: 2s;
}

@keyframes lineAnimation {
  0% {
    top: 0;
    opacity: 1;
  }
  40% {
    top: 100%;
    opacity: 1;
  }
  50% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes triangleAnimation {
  0%, 10% {
    stroke-dashoffset: 240;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  40% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  50% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.to-soudan {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.to-soudan a {
  display: inline-block;
  background-color: #454545;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 20px;
}
.to-soudan a:hover {
  color: #CCCCCC;
  background-color: #333333;
}

section {
  width: 700px;
  margin: auto;
  text-align: center;
}
section h2 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #b48c22;
  margin-bottom: 10px;
}
section .script {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.block2x2,
.block2x2sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 0 auto;
}
.block2x2 li,
.block2x2sp li {
  width: 330px;
}
.block2x2 li a,
.block2x2sp li a {
  display: block;
  background-color: #454545;
  padding: 20px 20px;
  margin-bottom: 40px;
  text-decoration: none;
  color: #ffffff;
  text-align: left;
}
.block2x2 li a .more,
.block2x2sp li a .more {
  background-image: url("/commons/images/item_arrow.png");
  background-repeat: no-repeat;
  background-position: right bottom 7px;
  background-size: 50px auto;
  border-bottom: 1px solid #ffffff;
  font-size: 13px;
  margin-top: 10px;
}
.block2x2 li .service-item,
.block2x2sp li .service-item {
  display: flex;
  height: 170px;
}
.block2x2 li .service-item h3,
.block2x2sp li .service-item h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.block2x2 li .service-item p,
.block2x2sp li .service-item p {
  font-weight: 300;
  font-size: 13px;
  line-height: 23px;
}
.block2x2 li .service-item .photo img,
.block2x2sp li .service-item .photo img {
  width: 150px;
}
.block2x2 li .transmit-item .photo img,
.block2x2sp li .transmit-item .photo img {
  width: 290px;
  height: 193px;
  -o-object-fit: cover;
     object-fit: cover;
}

.block1x2 {
  display: flex;
  width: 560px;
  margin: 0 auto 50px auto;
  background-color: #454545;
  padding: 20px;
  color: #ffffff;
  text-align: left;
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
}
.block1x2 .photo img {
  width: 200px;
  margin-right: 20px;
}
.block1x2 a {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #b48c22;
  display: block;
  background-color: #ffffff;
  padding: 6px 0;
  margin-top: 25px;
}

.method {
  margin-bottom: 50px;
}

footer {
  text-align: center;
}
footer .logo img {
  width: 200px;
}
footer ul {
  border-top: 1px solid #CCCCCC;
}
footer ul li {
  border-bottom: 1px solid #CCCCCC;
}
footer ul li P {
  padding: 10px;
}
footer ul li P a {
  color: rgb(0, 148, 255);
  font-weight: 400;
}

.mbox {
  display: none;
}

.modaal-content-container {
  text-align: center;
}
.modaal-content-container .title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #b48c22;
  margin-bottom: 10px;
}
.modaal-content-container .read {
  font-size: 17px;
  font-weight: 500;
  color: #b48c22;
  margin-bottom: 10px;
}
.modaal-content-container .script {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  color: #333333;
}
.modaal-content-container p.script {
  text-align: left;
  margin-bottom: 15px;
}
.modaal-content-container li a {
  display: block;
  color: rgb(0, 148, 255);
  font-weight: 500;
  margin-bottom: 5px;
}

h1.inside {
  margin: 70px auto 10px auto;
  text-align: center;
  font-size: 20px;
  color: #b48c22;
  letter-spacing: 1px;
}

.price table {
  width: 100%;
  border-top: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
}
.price table tr.title {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}
.price table td.col01 {
  background-color: #eaf6fd;
}
.price table td.col02 {
  background-color: #fdeff5;
}
.price table td.col03 {
  background-color: #fffeee;
}
.price table td {
  width: 23%;
  padding: 1%;
  border-left: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
}
.price table .cap {
  font-size: 13px;
  line-height: 20px !important;
}
.price table .item {
  font-weight: 500;
  color: #666666;
}

.anchor {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

.service_op {
  width: 100%;
}
.service_op a {
  display: block;
  background-color: #454545;
  padding: 20px 20px;
  margin-bottom: 40px;
  text-decoration: none;
  color: #ffffff;
  text-align: left;
}
.service_op a .more {
  background-image: url("/commons/images/item_arrow.png");
  background-repeat: no-repeat;
  background-position: right bottom 7px;
  background-size: 50px auto;
  border-bottom: 1px solid #ffffff;
  font-size: 13px;
  margin-top: 10px;
}
.service_op .service-item h3 {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.service_op .service-item p {
  font-size: 13px;
}

.about {
  margin-bottom: 40px;
}
.about p.script {
  text-align: left;
  margin-bottom: 15px;
}
.about .logo {
  text-align: center;
}
.about .logo img {
  width: 30%;
}

.seminar {
  margin-bottom: 40px;
}
.seminar p.script {
  text-align: left;
  margin-bottom: 15px;
}
.seminar ul {
  margin: 0 0 20px 30px !important;
}
.seminar ul li {
  font-weight: 300;
  text-align: left;
  list-style-type: disc;
}

.bullet {
  position: fixed;
  top: 50%;
  left: 3%;
  transform: translate(-50%, -50%);
}
.bullet li a {
  color: #CCCCCC;
}
.bullet li a i {
  margin: 10px 0;
}
.bullet li a:hover {
  color: rgb(0, 148, 255);
}

.to_home {
  text-align: center;
  margin: 50px auto;
}
.to_home a {
  color: #0093ff;
}

/*-- PC --*/
@media (min-width: 769px) {
  .forSP {
    display: none;
  }
  .mbtm {
    margin-bottom: 40px !important;
  }
  .transmit {
    margin: 40px auto 50px auto;
  }
  footer {
    width: 480px;
    margin: auto;
  }
  footer ul {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  footer h2 {
    font-size: 17px !important;
    margin-bottom: 20px;
  }
  .price table {
    width: 100%;
    margin: 0 auto 50px auto;
  }
  .price table td {
    width: 25%;
  }
  .seminar .photo img {
    width: 50%;
    margin-bottom: 10px;
  }
  .img-thanks {
    width: 400px;
    margin: 50px auto;
  }
  .img-thanks img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  section {
    width: 100%;
  }
  section h2 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #b48c22;
    margin-bottom: 10px;
  }
  section .script {
    width: 92%;
    margin: auto;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 30px;
  }
  section .mbtm {
    margin-bottom: 40px;
  }
  .block2x2 {
    margin: 0 auto 50px auto;
    width: 92%;
    margin: auto;
  }
  .block2x2 li {
    width: 100%;
  }
  .block2x2 li a {
    display: block;
    background-color: #454545;
    padding: 15px;
    margin-bottom: 30px;
    text-decoration: none;
    color: #ffffff;
    text-align: left;
  }
  .block2x2 li a .more {
    background-image: url("/commons/images/item_arrow.png");
    background-repeat: no-repeat;
    background-position: right bottom 7px;
    background-size: 50px auto;
    border-bottom: 1px solid #ffffff;
    font-size: 13px;
    margin-top: 10px;
  }
  .block2x2 li .service-item {
    display: flex;
    justify-content: space-between;
    height: 45vw;
  }
  .block2x2 li .service-item li {
    width: 48%;
  }
  .block2x2 li .service-item h3 {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  .block2x2 li .service-item p {
    font-weight: 300;
    font-size: 13px;
    line-height: 23px;
  }
  .block2x2 li .service-item .photo img {
    width: 100%;
  }
  .block2x2sp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto 30px auto;
    width: 92%;
  }
  .block2x2sp li {
    width: 48%;
  }
  .block2x2sp li a {
    display: block;
    background-color: #454545;
    padding: 15px;
    margin-bottom: 20px;
    text-decoration: none;
    color: #ffffff;
    text-align: left;
  }
  .block2x2sp li a .more {
    background-image: url("/commons/images/item_arrow.png");
    background-repeat: no-repeat;
    background-position: right bottom 7px;
    background-size: 50px auto;
    border-bottom: 1px solid #ffffff;
    font-size: 13px;
    margin-top: 10px;
  }
  .block2x2sp li .transmit-item .photo img {
    width: 35.8vw;
    height: 24.8vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .block1x2 {
    display: block !important;
    width: 92%;
    margin: 0 auto 50px auto;
    background-color: #454545;
    padding: 20px;
    color: #ffffff;
    text-align: left;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
  }
  .block1x2 .photo img {
    width: 100%;
    margin-right: 20px;
  }
  .block1x2 a {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #b48c22;
    display: block;
    background-color: #ffffff;
    padding: 6px 0;
    margin-top: 25px;
  }
  footer {
    width: 92%;
    margin: auto;
  }
  footer h2 {
    font-size: 16px !important;
    margin-bottom: 20px;
  }
  .price table {
    width: 100%;
    margin: 0 auto 30px auto;
  }
  .service_op {
    width: 92% !important;
    margin: auto;
  }
  .about .logo img {
    width: 60%;
  }
  .seminar .photo img {
    width: 70%;
    margin-bottom: 10px;
  }
  .modaal-content-container .script {
    font-size: 14px;
    line-height: 28px;
  }
  .modaal-content-container img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */