@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
body {
  color: #333333;
  line-height: 1.6;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.5;
  cursor: pointer;
}

.inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    padding: 10px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 10px;
  }
}

/*----section----*/
section {
  padding: 80px 0 120px;
}
@media (max-width: 767px) {
  section {
    padding: 40px 0 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  section {
    padding: 40px 0 40px;
  }
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-family: "Lato", sans-serif;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 23px;
  }
}
.section-title::after {
  position: absolute;
  content: "";
  height: 4px;
  width: 60px;
  background-color: #66a77e;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}

/*----header----*/
header {
  background-color: #66a77e;
  height: 100px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  header {
    height: 60px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: inherit;
}

.header-logo {
  width: 400px;
  color: white;
}
@media (max-width: 767px) {
  .header-logo {
    margin-top: 3px;
    margin-left: 8px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-logo {
    width: auto;
    margin-top: 3px;
    margin-left: 8px;
  }
}
.header-logo p {
  line-height: 1;
  color: white;
  font-size: 14px;
}
@media (max-width: 767px) {
  .header-logo p {
    font-size: 13px;
  }
}
.header-logo h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: white;
  font-size: 35px;
}
@media (max-width: 767px) {
  .header-logo h1 {
    font-size: 18px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  font-family: "Lato", sans-serif;
  color: white;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-nav {
    margin-left: 50px;
  }
}

.header-list .header-list-subtitle {
  font-size: 13px;
}
.header-list:not(:first-child) {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-list {
    margin-left: 3px;
  }
}
.header-list a {
  color: #ffffff;
  position: relative;
}
.header-list a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.header-list a:hover::after, .header-list a.is-active::after {
  background: #dae819;
}

.header-list-main {
  padding-bottom: 25px;
}

/*----top----*/
.main-visual {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .main-visual {
    margin-top: 60px;
    height: 420px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .main-visual {
    margin-top: 60px;
    height: auto;
  }
}
.main-visual .main-visual-content {
  position: relative;
}
.main-visual .main-visual-title {
  color: rgb(255, 255, 255);
  left: 17%;
  position: absolute;
  top: 14%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  line-height: 2;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .main-visual .main-visual-title {
    font-size: 20px;
    left: 5%;
    top: 10%;
  }
}
.main-visual .main-visual-image {
  height: 900px;
  width: 100%;
}
.main-visual .main-visual-image img {
  width: 100%;
  height: 100%;
}

.main-visual-title {
  font-size: 40px;
  margin-left: 130px;
  margin-top: 70px;
  line-height: 2;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: 500;
}
@media (max-width: 767px) {
  .main-visual-title {
    font-size: 32px;
    line-height: 1.3;
  }
}

.main-visual-lead {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .main-visual-lead {
    font-size: 18px;
    margin-top: 10px;
  }
}

/*----about----*/
.about {
  background-color: #EFEFEF;
}

.section-subtitle {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .section-subtitle {
    font-size: 18px;
  }
}

.about-container {
  width: 886px;
  margin: 0 auto;
  line-height: 2;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .about-container {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-container {
    width: auto;
  }
}

.about-text {
  font-size: 20px;
}
@media (max-width: 767px) {
  .about-text {
    font-size: 16px;
  }
}

.business-items {
  width: 920px;
  margin: 0 auto;
  line-height: 2;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .business-items {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .business-items {
    width: auto;
  }
}

.business-item {
  margin-top: 30px;
}

.business-item-title {
  font-size: 20px;
}
@media (max-width: 767px) {
  .business-item-title {
    font-size: 17px;
  }
}

.business-item-text {
  margin: 8px 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .business-item-text {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .business-item-number {
    font-size: 15px;
  }
}

/*----floor----*/
.floor {
  background-color: #EFEFEF;
}

.floor-items {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .floor-items {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-items {
    display: block;
  }
}

.floor-item p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}
.floor-item img {
  width: 100%;
  height: auto;
}

.floor-item_right {
  order: 1;
}
@media (max-width: 767px) {
  .floor-item_right {
    order: -1;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-item_right {
    order: -1;
  }
}

.floor-item_left {
  order: -1;
}
.floor-item_map {
  order: 0;
  width: 45%;
  padding: 45px;
  background-color: white;
  border-radius: 80px;
  line-height: 2;
}
@media (max-width: 767px) {
  .floor-item_map {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-item_map {
    width: 100%;
  }
}
.floor-item_map .floor-item_map-title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-item_map .floor-item_map-title {
    font-size: 25px;
  }
}
.floor-item_map img {
  width: 100%;
  height: 295px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-item_map img {
    width: 600px;
    height: 320px;
  }
}
.floor-item_map .floor-item_map-img {
  width: 100%;
  height: 70%;
}
.floor-item_map .floor-item_map-sentence {
  font-size: 15px;
}
@media (max-width: 767px) {
  .floor-item_map .floor-item_map-sentence {
    font-size: 13px;
  }
}

.floor-img_1F {
  margin-left: 60px;
}
@media (max-width: 767px) {
  .floor-img_1F {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-img_1F {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.floor-img_1F p {
  margin-left: 30px;
}

.floor-img_2F {
  margin-right: 80px;
}
@media (max-width: 767px) {
  .floor-img_2F {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-img_2F {
    margin-right: 0;
  }
}
.floor-img_2F p {
  margin-left: 87px;
}
@media (max-width: 767px) {
  .floor-img_2F p {
    margin-left: 31px;
  }
}

.floor-img_3F p {
  margin-left: 87px;
}
@media (max-width: 767px) {
  .floor-img_3F p {
    margin-left: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-img_3F p {
    margin-left: 32px;
  }
}

.floor-img_4F {
  margin-right: 80px;
}
@media (max-width: 767px) {
  .floor-img_4F {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .floor-img_4F {
    margin-right: 0;
  }
}
.floor-img_4F p {
  margin-left: 87px;
}
@media (max-width: 767px) {
  .floor-img_4F p {
    margin-left: 31px;
  }
}

.floor-item_map-overright {
  margin-right: 80px;
}
.floor-item_map-overright p {
  margin-left: 87px;
}

.access {
  background-color: white;
  padding-bottom: 60px;
}

.access-container {
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .access-container {
    display: block;
  }
}

.access-left {
  width: 45%;
  padding: 45px;
  background-color: #EFEFEF;
  border-radius: 80px;
  line-height: 2;
}
@media (max-width: 767px) {
  .access-left {
    width: 100%;
    margin-bottom: 50px;
    padding: 30px;
    font-size: 14px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .access-left {
    padding: 37px;
  }
}
.access-left .access-left_title {
  border-bottom: solid 1px black;
  margin-bottom: 30px;
  font-weight: bold;
}
.access-left .access-left_adress {
  margin-bottom: 30px;
  font-size: 16px;
}

.access-right {
  width: 45%;
  height: 100%;
}
@media (max-width: 767px) {
  .access-right {
    width: 100%;
    height: 300px;
  }
}
.access-right iframe {
  width: 100%;
}
@media (max-width: 767px) {
  .access-right iframe {
    width: 100%;
    height: 100%;
  }
}

.info {
  background-color: #EFEFEF;
}

.section-subtitle {
  font-size: 22px;
  margin-bottom: 25px;
  margin: 65px auto;
  text-align: center;
}

.info-container {
  width: 400px;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .info-container {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info-container {
    width: auto;
  }
}

.info-items {
  width: 840px;
}
@media (max-width: 767px) {
  .info-items {
    width: auto;
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .info-items {
    width: auto;
    margin-left: 181px;
  }
}

.info-item-container {
  display: flex;
  margin-bottom: 10px;
}

.info-item-b {
  margin-left: 90px;
}
@media (max-width: 767px) {
  .info-item-b {
    margin-left: 0;
  }
}

.info-item-title {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .info-item-title {
    margin-bottom: 35px;
  }
}

.info-item-text a {
  color: #66a77e;
  border-bottom: 1px solid #dae819;
}

.info-item-link {
  margin-bottom: 35px;
}
.info-item-link a {
  color: #66a77e;
}

.info-item-personal_info {
  font-size: 15px;
}
.info-item-personal_info a {
  color: #66a77e;
}

.drive-container {
  width: 650px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .drive-container {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .drive-container {
    width: auto;
  }
}

.drive-item-b {
  margin-left: 50px;
}
@media (max-width: 767px) {
  .drive-item-b {
    margin-left: 0;
  }
}

.drive-item-title {
  margin-bottom: 10px;
}

.drive-item-title a {
  color: #66a77e;
  margin-bottom: 10px;
}

.drive-rule {
  margin-top: 20px;
}

.qa {
  background-color: white;
}

footer {
  background: linear-gradient(to bottom, #66a77e, #7cd39b);
  padding: 50px 0 50px;
  color: #fff;
}
@media (max-width: 767px) {
  footer {
    padding: 0;
  }
}

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

.footer-left .footer-logo {
  font-size: 20px;
}
@media (max-width: 767px) {
  .footer-left .footer-logo {
    font-size: 13px;
  }
}
.footer-left .footer-logo p {
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer-left .footer-logo p {
    font-size: 13px;
  }
}
.footer-left .footer-adress {
  margin-top: 32px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .footer-left .footer-adress {
    margin-top: 10px;
    font-size: 13px;
  }
}
.footer-left .footer-tel {
  margin-top: 14px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .footer-left .footer-tel {
    margin-top: 14px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .footer-right {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer-right {
    display: none;
  }
}
.footer-right .footer-nav {
  display: flex;
  font-family: "Lato", sans-serif;
}
.footer-right .footer-nav li:not(:first-child) {
  margin-left: 40px;
}
.footer-right .footer-nav li a {
  color: #ffffff;
  position: relative;
}
.footer-right .footer-nav li a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease 0s;
}
.footer-right .footer-nav li a:hover::after, .footer-right .footer-nav li a.is-active::after {
  background: #dae819;
}

.footer-copy {
  margin-top: 46px;
  text-align: center;
  font-size: 14px;
  font-family: "Lato", sans-serif;
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .to-top {
    display: none;
  }
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  transform: translateX(-200px);
}
.drawer-icon.is-active .drawer-icon_bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon_bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon_bar3 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon_bars {
  width: 22px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon_bar1,
.drawer-icon_bar2,
.drawer-icon_bar3 {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon_bar1 {
  top: 0;
}

.drawer-icon_bar2 {
  top: 8px;
}

.drawer-icon_bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  background: #fff;
  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 {
  border-bottom: 1px dotted #707070;
}
.drawer-content_item a {
  display: block;
  color: #707070;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-content_item a::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(/img/arrow-b@2x.png) no-repeat center center/contain;
}

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

.qa {
  background-color: white;
}

.qa-items {
  margin: 80px auto 0;
  width: 900px;
  max-width: 100%;
}

.qa-item:nth-child(n+2) {
  margin-top: 24px;
}

.qa-box {
  border: 1px solid #66a77e;
}

.qa-box_q {
  color: #fff;
  background: #66a77e;
  padding: 12px 56px;
  font-weight: bold;
  position: relative;
}
.qa-box_q::before {
  content: "Q";
  position: absolute;
  top: 12px;
  left: 20px;
}

.qa-box_icon {
  width: 14px;
  height: 14px;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.qa-box_icon.is-open .qa-box_bar2 {
  transform: rotate(90deg);
}

.qa-box_bar1 {
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.qa-box_bar2 {
  width: 2px;
  height: 14px;
  background: #fff;
  border-radius: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  transition: all 0.3s ease 0;
}

.qa-box_a {
  background: #fff;
  font-weight: bold;
  color: #66a77e;
  line-height: 1.5;
  padding: 16px 30px 16px 20px;
  display: none;
}

.qa-box_content {
  position: relative;
  padding-left: 35px;
}
@media (max-width: 767px) {
  .qa-box_content {
    padding-left: 10px;
  }
}
.qa-box_content a {
  color: blue;
  border-bottom: 1px solid;
}
.qa-box_content::before {
  position: absolute;
  top: 0;
  left: 0;
}

.qa-box_item {
  margin-left: 30px;
}

.modal-contact {
  position: fixed;
  z-index: 501;
  width: 900px;
  max-width: calc(100% - 48px);
  height: 652px;
  max-height: calc(100% - 48px);
  background: #fff;
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1607843137);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #707070;
  padding: 60px;
}
@media (max-width: 767px) {
  .modal-contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.modal-contact_head {
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 24px;
  position: relative;
}
.modal-contact_head::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: #66a77e;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.modal-contact_content {
  margin-top: 40px;
  height: calc(100% - 84px - 108px);
  overflow: auto;
}

.modal-contact_subhead {
  font-size: 20px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
.modal-contact_subhead:not(:first-child) {
  margin-top: 40px;
}
.modal-contact_subhead::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #66a77e;
}

.modal-contact_text {
  margin-top: 16px;
  line-height: 1.5;
}

.modal-contact_button {
  margin-top: 60px;
  text-align: center;
}
.modal-contact_button a {
  display: inline-block;
  width: 176px;
  padding: 14px;
  text-align: center;
  color: #fff;
  background: #66a77e;
  font-weight: bold;
  border-radius: 8px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}

.modal-contact_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
}

.personal_info {
  margin-top: 60px;
}

.personal_info-text {
  margin-top: 70px;
  margin-bottom: 30px;
}

.personal_info-text_2 {
  list-style-type: decimal;
}
@media (max-width: 767px) {
  .personal_info-text_2 {
    padding: 0 15px;
  }
}
.personal_info-text_2 li:not(:first-child) {
  margin-top: 10px;
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .br-sp {
    display: block;
  }
}

@media (max-width: 767px) {
  .br-non-sp {
    display: none;
  }
}