@charset "UTF-8";
.visual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/visual_bg.png) no-repeat top center/cover;
  min-width: 1020px;
  min-height: 800px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .visual {
    min-width: unset;
    min-height: unset;
  }
}

.visual_image {
  width: 1180px;
  margin: 0 auto;
}

.visual_image img {
  height: auto;
  /* 画像の高さを自動調整 */
  display: block;
  width: 100%;
  max-width: 580px;
}

@media (max-width: 480px) {
  .visual_image img {
    max-width: 100%;
  }
}

.bbg {
  background: #fff;
}

.bg01 {
  background: #d1e6f9;
}

.bg02 {
  background: #d1e4f9;
}

#contents > section:last-child {
  padding-bottom: 120px;
}

.top_contents01,
.top_contents02,
.top_contents03,
.top_overview,
.top_contact {
  padding: 80px 0;
}

@media (max-width: 480px) {
  .top_contents01,
  .top_contents02,
  .top_contents03,
  .top_overview,
  .top_contact {
    padding: 12vw 3.5vw;
  }
}

.top_contents01_title,
.top_contents02_title,
.top_contents03_title,
.top_overview_title,
.top_contact_title {
  font-size: 3rem;
  line-height: 1.5;
  text-align: center;
  font-weight: 900;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .top_contents01_title,
  .top_contents02_title,
  .top_contents03_title,
  .top_overview_title,
  .top_contact_title {
    letter-spacing: 0;
    font-size: 5.5vw;
    margin-bottom: 5vw;
  }
}

.top_contents01_title span,
.top_contents02_title span,
.top_contents03_title span,
.top_overview_title span,
.top_contact_title span {
  display: inline-block;
}

@media (max-width: 480px) {
  .top_contents01_title span,
  .top_contents02_title span,
  .top_contents03_title span,
  .top_overview_title span,
  .top_contact_title span {
    display: block;
  }
}

.contents01_wrapper,
.contents02_wrapper,
.contents03_wrapper,
.overview_wrapper,
.contact_wrapper {
  width: 1220px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .contents01_wrapper,
  .contents02_wrapper,
  .contents03_wrapper,
  .overview_wrapper,
  .contact_wrapper {
    padding: 0;
  }
}

.menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1100px;
  list-style: none;
  padding-bottom: 30px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .menu_list {
    width: 100%;
  }
}

.menu_list .list_name {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.5;
  letter-spacing: 0;
}

@media (max-width: 480px) {
  .menu_list .list_name {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
    font-size: 3.5vw;
    line-height: 3;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.menu_list .list_name::before {
  content: "";
  display: inline-block;
  width: 2em;
  height: 2em;
  -webkit-mask-image: url(../img/check_circle.svg);
          mask-image: url(../img/check_circle.svg);
  background-color: #1777e3;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  vertical-align: middle;
  margin-right: 10px;
}

@media (max-width: 480px) {
  .menu_list .list_name::before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 5px;
  }
}

.contents01_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  .contents01_columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 6vw 0;
  }
}

.contents01_columns:not(:last-child) {
  margin-bottom: 70px;
}

@media (max-width: 480px) {
  .contents01_columns:not(:last-child) {
    margin-bottom: 12vw;
  }
}

.contents01_columns_images {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 480px) {
  .contents01_columns_images {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.contents01_columns_images img {
  display: block;
  width: 100%;
}

@media (max-width: 480px) {
  .contents01_columns_images img {
    height: 50vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contents01_columns_msg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 480px) {
  .contents01_columns_msg {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.contents01_columns_msg p:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .contents01_columns_msg p:not(:last-child) {
    margin-bottom: 12px;
  }
}

.contents01_columns_title {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 2.4rem;
}

@media (max-width: 480px) {
  .contents01_columns_title {
    font-size: 4.2vw;
    margin-bottom: 2vw;
    text-align: center;
  }
}

.contents01_columns_title span {
  display: inline-block;
}

.contents01_columns.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media (max-width: 480px) {
  .contents01_columns.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.contents01_inner {
  width: 960px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .contents01_inner {
    width: 100%;
  }
}

.contents01_inner:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .contents01_inner:not(:last-child) {
    margin-bottom: 8vw;
  }
}

.contents01_inner_title {
  margin-bottom: 24px;
  line-height: 1.6;
  text-align: center;
  font-size: 24px;
}

@media (max-width: 480px) {
  .contents01_inner_title {
    font-size: 4.8vw;
    margin-bottom: 5vw;
  }
}

.contents01_inner_title:before {
  content: "\5c";
  margin-right: 20px;
}

@media (max-width: 480px) {
  .contents01_inner_title:before {
    margin-right: 10px;
  }
}

.contents01_inner_title:after {
  content: "\2f";
  margin-left: 20px;
}

@media (max-width: 480px) {
  .contents01_inner_title:after {
    margin-left: 10px;
  }
}

.contents01_inner_msg p:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .contents01_inner_msg p:not(:last-child) {
    margin-bottom: 12px;
  }
}

.contents02_inner:not(:last-child) {
  margin-bottom: 100px;
}

@media (max-width: 480px) {
  .contents02_inner:not(:last-child) {
    margin-bottom: 15px;
  }
}

.contents02_inner_title {
  width: 960px;
  margin: 0 auto 30px;
  line-height: 1.4;
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding: 15px 20px 17px;
  background: #003e55;
}

@media (max-width: 480px) {
  .contents02_inner_title {
    font-size: 4.8vw;
    margin-bottom: 0;
    padding: 10px;
    width: 100%;
  }
}

.contents02_inner_images {
  width: 880px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 120px;
  position: relative;
}

@media (max-width: 480px) {
  .contents02_inner_images {
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20vw 0;
  }
}

.contents02_inner_images::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 30px solid transparent;
  border-left: 30px solid #fbb01b;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-25%, -25%) translateY(-3rem);
          transform: translate(-25%, -25%) translateY(-3rem);
}

@media (max-width: 480px) {
  .contents02_inner_images::after {
    border: 16px solid transparent;
    border-left: 16px solid #fbb01b;
    -webkit-transform: translate(-15%, -25%) translateY(-3rem);
            transform: translate(-15%, -25%) translateY(-3rem);
  }
}

.contents02_inner li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
}

@media (max-width: 480px) {
  .contents02_inner li {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.contents02_inner img {
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .contents02_inner img {
    margin-bottom: 10px;
  }
}

.contents02_inner span {
  color: #003e55;
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

@media (max-width: 480px) {
  .contents02_inner span {
    font-size: 4.5vw;
    margin-bottom: 10px;
  }
}

.contents02_inner img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 480px) {
  .contents02_inner img {
    height: 50vw;
  }
}

@media (max-width: 480px) {
  .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.gallery .gallery_contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1180px;
  margin: 0 auto;
}

@media (max-width: 480px) {
  .gallery .gallery_contents {
    width: 100%;
  }
}

.gallery .gallery_contents .gallery_img {
  width: 100%;
  max-width: 380px;
  height: auto;
  aspect-ratio: 1 / 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .gallery .gallery_contents .gallery_img {
    width: 48%;
    margin-bottom: 4%;
  }
}

.gallery .gallery_contents .gallery_img:not(:nth-child(3n)) {
  margin-right: 20px;
}

@media (max-width: 480px) {
  .gallery .gallery_contents .gallery_img:not(:nth-child(3n)):not(:nth-child(3n)) {
    margin-right: 0;
  }
}

.gallery .gallery_txt {
  width: 1050px;
  margin: 0 auto;
  padding-top: 30px;
}

@media (max-width: 480px) {
  .gallery .gallery_txt {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
  }
}

.contents03_inner:nth-of-type(2) {
  margin-bottom: 80px;
}

.contents03_inner_title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 24px;
}

@media (max-width: 480px) {
  .contents03_inner_title {
    font-size: 4.8vw;
    padding: 7px;
  }
}

.contents03_inner_msg {
  text-align: center;
  margin-bottom: 20px;
}

.contents03_inner_table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 480px) {
  .contents03_inner_table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contents03_inner_table table {
  margin-bottom: 20px;
  width: 47%;
}

@media (max-width: 480px) {
  .contents03_inner_table table {
    width: 100%;
  }
}

.contents03_inner_table table thead tr th {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 5px;
  background-color: #d1e6f9;
  border: 1px solid #333;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contents03_inner_table table thead tr th {
    font-size: 1.3rem;
    padding: 10px 5px;
  }
}

.contents03_inner_table table thead tr th.subject {
  width: 20%;
}

.contents03_inner_table table thead tr th.detail {
  width: 53%;
}

.contents03_inner_table table thead tr th.price {
  width: 27%;
}

.contents03_inner_table table thead tr th span {
  font-size: 1.1rem;
}

.contents03_inner_table table tbody tr td,
.contents03_inner_table table tbody tr th {
  color: #333;
  font-size: 1.6rem;
  text-align: center;
  padding: 15px 10px;
  min-height: 100px;
  background-color: #fff;
  border: 1px solid #999;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (max-width: 480px) {
  .contents03_inner_table table tbody tr td,
  .contents03_inner_table table tbody tr th {
    font-size: 1.3rem;
    padding: 8px 5px;
    height: 5rem;
  }
}

.contents03_inner_table table tbody tr td span,
.contents03_inner_table table tbody tr th span {
  color: #df1818;
  font-size: 1.2rem;
  display: block;
}

.contents03_inner_table table tbody tr td.t-left,
.contents03_inner_table table tbody tr th.t-left {
  text-align: left;
}

.contents03_inner_table table tbody tr th {
  background-color: #eee;
}

.contents03_inner:nth-of-type(2) {
  margin-bottom: 80px;
}

.contents03_inner:nth-of-type(2) table {
  margin: 0 auto;
}

.contents03_inner:nth-of-type(2) table tbody td {
  padding: 40px 10px;
}

.contents03_inner_coupon {
  text-align: center;
  font-weight: bold;
  margin: 0 auto 60px;
  padding: 30px 60px;
  border: 1px solid #333;
}

@media (max-width: 480px) {
  .contents03_inner_coupon {
    padding: 15px;
  }
}

.contents03_inner_coupon dt {
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .contents03_inner_coupon dt {
    font-size: 1.4rem;
  }
}

.contents03_inner_coupon dd {
  font-size: 2rem;
}

@media (max-width: 480px) {
  .contents03_inner_coupon dd {
    font-size: 1.6rem;
  }
}

.contents03_inner_coupon dd span {
  font-size: 1.1rem;
}

.policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 80px;
}

@media (max-width: 480px) {
  .policy {
    font-size: 4vw;
    margin-bottom: 30px;
  }
}

.policy .policy_item {
  text-align: left;
}

.overview_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 60px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 480px) {
  .overview_columns {
    display: block;
  }
}

.overview_columns_table {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 480px) {
  .overview_columns_table {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

#contents .overview_columns_table {
  margin-bottom: 0;
}

@media (max-width: 480px) {
  #contents .overview_columns_table {
    margin-bottom: 8vw;
  }
}

.overview_columns_table table th,
.overview_columns_table table td {
  padding: 20px;
}

.overview_columns_map {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (max-width: 480px) {
  .overview_columns_map {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
  }
}

.overview_columns_map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 480px) {
  .overview_columns_map iframe {
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    height: 80vw;
  }
}

.contact_msg {
  text-align: center;
}

@media (max-width: 480px) {
  .contact_msg {
    text-align: left;
  }
}

.contact_msg:not(:last-child) {
  margin-bottom: 40px;
}

.attent_text {
  font-size: 1.3rem;
  text-indent: -13px;
  padding-left: 13px;
}
/*# sourceMappingURL=top.css.map */