@charset "UTF-8";
* {
  line-height: 1.5;
}

h2 {
  display: flex;
  align-items: center;
  color: #0d69b4;
  font-size: 31px;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 18px;
  }
}
h2::after {
  content: "";
  background-image: url(./../img/icon_brush.svg);
  background-repeat: no-repeat;
  display: block;
  width: 48px;
  height: 26px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  h2::after {
    width: 24px;
    height: 13px;
  }
}

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

a {
  color: #0d69b4;
  transition: 0.6s;
  opacity: 1;
}
a:hover {
  transition: 0.6s;
  opacity: 0.5;
}

.page_view {
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .page_view {
    flex-direction: column;
  }
  .page_view .page_view_img_bk {
    max-width: 100%;
  }
}
.page_view img {
  margin: 0 auto;
}
.page_view h2 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .page_view h2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    font-size: 28px;
  }
}
.page_view h2::after {
  display: none;
}
.page_view .page_ttl_wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 80px;
}
@media screen and (max-width: 767px) {
  .page_view .page_ttl_wrap {
    padding: 6vw;
  }
}
.page_view .page_ttl_wrap .logo {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page_view .page_ttl_wrap .logo {
    display: none;
  }
}
.page_view .page_ttl_wrap .logo img {
  max-width: 100px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_view .page_ttl_wrap .page_view_img {
    position: absolute;
    display: flex;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding: 6vw;
  }
}

.pagination {
  margin-top: 50px;
}
.pagination ul {
  display: flex;
  align-items: center;
}
.pagination ul li + li {
  margin: 10px;
}
.pagination ul li span, .pagination ul li a {
  display: flex;
  justify-content: center;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
.pagination ul li span {
  border: 1px solid #0d69b4;
}
.pagination ul li .prev, .pagination ul li .next {
  width: 6em;
  border-radius: 20px;
}

header {
  position: fixed;
  top: 6vw;
  right: 6vw;
  color: #0d69b4;
  z-index: 4;
}
header p {
  transition: 0.5s;
}
header .bar {
  display: block;
  height: 2px;
  background-color: #0d69b4;
  margin: 10px auto;
  transition: 0.5s;
}
header .bar:nth-child(1) {
  width: 60px;
}
header .bar:nth-child(2) {
  width: 37px;
}
header .menu_btn--open {
  position: relative;
}
header .menu_btn--open p {
  margin-top: 35px;
  transition: 0.5s;
}
header .menu_btn--open .bar {
  display: block;
  height: 2px;
  background-color: #0d69b4;
  margin: 10px auto;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
header .menu_btn--open .bar:nth-child(1) {
  transform: rotate(-45deg);
  transition: 0.5s;
  width: 50px;
}
header .menu_btn--open .bar:nth-child(2) {
  transform: rotate(45deg);
  transition: 0.5s;
  width: 50px;
}

.gnav {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px;
  background-color: #fff;
  top: 160px;
  right: 6vw;
  transform: translateX(100vh);
  transition: 0.8s;
  z-index: 4;
}
.gnav .logo {
  display: inline-block;
  width: 100%;
  max-width: 70px;
  margin-bottom: 20px;
}
.gnav ul {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 100%;
}
.gnav ul li {
  display: inline-block;
  width: 100%;
}

.gnav--open {
  transform: translateX(0vh);
  transition: 0.8s;
}

.btn {
  border-bottom: 1px solid #0d69b4;
  transition: 0.6s;
  width: 10em;
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 14px;
  }
}
.btn .arrow {
  max-width: 25px;
  transition: 0.6s;
  margin-bottom: 5px;
  margin-left: 20px;
}
.btn:hover .arrow {
  margin-right: 0px;
  transition: 0.6s;
  margin-left: 20px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000000;
  line-height: 1.5;
  font-size: 16px;
  background-color: #ecf9fb;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.main_view {
  display: flex;
  justify-content: center;
}
.main_view .main_view_img {
  max-width: 100%;
  margin: 0 auto;
}

section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 50px 6vw;
  }
}

.breadcrumb {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    margin: auto 6vw;
  }
}
.breadcrumb li + li::before {
  content: ">";
  font-size: 16px;
  margin: 0 1em;
}

.top .news {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top .news {
    flex-direction: column;
  }
}
.top .news .cont {
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .top .news .cont {
    margin-right: 0px;
    display: flex;
    justify-content: space-between;
  }
}
.top .news .cont h2 {
  text-align: center;
  justify-content: center;
}
.top .news .cont .btn {
  margin-top: 100px;
  display: block;
}
@media screen and (max-width: 767px) {
  .top .news .cont .btn {
    margin: 30px 0px;
  }
}
.top .case {
  display: flex;
  align-items: center;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .top .case {
    flex-direction: column;
    padding: 6vw;
  }
  .top .case h2 {
    justify-content: center;
    margin: 30px auto;
  }
}
.top .case .cnt {
  max-width: 30%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top .case .cnt {
    max-width: 100%;
  }
}
.top .case .item {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
}
.top .case .item a {
  font-size: 18px;
  font-weight: bold;
  max-width: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .top .case .item a {
    max-width: 100%;
  }
}
.top .case .item a img {
  max-width: 24px;
  width: 100%;
}
.top .case .item a:nth-last-child(n+3) {
  border-bottom: 1px solid #0d69b4;
}
@media screen and (max-width: 767px) {
  .top .case .item a:nth-last-child(2) {
    border-bottom: 1px solid #0d69b4;
  }
}
.top .case .item a:nth-child(odd) {
  border-right: 1px solid #0d69b4;
}
@media screen and (max-width: 767px) {
  .top .case .item a:nth-child(odd) {
    border-right: none;
  }
}
.top .dr .cnt_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .top .dr .cnt_wrap {
    flex-direction: column-reverse;
  }
  .top .dr .cnt_wrap .photo {
    margin-top: 30px;
  }
  .top .dr .cnt_wrap .photo img {
    max-width: 100%;
  }
}
.top .dr .cnt_wrap .cnt {
  margin-left: 50px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .top .dr .cnt_wrap .cnt {
    margin-left: 0px;
  }
  .top .dr .cnt_wrap .cnt p {
    margin-bottom: 30px;
  }
}
.top .dr .cnt_wrap .cnt h2 {
  margin-bottom: 30px;
}

.about .cnt {
  display: flex;
  color: #0d69b4;
  margin-bottom: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .about .cnt {
    flex-direction: column;
  }
}
.about .cnt h3 {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .about .cnt h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.about .cnt p {
  font-size: 16px;
}
.about .btn_wrap {
  display: flex;
  justify-content: right;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about .btn_wrap {
    justify-content: left;
    margin-bottom: 30px;
  }
}
.about .image {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
@media screen and (max-width: 767px) {
  .about .image {
    flex-direction: column;
  }
}
.about .image .photo {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .about .image .photo img {
    width: 100%;
  }
}
.about .image2 {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .about .image2 {
    flex-direction: column;
    margin-top: 0px;
  }
  .about .image2 img {
    width: 100%;
  }
}
.about .image2 p {
  margin-left: 30px;
  color: #0d69b4;
}
@media screen and (max-width: 767px) {
  .about .image2 p {
    margin-left: 0px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.about .image3 {
  display: flex;
  justify-content: right;
  align-items: end;
  margin-top: 30px;
}
.about .image3 img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about .image3 {
    flex-direction: column-reverse;
    align-items: flex-start;
    margin-top: 0px;
  }
}
.about .image3 p {
  margin-right: 30px;
  color: #0d69b4;
}
@media screen and (max-width: 767px) {
  .about .image3 p {
    margin-top: 1em;
    margin-right: 0px;
  }
}
.about #dr {
  display: flex;
  align-items: end;
  margin-top: 150px;
  color: #0d69b4;
}
@media screen and (max-width: 767px) {
  .about #dr {
    flex-direction: column-reverse;
    margin-top: 80px;
  }
}
.about #dr .comment {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .about #dr .comment {
    margin-left: 0px;
  }
}
.about #dr .comment h2 {
  margin-bottom: 25px;
}
.about #dr .comment .comt_wrap p {
  color: #0d69b4;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .about #dr .comment .comt_wrap p {
    margin-bottom: 30px;
  }
}
.about #dr .comment .comt_wrap h4 {
  font-size: 30px;
  display: flex;
  align-items: center;
}
.about #dr .comment .comt_wrap h4 span {
  color: #000000;
  font-size: 18px;
  font-weight: bold;
  margin-right: 1em;
}
.about #dr .comment .comt_wrap .cmt_txt {
  margin-top: 24px;
  padding: 1em;
  background-color: #fff;
}

.access h2 {
  margin-bottom: 30px;
}
.access .txt_wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap {
    flex-direction: column;
  }
}
.access .txt_wrap .map {
  margin-bottom: 50px;
}
.access .txt_wrap .map .map_frame {
  min-width: 480px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap .map .map_frame {
    min-width: 100%;
  }
}
.access .txt_wrap .txt {
  max-width: 45%;
  width: 100%;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap .txt {
    margin-left: 0px;
    max-width: 100%;
  }
}
.access .txt_wrap .txt .item01_wrap {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap .txt .item01_wrap {
    flex-direction: column;
  }
}
.access .txt_wrap .txt .item01_wrap .icon {
  max-width: 100px;
  width: 100%;
  display: inline-block;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap .txt .item01_wrap .icon {
    margin: 0 auto 10px;
  }
}
.access .txt_wrap .txt .item01_wrap .item01 .tel {
  color: #000000;
  font-size: 32px;
  display: flex;
  align-items: center;
}
.access .txt_wrap .txt .item01_wrap .item01 .tel span {
  font-family: "Hind Siliguri";
}
.access .txt_wrap .txt .item01_wrap .item01 .tel img {
  max-width: 16px;
  margin-right: 10px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .access .txt_wrap .txt .item02 img {
    width: 100%;
  }
}
.access .images {
  margin-top: 50px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .access .images {
    flex-direction: column;
    margin-top: 30px;
  }
}

.news_list li + li {
  margin: 1em 0;
}
.news_list li a {
  color: #808080;
}
.news_list li a span {
  font-weight: bold;
  margin-right: 2em;
}
@media screen and (max-width: 767px) {
  .news_list li a span {
    width: 100%;
    display: block;
  }
}

.copy {
  border-top: 1px solid #0d69b4;
  max-width: 1000px;
  margin: 0 auto;
}
.copy p {
  font-size: 10px;
  padding: 30px;
  color: #0d69b4;
  text-align: center;
}

main.news section.news {
  max-width: 750px;
}
main.news section.news h4 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 30px;
}
main.news section.news h4 span {
  display: flex;
  font-size: 18px;
  font-weight: bold;
  color: #808080;
}
main.beginner section.beginner .wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main.beginner section.beginner .wrap {
    flex-direction: column-reverse;
  }
}
main.beginner section.beginner .wrap img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  main.beginner section.beginner .wrap img {
    margin-top: 30px;
  }
}
main.beginner section.beginner .wrap .cnt {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  main.beginner section.beginner .wrap .cnt {
    margin-left: 0px;
  }
}
main.beginner section.beginner .wrap .cnt ul {
  margin-left: 1em;
}
main.beginner section.beginner .wrap .cnt ul li {
  margin-top: 40px;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  main.beginner section.beginner .wrap .cnt ul li {
    margin-top: 1em;
  }
}
main.beginner section.beginner .wrap .cnt ul li::before {
  content: "⚫︎";
}
main.case section.case .wrap {
  display: flex;
  align-items: end;
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap {
    margin-bottom: 50px;
  }
}
main.case section.case .wrap img {
  width: 100%;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap {
    flex-direction: column;
  }
}
main.case section.case .wrap .cnt {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap .cnt {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
main.case section.case .wrap .cnt h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap .cnt h2 {
    margin-bottom: 10px;
  }
}
main.case section.case .wrap:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap:nth-child(2n) {
    flex-direction: column;
  }
}
main.case section.case .wrap:nth-child(2n) .cnt {
  margin-right: 0px;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  main.case section.case .wrap:nth-child(2n) .cnt {
    margin-left: 0px;
  }
}
main.case section.case .wrap:last-of-type {
  margin-bottom: 0px;
}/*# sourceMappingURL=style.css.map */