@charset "utf-8";
/*+++++++++++++++++++++++++++++++++++++++++
  　root
*+++++++++++++++++++++++++++++++++++++++++*/
:root {
  --white: #ffffff;
  --black: #333333;
  --text-link: #036EB8;

  --category01: #BDEEF5;
  --category02: #6FDCA6;
  --category03: #EAE68E;
  --category04: #FFD2D8;
  --category05: #DFB0D5;
  --category06: #AEC3EA;
  --category07: #B4D681;
  --category08: #FFC977;
  --category09: #FFB3AF;
  --category10: #DCAAAA;

  --gradation-red: linear-gradient(90deg, rgba(255,157,155,0.4) 0%, rgba(203,128,134,1) 67.5%, rgba(203,128,134,1) 73.7%, rgba(203,128,134,1) 100%);
  --gradation-blue: linear-gradient(90deg, rgba(187,255,255,1) 0%, rgba(128,151,171,1) 100%);
  --gradation-mix: linear-gradient(90deg, rgba(208,255,255,1) 0%, rgba(229,199,200,1) 100%);

  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);

  --opacity: 0.7;

  --ff--gothic: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  --ff--serif:  "Noto serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

/*+++++++++++++++++++++++++++++++++++++++++
  　base
*+++++++++++++++++++++++++++++++++++++++++*/
* {
  box-sizing: border-box;
  min-height: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--ff--gothic);
  font-weight: var(--fw-medium);
  color: var(--black);
  background-color: var(--white);
}

main {
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  position: relative;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
  max-width: calc(1240px + 30px);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  flex-shrink: 0;
}

a:hover {
  opacity: var(--opacity);
}

@media (min-width: 901px) {
  .sp_900 {
    display: none!important;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none!important;
  }
}
@media (max-width: 900px) {
  .pc_900 {
    display: none!important;
  }
  .inner.--900 {
    padding: 0;
  }
  .sp_900{
    display: block!important;
  }
  .sp_900.ib{
    display: inline-block!important;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .inner {
    padding: 0;
  }
  .pc {
    display: none!important;
  }
}


/*+++++++++++++++++++++++++++++++++++++++++
  　component
*+++++++++++++++++++++++++++++++++++++++++*/
/* font
=================================*/


/* color
=================================*/

/* style
=================================*/

/* 背景
=================================*/

/* コンテナ
=================================*/

/* flex / Grid
=================================*/

/* ボタン
=================================*/

/* 見出し
=================================*/

/* パンくず
=================================*/

/* ページ内WEB予約ボタン
=================================*/
.page_btn-reserve{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 185px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  background-color: #8F174B;
  color: var(--white);
  border-radius: 9999vh;
}
@media (max-width: 768px) {
  .page_btn-reserve{
    font-size: 12px;
    width: 148px;
    line-height: 31px;
  }
}

/* ページ内PDFリンク
=================================*/
.ly_pdf{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 60px;
}
.ly_pdf img{
  width: 70px;
}
.ly_pdf_link{
  display: flex;
  align-items: center;
  gap: 20px;
  width: fit-content;
}
.ly_pdf_text{
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ly_pdf{
    gap: 20px;
  }
  .ly_pdf_text{
    font-size: 12px;
  }
  .ly_pdf img{
    width: 45px;
  }
}

/* ページ内電話リンク
=================================*/
.tel_link_box{
  width: 100%;
  position: relative;
  font-family: var(--ff--gothic);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.tel_link_inner{
  display: flex;
  align-items: center;
}
.tel_link_block_box{
  gap: 20px;
}
.tel_link_block{
  display: flex;
  align-items: center;
}
.tel_link_box img{
  width: 23px;
}
.tel_link{
  margin-left: 10px;
  flex-shrink: 0;
  font-weight: var(--fw-normal);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 0;
  column-gap: 20px;
}
.tel_link_number{
  font-size: 24px;
  position: relative;
  padding-left: 30px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.tel_link_number::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0,-50%);
  width: 23px;
  height: 26px;
  background-image: url('../images/icon/icon-tel.svg');
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.tel_link_text{
  font-size: 15px;
}
.tel_link_title{
  min-width: fit-content;
  padding: 8px 10px;
  text-align: center;
  font-size: 11px;
  line-height: 1.2;
  border: 1px solid var(--black);
  border-radius: 10px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .tel_link{
    display: block;
  }
  .tel_link_inner{
    max-width: 500px;
    justify-content: center;
  }
  .tel_link_block_box{
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .tel_link_box{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
  .tel_link_number{
    line-height: 1.2;
    display: block;
  }
  .tel_link_number::before{
    width: 20px;
    height: 23px;
  }
  .tel_link_title{
    font-size: 10px;
    padding: 4px 12px;
  }
  .tel_link_add_text{
    margin-top: 15px;
    font-size: 11px;
    text-align: center;
  }
  .tel_link_text{
    font-size: 11px;
  }
}

/* 画像下のcaption
=================================*/
.caption{
  font-family: var(--ff--gothic);
  margin-top: 10px;
  font-size: 13px;
}

/* ヘッダー
=================================*/
/* マスク */
#mask  {
  display: none;
  transition: all .5s;
  z-index: 3;
}
#mask.open  {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: var(--black);
  opacity: .5;
  cursor: pointer;
}

header {
  position: relative;
  z-index: 2;
}
.header_inner {
  padding: 30px 106px 30px 36px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all .7s;
}
.header_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header_logo img {
  width: 184px;
}
.header_btnArea {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
.header_btnBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.header_btn {
  width: 128px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  line-height: 30px;
  letter-spacing: 0.05em;
  border-radius: 9999vh;
  position: relative;
  box-shadow: var(--box-shadow);
}
.header_btn::after {
  content: "";
  position: absolute;
  left: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
.header_btn-reserve {
  padding-left: 49px;
  background-color: #8F174B;
  color: var(--white);
}
.header_btn-reserve::after {
  top: 6px;
  width: 23px;
  height: 18px;
  background-image: url(../images/icon/icon-calendar.svg);
}
.header_btn-contact {
  padding-left: 36px;
  background-color: var(--btn-header-other);
  color: #231815;
}
.header_btn-contact::after {
  top: 8px;
  width: 14px;
  height: 16px;
  background-image: url(../images/icon/icon-tel.svg);
}
.header_bg{
  background-color: rgba(255,255,255,1);
}

/* ハンバーガーメニュー */
.hamburger{
  display: block;
  cursor: pointer;
  width: 38px;
  height: 30px;
  position: fixed;
  top: 32px;
  right: 40px;
  z-index: 10;
}
.hamburger span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--black);
}
.hamburger span:nth-of-type(2) {
  top: 14px;
}
.hamburger span:nth-of-type(3) {
  top: auto;
  bottom: 0;
}
.hamburger.open span:nth-of-type(1) {
  top: 10px;
  transform: translateY(6px) rotate(-45deg);
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3){
  top: 22px;
  transform: translateY(-6px) rotate(45deg);
}

/* メニュー */
#navArea.open .header_nav {
  right: 0;
  opacity: 1;
}

.header_nav_list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.header_nav_list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}
.header_nav_list li img {
  width: 40px;
  height: auto;
}

.header_nav_btn {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.header_nav_btn .header_btn {
  width: 226px;
  line-height: 43px;
  font-size: 17px;
}
.header_nav_btn .header_btn-reserve {
  padding-left: 88px;
  border: 2px solid #8F174B;
}
.header_nav_btn .header_btn-reserve::after {
  width: 31px;
  height: 24px;
  top: 10px;
  left: 18px;
}
.header_nav_btn .header_btn-contact {
  padding-left: 70px;
  border: 2px solid #D9D9D9;
  box-shadow: none;
}
.header_nav_btn .header_btn-contact::after {
  width: 20px;
  height: 22px;
  top: 11px;
  left: 21px;
}
@media (min-width: 1920px) {
  .hamburger {
    right: calc(((100vw - 1920px)/2) + 40px);
  }
  .header_nav {
    width: calc(((100vw - 1920px)/2) + 330px);
  }
}
@media (max-width: 767px) {
  .header_inner {
    padding-left: 16px;
  }
  .header_logo {
    width: 132px;
  }
  .header_bg{
    background-color: rgba(255,255,255,0.7);
  }

  /* ハンバーガーメニュー */
  .hamburger{
    width: 34px;
    height: 26px;
    right: 25px;
  }
  .hamburger span{
    height: 1px;
  }
  .hamburger span:nth-of-type(2) {
    top: 13px;
  }

  /* メニュー */
  .header_nav {
    padding: 75px 30px 65px 50px;
    width: 100%;
  }
  .header_nav_list {
    gap: 8px;
  }
  .header_nav_btn {
    gap: 15px;
  }
  .header_nav_btn .header_btn {
    width: 184px;
    line-height: 34px;
    font-size: 13px;
  }
  .header_nav_btn .header_btn-reserve {
    padding-left: 72px;
  }
  .header_nav_btn .header_btn-reserve::after {
    width: 25px;
    height: 19px;
    top: 8px;
    left: 15px;
  }
  .header_nav_btn .header_btn-contact {
    padding-left: 59px;
  }
  .header_nav_btn .header_btn-contact::after {
    width: 15px;
    height: 17px;
    top: 9px;
    left: 18px;
  }
}

/* ---- ヘッダースクロール ---- */
.js-header_scroll{
  background-color: rgba(255,255,255,1);
}
@media (max-width: 768px){
  .js-header_scroll{
    background-color: rgba(255,255,255,0.7);
  }
}

/* フッター
=================================*/
footer {
  margin-top: 50px;
  margin-bottom: 25px;
}
.footer_inner {
  margin: 0 auto;
  padding: 0 30px;
  max-width: calc(1130px + 60px);
  display: grid;
  grid-template-columns: 140px 22.5% 1fr;
  gap: 3%;
}
.footer_logo img {
  max-width: 140px;
}
.footer_address {
  font-size: 13px;
  line-height: 2.0;
}
.footer_menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
  font-size: 13px;
}
.footer_menu_list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer_menu_list a {
  padding: 3px 0;
  position: relative;
}
.footer_menu_list a::before {
  content: "＞";
  font-size: 13px;
}
.copyright {
  margin-top: 46px;
  text-align: center;
  font-size: 12px;
}
@media (max-width: 768px) {
/* @media (max-width: 900px) { */
  footer {
    margin-top: 38px;
    margin-bottom: 22px;
  }
  .footer_inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer_address {
    font-size: 14px;
  }
  .footer_menu {
    display: grid;
    grid-template-columns: 58% 1fr;
    gap: 18px;
    font-size: 11px;
  }
  .footer_menu_list {
    gap: 8px;
  }
  .footer_menu_list a::before {
    content: "＞";
    font-size: 12px;
  }
  .copyright {
    margin-top: 47px;
    font-size: 9px;
  }
}



/*+++++++++++++++++++++++++++++++++++++++++
  下層ページ共通
*+++++++++++++++++++++++++++++++++++++++++*/

/*+++++++++++++++++++++++++++++++++++++++++
  テキストリンク（青色）
*+++++++++++++++++++++++++++++++++++++++++*/
.text-link{
  color: var(--text-link);
  text-decoration: underline;
}

/*+++++++++++++++++++++++++++++++++++++++++
  固定ページ
*+++++++++++++++++++++++++++++++++++++++++*/
/* パンくずとの余白調整 */
.page_main{
  margin-top: 10px;
}
/* コンテンツエリア */
.page_content{
  margin-left: auto;
  margin-right: auto;
  padding-left: 45px;
  padding-right: 45px;
}
/* メインビジュアル */
.page_mv_box{
  position: relative;
}
.page_title{
  font-size: 17px;
  line-height: 1.2;
}
.page_deco{
  font-weight: var(--fw-bold);
  font-family: var(--ff--gothic);
  position: absolute;
  bottom: 0;
  padding: 20px 40px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-top-right-radius: 10px;
  background-color: var(--white);
}
.page_deco img{
  width: 30px;
}
@media (max-width: 768px) {
  .page_content{
    padding-left: 0;
    padding-right: 0;
  }
  .page_title{
    font-size: 12px;
  }
  .page_deco{
    width: auto;
    padding: 12px 30px;
    bottom: -1px;
  }
  .page_deco img{
    width: 27px;
  }
}





/*+++++++++++++++++++++++++++++++++++++++++
  岡崎追加
*+++++++++++++++++++++++++++++++++++++++++*/
:root{
  --btn-header-other: #f7f7f7;
}

.header_btn-contact-top{
  background-color: var(--white);
}

/*+++++++++++++++++++++++++++++++++++++++++
  区切り線
*+++++++++++++++++++++++++++++++++++++++++*/
.hr{
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  max-width: 1078px;
  padding: 0 20px;
  border-top-width: 2px;
  border-style: solid;
  border-image: linear-gradient(to right, #9DBFFF, #DD9FA1) 1;
}

/*+++++++++++++++++++++++++++++++++++++++++
  ヘッダー
*+++++++++++++++++++++++++++++++++++++++++*/
.header_nav {
  padding: 100px 40px 150px 40px;
  display: block;
  position: fixed;
  top: 0;
  right: -1800px;
  bottom: 0;
  width: 380px;
  background: var(--white);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.8s;
  opacity: 0;
  z-index: 9;
}
.header_nav_btn .header_btn-contact{
  background-color: var(--white);
}

/*+++++++++++++++++++++++++++++++++++++++++
  フッター
*+++++++++++++++++++++++++++++++++++++++++*/
.footer_menu .footer_menu_list.pc {
  padding-left: 15%;
}
@media (max-width: 900px) {
  .footer_menu .footer_menu_list.pc {
    padding-left: 0;
  }
}