@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.6875;
  color: #3E3E3E;
  background: #F3F3F3;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: content-box;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 16px;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
/*===================================
# header
===================================*/
.header {
  height: 83px;
  background: #0C9085;
  position: fixed;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.header-nav-list {
  display: flex;
  justify-content: center;
}

.header-nav-colum {
  color: #fff;
}
.header-nav-colum + .header-nav-colum {
  margin-left: 40px;
}
.header-nav-colum a {
  position: relative;
}
.header-nav-colum a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 1px;
  width: 100%;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header-nav-colum a:hover:after {
  background: #3E3E3E;
}

.drawer {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 16px;
}

.drawer-logo {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
}

.drawer-icon {
  position: fixed;
  top: 30px;
  right: 24px;
  z-index: 300;
  transition: transform 0.5s ease 0s;
}
.drawer-icon.is-active {
  transform: translateX(-300px);
}
@media screen and (max-width: 767px) {
  .drawer-icon.is-active .drawer-icon__bar {
    background: url(../img/sp/batsu.png) no-repeat center center/contain;
  }
}

.drawer-icon__bars {
  width: 26px;
  height: 26px;
  display: block;
  position: relative;
}

.drawer-icon__bar {
  position: absolute;
  background: url(../img/sp/hamburger.png) no-repeat center center/contain;
  width: 26px;
  height: 26px;
}

.drawer-content {
  width: 300px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #0c9085;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  color: #fff;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 298;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

/*===================================
# footer
===================================*/
.footer {
  padding: 60px 160px;
  background: #0C9085;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 16px;
  }
}

.footer-inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer-inner {
    display: block;
  }
}

.footer-sns-list {
  display: flex;
  justify-content: space-around;
}

.footer-sns-item {
  font-size: 36px;
  color: #fff;
}

.footer-sns-item-link {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .footer-sns-item-link + .footer-sns-item-link {
    margin-left: 32px;
  }
}

@media screen and (min-width: 768px) {
  .footer-nav-list {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav-list {
    text-align: center;
    font-size: 14px;
  }
}

.footer-nav-item-link {
  color: #fff;
  letter-spacing: 0.4;
}

@media screen and (min-width: 768px) {
  .footer-left {
    text-align: right;
  }
}

.footer-logo {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer-logo {
    font-size: 32px;
    text-align: center;
  }
}

.footer-copyright {
  font-size: 12px;
  color: #fff;
  margin-top: 10px;
}
.footer-copyright small {
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    text-align: center;
  }
}

/*===================================
# common
===================================*/
/*===================================
# main
===================================*/
.util-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.-white {
  color: #fff;
}

.util-link {
  border: 1px solid #707070;
  padding: 20px 80px;
  margin: 20px 80px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  transition: background-color 0.4s, color 0.4s;
}
.util-link.mod-light {
  border: 1px solid #fff;
  color: #fff;
}
.util-link.mod-light:hover {
  background: #fff;
  color: #3E3E3E;
}
.util-link:hover {
  background: #0C9085;
  color: #fff;
}
.util-link.-active {
  background: #0C9085;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .util-link {
    margin: 20px 12px;
    padding: 20px 50px;
  }
}
@media screen and (min-width: 768px) {
  .util-link-submit:hover {
    background: #fff;
    color: #0C9085;
  }
}

.main {
  background: #F3F3F3;
}

/*===================================
# top
===================================*/
.top {
  background: url(../img/mv@2x.png) no-repeat center center/cover;
  height: 700px;
  padding-top: 83px;
  width: 100%;
}

.top-body {
  transform: translateY(50%);
}
.top-body .util-link {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .top-body {
    width: 600px;
    margin-left: 50%;
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-body {
    transform: translate(0, 50%);
    padding: 0 16px;
  }
}

.top-body-title {
  font-size: 32px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .top-body-title {
    font-size: 24px;
  }
}

.top-body-text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top-body-text {
    font-size: 14px;
  }
}

.top-footer {
  margin-top: 40px;
}
/*===================================
# news
===================================*/
.news {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 0 16px 20px;
    margin: 0;
  }
}

.news-inner {
  box-shadow: 5px 5px 12px rgba(62, 62, 62, 0.2);
  padding: 60px 48px 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .news-inner {
    margin-top: -20px;
    padding: 40px 16px 20px;
  }
}

.news-list {
  margin-top: 60px;
  border-top: 1px solid #CECDCD;
}

.news-item {
  border-bottom: 1px solid #CECDCD;
}

.news-item-link {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 1.5555;
  transition: background-color 0.2s;
}
.news-item-link:hover {
  background: #0C9085;
  cursor: pointer;
  transition: all 0.4s ease 0s;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .news-item-link {
    padding: 28px 100px 45px 16px;
  }
}
@media screen and (max-width: 767px) {
  .news-item-link {
    padding-bottom: 14px;
  }
}
.news-item-link::after {
  content: "";
  background: url(../img/news-arrow.png) no-repeat center center/contain;
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  height: 15px;
  width: 15px;
}

@media screen and (min-width: 768px) {
  .news-item-body {
    display: flex;
  }
}

.news-item-row {
  display: flex;
}
@media screen and (max-width: 767px) {
  .news-item-row {
    margin-top: 18px;
  }
}

.news-item-date {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.news-item-title {
  border: 2px solid #0C9085;
  border-radius: 30px;
  line-height: 1.8571;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .news-item-title {
    margin-left: 40px;
    font-size: 18px;
    padding: 0 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .news-item-title {
    font-size: 12px;
    padding: 4px 16px;
  }
}
@media (max-width: 960px) {
  .news-item-title {
    margin-left: 20px;
  }
}

.news-item-text {
  line-height: 1.6;
  margin-left: 40px;
  letter-spacing: 0.025em;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .news-item-text {
    line-height: 1.4285714286;
    font-size: 14px;
    width: 90%;
  }
}
@media (max-width: 960px) {
  .news-item-text {
    margin: 0;
  }
}

.news-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

/*===================================
# service
===================================*/
.service {
  background: linear-gradient(#0C9085 70%, #F3F3F3 30%);
  margin-top: 120px;
  padding: 60px 48px 40px;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 40px 16px 20px;
    margin-top: 60px;
  }
}

.service-inner {
  display: flex;
  justify-content: space-around;
  text-align: center;
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .service-inner {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .service-items {
    width: 230px;
  }
}
@media screen and (max-width: 767px) {
  .service-items {
    width: 95%;
    margin: 0 auto;
  }
  .service-items + .service-items {
    margin-top: 40px;
  }
}

.service-item-picture {
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.service-title {
  font-size: 20px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}

.service-text {
  font-size: 14px;
}

/*===================================
# results
===================================*/
.results {
  margin-top: 120px;
  padding: 50px 0 60px;
  background: #0C9085;
  margin-left: 40px;
}
.results .util-title {
  text-align: left;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .results .util-title {
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .results {
    margin-left: 0;
    margin-top: 45px;
    padding: 34px 0 10px;
  }
}

.swiper-parent {
  position: relative;
  padding-left: 20px;
}
.swiper-parent .swiper-pagination {
  bottom: -35px !important;
  text-align: left !important;
  left: 51% !important;
  transform: translateX(-50%) !important;
}
@media screen and (max-width: 767px) {
  .swiper-parent .swiper-pagination {
    bottom: -15% !important;
  }
}
@media screen and (max-width: 767px) {
  .swiper-parent {
    padding-left: 0;
  }
}

.swiper-wrap {
  overflow: hidden;
}
.swiper-wrap .swiper {
  overflow: visible;
  top: -8px;
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper {
    top: -27px;
  }
}
@media screen and (max-width: 767px) {
  .swiper-wrap .swiper-slide {
    width: 80%;
    height: 226px;
  }
}

.results-list {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .results-list {
    display: flex;
    justify-content: space-between;
    flex: 0 0 27.3333%;
  }
  .results-list + .results-list {
    margin-left: 33px;
  }
}
@media screen and (max-width: 767px) {
  .results-list + .results-list {
    margin-left: 20px;
  }
}

.results-item {
  display: block;
  color: #3E3E3E;
  background-color: #fff;
  width: 396px;
}
@media screen and (min-width: 768px) {
  .results-item:hover .results-item-picture > img {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 767px) {
  .results-item {
    width: 90%;
  }
}

.results-item-picture {
  overflow: hidden;
}
.results-item-picture img {
  transition: transform 0.4s;
}

.results-item-body {
  padding: 6px;
}
@media screen and (max-width: 767px) {
  .results-item-body {
    padding: 12px;
  }
}

.results-item-body-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 4px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .results-item-body-title {
    font-size: 14px;
    position: relative;
    top: -10px;
    margin: 0;
  }
}

.results-item-body-text {
  margin: 0 5px 0;
}
@media screen and (max-width: 767px) {
  .results-item-body-text {
    font-size: 12px;
    position: relative;
    margin: 0;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: 95% !important;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 65%;
  }
}

.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-pagination-bullet-active:after {
  content: "";
  border: solid 1px #fff;
  border-radius: 50%;
  display: block;
  height: 20px;
  width: 20px;
  position: relative;
  top: -4px;
  left: -5px;
}

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0 0 20px;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
}

.swiper-pagination-bullet, .swiper-pagination-bullet-active {
  border: solid 1px #FFF;
}

.results-footer {
  display: flex;
  justify-content: left;
  text-align: center;
  padding-top: 50px;
}
.results-footer .util-link {
  margin: 20px 60px;
}

/*===================================
# price
===================================*/
.price {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .price {
    margin-top: 33px;
  }
}

@media screen and (max-width: 767px) {
  .price-inner {
    width: 90%;
    margin: auto;
  }
}

.price-table {
  width: 60%;
  margin: 51px auto;
  table-layout: fixed;
}
@media screen and (max-width: 767px) {
  .price-table {
    width: 100%;
    margin: 33px auto;
  }
}

.table {
  border-collapse: collapse;
  border: solid 1px #707070;
  background: #fff;
  font-weight: bold;
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  border: solid 1px #707070;
  padding: 0 10px;
  height: 61px;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .table th,
.table td {
    height: 53px;
  }
}
.table th {
  background: #0C9085;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
.table th:nth-child(1) {
  width: 230px;
}
@media screen and (max-width: 767px) {
  .table th:nth-child(1) {
    width: 65px;
    font-size: 16px;
  }
}
.table td {
  font-size: 24px;
  font-weight: bold;
  padding-left: 40px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .table td {
    padding-left: 20px;
    font-size: 20px;
  }
}

.price-text {
  font-size: 12px;
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
}

/*===================================
# bg
===================================*/
.background {
  position: relative;
  z-index: 1;
}
.background::before {
  content: "";
  background: #0C9085;
  display: block;
  position: absolute;
  left: 0;
  top: 290px;
  width: 100%;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .background::before {
    width: 76.5625%;
    top: 140px;
    bottom: 140px;
  }
}

/*===================================
# comments
===================================*/
.comments {
  margin-top: 120px;
  position: relative;
  z-index: 1;
}
.comments .util-title {
  text-align: left;
}

.comments-inner {
  display: flex;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .comments-inner {
    top: -54px;
    width: auto;
    display: block;
    width: 90%;
  }
}

.comments-container {
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 768px) {
  .comments-container {
    flex: 0 1 100%;
    padding: 113px 40px 124px;
  }
}
@media screen and (max-width: 767px) {
  .comments-container {
    padding: 33px 20px 40px;
  }
}

.comments-container-body {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .comments-container-body {
    margin-top: 28px;
  }
}

.comments-container-item {
  display: flex;
  line-height: 1.5;
  text-align: justify;
}
.comments-container-item::before {
  content: "";
  flex: 0 0 50px;
  height: 55px;
  margin-left: 24px;
}
@media screen and (min-width: 768px) {
  .comments-container-item::before {
    flex: 0 0 100px;
    height: 100px;
    margin-right: 32px;
  }
}
@media screen and (max-width: 767px) {
  .comments-container-item::before {
    margin-left: 0;
    margin-right: 20px;
  }
}
.comments-container-item:nth-child(1)::before {
  background: url(../img/comments1@2x.png) no-repeat center center/contain;
}
.comments-container-item:nth-child(2)::before {
  background: url(../img/comments2@2x.png) no-repeat center center/contain;
}
.comments-container-item + .comments-container-item {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .comments-container-item {
    font-size: 14px;
  }
  .comments-container-item + .comments-container-item {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .comments-picture {
    margin-top: 80px;
  }
  .comments-picture img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .comments-picture {
    display: none;
  }
}

/*===================================
# qa
===================================*/
.qa {
  position: relative;
  z-index: 1;
  background: url(../img/qa-bg@2x.png) no-repeat center center/cover;
  padding: 60px 40px 120px;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .qa {
    padding: 40px 16px 60px;
  }
}

.qa-list {
  width: 612px;
  max-width: 100%;
  margin-top: 50px;
  margin-left: auto;
}

.qa-container {
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  padding: 20px 56px;
}
.qa-container:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px #ea5532;
  background-color: rgba(234, 85, 50, 0.8);
  color: #fff;
}
.qa-container + .qa-container {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .qa-container {
    padding: 16px;
  }
}

.qa-Q {
  font-weight: bold;
  position: relative;
  padding-left: 24px;
}
.qa-Q::before {
  content: "Q";
  position: absolute;
  left: -5px;
  color: #fff;
  background: #ea5532;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.qa-Q-icon {
  position: absolute;
  width: 17px;
  height: 24px;
  background: url(../img/plus.png) no-repeat center center/contain;
  transition: all 0.3s ease 0s;
  left: 95%;
  top: 0;
}
.qa-Q-icon.is-open {
  background: url(../img/minus.png) no-repeat center center/contain;
  transition: all 0.3s ease 0s;
}

.qa-A {
  padding: 16px;
  background: rgba(234, 85, 50, 0.8);
  letter-spacing: 1.5;
  margin-top: 20px;
  color: #fff;
  display: none;
}

/*===================================
# access
===================================*/
.access {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  padding: 0 40px 0 60px;
}
@media screen and (min-width: 768px) {
  .access {
    display: grid;
    grid-template-columns: 474px 1fr;
    grid-template-rows: auto 1fr;
    margin: 132px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .access {
    padding: 0 16px 60px;
    margin-top: 55px;
  }
}
.access .util-title {
  text-align: left;
  padding-left: 17%;
}
@media screen and (max-width: 767px) {
  .access .util-title {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .access-inner {
    grid-area: 1/1/2/2;
  }
}

.access-info {
  color: #fff;
  margin-top: 46px;
  line-height: 1.5;
  padding-left: 17%;
}
@media screen and (max-width: 767px) {
  .access-info {
    font-size: 14px;
    line-height: 1.4285714286;
    margin-top: 28px;
    padding: 0;
  }
}

.access-footer {
  margin-top: 45px;
}
.access-footer a:hover {
  background: #fff;
  color: #3E3E3E;
  transition: all 0.4s ease 0s;
}
@media screen and (max-width: 767px) {
  .access-footer {
    margin: 45px 16px 0 16px;
    text-align: center;
  }
}

.access-map {
  height: 520px;
  grid-area: 1/2/3/3;
  margin: auto;
  display: flex;
}
@media screen and (max-width: 767px) {
  .access-map {
    height: 241px;
    margin-top: 24px;
  }
}

.access-map-wrap {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .access-map-wrap {
    width: 343px;
  }
}

/*===================================
# contact
===================================*/
.contact {
  margin-top: 120px;
  background: url(../img/contact-bg@2x.png) no-repeat center center/cover;
  padding: 60px 40px 58px;
}
@media screen and (max-width: 767px) {
  .contact {
    margin-top: 0;
    padding: 40px 12px;
  }
}

.contact-inner {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
  width: 100%;
}

.contact-header {
  position: relative;
  padding: 50px 0 50px;
}
@media screen and (max-width: 767px) {
  .contact-header {
    padding: 40px 0 24px;
  }
}
.contact-header::before {
  content: "";
  background: url(../img/contact1@2x.png) no-repeat center center/cover;
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .contact-header::before {
    background: url(../img/sp/contact1.png) no-repeat center center/cover;
  }
}

.contact-header-items {
  position: relative;
}
.contact-header-items .util-title {
  color: #fff;
}

.contact-text {
  color: #fff;
  margin-top: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-text {
    font-size: 14px;
    text-align: left;
    margin: 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .contact-form {
    padding: 20px 0 40px;
  }
}

.contact-signup {
  width: 77%;
  max-width: 100%;
  background: #fff;
  margin: 75px auto 0;
  padding-bottom: 49px;
}
@media screen and (max-width: 767px) {
  .contact-signup {
    margin: 0 auto;
    padding: 0;
  }
}

.contact-signup-dl {
  padding: 60px 120px 0;
}
@media screen and (max-width: 767px) {
  .contact-signup-dl {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.contact-signup-row {
  display: flex;
}
.contact-signup-row:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .contact-signup-row:not(:first-child) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .contact-signup-row {
    display: block;
  }
}
.contact-signup-row select {
  width: 178px;
  height: 40px;
  border: 1px solid #FF4646;
  padding: 5px;
  position: relative;
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
}
.contact-signup-row select::-ms-expand { /* select要素のデザインを無効にする（IE用） */
  display: none;
}
@media screen and (max-width: 767px) {
  .contact-signup-row select {
    width: 100%;
  }
}

.contact-signup-label {
  width: 150px;
  margin: 0;
  display: flex;
  align-items: center;
}
.contact-signup-label label {
  font-weight: bold;
}
.contact-signup-label label.is-required {
  display: inline-block;
  position: relative;
}
.contact-signup-label label.is-required::after {
  content: "必須";
  position: absolute;
  top: 4px;
  left: calc(100% + 12px);
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: #FF4646;
  border-radius: 4px;
  text-align: center;
  padding: 2px 8px;
  line-height: 1;
  width: 45px;
}

.contact-signup-select {
  position: relative;
}
.contact-signup-select::after {
  content: "";
  border-bottom: 2px solid #707070;
  border-right: 2px solid #707070;
  display: block;
  position: absolute;
  height: 8px;
  width: 8px;
  top: 12px;
  right: 14px;
  transform: rotate(45deg);
}
.contact-signup-select:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact-signup-select:active {
  background-color: #ea5532;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .contact-signup-select {
    margin: 0;
  }
}

.contact-signup-input {
  width: calc(100% - 150px);
  margin: 0;
  padding: 0;
}
.contact-signup-input [type=text] {
  box-shadow: none;
  border: none;
  outline: none;
  background: #fff;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  width: 100%;
  border-bottom: solid 1px #ea5532;
}
.contact-signup-input [type=text]:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact-signup-input [type=text]:active {
  background-color: #ea5532;
  box-shadow: none;
}
.contact-signup-input [type=text]:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
@media screen and (max-width: 767px) {
  .contact-signup-input [type=text] {
    padding: 8px 3px;
  }
}
.contact-signup-input [type=email] {
  box-shadow: none;
  border: none;
  outline: none;
  background: #fff;
  padding: 12px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  width: 100%;
  border-bottom: solid 1px #ea5532;
}
.contact-signup-input [type=email]:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact-signup-input [type=email]:active {
  background-color: #ea5532;
  box-shadow: none;
}
.contact-signup-input [type=email]:focus {
  outline: -webkit-focus-ring-color auto 1px;
}
@media screen and (max-width: 767px) {
  .contact-signup-input [type=email] {
    padding: 8px 3px;
  }
}
.contact-signup-input [type=radio] {
  cursor: pointer;
}
.contact-signup-input [type=radio]:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact-signup-input [type=radio]:active {
  background-color: #ea5532;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .contact-signup-input {
    width: 90%;
  }
}

.contact-radio-item {
  display: flex;
}

.contact__form-radio-input {
  display: inline-block;
}
.contact__form-radio-input + .contact__form-radio-input {
  margin-left: 32px;
}
.contact__form-radio-input:focus + .contact__form-radio-label {
  outline: -webkit-focus-ring-color auto 1px;
}

.contact__form-radio-label {
  cursor: pointer;
  display: inline-block;
}
.contact__form-radio-label:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact__form-radio-label:active {
  background-color: #ea5532;
  box-shadow: none;
}

.contact-signup-row-massage {
  margin-top: 32px;
}

.contact-signup-input-massage {
  -webkit-margin-start: 0;
          margin-inline-start: 0;
}
.contact-signup-input-massage:hover {
  border-color: #ea5532;
  box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
}
.contact-signup-input-massage:active {
  background-color: #ea5532;
  box-shadow: none;
}
.contact-signup-input-massage textarea {
  height: 200px;
  width: 100%;
  border: 1px solid #ea5532;
}
@media screen and (max-width: 767px) {
  .contact-signup-input-massage textarea {
    height: 145px;
  }
}

.contact-footer {
  margin-top: 40px;
  padding: 0 120px;
  font-size: 18px;
}
.contact-footer .util-link {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .contact-footer {
    margin-top: 32px;
    padding: 16px;
  }
}

.contact-privacy [type=checkbox] {
  display: none;
}

.contact-privacy-label {
  position: relative;
  padding: 5px 30px;
  margin-left: 10px;
  cursor: pointer;
}
.contact-privacy-label::before {
  content: "";
  width: 20px;
  height: 20px;
  left: 5px;
  border: solid 1px #ea5532;
  vertical-align: text-bottom;
}
.contact-privacy-label::before, .contact-privacy-label::after {
  position: absolute;
  content: "";
  top: 50%;
}
.contact-privacy-label::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 13px;
  top: 75%;
  left: 11px;
  border-right: 2px solid #ea5532;
  border-bottom: 2px solid #ea5532;
  margin-top: -7px;
  opacity: 0;
  transform: rotate(45deg);
}
.contact-privacy-label span {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  top: 10px;
  left: 20px;
}
@media screen and (min-width: 768px) {
  .contact-privacy-label:hover::before {
    border-color: #ea5532;
    box-shadow: 0 0 6px rgba(234, 85, 50, 0.5);
  }
  .contact-privacy-label:active::before {
    background-color: #ea5532;
    box-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  .contact-privacy-label {
    padding: 5px 16px;
  }
  .contact-privacy-label:hover::before {
    border-color: #3B69FF;
    box-shadow: 0 0 5px rgba(73, 115, 255, 0.5);
  }
  .contact-privacy-label:active::before {
    background-color: rgba(73, 115, 255, 0.2);
    box-shadow: none;
  }
}

[type=checkbox]:checked + .contact-privacy-label::after {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .contact-footer-submit {
    text-align: center;
  }
}

.end-message {
  text-align: center;
  margin-top: 60px;
  display: none;
  height: 200px;
}
.end-message.-error {
  color: #f00;
}
/*# sourceMappingURL=style.css.map */