@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

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

.w_base {
  width: 1020px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
**  color
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
**  font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 230px;
  border-right: 1px solid #DBD8D8;
  border-left: 1px solid #DBD8D8;
}
.hd_bg .hd {
  margin-bottom: 10px;
  padding: 0 10px;
}
.hd_bg .hd .hd_logo {
  padding: 25px 0;
  border-bottom: 2px solid #aaa;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #707070;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
}
.hd_bg .hd .hd_logo a img {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_bg .nav {
  overflow: visible;
}
.nav_bg .nav .nav_list {
  width: 100%;
  margin-bottom: 20px;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
  padding: 0 25px;
}
.nav_bg .nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 20px 10px 20px 0;
  background: url(../images/icon_arrow_gray.svg) no-repeat center right;
  color: #707070;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > a span {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > a span::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #51ADD5;
  transition: 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover span {
  color: #51ADD5;
}
.nav_bg .nav .nav_list > li > a:hover span:after {
  width: 100%;
}
.nav_bg .nav .nav_list > li.current > a span {
  color: #51ADD5;
}
.nav_bg .nav .nav_list > li.current > a span::after {
  width: 100%;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 10px;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #51ADD5;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  background: #51ADD5;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: 100%;
  background: #51ADD5;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  background-color: #51ADD5;
}
.nav_bg .nav .nav_link {
  padding: 0 25px;
}
.nav_bg .nav .nav_link .nav_link_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 110px;
  padding: 15px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item a span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: block;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  min-height: 110px;
  transition: all 0.3s;
  transition: 0.3s ease-in-out;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item a:hover::before {
  transform: scale(1.1);
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item:first-of-type a span {
  text-shadow: -1px -1px 0 #035EBC, -1px 0 0 #035EBC, -1px 1px 0 #035EBC, 0 -1px 0 #035EBC, 0 1px 0 #035EBC, 1px -1px 0 #035EBC, 1px 0 0 #035EBC, 1px 1px 0 #035EBC;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item:first-of-type a::before {
  background: url(../images/side_img_01.jpg) no-repeat center center;
  background-size: cover;
}
.nav_bg .nav .nav_link .nav_link_list .nav_link_item:nth-of-type(2) a::before {
  background: url(../images/side_img_02.jpg) no-repeat center center;
  background-size: cover;
}
.nav_bg .nav .nav_link .nav_bnr_list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item {
  border: 1px solid #D8D8D8;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #707070;
  font-size: 11px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item a::before {
  content: "";
  flex-shrink: 0;
  width: 31px;
  height: 31px;
  margin-right: 10px;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item a:after {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: url(../images/icon_arrow_gray.svg) no-repeat center center;
  background-size: cover;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item a:hover {
  background: #f2f2f2;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item.twitter a::before {
  background: url(../images/icon_twitter.svg) no-repeat center center;
  background-size: contain;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item.facebook a::before {
  background: url(../images/icon_facebook.svg) no-repeat center center;
  background-size: contain;
}
.nav_bg .nav .nav_link .nav_bnr_list ul .nav_bnr_item.instagram a::before {
  background: url(../images/icon_instagram.svg) no-repeat center center;
  background-size: contain;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  display: flex;
  flex-direction: column;
  width: calc(100% - 230px);
  min-height: 100vh;
}
.con_bg .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.con_bg .con .main {
  width: 100%;
}
.con_bg .con .more {
  width: 250px;
  margin: 0 auto;
}
.con_bg .con .more a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px;
  background: #fff;
  color: #707070;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #aaa;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.con_bg .con .more a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../images/icon_arrow_gray.svg) no-repeat center center;
  transition: all 0.3s ease;
}
.con_bg .con .more a:hover {
  background: #035EBC;
  color: #fff;
  border: 1px solid #035EBC;
}
.con_bg .con .more a:hover::before {
  background: url(../images/icon_arrow_white.svg) no-repeat center center;
}
.con_bg .sp_link {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  border-top: 1px solid #DBD8D8;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px 0 15px 20px;
}
.ft_bg .ft .ft_address {
  line-height: 1.8;
}
.ft_bg .ft .ft_address .ft_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
}
.ft_bg .ft .ft_address .address {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
}
.ft_bg .ft .ft_copy {
  font-size: 11px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}
.pt .pt_wrap {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  background: #035EBC;
  border: 1px solid #035EBC;
  transition: all 0.3s ease;
}
.pt .pt_wrap .pt_btn {
  position: relative;
  top: 5px;
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}
.pt .pt_wrap .pt_btn::before, .pt .pt_wrap .pt_btn::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  background: #FFF;
}
.pt .pt_wrap .pt_btn::before {
  width: 1px;
  bottom: 0;
}
.pt .pt_wrap .pt_btn::after {
  height: 1px;
  right: 0;
}
.pt .pt_wrap .pt_ttl {
  position: relative;
  bottom: 0;
  color: #fff;
  font-family: "PT Serif", serif;
  font-size: 12px;
}
.pt .pt_wrap:hover {
  background: #fff;
}
.pt .pt_wrap:hover .pt_btn::before, .pt .pt_wrap:hover .pt_btn::after {
  background: #035EBC;
}
.pt .pt_wrap:hover .pt_ttl {
  color: #035EBC;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}
.index_main .index_slider_bg .index_slider img {
  flex-shrink: 0;
  width: 100%;
  height: 100vh;
  max-height: 395px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
  font-family: "object-fit: cover!important;";
}
.index_main .index_news {
  padding: 30px 50px 50px;
}
.index_main .index_news h2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #035EBC;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
}
.index_main .index_news h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.index_main .index_news .index_news_scrl {
  margin-bottom: 40px;
  max-height: 300px;
  overflow: auto;
}
.index_main .index_news .index_news_scrl .index_news_item {
  display: flex;
  align-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px 0;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_date .cate {
  margin-left: 10px;
  padding: 0 10px;
  color: #035EBC;
  font-size: 11px;
  border: 1px solid #035EBC;
  border-radius: 3px;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl {
  width: calc(100% - 140px);
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a {
  color: #707070;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl a:hover {
  text-decoration: none;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_main .index_news .index_news_scrl .index_news_item .index_news_item_ttl .index_news_item_icon_new:before {
  content: "NEW";
}
.index_main .index_about {
  padding: 30px 50px;
  background: #ECEBEB;
}
.index_main .index_about h2 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: #035EBC;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
}
.index_main .index_about h2::after {
  display: block;
  content: attr(data-text);
  margin-left: 15px;
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.index_main .index_about_item h1 {
  font-size: 1.5em;
  margin: 1em 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.news_list .news_item {
  display: flex;
  align-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 10px 0;
}
.news_list .news_item .news_item_date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
}
.news_list .news_item .news_item_date .cate {
  margin-left: 10px;
  padding: 0 10px;
  color: #035EBC;
  font-size: 11px;
  border: 1px solid #035EBC;
  border-radius: 3px;
}
.news_list .news_item .news_item_ttl {
  width: calc(100% - 140px);
}
.news_list .news_item .news_item_ttl a {
  color: #707070;
}
.news_list .news_item .news_item_ttl a:hover {
  text-decoration: none;
}

.news_date {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon > section {
  padding: 45px 0px 45px 50px;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  padding: 20px;
  font-size: 30px;
  font-weight: 500;
  background: url(../images/03.jpg) no-repeat center right;
  background-size: cover;
}
.mcon h1 span {
  position: relative;
  z-index: 1;
  color: #FFF;
  font-family: "Noto Serif JP", serif;
}
.mcon h2 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
  padding: 0.5em 0;
  color: #035EBC;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #aaa;
}
.mcon h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.mcon h3 {
  position: relative;
  margin-bottom: 15px;
  padding: 0.7em 0;
  color: #7B7878;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
}
.mcon h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 80px;
  height: 2px;
  background: #035EBC;
}
.mcon h4 {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 5px;
  padding: 0.5em 0;
  color: #7B7878;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
}
.mcon h4::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 10px;
  background: #035EBC;
}
.mcon h5, .mcon h6 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 1.1em;
  font-weight: 500;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

/* table01 */
#table01 {
  width: 100%;
  border-collapse: collapse;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#table01 th,
#table01 td {
  border: 1px solid #ddd;
  padding: 12px 16px;
  text-align: left;
}

#table01 th {
  background-color: #f7f7f7;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}

#table01 tr:nth-child(even) {
  background-color: #fafafa;
}

/* 地図 */
.map_wrap {
  position: relative;
  max-width: 800px; /* 横幅の最大値 */
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

/* Googleマップ本体 */
.google_map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hibi_photo_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.hibi_photo_wrap img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*contact*/
#contactform {
  margin: 15px auto;
  background: #FFF;
  padding: 15px;
  border-radius: 3px;
}
#contactform form#mailformpro dl dt {
  float: none;
  width: auto;
  clear: both;
  font-size: 12px;
  padding: 0;
  text-align: left;
  margin: 0;
}
#contactform form#mailformpro dl dt span {
  vertical-align: middle;
  line-height: 1em;
  margin-top: -0.3em;
}
#contactform form#mailformpro dl dd {
  margin: 0;
  padding: 10px;
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}
#contactform .mfp_thanks {
  padding: 10px;
}
#contactform .mfp_thanks p {
  font-size: 12px;
  line-height: 1.7em;
}
#contactform .mfp_thanks ul.mfp_caution {
  list-style-type: disc;
}
#contactform .mfp_thanks ul.mfp_caution li {
  font-size: 12px;
  margin: 0 1.5em;
  font-weight: bolder;
}

/* -------------------------------------------------------
   共通レイアウト
------------------------------------------------------- */
.mfp_rows {
  clear: both;
}
.mfp_rows:after {
  content: "";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.mfp_rows input[type=text],
.mfp_rows input[type=email],
.mfp_rows input[type=tel],
.mfp_rows input[type=number],
.mfp_rows input[type=date],
.mfp_rows input[type=file],
.mfp_rows select,
.mfp_rows button,
.mfp_rows form#mailformpro label {
  width: 100%;
  min-width: 100%;
  word-break: break-all;
  white-space: normal;
}
.mfp_rows textarea {
  width: 100%;
  min-width: 100%;
}
.mfp_rows .mfp_col1 {
  width: 10%;
}
.mfp_rows .mfp_col2 {
  width: 20%;
}
.mfp_rows .mfp_col3 {
  width: 30%;
}
.mfp_rows .mfp_col4 {
  width: 40%;
}
.mfp_rows .mfp_col5 {
  width: 50%;
}
.mfp_rows .mfp_col6 {
  width: 60%;
}
.mfp_rows .mfp_col7 {
  width: 70%;
}
.mfp_rows .mfp_col8 {
  width: 80%;
}
.mfp_rows .mfp_col9 {
  width: 90%;
}
.mfp_rows .mfp_col10 {
  width: 100%;
}
.mfp_rows .mfp_col25 {
  width: 25%;
}
.mfp_rows [class*=mfp_col] {
  float: left;
  padding: 0;
}

/* -------------------------------------------------------
   セレクタ選択エリア
------------------------------------------------------- */
#example_selector {
  padding: 10px 0;
  text-align: left;
}
#example_selector span {
  display: block;
  font-size: 14px;
  padding: 5px 0;
  color: #666;
}
#example_selector select {
  font-size: 18px;
  border-radius: 3px;
  border: none;
  padding: 5px 10px;
  box-shadow: initial;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  outline: none;
}

/* -------------------------------------------------------
   注意書き（tips）
------------------------------------------------------- */
.tips {
  margin: 10px auto;
  padding: 5px 20px;
  border: none;
  border-radius: 5px;
  box-shadow: initial;
  background: #FEE;
}
.tips ol li {
  padding: 10px;
  margin: 15px;
  font-size: 12px;
  line-height: 1.7em;
  border: none;
  border-radius: 5px;
  background: #FFF;
}
.tips ol li span {
  padding: 0 10px;
}
.tips ol li img {
  display: block;
  width: 280px;
  border: none;
  margin: 5px auto;
}

/* -------------------------------------------------------
   mailformpro 向け補正
------------------------------------------------------- */
.mailform {
  padding: 0.5em;
  border-top: none;
}
.mailform dd,
.mailform dt,
.mailform dl {
  margin: 0.5em;
}

span.must {
  background: #db3d3d;
  color: #fff;
  font-size: 0.8rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 6px;
  vertical-align: middle;
  box-shadow: initial;
  border: initial;
  text-shadow: initial;
}

.mfp_buttons {
  text-align: center;
  margin-top: 10px;
}
.mfp_buttons button {
  background: #035EBC;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-shadow: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.mfp_buttons button:hover {
  background: #2f4a7a;
  transform: translateY(-2px);
}

label {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
}

.mailform_wrap {
  padding: 45px 30px !important;
}

.contactform form#mailformpro dl.mailform dt,
.contactform form#mailformpro dl.mailform dd {
  border-top: none !important;
  padding: 15px;
  text-align: left;
  min-width: 100%;
}

#mailformpro input[type=text],
#mailformpro input[type=email],
#mailformpro input[type=tel],
#mailformpro textarea,
#mailformpro select {
  background-color: #fff !important;
  box-shadow: initial;
  height: 3em;
}

#mailformpro textarea[name=message] {
  height: 10em !important;
}

#mailformpro input.mfp_err,
#mailformpro input.error,
#mailformpro textarea.mfp_err,
#mailformpro textarea.error,
#mailformpro select.mfp_err,
#mailformpro select.error {
  background-color: #fff;
  box-shadow: initial;
}/*# sourceMappingURL=style.css.map */