@charset "UTF-8";
html {
  width: 100%;
  background-color: #F3F3F3;
}

body {
  font-family: "游ゴシック体", YuGothic, "Berlin Sans FB", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #3E3E3E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
  color: #3E3E3E;
}

a:hover {
  opacity: 0.6;
}

.button {
  width: 236px;
  height: 51px;
  text-align: center;
  line-height: 51px;
  margin-left: auto;
  margin-right: auto;
  transition: 0.5s;
}

.orange {
  background-color: #FFAA3B;
  margin-top: 40px;
  border-radius: 10px;
}

.orange a {
  display: block;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.45px;
}

.orange:hover {
  cursor: pointer;
  background-color: #f18900;
}

.orange:hover a {
  opacity: 1.0;
}

.orange:disabled {
  background-color: #CECDCD;
}

div {
  box-sizing: border-box;
}

section {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #F3F3F3;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  height: 44px;
  margin-bottom: 45px;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
    height: 37px;
    margin-bottom: 40px;
  }
}

.header {
  width: 100%;
  height: 83px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.101);
  position: fixed;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .header {
    background-color: rgba(255, 255, 255, 0.5);
  }
}

.header .main-title {
  display: none;
}

@media screen and (max-width: 768px) {
  .header .main-title {
    display: block;
    font-size: 1.4375rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    margin-left: 4%;
    height: 83px;
    line-height: 83px;
  }
}

.header .drawer-nav {
  display: flex;
  width: 100%;
  position: fixed;
}

@media screen and (max-width: 768px) {
  .header .drawer-nav {
    background: #fff;
    position: fixed;
    right: -300px;
    text-align: center;
    top: 0;
    transition: 0.3s;
    width: 300px;
    z-index: 1000;
    height: 100%;
  }
}

.header .drawer-nav .navbar_toggle {
  z-index: 9999;
  display: none;
}

@media screen and (max-width: 768px) {
  .header .drawer-nav .navbar_toggle {
    display: block;
    position: fixed;
    right: 50px;
    top: 30px;
    transition: right 0.3s linear;
  }
}

@media screen and (max-width: 768px) {
  .header .drawer-nav .navbar_toggle.open {
    position: fixed;
    right: 330px;
    top: 30px;
  }
}

.header .drawer-nav .header-menu {
  width: 627px;
  height: 83px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.header .drawer-nav .header-menu .header-nav-list {
  display: flex;
  justify-content: space-between;
  height: 83px;
  line-height: 83px;
}

@media screen and (max-width: 768px) {
  .header .drawer-nav .header-menu {
    display: block;
    width: 300px;
    height: 100%;
    position: fixed;
    top: 0;
    right: -300px;
    height: 700px;
    transition: 0.3s;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .header .drawer-nav .header-menu.open {
    right: 0;
    transition: right 0.3s linear;
    background-color: #fff;
    padding-top: 150px;
  }
  .header .drawer-nav .header-menu.open .header-nav-list {
    display: block;
    width: 100%;
    line-height: 40px;
  }
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 4px;
  width: 26px;
  border-radius: 2px;
  background: #707070;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

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

.navbar_toggle_icon:nth-child(2) {
  margin: 6px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #fff;
  pointer-events: auto;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #fff;
  pointer-events: auto;
}

@media screen and (max-width: 768px) {
  .header-overlay {
    bottom: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: .3s;
    width: 100%;
    height: 100%;
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header-overlay.open {
    opacity: 1;
    z-index: 100;
    background: rgba(0, 0, 0, 0.7);
    display: block;
  }
}

.top {
  background-image: url(../image/mv@2x.png);
  background-size: cover;
  background-position: 24% center;
  height: 648px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .top {
    height: 670px;
  }
}

.top .top-container {
  margin-left: 50%;
}

.top .top-container .top-title {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.02px;
  line-height: 48px;
  text-align: left;
  padding-top: 232px;
}

@media screen and (max-width: 576px) {
  .top .top-container .top-title {
    font-size: 1.5rem;
    padding-top: 225px;
    line-height: 40px;
  }
}

.top .top-container .top-text {
  font-size: 1.125rem;
  font-weight: bold;
  height: 49px;
  letter-spacing: 0.45px;
  text-align: left;
  margin-top: 26px;
  margin-right: 40px;
}

@media screen and (max-width: 576px) {
  .top .top-container .top-text {
    font-size: 0.8125rem;
    margin-top: 19px;
    margin-right: 20px;
  }
}

.top .top-container .button {
  margin-left: 0;
  margin-top: 40px;
  width: 282px;
}

@media screen and (max-width: 768px) {
  .top .top-container .button {
    margin-left: auto;
    margin-right: auto;
    width: 222px;
    height: 48px;
    margin-top: 16px;
  }
  .top .top-container .button a {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .top .top-container {
    margin-left: 4%;
    margin-right: 4%;
  }
}

.news {
  padding: 120px 0 120px;
  max-width: 1200px;
}

.news .news-box {
  width: 93.75%;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
}

.news .news-box .text-black {
  color: #3E3E3E;
  padding: 58px 0;
}

.news .news-box .table-box {
  width: 91%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.news .news-box .table-box .news-table {
  width: 100%;
  max-width: 1080px;
  border-collapse: collapse;
}

.news .news-box .table-box .news-table .news-table-row {
  width: 100%;
  max-width: 1080px;
  border-bottom: 1px solid #CECDCD;
  font-size: 18px;
  line-height: 1.7;
}

.news .news-box .table-box .news-table .news-table-row:hover {
  background-color: rgba(59, 105, 255, 0.2);
}

.news .news-box .table-box .news-table .news-table-row:hover .news-table-label a {
  background-color: #fff;
}

.news .news-box .table-box .news-table .news-table-row .news-table-date {
  font-family: "Montserrat", sans-serif;
  max-width: 98px;
  padding-right: 60px;
  letter-spacing: 0.45px;
  white-space: nowrap;
  font-size: 1.0625rem;
}

.news .news-box .table-box .news-table .news-table-row .news-table-label {
  width: 125px;
}

.news .news-box .table-box .news-table .news-table-row .news-table-label a {
  margin-left: 35px;
  margin-right: 40px;
  white-space: nowrap;
  font-size: 14px;
  display: block;
  width: 120px;
  height: 30px;
  border: 2px solid #3B69FF;
  border-radius: 15px;
  line-height: 30px;
}

.news .news-box .table-box .news-table .news-table-row .news-table-label a:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .news .news-box .table-box .news-table .news-table-row .news-table-label a {
    width: 81px;
    font-size: 0.75rem;
    height: 20px;
    line-height: 20px;
    margin-left: 20px;
  }
}

.news .news-box .table-box .news-table .news-table-row .table-text {
  display: block;
  text-align: left;
  max-width: 697px;
  padding: 40px 0;
  word-wrap: break-word;
}

.news .news-box .table-box .news-table .news-table-row .table-text a p {
  letter-spacing: 0.45px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .news .news-box .table-box .news-table .news-table-row .table-text a p {
    font-size: 0.875rem;
    max-height: 54px;
    overflow: hidden;
    letter-spacing: 0;
  }
}

.news .news-box .table-box .news-table .news-table-row .table-text:hover {
  cursor: pointer;
}

.news .news-box .table-box .news-table .news-table-row .news-arrow {
  width: 15px;
  height: 25px;
  padding-left: 9px;
}

.news .news-box .table-box .news-table .news-table-row .news-arrow img {
  margin-right: 16px;
  padding-top: 9px;
}

.news .news-box .table-box .news-table .news-table-row .news-arrow:hover {
  cursor: pointer;
}

.news .news-box .table-box .news-table .news-table-row td {
  vertical-align: middle;
}

.news .news-box .table-box .news-table .news-table-row:nth-child(1) {
  border-top: 1px solid #CECDCD;
}

.news .news-box .news-more {
  width: 236px;
  height: 64px;
  line-height: 64px;
  border: 1px solid #707070;
  margin-top: 40px;
}

.news .news-box .news-more a {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 600;
}

.news .news-box .news-more:hover {
  background-color: #3E3E3E;
}

.news .news-box .news-more:hover a {
  opacity: 1.0;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .news {
    width: 100%;
    position: relative;
    padding: 0;
    min-height: 570px;
    height: auto;
  }
  .news .news-box {
    width: 91%;
    max-width: 698px;
    height: auto;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .news .news-box .text-black {
    padding-top: 35px;
    margin-bottom: 20px;
  }
  .news .news-box .table-box {
    width: 100%;
  }
  .news .news-box .table-box .news-table .news-table-row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
  }
  .news .news-box .table-box .news-table .news-table-row .news-table-date {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 0.35px;
    width: 76px;
    height: 18px;
    padding-left: 4.5%;
    padding-top: 16px;
  }
  .news .news-box .table-box .news-table .news-table-row .news-table-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.3px;
    width: 89px;
    height: 24px;
    margin-left: 20px;
    margin-top: 15px;
  }
  .news .news-box .table-box .news-table .news-table-row .table-text {
    display: block;
    width: 81%;
    margin-left: 4.5%;
    padding: 8px 0 10px;
    line-height: 20px;
  }
  .news .news-box .table-box .news-table .news-table-row .news-arrow {
    width: 18px;
    height: 18px;
    border-right: 3px solid #3E3E3E;
    border-bottom: 3px solid #3E3E3E;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: rotate(-45deg);
  }
  .news .news-box .table-box .news-table .news-table-row .news-arrow img {
    display: none;
  }
  .news .news-box .news-more {
    width: 268px;
    height: 54px;
    margin-top: 35px;
  }
  .news .news-box .news-more .more {
    font-size: 18px;
    letter-spacing: 3.6px;
    line-height: 54px;
  }
}

.service-back {
  width: 100%;
  height: 400px;
  background-color: #3E3E3E;
  position: relative;
}

.service-back .text-white {
  color: #fff;
  padding-top: 60px;
}

.service-back .service-container {
  position: absolute;
  top: 167px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 960px;
  height: 329px;
  background-color: #fff;
  box-shadow: 0px 5px 12px rgba(62, 62, 62, 0.2);
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.service-back .service-container .service-item {
  width: 231px;
  margin-bottom: 56px;
}

.service-back .service-container .service-item:nth-child(1) {
  height: 211px;
}

.service-back .service-container .service-item:nth-child(1) img {
  margin-top: 8px;
  margin-bottom: 10px;
}

.service-back .service-container .service-item:nth-child(2) {
  height: 207px;
}

.service-back .service-container .service-item:nth-child(2) img {
  margin-top: 9px;
  margin-bottom: 16px;
}

.service-back .service-container .service-item:nth-child(3) {
  height: 205px;
}

.service-back .service-container .service-item:nth-child(3) img {
  margin-top: 8px;
  margin-bottom: 16px;
}

.service-back .service-container .service-item .service-subtitle {
  font-size: 1.25rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  margin-bottom: 12px;
  line-height: 28px;
}

.service-back .service-container .service-item .service-text {
  text-align: left;
  font-size: 0.875rem;
  line-height: 24px;
}

.space-div {
  width: 100%;
  height: 217px;
}

@media screen and (max-width: 768px) {
  .service {
    height: 872px;
  }
  .service .service-back {
    height: 480px;
  }
  .service .service-back .text-white {
    padding-top: 40px;
  }
  .service .service-back .service-container {
    top: 40px;
    width: 91%;
    height: 690px;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-right: 0;
  }
  .service .service-back .service-container .service-item {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 311px;
    height: 183px;
  }
  .service .service-back .service-container .service-item:nth-child(1) {
    height: 183px;
    top: 40px;
  }
  .service .service-back .service-container .service-item:nth-child(1) img {
    margin-bottom: 10px;
  }
  .service .service-back .service-container .service-item:nth-child(2) {
    height: 179px;
    top: 263px;
  }
  .service .service-back .service-container .service-item:nth-child(2) img {
    margin-bottom: 14px;
  }
  .service .service-back .service-container .service-item:nth-child(3) {
    height: 179px;
    top: 482px;
  }
  .service .service-back .service-container .service-item:nth-child(3) img {
    margin-bottom: 14px;
  }
  .service .service-back .service-container .service-item .service-subtitle {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 3.6px;
    margin-bottom: 14px;
  }
  .service .service-back .service-container .service-item .service-text {
    font-size: 14px;
    letter-spacing: 0.01px;
  }
}

.results {
  height: 754px;
}

.results .results-back {
  height: 754px;
  margin-left: 40px;
  background-color: #3E3E3E;
  text-align: left;
  overflow: hidden;
}

.results .results-back .text-white {
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat";
  margin-left: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.results .results-back .results-container {
  margin-left: 60px;
}

.results .results-back .results-container .results-wrapper {
  display: flex;
  justify-content: flex-start;
}

.results .results-back .results-container .results-wrapper .results-slide {
  width: 400px;
  height: 365px;
  background-color: #fff;
  margin-right: 40px;
}

.results .results-back .results-container .results-wrapper .results-slide img {
  width: 400px;
  height: 250px;
}

.results .results-back .results-container .results-wrapper .results-slide .slide-subtitle {
  font-size: 20px;
  font-weight: bold;
  height: 26px;
  margin-left: 20px;
  margin-top: 2px;
}

.results .results-back .results-container .results-wrapper .results-slide .slide-text {
  width: 382px;
  margin-left: 16px;
  margin-top: 14px;
  line-height: 24px;
}

@media screen and (max-width: 768px) {
  .results .results-back .results-container .results-wrapper .results-slide .slide-text {
    margin-top: 0;
  }
}

.results .results-back .results-view {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  width: 289px;
  height: 62px;
  border: 1px solid #fff;
  line-height: 62px;
  margin-top: 30px;
  margin-left: 60px;
}

.results .results-back .results-view:hover {
  cursor: pointer;
  color: #3E3E3E;
  background-color: #fff;
}

.results .results-back .results-view .view-all {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 600;
}

.results .results-back .results-view:hover {
  background-color: #fff;
}

.results .results-back .results-view:hover a {
  opacity: 1.0;
  color: #3E3E3E;
}

@media screen and (max-width: 768px) {
  .results {
    width: 100%;
    min-height: 533px;
    height: auto;
  }
  .results .results-back {
    width: 100%;
    height: 533px;
    margin-left: 0;
  }
  .results .results-back .text-white {
    padding-top: 38px;
    padding-bottom: 40px;
    text-align: center;
    margin-left: 0;
  }
  .results .results-back .results-container {
    width: 95%;
    margin-left: 5%;
    padding-bottom: 53px;
  }
  .results .results-back .results-container .results-wrapper .results-slide {
    width: 276px;
    height: 251px;
    margin-right: 24px;
  }
  .results .results-back .results-container .results-wrapper .results-slide img {
    width: 276px;
    height: 168px;
  }
  .results .results-back .results-container .results-wrapper .results-slide .slide-subtitle {
    font-size: 14px;
    margin-top: 0;
    margin-left: 12px;
  }
  .results .results-back .results-container .results-wrapper .results-slide .slide-text {
    font-size: 12px;
    line-height: 20px;
    width: 252px;
    margin-left: auto;
    margin-right: auto;
  }
  .results .results-back .results-container .swiper-pagination {
    margin-left: -8px;
  }
  .results .results-back .results-container .swiper-pagination .swiper-pagination-bullet {
    margin-right: 7px;
  }
  .results .results-back .results-view {
    width: 316px;
    height: 54px;
    font-size: 18px;
    letter-spacing: 3.6px;
    line-height: 54px;
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

.price-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .price-container {
    padding-top: 36px;
  }
}

.price-container .text-black {
  color: #3E3E3E;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .price-container .text-black {
    margin-bottom: 42px;
  }
}

.price-container .price-table {
  width: 75%;
  max-width: 960px;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .price-container .price-table {
    width: 92%;
    margin-left: 4%;
    margin-right: 4%;
  }
}

.price-container .price-table .price-table-row {
  width: 100%;
  height: 60px;
  line-height: 59px;
  display: flex;
  justify-content: start;
}

@media screen and (max-width: 768px) {
  .price-container .price-table .price-table-row {
    height: 55px;
  }
}

.price-container .price-table .price-table-left {
  width: 262px;
  border: 1px solid #F3F3F3;
  border-right: none;
  color: #fff;
  background-color: #3E3E3E;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .price-container .price-table .price-table-left {
    width: 25%;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
}

@media screen and (max-width: 576px) {
  .price-container .price-table .price-table-left {
    width: 29%;
  }
}

.price-container .price-table .price-table-right {
  width: 100%;
  border: 1px solid #707070;
  background-color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .price-container .price-table .price-table-right {
    width: 75%;
    padding-left: 20px;
    font-size: 1.2rem;
  }
}

.price-container .table-out {
  width: 75%;
  max-width: 960px;
  font-size: 12px;
  height: 38px;
  text-align: left;
  margin-top: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .price-container .table-out {
    width: 92%;
    margin-top: 7px;
  }
}

.comments {
  padding-top: 242px;
  width: 100%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .comments {
    padding-top: 97px;
  }
}

.comments .comments-back {
  width: 76.5%;
  height: 576px;
  background-color: #3E3E3E;
}

@media screen and (max-width: 992px) {
  .comments .comments-back {
    width: 100%;
    height: 425px;
  }
}

.comments .comments-main {
  width: 52%;
  max-width: 666px;
  height: 604px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  position: absolute;
  top: 96px;
  right: 45.05%;
}

.comments .comments-main .text-black {
  color: #3E3E3E;
  font-size: 36px;
  font-family: "Montserrat";
  font-weight: 600;
  text-align: left;
  margin: 80px 0 0 60px;
  height: 44px;
  padding-top: 35px;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  .comments .comments-main .text-black {
    padding-top: 36px;
    margin-top: 0;
    font-size: 1.875rem;
    margin-left: 20px;
  }
}

.comments .comments-main .comment-item {
  width: 100%;
  max-width: 644px;
  height: 100px;
  display: flex;
  justify-content: start;
  margin-top: 65px;
}

@media screen and (max-width: 768px) {
  .comments .comments-main .comment-item {
    margin-top: 40px;
    margin-bottom: 55px;
  }
}

.comments .comments-main .comment-item img {
  width: 100px;
  height: 100px;
  margin-left: 60px;
  margin-right: 35px;
}

@media screen and (max-width: 992px) {
  .comments .comments-main .comment-item img {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media screen and (max-width: 576px) {
  .comments .comments-main .comment-item img {
    width: 60px;
    height: 60px;
  }
}

.comments .comments-main .comment-item p {
  text-align: left;
  width: 65%;
}

@media screen and (max-width: 992px) {
  .comments .comments-main .comment-item p {
    font-size: 0.875rem;
    line-height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .comments .comments-main .comment-item p {
    font-size: 1rem;
    line-height: 24px;
  }
}

@media screen and (max-width: 576px) {
  .comments .comments-main .comment-item p {
    font-size: 0.875rem;
    line-height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .comments .comments-main {
    width: 91%;
    height: 425px;
    top: 38px;
    left: 5%;
  }
  .comments .comments-main .comment-item {
    margin-left: auto;
    margin-right: auto;
  }
}

.comments .comments-picture {
  position: absolute;
  left: 54.95%;
  top: 175px;
  width: 41.7%;
  max-width: 534px;
}

.comments .comments-picture img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .comments .comments-picture {
    top: 250px;
  }
}

@media screen and (max-width: 768px) {
  .comments .comments-picture {
    display: none;
  }
}

.qanda {
  width: 100%;
  background-image: url(../image/sunyu-kim-1053375-unsplash@2x.png);
  background-size: cover;
  background-position: top center;
  padding-bottom: 60px;
}

.qanda .text-black {
  color: #3E3E3E;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  padding-top: 60px;
  padding-bottom: 45px;
}

.qanda .qanda-form {
  width: 48%;
  max-width: 616px;
  height: auto;
  padding-bottom: 40px;
  margin-left: 49%;
  margin-top: 60px;
}

.qanda .qanda-form .qanda-item {
  width: 100%;
  max-width: 616px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 3px;
  position: relative;
  margin-top: 31px;
}

@media screen and (max-width: 768px) {
  .qanda .qanda-form .qanda-item {
    margin-top: 11px;
  }
}

.qanda .qanda-form .qanda-item .qanda-question {
  display: flex;
  align-items: center;
}

.qanda .qanda-form .qanda-item .qanda-question .big-q {
  display: block;
  width: 22px;
  height: 22px;
  background-color: #3B69FF;
  color: #fff;
  border-radius: 13px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-left: 18px;
  margin-right: 15px;
}

.qanda .qanda-form .qanda-item .qanda-question .qanda-main-question {
  display: block;
  width: 180px;
  color: #3E3E3E;
  font-weight: bold;
  padding: 18px 0 12px;
  text-align: left;
}

.qanda .qanda-form .qanda-item .qanda-question .qanda-main-question span {
  display: inline-block;
  color: #3E3E3E;
  font-weight: bold;
}

.qanda .qanda-form .qanda-item .qanda-question .acodion-img-box {
  position: absolute;
  right: 18px;
  width: 15px;
  height: 15px;
  background-image: url(../image/plus.svg);
}

.qanda .qanda-form .qanda-item .qanda-question .acodion-img-box.selected {
  background-image: url(../image/minus.svg);
  background-repeat: no-repeat;
  margin-top: 6px;
}

.qanda .qanda-form .qanda-acodion {
  width: 100%;
  max-width: 616px;
  background-color: #fff;
  font-weight: normal;
  margin-top: 0;
  display: none;
  border-radius: 0 0 7px 7px;
}

.qanda .qanda-form .qanda-acodion .qanda-p {
  width: 94%;
  max-width: 580px;
  padding: 10px 14px;
  background-color: rgba(59, 105, 255, 0.2);
  border-radius: 7px;
  text-align: left;
  margin: 0 18px;
}

@media screen and (max-width: 768px) {
  .qanda .qanda-form .qanda-acodion .qanda-p {
    font-size: 0.875rem;
    width: 90%;
    line-height: 20px;
    padding: 10px 10px;
  }
}

.qanda .qanda-form .qanda-acodion .space {
  display: block;
  width: 100%;
  max-width: 580px;
  height: 18px;
  background-color: #fff;
  border-radius: 0 0 7px 7px;
}

@media screen and (max-width: 768px) {
  .qanda .qanda-form .qanda-acodion .space {
    height: 17px;
  }
}

@media screen and (max-width: 768px) {
  .qanda {
    height: auto;
    padding-bottom: 15px;
  }
  .qanda .text-black {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    padding-top: 40px;
  }
  .qanda .qanda-form {
    width: 91%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 32px;
  }
}

.access {
  width: 100%;
  position: relative;
  height: 554px;
}

.access .access-back {
  width: 76.5%;
  height: 549px;
  background-color: #3E3E3E;
  padding-top: 130px;
}

.access .access-back .text-white {
  width: 322px;
  color: #fff;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  position: absolute;
  right: 65%;
}

@media screen and (max-width: 992px) {
  .access .access-back .text-white {
    right: 55%;
  }
}

.access .access-back .access-address {
  width: 322px;
  padding-top: 104px;
  position: absolute;
  right: 65%;
}

.access .access-back .access-address p {
  color: #fff;
  text-align: left;
}

@media screen and (max-width: 992px) {
  .access .access-back .access-address {
    right: 55%;
  }
}

.access .access-back .google-btn {
  color: #fff;
  width: 322px;
  height: 62px;
  border: 1px solid #fff;
  line-height: 62px;
  margin-top: 200px;
  position: absolute;
  right: 65%;
}

.access .access-back .google-btn:hover {
  cursor: pointer;
  color: #3E3E3E;
  background-color: #fff;
}

@media screen and (max-width: 992px) {
  .access .access-back .google-btn {
    right: 55%;
  }
}

.access .access-back .google-btn .map-btn {
  display: block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 600;
}

.access .access-back .google-btn:hover {
  background-color: #fff;
}

.access .access-back .google-btn:hover a {
  opacity: 1.0;
  color: #3E3E3E;
}

.access .access-back .google-map {
  width: 56.7%;
  height: 520px;
  position: absolute;
  top: 120px;
  left: 40%;
  box-shadow: 0px 0px 10px rgba(62, 62, 62, 0.2);
}

.access .access-back .google-map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .access .access-back .google-map {
    width: 45%;
    height: 420px;
    left: 53%;
    top: 180px;
  }
}

@media screen and (max-width: 768px) {
  .access {
    width: 100%;
    height: 574px;
    position: static;
  }
  .access .access-back {
    width: 100%;
    height: 574px;
    padding-top: 40px;
    position: static;
  }
  .access .access-back .text-white {
    margin-left: 4.5%;
    position: static;
  }
  .access .access-back .access-address {
    margin-left: 5%;
    position: static;
    padding-top: 0;
  }
  .access .access-back .access-address p {
    font-size: 12px;
  }
  .access .access-back .google-map {
    position: static;
    width: 91%;
    height: 241px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .access .access-back .google-btn {
    width: 339px;
    height: 54px;
    margin-left: auto;
    margin-right: auto;
    line-height: 54px;
    font-size: 18px;
    margin-top: 26px;
    position: static;
  }
}

.contact {
  padding-top: 206px;
}

.contact .contact-back {
  background-image: url(../image/alex-blajan-159378-unsplash@2x.png);
  background-size: cover;
  width: 100%;
  height: 1136px;
  padding-top: 70px;
}

.contact .contact-back .contact-form-box {
  width: 100%;
  height: 1056px;
  border: 12px;
  margin: 0 auto;
}

.contact .contact-back .contact-form-box .contact-title-back {
  width: 100%;
  max-width: 960px;
  height: 160px;
  background-image: url(../image/contact1@2x.png);
  background-size: cover;
  border-radius: 12px 12px 0 0;
  margin-left: auto;
  margin-right: auto;
}

.contact .contact-back .contact-form-box .contact-title-back .text-white {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  font-family: "Montserrat", sans-serif;
  padding-top: 62px;
  padding-bottom: 16px;
}

.contact .contact-back .contact-form-box .contact-title-back p {
  color: #fff;
}

.contact .contact-back .contact-form-box .contact-main {
  width: 100%;
  max-width: 940px;
  height: 806px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 0 0 12px 12px;
}

@media screen and (max-width: 992px) {
  .contact .contact-back .contact-form-box .contact-main {
    width: 98%;
  }
}

.contact .contact-back .contact-form-box .contact-main form {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding-top: 60px;
}

.contact .contact-back .contact-form-box .contact-main form .contact-item label {
  font-size: 1rem;
  font-weight: bold;
}

.contact .contact-back .contact-form-box .contact-main form .select select {
  width: 178px;
  height: 40px;
  margin-left: 52px;
  font-size: 16px;
  border: 1px solid #707070;
}

.contact .contact-back .contact-form-box .contact-main form .name {
  margin-top: 36px;
  display: flex;
}

.contact .contact-back .contact-form-box .contact-main form .name label {
  margin-right: 100px;
}

.contact .contact-back .contact-form-box .contact-main form .name span {
  display: inline-block;
  width: 40px;
  height: 16px;
  color: #fff;
  background-color: #FF4646;
  margin-left: 12px;
  font-size: 12px;
  text-align: center;
}

.contact .contact-back .contact-form-box .contact-main form input[type="text"] {
  width: 532px;
  height: 30px;
  border: none;
  border-bottom: 1px solid #707070;
}

.contact .contact-back .contact-form-box .contact-main form input[type="text"]::placeholder {
  position: relative;
  font-size: 1rem;
  padding-left: 12px;
  opacity: 0.5;
}

.contact .contact-back .contact-form-box .contact-main form .hurigana {
  margin-top: 36px;
  display: flex;
}

.contact .contact-back .contact-form-box .contact-main form .hurigana label {
  margin-right: 66px;
}

.contact .contact-back .contact-form-box .contact-main form .hurigana span {
  display: inline-block;
  width: 40px;
  height: 16px;
  color: #fff;
  background-color: #FF4646;
  margin-left: 12px;
  font-size: 12px;
  text-align: center;
}

.contact .contact-back .contact-form-box .contact-main form .mailaddress {
  margin-top: 30px;
  display: flex;
}

.contact .contact-back .contact-form-box .contact-main form .mailaddress label {
  margin-right: 70px;
}

.contact .contact-back .contact-form-box .contact-main form .mailaddress input[type="email"] {
  width: 532px;
  height: 29px;
  border: none;
  border-bottom: 1px solid #707070;
}

.contact .contact-back .contact-form-box .contact-main form .mailaddress input[type="email"]::placeholder {
  position: relative;
  font-size: 1rem;
  padding-left: 10px;
  opacity: 0.5;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box {
  display: flex;
  margin-top: 32px;
  height: 29px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-title {
  width: 44px;
  height: 29px;
  font-size: 16px;
  font-weight: bold;
  margin-right: 136px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box {
  width: 505px;
  height: 29px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box .radio-label {
  font-size: 16px;
  margin-right: 60px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box label {
  font-size: 16px;
  margin-right: 26px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box input[type="radio"] {
  display: none;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box .circle {
  color: #fff;
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 15px;
  border: 1px solid #707070;
  background-color: #fff;
  text-align: left;
  line-height: 29px;
  font-size: 18px;
  margin-left: 6px;
  margin-right: 9px;
  margin-bottom: 3px;
}

.contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box input[type="radio"]:checked + .circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  line-height: 29px;
  border-radius: 15px;
  box-shadow: 0 0 0 1px #707070;
  border: 2px solid #fff;
  background-color: #3B69FF;
  margin-right: 19px;
}

.contact .contact-back .contact-form-box .contact-main form .message {
  margin-top: 20px;
}

.contact .contact-back .contact-form-box .contact-main form .message textarea {
  width: 100%;
  height: 200px;
}

.contact .contact-back .contact-form-box .contact-main form .form-check {
  margin-top: 30px;
  display: flex;
}

.contact .contact-back .contact-form-box .contact-main form .form-check label {
  width: 20px;
  height: 20px;
}

.contact .contact-back .contact-form-box .contact-main form .form-check input[type="checkbox"] {
  display: none;
}

.contact .contact-back .contact-form-box .contact-main form .form-check .check-kara {
  cursor: pointer;
  display: block;
  margin-top: 2px;
  margin-right: 41px;
  position: relative;
}

.contact .contact-back .contact-form-box .contact-main form .form-check .check-kara::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
}

@media screen and (max-width: 768px) {
  .contact .contact-back .contact-form-box .contact-main form .form-check .check-kara::after {
    width: 16px;
    height: 16px;
  }
}

.contact .contact-back .contact-form-box .contact-main form .form-check input[type="checkbox"]:checked + .check-kara {
  position: relative;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid #707070;
}

@media screen and (max-width: 768px) {
  .contact .contact-back .contact-form-box .contact-main form .form-check input[type="checkbox"]:checked + .check-kara {
    width: 18px;
    height: 18px;
  }
}

.contact .contact-back .contact-form-box .contact-main form .form-check input[type="checkbox"]:checked + .check-kara::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 5px;
  transform: rotate(45deg);
  width: 6px;
  height: 14px;
  border: none;
  border-right: 3px solid #3B69FF;
  border-bottom: 3px solid #3B69FF;
}

@media screen and (max-width: 768px) {
  .contact .contact-back .contact-form-box .contact-main form .form-check input[type="checkbox"]:checked + .check-kara::after {
    width: 4px;
    height: 10px;
  }
}

.contact .contact-back .contact-form-box .contact-main form .form-check p {
  width: 235px;
  font-size: 18px;
  margin-left: 21px;
}

.contact .contact-back .contact-form-box .contact-main form .orange {
  margin-left: 0;
  margin-top: 30px;
  width: 174px;
  height: 50px;
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.45px;
}

@media screen and (max-width: 768px) {
  .contact {
    width: 100%;
    height: 1078px;
    padding-top: 0;
  }
  .contact .contact-back {
    background-image: url(../image/alex-blajan-159378-unsplash.png);
    width: 100%;
    height: 1078px;
    padding-top: 40px;
    position: relative;
  }
  .contact .contact-back .contact-form-box {
    width: 91%;
  }
  .contact .contact-back .contact-form-box .contact-title-back {
    background: url(../image/contact1.png) center center/cover no-repeat;
    width: 100%;
    height: 160px;
    border-radius: 12px 12px 0 0;
  }
  .contact .contact-back .contact-form-box .contact-title-back .text-white {
    font-size: 30px;
    padding-top: 36px;
    margin-bottom: 35px;
  }
  .contact .contact-back .contact-form-box .contact-title-back p {
    font-size: 0.875rem;
    width: 91%;
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
  }
  .contact .contact-back .contact-form-box .contact-main {
    width: 91%;
    height: 838px;
    position: absolute;
    top: 180px;
  }
  .contact .contact-back .contact-form-box .contact-main form {
    width: 100%;
    padding-top: 0;
  }
  .contact .contact-back .contact-form-box .contact-main form .select {
    padding-top: 40px;
  }
  .contact .contact-back .contact-form-box .contact-main form .select select {
    width: 100%;
    height: 38px;
    margin-left: 0;
    font-size: 0.875rem;
    margin-top: 10px;
  }
  .contact .contact-back .contact-form-box .contact-main form .name {
    margin-top: 30px;
  }
  .contact .contact-back .contact-form-box .contact-main form .hurigana, .contact .contact-back .contact-form-box .contact-main form .mailaddress {
    margin-top: 26px;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item {
    width: 90%;
    display: flex;
    flex-direction: column;
    margin-left: 5%;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item label {
    font-size: 1rem;
    font-weight: bold;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item label span {
    width: 40px;
    height: 16px;
    margin-left: 15px;
    line-height: 16px;
    border-radius: 3px;
    font-size: 0.75rem;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item input[type="text"], .contact .contact-back .contact-form-box .contact-main form .contact-item input[type="email"] {
    width: 100%;
    height: 32px;
    margin-left: 0;
    font-size: 16px;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item input[type="text"]::placeholder, .contact .contact-back .contact-form-box .contact-main form .contact-item input[type="email"]::placeholder {
    font-size: 0.875rem;
    padding-left: 0;
  }
  .contact .contact-back .contact-form-box .contact-main form .contact-item textarea {
    width: 100%;
    height: 160px;
    margin-top: 10px;
  }
  .contact .contact-back .contact-form-box .contact-main form .radio-box {
    width: 90%;
    flex-direction: column;
    margin-top: 26px;
    height: 20px;
  }
  .contact .contact-back .contact-form-box .contact-main form .radio-box .radio-title {
    font-size: 16px;
    margin-left: 5%;
  }
  .contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box {
    display: flex;
    justify-content: start;
    margin-left: 0;
    width: 100%;
    height: 20px;
  }
  .contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box label {
    margin-left: 3%;
    margin-right: 5%;
    margin-top: 8px;
    font-size: 1rem;
    height: 20px;
  }
  .contact .contact-back .contact-form-box .contact-main form .radio-box .radio-item-box label .circle {
    margin-bottom: 0;
  }
  .contact .contact-back .contact-form-box .contact-main form .message {
    margin-top: 60px;
  }
  .contact .contact-back .contact-form-box .contact-main form .form-check {
    margin-left: 3%;
  }
  .contact .contact-back .contact-form-box .contact-main form .form-check label {
    width: 16px;
    height: 16px;
  }
  .contact .contact-back .contact-form-box .contact-main form .form-check p {
    font-size: 1rem;
  }
  .contact .contact-back .contact-form-box .contact-main form .orange {
    width: 165px;
    height: 48px;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
  }
}

.footer {
  width: 100%;
  height: 292px;
  margin-left: auto;
  margin-right: auto;
  color: #E3E3E3;
  background-color: #3E3E3E;
}

.footer-container {
  width: 75%;
  max-width: 960px;
  height: 185px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 62px;
  display: flex;
  justify-content: space-between;
}

.footer-container .footer-left {
  width: 185px;
  height: 185px;
}

.footer-container .footer-left .footer-sns {
  height: 36px;
  display: flex;
  margin-bottom: 35px;
}

.footer-container .footer-left .footer-sns .twitter {
  width: 36px;
  height: 36px;
  font-size: 20px;
  text-align: center;
  background-color: #3E3E3E;
}

.footer-container .footer-left .footer-sns .twitter img {
  width: 36px;
  height: 36px;
}

.footer-container .footer-left .footer-sns .facebook {
  width: 36px;
  height: 36px;
  font-size: 20px;
  text-align: center;
  color: #3E3E3E;
  background-color: #3E3E3E;
  margin-left: 32px;
}

.footer-container .footer-left .footer-sns .facebook img {
  width: 36px;
  height: 36px;
}

.footer-container .footer-left .footer-ul li {
  margin-bottom: 14px;
}

.footer-container .footer-left .footer-ul li a {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.4px;
}

.footer-container .footer-right {
  position: relative;
}

.footer-container .footer-right .footer-title {
  width: 400px;
  height: 58px;
  font-size: 42px;
  font-family: "Montserrat", sans-serif;
  text-align: right;
}

.footer-container .footer-right p {
  font-size: 12px;
  margin-top: 6px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.3px;
  text-align: right;
}

.footer-container .footer-right .totop-btn {
  width: 50px;
  height: 50px;
  background-image: url(../image/totop.svg);
  background-size: cover;
  position: absolute;
  right: -60px;
  bottom: -58px;
}

@media screen and (max-width: 768px) {
  .footer {
    width: 100%;
    height: 395px;
    position: relative;
  }
  .footer .footer-container {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    height: 345px;
  }
  .footer .footer-container .footer-left {
    width: 100%;
    margin-top: 60px;
    height: 150px;
    display: flex;
    flex-direction: column;
  }
  .footer .footer-container .footer-left .footer-sns {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
  }
  .footer .footer-container .footer-left .footer-ul {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
  }
  .footer .footer-container .footer-left .footer-ul li {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer .footer-container .footer-left .footer-ul li a {
    font-size: 0.875rem;
  }
  .footer .footer-container .footer-right {
    position: static;
  }
  .footer .footer-container .footer-right .footer-title {
    height: 46px;
    font-size: 2rem;
    padding-top: 0;
    text-align: center;
    width: 100%;
  }
  .footer .footer-container .footer-right p {
    position: relative;
    text-align: center;
    margin-top: 8px;
  }
  .footer .footer-container .footer-right .totop-btn {
    position: absolute;
    bottom: 10px;
    right: 45px;
  }
}
