@charset "utf-8";
/* CSS Document */
html {
	height: 100%;
	scroll-behavior: smooth;
}
body{
	font-family: "Roboto",-apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Droid Sans", "游ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif, "Open Sans", Helvetica, Arial, Roboto, YuGothic, sans-serif;
	line-height: 1.618;
	font-size: 15px;
	color:#2b2b2b;
  height: 100%;
	background-color: #ffffff;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
	-webkit-font-smoothing:antialiased;
}
a {
  text-decoration: none;
}
section {
	position: relative;
	overflow: hidden;
	background-position: top center;
	background-color: transparent;
	margin: 0;
	padding: 0;
}
.secSep {
  height: 46vh;
}
section  h2 {
	text-align: center;
  font-size: 3.2em;
  font-weight: 100;
  margin: 0 0 2.4rem;
  padding: 2.4rem 0 3.6rem;
  border: none;
  background-color: #fbfda4;
}
h3 {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin: 0.6rem auto;
}
.fontMincho {
	font-family: "Sawarabi Mincho", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
  .pcOnly {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
  .spOnly {
    display: block;
  }
}
/* Layout */
.dispInline {
  display: inline;
}
.txtSize09 {
  font-size: 0.9rem;
}
.txtCenter {
  text-align: center;
}
.txtLeft {
  text-align: left;
}
.txtRight {
  text-align: right;
}
.txtBold {
  font-weight: 700;
}
.txtRed {
  color:#d00c2f;
}
.txtBlue {
  color:#0a448a8;
}
.txtGold {
  color:#bca234;
}
.txtLight {
  color: #f7e7b8;
}
.txtFont11 {
  font-size: 1.1rem;
}
.txtLeft06 {
  margin-left: 0.6rem;
}
.txtLeft10 {
  margin-left: 1.0rem;
}
.txtLeft16 {
  margin-left: 1.6rem;
}
.txtTop06 {
  margin-top: 0.6rem;
}
.txtTop10 {
  margin-top: 1.0rem;
}
.txtTop16 {
  margin-top: 1.6rem;
}
.txtTop24 {
  margin-top: 2.4rem;
}
.txtTop32 {
  margin-top: 3.2rem;
}
.txtBottom06 {
  margin-bottom: 0.6rem;
}
.txtBottom10 {
  margin-bottom: 1.0rem;
}
.txtBottom16 {
  margin-bottom: 1.6rem;
}
.txtBottom24 {
  margin-bottom: 2.4rem;
}
.txtWight500 {
  font-weight: 500;
}
.txtWight700 {
  font-weight: 700;
}
.txtWightBold {
  font-weight: bold;
}

/*  Transition */
.delay03 {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}
.delay06 {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}
.delay09 {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}
.delay12 {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}
.delay15 {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
.delay18 {
	-webkit-animation-delay: 1.8s;
	animation-delay: 1.8s;
}
.delay21 {
	-webkit-animation-delay: 2.1s;
	animation-delay: 2.1s;
}
.delay24 {
	-webkit-animation-delay: 2.4s;
	animation-delay: 2.4s;
}
.delay27 {
	-webkit-animation-delay: 2.7s;
	animation-delay: 2.7s;
}
.delay30 {
	-webkit-animation-delay: 3.0s;
	animation-delay: 3.0;
}
.delay70 {
	-webkit-animation-delay: 1.0s;
	animation-delay: 1.0s;
}
.delay76 {
	-webkit-animation-delay: 6.6s;
	animation-delay: 6.6s;
}
.delay82 {
	-webkit-animation-delay: 1.4s;
	animation-delay: 1.4s;
}
.durate04 {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.durate08 {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.durate10 {
  -webkit-animation-duration: 1.0s;
  animation-duration: 1.0s;
}
.durate20 {
  -webkit-animation-duration: 2.0s;
  animation-duration: 2.0s;
}
.durate30 {
  -webkit-animation-duration: 3.0s;
  animation-duration: 3.0s;
}

/* Scroll Trigger */
.invisible {
	transition: opacity 0.5s ease;
	opacity: 0.0;
}
.visible {
	transition: opacity 0.5s ease;
	opacity: 1.0;
}


/* Flex */
.flex {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;  
}
.flexWrap {
	-webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;  
}
.flexItemCenter {
  -webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;  
}
.flexItemEnd{
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.flexItemBaseline{
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.flexJustifyCenter {
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;  
}
.flexJustifyStart {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;  
}
.flexJustifyEnd {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.flexJustifyAround {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flexJustifyBetween {
	-webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flexDirectionColumn {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flexReverse {
  flex-direction: row-reverse;
}

.wrapper {
  position: relative;
}
.pageHeadImg {
  height: 24vh;
  margin: 1.0rem 0 0;
  background-color: #c92330;
  box-sizing: border-box;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  background-position: center center;
  background-size: cover;
}

/*==============
LINE風フキダシ
===============*/
/*フレームとフォント*/
.kaiwaLine {
width: 100%;
max-width: 540px;
margin: 0 auto;
height: 100%;
padding: 2.0rem 0.6rem 0;
background: #769ece;
font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","Helvetica Neue", "Lucida Sans Unicode", "Arial";
color: #333;
line-height: 1.4;
overflow: hidden;
}
/*フキダシ共通*/
.kaiwaLine .fukidasi {
position: relative;
display: inline-block;
max-width: 640px;
margin: 10px 0 0;
padding: 0.3rem 0.8rem 0.25rem;
border-radius: 10px;
overflow-wrap: break-word;
font-size: 1.05rem;
clear: both;
box-sizing: content-box;/*はてな用*/
}
/*フキダシ左*/
.kaiwaLine .fukidasi.left {
  float: left;
  margin-left: 50px;
  background: white;
  margin-bottom: 1.2rem;
}
/*グループのときのフキダシ*/
.kaiwaLine .name + .fukidasi.left {
margin-top: 5px;
}
/*フキダシ右*/
.kaiwaLine .fukidasi.right {
float: right;
margin-right: 12px;
background: #7adc40;
}
/*相手の名前*/
.kaiwaLine .name {
clear: both;
margin-left: 48px;
font-size: 0.95rem;
color: white;
}
/*ユーザアイコン*/
.kaiwaLine .icon {
position: absolute;
width: 36px;
height: 36px;
left: -54px;
top: -2px;
border-radius: 18px;
}
/*グループのときのユーザアイコン*/
.kaiwaLine .name + .left .icon {
top: -1.8em;
}
/*しっぽ共通*/
.kaiwaLine .fukidasi::after {
position: absolute;
content: "";
width: 24px;
height: 36px;
top: -21px;
}
/*しっぽ左*/
.kaiwaLine .fukidasi.left:after {
left: -10px;
border-radius: 18px 0 6px 18px/18px 0 1px 18px;
box-shadow: -3px -15px 0 -5px white inset;
}
/*しっぽ右*/
.kaiwaLine .fukidasi.right::after {
right: -10px;
border-radius: 0 18px 18px 6px/0 18px 18px 1px;
box-shadow: inset 3px -15px 0 -5px #7adc40;
}
/*フキダシが続いてしっぽがないとき*/
.kaiwaLine .left + .left::after,
.kaiwaLine .right + .right::after {
content: none;
}

/* コンテンツ ボタン */
.btnBlock {  /* 複数あるとき */
  display:-webkit-box;
	display:-ms-flexbox;
	display:flex;  
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;  
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.btnBlock .contBtn {
  margin: 0 1.0rem;
}
.contBtn {
	text-align: center;
  padding-bottom: 1.6rem;
}
.contBtnArr {
  text-align: center;
  margin-bottom: 0.2rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: #ffffff;
}
.contBtn .btnLink {
  min-width: 144px;
	padding: 1.0rem 3.2rem;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
  -webkit-background: linear-gradient( 180deg, #000000 0%, #0a3a56 78%, #095079 100% );
  background: linear-gradient( 180deg, #000000 0%, #0a3a56 78%, #095079 100% );
	border: 2px solid #ffffff;
	font-size: 1.1rem;
  font-weight: 500;
	display: inline-block;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
  -webkit-box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 16%);
  box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 16%);
}
.contBtn .rsvLink {  /*予約用 */
  min-width: 144px;
	padding: 1.0rem 3.2rem;
	text-align: center;
	text-decoration: none;
	color: #ffffff;
  -webkit-background: linear-gradient( 331deg, #543b04 0%, #9c7234 78%, #775407 100% );
  background: linear-gradient( 331deg, #543b04 0%, #9c7234 78%, #775407 100% );
	border: 2px solid #ffffff;
	font-size: 1.1rem;
  font-weight: 500;
	display: inline-block;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: relative;
	overflow: hidden;
  -webkit-box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 16%);
  box-shadow: 0px 4px 10px 1px rgb(0 0 0 / 16%);
}
.contBtn .btnLink:before, .contBtn .rsvLink:before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  height: 100%;
  width: 2.4rem;
  display: block;
  position: absolute;
  top: 0;
  left: -4.2rem;
  -webkit-transform: skewX(-45deg) translateX(0);
  transform: skewX(-45deg) translateX(0);
  -webkit-transition: none;
  transition: none;
}
.contBtn .btnLink:hover, .contBtn .rsvLink:hover {
	background-color: #095079;
	color: #fff;
  box-shadow: none;
}
.contBtn .btnLink:hover:before, .contBtn .rsvLink:hover:before {
	-webkit-transform: skewX(-45deg) translateX(25.0em);
	transform: skewX(-45deg) translateX(25.0em);
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.contBtn .btnLink > span::before, .contBtn .rsvLink > span::before {
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  left: 7px;
  top: 7px;
}
.contBtn .btnLink > span::before, .btnLink > span::after, .contBtn .rsvLink > span::before, .rsvLink > span::after {
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  position: absolute;
}
.contBtn .btnLink > span::after, .contBtn .rsvLink > span::after {
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  right: 7px;
  bottom: 7px;
}
@media screen and (max-width: 767px) {
  .btnBlock {
    display: block;
    margin-bottom: 3.2rem;
  }
  .btnBlock > div:first-child {
    margin-bottom: 1.0rem;
}
  .btnBlock .contBtn {
    margin: 0 auto;
  }
  .contBtn .btnLink {
    padding: 0.6rem 0;
    font-size: 0.92rem;
    width: 300px;
  }
}

/* パンくずリスト */
.breadcrumb {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.6rem 1.0rem 0;
  font-size: 0.9rem;
  text-align: right;
  color: #ffffff;
  z-index: 1;
}
.breadcrumb a {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    padding: 0.6rem 0.6rem 0 0;
  }
}

/* 背景アニメ */
@keyframes kingyoHistoryAnime {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0.2;
        border-radius: 50%;
    }
}

.background {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
   -webkit-background: linear-gradient( 180deg, #000000 0%, #0a3a56 74%, #095079 100% );
  background: linear-gradient( 180deg, #000000 0%, #0a3a56 74%, #095079 100% );
  overflow: hidden;
}
.background li {
  position: absolute;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.2);
  animation: kingyoHistoryAnime 16s linear infinite;
}
.background li:nth-child(1) {
  left: 61%;
  width: 84px;
  height: 84px;
  bottom: -84px;
  animation-delay: 6s;
  background-image: url("../history/his08.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(2) {
    left: 86%;
    width: 105px;
    height: 105px;
    bottom: -105px;
    animation-delay: 3s;
  background-image: url("../history/his01.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(3) {
  left: 46%;
  width: 108px;
  height: 108px;
  bottom: -108px;
  animation-delay: 13s;
  background-image: url("../history/his02.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(4) {
  left: 20%;
  width: 101px;
  height: 101px;
  bottom: -101px;
  animation-delay: 12s;
  background-image: url("../history/his03.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(5) {
  left: 24%;
  width: 119px;
  height: 119px;
  bottom: -119px;
  animation-delay: 1s;
  background-image: url("../history/his04.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(6) {
  left: 7%;
  width: 108px;
  height: 108px;
  bottom: -108px;
  animation-delay: 5s;
  background-image: url("../history/his05.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(7) {
  left: 77%;
  width: 105px;
  height: 105px;
  bottom: -105px;
  animation-delay: 10s;
  background-image: url("../history/his06.jpg");
  background-position: center;
  background-size: cover;
}
.background li:nth-child(8) {
  left: 30%;
  width: 96px;
  height: 96px;
  bottom: -96px;
  animation-delay: 8s;
  background-image: url("../history/his07.jpg");
  background-position: center;
  background-size: cover;
}

