@charset "UTF-8";
@import url("grid.css");

:root {
  /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #fff0f5;
  --border-color: #ffb2cb;
  --white-color: #fff;
  --nav-color: #333;
}
body {
  margin: 0px 0 0 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff0f5;
}

img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}
a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
}
a:hover {
  color: var(--linkhover-color);
}
h2 {
  position: relative;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  text-align: center;
}
h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--link-color);
}
.button {
  margin: 1rem;
}

/*ヘッダー
-------------------------------------*/
.header {
  display: flex;
  flex-direction: row;
  padding: 2rem 0 0 0;
  margin-bottom: 2rem;
}
.sitetitle {
  font-size: 3rem;
}
.header-box {
  margin-left: auto;
  margin-top: 8px;
}
.contact-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  width: 200px;
  font-size: 16px;
  text-decoration: none;
  background-color: var(--link-color);
  color: var(--white-color);
  box-shadow: 1px 1px var(--base-color);
}
.contact-button::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white-color);
  border-right: 2px solid var(--white-color);
  transform: rotate(45deg);
}
.contact-button:hover {
  opacity: 0.9;
  color: var(--white-color);
}

/*メインコンテンツ
-------------------------------------*/
main {
  margin: 5rem 0 0 0;
}

section {
  margin: 3rem 0;
  padding: 3rem 0;
}
.gray-back {
  background-color: var(--back-color);
  /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
  background-size: cover;
}

/* スマホ用メニューの固定設定 */
@media screen and (max-width: 768px) {
  #navi {
    display: none; /* 初期非表示 */
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #ffdbe7; /* 背景色を設定 */
    z-index: 200; /* 高い値を設定して他の要素より上に表示 */
    padding: 1rem 0;
    box-shadow: 0 2px 8px #FFDBE7(0, 0, 0, 0.3); /* メニューの影を追加 */
  }

  /* スマホ用メニューアイテムのスタイル */
  #navi ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  #navi li {
    margin: 0.5rem 0;
  }

  #navi a {
    color: #000;
    /*text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff,
      1px -1px 0 #fff, 0px 1px 0 #fff, 0-1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;*/
    text-decoration: none;
    font-size: 18px;
    padding: 0.5rem 1rem;
    display: block;
  }

  #navi a:hover {
    background-color: var(--linkhover-color);
  }

  /* メニューボタンのスタイル */
  #open {
    display: block;
    position: fixed;
    top: 1rem; /* ボタンの垂直位置 */
    right: 1rem; /* ボタンの水平位置 */
    width: 50px;
    height: 50px;
    background-color: #ffb2cb; /* ボタンの背景色 */
    color: #fff; /* ボタンの文字色 */
    font-size: 0.8rem; /* 文字サイズ */
    text-align: center;
    line-height: 50px; /* ボタンの高さと一致させて垂直方向を中央揃え */
    border-radius: 50%; /* 丸いボタン */
    z-index: 300; /* メニューより上に配置 */
    border: none;
    cursor: pointer;
  }

  #close {
    display: none;
    position: fixed;
    top: 1rem; /* ボタンの垂直位置 */
    right: 1rem; /* ボタンの水平位置 */
    width: 50px;
    height: 50px;
    background-color: #ffb2cb; /* ボタンの背景色 */
    color: #fff; /* ボタンの文字色 */
    font-size: 0.8rem; /* 文字サイズ */
    text-align: center;
    line-height: 50px; /* ボタンの高さと一致させて垂直方向を中央揃え */
    border-radius: 50%; /* 丸いボタン */
    z-index: 300;
    border: none;
    cursor: pointer;
  }

  /* メニューボタンに文字を追加 */
  #open::before {
    content: "メニュー"; /* 開くボタンに表示する文字 */
    color: white; /* 文字色 */
    font-size: 0.8rem; /* 文字サイズ */
    display: inline-block; /* インラインブロック要素にする */
    width: 100%; /* ボタン全体の幅を占める */
    text-align: center; /* 水平方向の中央揃え */
    line-height: 50px; /* ボタンの高さと一致させて垂直方向を中央揃え */
  }

  #close::before {
    content: "閉じる"; /* 閉じるボタンに表示する文字 */
    color: white; /* 文字色 */
    font-size: 0.8rem; /* 文字サイズ */
    display: inline-block; /* インラインブロック要素にする */
    width: 100%; /* ボタン全体の幅を占める */
    text-align: center; /* 水平方向の中央揃え */
    line-height: 50px; /* ボタンの高さと一致させて垂直方向を中央揃え */
  }

  /* スマホ表示用 */
  #navi.open {
    display: block; /* メニューを表示 */
  }

  #open.open {
    display: none; /* 開くボタンを非表示 */
  }

  #close.open {
    display: block; /* 閉じるボタンを表示 */
  }

  /* 入力フィールドをタイトルの下に配置 */
  .contact-row {
    display: flex;
    flex-direction: column; /* 縦方向に配置 */
    margin-bottom: 1.5rem;
  }

  .contact-row label {
    font-size: 1rem;
    margin-bottom: 0.5rem; /* タイトルと入力欄の間隔 */
    text-align: left; /* ラベルを左寄せ */
  }

  .contact-row input,
  .contact-row textarea {
    width: 100%; /* 入力欄を100%幅に */
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box; /* パディングを含めた幅を計算 */
  }

  /* スマホ対応（幅768px以下） */
  .contact-row {
    margin-bottom: 1rem; /* スマホでは間隔を少し狭く */
  }

  .contact-row label {
    font-size: 0.9rem; /* ラベルのフォントサイズを少し小さく */
    margin-bottom: 0.4rem; /* ラベルと入力欄の間隔を調整 */
    text-align: left; /* ラベルを左寄せ */
  }

  .contact-row input,
  .contact-row textarea {
    font-size: 0.9rem; /* 入力欄のフォントサイズを少し小さく */
    padding: 0.7rem; /* パディングを調整 */
  }

  .contact-row textarea {
    min-height: 100px; /* テキストエリアの高さを調整 */
  }
}

/*メイン画像
-------------------------------------*/
#mainimg {
  width: 100%;
}
#mainimg h1 {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 2;
  text-align: center;
  color: var(--white-color);
  text-shadow: 1px 2px 3px var(--link-color);
}

/*ニュース
-------------------------------------*/
.news {
  margin: 0 auto;
  max-width: 980px;
  padding: 2rem;
}
.news-list {
  list-style: none;
}
.news-list .item,
.item p {
  margin-bottom: 0;
}
.news-list .item a {
  display: flex;
  flex-wrap: wrap;
  color: var(--nav-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}
.news-list .item:first-child a {
  border-top: 1px solid var(--border-color);
}
.news-list .item .date {
  min-width: 120px;
  color: var(--link-color);
}
.news-list .item a:hover .title {
  color: var(--base-color);
}

/*キャッチコピー
-------------------------------------*/
.catch {
  text-align: center;
  line-height: 1.7;
}
.center {
  text-align: center;
  margin-bottom: 4rem;
}

/*フッター
-------------------------------------*/
footer {
  background-color: #ffdbe7;
  /*background: url('../img/gray-back.jpg'); gray-back.jpg背景画像を使用したい時にオンにしてください*/
  background-size: cover;
  padding: 5rem 0;
}
footer h4 {
  position: relative;
  padding-bottom: 1rem;
  width: 100%;
  border-bottom: 2px solid var(--border-color);
}
footer h4::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 70px;
  height: 2px;
  background-color: var(--link-color);
}
/*電話
-------------------------------------*/
a.tel {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    /* PC時は電話番号無効 */
    pointer-events: none;
    cursor: default;
  }
}

/* お問い合わせフォーム全体のスタイル */
.contact-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: #fff0f5;

  border-radius: 10px;
}

.contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-row label {
  flex: 0 0 20%;
  font-weight: bold;
  margin-right: 1rem;
}

.contact-row input,
.contact-row textarea {
  flex: 1;
  padding: 1rem;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  /* 確認ボタン */
  display: block;
  margin: 0 auto;
  padding: 1rem 2rem;
  background-color: #ff7eb3;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.button11 {
  display: flex; /* フレックスボックスで中央揃え */
  justify-content: center; /* 水平方向の中央揃え */
  align-items: center; /* 垂直方向の中央揃え */
  margin: 20px auto;
  padding: 1rem 2.5rem;
  background: linear-gradient(
    90deg,
    #ffc1e3,
    #ffd6eb
  ); /* 淡いピンクのグラデーション */
  color: #fff; /* 白文字 */
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center; /* テキスト中央揃え */
  border: none;
  border-radius: 30px; /* 丸みを帯びた形状 */
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ボタンの影 */
  transition: all 0.3s ease; /* アニメーション効果 */
}

.button11:hover {
  background: linear-gradient(
    90deg,
    #ffa8d1,
    #ffbddc
  ); /* ホバー時の少し濃いピンクのグラデーション */
  transform: translateY(-3px); /* 浮き上がる効果 */
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2); /* 影を強調 */
}

.button11:active {
  transform: translateY(2px); /* 押されたときに沈む効果 */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2); /* 押されたときの影 */
}

@keyframes light {
  100% {
    outline-color: transparent;
    outline-offset: 10px;
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .contact-box {
    padding: 2rem; /* 内側の余白を調整 */
    margin: 1rem; /* 外側の余白を調整 */
  }

  input[type="email"],
  input[type="number"],
  input[type="search"],
  input[type="text"],
  input[type="tel"],
  input[type="url"],
  input[type="password"],
  textarea {
    font-size: 0.9rem; /* フォントサイズを小さく */
    padding: 0.7rem; /* 内側の余白を調整 */
  }

  button {
    font-size: 1rem; /* ボタンのフォントサイズを調整 */
    padding: 0.8rem 1.2rem; /* ボタンの余白を調整 */
  }
}

/*コピーライト
-------------------------------------*/
/* コピーライトのスタイル */
.copyright {
  text-align: center;
  padding: 1rem 0;
  background-color: #ffb2cb;
  color: var(--white-color);
  font-size: 0.9rem;
}

.copyright a {
  font-size: 15px;
  color: var(--white-color);
  text-decoration: none;
  display: inline;
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: block;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  background: var(--white-color);
  border: 1px solid var(--linkhover-color);
  padding-top: 30px;
  text-align: center;
  text-decoration: none;
  opacity: 0.8;
}
#pagetop::after {
  content: "";
  display: block;
  border-top: 2px solid var(--base-color);
  border-right: 2px solid var(--base-color);
  width: 25%;
  height: 25%;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: rotate(-45deg);
}
#pagetop:hover {
  opacity: 0.5;
}

/* 下層ページヘッダー
-------------------------------------*/
.subimg {
  height: 350px;
  background: url("../img/subimg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 2rem;
}
.subimg h1 {
  height: 350px;
  line-height: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
  text-shadow: 1px 2px 3px var(--link-color);
  margin: 0;
}
/* パンくずリスト
-----------------------------------*/
.breadcrumb {
  margin: 0 0 1em 0;
  padding: 0;
}
.breadcrumb li {
  list-style-type: none;
}
.breadcrumb li a {
  display: inline-block;
  color: var(--link-color);
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px) {
  /*ヘッダー
-------------------------------------*/
  .header-box {
    display: none;
  }

  /*メイン画像
-------------------------------------*/
  #mainimg h1 {
    width: 100%;
    height: 350px;
  }
  /*ニュース
-------------------------------------*/
  .news-list .item .title {
    margin-top: 1em;
  }
  /*お問い合わせ
-------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }
  .table td {
    display: block;
  }
}

/* 文字グラデーション */

.font_g_i {
  display: inline-block;
  font-size: 34px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #800afc 0%,
    #f102db 40%,
    #fd086f 80%,
    #fe8702 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.img_slider {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* メニュー固定 */
.fix-01 {
  background: #fff0f5; /* 背景色 */
  box-shadow: 0 2px 8px rgba(30, 30, 80, 0.3); /* 影。不要なら削除 */
  left: 0;
  line-height: 1;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  padding: 1rem;
}

/* 左固定アンカーメニュー */

@media screen and (min-width: 768px) {
  /* ヘッダーメインスライドショー */
  .section-2 {
    margin-left: 200px;
    margin-bottom: 0px;
    padding: 0px;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 200px; /* メニューの幅 */
    height: 100%; /* 画面全体の高さ */
    background-color: #ffb2cb;
    color: white;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* コンテンツが多い場合のスクロール対応 */
  }

  nav a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }

  nav a:hover {
    background-color: #ffdbe7;
  }

  /* コンテンツエリア */
  main {
    margin-left: 220px; /* メニューの幅 + スペース */
    padding: 20px;
  }
}

section {
  margin-bottom: 50px;
  padding: 20px;
  border: 2px solid #ffb2cb;
  border-radius: 5px;
  background: #fff0f5;
}

section h2 {
  margin: 0;
}

/* スライダー全体 */
.slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
}

/* スライドの画像 */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ナビゲーションボタン */
button.prev,
button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* cms新着情報 */
/* CSSは必要最低限しか指定してませんのでお好みで（もちろん外部化OK） */

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* for macIE \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

ul#newsList {
  margin: 0 0 15px;
  padding: 0;
  font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}

ul#newsList li {
  color: #666;
  font-size: 12px;
  margin: 0;
  padding: 5px 0;
  margin-bottom: 3px;
  border-bottom: 1px dotted #ccc;
  line-height: 120%;
  list-style-type: none;
}

a {
  color: #36f;
  text-decoration: underline;
}

a:hover {
  color: #ffb2cb;
  text-decoration: none;
}

/* お知らせ */
.catName {
  display: inline-block;
  padding: 3px 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 18px;
  line-height: 100%;
  margin: 0 2px;
}

/* お知らせ日付 */
.up_ymd {
  text-align: right;
  font-size: 20px;
  margin: 5px 10px;
}

/* お知らせタイトル */
.title {
  font-size: 20px;
  margin: 5px 10px;
}

.newMark {
  display: inline-block;
  border: 1px solid #f00;
  padding: 10px 4px;
  font-size: 15px;
  line-height: 100%;
  background: #f00;
  color: #fff;
  box-shadow: 1px 1px 1px #999;
  border-radius: 8px;
  font-style: italic;
}

.comment {
  display: block;
  padding: 3px 0;
  float: left;
  overflow: hidden;
  width: 500px;
  /* 本文部分の幅。ここは特に設置ページ合わせて変更下さい */
}

.thumbNailWrap {
  display: block;
  width: 110px;
  float: left;
  height: 80px;
  overflow: hidden;
}

/* Pager style（外部化可） */
.pager {
  text-align: right;
  padding: 10px;
  clear: both;
}

/*ページャーボタン*/
.pager a {
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #333;
  font-size: 12px;
  padding: 3px 7px 2px;
  text-decoration: none;
  margin: 0 1px;
}

/*現在のページのボタン*/
.pager a.current {
  background: #999;
  border: 1px solid #999;
  border-radius: 5px 5px 5px 5px;
  color: #fff;
  font-size: 12px;
  padding: 3px 7px 2px;
  margin: 0 1px;
  text-decoration: none;
}

.pager a:hover {
  background: #999;
  color: #fff;
}

.overPagerPattern {
  padding: 0 2px;
}
/* /Pager style */

/*  */
