@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap");
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.signika-400 {
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}

/* bootstrap.css基本の打消し（同じclass名での書き換え）
---------------------------------------------------- */
* {
  margin: 0px;
  padding: 0px;
}

html {
  font-size: 50%;
}
@media (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

body {
  color: #4d4a48;
  margin: 0px;
  font-family: "Zen Maru Gothic", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  font-size: 1.6rem;
}

h1,
h2,
h3,
h5,
h6 {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  font-size: 100%;
  line-height: 1.85;
}

img {
  border: 0px;
  max-width: 100%;
  vertical-align: top;
  height: auto;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

dl,
ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

a {
  color: #020df7;
  text-decoration: underline;
}
a:hover {
  color: #020df7;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * Header
 *  
 *-------------------------------------------------------------------------------------------*/
#header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 60px;
  transition: all 600ms 0s ease;
  align-items: center;
  background: #fff;
  padding: 0px 15px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.19);
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  #header {
    padding: 0px 20px;
  }
}
@media (min-width: 992px) {
  #header {
    padding: 0px 20px;
    height: 80px;
    border-radius: 0px 0px 20px 20px;
  }
}
@media (min-width: 1200px) {
  #header {
    height: 120px;
    padding: 0px 40px;
  }
}
@media (min-width: 1400px) {
  #header {
    height: 140px;
    padding: 0px 40px;
  }
}
@media (min-width: 1600px) {
  #header {
    padding: 0px 60px;
  }
}
#header .logo {
  display: block;
  width: 230px;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  #header .logo {
    width: 260px;
  }
}
@media (min-width: 1200px) {
  #header .logo {
    width: auto;
  }
}
@media (min-width: 1400px) {
  #header .logo {
    width: auto;
  }
}
#header .headerRight {
  display: none;
}
@media (min-width: 1200px) {
  #header .headerRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#header .mainNavi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#header .mainNavi > li {
  display: block;
  position: relative;
}
#header .mainNavi > li > a {
  padding: 0px 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  color: #4d4a48;
}
@media (min-width: 1400px) {
  #header .mainNavi > li > a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  #header .mainNavi > li > a {
    padding: 0px 3rem;
  }
}
#header .mainNavi > li > ahover {
  color: #4d4a48;
}
#header .mainNavi > li:after {
  width: 0px;
  aspect-ratio: 1;
  content: "";
  display: block;
  background: #ecf7fa;
  transition: all 600ms 0s ease;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.8;
}
#header .mainNavi li.active:after,
#header .mainNavi li:hover:after {
  width: 95px;
}
@media (min-width: 1200px) {
  #header .mainNavi li.active:after,
  #header .mainNavi li:hover:after {
    width: 105px;
  }
}
#header.on {
  height: 40px;
}
@media (min-width: 1400px) {
  #header.on {
    height: 50px;
  }
}
#header.on .logo {
  width: 280px;
}
#header.on .mainNavi #contactButton a {
  height: 40px;
}
@media (min-width: 1400px) {
  #header.on .mainNavi #contactButton a {
    height: 50px;
  }
}
#header.on .mainNavi #contactButton a img {
  width: 21px;
  height: auto;
}

#scroll-Header {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  height: 60px;
  transition: all 600ms 0s ease;
  align-items: center;
  background: #fff;
  padding: 0px 15px;
  border-radius: 0px 0px 10px 10px;
  box-shadow: none;
  position: fixed;
  z-index: 5;
  top: 0px;
  transform: translate(0, -140px);
}
@media (min-width: 576px) {
  #scroll-Header {
    padding: 0px 20px;
  }
}
@media (min-width: 992px) {
  #scroll-Header {
    padding: 0px 20px;
    height: 80px;
    border-radius: 0px 0px 20px 20px;
  }
}
@media (min-width: 1200px) {
  #scroll-Header {
    height: 120px;
    padding: 0px 40px;
  }
}
@media (min-width: 1400px) {
  #scroll-Header {
    height: 140px;
    padding: 0px 40px;
  }
}
@media (min-width: 1600px) {
  #scroll-Header {
    padding: 0px 60px;
  }
}
#scroll-Header .logo {
  display: block;
  width: 230px;
  transition: all 600ms 0s ease;
}
@media (min-width: 992px) {
  #scroll-Header .logo {
    width: 260px;
  }
}
@media (min-width: 1200px) {
  #scroll-Header .logo {
    width: auto;
  }
}
@media (min-width: 1400px) {
  #scroll-Header .logo {
    width: auto;
  }
}
#scroll-Header .headerRight {
  display: none;
}
@media (min-width: 1200px) {
  #scroll-Header .headerRight {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
#scroll-Header .mainNavi {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#scroll-Header .mainNavi > li {
  display: block;
  position: relative;
}
#scroll-Header .mainNavi > li > a {
  padding: 0px 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 2;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.3rem;
  position: relative;
  z-index: 2;
  color: #4d4a48;
}
@media (min-width: 1400px) {
  #scroll-Header .mainNavi > li > a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1400px) {
  #scroll-Header .mainNavi > li > a {
    padding: 0px 3rem;
  }
}
#scroll-Header .mainNavi > li > ahover {
  color: #4d4a48;
}
#scroll-Header .mainNavi > li:after {
  width: 0px;
  aspect-ratio: 1;
  content: "";
  display: block;
  background: #ecf7fa;
  transition: all 600ms 0s ease;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.8;
}
#scroll-Header .mainNavi li.active:after,
#scroll-Header .mainNavi li:hover:after {
  width: 95px;
}
@media (min-width: 1200px) {
  #scroll-Header .mainNavi li.active:after,
  #scroll-Header .mainNavi li:hover:after {
    width: 105px;
  }
}
#scroll-Header.on {
  transform: translate(0, 0px);
  height: 60px;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.19);
}
@media (min-width: 992px) {
  #scroll-Header.on {
    height: 80px;
  }
}
@media (min-width: 1200px) {
  #scroll-Header.on {
    height: 120px;
  }
}
@media (min-width: 1400px) {
  #scroll-Header.on {
    height: 140px;
  }
}

.instagramButton {
  margin-left: 4rem;
}
.instagramButton a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  font-weight: 400;
  justify-content: center;
  height: 100%;
  font-size: 1.5rem;
  background: linear-gradient(90deg, rgb(250, 187, 78) 0%, rgb(252, 149, 99) 35%, rgb(224, 112, 118) 70%, rgb(159, 117, 189) 100%);
  height: 56px;
  width: 200px;
  transition: all 600ms 0s ease;
  border-radius: 30px;
  text-decoration: none;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1400px) {
  .instagramButton a {
    font-size: 1.6rem;
    height: 60px;
    width: 228px;
  }
}
.instagramButton a img {
  margin-left: 0.8rem;
  margin-bottom: 0.4rem;
}
.instagramButton a:hover, .instagramButton a.active a {
  opacity: 0.7;
}

/*-------------------------------------------------------------------------------------------*
     *
     * サイドメニュー
     *  
*-------------------------------------------------------------------------------------------*/
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -100%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 102;
  padding: 60px 15px 15px;
  background: url(../images/bg_mizutama01.jpg) repeat center/25px;
}
@media (min-width: 576px) {
  #sidebar {
    right: -350px;
    width: 350px;
  }
}
@media (min-width: 992px) {
  #sidebar {
    padding: 80px 15px 15px;
  }
}
#sidebar .inr {
  border-radius: 16px;
  background: #fff;
  padding: 5px 30px 15px;
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
#sidebar #side-logo {
  margin-bottom: -30px;
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  font-weight: 600;
}
#sidebar .list-sidenav > li {
  text-align: left;
  margin-bottom: 5px;
}
#sidebar .list-sidenav > li > a {
  color: #3a3a3a;
  display: flex;
  padding: 1.4rem 0px;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  border-bottom: dashed 1px #5f5f5f;
  font-size: 16px;
  line-height: 1;
}
#sidebar .list-sidenav > li > a:after {
  content: url(../images/icon_arrow.svg);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#sidebar .list-sidenav > li > a img {
  width: 44px;
  margin-right: 16px;
  margin-bottom: 4px;
}
#sidebar .list-sidenav > li.active > a,
#sidebar .list-sidenav > li > a:hover {
  border-bottom: solid 1px #4d98d3;
  color: #4d98d3;
}
#sidebar .list-sidenav > li.active > a:after,
#sidebar .list-sidenav > li > a:hover:after {
  filter: invert(55%) sepia(31%) saturate(728%) hue-rotate(164deg) brightness(93%) contrast(102%);
}
#sidebar .list-sidenav > li.active > a:after {
  filter: invert(55%) sepia(31%) saturate(728%) hue-rotate(164deg) brightness(93%) contrast(102%);
}
#sidebar .submenu {
  background: #fff;
  display: none;
}
#sidebar .submenu li {
  border-bottom: 1px dashed #b4b4b4;
}
#sidebar .submenu li a {
  padding: 1rem;
  font-size: 1.3rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#sidebar .submenu li a:hover {
  color: #005145;
}

.sidebar-bnr {
  text-align: center;
}
.sidebar-bnr img {
  width: 80%;
  margin: 0px auto;
}

body.side-open {
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
body.side-open::-webkit-scrollbar {
  display: none;
}

#sidebarContact {
  width: 100%;
  background: linear-gradient(90deg, rgb(250, 187, 78) 0%, rgb(252, 149, 99) 35%, rgb(224, 112, 118) 70%, rgb(159, 117, 189) 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 15px 5px;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 30px;
}
#sidebarContact img {
  filter: brightness(0) invert(1);
  margin-left: 1.2rem;
  margin-bottom: 4px;
  height: auto;
}

#sidebarTel .tel {
  font-weight: 700;
}
#sidebarTel .tel .en {
  font-size: 1.8rem;
}
#sidebarTel .tel .num {
  font-size: 3rem;
}
#sidebarTel .time {
  font-size: 1.3rem;
  line-height: 1.4;
}

/* -------------------------------
        オーバーレイ
    -------------------------------- */
.overlay {
  content: "";
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.5s ease;
  z-index: 101;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}

/* -------------------------------
        HambergerMenu
    -------------------------------- */
.menuWrapper {
  position: fixed;
  right: 7px;
  top: 7px;
  width: 46px;
  height: 46px;
  transform: translate3d(0, 0, 0);
  z-index: 103;
  display: block;
}
@media (min-width: 576px) {
  .menuWrapper {
    right: 5px;
  }
}
@media (min-width: 992px) {
  .menuWrapper {
    top: 12px;
    right: 12px;
    width: 56px;
    height: 56px;
  }
}
@media (min-width: 1200px) {
  .menuWrapper {
    display: none;
  }
}

@media (min-width: 1200px) {
  .side-open .menuWrapper {
    display: block;
  }
}
.menuWrapper.on {
  right: 0px;
  top: 0px;
}
@media (min-width: 1200px) {
  .menuWrapper.on {
    right: 0px;
    top: 0px;
  }
}

#menuButton {
  border-radius: 10px;
  background: #333;
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media (min-width: 992px) {
  #menuButton {
    border-radius: 14px;
  }
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #fff;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #fff;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -7px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 7px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 100%;
  color: #fff;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}
@media (min-width: 992px) {
  #menuButton small {
    font-size: 12px;
  }
}

body.side-open #menuButton {
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Footer
 *  
 *-------------------------------------------------------------------------------------------*/
#footer {
  width: 100%;
  position: relative;
  background: #ecf7fa;
}
#footer:before {
  content: "";
  display: block;
  width: 100%;
  height: 6px;
  background: url(../images/bg_dot.png) repeat-x;
  position: absolute;
  top: -3px;
  z-index: 1;
}
#footer #footerBody {
  width: 100%;
  color: #4d4a48;
  font-size: 14px;
  padding: 60px 15px;
}
@media (min-width: 992px) {
  #footer #footerBody {
    padding: 90px 0px;
  }
}
#footer #footerBody a {
  text-decoration: none;
  color: #4d4a48;
}
#footer #footerBody #f-logo {
  width: 70vw;
  text-align: center;
  margin: 0px auto;
}
@media (min-width: 768px) {
  #footer #footerBody #f-logo {
    max-width: 300px;
    width: 100%;
  }
}
#footer #footerBody .linkCont {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  #footer #footerBody .linkCont {
    flex-direction: row;
  }
}
#footer #footerBody #textLink {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Oswald", sans-serif;
  text-align: center;
}
#footer #footerBody #textLink li a {
  padding: 0px 4vw;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-self: center;
  justify-content: center;
  font-size: 2.4vw;
}
@media (min-width: 576px) {
  #footer #footerBody #textLink li a {
    padding: 0px 2rem;
  }
}
@media (min-width: 576px) {
  #footer #footerBody #textLink li a {
    font-size: 1.6rem;
  }
}
#footer #footerBody #textLink li a img {
  width: 12vw;
  margin: 0px auto 10px;
}
@media (min-width: 576px) {
  #footer #footerBody #textLink li a img {
    width: 62px;
  }
}
#footer #footerBody #textLink li a:hover {
  text-decoration: underline;
}
#footer #copy {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  margin: 0px;
  background: #617f87;
  color: #fff;
}

#pagetop {
  z-index: 10;
  transform-origin: right bottom;
  transform: scale(0.6);
}
@media (min-width: 576px) {
  #pagetop {
    transform: scale(0.75);
  }
}
@media (min-width: 992px) {
  #pagetop {
    transform: scale(1);
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * index.html
 *  
 *-------------------------------------------------------------------------------------------*/
#sliderWrap {
  position: relative;
  width: 100%;
  padding-right: 10%;
  background: url(../images/bg_mizutama01.jpg) repeat center/35px 35px;
  margin-top: -20px;
  height: calc(100vh - 40px);
  overflow: hidden;
}
@media (min-width: 576px) {
  #sliderWrap {
    padding-right: 13%;
    height: auto;
  }
}
@media (min-width: 768px) {
  #sliderWrap {
    padding-right: 16%;
    height: auto;
  }
}
@media (min-width: 992px) {
  #sliderWrap {
    padding-right: 20%;
  }
}
@media (min-width: 1200px) {
  #sliderWrap {
    padding-right: 26%;
  }
}
#sliderWrap #catch {
  position: absolute;
  bottom: -5vw;
  right: -10vw;
  z-index: 1;
  width: 135vw;
  will-change: transform;
}
@media (min-width: 576px) {
  #sliderWrap #catch {
    width: auto;
    right: -5vw;
    bottom: -5vw;
  }
}
@media (min-width: 768px) {
  #sliderWrap #catch {
    width: 70vw;
    right: 0px;
    bottom: 15px;
  }
}
@media (min-width: 1200px) {
  #sliderWrap #catch {
    width: 746px;
  }
}

#mainSlider {
  width: 100%;
  line-height: 1;
  overflow: hidden;
  border-bottom-right-radius: 140px;
}
@media (min-width: 576px) {
  #mainSlider {
    border-bottom-right-radius: 180px;
  }
}
@media (min-width: 768px) {
  #mainSlider {
    border-bottom-right-radius: 220px;
  }
}
@media (min-width: 992px) {
  #mainSlider {
    border-bottom-right-radius: 260px;
  }
}
@media (min-width: 1200px) {
  #mainSlider {
    border-bottom-right-radius: 400px;
  }
}
#mainSlider li {
  vertical-align: middle;
}
#mainSlider li img:nth-child(1) {
  display: none;
}
#mainSlider li img:nth-child(2) {
  display: none;
}
#mainSlider li img:nth-child(3) {
  display: block;
}
@media (min-width: 768px) {
  #mainSlider li img:nth-child(1) {
    display: none;
  }
  #mainSlider li img:nth-child(2) {
    display: block;
  }
  #mainSlider li img:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1200px) {
  #mainSlider li img:nth-child(1) {
    display: block;
  }
  #mainSlider li img:nth-child(2) {
    display: none;
  }
  #mainSlider li img:nth-child(3) {
    display: none;
  }
}

.bg_skyblue {
  padding: 60px 15px;
  background: #ecf7fa;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .bg_skyblue {
    padding: 120px 15px;
  }
}

.bg_yellowMizutama {
  padding: 60px 15px;
  background: url(../images/bg_mizutama02.jpg) repeat center/35px 35px;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .bg_yellowMizutama {
    padding: 120px 15px;
  }
}

.bg_line {
  margin: -3px 0px 0px;
  padding: 60px 15px;
  background: url(../images/bg_dot.png) repeat-x top center;
  overflow: hidden;
  width: 100%;
}
@media (min-width: 992px) {
  .bg_line {
    padding: 120px 15px;
  }
}

.news-Wrap {
  width: 100%;
  background: #fff;
  padding: 30px;
  border: solid 1px #3589b0;
  border-radius: 20px;
  position: relative;
  z-index: 3;
}
.news-Wrap .inr {
  height: 280px;
  overflow-y: scroll;
  scrollbar-color: #555 #e0ebeb;
  scrollbar-width: thin;
  padding-right: 18px;
}
.news-Wrap .inr::-webkit-scrollbar {
  width: 6px;
  background-color: #555;
}
.news-Wrap .inr:-webkit-scrollbar-thumb {
  background: #e0ebeb;
  width: 8px;
  border-radius: 0;
}

.newsLink {
  background: url(../images/bg_dot.gif) repeat-x top center;
  padding-top: 3px;
  display: block;
  text-decoration: none;
  color: #4d4a48;
}
.newsLink:hover {
  color: #4d4a48;
}
.newsLink:hover dl {
  background: #e0f0f1;
}

.newDL {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .newDL {
    flex-direction: row;
  }
}
.newDL dt {
  width: 100%;
  padding: 15px 0px;
}
@media (min-width: 992px) {
  .newDL dt {
    width: 22%;
    padding: 30px 0px;
  }
}
.newDL dd {
  width: 100%;
  border-bottom: none;
  padding: 0px 0px 30px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .newDL dd {
    width: 78%;
    padding: 30px 0px 30px 40px;
  }
}
.newDL .date {
  display: inline-block;
  font-weight: 700;
  margin-right: 2rem;
}
.newDL .icon-New {
  color: #de0000;
  font-weight: bold;
  margin-left: 1.2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0.2rem;
  transform: scale(0.75);
}
@media (min-width: 992px) {
  .newDL .icon-New {
    transform: scale(1);
  }
}

.caltegoryLabel {
  min-height: 28px;
  padding: 4px 18px;
  line-height: 1.2;
  border-radius: 18px;
  display: block;
  float: left;
  margin-right: 24px;
  max-width: 240px;
}
.caltegoryLabel.label01 {
  background: #e3fee6;
}
.caltegoryLabel.label02 {
  background: #f7fee3;
}
.caltegoryLabel.label03 {
  background: #fee3f2;
}

.caltegoryLabel-Large {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 4px 18px;
  line-height: 1.2;
  border-radius: 18px;
  display: inline-block;
  margin-right: 24px;
  max-width: 240px;
}
.caltegoryLabel-Large.label01 {
  background: #e3fee6;
}
.caltegoryLabel-Large.label02 {
  background: #f7fee3;
}
.caltegoryLabel-Large.label03 {
  background: #fee3f2;
}

.decoration {
  position: absolute;
  max-width: 50%;
}
@media (min-width: 768px) {
  .decoration {
    max-width: 75%;
  }
}
@media (min-width: 1200px) {
  .decoration {
    max-width: 100%;
  }
}

.positon-TR {
  top: 0;
  right: 0;
}

.positon-TL {
  top: 0;
  left: 0;
}

.positon-BR {
  bottom: 0;
  right: 0;
}

.positon-BL {
  bottom: 0;
  left: 0;
}

.z-index1 {
  z-index: 1;
}

.z-index2 {
  z-index: 2;
}

.z-index3 {
  z-index: 3;
}

.z-index4 {
  z-index: 4;
}

.blur01 {
  transform: translate3d(50%, -60%, 0);
  will-change: transform;
  overflow: hidden;
}

.illust01 {
  transform: translate3d(-10%, 80%, 0);
  will-change: transform;
  overflow: hidden;
  width: 254px;
}

.shape01 {
  transform: translate3d(-40%, 50%, 0);
  will-change: transform;
  overflow: hidden;
}

.shape02 {
  transform: translate3d(-20%, -28%, 0);
  max-width: 170%;
  will-change: transform;
  overflow: hidden;
}

.blur02 {
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  overflow: hidden;
}

.shape03 {
  transform: translate3d(-20%, 28%, 0);
  max-width: 140%;
  will-change: transform;
  overflow: hidden;
}

.blur03 {
  transform: translate3d(50%, -50%, 0);
  will-change: transform;
  overflow: hidden;
}

.illust03 {
  transform: translate3d(-15%, 20%, 0);
  will-change: transform;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .illust03 {
    transform: translate3d(-75%, 20%, 0);
  }
}

.contactBanner {
  background: #e1f4f9;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0px 30px;
  height: auto;
  justify-content: space-between;
}
@media (min-width: 1200px) {
  .contactBanner {
    padding: 0px 60px;
    flex-direction: row;
    height: 260px;
  }
}
@media (min-width: 1400px) {
  .contactBanner {
    padding: 0px 90px;
  }
}
.contactBanner .c-logo {
  margin-bottom: -30px;
}

.mapPin {
  width: 14px;
  display: inline-block;
  filter: invert(11%) sepia(100%) saturate(5631%) hue-rotate(244deg) brightness(85%) contrast(136%);
  vertical-align: middle;
  margin-left: 0.6rem;
  margin-bottom: 4px;
}

/*-------------------------------------------------------------------------------------------*
 *
 * news.html 
 *  
 *-------------------------------------------------------------------------------------------*/
.categoryTitle {
  width: 100%;
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.categoryTitle .txt {
  font-weight: 900;
  font-size: 3.2rem;
  line-height: 1.2;
  padding-right: 36px;
}
.categoryTitle .date {
  font-size: 1.6rem;
  font-family: "Signika", sans-serif;
  font-weight: 700;
  white-space: nowrap;
}

#example1 .sp-thumbnail {
  height: 0;
  display: block;
  padding-bottom: 50%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
@media (min-width: 576px) {
  #example1 .sp-thumbnail {
    padding-bottom: 55%;
  }
}
#example1 .sp-thumbnail img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  left: 0;
  top: 0;
}

#example1 .sp-thumbnail-title {
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #333;
}

#example1 .sp-thumbnail-description {
  font-size: 14px;
  color: #333;
}

@media (max-width: 860px) {
  #example1 .hide-medium-screen {
    display: none;
  }
}
@media (max-width: 640px) {
  #example1 .sp-layer {
    font-size: 12px;
  }
  #example1 .hide-small-screen {
    display: none;
  }
}
@media (max-width: 500px) {
  #example1 .sp-thumbnail {
    text-align: center;
  }
  #example1 .sp-thumbnail-title {
    font-size: 12px;
    text-transform: uppercase;
  }
  #example1 .sp-thumbnail-description {
    display: none;
  }
}
.textBox {
  background: #fff;
  border: solid 1px #3589b0;
  border-radius: 20px;
  padding: 30px;
}

.attachedButton2 {
  display: inline-flex;
  width: 100%;
  min-height: 48px;
  height: 100%;
  border: solid 2px #4d4a48;
  align-items: center;
  padding: 0px 48px 0px 56px;
  justify-content: flex-start;
  background: #fff;
  position: relative;
  border-radius: 24px;
  text-decoration: none;
  color: #4d4a48;
}
.attachedButton2::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_dot.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.attachedButton2:hover {
  background: #4d4a48;
  color: #fff;
}
.attachedButton2.pdf {
  border-color: #e34f43;
}
.attachedButton2.pdf::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_pdf.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.attachedButton2.excel {
  border-color: #3c6e3e;
}
.attachedButton2.excel::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_excel.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.attachedButton2.word {
  border-color: #2e3d7f;
}
.attachedButton2.word::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_word.png);
  background-size: contain;
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translate(0, -50%);
}
.attachedButton2:hover {
  text-decoration: none;
}
.attachedButton2:hover:after, .attachedButton2:hover:before {
  filter: brightness(0) invert(1);
}
.attachedButton2:after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
  transition: all 300ms 0s ease;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  filter: invert(26%) sepia(7%) saturate(12%) hue-rotate(314deg) brightness(93%) contrast(79%);
}
.attachedButton2.pdf:hover {
  background: #e34f43;
  color: #fff;
}
.attachedButton2.excel:hover {
  background: #3c6e3e;
  color: #fff;
}
.attachedButton2.word:hover {
  background: #2e3d7f;
  color: #fff;
}

.googleMap {
  width: calc(100% + 30px);
  height: 320px;
  border-top: solid 1px #3589b0 !important;
  border-bottom: solid 1px #3589b0 !important;
  margin: 0px -15px;
}
@media (min-width: 992px) {
  .googleMap {
    height: 732px;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * about.html
 *  
 *-------------------------------------------------------------------------------------------*/
.tabBtn-Cont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.tabBtn-Cont li {
  width: 99%;
  margin-bottom: 1rem;
  margin: 0px 0.5% 15px;
}
@media (min-width: 576px) {
  .tabBtn-Cont li {
    width: 49%;
  }
}
@media (min-width: 768px) {
  .tabBtn-Cont li {
    width: 32%;
  }
}
@media (min-width: 1200px) {
  .tabBtn-Cont li {
    width: 19%;
  }
}

.tabBtn {
  display: inline-flex;
  background: #fff;
  border: solid 1px #3589b0;
  width: 100%;
  height: 52px;
  border-radius: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px 0px 34px;
  text-decoration: none;
  color: #4d4a48;
}
.tabBtn:after {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
  transform: rotate(90deg);
}
.tabBtn:hover {
  color: #4d4a48;
}
.tabBtn:hover:after {
  transform: rotate(90deg) translate(0, -8px);
}

.dotList-Large {
  margin: 0px auto;
  display: inline-block;
}
.dotList-Large li {
  padding-left: 2.4rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: left;
}
.dotList-Large li:last-child {
  margin-bottom: 0;
}
.dotList-Large li:before {
  content: "";
  display: block;
  width: 1.2rem;
  aspect-ratio: 1;
  background: #5aa18f;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 50%;
}
.dotList-Large li span {
  display: inline-block;
  padding: 4px 16px;
  background: #fffef8;
  border-radius: 8px;
}
.dotList-Large.half {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.dotList-Large.half li {
  width: 50%;
}
@media (min-width: 992px) {
  .dotList-Large.half li {
    width: 100%;
  }
}

.Childcare-DL {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.19);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.Childcare-DL dd {
  margin: 0px;
}
.Childcare-DL dt {
  background: #fff;
  text-align: center;
  font-size: 2.4vw;
  font-weight: 700;
  line-height: 1.4;
  padding: 0.8rem 0.8rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .Childcare-DL dt {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  .Childcare-DL dt {
    font-size: 1.8rem;
  }
}
@media (min-width: 1400px) {
  .Childcare-DL dt {
    font-size: 2rem;
  }
}

.nomal-Table {
  width: 100%;
}
.nomal-Table th,
.nomal-Table td {
  padding: 7px 15px 9px;
}
.nomal-Table thead th {
  background: url(../images/bg_dot_orange.png) repeat-x bottom left;
}
.nomal-Table tbody tr {
  background: url(../images/bg_dot_gray.png) repeat-x bottom left;
}
.nomal-Table .total {
  background: #fafafa url(../images/bg_dot_gray.png) repeat-x bottom left;
}

.nomal-Table2 {
  width: 100%;
  line-height: 1.4;
}
.nomal-Table2 th {
  white-space: nowrap;
  background: url(../images/bg_dot_orange.png) repeat-x bottom left;
  padding: 11px 0px 13px;
}
@media (min-width: 992px) {
  .nomal-Table2 th {
    padding: 11px 15px 13px;
  }
}
.nomal-Table2 td {
  background: url(../images/bg_dot_gray.png) repeat-x bottom left;
  padding: 11px 0px 13px 15px;
}
@media (min-width: 992px) {
  .nomal-Table2 td {
    padding: 11px 15px 13px;
  }
}

.textBox-Blue {
  background: #e1f4f9;
  border-radius: 20px;
  padding: 30px;
}

.p03_illust01 {
  transform: translate(10%, 15%);
}
@media (min-width: 1200px) {
  .p03_illust01 {
    transform: translate(-10%, 15%);
  }
}

.p03_blur01 {
  transform: translate(5%, 30%);
}

.p03_illust02 {
  transform: translate(10%, 15%);
}

.p03_blur02 {
  transform: translate(25%, 30%);
}

.p03_blur03 {
  transform: translate(-25%, 60%);
}

.p03_blur04 {
  transform: translate(50%, -50%);
}

.p03_illust05 {
  display: none;
}
@media (min-width: 768px) {
  .p03_illust05 {
    display: block;
    transform: translate(-10%, 15%);
  }
}

.p03_blur05 {
  transform: translate(35%, 40%);
}

.telLink a {
  color: #4d4a48;
  text-decoration: none;
}
.telLink a:hover {
  color: #4d4a48;
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------*
 *
 * day.html
 *  
 *-------------------------------------------------------------------------------------------*/
.tabBtn-Cont2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.tabBtn-Cont2 li {
  width: 99%;
  margin-bottom: 1rem;
  margin: 0px 0.5% 15px;
}
@media (min-width: 768px) {
  .tabBtn-Cont2 li {
    width: 49%;
  }
}
@media (min-width: 1200px) {
  .tabBtn-Cont2 li {
    width: 32%;
  }
}

.dayTime {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.dayTime dt {
  background: #ea8562;
  color: #fff;
  padding: 8px 0px 12px;
  border-radius: 8px;
  line-height: 1.4;
  font-weight: 900;
  display: inline-block;
  text-align: right;
  font-size: 4vw;
  width: 22vw;
  text-align: center;
}
@media (min-width: 576px) {
  .dayTime dt {
    font-size: 3.2rem;
    width: 26.66666667%;
    padding: 8px 0px 12px;
  }
}
.dayTime dd {
  width: calc(100% - 22vw - 15px);
  font-size: 4vw;
  font-weight: 700;
  background: url(../images/bg_dot_gray.png) repeat-x center;
  text-align: right;
}
@media (min-width: 576px) {
  .dayTime dd {
    font-size: 2.4rem;
    width: calc(70.33333333% - 15px);
  }
}
@media (min-width: 992px) {
  .dayTime dd {
    text-align: left;
  }
}
.dayTime dd span {
  background: #fff;
  padding-right: 0;
  padding-left: 12px;
  line-height: 1.2;
  display: inline-block;
}
@media (min-width: 992px) {
  .dayTime dd span {
    padding-right: 12px;
    padding-left: 0px;
  }
}
.dayTime.left {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .dayTime.left {
    flex-direction: row;
  }
}
.dayTime.right {
  flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .dayTime.right {
    flex-direction: row-reverse;
  }
}

/*-------------------------------------------------------------------------------------------*
 *
 * access.html
 *  
 *-------------------------------------------------------------------------------------------*/
.dotList li {
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}
.dotList li:last-child {
  margin-bottom: 0;
}
.dotList li:before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: #37669c;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
}
.dotList.Horizonal {
  display: flex;
  flex-wrap: wrap;
}
.dotList.Horizonal li {
  margin-right: 3rem;
  white-space: nowrap;
}

.googleMap-aceess {
  width: 100%;
  height: 320px;
  border: solid 1px #3589b0 !important;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .googleMap-aceess {
    height: 640px;
  }
}

.responsiveTable-Arrow {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px 15px;
  font-size: 1.6rem;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow {
    width: 100%;
    display: table;
  }
}
.responsiveTable-Arrow th {
  width: 100%;
  color: #fff;
  padding: 7px 15px;
  font-weight: 300;
  display: block;
  line-height: 1;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow th {
    width: 30%;
    display: table-cell;
    vertical-align: middle;
    padding: 25px 25px;
    text-align: left;
    position: relative;
  }
  .responsiveTable-Arrow th:after {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(136, 183, 213, 0);
    border-width: 10px;
    margin-top: -10px;
  }
}
.responsiveTable-Arrow td {
  width: 100%;
  padding: 15px 15px 35px;
  line-height: 1.8;
  display: block;
  color: #333;
  background: #fff;
}
@media (min-width: 768px), print {
  .responsiveTable-Arrow td {
    padding: 25px 25px 25px 35px;
    display: table-cell;
  }
}
.responsiveTable-Arrow.blue th {
  background: #8dbbe0;
}
.responsiveTable-Arrow.blue th:after {
  border-left-color: #8dbbe0;
}
.responsiveTable-Arrow.blue td {
  color: #314657;
}
.responsiveTable-Arrow.brown th {
  background: #c9a89b;
}
.responsiveTable-Arrow.brown th:after {
  border-left-color: #c9a89b;
}
.responsiveTable-Arrow.green th {
  background: #9bc9a5;
}
.responsiveTable-Arrow.green th:after {
  border-left-color: #9bc9a5;
}
.responsiveTable-Arrow.green td {
  color: #2b413d;
}

.p04_illust01 {
  transform: translate(20%, 40%) rotate(5deg);
}

.p04_illust02 {
  transform: translate(20%, 35%) rotate(-3deg);
}

/*-------------------------------------------------------------------------------------------*
 *
 * contact.html
 *  
 *-------------------------------------------------------------------------------------------*/
.contactBox {
  width: 100%;
}
.contactBox a {
  text-decoration: none;
}
.contactBox dt {
  background: #333;
  color: #fff;
  font-size: 18px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactBox dd {
  background: #fff;
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: solid 1px #ccc;
  border-top: none;
}
.contactBox dd .num {
  font-size: 24px;
  border-bottom: dotted 1px #888;
  padding: 0 30px 10px;
}
.contactBox dd .num em {
  font-style: normal;
  font-size: 18px;
}
.contactBox dd .time {
  padding-top: 1em;
}

.mailfoamTable {
  width: 100%;
  margin-bottom: 10px;
}
.mailfoamTable th {
  width: 100%;
  padding: 15px 15px 10px 0px;
  font-weight: bold;
  border-top: none;
  border-bottom: solid 1px #ccc;
  line-height: 140%;
  display: block;
}
.mailfoamTable th div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.mailfoamTable th .required {
  margin-left: 1.6rem;
}
.mailfoamTable td {
  width: 100%;
  padding: 15px 0px 30px 0px;
  border: none;
  line-height: 140%;
  display: block;
}
.mailfoamTable td .form-control {
  font-size: 1.4rem;
  padding: 0.75rem 1.25rem;
}

@media (min-width: 768px) {
  .mailfoamTable table {
    width: 100%;
    display: table;
  }
  .mailfoamTable th {
    width: 30%;
    font-weight: bold;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
    vertical-align: middle;
  }
  .mailfoamTable th div {
    justify-content: space-between;
  }
  .mailfoamTable td {
    padding: 18px 0px 18px 10px;
    border-top: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    line-height: 140%;
    display: table-cell;
  }
}
textarea {
  width: 100%;
}

.form25 {
  width: 80%;
  display: inline-block;
}

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

@media (min-width: 767px) {
  .form25 {
    width: 25%;
  }
  .form50 {
    width: 50%;
  }
}
.need {
  color: #df443e;
  font-size: 12px;
  border-radius: 4px;
  float: right;
  line-height: 1em;
}

.required {
  background: #df443e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 44px;
  color: #fff;
  padding: 0px 0px 1px;
  border-radius: 3px;
  line-height: 1;
  font-size: 11px;
}

.formBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 475px;
  height: 56px;
  background: #444;
  color: #fff;
  position: relative;
  font-size: 4.2vw;
  line-height: 1.4;
}
@media (min-width: 576px) {
  .formBtn {
    font-size: 18px;
  }
}
.formBtn:hover {
  background: #666;
  text-decoration: none;
}
.formBtn.back:before {
  content: "";
  background: url(../images/icon_arrow-left.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 1.2rem;
  filter: brightness(0) invert(1);
}
.formBtn.next:after {
  content: "";
  background: url(../images/icon_arrow-right.svg) no-repeat center/contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  margin-right: 1.2rem;
}

button.formBtn {
  border: none;
  outline: none;
}
button.formBtn:hover {
  outline: none;
}

.privacyBox {
  height: 250px;
  overflow: auto;
  overflow-y: scroll;
  font-size: 14px;
  line-height: normal;
  padding: 20px;
  border: solid 1px #ccc;
  border-radius: 8px;
  box-shadow: 0px 1px 2px #999 inset;
  background: #fff;
  word-wrap: break-word;
}
.privacyBox h4 {
  font-size: 120%;
  font-weight: bold;
  border-bottom: #ccc solid 1px;
  margin-bottom: 10px;
}
.privacyBox p {
  margin-bottom: 1em;
}
.privacyBox ul {
  margin-bottom: 1em;
  margin-left: 10px;
}
.privacyBox ol {
  margin-bottom: 1em;
  margin-left: 0px;
  padding: 0px;
}
.privacyBox li {
  list-style: decimal outside;
  margin-left: 2em;
  margin-bottom: 5px;
}

@media (min-width: 768px) {
  .privacyBox ul {
    margin-bottom: 1em;
    margin-left: 20px;
  }
}
.ttl_policy {
  font-size: 120%;
  font-weight: bold;
}

.out-line {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 50px 0;
}

/*-------------------------------------------------------------------------------------------*
 *
 * title
 *  
 *-------------------------------------------------------------------------------------------*/
#h2Title {
  height: 360px;
  display: flex;
  margin-top: -20px;
  width: 100%;
  background: url(../images/bg_mizutama01.jpg) repeat center/35px 35px;
  position: relative;
}
@media (min-width: 576px) {
  #h2Title {
    height: 400px;
  }
}
@media (min-width: 768px) {
  #h2Title {
    height: 440px;
  }
}
@media (min-width: 1200px) {
  #h2Title {
    height: 480px;
  }
}
@media (min-width: 1400px) {
  #h2Title {
    height: 520px;
  }
}
#h2Title .h2-backgroundImage {
  width: 90%;
  height: 100%;
  border-bottom-right-radius: 100px;
  overflow: hidden;
}
@media (min-width: 576px) {
  #h2Title .h2-backgroundImage {
    width: 85%;
  }
}
@media (min-width: 992px) {
  #h2Title .h2-backgroundImage {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  #h2Title .h2-backgroundImage {
    width: 75%;
  }
}
#h2Title .h2-backgroundImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#h2Title h2 {
  background: #fff;
  padding: 8px 32px 14px;
  line-height: 1;
  font-size: 12vw;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  white-space: nowrap;
  border-radius: 8px;
}
@media (min-width: 576px) {
  #h2Title h2 {
    font-size: 7.2rem;
  }
}
@media (min-width: 992px) {
  #h2Title h2 {
    right: 10%;
  }
}
#h2Title .h2-decorationImage {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 40vw;
}
@media (min-width: 576px) {
  #h2Title .h2-decorationImage {
    width: 35vw;
  }
}
@media (min-width: 992px) {
  #h2Title .h2-decorationImage {
    width: 25vw;
  }
}
@media (min-width: 1400px) {
  #h2Title .h2-decorationImage {
    width: auto;
  }
}
#h2Title.news {
  background: url(../images/bg_h2-news.jpg) no-repeat center/auto 100%;
}
#h2Title.p02 {
  background: url(../images/bg_h2title02.jpg) no-repeat center/auto 100%;
}
#h2Title.p03 {
  background: url(../images/bg_h2title03.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p04 {
  background: url(../images/bg_h2title04.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p05 {
  background: url(../images/bg_h2title05.jpg) no-repeat center;
  background-size: auto 100%;
}
#h2Title.p06 {
  background: url(../images/bg_h2title06.jpg) no-repeat center;
  background-size: auto 100%;
}

.title {
  display: inline-flex;
  flex-direction: column;
  position: relative;
}
.title .ja {
  font-size: 8.4vw;
  font-weight: 900;
  position: relative;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .title .ja {
    font-size: 4.8rem;
  }
}
@media (min-width: 1200px) {
  .title .ja {
    text-align: left;
  }
}
.title .en {
  font-family: "Signika", sans-serif;
  font-weight: 700;
  font-size: 3vw;
  text-align: left;
  line-height: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .title .en {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .title .en {
    font-size: 2.4rem;
    text-align: left;
  }
}
.title:after {
  display: block;
  width: 256px;
  aspect-ratio: 256/20;
  content: "";
  background: url(../images/bg_line.png) no-repeat center/contain;
  margin-top: 2rem;
}
.title.center .ja {
  text-align: center;
}
.title.center .en {
  text-align: center;
}
.title.center:after {
  margin: 2rem auto 0px;
}
.title.white .en {
  color: #fff;
}
.title.white .ja {
  color: #fff;
}
.title.white .ja:before {
  background: #fff;
}
.title.white .ja:after {
  background: #fff;
}

.subTitle {
  background: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  line-height: 1.4;
  font-weight: 900;
  font-size: 5.64vw;
  display: inline-block;
}
@media (min-width: 576px) {
  .subTitle {
    font-size: 3.2rem;
  }
}

.subTitle2 {
  font-size: 3.6rem;
  font-weight: 700;
  color: #0a5cb8;
}

.read {
  font-size: 4.8rem;
  font-weight: 900;
}

.read2 {
  font-size: 3.2rem;
  font-weight: 900;
}

.pink {
  color: #f07392 !important;
}

.orange {
  color: #ea8562 !important;
}

.green {
  color: #59b477 !important;
}

.blue {
  color: #599bc2 !important;
}

.purple {
  color: #9e72c7 !important;
}

/*-------------------------------------------------------------------------------------------*
 *
 * table
 *  
 *-------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------*
 *
 * button
 *  
 *-------------------------------------------------------------------------------------------*/
.detailBtn {
  display: inline-flex;
  background: #fff;
  border: solid 1px #3589b0;
  width: 240px;
  height: 52px;
  border-radius: 26px;
  align-items: center;
  justify-content: space-between;
  padding: 0px 16px 0px 34px;
  text-decoration: none;
  color: #4d4a48;
}
.detailBtn:after {
  content: "";
  display: block;
  width: 35px;
  aspect-ratio: 1;
  background: url(../images/icon_arrow.png) no-repeat center/contain;
  transition: all 600ms 0s ease;
}
.detailBtn:hover {
  color: #4d4a48;
}
.detailBtn:hover:after {
  transform: translate(8px, 0);
}
.detailBtn.back:after {
  transform: rotate(180deg);
}
.detailBtn.back:hover:after {
  transform: rotate(180deg) translate(-8px, 0);
}

/*-------------------------------------------------------------------------------------------*
 *
 * Component
 *  
 *-------------------------------------------------------------------------------------------*/
.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.borderRadius {
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
@media (min-width: 576px) {
  .borderRadius {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
  }
}
@media (min-width: 992px) {
  .borderRadius {
    border-radius: 20px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.15);
  }
}

.wrapper {
  width: 100%;
  padding: 0px 15px;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px;
}
@media (min-width: 1200px) {
  .anchor {
    padding-top: 160px;
    margin-top: -160px;
  }
}

.objectfit-Img {
  width: 100%;
  height: 100%;
}
.objectfit-Img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.photo-ofi {
  height: 0;
  display: block;
  padding-bottom: 75%;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
}

.orange {
  color: #ea8562;
}

.rel {
  position: relative;
}

.posa {
  position: absolute;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.pbb {
  page-break-before: always;
}

.lh1 {
  line-height: 1;
}

.lh14 {
  line-height: 1.4;
}

.lh2 {
  line-height: 2;
}

small {
  font-size: 75%;
}

.fs-12 {
  font-size: 1.2rem;
}

.fs-14 {
  font-size: 1.4rem;
}

.fs-15 {
  font-size: 1.5rem;
}

.fs-18 {
  font-size: 1.8rem;
}

.fs-24 {
  font-size: 2.4rem;
}

.fs-30 {
  font-size: 3rem;
}

.fs-36 {
  font-size: 3.6rem;
}

.m-auto {
  margin: 0px auto;
}

.mt-00 {
  margin-top: 0px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-90 {
  margin-top: 90px;
}

@media (min-width: 992px) {
  .mt-lg-00 {
    margin-top: 0px;
  }
  .mt-lg-10 {
    margin-top: 10px;
  }
  .mt-lg-20 {
    margin-top: 20px;
  }
  .mt-lg-30 {
    margin-top: 30px;
  }
  .mt-lg-60 {
    margin-top: 60px;
  }
  .mt-lg-90 {
    margin-top: 90px;
  }
}
.ml-00 {
  margin-left: 0px !important;
}

.mr-05 {
  margin-right: 5px !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

.mb20 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 15px !important;
}

.mb40 {
  margin-bottom: 20px !important;
}

.mb50 {
  margin-bottom: 25px !important;
}

.mb60 {
  margin-bottom: 30px !important;
}

.mb70 {
  margin-bottom: 35px !important;
}

.mb80 {
  margin-bottom: 40px !important;
}

.mb90 {
  margin-bottom: 45px !important;
}

.mb100 {
  margin-bottom: 50px !important;
}

.mb120 {
  margin-bottom: 60px !important;
}

.mb140 {
  margin-bottom: 70px !important;
}

.mb160 {
  margin-bottom: 80px !important;
}

.mb180 {
  margin-bottom: 90px !important;
}

.mb200 {
  margin-bottom: 100px !important;
}

.mb220 {
  margin-bottom: 110px !important;
}

.mb240 {
  margin-bottom: 120px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb200 {
    margin-bottom: 200px !important;
  }
  .mb220 {
    margin-bottom: 220px !important;
  }
  .mb240 {
    margin-bottom: 240px !important;
  }
}
.mb00 {
  margin-bottom: 0px !important;
}

.mb10 {
  margin-bottom: 5px !important;
}

.mb15 {
  margin-bottom: 7.5px !important;
}

.mb20 {
  margin-bottom: 10px !important;
}

.mb30 {
  margin-bottom: 15px !important;
}

.mb40 {
  margin-bottom: 20px !important;
}

.mb50 {
  margin-bottom: 25px !important;
}

.mb60 {
  margin-bottom: 30px !important;
}

.mb70 {
  margin-bottom: 35px !important;
}

.mb80 {
  margin-bottom: 40px !important;
}

.mb90 {
  margin-bottom: 45px !important;
}

.mb100 {
  margin-bottom: 50px !important;
}

.mb120 {
  margin-bottom: 60px !important;
}

.mb140 {
  margin-bottom: 70px !important;
}

.mb160 {
  margin-bottom: 80px !important;
}

.mb180 {
  margin-bottom: 90px !important;
}

.mb250 {
  margin-bottom: 175px !important;
}

@media (min-width: 992px), print {
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 15px !important;
  }
  .mb20 {
    margin-bottom: 20px !important;
  }
  .mb30 {
    margin-bottom: 30px !important;
  }
  .mb40 {
    margin-bottom: 40px !important;
  }
  .mb50 {
    margin-bottom: 50px !important;
  }
  .mb60 {
    margin-bottom: 60px !important;
  }
  .mb70 {
    margin-bottom: 70px !important;
  }
  .mb80 {
    margin-bottom: 80px !important;
  }
  .mb90 {
    margin-bottom: 90px !important;
  }
  .mb100 {
    margin-bottom: 100px !important;
  }
  .mb120 {
    margin-bottom: 120px !important;
  }
  .mb140 {
    margin-bottom: 140px !important;
  }
  .mb160 {
    margin-bottom: 160px !important;
  }
  .mb180 {
    margin-bottom: 180px !important;
  }
  .mb250 {
    margin-bottom: 250px !important;
  }
}
.mb-00 {
  margin-bottom: 0px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-210 {
  margin-bottom: 210px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.mb-250 {
  margin-bottom: 250px !important;
}

@media (min-width: 576px) {
  .mb-sm-00 {
    margin-bottom: 0px !important;
  }
  .mb-sm-10 {
    margin-bottom: 10px !important;
  }
  .mb-sm-15 {
    margin-bottom: 15px !important;
  }
  .mb-sm-20 {
    margin-bottom: 20px !important;
  }
  .mb-sm-30 {
    margin-bottom: 30px !important;
  }
  .mb-sm-40 {
    margin-bottom: 40px !important;
  }
  .mb-sm-50 {
    margin-bottom: 50px !important;
  }
  .mb-sm-60 {
    margin-bottom: 60px !important;
  }
  .mb-sm-70 {
    margin-bottom: 70px !important;
  }
  .mb-sm-80 {
    margin-bottom: 80px !important;
  }
  .mb-sm-90 {
    margin-bottom: 90px !important;
  }
  .mb-sm-100 {
    margin-bottom: 100px !important;
  }
  .mb-sm-120 {
    margin-bottom: 120px !important;
  }
  .mb-sm-150 {
    margin-bottom: 150px !important;
  }
  .mb-sm-180 {
    margin-bottom: 180px !important;
  }
  .mb-sm-210 {
    margin-bottom: 210px !important;
  }
  .mb-sm-240 {
    margin-bottom: 240px !important;
  }
  .mb-sm-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 768px) {
  .mb-md-00 {
    margin-bottom: 0px !important;
  }
  .mb-md-10 {
    margin-bottom: 10px !important;
  }
  .mb-md-15 {
    margin-bottom: 15px !important;
  }
  .mb-md-20 {
    margin-bottom: 20px !important;
  }
  .mb-md-30 {
    margin-bottom: 30px !important;
  }
  .mb-md-40 {
    margin-bottom: 40px !important;
  }
  .mb-md-50 {
    margin-bottom: 50px !important;
  }
  .mb-md-60 {
    margin-bottom: 60px !important;
  }
  .mb-md-70 {
    margin-bottom: 70px !important;
  }
  .mb-md-80 {
    margin-bottom: 80px !important;
  }
  .mb-md-90 {
    margin-bottom: 90px !important;
  }
  .mb-md-100 {
    margin-bottom: 100px !important;
  }
  .mb-md-120 {
    margin-bottom: 120px !important;
  }
  .mb-md-150 {
    margin-bottom: 150px !important;
  }
  .mb-md-180 {
    margin-bottom: 180px !important;
  }
  .mb-md-210 {
    margin-bottom: 210px !important;
  }
  .mb-md-240 {
    margin-bottom: 240px !important;
  }
  .mb-md-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 992px) {
  .mb-lg-00 {
    margin-bottom: 0px !important;
  }
  .mb-lg-10 {
    margin-bottom: 10px !important;
  }
  .mb-lg-15 {
    margin-bottom: 15px !important;
  }
  .mb-lg-20 {
    margin-bottom: 20px !important;
  }
  .mb-lg-30 {
    margin-bottom: 30px !important;
  }
  .mb-lg-40 {
    margin-bottom: 40px !important;
  }
  .mb-lg-50 {
    margin-bottom: 50px !important;
  }
  .mb-lg-60 {
    margin-bottom: 60px !important;
  }
  .mb-lg-70 {
    margin-bottom: 70px !important;
  }
  .mb-lg-80 {
    margin-bottom: 80px !important;
  }
  .mb-lg-90 {
    margin-bottom: 90px !important;
  }
  .mb-lg-100 {
    margin-bottom: 100px !important;
  }
  .mb-lg-120 {
    margin-bottom: 120px !important;
  }
  .mb-lg-150 {
    margin-bottom: 150px !important;
  }
  .mb-lg-180 {
    margin-bottom: 180px !important;
  }
  .mb-lg-210 {
    margin-bottom: 210px !important;
  }
  .mb-lg-240 {
    margin-bottom: 240px !important;
  }
  .mb-lg-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 1200px) {
  .mb-xl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xl-150 {
    margin-bottom: 150px !important;
  }
  .mb-xl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xl-250 {
    margin-bottom: 250px !important;
  }
}
@media (min-width: 1400px) {
  .mb-xxl-00 {
    margin-bottom: 0px !important;
  }
  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }
  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }
  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }
  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }
  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }
  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }
  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }
  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }
  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }
  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }
  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }
  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }
  .mb-xxl-150 {
    margin-bottom: 150px !important;
  }
  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }
  .mb-xxl-210 {
    margin-bottom: 210px !important;
  }
  .mb-xxl-240 {
    margin-bottom: 240px !important;
  }
  .mb-xxl-250 {
    margin-bottom: 250px !important;
  }
}
@media print {
  .mb-00 {
    margin-bottom: 0px !important;
  }
  .mb-10 {
    margin-bottom: 10px !important;
  }
  .mb-15 {
    margin-bottom: 15px !important;
  }
  .mb-20 {
    margin-bottom: 20px !important;
  }
  .mb-30 {
    margin-bottom: 30px !important;
  }
  .mb-40 {
    margin-bottom: 40px !important;
  }
  .mb-50 {
    margin-bottom: 50px !important;
  }
  .mb-60 {
    margin-bottom: 60px !important;
  }
  .mb-70 {
    margin-bottom: 70px !important;
  }
  .mb-80 {
    margin-bottom: 80px !important;
  }
  .mb-90 {
    margin-bottom: 90px !important;
  }
  .mb-100 {
    margin-bottom: 100px !important;
  }
  .mb-120 {
    margin-bottom: 120px !important;
  }
  .mb-150 {
    margin-bottom: 150px !important;
  }
  .mb-180 {
    margin-bottom: 180px !important;
  }
  .mb-210 {
    margin-bottom: 210px !important;
  }
  .mb-240 {
    margin-bottom: 240px !important;
  }
}/*# sourceMappingURL=style.css.map */