@charset "utf-8";
@import url("bootstrap-grid.min.css");
@import url("bootstrap-reboot.min.css");
@import url("bootstrap-print.min.css");
@import url("menu.css");
@import url("index.css");
@import url('https://use.fontawesome.com/releases/v5.13.0/css/all.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
:root {
  --bk: #333333;
  --lb: #c7e8fa;
  --shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
	--fns:"Noto Sans JP", sans-serif;

}
/* -----------------------------------------------
 HTML RESET
-------------------------------------------------- */
html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 18px;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, label, legend {
  display: block;
}
/* Lists Resets */
ul, ol {
  margin: 0;
}
ul {
  list-style: none inside;
}
ol {
  list-style: decimal inside;
  margin-left: 1em;
}
.disc {
  list-style-type: disc;
  padding-left: 1em;
  text-indent: -1em;
}
.circle {
  list-style-type: circle;
}
li {
  line-height: 1.6;
  text-align: left;
}
ul ul, ol ol {
  margin: 0.7em 0 0 1.42em;
}
a {
  text-decoration: none;
  color: #212121
}
a:hover p {
  opacity: 0.5;
}
/* -----------------------------------------------
  Layout
-------------------------------------------------- */
html {
  background-color: white;
  -webkit-overflow-scrolling: touch;
}
body {
  font-size: 100%;
  vertical-align: bottom;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: var(--bk);
  line-height: 1.8;
  text-align: left;
}
* html, body {
  height: 100%;
}
#wrapper {
  width: 100%;
  text-align: left;
  position: relative;
  margin: 0 auto;
  padding-top: 80px;
  overflow: hidden
}
#wrapper:after {
  content: "";
  display: table;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow-x: hidden;
}
main {
  position: relative;
  width: 100%;
}
.container-fluid {
  font-size: 18px;
  position: relative;
  padding: 0;
  /*  z-index: 1;*/
}
.container {
  position: relative;
  padding: 3% 0;
  margin: auto;
}
.row, .row [class*="col-"] {
  margin-bottom: 1em
}
img {
  max-width: 100%;
  height: auto;
}
[class*="col-"] img {
  max-width: 100%;
  height: auto;
}
/*マウスオーバーで拡大*/
.mo-img {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
  border-radius: 15px;
  z-index: 1
}
.mo-img img {
  height: auto;
  transition: transform .5s;
}
.mo-img:hover img {
  transform: scale(1.1); /* 拡大 */
}
a:hover p {
  opacity: 0.5;
}
a:hover, a:focus {
  opacity: .5;
  color: var(--maincolor);
}
/* -----------------------------------------------
 Aligns & Formats
-------------------------------------------------- */
.imgleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.imgright {
  float: right;
  margin: 5px 0 20px 20px;
}
.imgcenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 20px;
}
.oh {
  overflow: hidden;
}
.hidden {
  display: none !important;
}
.hidden-text {
  font: 0/0 a !important;
}
.clear {
  clear: both;
  display: block;
}
/* -----------------------------------------------
Table
--------------------------------------------------*/
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  border: 1px solid #ccc;
	border-bottom: 0;
  line-height: 1em;
  background-color: white;
  margin: 0.5em 0
}
table th {
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  line-height: 1.8em;
	font-weight: normal
}
table td {
  text-align: left;
  padding: 10px 1em;
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}
table th:last-child, table td:last-child {
  border-right: none;
}
table.noboder, table.noboder td {
  border: none;
}
/*レスポンシブ用table_scroll*/
.table-scroll {
  overflow-x: auto;
  margin-top: 0;
  margin-bottom: 1em;
  padding-top: 0
}
.scroll-hint-text {
  margin-top: 0;
}
/*.table-scroll::-webkit-scrollbar {
  height: 10px;
}
.table-scroll::-webkit-scrollbar-track {
  margin: 0 2px;
  background: #ccc;
}
.table-scroll::-webkit-scrollbar-thumb {
  background: #666;
}*/
/*tableのセル内にある文字の折り返しを禁止*/
@media screen and (max-width: 1024px) {
  .table-scroll table th {
    white-space: nowrap;
  }
}
/* -----------------------------------------------
 dl list
-------------------------------------------------- */
.dl_list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.dl_list dt {
  width: 30%;
 align-items: left;
  text-align: left;
  border-bottom: 1px dotted #000;
}
.dl_list dd {
  width: 70%;
 text-align: left;
  border-bottom: 1px dotted #000;
}
/* ul disc */
ul.listDisc {
  margin-bottom: 1em;
}
ul.listDisc li {
  padding-left: 1em; /*1em（1文字）分、右に動かす*/
  text-indent: -1em; /*最初の行だけ1em（1文字）分、左に動かす*/
  list-style-type: disc;
  padding-bottom: 0.5em;
}
.listDisc li .listDecimal li {
  line-height: 1.4;
  margin-bottom: 0
}
/* ul disc icon付 */
ul.listDiscIcon {
  width: 100%;
  border-radius: 10px;
  padding: 0 1em;
  margin-bottom: 2em;
}
ul.listDiscIcon li {
  position: relative;
  padding: 8px 0 8px 2em;
  margin: 0;
  list-style: none;
  text-indent: 0em; /*最初の行だけ1em（1文字）分、左に動かす*/
  border-bottom: 1px dotted #ccc
}
ul.listDiscIcon li::before {
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  content: '\f1c1';
  color: rgba(67, 168, 86, .7);
}
ul.listDiscIcon.half {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
ul.listDiscIcon.half li {
  position: relative;
  width: 50%;
}
/* ol decimal */
ol.listDecimal {
  padding-left: 1.5em;
  text-indent: -1.5em;
  margin-bottom: 2em
}
ol.listDecimal li {
  list-style-type: decimal;
  padding: 0 0 10px 0;
  margin: 0;
  line-height: 1.6;
}
ol.listDecimal li ul {
  margin-top: 0.5em
}
ol.listDecimal li ul li {
  list-style: disc;
  padding-left: 1.5em;
  text-indent: -1.5em;
}
/* -----------------------------------------------
 text module
-------------------------------------------------- */
h1, h2, h3, h4, h5 {
  position: relative;
  margin: 0 0 .5em;
  line-height: 1.4;
  display: block;
  width: 100%;
  font-weight: 600;
  text-align: center
}
h1 {
  font-size: 1.77em /*32px*/ ;
}
h2 {
  font-size: 1.55em /*28px*/ ;
}
h3 {
  font-size: 1.33em /*24px*/ ;
}
h4 {
  font-size: 1.1em /*20px*/ ;
}
.fs120 {
  font-size: 120%
}
.fs28 {
  font-size: 28px
}
.fs24 {
  font-size: 24px
}
.fs20 {
  font-size: 20px
}
.fs12 {
  font-size: 12px
}
.text-bold {
  font-weight: bold
}
.text-small {
  display: inline-block;
  font-size: 80%;
  line-height: 1.5
}
.alignL {
  text-align: left !important;
}
.alignR {
  text-align: right !important;
}
.alignC {
  text-align: center !important;
}
.alignC p {
  text-align: center !important;
}
.row p.alignC {
  margin: 0 auto;
  padding: 1em
}
.uLine {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #CCC;
}
.col-bk {
  color: var(--bk) !important;
}
.col-white {
  color: #FFF !important;
}
.col-red {
  color: #C00;
}
.col-main {
  color: var(--main) !important;
}
.col-sab {
  color: var(--sab) !important;
}
.marker {
  background: linear-gradient(transparent 70%, rgba(209, 161, 25, .3) 70%);
}
.f-ns {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.f-ns.fw400 {
  font-weight: 400;
}
.f-ns.fw500 {
  font-weight: 500;
}
.f-ns.fw600 {
  font-weight: 600;
}
/* -----------------------------------------------
 margin style
-------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb5per {
  margin-bottom: 5% !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.ma0 {
  margin: 0 !important;
}
/* -----------------------------------------------
 padding style
-------------------------------------------------- */
.pt0 {
  padding-top: 0px !important;
}
.pt10 {
  padding-top: 10px !important;
}
.pt20 {
  padding-top: 20px !important;
}
.pt30 {
  padding-top: 30px !important;
}
.pb0 {
  padding-bottom: 0px !important;
}
.pb5per {
  padding-bottom: 5% !important;
}
.px5per { /*左右のパディング*/
  padding: auto 5% !important;
}
.pa0 {
  padding: 0px !important;
}
.pa20 {
  padding: 20px !important;
}
.pa5per {
  padding: 5%
}
/* -----------------------------------------------
 structure module
-------------------------------------------------- */
.radius15 {
  border-radius: 15px;
}
.radius30 {
  border-radius: 30px;
}
.bottom-radius {
  border-radius: 0 0 30px 30px;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.15);
}
.circle {
  border-radius: 50%;
}
.bg-white {
  background-color: #FFF;
}
.bg-whiteBox {
  background-color: #FFF;
  padding: 3%;
  border-radius: 30px;
  box-shadow: var(--shadow)
}
/* -----------------------------------------------
 common styles
-------------------------------------------------- */
/*---res map---*/
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 20px;
  height: 0;
  overflow: hidden;
  margin-bottom: 1em;
}
.ggmap iframe, .ggmap object, .ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0 auto
}
.imgmap {
  width: 100%;
  min-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9.5;
  object-fit: cover
}
/*button_more_pink*/
.more-button {
  position: relative;
  width: auto;
  text-align: left;
}
.more-button a {
  color: var(--sab);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 40px 10px 10px;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: .3s;
}
.more-button a::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 18px;
  top: 40%;
  right: 10px;
  background-image: url("../images/icon_arrow.svg");
  background-repeat: no-repeat;
}
.more-button a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: var(--sab);
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.more-button a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
.cover2 {
  position: relative;
  top: 10px;
  left: 1%;
  width: 98%;
  z-index: 3;
}
.cover2 img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 50px;
}
.cover2 .c2bg01, .cover2 .c2bg02 {
  position: absolute;
  width: 10%;
  z-index: 3;
  border-radius: 0;
}
.cover2 .c2bg02 {
  bottom: 10%;
  left: 3%
}
.cover2 .c2bg01 {
  bottom: 20%;
  right: 3%;
}
.cover2 h1[ttl] {
  position: relative;
  margin: -8% auto 0 auto;
  background-color: rgba(255, 255, 255, 1);
  width: 80%;
  border-radius: 60%;
  padding: 7% 5%;
  text-align: center;
  color: var(--sab);
  z-index: 1;
  margin-bottom: 0 !important;
}
.cover2 h1[ttl] span {
  display: block;
  color: #656565;
  font-family: "Delius", serif;
  font-size: 50%;
  letter-spacing: 2px
}
/* -----------------------------------------------
Tablet 1024px
-------------------------------------------------- */
@media screen and (max-width: 1024px) {
#wrapper {
  padding-top: 60px;/*ヘッダー分*/
}
  [class*="col-"] {
    margin-bottom: 1em
  }
  /* dl list */
  .dl_list {
    display: block;
    flex-wrap: nowrap;
  }
  .dl_list dt {
    width: 100%;
    border-bottom: none
  }
  .dl_list dd {
    width: 100%;
    border-left: 0;
  }
}
/* -----------------------------------------------
789px
-------------------------------------------------- */
@media screen and (max-width: 769px) {
}
/* -----------------------------------------------
SP 599px
-------------------------------------------------- */
@media screen and (max-width: 599px) {
  html, body, div, applet, object, iframe, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    font-size: 15px;
  }
  body {
    line-height: 1.8;
  }
  .container-fluid {
    font-size: 16px;
  }
  .container {
    padding: 1em;
  }
  .container p {
    font-size: 15px;
  }
  .row p {
    font-size: 15px;
  }
  .row img {
    max-width: 90%;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4, h5 {
    font-size: 18px;
  }
  .no_br br {
    display: none;
  }
  .box_white, .bg-whiteBox {
    padding: 7% 5%;
  }
  .radius30 {
    border-radius: 15px;
  }
}