*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: auto;
  font-size: 16px;
  line-height: 1.6;
  color: #3d5a73;
}

a {
  text-decoration: none;
}

.title-bg {
  width: 100%;
  text-align: center;
}

.title {
  display: inline-block;
  margin-top: 100px;
  width: 520px;
  height: 80px;
  padding: 15px 34px;
  text-align: center;
  font-size: 32px;
  background-color: #cbe1f4;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .title {
    width: 90%;
    height: 40px;
    padding-top: 8px;
    margin-top: 30px;
    font-size: 14px;
  }
}

/*header*/
.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;
  background: #fff;
  z-index: 301;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 8px;
  background: #fff;
  z-index: 301;
}

.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: #3d5a73;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  width: 200px;
  height: 500px;
  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-icon-item {
  border-bottom: 1px dotted #3d5a73;
}
.drawer-icon-item a {
  display: block;
  color: #3d5a73;
  text-decoration: none;
  padding: 18px 20px;
  position: relative;
}
.drawer-icon-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;
}

.header-top {
  background-color: #cbe1f4;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
  z-index: 100;
}
@media (max-width: 767px) {
  .header-top {
    margin-top: 0;
    position: fixed;
    height: 75px;
  }
}

.header-left {
  text-decoration: none;
  padding-top: 10px;
  padding-left: 70px;
}
@media (max-width: 767px) {
  .header-left {
    padding-left: 25px;
  }
}

.header-left-top {
  font-size: 24px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-left-top {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .header-left-top {
    font-size: 8px;
  }
}

.header-right {
  font-size: 22px;
  padding-top: 20px;
  padding-right: 70px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-right {
    font-size: 5px;
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  .header-right {
    display: none;
  }
}

.header-airu {
  font-size: 45px;
  font-family: "YuMincho", "Yu Mincho", "fantasy", "cursive";
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-airu {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .header-airu {
    font-size: 18px;
    margin-top: 0;
  }
}

.header-under-bar {
  padding: 8px 10px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #fff;
  height: 50px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-under-bar {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .header-under-bar {
    display: none;
  }
}

.header-under-bar-item a {
  color: #fff;
}

.header-under-bar-box {
  padding: 0 20px;
  background: #6595be;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
}
@media (max-width: 767px) {
  .header-under-bar-box {
    display: none;
  }
}

.first-view {
  font-family: "YuMincho", "Yu Mincho", "fantasy", "cursive";
  width: 100%;
  height: 700px;
  text-align: center;
  font-size: 46px;
  text-shadow: 1px 2px 3px #808080;
  padding-top: 200px;
  background: url(../img/25349533_m.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .first-view {
    padding-top: 150px;
    font-size: 25px;
    height: 500px;
  }
}

/*handling-business*/
.handling-business {
  text-align: center;
}

.handling-business-item {
  display: inline-block;
  font-size: 32px;
  width: 250px;
  height: 100px;
  border: 4px solid rgba(24, 35, 45, 0.5);
  background-clip: padding-box;
  border-radius: 10px;
  box-shadow: 1px 2px 3px #808080;
  margin: 10px 25px;
  vertical-align: top;
  padding-top: 10px;
  background: none;
  color: #3d5a73;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .handling-business-item {
    width: 125px;
    height: 50px;
    margin: 5px 10px;
    font-size: 14px;
  }
}
.handling-business-item:last-child {
  padding-top: 5px;
}

.handling-business-items {
  display: inline-block;
  width: 700px;
}
.handling-business-items button:hover {
  opacity: 0.3;
  transition: 0.3s;
}
.handling-business-items p {
  text-align: left;
  font-size: 25px;
  outline: 3px solid #3d5a73;
  padding: 3px;
  border-radius: 10px;
  display: none;
}
@media (max-width: 767px) {
  .handling-business-items {
    width: 300px;
  }
  .handling-business-items p {
    font-size: 12px;
  }
}

.telephone {
  background-image: url(../img/Group\ 4.png);
  width: 272px;
  height: 141px;
  display: inline-block;
}

.line {
  background-image: url(../img/IMG_2833\ 1.png);
  width: 272px;
  height: 141px;
  display: inline-block;
}

.mail {
  background-image: url(../img/Group\ 5.png);
  width: 272px;
  height: 141px;
  display: inline-block;
}

.contact-method {
  display: flex;
  justify-content: space-around;
  margin: 45px 10px 0px;
  padding-bottom: 20px;
}

.sample {
  display: flex;
  justify-content: space-around;
  margin: 45px 10px 0px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .sample {
    display: block;
    text-align: center;
    padding-bottom: 10px;
  }
}

.reasons-for-being-chosen {
  text-align: center;
}

.background-color {
  background-color: rgba(212, 244, 251, 0.3);
  width: 100%;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .background-color {
    margin-top: 30px;
  }
}

.reasons {
  font-size: 32px;
  width: 100%;
  height: auto;
  padding-bottom: 25px;
}
.reasons div {
  text-decoration: underline;
}
.reasons div:hover {
  opacity: 0.3;
  transition: 0.3s;
}
.reasons p {
  display: none;
  text-align: left;
  padding: 0 20%;
}
@media (max-width: 767px) {
  .reasons {
    font-size: 16px;
  }
}

.reason1 {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .reason1 {
    margin-top: 20px;
  }
}

.reason2 {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .reason2 {
    margin-top: 25px;
  }
}

.reason3 {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .reason3 {
    margin-top: 25px;
  }
}

.philosophy {
  width: 100%;
}

.explanation {
  margin: 20px;
}

.self-introduction {
  font-size: 32px;
  text-align: left;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .self-introduction {
    font-size: 16px;
    margin-left: 0;
  }
}

.photograph {
  margin-right: 20px;
  width: 50%;
  float: left;
  max-width: 530px;
}

.article {
  font-size: 32px;
  padding-bottom: 25px;
  text-align: center;
}
@media (max-width: 767px) {
  .article {
    font-size: 16px;
    margin-left: 0;
  }
}
.article a {
  text-decoration: underline;
  font-size: 32px;
  color: #3d5a73;
}
@media (max-width: 767px) {
  .article a {
    font-size: 16px;
    margin-left: 0;
  }
}
.article a:hover {
  opacity: 0.3;
  transition: 0.3s;
}

.flow p {
  text-align: center;
  font-size: 32px;
}
@media (max-width: 767px) {
  .flow p {
    font-size: 16px;
  }
}

.arrow {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .arrow {
    font-size: 8px;
  }
}

.price-list {
  text-align: center;
  font-size: 32px;
}
@media (max-width: 767px) {
  .price-list {
    font-size: 16px;
  }
}
.price-list a {
  text-align: center;
  text-decoration: underline;
}

.price-list,
.price-list a {
  width: 100%;
}

.price-list-img {
  margin-top: 20px;
  width: 100%;
  height: 100%;
  text-align: center;
}
.price-list-img img {
  display: inline-block;
  width: 65%;
}

.cost {
  text-align: left;
}
.cost a {
  width: 100%;
  font-size: 32px;
  color: #3d5a73;
  text-decoration: underline;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .cost a {
    font-size: 16px;
  }
}

.price-text {
  font-size: 32px;
  margin-top: 20px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .price-text {
    font-size: 16px;
  }
}
.price-text a {
  display: inline;
}

.contact-form {
  margin: 0 auto 20px;
  padding-top: 25px;
  width: 1000px;
  max-width: 100%;
  font-size: 20px;
}
@media (max-width: 767px) {
  .contact-form {
    font-size: 16px;
  }
}

.contact-form-row {
  display: flex;
}
.contact-form-row:not(:first-child) {
  margin-top: 60px;
}

.contact-form-label {
  width: 200px;
  padding-top: 5px;
  padding-left: 20px;
}
.contact-form-input {
  width: 100%;
  padding-right: 20px;
}
.contact-form-input [type=text] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  font-size: 20px;
  color: inherit;
  font-family: inherit;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form-input [type=text] {
    font-size: 14px;
  }
}
.contact-form-input [type=email] {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  font-size: 20px;
  color: inherit;
  font-family: inherit;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form-input [type=email] {
    font-size: 16px;
  }
}
.contact-form-input select {
  box-shadow: none;
  border: 1px solid #707070;
  background: #fff;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 4px;
  font-size: 20px;
  color: inherit;
  font-family: inherit;
  width: 100%;
  background: #fff url(../img/select-arrow@2x.png) no-repeat right 12px center/17px 14px;
}
@media (max-width: 767px) {
  .contact-form-input select {
    font-size: 16px;
  }
}

.contact-check {
  text-align: center;
}
.contact-check [type=checkbox] {
  display: none;
}
.contact-check span {
  display: inline-block;
  padding-left: 49px;
  position: relative;
}
.contact-check span::before {
  content: "";
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #707070;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contact-check span::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: transparent url(../img/checkbox@2x.png) no-repeat center center/contain;
  display: none;
}
.contact-check span a {
  font-weight: 700;
}
.contact-check [type=checkbox]:checked + span::after {
  display: block;
}

.contact-button {
  margin-top: 30px;
  text-align: center;
}
.contact-button [type=submit] {
  background: #6595be;
  width: 304px;
  display: inline-block;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  font-size: 20px;
  box-shadow: 0 3px 6px;
  -webkit-appearance: inherit;
     -moz-appearance: inherit;
          appearance: inherit;
  font-family: inherit;
  border: none;
}
@media (max-width: 767px) {
  .contact-button [type=submit] {
    font-size: 16px;
  }
}

.google-form_box {
  width: 100%;
  text-align: center;
  display: inline-block;
}

.google-form {
  text-align: center;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.google-form iframe {
  max-width: 100%;
  height: 1000px;
}

.access {
  height: auto;
}

.access-map {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
  padding: 0 20px;
}

.iframe-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
  z-index: 99;
}
.iframe-wrap iframe {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.access-photo {
  margin: 80px auto 0;
  width: 800px;
  max-width: 100%;
  padding: 0 20px;
}

.img-wrap {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.img-wrap img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.parking-mask {
  display: none;
}

.parking {
  font-size: 32px;
  text-align: center;
  margin: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .parking {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .parking {
    font-size: 11px;
  }
}
.parking a {
  text-decoration: underline;
  color: #3d5a73;
}

.modal-parking {
  max-width: 100%;
}

.parking-content {
  width: 800px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 0 20px;
}

.parking-residence {
  font-size: 32px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .parking-residence {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .parking-residence {
    font-size: 11px;
  }
}

.iframe-wrap_parking1 {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-wrap_parking1 iframe {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.parking-text {
  font-size: 32px;
  margin: 10px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .parking-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .parking-text {
    font-size: 11px;
  }
}

.iframe-wrap_parking2 {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe-wrap_parking2 iframe {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

.access-info1 {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 0 auto;
  padding-top: 25px;
}

.access-info2 {
  -moz-text-align-last: left;
       text-align-last: left;
  width: 580px;
  height: auto;
  margin: 0 auto;
  font-size: 32px;
}
@media (max-width: 767px) {
  .access-info2 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .access-info2 {
    width: 200px;
    font-size: 12px;
  }
}

.footer {
  text-align: center;
  background: #cbe1f4;
  padding: 20px 0;
}

.footer-text {
  padding-top: 10px;
  display: block;
  font-size: 24px;
}
@media (max-width: 767px) {
  .footer-text {
    font-size: 12px;
    padding-top: 5px;
  }
}

.footer-airu {
  display: block;
  font-size: 45px;
  font-family: "YuMincho", "Yu Mincho", "fantasy", "cursive";
}
@media (max-width: 767px) {
  .footer-airu {
    font-size: 16px;
  }
}

.footer-hours,
.footer-phone {
  display: block;
  font-size: 24px;
}
@media (max-width: 767px) {
  .footer-hours,
.footer-phone {
    font-size: 12px;
  }
}

.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: 0 0 3px rgba(0, 0, 0, 0.16);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  color: #707070;
  display: none;
}
@media (max-width: 767px) {
  .modal-contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.modal-contact_head {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 24px;
  position: relative;
  text-align: center;
}
.modal-contact_head::after {
  content: "";
  width: 100px;
  height: 2px;
  background: #6595be;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .modal-contact_head {
    font-size: 18px;
  }
}

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

.modal-contact_sub-head {
  font-size: 20px;
  font-weight: 700;
  padding-left: 20px;
  position: relative;
  margin-top: 40px;
}
.modal-contact_sub-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background: #6595be;
}
@media (max-width: 767px) {
  .modal-contact_sub-head {
    font-size: 16px;
  }
}

.modal-contact_text {
  margin-top: 16px;
  line-height: 1.5;
  padding-left: 20px;
}
@media (max-width: 767px) {
  .modal-contact_text {
    font-size: 16px;
  }
}

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

.modal-contact_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  right: -20px;
  top: -20px;
}
.modal-contact_icon a {
  text-decoration: none;
}
.modal-contact_icon img {
  width: 40px;
}

.modal-contact_background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 500;
  display: none;
}