@charset "UTF-8";
/* 読み込みscss */
/* color */
/* font */
/* 読み込みscss */
header {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding-top: 56.25%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 80px;
  /* headerのタイトル */
  /* END / headerのタイトル */
}
header .header_inner {
  position: fixed;
  background-color: #f9f9f9;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
}
header .header_inner .header_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 80px;
  /* PC用ナビゲーション */
  /* END / PC用ナビゲーション */
  /* ハンバーガーボタン */
  /* END / ハンバーガーボタン */
  /* SP用ナビゲーション */
  /* END / SP用ナビゲーション */
}
header .header_inner .header_container .header_log {
  width: 100px;
  height: auto;
}
header .header_inner .header_container .header_log img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header .header_inner .header_container .header_nav ul {
  display: flex;
  align-items: center;
}
header .header_inner .header_container .header_nav ul li {
  position: relative;
  margin-right: 25px;
}
header .header_inner .header_container .header_nav ul li:last-child {
  margin-right: 0;
}
header .header_inner .header_container .header_nav ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #04234f;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
header .header_inner .header_container .header_nav ul li:hover::before {
  transform: scale(1, 1);
}
header .header_inner .header_container .header_nav ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  line-height: 1.4rem;
  margin-bottom: 5px;
}
header .header_inner .header_container .hamBtn {
  display: none;
}
header .header_inner .header_container .header_nav-sp {
  display: none;
}
header .header_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: serif;
  text-align: center;
  font-size: 40px;
  width: 100%;
}

.header_top {
  background-image: url(../img/pict/header-mv.jpg);
}

.header_sub {
  padding-top: 29.25%;
  background-image: url(../img/pict/page_header.jpg);
}
.header_sub .header_title {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  font-family: serif;
  text-align: center;
  font-size: 40px;
  width: fit-content;
}

@media screen and (max-width: 1024px) {
  header .header_inner .header_container .header_nav ul li {
    font-size: 1.4rem;
  }
  .header_top .header_title,
  .header_sub .header_title {
    font-size: 32px;
  }
}
@media screen and (max-width: 790px) {
  header {
    position: relative;
  }
  header .header_inner .header_container {
    /* SP用ナビゲーション */
    /* END / SP用ナビゲーション */
    /* ハンバーガーボタン */
    /* ハンバーガーメニュー閉じるボタン */
    /* END / ハンバーガーメニュー閉じるボタン */
    /* END / ハンバーガーボタン */
  }
  header .header_inner .header_container .header_nav {
    display: none;
  }
  header .header_inner .header_container .hamBtn {
    display: block;
  }
  header .header_inner .header_container .header_nav-sp {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    visibility: hidden;
  }
  header .header_inner .header_container .header_nav-sp ul {
    margin-top: 50px;
    text-align: center;
  }
  header .header_inner .header_container .header_nav-sp ul li a {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    font-size: 1.6rem;
    line-height: 1.6rem;
  }
  header .header_inner .header_container .header_nav-sp ul li a:hover {
    color: #fff;
    background-color: #04234f;
  }
  header .header_inner .header_container .open {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  header .header_inner .header_container .hamBtn {
    position: relative;
    width: 60px;
    height: 60px;
  }
  header .header_inner .header_container .hamBtn span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 2px;
    border-radius: 5px;
    background-color: #04234f;
    transition: ease 0.25s;
  }
  header .header_inner .header_container .hamBtn span:nth-child(1) {
    top: 20px;
  }
  header .header_inner .header_container .hamBtn span:nth-child(3) {
    top: 40px;
  }
  header .header_inner .header_container .close span {
    transform: translate(-50%, -50%) rotate(45deg);
    transition: ease 0.25s;
  }
  header .header_inner .header_container .close span:nth-child(1) {
    transform: rotate(-45deg);
    top: 29px;
    left: 15px;
  }
  header .header_inner .header_container .close span:nth-child(3) {
    top: 30px;
  }
  .header_top .header_title,
  .header_sub .header_title {
    font-size: 20px;
  }
}
/* 読み込みscss */
/* 読み込みscss */
footer {
  background-color: #04234f;
  padding: 100px 0;
}
footer .footer_inner {
  padding: 0 5%;
}
footer .footer_inner .footer_inner-blocks {
  display: flex;
  justify-content: space-between;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_log {
  line-height: 28px;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_log a {
  color: #fff;
  font-size: 28px;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul li {
  position: relative;
  margin-right: 25px;
  margin-bottom: 10px;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul li:last-child {
  margin-right: 0;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: transform 0.3s;
  transform-origin: center top;
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul li:hover::before {
  transform: scale(1, 1);
}
footer .footer_inner .footer_inner-blocks .footer_inner-block .footer_nav ul li a {
  font-size: 1.2rem;
  color: #fff;
}
footer .footer_inner .footer_inner-blocks .logBlock {
  width: 30%;
}
footer .footer_inner .footer_inner-blocks .logBlock .appoint_lists {
  width: 18%;
  margin: 20px 0;
}
footer .footer_inner .footer_inner-blocks .logBlock .appoint_lists .appoint_list {
  min-width: 30px;
}
footer .footer_inner small {
  display: block;
  margin: 50px 0 0;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 40px 0 10px;
  }
  footer .footer_inner .footer_inner-blocks {
    flex-direction: column-reverse;
  }
  footer .footer_inner .footer_inner-blocks .footer_inner-block {
    width: 100%;
  }
  footer .footer_inner .footer_inner-blocks .logBlock {
    margin-top: 20px;
  }
  footer .footer_inner .footer_inner-blocks .logBlock .footer_log {
    line-height: 2.2rem;
  }
  footer .footer_inner .footer_inner-blocks .logBlock .footer_log a {
    font-size: 2.2rem;
  }
  footer .footer_inner .footer_inner-blocks .logBlock .appoint_lists {
    width: 11%;
    min-width: 76px;
  }
}
/* 読み込みscss */
.btn_p1 {
  display: block;
  width: fit-content;
  height: fit-content;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  background-color: #04234f;
  margin: 0 auto;
  font-size: 1.4rem;
}

@media screen and (max-width: 500px) {
  .btn_p1 {
    font-size: 1.2rem;
  }
}
/* 読み込みscss */
/* 読み込みscss */
.greeting .greeting_inner .greeting_lists {
  display: flex;
  justify-content: space-between;
}
.greeting .greeting_inner .greeting_lists .greeting_list-img {
  width: 35%;
}
.greeting .greeting_inner .greeting_lists .greeting_list-img .list_img {
  width: 100%;
}
.greeting .greeting_inner .greeting_lists .greeting_list-img .list_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock {
  width: 60%;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock {
  padding: 10px;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .position {
  margin-bottom: 20px;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .position span {
  margin-left: 20px;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .title {
  margin-bottom: 10px;
}
.greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .comment {
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 20px;
}
.greeting .greeting_inner .greeting_profile {
  margin-top: 10px;
}
.greeting .greeting_inner .greeting_profile .position {
  font-weight: bold;
}
.greeting .greeting_inner .greeting_profile .position span {
  margin-left: 10px;
}

@media screen and (max-width: 500px) {
  .greeting .greeting_inner .greeting_lists {
    flex-direction: column;
  }
  .greeting .greeting_inner .greeting_lists .greeting_list-img {
    width: 100%;
  }
  .greeting .greeting_inner .greeting_lists .greeting_list-txtBlock {
    width: 100%;
  }
  .greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .position {
    font-size: 1.8rem;
  }
  .greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .title {
    margin-bottom: 10px;
  }
  .greeting .greeting_inner .greeting_lists .greeting_list-txtBlock .list_txtBlock .comment {
    font-size: 1.4rem;
    line-height: 2;
  }
}
/* 読み込みscss */
/* 読み込みscss */
/* お知らせ一覧ページ */
.news_lists .news_list {
  border-top: 1px dashed #04234f;
}
.news_lists .news_list:last-child {
  border-bottom: 1px dashed #04234f;
}
.news_lists .news_list a {
  display: flex;
  padding: 10px 0;
}
.news_lists .news_list a .day {
  margin-right: 20px;
}

/* END / お知らせ一覧ページ */
/* お知らせ一覧詳細ページ */
.news_content .news_content_block {
  margin-bottom: 50px;
}
.news_content .news_content_block .content-day {
  margin-bottom: 10px;
}
.news_content .news_content_block .content-title {
  margin-bottom: 20px;
}
.news_content .news_content_block .content-txt {
  line-height: 1.5;
}

@media screen and (max-width: 500px) {
  .news_list a {
    font-size: 1.4rem;
  }
}
/* END / お知らせ一覧詳細ページ */
/* 読み込みscss */
/* 読み込みscss */
.contact .wpcf7 {
  width: 80%;
  height: fit-content;
  margin: 0 auto;
  padding: 20px;
  background: #f9f9f9;
  border: 1px solid #04234f;
}
.contact .wpcf7 p {
  margin-bottom: 10px;
}
.contact .wpcf7 p input,
.contact .wpcf7 p textarea {
  border: 1px solid #04234f;
  background-color: #fff;
  width: 100%;
  padding: 10px;
}
.contact .wpcf7 p .wpcf7-submit {
  display: block;
  width: fit-content;
  padding: 5px 10px;
  background-color: #04234f;
  color: #fff;
  margin: 0 auto;
  font-size: 1.4rem;
}

.screen-reader-response,
.wpcf7-response-output,
.wpcf7-not-valid-tip {
  color: #f75454;
}

#wpcf7-f72-o1-ve-your-name,
#wpcf7-f72-o1-ve-your-email {
  display: none;
}

/*　共通css */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

html {
  margin: 0 !important;
  font-size: 10px;
  line-height: 1.5;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #04234f;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #04234f;
  transition: 0.25s ease;
}
a:hover {
  opacity: 0.5;
  transition: 0.25s ease;
}

section {
  padding: 100px 0;
}
section:nth-child(2n) {
  background-color: #f9f9f9;
}

.inner_title {
  font-size: 2.8rem;
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 500px) {
  .inner_title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  section {
    padding: 80px 0;
  }
}
/* トップページ */
/* concept */
.concept {
  background-image: url(../img/pict/pict_first-section1.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: right bottom;
}
.concept .concept_inner {
  text-align: center;
  margin-bottom: 50px;
}
.concept .concept_inner .inner-title {
  line-height: 2;
}
.concept .concept_inner .inner_txt {
  line-height: 2;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .concept .concept_inner .inner_txt {
    font-size: 1.6rem;
    text-align: initial;
  }
  .concept .concept_inner .inner_txt br {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .concept .concept_inner .inner_txt {
    font-size: 1.4rem;
  }
}
/* END / concept */
/* news */
.news {
  color: #04234f;
}
.news .news_inner .news_lists {
  margin-bottom: 50px;
}
.news .news_inner .news_lists .news_list {
  display: flex;
  align-items: center;
  border-top: 1px dashed #04234f;
}
.news .news_inner .news_lists .news_list:last-child {
  border-bottom: 1px dashed #04234f;
}
.news .news_inner .news_lists .news_list a {
  width: 100%;
  height: 100%;
}
.news .news_inner .news_lists .news_list .news_item {
  font-size: 1.6rem;
}
.news .news_inner .news_lists .news_list .news_item:last-child {
  margin-bottom: 0;
}
.news .news_inner .news_lists .news_list .news-title {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .news .news_inner .news_lists .news_list .news_item {
    font-size: 1.4rem;
  }
  .news .news_inner .news_lists .news_list .news-title {
    font-size: 1.4rem;
  }
}
/* END / news */
/* menu */
.menu .menu_inner .menu_block .block_inner {
  margin-bottom: 20px;
}
.menu .menu_inner .menu_block .block_inner:last-child {
  margin-bottom: 0;
}
.menu .menu_inner .menu_block .block_inner .block_inner-title {
  font-size: 2.2rem;
  transform: translate(40px, 20px);
  background-color: #ccc;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 10px 0px;
}
.menu .menu_inner .menu_block .block_inner .menu_lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 30px;
  margin: 0 auto;
  border: 2px solid #04234f;
  border-radius: 10px;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list {
  width: calc(33.3333333333% - 10px);
  padding: 20px;
  border: 1px solid #04234f;
  background-color: #f9f9f9;
  border-radius: 20px;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_title {
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 2rem;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_desc {
  width: fit-content;
  margin: 0 auto 10px;
  font-size: 1.6rem;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_img {
  position: relative;
  width: 100%;
  padding-top: 70.25%;
  height: auto;
  margin-bottom: 10px;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_fee {
  font-size: 1.6rem;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .best {
  position: relative;
}
.menu .menu_inner .menu_block .block_inner .menu_lists .best::before {
  content: "おすすめ！";
  position: absolute;
  top: -13px;
  right: 7px;
  width: 85px;
  border-radius: 50px;
  background-color: #ed8b8b;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2rem;
  padding: 10px 0;
}

@media screen and (max-width: 1024px) {
  .menu .menu_inner .menu_block .block_inner .menu_lists {
    padding: 30px 30px 0;
  }
  .menu .menu_inner .menu_block .block_inner .menu_lists .menu_list {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_title {
    font-size: 1.8rem;
  }
  .menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_desc {
    font-size: 1.4rem;
  }
  .menu .menu_inner .menu_block .block_inner .menu_lists .menu_list .list_txt-block .menu_fee {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 500px) {
  .menu .menu_inner .menu_block .block_inner .block_inner-title {
    font-size: 1.8rem;
    transform: translate(18px, 20px);
  }
  .menu .menu_inner .menu_block .block_inner .menu_lists .menu_list {
    width: 100%;
  }
}
/* END / menu */
/* question */
.question .question_inner .question_lists .question_list {
  border-top: 1px solid #04234f;
}
.question .question_inner .question_lists .question_list:last-child {
  border-bottom: 1px solid #04234f;
}
.question .question_inner .question_lists .question_list .list-item {
  padding: 15px;
  border-bottom: 1px dashed #04234f;
}
.question .question_inner .question_lists .question_list .list-item:last-child {
  border-bottom: none;
}
.question .question_inner .question_lists .question_list .list-item:nth-child(1) {
  font-size: 1.8rem;
}
.question .question_inner .question_lists .question_list .list-item:nth-child(2) {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .question .question_inner .question_lists .question_list .list-item:nth-child(1) {
    font-size: 1.6rem;
  }
  .question .question_inner .question_lists .question_list .list-item:nth-child(2) {
    font-size: 1.4rem;
  }
}
/* END / question */
/* access */
.access .access_inner .access_lists {
  display: flex;
  justify-content: space-between;
}
.access .access_inner .access_lists:last-child {
  margin-top: 20px;
  padding-top: 20px;
  border-top: #04234f 1px dotted;
}
.access .access_inner .access_lists .access_list {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.access .access_inner .access_lists .access_list:last-child {
  margin-right: 0;
}
.access .access_inner .access_lists .access_list:last-child iframe {
  width: 100%;
}
.access .access_inner .access_lists .access_list .list_title {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.access .access_inner .access_lists .access_list address {
  font-size: 1.8rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .access .access_inner .access_lists {
    flex-direction: column;
  }
  .access .access_inner .access_lists .access_list {
    width: 100%;
    margin-bottom: 20px;
  }
  .access .access_inner .access_lists .access_list:last-child {
    margin-bottom: 0;
  }
  .access .access_inner .access_lists .access_list:last-child iframe {
    height: 300px;
  }
  .access .access_inner .access_lists .access_list .list_title {
    font-size: 1.6rem;
  }
  .access .access_inner .access_lists .access_list address {
    font-size: 1.4rem;
  }
}
/* END / access */
/* appoint */
.appoint .appoint_inner {
  /*予約カレンダー*/
}
.appoint .appoint_inner .appoint_block {
  margin-top: 50px;
}
.appoint .appoint_inner .appoint_block .block_txt {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.8rem;
}
.appoint .appoint_inner .appoint_block .block_txt span {
  font-weight: bold;
}
.appoint .appoint_inner .appoint_block .contact_banner_wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .appoint .appoint_inner .appoint_block .contact_banner_wrap {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .appoint .appoint_inner .appoint_block .contact_banner_wrap {
    display: block;
  }
}
.appoint .appoint_inner .appoint_block .contact_banner_wrap .contact_banner_img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .appoint .appoint_inner .appoint_block .contact_banner_wrap .contact_banner_img {
    margin: 0 auto 20px;
    width: 70%;
  }
}
.appoint .appoint_inner .appoint_block .contact_banner_wrap .contact_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .appoint .appoint_inner .appoint_block .contact_banner_wrap .contact_banner_img:last-child {
    margin-bottom: 0;
  }
}

.appoint_lists {
  display: flex;
  margin: 0 auto;
  width: 10%;
}
.appoint_lists .appoint_list {
  width: 100%;
  margin-right: 20px;
}
.appoint_lists .appoint_list:last-child {
  margin-right: 0;
}
.appoint_lists .appoint_list .list_icon {
  width: 100%;
  height: auto;
}
.appoint_lists .appoint_list .list_icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .appoint .appoint_inner .appoint_block .block_txt {
    font-size: 1.6rem;
  }
  .appoint_lists {
    display: flex;
    margin: 0 auto;
    width: 14%;
  }
}
@media screen and (max-width: 500px) {
  .appoint_lists {
    width: 27%;
    max-width: 100px;
  }
}
/* END / appoint */
/* END / トップページ *//*# sourceMappingURL=style.css.map */