/* css reset */
@charset "utf-8";
html, body, div, span, i, iframe,
h1, h2, h3, h4, h5, h6, p, img, a,
ol, ul, li, form, label, button,
table, tbody, tfoot, thead, tr, th, td,
article,footer, header, menu, nav, section {
  border: none;
  outline: none;
  appearance: none;
  margin: 0;/*デフォルトで設定されているらしい8pxの余白を削除する*/
  padding: 0;
  background: transparent;
  list-style: none;
  text-decoration: none;
  vertical-align: baseline;
}
/* 共通CSS */
html {
  box-sizing: border-box;/* autoにpadding等も含めて100%にしてくれる */
  font-family: sans-serif;
  overflow: hidden; /*要素がなくても見える幅の余白を消す*/
}
body {
  display: grid;
  /* grid-template-rows: auto 1fr auto; */
  grid-template-rows: auto 1fr;
  /* フッターも常に最下部に表示したければこの表記、フッターはコンテンツの一番下に配置したいのでmainに入れたが、今度はコンテンツ埋めをしてくれない */
  grid-template-columns: 100%;
  min-height: 100vh;
  /* min-height: inherit; */
  /* inheritは親要素と同じcssが反映される、iphone等でcss効かない時にも役立つ？ */
  height: 100vh;
  /* width: 100vw; */
  /*なぜかmin適用されない、overflowが効かなくなる*/
}
main {
  /* flex: 1;  */
  /*コンテンツが少ない時メインで空白を埋める*/
  overflow-y: scroll;
}
a {
  color: black;
  text-decoration: none;
}
img {
  pointer-events: none;
}
.cover img {
  object-fit: cover;
}
.contain img {
  object-fit: contain;
}
/* ウォーターマーク　ここから */
.protect {
  position: relative;
  margin: auto;
}
.watermark {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url(img/watermark.png) no-repeat;
  background-position: center;
  background-size: contain;
  opacity: .8;
}
/* ウォーターマーク　ここまで */

/*-------------------------------------------
文字　設定　ここから
-------------------------------------------*/
/*------- 書体　設定　ここから -------*/
.academy {
  font-family: 'AcademyEngravedLetPlain', 'Times New Roman',sans-serif;
}
/* 文字位置設定　ここから */
.tc {
  text-align: center;
}
.tl {
  text-align: left;
}
.tr {
  text-align: right;
}
.color1 {
  color: lightgrey;
}
.color2 {
  color: goldenrod;
}
.YuMincho {
  color: goldenrod;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  font-size: 3vmin;
  margin: .5em auto 0;
}
/* h設定 */
h1 {
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  font-size: 140%;
  font-weight: normal;
  margin: 1em;
  letter-spacing: .1em;
}
h2,h3,h4 {
  margin: 1em;
  text-align: center;
}
.h2 {
  font-size: 130%;
  font-weight: normal;
}
h3 {
  font-size: 120%;
  font-weight: normal;
}
.f80 {
  font-size: 80%;
}
.f60 {
  font-size: 60%;
}
@media(max-width: 700px) {
  .mf80 {
    font-size: 80%;
  }
}
.head1wrap {
  font-family: 'EB Garamond','Georgia','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  font-size: 5vmin;
  margin: 2em auto 1em;
  letter-spacing: .5em;
  text-align: center;
}
.head1wrap h2 {
  color: gray;
  font-size: 3vmin;
  letter-spacing: .3em;
  padding: .5em;
}
/* テキストを左揃えにしつつ中央寄せ */
.lefttxt {
  margin: 1em auto;
  text-align: center;
}
.lefttxt p {
  display: inline-block;
  padding: .5em;
  text-align: left;
}
/* 文字制限をはみ出したら...になる */
.ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* ここを2や3に変更することで、行数を指定 */
  max-height: calc(1.5em * 2); /* ここも変更 */
  min-width: 0
}
/* 下線 */
.bb1 {
  border-bottom: .5px solid rgba(0, 0, 0, 0.3);
}
.bb2 ul {
  border-bottom: .5px solid rgba(0, 0, 0, 0.3);
}
.fitbb1 {
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  background-image: linear-gradient(rgba(0 0 0 / 0) 90%, red 90%);
}
.titleborder {
  border-top: solid 1px lightgrey;
  border-bottom: solid 1px lightgrey;
  font-size: 1.5em;
  font-weight: bold;
}
/* シャープな線を引く */
.symmetry3 {
  align-items: center;
  display: flex;
  text-align: center;
}
.symmetry3:before,
.symmetry3:after {
  content: "";
  flex-grow: 1;
  height: 1.2px;
  background: #000;
  margin:0 2em;
}
.symmetry3:before {
  background: linear-gradient(-90deg, #ffaaaa, transparent);
}
.symmetry3:after {
  background: linear-gradient(90deg, #ffaaaa, transparent);
}

/*テキストが跳ねるアニメーションの記述*/
.bounce {
  animation: bounce 2s infinite;/*slideinが3秒かけてアニメーション、無限ループ*/
}
@keyframes bounce {
  /*テキストが跳ねる変化を記述*/
  0% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
  100% {transform: translateY(0);}
}
/*-------------------------------------------
余白設定ここから
-------------------------------------------*/
.w100 {
  width: 100%;
  height: auto;
}
.w90 ,.w90 img {
  margin: auto;
  max-width: 1000px;
  width: 90%;
}
.w80 ,.w80 img {
  margin: auto;
  max-width: 1000px;
  width: 80%;
}
.pg1 {
  padding: 1vw;
}
.pg3 {
  padding: 3vw;
}
.pg5 {
  padding: 5vw;
}
.mga {
  margin: auto;
}
.mg1a {
  margin: 1em auto;
}
.mg3 {
  margin: 3vw;
}
.mg5 {
  margin: 5vw;
}
@media (max-width: 736px) {
  .w80 {
    width: 95%;
  }
}
/*-------------------------------------------
枠設定ここから
-------------------------------------------*/
/* 背景色 ここから */
.bgc1 {
  background-color: #ebeced;
}
/* ボーダー枠 ここから */
.bordergray {
  border: 1px double lightgray;
  /* align-items: center;
  display: flex;
  justify-content: center; */
}
/* すりガラス風背景枠 ここから */
.blur {
  backdrop-filter: blur(12px);
  box-shadow: rgba(224, 222, 222, 0.7) 0px 0px 1em;
  border-radius: 5px; /* 角を丸くしたい場合のみ */
  -webkit-backdrop-filter: blur(24px);
}
.clearwhite {
  background-color: rgba(255, 255, 255, 0.7);
}
/* 左上に斜め帯を配置したカード */
.flame8 {
  position: relative;
  padding: 1em;
  box-shadow: 0 0 10px #ccc;
  margin: 1em auto;
}
.flame8::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(135deg, lightgray 0 1.8rem, transparent 1.8rem);
  content: '';
}
.flame8::after {
  position: absolute;
  top: 1.1em;
  left: -.2em;
  color: white;
  font-size: 70%;
  transform: rotate(-45deg);
  text-transform: uppercase;
  text-align: center;
  content: attr(data-title);
}
.flame8 h4 {
  margin: 0; 
  padding: 1em;
}
.flame8 p {
  margin: .3em 1em; 
}
/* 左上に斜め帯を配置したカード */

/* ボーダー枠二重線 ここから */
.borderflame2 {
  background:#fff;
  box-shadow:0 0 0 8px #fff,0px 0px 18px rgba(0,0,0,0.3) ;
  border: 1px solid #333;
  padding: 1em;
  margin: 1em auto;
  max-width: 1000px;
  width: 95%;
}
.borderflame2 .title {
  background-color:whitesmoke;
  color: rgba(0,0,0,0.2);
  font-family: 'EB Garamond','Georgia' , sans-serif;
  font-size: 3vmin;
  font-weight: bold;
  display:block;
  letter-spacing: .3em;
  line-height: 2;
  margin-top: -4px;
  text-align: center;
}

/*-- 飾り枠　ヨーロピアン　ここから --*/
.european {
  max-width: 80%;
  margin: 2em auto;
  padding: 2em;
  position: relative;
  text-align: center;
}
.european::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background:
  radial-gradient(circle at top left, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) left top / 23px 23px no-repeat,
  radial-gradient(circle at top right, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) right top / 23px 23px no-repeat,
  radial-gradient(circle at bottom left, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) left bottom / 23px 23px no-repeat,
  radial-gradient(circle at bottom right, transparent 20px, #ca4 20px, #ca4 23px, transparent 23px) right bottom / 23px 23px no-repeat,
  linear-gradient(90deg, transparent 20px, #ca4 23px) left top / 51% 3px no-repeat,
  linear-gradient(-90deg, transparent 20px, #ca4 23px) right top / 51% 3px no-repeat,
  linear-gradient(90deg, transparent 20px, #ca4 23px) left bottom / 51% 3px no-repeat,
  linear-gradient(-90deg, transparent 20px, #ca4 23px) right bottom / 51% 3px no-repeat,
  linear-gradient(180deg, transparent 20px, #ca4 23px) left top / 3px 51% no-repeat,
  linear-gradient(0deg, transparent 20px, #ca4 23px) left bottom / 3px 51% no-repeat,
  linear-gradient(180deg, transparent 20px, #ca4 23px) right top / 3px 51% no-repeat,
  linear-gradient(0deg, transparent 20px, #ca4 23px) right bottom / 3px 51% no-repeat;
}
.european::after {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  content: "";
  box-shadow: 0 0 0 1px #ca4;
}
/*-- 飾り枠　ヨーロピアン　ここまで --*/

/* 三角吹き出し　枠のみ　ここから */
.triangle1 {
  align-items: center;
  background-color: white;
  border: 1px solid lightgrey;
  display: flex;
  justify-content: center;
  padding-top: 2em;
  position: relative;
  /* margin: 1em auto; */
  text-align: center;
}
.triangle1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 48%;
  bottom: -16px;
  border-top: 15px solid lightgrey;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  z-index: 1;
}
.triangle1::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 48%;
  bottom: -14px;
  border-top: 15px solid white;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  z-index: 2;
}
.triangle1 img {
  height: 200px;
  object-fit: contain;
}
/* 三角吹き出し　枠のみ　ここまで */
/* もこもこ吹き出し */
.fukidasi1 {
  position: relative;
  padding: 1rem .5em 3em 10em;
  border-radius: 50%;
  box-shadow: 1rem -2rem whitesmoke;
  background-color: whitesmoke;
  margin: 5em auto;
  line-height: 1.5;
  text-align: center;
  width: 60%;
  z-index: -1;
}
.fukidasi1::before {
  position: absolute;
  content: '';
  top: 85%;
  left: 40%;
  width: 40px;
  height: 40px;
  background-color: whitesmoke;
  border-radius: 50% 50% 50% 50% / 0% 0% 100% 100%;
  transform: rotate(-30deg);
}
/* もこもこ吹き出し */

/* テープ風1 タイトルあり */
.tape1 {
  background-color: #ffffcc; /*BOX背景色*/ 
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  position:relative;
  padding: 30px 20px 20px;
  margin: 3em auto;
  transform:rotate(-1deg);
  width: 80%;
}
.tape1 .title {
  /* background-color: rgba(245, 245, 245, 0.5);  */ /*テープ背景色 白*/ 
  background-color: rgba(204, 204, 187, 0.2); /*テープ背景色 グレー*/ 
  border-left: 3px dotted rgba(0,0,0,.1);
  border-right: 3px dotted rgba(0,0,0,.1);
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  position: absolute;
  top: -20px;
  left: 30px;
  padding: 4px 20px;
  line-height: 2.2;
  text-align: center;
  transform: rotate(-2.5deg);
  height: 28px;
  width: auto;
}
/* テープ風1 タイトルあり */
/*-------------------------------------------
flex設定ここから
-------------------------------------------*/
/*------- flex設定　ここから -------*/
.flexbase , .flexbase1 {
  display: flex;
}
.flexbaseinline {
  display: inline-flex;
}
.flexbase div , .flexbase1 div,
.flexbase a , .flexbase1 a , .flexbase13 ul {
  align-items: center;
  display: flex;
  justify-content: center;
  /* margin: 1em; */
  list-style: none;
  /* width: 80%; */
}
.flexbase img , .flexbase1 img {
  height: 90%;
  width: 90%;
}
.flexbase .column , .flexbase1 .column , 
.flexbase13 li{
  flex-direction: column;
}
.flexbase13 ul {
  padding: 2%;
  margin: 1% auto;
  width: 90%;
}
.flexbase13 li {
  align-items: center;
  display: flex;
  justify-content: center;
}
.flexbase13 li:nth-child(odd) {/** 3nにすると3の倍数の要素を指定 **/
  flex: 1;
  /* padding: .5em; */
}
.flexbase13 li:nth-child(even) {
  flex: 3;
}
@media screen and (max-width: 728px) {
  .flexbase1 , .flexbase1 div,
  .flexbase1 a , 
  .flexbase13 ul {
    flex-direction: column;
  }
}
/*-------------------------------------------
カード設定ここから
-------------------------------------------*/
.cardwrap {
  box-sizing: border-box;/* autoにpadding等も含めて100%にしてくれる */
  display: grid;
  gap: 1em;
  margin: 1em auto;
}
.cardsizec {
  grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
}
.cardsize1 {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}/* iphoneだと170pxが横に並ぶ最大 */
.cardsize2 {
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
.cardsize3 {
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
}
.cardsize4 {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.cardsize13 {
  grid-template-columns: repeat(auto-fit, minmax(20vw, auto));
}
@media screen and (max-width: 768px) {
  .cardsizec,.cardsize13 {
    grid-template-columns: repeat(auto-fit, minmax(90%, 1fr));
  }
}
.cardwrap .card {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: .5em auto;
  width: 90%;
}
.cardwrap p {
  margin: 1em auto;
}
.cardwrap .card img {
  width: 100%;
}
.shadow .card {
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}
.cardimg1 img {
  height: 200px;
  width: 80%;
}
.cardimg2 img {
  height: 20vmax;
  width: 20vmax;
}
.img1 img {
  height: 200px;
}
.img2 img {
  height: 40vh;
  width: 100%;
}
.img3 img {
  height: 30vh;
  width: 40vw;
}
.img30h img {
  height: 30%;
}
.cardsize2 img {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .img30h img {
    height: 50vh;
  }
}
.cardwrap .title {
  text-align: center;
}
.cardwrap .cont {
  flex: 1;
  width: 100%;
}
.cardwrap .cardend {
  align-items: flex-end;
  margin-bottom: 0;
}
/* 丸アイコン */
.card1radius {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.card1radius .title {
  margin: 0;
}
.card1radius .cont {
  flex: 1;
  margin: 0;
}
.card1radius .img img {
  border-radius: 50%;
  height: 80px;
  object-fit: cover;
  width: 80px;
}
/*------- cardの中身　ここまで -------*/
/*-------------------------------------------
リスト・テーブル設定ここから
-------------------------------------------*/
/* 説明用ミニテーブル2段　ここから */
.table2 {
  border-bottom: 1px solid lightgrey;
  border-right: 1px solid lightgrey;
  display: flex;
  flex-wrap: wrap;
  font-size: 3vmin;
  margin: 1em auto;
  width: 90%;
}
.table2 div {
  border: 1px solid lightgrey;
  border-bottom: none;
  border-right: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.table2 span {
  background-color: whitesmoke;
  border-bottom: 1px solid lightgrey;
  width: 100%;
}
/* 説明用ミニテーブル2段　ここまで */
/* スマホで縦カラムの表　ここから */
.table5 {
  width: 100%;
}
.table5 table {
  border-collapse: collapse;
  width: 90%;
}
.table5 th,
.table5 td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #ddd;
}
.table5 th {
  font-weight: normal;
  font-size: .875rem;
  color: #666;
  background: #eee;
  position: sticky;
  top: 0;
}
.table5 h1 {
  text-align: center;
  font-size: 2.5rem;
  font-family: 'El Messiri', sans-serif;
}
.table5 img {
  width: 80px;
  display: block;
  margin: 0 auto;
  margin-bottom: .5rem;
}
@media(max-width: 700px) {
  .table5 .heading {
    display: none;
  }
  .table5 td {
    display: block;
  }
  .table5 td::before {
    content: attr(data-label);
    font-size: .875rem;
    color: #666;
    display: block;
    margin-bottom: 0.25rem;
  }
  .table5 .content {
    background: #eee;
  }
}
/* スマホで縦カラムの表　ここまで */

/* 料金比較表　レスポンシブ時も横並び　ここから */
.table7 {
  display: grid;
  justify-content: center;
  margin: 1em auto;
  text-align: center;
}
.table7 table {
  border-collapse: collapse;
  table-layout: fixed;
}
.table7 thead th {
  border-right: 5px solid#fff;
  font-size: 3vmin;
  padding: 3% .8em;
  position: sticky;
  top: 0;
}
.table7 table tr:nth-child(even){
  background-color: #f9f9f9;
}
.table7 table td {
  font-size: 80%;
  padding: 1em;
}
/* 料金比較表　レスポンシブ時も横並び　ここまで */

/*------- リスト　ここから -------*/
/* リスト　先頭擬似要素入り　ここから  */
.marklist {
  counter-reset: number;
}
.marklist li {
  display: flex;
  align-items: baseline;
  margin: 0 0 5px;
}
.marklist li::before {
  content: "・";
  margin: 0 5px 0 0;
}
/* リスト　先頭ナンバリング入り　ここから  */
.numberlist {
  counter-reset: number;
}
.numberlist li {
  display: flex;
  align-items: baseline;
  margin: 0 0 5px;
}
.numberlist li::before {
  counter-increment: number;
  content: counter(number)".";
  margin: 0 5px 0 0;
  flex-basis: 32px;
  flex-shrink: 0;
}
/* 後ろにナンバリング入り　ここから  */
.numberlist1 {
  counter-reset: number;
}
.numberlist1 li {
  align-items: center;
  display: flex;
  justify-content: center;
  letter-spacing: .3em;
}
.numberlist1 li::after {
  counter-increment: number;
  content: counter(number)"";
  margin-left: 1em;
}
.numberlist1 .column {
  flex-direction: column;
  margin-left: 0;
}
.numberlist1 li.column::after {
  margin-left: 0;
}
/*-------------------------------------------------
ギャラリー・入力検索フォーム・ページング・ボタン　ここから
-------------------------------------------------*/
/* ギャラリー　マルチカラム　ここから */
.grid1container {
  margin: 0 auto;
  padding: 5px;
  width: 95%;
  background-color: #fff;
  column-count: 4;
  column-gap: 0;
}
.grid1container img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 5px;
}
.grid1column {
  padding: 5px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.grid1column_text {
  padding: 20px;
  background-color: #e0f2f1;
}
.grid1column > * {
  border-radius: 8px;
}
@media (max-width: 800px) {
  .grid1container {
    column-count: 3;
  }
}
@media (max-width: 480px) {
  .grid1container {
    column-count: 2;
  }
}
/* ギャラリー　マルチカラム　ここまで */

/*----- 入力フォーム ここから -----*/
.grid50 {
  align-items: center;
  display: grid;
  justify-content: center;
  grid-auto-rows: auto;/* 高さ */
  grid-template-columns: 50% 50%;/* 幅 */
  margin: .5em auto;
}
.grid37 {
  align-items: center;
  border-bottom: .5px solid rgba(0, 0, 0, 0.3);
  display: grid;
  grid-auto-rows: auto;/* 高さ */
  grid-template-columns: 30% 70%;/* 幅 */
  margin: auto;
  text-align: center;
  width: 90%;
}
.grid37 .title {
  padding: 2em;
}
.grid37 .contents {
  padding: 2em;
}
.grid37 .contents input {
  height: 25px;
  width: 90%;
}
.grid37 .contents .checkbox {
  display: inline-block;
  padding: 5px;
}
.grid37 .contents .checkbox input {
  display: inline-block;
  width: auto;
}
.grid37 .contents textarea {
  border: 1px solid #ebeced;
  height: 10em;
  width: 90%;
}
.grid37row {
  display: grid;
  grid-auto-rows: auto;/* 高さ */
  grid-template-columns: 30% 70%;/* 幅 */
  margin: auto;
}
.grid37row div {
  padding: 1em;
}
.grid37row .column {
  grid-template-columns: 1fr;/* 幅 */
  grid-template-rows: auto 1fr;/* 幅 */
}
@media screen and (max-width: 728px) {
  .grid37 {
    grid-template-columns: 1fr;/* 幅 */
    grid-template-rows: auto 1fr;/* 幅 */
  }
  .grid37 .title {
    padding-bottom: 0;
  }
}
/*----- 検索フォーム ここから -----*/
.input input {
  border: 1px solid #ebeced;
  height: 25px;
  max-width: 300px;
  width: 100%;
}
.input1 input {
  width: 30%;
  padding: 4px;
}
.input1 button {
  padding: 5px 10px;
}
/*プライバシー*/
.tos1 {
  background: whitesmoke;
  border: 1px solid #cdcdcd;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-size: 60%;
  height: 200px;
  overflow-y: scroll;
  padding: 1em 3em;
  margin: 1em auto;
  max-width: 800px;
  width: 80%;
}
/* セレクトリセットcss */
.select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
  padding: .2em .5em;
}
/* 送信ボタン flexbase */
button {
  border-radius: 5px;
  cursor: pointer; /* ポインターカーソルを表示 */
  display: block;
  font-size: 16px;
  margin: 1em auto;
}
.btn1wrap {
  display: inline-flex;
  margin: 1em auto;
  text-align: center;
}
.btn1 {
  /* ボタン有効時のスタイル */
  background-color: dodgerblue;
  color: #fff;
  padding: 10px 24px;
  display: inline-flex;
}
/* ボタン無効時のスタイル　スペース入れない[disabled] */
.btn1[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}
.btn2 {
  border: 1px solid red;
  color: red;
  padding: 5px 10px;
  font-size: 15px;
}
.btn3 {
  background-color: lightslategray;
  color: #fff;
  padding: 10px 24px;
}
.cartbtn {
  background-color: whitesmoke;
  padding: 2px 12px;
  font-size: 10px;
  margin: .2em auto;
}
/*----- ページング ここから -----*/
.paging {
  margin: 0 0 10px;
  padding: 10px 10px 5px;
  text-align: right;
}
.paging li {
  display: inline;
  margin: 0 1px;
}
.paging a,
.paging span {
  color: #4c586f;
  padding: 5px 8px;
}
.paging span {
  background-color: #4c586f;
  border-radius: 5px;
  color: #fff;
}
/*-------------------------------------------------
チェックボックス・料金・readmore　ここから
-------------------------------------------------*/
.checkmark li {
  align-items: center;
  display: flex;
  padding: .5em;
  position: relative;
  list-style-type: none;
}
.checkmark li::after {
  content: '';
  display: block;
  position: absolute;
  top: .8em;
  left: -1.2em;
  width: 10px;
  height: 5px;
  border-left: 3px solid lightblue;
  border-bottom: 3px solid lightblue;
  transform: rotate(-45deg);
}
/* チェックマーク　シンプル */
.checkmark_simple ul {
  border: solid 2px lavender;
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
  margin: auto;
}
.checkmark_simple ul li {
  padding: .5em 1em;
  list-style-type: none;/*ポチ消す*/
  text-align: left;
}
.checkmark_simple ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: lavender; /*アイコン色*/
}
/* チェックマーク　シンプル */
/* チェックボックス */
.checkbox1 {
  margin: 1em auto;
  text-align: center;
}
.checkbox1 input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.checkbox1 input[type="checkbox"]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  content: '';
}
/*------- checkbox3 ここから -------*/
.checkbox3 input[type=checkbox] {
  display: none; /* デフォルトのinputは非表示にする */
}
.checkbox3 .checkbox3label {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 5px 30px;
  position: relative;
  width: auto;
}
.checkbox3 .checkbox3label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}
.checkbox3 .checkbox3label::after {
  border-right: 6px solid #fedd1e;
  border-bottom: 3px solid #fedd1e;
  content: '';
  display: block;
  height: 20px;
  left: 7px;
  margin-top: -16px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
  transition: transform .2s ease-in-out, opacity .2s ease-in-out;
  width: 9px;
}
.checkbox3 input[type=checkbox]:checked + .checkbox3label::before {
  border-color: #666;
}
.checkbox3 input[type=checkbox]:checked + .checkbox3label::after {
  opacity: 1;
  transform: rotate(45deg) scale3d(1,1,1);
}
/*------- checkbox3 ここまで -------*/

/*------- 料金　ここから -------*/
.price3 {
  font-family: 'Bodoni 72 Smallcaps','klee',sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: .4em;
  text-align: center;
}
/*------- 料金　ここまで -------*/
/*------- メニューの間の線　ここから -------*/
.price1dot .title {
  font-size: 3vmin;
  margin: 2em auto;
  width: fit-content;
}
.price1dot ul {
  font-size: 12px;
  list-style: none;
  box-sizing: border-box;
  min-width: 30vw;
  width: 100%;
}
.price1dot li {
  align-items: center;
  display: flex;
  margin-bottom: .5em;
}
.price1dot .line {
  background: radial-gradient(#000 10%, transparent 30%) center/ 7px 7px;
  background: -ms-radial-gradient(#000 10%, transparent 30%) center/ 7px 7px;
  content: '';
  display: flex;
  flex: 1 1 auto;
  height: 7px;
  margin: 0 10px;
}
.price1dot hr {
  padding: 0;
  border: 0;
  outline: 0;
}
.price1dot p {
  font-size: 130%;
  margin: 2em auto 1em;
  text-align: center;
  width: 100%;
}
/*------- メニューの間の線　ここまで -------*/

/* 打ち消し線　ここから */
.price2del del {
  background-image: linear-gradient(transparent 0.5em, #e70000 0, #e70000 calc(0.5em + 1px), transparent 0, transparent calc(0.5em + 3px), #e70000 0, #e70000 calc(0.5em + 4px), transparent 0);
  text-decoration: none;
}
.price2del .price2::before {
  content: "▶︎";
  font-family: '游明朝体',sans-serif;
  font-size: 60%;
  font-weight: 900;
  margin: .5em;
}
.price2del .price1 {
  font-size: 24px;
  text-align: center;
}
.price2del .price2 {
  font-size: 150%;
  letter-spacing: 1px;
}
.price2del .yen {
  font-size: 70%;
}
.price2del .tax {
  font-size: 60%;
}
@media (max-width: 736px) {
  .price2del .price2::before {
    display: block;
    transform: rotate(90deg);
  }
}
/* 打ち消し線　ここまで */

/* flexbox 表　ここから */
.flex1plan {
  display: grid;
  margin: 2em auto;
}
.flex1plan ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.flex1plan .pricecards{
  align-items: center;
  -webkit-align-items: center;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: center;
  -webkit-justify-content: center;
}
.flex1plan .pricecard{
  flex: 0 0 33%;
  text-align: center;
  border: 1px solid #eee;
  padding-bottom: 1rem;
  box-sizing: border-box;
  margin:0 auto 3em;
  width: 90%;
}
.flex1plan .pricecard h3{
  background: #a2bc10;
  color: #fff;
  padding: 10px;
  margin: 0;
}
.flex1plan .pricecard.premium{
  border: 3px solid #06c7ea;
  padding-bottom: 3rem
}
.flex1plan .pricecard.premium h3{
  background: #06c7ea;
  color: #fff;
  padding: 10px;
  margin: 0;
}
.flex1plan.pricecard h4{
  font-size: 300%;
  margin: 0 auto;
  padding: 1rem 0 0;
}
.flex1plan .pricecard.premium h4 {
  padding: 20px;
}
.flex1plan .pricecard p{
  margin: 0;
  padding: 1rem;
  text-align: left;
}
.flex1plan .pricecard p br {
  display: inline-block;
  border-bottom: .3px solid black;
}
.flex1plan .pricecard a{
  padding: 10px 40px;
  background: #fb5859;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  display: inline-block;
}
.option {
  margin: 1em;
  text-align: left;
}
.option ul li {
  border-bottom: .5px solid rgba(0, 0, 0, 0.3);
  padding: .5em 0;
}
.option ul li i {
  padding: 0 .5em;
}
@media screen and (max-width: 600px){
  .flex1plan .profile_card, .pricecards, .profile_cards {
  flex-direction: column;
  -webkit-flex-direction: column;
  }
  .flex1plan .pricecard, .card_photo {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  }
  .flex1plan .pricecard.premium {
  order: 1;
  -webkit-order: 1;
  }
}
/* flexbox 表　ここまで */

/* readmore 1　ここから */
.readmore1 {
  font-size: 12px;
  margin-top: auto;
}
.readmore1 {
  color: #5ad67d;
  display: inline-block;
  position: relative;
}
.readmore1:after {
  content: "→";
  margin-left: -10px;
  opacity: 0;
  vertical-align: middle;
  transition: margin 0.3s, opacity 0.3s;
}
.readmore1:hover:after {
  margin-left: 5px;
  opacity: 1;
}
/* readmore 1　ここまで */

/*-------------------------------------------------
ステップ・タイムライン・アコーディオン　ここから
-------------------------------------------------*/
/*-----ステップ フロー１ここから-----*/
.flow1container ul {
  padding: 0;
}
.flow1container li {
  list-style-type: none;
}
.flow1container dd {
  margin-left: 0;
}

.flow1container .flow {
  padding-left: 120px;
  position: relative;
}
.flow1container .flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
}
.flow1container .flow > li {
  position: relative;
}
.flow1container .flow > li:not(:last-child) {
  margin-bottom: 8vh;
}
.flow1container .flow > li .icon {
  font-size: 12px;
  color: #fff;
  background: rgb(107,144,219);
  background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
  background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -120px;
  z-index: 100;
}
.flow1container .flow > li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #66d5e9;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.flow1container .flow > li dl {
  padding-left: 70px;
  position: relative;
}
.flow1container .flow > li dl::before,
.flow1container .flow > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow1container .flow > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #6b90db;
  border-radius: 50%;
  left: -4px;
}
.flow1container .flow > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.flow1container .flow > li dl dt {
  font-size: 20px;
  font-weight: 600;
  color: rgb(107,144,219);
  margin-bottom: 1vh;
}
/*-----ステップ フロー１　ここまで-----*/
/*-----ステップ横並び　ここから-----*/
.step1 {
  display: flex;
  flex-wrap: wrap;
}
.step1 .title {
  font-size: 4vmin;
  font-weight: 700;
}
.step1 .step1cont {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.step1 .step1cont:before {
  --size: 3rem;
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  margin: 1rem auto 0;
}
.step1 .step1cont:not(:last-child):after {
  content: "";
  position: relative;
  top: 1.5rem;
  left: 50%;
  height: 2px;
  background-color: #e0e0e0;
  order: -1;
}
/*-----ステップ横並び　ここまで-----*/
/*-----ステップ縦三角下線　ここから-----*/
.triangle3{
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid lightgrey;
  margin: auto;
}
.trianglehr{
  border-bottom: 1px solid lightgrey;
}

.step2triangle {
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #dedede;
}
.step2triangle .step2line .step2under {
  content: "";
  display: block;
  width: 0;
  border: solid 1em transparent;
  border-top-color: #dedede;
  margin: 0 auto;
}
.step2triangle {
  padding-bottom: 4em;
}
.step2triangle .step2line .step2triangle_title {
  font-size: 1.5em;
  font-weight: bold;
  display: inline-block;
  text-align: center;
}
.step2triangle .step2line .step2num li {
  display: block;
  font-weight: bold;
  margin: 1em auto;
}
.step2triangle .step2line .step2triangle_cont {
  display: inline-block;
  text-align: left;
  margin: 1em auto;
  font-size: 0.9em;
}
.step2triangle:first-of-type .step2under:first-of-type {
  display: none;
}
.step2triangle:last-of-type .step2line:last-of-type {
  border-bottom: 1px solid #dedede;
}
@media screen and (max-width: 960px) {
  .step2triangle {
    width: 90%;
  }
}
/*-----ステップ縦三角下線　ここまで-----*/
/*-----タイムライン３ここから-----*/
.timeline3wrap {
  position: relative;
  margin: 3em auto;
}
.timeline3wrap:before {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  content: '';
  background-color: navy;
  left: 0;
}
.timeline3wrap .timeline {
  position: relative;
  padding-top: 40px;
}
.timeline3wrap .timeline:not(:first-of-type) {
  margin-top: 2rem;
}
.timeline3wrap .header1 {
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.5rem 1.5rem;
  background-color: navy;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.timeline3wrap .main {
  margin-bottom: 1em;
  position: relative;
  padding-top: 60px;
  padding-left: 20px;
}
.timeline3wrap .main:not(:last-of-type) {
  margin-bottom: 2em;
}
.timeline3wrap .main:before {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  content: '';
  background-color: navy;
  top: 120px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.timeline3wrap .subtitle {
  position: absolute;
  left: 0;
  box-sizing: border-box;
  min-width: 100px;
  min-height: 2em;
  padding: .5em;
  text-align: center;
  background-color: lightgray;
  top: 10px;
  /* margin-top: -33px; */
  border-radius: 0 20px 20px 0;
}
.timeline3wrap .s1,
.timeline3wrap .s2 {
  display: inline-block;
}
.timeline3wrap .desc {
  padding: 1em;
  border-left: 2px solid lightsteelblue;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 1em;
}
.timeline3wrap .desc .title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0;
  padding: 0;
  padding-bottom: 0.3em;
}
.timeline3wrap img {
  height: 200px;
  object-fit: contain;
  width: 100%;
}
/*-----タイムライン３ここまで-----*/

/* アコーディオン　ここから */
.accordion1 {
  margin: 1em auto;
  max-width: 800px;
}
.accordion1 input {
  display: none;
}
.accordion1 label {
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
  margin: 0 auto 5px;
}
.accordion1 .label {
  background: #eaeaea5c;
  border-radius: 5px;
}
.accordion1 label::after {
  display: flex;
  align-items: center;
  font-family: "Font Awesome 5 Free";
  content: "\f0d7";
  /* content: "▼"; */
  transition: all 0.3s;
}
.accordion1 .ac1cont {
  height: 0;
  opacity: 0;
  transition: 0.3s;
  overflow: hidden;
  padding: 0;
  margin: 0 auto;
}
.accordion1 input:checked + label + .ac1cont {
  height: auto;
  opacity: 1;
  padding: 15px 0;
  /* visibility: visible; */
  align-items: center;
  word-break: break-all;
}
.accordion input:checked + label::after {
  transform: rotate(180deg);
}
/* アコーディオン　ここまで */

/*------- タブの数が増減に追従　３　ここから -------*/
.tab1 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em;
  max-width: 1000px;
  text-align: center;
}
.tab1:after {
  content: '';
  width: 100%;
  height: 1px;
  background: lightgray;
  display: block;
  order: -1;
}
.tab1 label {
  background: whitesmoke;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  padding: 10px .5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab1 label:not(:last-of-type) {
  margin-right: 5px;
}
.tab1 .content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab1 input:checked + label {
  background: antiquewhite;
}
.tab1 input:checked + label + .content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  transition: .5s opacity;
  box-shadow: 0 0 3px rgba(0,0,0,.2);
}
/* ラジオボタン非表示 */
.tab1 input {
  display: none;
}
/*------- タブの数が増減に追従　ここまで -------*/
/*-------------------------------------------------
ステップ・タイムライン・アコーディオン　ここまで
-------------------------------------------------*/

/*------- 文字の中身にアニメーションを流す ここから -------*/
.text-animation {
  border: .3px double goldenrod;
  border-width: 10px 0;
  display: flex;
  flex-direction: column;
  margin: 1em auto;
  text-align: center;
}
.text-animation p {
  padding: .5em;
  letter-spacing: .2em;
}
.text-animation .move-text {
  font: 900 9vmin/1 "Georgia", sans-serif;
  margin: .1em auto;
  letter-spacing: .3em;
  /* Clip Background Image */
  background: url(img/img1.jpg) repeat-y;
  -webkit-background-clip: text;
  background-clip: text;
  /* Animate Background Image */
  -webkit-text-fill-color: transparent;
  animation: aitf 30s linear infinite;
  /* Activate hardware acceleration for smoother animations */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  padding: .5em;
}
/* Animate Background Image */
@keyframes aitf {
  0% {background-position: 0% 50%;}
  100% {background-position: 100% 50%;}
}
/*------- 文字の中身にアニメーションを流す ここまで -------*/

/*-------------------------------------------------
カレンダー　ここから
-------------------------------------------------*/
.calwrap {
  margin: 1em auto;
  width: 90%;
}
.timetablewrap {
  margin: 1em auto;
  width: 90%;
}
#attention {
  border: 1px #f00 solid;
  padding: 10px;
  margin-bottom: 30px;
}
#attention p.msg {
  font-size: 110%;
  font-weight: bold;
  margin-bottom:10px;
}
#attention ul {
  list-style-type: square;
  margin: 10px 20px;
}
#timetable_box,
#form_box,
#calendar_box {
  float:left;
  margin-right:50px;
}
/* カレンダー */
.timetablewrap table.rsv_calendar {
  width : 180px;
  margin-bottom:30px;
}
.timetablewrap table.rsv_calendar caption{
  font-weight:bold;
  margin-bottom:5px;
}
.timetablewrap table.rsv_calendar td,
.timetablewrap table.rsv_calendar th {
  text-align:center;
}
.timetablewrap table.rsv_calendar td#today {
  background-color:#eee; /* 今日の背景色 */
}
.timetablewrap table.rsv_calendar td#current {
  background-color:#ffebae; /* クリックした日の背景色 */
}
.timetablewrap table.rsv_calendar td input { /* カレンダー内inputボタン */
  background: none;
  border: none;
  padding: 0;
  box-shadow: none;
  color: #09c;
  text-decoration: underline;
}
.timetablewrap table.rsv_calendar td input:hover {
  color: #8bc; /* リンクホバー色 */
  background: none;
}
/* タイムテーブル */
.timetablewrap table#timetable{
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #eee;
}
.timetablewrap table#timetable th {
  padding: 3px;
  background-color: #ddd;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  text-align:center;
}
.timetablewrap table#timetable td {
  padding: 3px;
  border: .5px solid #eee;
}
.timetablewrap table#timetable td input { /* タイムテーブル内inputボタン */
  width :18px;
  height :18px;
  padding : 0;
  /* margin : 3px 3px 0 0; */
  /* line-height:0; */
  text-align:center;
  /* vertical-align:middle; */
  /* float:left; */
}
.timetablewrap table#timetable td.exist{ /* データが存在するセル */
  background-color:#f6f6f6; /* 背景色 */
  font-size: 12px;
}
/* .timetablewrap table#timetable td.exist img{
  float:left;
  margin-top:3px;
} */
.timetablewrap table#timetable th#origin{ /* 見出し部分 */
  width:50px;
  /*height:20px;*/
}
/* 中身の横幅 */
.timetablewrap table#timetable th.cts {
  width:70px; 
}
/*中身の縦幅*/
/* .timetablewrap table#timetable tbody tr {
  height:50px; 
} */
/* 登録フォーム */
.timetablewrap input[type="text"], select{
  margin-bottom:5px;
}
/*-------------------------------------------------
カレンダー　ここまで
-------------------------------------------------*/
/*==================================================
ヘッダー　ここから
====================================================*/
/* 動くヘッダー ここから */
.move1 {
  display: block;
  text-align: center;
  line-height: 1;
}
.move1 .logo1 {
  color: hotpink;
  display: block;
  font-family: 'klee',sans-serif;
  font-size: 1.8vmin;
  letter-spacing: .2em;
  animation: moveInRight 2s ease-out;
}
.move1 .logo2 {
  color: gray;
  display: block;
  font-family: 'AcademyEngravedLetPlain', 'Times New Roman',sans-serif;
  font-size: 3vmin;
  letter-spacing: .3em;
  animation: moveInLeft 2s ease-out;
  padding-top: .3em;
}
@keyframes moveInLeft {
  0% {opacity: 0; transform: translateX(-100px);}
  80% {transform: translateX(10px);}
  100% {opacity: 1; transform: translate(0);}
}
@keyframes moveInRight {
  0% {opacity: 0; transform: translateX(100px);}
  80% {transform: translateX(-10px);}
  100% {opacity: 1; transform: translate(0);}
}
/* 動くヘッダー ここまで */
.logo {
  align-items: center;
  display: flex;
  justify-content: space-around;
  margin-right: 5em;
  text-align: center;
}
/* スマホ閲覧時のハンバーガーメニュー */
#hanburger {
  display: none; /* チェックボックスを非表示 */
}
#hanburger:checked + .menu1button::before { /* アイコンのスタイル（チェック済み） */
  /* content: "\f00d"; */ /* アイコン「×印」 */
  content: "×";
}
#hanburger:checked ~ .global1menu { /* メニュー全体のスタイル（チェック済） */
  visibility: visible; /* メニューを表示 */
}
.menu1button { /* ボタンのスタイル#db7093 */
  background: rgb(226, 167, 167); /* 背景色 */
  height: 50px; /* 高さ */
  position: fixed;
  right: 0;
  top: 0;
  width: 50px; /* 幅 */
  z-index: 1000;
}
.menu1button::before { /* アイコンのスタイル */
  /* font-family: "Font Awesome 5 Free";
  content: "\f0c9"; */ /* アイコン「３本線」 */
  content: "MENU";
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.global1menu { /* メニュー全体のスタイル */
  align-items: center;
  /* background: #ffc0cb; */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  justify-content: space-around;
  height: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  visibility: hidden; /* メニューを非表示 */
  width: 100%;
}
.global1menu a { /* 各項目のスタイル */
  display: flex;
  justify-content: center;
}
.global1menu a:hover { /* 各項目のスタイル（ホバー時）#ffb6c1 */
  background: whitesmoke;
}
.global1menu .child { /* 下層メニューのスタイル */
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  flex-wrap: wrap
}
.global1menu .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.global1menu .menu .child:last-child {
  margin-bottom: 20px;
}
.global1menu .menu > a { /* 親項目のスタイル */
  font-weight: bold;
  padding: 10px 30px;
}
.global1menu .child > li > a {
  padding: 10px 30px;
  /* font-size: 0.8em; */
}
/* PC閲覧時のメガメニュー */
@media screen and (min-width: 600px) {
.menu1button {
  display: none; /* ハンバーガーメニューのボタンを非表示 */
}
.global1menu { /* メニュー全体のスタイル#e6a3ad */
  background: white; /* 背景色 */
  height: auto;
  overflow-y: visible;
  position: relative;
  visibility: visible;
  z-index: 10000;
}
.global1menu .menu, .child > li {
  display: inline-block;
}
.global1menu .menu:not(:last-child) {
  margin-bottom: 0;
}
.global1menu .menu > a { /* 親項目のスタイル */
  font-weight: normal;
}
.global1menu .menu:hover > a {
  background: whitesmoke;
}
.global1menu .child { /* 下層メニューのスタイル#ffb6c1 */
  background: whitesmoke; /* 背景色 */
  display: flex;
  justify-content: space-around;
  opacity: 0; /* 不透明度を最小に */
  padding: 2em 0;
  position: absolute;
  left: 0;
  top: 100%;
  transition: 1s opacity; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: 100%;
  z-index: 10000;
}
.global1menu .menu:hover .child { /* 下層メニューのスタイル（親項目ホバー時） */
  opacity: 1; /* 不透明度を最大に */
  visibility: visible; /* 下層メニューを表示 */
}
.global1menu .child > li > a:hover {
  background: unset;
  color: #fff;
}
}
/*==================================================
ヘッダー　ここまで
====================================================*/
/*--------------------------------------
スライダー画像サムネイル付き　ここから
--------------------------------------*/
#slideshow {
  position: relative;
  width: 95vw; /* ボックスの横幅 */
  height: 300px; /* ボックスの高さ */
  margin-bottom: 1em;
}
#slideshow p {
  position: absolute;
  top:  0;
  left: 0;
  z-index: 8;
  opacity: 0.0;
  margin: 0;
  background-color: white; /* ボックスの背景色(必須) */
  height: 300px; /* ボックスの高さ */
}
#slideshow p.active {
  z-index: 10;
  opacity: 1.0;
}
#slideshow p.last-active {
  z-index: 9;
}
#slideshow p img {
  object-fit: contain;
  width:  100vw; /* 画像の横幅 */
  height: 270px; /* 画像の高さ */
  display: block;
  border: 0;
  margin-bottom: 10px; /* 画像下部の余白 */
}


.slide6wrap .slide {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  height: 50vh;
}
.slide6wrap .slide img {
  position: absolute;
  object-fit: cover;
  opacity: 0;
  left: 50%;
  top: 50%; /*画像の真ん中を表示する位置の設定*/
  transform: translate(-50%, -50%);
  width: 100%;
}
.slide6thumbnail {
  display: grid;
  gap: 1em;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: auto;
  text-align: center;
  width: 90%;
}
.slide6thumbnail .title {
  color: goldenrod;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
  font-size: 3vmin;
  margin: .5em auto 0;
}
.slide6thumbnail img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  margin: .5em;
}
.slide6wrap input[type="radio"] {
  display: none;
}
@keyframes slidethumb {
  0% {filter: opacity(100%);}
  3% {filter: opacity(50%);}
  5% {filter: opacity(50%);}
  20% {filter: opacity(50%);}
  25% {filter: opacity(100%);}
  100% {filter: opacity(100%);}
}
@keyframes slideshow {
  0% {opacity: 0;}
  5% {opacity: 1;}
  14% {opacity: 1;}
  21% {opacity: 0;}
  100% {opacity: 0;}
}
/*ページを開いたとき＆一つ目のサムネイルをクリックしたとき*/
#img1:checked ~ .slide6thumbnail label[for="img1"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 0s;
}
#img1:checked ~ .slide6thumbnail label[for="img2"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 5s;
}
#img1:checked ~ .slide6thumbnail label[for="img3"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 10s;
}
#img1:checked ~ .slide6thumbnail label[for="img4"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 15s;
}
#img1:checked ~ .slide6thumbnail label[for="img5"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 20s;
}
#img1:checked ~ .slide6thumbnail label[for="img6"] img {
  animation: slidethumb 30s linear infinite both;
  animation-delay: 25s;
}
#img1:checked ~ .slide img {animation: slideshow 30s linear infinite;}
#img1:checked ~ .slide img:nth-child(1) {animation-delay: 0s;}
#img1:checked ~ .slide img:nth-child(2) {animation-delay: 5s;}
#img1:checked ~ .slide img:nth-child(3) {animation-delay: 10s;}
#img1:checked ~ .slide img:nth-child(4) {animation-delay: 15s;}
#img1:checked ~ .slide img:nth-child(5) {animation-delay: 20s;}
#img1:checked ~ .slide img:nth-child(6) {animation-delay: 25s;}
/*--------------------------------------
スライダー画像サムネイル付き　ここまで
--------------------------------------*/
/*--- パンくずリスト　ここから ---*/
.breadcrumbs {
  padding: 0 0 0 2em;
  text-align: left;
  line-height: 1.3;
}
.breadcrumbs ol {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.breadcrumbs li {
  display: inline; /*横に並ぶように*/
  font-size: 0.7em;
}
.breadcrumbs li:first-child a:before {
  /*家アイコン*/
  font-family: "Font Awesome 5 Free";
  content: '\f015';
  font-weight: normal;
  color: #f3948f;
  padding: 0 .8em;
}
.breadcrumbs li + li::before {
  margin: 0 .5em;
  height: .8em;
  color: #c6c6c6;
  content: '>';
}
.breadcrumbs[aria-current="page"] {
  color: #000;
  font-weight: 300;
  text-decoration: none;
}
/*--- パンくずリスト　ここまで ---*/
/* 日付・カテゴリ・タイトルを並べて表示する */
.news1 {
  width: 80%;
  margin: 2em auto;
  text-align: left;
}
.news1title {
  color: gray;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.news1 ul {
  align-items: center;
  display: flex;
  font-size: 12px;
  flex-flow: row wrap;
  border-bottom: 1px dotted #999;
  padding: 10px 0;
}
.news1 ul li {
  display: block;
  margin: 5px 10px;
}
.news1 ul li:nth-child(-n + 3) {
  flex-basis: 100px;
}
.news1 ul li:nth-child(2) {
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  text-align: center;
  background-color: #75b46e;
}
.news1 ul li:nth-child(3) {
  flex-basis: auto;
}
/* 日付・カテゴリ・タイトルを並べて表示する */
/*==================================================
フッター　ここから
====================================================*/
footer .copyright {
  background-color:gainsboro;
  font-size: .6rem;
  padding: 10px 40px;
  display: flex;
  justify-content: space-around;
}
/* グーグルマップのサイズを設定 */
.map {
  display: block;
  height: 400px;
  margin: auto;
  width: 90%;
}
@media screen and (max-width: 960px) {
  footer .none {
    display: none; /* メニューを非表示 */
  }
}
/*==================================================
フッター　ここまで
====================================================*/