@charset "UTF-8";
/* Breakpoints */
/* Width */
/* Height */
/* Colors */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Helvetica, sans-serif;
  background: url(../images/bg.png) no-repeat top center;
  background-size: cover;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

svg {
  fill: currentColor;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h2 {
  font-family: "modern", Arial, Helvetica, serif;
}

h1 {
  line-height: 1;
}

@media (min-width: 35em) {
  h1 {
    font-size: 4.375pxrem;
  }
}

@media (min-width: 767px) {
  h1 {
    font-size: 7.5pxrem;
  }
}

p, th, td, label, input {
  color: #404040;
  font-family: "gothic";
  font-weight: 300;
  font-size: 0.875rem;
}

@media (min-width: 767px) {
  p, th, td, label, input {
    font-size: 1.5rem;
    font-weight: 300;
  }
}

@media (min-width: 1000px) {
  p, th, td, label, input {
    font-size: 1rem;
    font-weight: 300;
  }
}

th {
  font-weight: 700;
}

.wrapper {
  max-width: 1000px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  width: 100%;
  /* 1 */
  padding: 0 15px;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

.pc-only {
  display: none !important;
}

@media (min-width: 767px) {
  .pc-only {
    display: block;
  }
}

.sp-only {
  display: block;
}

@media (min-width: 767px) {
  .sp-only {
    display: none !important;
  }
}

.clear {
  clear: both;
}

.card__title {
  opacity: 1;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  /* IE 5-7 */
  filter: alpha(opacity=1);
  /* Netscape */
  -moz-opacity: 1;
  /* Safari 1.x */
  -khtml-opacity: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
}

@supports ((-webkit-transform: translateY(150px)) or (transform: translateY(150px))) {
  .card__title {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.not-visible {
  opacity: 0;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 5-7 */
  filter: alpha(opacity=0);
  /* Netscape */
  -moz-opacity: 0;
  /* Safari 1.x */
  -khtml-opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.visible {
  opacity: 1 !important;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)" !important;
  /* IE 5-7 */
  filter: alpha(opacity=1) !important;
  /* Netscape */
  -moz-opacity: 1 !important;
  /* Safari 1.x */
  -khtml-opacity: 1 !important;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.page-header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  z-index: 65;
  background-color: #0046A0;
}

@media (min-width: 767px) {
  .page-header {
    height: 150px;
    z-index: 60;
  }
}

footer {
  background-color: #0046A0;
  width: 100%;
}

footer p {
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

@media (min-width: 767px) {
  footer p {
    padding: 11px 0;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F2F6FA;
}

table {
  width: 100%;
}

tr {
  display: -ms-grid;
  display: grid;
}

@media (min-width: 1000px) {
  tr {
    -ms-grid-columns: 200px 800px;
        grid-template-columns: 200px 800px;
  }
}

th {
  padding: 6px 20px;
  text-align: left;
}

@media (min-width: 767px) {
  th {
    padding: 12px 40px;
  }
}

td {
  padding: 6px 20px 13px 20px;
  text-align: left;
}

@media (min-width: 767px) {
  td {
    padding: 12px 40px 26px 40px;
  }
}

form {
  padding: 0 15px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 767px) {
  form {
    padding: 0 30px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

input, textarea {
  border: 1px solid #d9d9d9;
}

input:focus, input:hover, textarea:focus, textarea:hover {
  border: 1px solid #0046A0;
}

figcaption {
  background-color: #000;
  color: transparent;
  opacity: 0.85;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
  /* IE 5-7 */
  filter: alpha(opacity=0.85);
  /* Netscape */
  -moz-opacity: 0.85;
  /* Safari 1.x */
  -khtml-opacity: 0.85;
  width: 0;
  height: 0;
  position: absolute;
  z-index: 30;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-nav {
  position: fixed;
  z-index: 65;
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #0046A0;
  opacity: 0.9;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  /* IE 5-7 */
  filter: alpha(opacity=0.9);
  /* Netscape */
  -moz-opacity: 0.9;
  /* Safari 1.x */
  -khtml-opacity: 0.9;
}

@media (min-width: 767px) {
  .drawer-nav {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    background-color: #28A0FF;
    height: 55px;
    z-index: 60;
  }
}

@media (min-width: 1000px) {
  .drawer-nav {
    z-index: 60;
  }
}

.nav__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 2vh 0;
}

@media (min-width: 767px) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-top: #0062E0 2px solid;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 55px;
  }
}

.fake_border_1 {
  -ms-grid-column: 1;
  grid-column: 1;
  border-bottom: 1px solid #6690C6;
}

.fake_border_2 {
  -ms-grid-column: 2;
  grid-column: 2;
  border-bottom: 1px solid #6690C6;
}

.nav__item {
  -ms-grid-column: 3;
  grid-column: 3;
  display: -ms-grid;
  display: grid;
  -webkit-transform: all 1s ease-in-out;
  transform: all 1s ease-in-out;
  position: relative;
  -ms-grid-columns: 155px 110px;
      grid-template-columns: 155px 110px;
  -ms-grid-template-columns: 155px 110px;
}

.nav__item a {
  font-size: 1.2rem;
}

.nav__item a:nth-child(1) {
  position: relative;
  letter-spacing: 0.15em;
  padding-left: 1rem;
  padding-right: 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Arial, sans-serif;
}

@media (min-width: 767px) {
  .nav__item a:nth-child(1) {
    padding: 0.625rem 1.25rem;
  }
}

.nav__item a:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 10px;
  background: url("../images/arr_menu.png") no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.nav__item a:nth-child(2) {
  -ms-grid-column-align: end;
  justify-self: end;
  letter-spacing: 0.15em;
  padding-right: 0.75rem;
  padding-left: 0;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 767px) {
  .nav__item a:nth-child(2) {
    padding: 0.3rem 1.25rem;
  }
}

@media (min-width: 767px) {
  .nav__item .link-pc-1 {
    display: block;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    margin: auto;
  }
}

.nav__item .link-pc-2 {
  display: none;
}

@media (min-width: 767px) {
  .nav__item .link-pc-2 {
    display: block;
    text-align: center;
    position: absolute;
    transition: transform .5s ease, -webkit-transform .5s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    font-weight: bold;
    top: 0;
    left: 0;
    font-family: 游ゴシック体, "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, Arial, sans-serif !important;
    z-index: 15;
    width: 100%;
  }
  .nav__item .link-pc-2::before {
    content: "";
    width: 50%;
    height: 10px;
    position: absolute;
    top: 15px;
    z-index: 10;
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, #72ceff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #72ceff 50%, rgba(255, 255, 255, 0) 100%);
    transition: transform 1s ease, -webkit-transform 1s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
}

@media (min-width: 767px) {
  .nav__item:hover .link-pc-1 {
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
    left: 0;
    width: 100%;
  }
}

.nav__item:hover .link-pc-2 {
  display: none;
}

@media (min-width: 767px) {
  .nav__item:hover .link-pc-2 {
    display: block;
    position: relative;
    z-index: 15;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    margin: auto;
  }
  .nav__item:hover .link-pc-2::before {
    content: "";
    width: 100%;
    left: 0;
    height: 10px;
    position: absolute;
    top: 15px;
    z-index: 10;
    -webkit-transform: scale(1);
    transform: scale(1);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(50%, #72ceff), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #72ceff 50%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (min-width: 767px) {
  .nav__item {
    border-right: #93CFFF 1px solid;
  }
  .nav__item:last-child {
    border-right: none;
  }
}

@media (min-width: 767px) {
  .nav__item:first-child {
    border-left: #93CFFF 1px solid;
  }
}

@media (min-width: 767px) {
  .nav__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 200px;
  }
}

.nav__item a {
  display: block;
  padding: 0.625rem 1.25rem;
  text-decoration: none;
  color: white;
  font-family: athelas, serif;
  font-weight: 400;
  font-style: normal;
}

@media (min-width: 767px) {
  .nav__item a {
    font-size: 16px;
    font-family: athelas, serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14rem;
    padding: 0 20px;
  }
}

@media (min-width: 1000px) {
  .nav__item a {
    padding: 0 45px;
  }
}

.nav__item a:first-child {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / 2;
  font-family: "gothicBold", serif;
  font-size: 1.2rem;
}

@media (min-width: 767px) {
  .nav__item a:first-child {
    font-size: 24px;
  }
}

.nav__item a:last-child {
  -ms-grid-column: 2;
  -ms-grid-column-span: 3;
  grid-column: 2 / span 3;
  font-family: "modern", Arial, Helvetica, serif;
  font-size: 1.0625rem;
}

@media (min-width: 767px) {
  .nav__item a:last-child {
    font-size: 16px;
    font-family: athelas, serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.14rem;
    text-transform: uppercase;
  }
}

.nav__item:not(:last-child) {
  border-bottom: #6690C6 1px solid;
}

@media (min-width: 767px) {
  .nav__item:not(:last-child) {
    border-bottom: none;
  }
}

.drawer-close .drawer-nav {
  -webkit-transform: none;
          transform: none;
}

@supports ((-webkit-transform: translate(100vw, 0)) or (transform: translate(100vw, 0))) {
  .drawer-close .drawer-nav {
    -webkit-transform: translate(100vw, 0);
            transform: translate(100vw, 0);
  }
}

@media (min-width: 767px) {
  .drawer-close .drawer-nav {
    -webkit-transform: unset;
    transform: unset;
  }
}

section {
  color: #000;
}

@media (min-width: 1000px) {
  section:not(:first-child) {
    margin: 200px 0 0 0;
  }
}

section:not(:last-child) {
  margin: 0 0 35px 0;
}

@media (min-width: 767px) {
  section:not(:last-child) {
    margin: 0 0 70px 0;
  }
}

@media (min-width: 1000px) {
  section:not(:last-child) {
    margin: 200px 0 0 0;
  }
}

section:last-child {
  margin: 0 0 50px 0;
}

@media (min-width: 767px) {
  section:last-child {
    padding: 0 0 100px 0;
  }
}

@media (min-width: 1000px) {
  section:last-child {
    padding: 200px 0 210px 0;
  }
}

section a {
  text-decoration: underline;
  color: white;
}

section a:hover, section a:focus {
  opacity: 0.7;
  /* IE 8 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  /* IE 5-7 */
  filter: alpha(opacity=0.7);
  /* Netscape */
  -moz-opacity: 0.7;
  /* Safari 1.x */
  -khtml-opacity: 0.7;
}

.section:target {
  padding-top: 45px;
}

@media (min-width: 767px) {
  .section:target {
    padding-top: 200px;
  }
}

.section:target .card::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  width: 45px;
  margin: -45px 0 0;
}

@media (min-width: 767px) {
  .section:target .card::before {
    content: "";
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 200px;
    width: 200px;
    margin: -200px 0 0;
  }
}

@media (min-width: 1000px) {
  section.section-lg {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1000px) {
  #greeting {
    overflow: hidden;
    margin-top: -70px;
  }
}

@media (min-width: 767px) {
  #greeting .card .card__title figure {
    max-width: 500px;
    margin: 70px auto 0;
  }
}

@media (min-width: 767px) {
  #service .card .card__title figure {
    max-width: 445px;
  }
}

@media (min-width: 767px) {
  #about .card .card__title figure {
    max-width: 520px;
  }
}

@media (min-width: 767px) {
  #works .card .card__title figure {
    max-width: 412px;
  }
}

@media (min-width: 767px) {
  #contact .card .card__title figure {
    max-width: 459px;
  }
}

.form {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.form__entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__entry:not(:last-child) {
  margin: 0 0 20px 0;
}

@media (min-width: 767px) {
  .form__entry:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.form__entry label, .form__entry input, .form__entry textarea {
  width: 100%;
  text-align: center;
}

.form__entry label {
  margin: 0 0 8px 0;
}

@media (min-width: 767px) {
  .form__entry label {
    margin: 0 0 15px 0;
    font-size: 1rem;
  }
}

.form__entry textarea {
  text-align: left;
}

.form__entry input {
  height: 28px;
  text-align: left;
  padding-left: 10px;
}

@media (min-width: 767px) {
  .form__entry input {
    height: 56px;
    padding-left: 15px;
  }
}

.mailform {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 767px) {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  .logo {
    max-width: 284px;
    height: 150px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .modal-guts p {
    font-size: 1rem;
  }
}

.form__entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.form__entry:not(:last-child) {
  margin: 0 0 20px 0;
}

@media (min-width: 767px) {
  .form__entry:not(:last-child) {
    margin: 0 0 40px 0;
  }
}

.form__entry label, .form__entry input, .form__entry textarea {
  width: 100%;
  text-align: center;
}

.form__entry label {
  margin: 0 0 8px 0;
}

@media (min-width: 767px) {
  .form__entry label {
    margin: 0 0 15px 0;
    font-size: 1rem;
  }
}

.form__entry textarea {
  text-align: left;
}

.form__entry input {
  height: 28px;
  text-align: left;
  padding-left: 10px;
}

@media (min-width: 767px) {
  .form__entry input {
    height: 56px;
    padding-left: 15px;
  }
}

/* NEW FORM */
#mfp_OperationCheck {
  display: none;
}

dt.mfp, dd.mfp {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

dt.mfp {
  text-align: center;
  margin: 0 0 5px;
  font-size: 1rem;
}

@media (min-width: 767px) {
  dt.mfp {
    margin: 0 0 5px;
  }
}

dd.mfp {
  margin: 0 0 20px;
  width: 100%;
}

@media (min-width: 767px) {
  dd.mfp {
    margin: 0 0 40px;
    width: 100%;
  }
}

#mfp_hidden input[type=submit] {
  display: none;
}

.mfp_element_text, .mfp_element_textarea, .mfp_element_email, .mfp_element_tel, .mfp_col10, .mfp_rows, .mfp_col5 {
  width: 100% !important;
}

.mfp_element_textarea {
  height: 100% !important;
  font-family: "gothic";
}

.mfp_element_all {
  height: 28px;
  text-align: left;
  padding-left: 10px;
}

@media (min-width: 767px) {
  .mfp_element_all {
    height: 56px;
    padding-left: 15px;
  }
}

#mfp_overlay_inner {
  position: fixed;
  top: 50%;
  z-index: 999;
  left: 50%;
  width: 60%;
  background: #ddd;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#mfp_overlay_inner h4 {
  text-align: center;
  padding: 15px 0;
}

#mfp_overlay_inner .mfp_buttons {
  padding: 15px 0;
}

#mfp_overlay_inner #mfp_button_send, #mfp_overlay_inner #mfp_button_cancel {
  background: #eae8e7;
  min-height: 30px;
  max-height: 30px;
  border: 1px solid #b2b2b2;
  width: 110px;
  color: #000;
  font-size: .75rem;
  text-align: center;
  cursor: pointer;
  margin-top: 10px;
  padding: 0;
}

#mfp_overlay_inner #mfp_button_cancel {
  margin-left: -5px;
}

@media (min-width: 360px) {
  #mfp_overlay_inner .mfp_buttons {
    display: block;
  }
  #mfp_overlay_inner #mfp_button_send, #mfp_overlay_inner #mfp_button_cancel {
    display: block;
    margin: auto;
  }
}

@media (min-width: 767px) {
  #mfp_overlay_inner .mfp_buttons {
    display: block;
  }
  #mfp_overlay_inner #mfp_button_send, #mfp_overlay_inner #mfp_button_cancel {
    font-size: 1.125rem;
    max-height: 40px;
    width: 200px;
    display: block;
    margin: auto;
    margin-top: 0px;
    padding: 10px 0;
  }
}

.mfp_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.mfp_element_submit, .mfp_element_reset {
  background: #eae8e7;
  min-height: 30px;
  max-height: 30px;
  border: 1px solid #b2b2b2;
  width: 110px;
  color: #000;
  font-size: .75rem;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

@media (min-width: 767px) {
  .mfp_element_submit, .mfp_element_reset {
    font-size: 1.125rem;
    max-height: 40px;
    width: 200px;
  }
}

.mfp_element_submit {
  margin-right: 13px;
}

@media (min-width: 767px) {
  .mfp_element_submit {
    margin-right: 22px;
  }
}

.mfp_element_reset {
  margin-left: 13px;
}

@media (min-width: 767px) {
  .mfp_element_reset {
    margin-left: 22px;
  }
}

.mfp_err, .red {
  color: red;
}

#mfp_overlay_background, #mfp_loading_screen {
  display: none;
}

.gallery {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.gallery > * {
  float: left;
  width: 20%;
}

@supports (display: grid) {
  .gallery > * {
    width: auto;
  }
}

@supports (display: grid) {
  .gallery {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 767px) {
  @supports (display: grid) {
    .gallery {
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr)[5];
          grid-template-columns: repeat(5, 1fr);
    }
  }
  .gallery > * {
    float: left;
    width: 20%;
  }
  @supports (display: grid) {
    .gallery > * {
      width: auto;
    }
  }
}

.gallery__item {
  cursor: pointer;
  position: relative;
  z-index: 25;
}

.gallery__item:hover {
  z-index: 10;
}

.gallery__item:hover figcaption {
  width: 100%;
  height: 100%;
  -webkit-transition: width .5s, height .5s, color 1s ease-in-out, -webkit-transform .5s;
  transition: width .5s, height .5s, color 1s ease-in-out, -webkit-transform .5s;
  transition: width .5s, height .5s, transform .5s, color 1s ease-in-out;
  transition: width .5s, height .5s, transform .5s, color 1s ease-in-out, -webkit-transform .5s;
  color: #fff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Arial, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.gallery__item:hover figcaption::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gallery__item--1 {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.gallery__item--2 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery__item--3 {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.gallery__item--4 {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.gallery__item--5 {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.gallery__item--6 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery__item--7 {
  -webkit-transition: all 0.46667s ease-in-out;
  transition: all 0.46667s ease-in-out;
}

.gallery__item--8 {
  -webkit-transition: all 0.53333s ease-in-out;
  transition: all 0.53333s ease-in-out;
}

.gallery__item--9 {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.gallery__item--10 {
  -webkit-transition: all 0.66667s ease-in-out;
  transition: all 0.66667s ease-in-out;
}

.gallery__item--11 {
  -webkit-transition: all 0.36667s ease-in-out;
  transition: all 0.36667s ease-in-out;
}

.gallery__item--12 {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery__item--13 {
  -webkit-transition: all 0.43333s ease-in-out;
  transition: all 0.43333s ease-in-out;
}

.gallery__item--14 {
  -webkit-transition: all 0.46667s ease-in-out;
  transition: all 0.46667s ease-in-out;
}

.gallery__item--15 {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.modal {
  display: none;
  width: 95%;
  height: auto;
  max-width: 960px;
  /* max-height: 100px; */
  position: fixed;
  z-index: 100;
  left: 50%;
  top: 50%;
  padding: 42%;
  /* margin: 0 15px 0 15px; */
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: white;
  -webkit-box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 60px 10px rgba(0, 0, 0, 0.9);
}

@media (min-width: 767px) {
  .modal {
    padding: 21%;
    width: 50%;
  }
}

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

.modal-guts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: auto;
  padding: 20px 50px 20px 20px;
}

.modal-guts, .modal {
  scrollbar-width: none;
}

.modal-guts::-webkit-scrollbar, .modal::-webkit-scrollbar {
  display: none;
}

.modal-guts, .modal {
  -ms-overflow-style: none;
}

.modal .close-button {
  position: absolute;
  z-index: 20;
  top: 18px;
  right: 4px;
  border: 0;
  background: #b2b2b2;
  color: white;
  padding: 10px 16px;
  font-size: 1.0rem;
}

.open-button {
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: lightgreen;
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 21px;
}

.animate-show {
  -webkit-animation: show 2s;
          animation: show 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.animate-hide {
  -webkit-animation: hide 2s;
          animation: hide 2s;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
  }
  to {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
  }
  to {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
  }
}

@-webkit-keyframes hide {
  0% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
  }
  100% {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
  }
}

@keyframes hide {
  0% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
  }
  100% {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 5-7 */
    filter: alpha(opacity=0);
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
  }
}

.logo {
  max-width: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
  height: 50px;
}

@media (min-width: 767px) {
  .logo {
    max-width: 284px;
    height: 150px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.drawer-hamburger {
  position: fixed;
  z-index: 4;
  top: 0;
  right: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 3.125rem;
  height: 3.125rem;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-hamburger__icon {
  background-color: #fff;
  position: relative;
  display: block;
  z-index: 15;
  height: 2px;
  border-radius: 0.625rem;
  width: 50%;
  margin: auto;
}

.drawer-hamburger__icon::before, .drawer-hamburger__icon::after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -10px;
  z-index: 5;
  height: 2px;
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-hamburger__icon::after {
  top: 10px;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-hamburger__icon::before {
  top: -10px;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-open .drawer-hamburger__icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger__icon::after {
  -webkit-transform: translate(0px, -10px) rotate(45deg);
          transform: translate(0px, -10px) rotate(45deg);
}

.drawer-open .drawer-hamburger__icon::before {
  -webkit-transform: translate(0px, 10px) rotate(-45deg);
          transform: translate(0px, 10px) rotate(-45deg);
}

.drawer-closer {
  position: absolute;
  z-index: 15;
  top: 0;
  right: 0;
  display: none;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 3.125rem;
  height: 3.125rem;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.drawer-closer__icon {
  background-color: transparent;
  position: relative;
  display: block;
  z-index: 15;
  height: 2px;
  border-radius: 0.625rem;
  width: 50%;
  margin: auto;
}

.drawer-closer__icon::before, .drawer-closer__icon::after {
  content: "";
  background-color: #fff;
  position: absolute;
  left: 0;
  top: -10px;
  z-index: 5;
  height: 2px;
  width: 100%;
  -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer-closer__icon::after {
  top: 10px;
  -webkit-transform: translate(0px, -10px) rotate(45deg);
          transform: translate(0px, -10px) rotate(45deg);
}

.drawer-closer__icon::before {
  top: -10px;
  -webkit-transform: translate(0px, 10px) rotate(-45deg);
          transform: translate(0px, 10px) rotate(-45deg);
}

.form__entry .input-btn {
  background: #EAE8E7;
  min-height: 30px;
  max-height: 30px;
  border: #b2b2b2 1px solid;
  width: 110px;
  color: #000;
  font-size: 0.75rem;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.form__entry .input-btn:first-child {
  margin-right: 13px;
}

.form__entry .input-btn:last-child {
  margin-left: 13px;
}

@media (min-width: 767px) {
  .form__entry .input-btn {
    font-size: 1.125rem;
    max-height: 40px;
    width: 200px;
  }
  .form__entry .input-btn:first-child {
    margin-right: 22px;
  }
  .form__entry .input-btn:last-child {
    margin-left: 22px;
  }
}

.main-page {
  background-color: #0046A0;
  color: white;
  padding: 1em 1.5em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  width: 200px;
  margin: auto;
  letter-spacing: 0.1em;
}

.main-page:hover, .main-page:active {
  cursor: pointer;
  background-color: #003b87;
  color: white;
}

.card__p {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Arial, sans-serif;
  line-height: 2;
}

.card__title {
  text-align: center;
  margin: 0 0 15px 0;
  padding: 0 85px;
}

@media (min-width: 767px) {
  .card__title {
    margin: 0 0 30px 0;
  }
}

@media (min-width: 1000px) {
  .card__title {
    margin: 0 0 70px 0;
  }
}

.card__title figure {
  margin: auto;
}

.card__title-main {
  color: #0046A0;
  font-size: 2.1875rem;
}

@media (min-width: 767px) {
  .card__title-main {
    font-size: 4.75rem;
  }
}

.card__subtitle {
  color: #000;
  font-size: 0.75rem;
}

@media (min-width: 767px) {
  .card__subtitle {
    font-size: 1.5rem;
  }
}

.card__pic {
  padding: 0 85px 25px 85px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.card__pic figure {
  position: relative;
  max-width: 360px;
  margin: auto;
}

@media (min-width: 1000px) {
  .card__pic {
    float: left;
    padding: 0 50px 25px 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
}

.card__pic--full-w {
  max-width: 100%;
  padding: 0 0 25px 0;
}

@media (min-width: 1000px) {
  .card__pic--full-w {
    float: left;
    padding: 0 0 40px 0;
  }
}

.card__txt {
  padding: 0 20px;
}

.card__txt > p:not(:last-child) {
  padding: 0 0 25px 0;
}

.card__p--first {
  font-size: 1rem;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝";
  letter-spacing: 2px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 767px) {
  .card__p--first {
    font-size: 1.875rem;
  }
}

.card__p--sec {
  font-size: 0.875rem;
  font-family: "gothic";
  text-align: left;
}

@media (min-width: 767px) {
  .card__p--sec {
    font-size: 1.75rem;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Arial, sans-serif;
  }
}

@media (min-width: 1000px) {
  .card__p--sec {
    font-size: 1rem;
    font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Arial, sans-serif;
    line-height: 30px;
    max-width: 640px;
    margin: auto;
  }
}

.card__table {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (min-width: 767px) {
  .card__table-tr:first-child {
    border-top: #ccc 1px solid;
    border-top: #333 1px solid;
  }
}

@media (min-width: 767px) {
  .card__table-tr:last-child {
    border-bottom: #333 1px solid;
  }
}

@media (min-width: 767px) {
  .card__table-tr:not(:first-child) {
    border-top: #ccc 1px solid;
  }
}

.card__table-th {
  background-color: #D9E3F1;
}


@media (min-width: 767px) {
  #mfp_confirm_table tr{
    display: inherit;
  }
  #mfp_confirm_table th{
    -ms-grid-column: 1;
  }
  #mfp_confirm_table td{
    -ms-grid-column: 2;
  }
  .card__table-tr {
    display: inherit;
  }
}

@media (min-width: 767px) {
  .card__table-th {
    text-align: center;
    letter-spacing: 0.11rem;
    -ms-grid-column: 1;
  }
}

@media (min-width: 767px) {
  .card__table-td {
    padding: 15px 40px 15px 40px;
    -ms-grid-column: 2;
  }
}

.slideshow {
  margin-top: 50px;
}

@media (min-width: 767px) {
  .slideshow {
    margin-top: 150px;
  }
}

@media (min-width: 1000px) {
  .slideshow {
    margin-top: 150px;
    margin-bottom: 200px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
}

.slideshow__wrapper {
  position: relative;
  max-width: 1000px;
  margin: auto;
  margin-top: 50px;
}

@media (min-width: 767px) {
  .slideshow__wrapper {
    margin-top: 150px;
  }
}

.slideshow__slide {
  display: inline-block;
  width: 100%;
}

@supports (display: grid) {
  .slideshow__slide {
    width: 33%;
  }
}

@supports (transition: all 5s cubic-bezier(0.6, -0.28, 0.735, 0.045)) {
  .slideshow__slide {
    -webkit-transition: all 5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    transition: all 5s cubic-bezier(0.6, -0.28, 0.735, 0.045);
    display: none;
    width: 100%;
  }
}

.slideshow .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4s;
  animation-name: fade;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
}

@media (min-width: 767px) {
  .slideshow .fade {
    padding-top: 55px;
  }
}

.slideshow .fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 4s;
  animation-name: fade;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  animation-direction: reverse;
}

@media (min-width: 767px) {
  .slideshow .fade {
    padding-top: 55px;
  }
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    /* IE 5-7 */
    filter: alpha(opacity=0.4);
    /* Netscape */
    -moz-opacity: 0.4;
    /* Safari 1.x */
    -khtml-opacity: 0.4;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -moz-animation-play-state: paused;
  }
  75% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -moz-animation-play-state: running;
  }
  100% {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    /* IE 5-7 */
    filter: alpha(opacity=0.4);
    /* Netscape */
    -moz-opacity: 0.4;
    /* Safari 1.x */
    -khtml-opacity: 0.4;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -moz-animation-play-state: paused;
  }
  75% {
    opacity: 1;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -moz-animation-play-state: running;
  }
  100% {
    opacity: 0;
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    /* IE 5-7 */
    filter: alpha(opacity=1);
    /* Netscape */
    -moz-opacity: 1;
    /* Safari 1.x */
    -khtml-opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.slideshow__house {
  -webkit-transform: translateY(-13px);
          transform: translateY(-13px);
  padding: 0 85px;
}

@media (min-width: 767px) {
  .slideshow__house {
    width: 100%;
    position: absolute;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
    width: auto;
    padding: 0;
    left: 58%;
    top: 15%;
  }
}

@media (min-width: 1000px) {
  .slideshow__house {
    -webkit-transform: translateY(-25px);
            transform: translateY(-25px);
  }
}

.slideshow__house figure {
  position: relative;
  max-width: 360px;
  margin: auto;
}
/*# sourceMappingURL=styles.css.map */