@charset "UTF-8";
/* CSS Document */

body, html {
	margin: 70px 0px 100px 0px ;
	padding: 0px;
	font-family:  "游ゴシック体", YuGothic, "YuGothic M", sans-serif;
	font-size: medium;
	font-weight: bold;
	color: #05041e;
	text-align: center;
	display: flex;
	align-items: center;
  	justify-content: center;
	line-height: 1em
}

body {
  background-color: #fff0f5;
}

.resizeimage img { width: 100%; }

.tac {
  text-align: center;
}



h1 ,h2 ,h3{
	color : #663300;
}


h5{
	color : #663300;
}


h1 {
	font-size: 1em;
}
h2 {
	font-size: 1.5em;
}
h3 {
	font-size: 0.7em;
}


h4 {
  color: saddlebrown;
  text-align: center;
  padding: 15px;
  border-top: solid 2px saddlebrown;
  border-bottom: solid 2px saddlebrown;
  background: -webkit-repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);
  background: repeating-linear-gradient(-45deg, #fff5df, #fff5df 4px,#ffe4b1 3px, #ffe4b1 8px);	
}



h5 {
	margin:  -10px;
	font-size: 2.8em;
}

p {
	
	line-height: 1.7;
}


.under {
  background: linear-gradient(transparent 70%, #FFFFFF 0);
}

.under2 {
  background: linear-gradient(transparent 0%, #FFFF99 0%);
}


.under3 {
  background: linear-gradient(transparent 70%, #FF282A 0%);
}


#page {
	margin:  0 auto;
	width: 700px;
}

table ,td {
	border: 1px;
	border-collapse: collapse;
	vertical-align: top;
	text-align:  left;
}
td {
	padding: 10px 20px 30px 40px;
	
}

.line {  width:  3px;
	     padding:  0;
	     background-color: #000000;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}

table tr td.info01 {
	padding: 10px 25px 20px 25px;
	border: 4px #000000 solid;
	text-align: center;
	font-size:  1.1em;
}




.fuwafuwa {
  animation: fuwafuwa 2s ease-in-out infinite alternate;
  display: inline-block;
  transition: 1s ease-in-out;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-2deg);
  }
  100% {
    transform:translate(0, 0) rotate(3deg);
  }
}
.vertical {
  animation: vertical_7410 2.44s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes vertical_7410 {
  0% { transform:translate(0,-3px) }
  3.27869% { transform:translate(0,3px) }
  6.55738% { transform:translate(0,-3px) }
  9.83606% { transform:translate(0,3px) }
  13.11475% { transform:translate(0,-3px) }
  16.39344% { transform:translate(0,3px) }
  18.03279% { transform:translate(0,0) }
  100% { transform:translate(0,0) }
}


/*丸付き数字*/
.btn-circle-flat {
  display: inline-block;
  text-decoration: none;
  background: #ffffff;
  color: #9D4B27;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  border: solid 2px saddlebrown;
  text-align: center;
}


/*フェードイン*/
.fade-in {
    animation-name: fadein;
    animation-duration: 3s;
  width: 500px;
  height: 500px;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


.c-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit);
  gap: 10px;
}

.c-grid__item {
  width: 100%;
  height: 100px;
  background: #00bfff;
  border: 1px solid #000;
  display: grid;
  justify-content: center;
  align-content: center;
}



/* 画像3点横並び */
.container-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 2%; /* 画像の間に余白を設定 */
}
.container-6 img {
    width:32%; /* 3列に設定 */
}
@media (max-width: 768px) {
    .container-6{
        gap:20px 3%;
    }
    .container-6 img {
        width:48.5%; /* 2列に設定 */
    }
}

.sp{
    display: block !important;
}





/* ボタン風スタイル（共通） */
.link-btn a {
  display: inline-block; /* インラインブロック要素にする */
  padding: 3px 20px; /* ボタンの内側の余白（上下・左右） */
  color: white; /* 文字色を白に設定 */
  text-decoration: none; /* 下線を非表示 */
  border: 2px solid transparent; /* ボタンの枠線を透明に設定 */
  transition: all 0.3s ease; /* ホバー時の変化をなめらかに */
}

.link-btn a:hover {
  background-color: transparent; /* ホバー時に背景色を透明に設定 */
}
.color-1 a{
--btn-color:#b3b3b3;/*ボタンの色*/
  background-color: var(--btn-color);
}

.color-1 a:hover {
  color: var(--btn-color);
  border-color:var(--btn-color);
}

html {
  scroll-behavior: smooth; /* スムーススクロール */
}.message01 {
}


html {
    scroll-behavior: smooth;
}

/* 右下追従トップ戻るボタン */
.pagetop {
    height: 50px;
    width: 50px;
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: #fff;
    border: solid 2px #ff386f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 3px solid #ff386f;
    border-right: 3px solid #ff386f;
    transform: translateY(20%) rotate(-45deg);
}






.star01 {
	  position: absolute;
	animation: flashing 3s infinite;
}
@keyframes flashing {
	0% {
		opacity: 1;
	}
	90% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.star02 {
	  position: absolute;
	animation: flashing 3s infinite;
}
@keyframes flashing {
	0% {
		opacity: 0;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/*グラデスライドショー*/
 /*=== 画像の表示エリア ================================= */
.slide01 {
  position   : center;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width : "700" ;
  height : "700" ;
     /* サンプルは中央寄せの背景：白 */
}
 
 /*=== 画像の設定 ======================================= */
.slide01 img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : 700;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 4s ease infinite;
}

 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
	0% {opacity: 0;}
	10% {opacity: 1;}
	40% {}
	50% {opacity: 1;}
	60% {opacity: 0;}
	100% {opacity: 0;}
}


/*グラデスライドショー*/
 /*=== 画像の表示エリア ================================= */
.slide02 {
  position   : center;
  overflow   : hidden;
                    /* 画像のサイズに合わせて変更ください */
  width : "700" ;
  height : "700" ;
     /* サンプルは中央寄せの背景：白 */
}
 
 /*=== 画像の設定 ======================================= */
.slide02 img {
  display    : block;
  position   : absolute;
                      /* 画像のサイズを表示エリアに合せる */
  width      : 700;
  height     : inherit;
  opacity    : 0;
  animation  : slideAnime 4s ease infinite;
}
 
 /*=== スライドのアニメーション ========================= */
@keyframes slideAnime{
	0% {opacity: 0;}
	25% {opacity: 0;}
	35% {opacity: 1;}
	65% {}
	75% {opacity: 1;}
	85% {opacity: 0;}
	100% {opacity: 0;}
}


