
html{
    font-size: 62.5%;
}

body{
  font-size: 1.6rem;
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  line-height: 2;
  letter-spacing: 2px;
}

/* ヘッダー領域 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

header {
    padding-bottom:10px;
    background-image: url(../image/header_bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
}

@media screen and (max-width:768px) { /* スマホ */
  header {
    padding-bottom:0px;
  }
}


.header_information {
    color:#444444;
    display: inline-block;
    float: right;
    font-weight: ;
    font-size:80%;
    vertical-align: middle;
    text-align:right;
    margin:10px;
    line-height:1.3;
  }


.bread {
    background-color:#507ea4;
    margin:0px 0px 10px 0px;
    padding:5px;
    font-size:90%;
    color:#fff;
}

.bread a{
    color:#fff;
}


/* ナビゲーション ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.gnav{
    background-color: rgba(255,255,255,0.7);
    width: 95%;
    border-radius: 10px;
    padding:5px;
    margin:5px;
    text-align:center;
    font-size:min(3vw,16px);
}
.gnav:hover{
    background-color: rgba(248,229,140,0.9);
    text-decoration: none;
}
.gnav a{
    color:#000;
    text-decoration: none;
}

.gnav a:hover{
    text-decoration: none;
}


.circle{
	background-color: #a0d8ef;
  width: 120px;
  max-width:100%;
	height: 50px;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  margin:5px auto;
  display: flex;
  justify-content: center; /*左右中央揃え*/
  align-items: center;     /*上下中央揃え*/
}

.circle_icon{
  color:#fff;
  font-size:40px;
}




/* 画像 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.introduction_picture {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  height:;
  width: 100%;
  height: 280px;
  object-fit: cover;
  font-family: 'object-fit: cover; object-position: center center;'
}


/* ハンバーガーメニュー ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.wrapper {
  height: 100%;
  overflow-x: hidden;
  position: relative;
}
.overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .5s;
}
.overlay.open {
  width: 100%;
  height: 100%;
  opacity: 0; /* 暗くする場合は1 */
}
main {
  height: 100%;
  min-height: 100vh;
  padding: 0 50px;
  background-color: #eee;
  transition: all .5s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main.open {
  transform: translateX(-250px);
}
main h1 {
  text-align: center;
  font-weight: 500;
}
main p {
  text-align: center;
}
.menu-trigger {
  display: inline-block;
  width: 36px;
  height: 28px;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 6000;
/*   transform: translateX(0);
  transition: transform .5s;
 */}
/* .menu-trigger.active {
  transform: translateX(-250px);
}
 */.menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  transition: all .5s;
}
.menu-trigger.active span {
  background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
  transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
  top: 12px;
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

.hamburger nav {
  width: 300px;
  height: 100%;
  overflow-y: scroll; /* ナビの中でのスクロールを可とする */
  -webkit-overflow-scrolling: touch; /* 慣性スクロールを追加 */
  -ms-overflow-style: none;  /* スクロールバー消す。IE、Edge 対応 */
  padding-top: 70px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 70px;
  background-color: rgb(39, 74, 120, 0.7); /* ★メニュー背景色 */
  position: fixed;
  top: 0;
  right: 0;
  z-index: 5000;
  transform: translate(300px);
  transition: all .2s;
}

.hamburger nav::-webkit-scrollbar {  /* スクロールバー消す。Chrome, Safari 対応 */
  display:none;
}

.hamburger nav.open {
  transform: translateZ(0);
}


.menulist{
  text-align:left;
  list-style: none;
}
.menulist ul{
  padding-left: 0px;
}
.menulist li{
  position: relative;
  margin-bottom: 3px;
  padding-left: 30px;
  line-height: 4;
  font-weight: bold;
  color: #5ab0f9;
  border: solid 1px #5ab0f9;
  overflow: hidden;
  background-color:rgba(255,255,255,0.9);
}
.menulist li:before{
  font-family: FontAwesome;
  content: "";
  position: absolute;
  left: 0.5em;
  font-size: 1.2em;
  font-weight: normal;
}
.menulist li:after{
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  height:0;
  width: 100%;
  background : #5ab0f9;
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
.menulist li:hover a{
  color: #fff;
}
.menulist li:hover:after{
  height: 840%;
  opacity: 1;
}
.menulist li:active:after{
  height: 1000%;
  opacity: 1;
}





/* フッター領域 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
footer {
  width:100%;
  background-color:#2ca9e1;
  bottom:0px;
  color: #fff;
  text-align:center;
  padding: 30px 10px;
  margin-top:40px;
}

footer a {
  color: yellow;
  font-weight:bold;
  
}
footer a:hover{
  color: yellow;
  text-decoration: none;
}

#top_button{
  position:absolute;
  padding-top:10px;
  margin-top:-100px;
  font-size:40px;
  right:0;
  margin-right:15px;
  width:60px;
  height:60px;
  border-radius: 30px;
  text-align:center;
  background-color:#19448e;
}

#top_button:hover{
  cursor: pointer;
}

/* ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */


h1 {
  font-size: 3.0rem;
  font-weight:bold;
  letter-spacing: 4px;
  background: #b0dcfa;
  padding: 0.5em;
  color: white;
  border-radius: 0.5em;
  line-height:1.4;
}


.h1_introduction {
  margin: 0px 20px;
  text-align:left;
}


h2 {
  font-size: 2.8rem;
  font-weight: bold;
  color:#507EA4;
  text-align:left;
  position: relative;
  margin:40px auto 15px auto;
  padding-bottom:10px;
  letter-spacing: 3px;
  line-height:1.4;
}

h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, #89c3eb, #89c3eb 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #89c3eb, #89c3eb 2px, #fff 2px, #fff 4px);
}


.h2_introduction {
  color:#274a78;
  font-size:2.2rem;
  font-weight:bold;
  margin: -10px auto 10px auto;
  text-align:left;
}


h3{
    color:#1D7FDE;
    font-size: 2.0rem;
    font-weight:bold;
    text-align: left;
    margin: 20px auto 10px auto;
    padding-bottom: 5px;
    border-bottom: solid 3px #c1e4e9;
    letter-spacing: 2px;
    line-height:1.4;
}

.h3_introduction {
  color:#192f60;
  font-weight:bold;
  margin: 10px auto;
  text-align:right;
}


h4{
    font-weight: bold;
    text-align: left;
    border-bottom: solid 2px #acddee;
    padding:5px 0px;
    color: #44bbee;
    margin: 20px auto 10px auto;
}



.h4_introduction {
  font-weight:bold;
  margin: 10px auto;
  text-align:right;
}

h5{
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}

.page_introduction {
    margin: 40px 0px 20px 0px;
    text-align:left;
    font-size: 2.4rem;
    line-height: 1.5;
}

.index_introduction_index {
  font-size: 2.0rem;
}
@media screen and (max-width:768px) { /* スマホ */
  .index_introduction_index {
    font-size: 1.8rem;
  }
}


p{
    margin:20px 10px;
    text-align:left;
}

.photo_caption{
    margin: 10px;
    font-size: 90%;
    text-align:left;
}




.picture {
	text-align:center;
}

.picture img {
	height:auto;
	max-width:100%;
	margin: 0px auto 0px auto;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}


/* トップピックアップ上の文字用 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

/*トップ画像部のピックアップコンテンツ情報表示部*/
.topimage_contents_info{
	width:100%;
	position: absolute;
	bottom: 0;
	right: 0;
	margin:0px;
	padding: 30px 10px 10px 10px;
	background:linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
	color:#fff;
}

.topimage_contents_info a{
	color:#fff;
}


/* 下部固定ボタン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.footer_fix_btn {
  position:fixed;
  z-index: 1000;
  bottom:0;
  right:0;
  border-top:0px solid #ffffff;
  background: rgba(0,0,0,0);
}
.footer_fix_btn a {
  text-decoration:none;
  opacity:0.8;
}
.footer_fix_btn a:hover {
  opacity:1.0;
}



/* 下部固定ボタン（左） ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.footer_fix_btn_left {
  position:fixed;
  z-index: 1000;
  bottom:0;
  left:0;
  border-top:0px solid #ffffff;
  background: rgba(0,0,0,0);
}
.footer_fix_btn_left a {
  text-decoration:none;
  opacity:0.8;
}
.footer_fix_btn_left a:hover {
  opacity:1.0;
}

/* 文字に縁取り ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */


.text-outline {
  text-shadow    : 
       2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
       2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
       2px  0px 1px #ffffff,
       0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
       0px -2px 1px #ffffff;        /* 文字の影 */
}



/* 恋人の聖地枠 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.koibito {
    padding: 0.2em 0.5em;
    margin: 2em 1em;
    color: #565656;
    background: #ffeaea;
    box-shadow: 0px 0px 0px 10px #ffeaea;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.koibito p {
    margin: 10px; 
    padding: 0;
}


/* リンク ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
a{
  color:#007bbb;
  font-weight:bold;
  text-decoration: none;
  border-bottom: 0px solid #007bbb;
  margin:0px 5px 0px 5px;
}
a:focus{
  font-weight:bold;
  text-decoration: none;
}

a:hover{
  font-weight:bold;
}

/* スワイパー画像のリンクで隙間ができないように */
.swiper-slide a{
  margin:0px 0px 0px 0px;
}


@media screen and (max-width:768px) { /* スマホ */
  a:hover{
    text-decoration: none;
    font-weight:bold;
  }
}


.banner a img {
  padding: 3px;
  border: 1px solid #007bbb;
  transition: 0.2s;
}

.banner a:hover img{
  border: 1px solid #007bbb;
  background: #007bbb;
  border-bottom: 0px solid #007bbb;
}



 {
  max-width: 80%;
  margin: 10px auto;
}


.link_btn {
    background: #6bb6ff;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    max-width: 90%;
    padding: 5px 10px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: 600;
    border-radius: 5px;
    border-bottom: 4px solid #1d7fde;
    overflow: hidden;
}
.link_btn :active {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.link_btn :hover {
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
  color:#ccc;
}


.link_btn :before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.link_btn :after {
  content: '»';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}



.floor_btn {
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    border-bottom: 4px solid rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: absolute;
    width:100px;
    margin:auto;
    right:70px;
  }
.floor_btn :active {
  //transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}
.floor_btn :hover {
  //transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
  color:#ccc;
}

.floor_btn :before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background-image: linear-gradient( 130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 55%);
  animation: shine 3s infinite;
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.floor_btn :after {
  content: '»';
  display: inline-block;
  color: #fff;
  padding-left: 10px;
  font-size: 20px;
}



/* ラベル ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.content_label {
  font-size:120%;
  position: relative;
  display: inline-block;
  margin: 1rem 0 1rem -20px;
  padding: 1rem 3rem;
  color: #fff;
  border-radius: 0 100vh 100vh 0;
  background: #0075a9;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
}

.content_label:before {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 0;
  content: '';
  border-top: 10px solid #005276;
  border-left: 10px solid transparent;
}




/* アイコン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

/* Google Material Iconsが上にずれる問題の解決 */
.material-icons-round {
  display: inline-flex;
  vertical-align: middle;
}

/* Google Material Iconsアイコンのサイズを変更するためのルール */
.material-icons.md-10 { font-size: 10px; }
.material-icons.md-20 { font-size: 20px; }
.material-icons.md-30 { font-size: 30px; }
.material-icons.md-40 { font-size: 40px; }

/* 明るい背景の場合に黒色でアイコンを表示するためのルール */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* 暗い背景の場合に白色でアイコンを表示するためのルール */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }



/* アニメーション ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}




/* 必須項目 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.hissu{
  font-weight:bold;
  color: red;
}

/* フォームの記入補足 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
 .contact_hosoku{
   margin:10px;
   font-size:1.4rem;
   color: #777;
 }


/* PCとスマホの表示分け ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.pc_only {
	display:block;
}
@media screen and (max-width:768px) {
.pc_only {
	display:none;
}
}
.pc_only_span {
	display:inline;
}
@media screen and (max-width:768px) {
.pc_only_span {
	display:none;
}
}

.sp_only {
	display:none;
}
@media screen and (max-width:768px) {
.sp_only {
	display:block;
}
}
.sp_only_span {
	display:none;
}
@media screen and (max-width:768px) {
.sp_only_span {
	display:inline;
}
}


/* ブートストラップグリッドの..containerと.row のpaddingとmarginを0にする ～～～～～～～～～～～～～～～～ */
.sukima-0 {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

/* 上記の中にあるカラムの左右の隙間も0にする ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.sukima-0 > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}


/* divをクリア ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.clear {
    clear: both;
}

/* センタリング ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.center {
    margin: 0 auto;	
    text-align:center;
}


/* 切り替えボタン ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.kirikae_button_on {
  position: relative;
  text-align: left;
  height:34px;
  font-size:1.4rem;
  color: #fff;
  font-weight: bold;
  padding: 5px 32px 5px 10px;
  display: inline-block;
  line-height: 1.4;
  background: #44aa22;
  vertical-align: middle;
  border:2px solid #ddd;
  border-radius: 25px;
  outline: none;
}

.kirikae_button_on:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    right: 5px;
    background: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 2px #227722;
}

.kirikae_button_on:hover {
	background: #66cc44;
	border:2px solid #fff;
}

.kirikae_button_off {
  position: relative;
  text-align: right;
  height:34px;
  font-size:1.4rem;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px 5px 32px;
  display: inline-block;
  line-height: 1.4;
  background: #cc2244;
  vertical-align: middle;
  border:2px solid #ddd;
  border-radius: 25px;
  outline: none;
}

.kirikae_button_off:after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    top: 5px;
    left: 5px;
    background: #fff;
	border-radius: 20px;
	box-shadow: 0px 1px 2px #772222;
}

.kirikae_button_off:hover {
	background: #ee4466;
	border:2px solid #fff;
}





/* ローディング画像 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

#loading {
  display: table;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0.8;
}
 
#loading .loadingMsg {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
  padding-top: 140px;
  background: url("../image_common/loading.gif") center center no-repeat;
  font-size:3.0rem;
  font-weight:bold;
}



/* 各ページの次・前リンク ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.prev-next-link {
  margin-top: 40px;
}
.prev-next-link a {
  border-bottom: 1px #ddd solid;
  display: block;
  text-decoration: none;
  padding: 14px 20px;
  color: #0bd;
  font-size: 2.0rem;
}
.prev-next-link a:hover {
  background-color: #f6f6f6;
}
.prev-next-link a:first-child {
  border-top: 1px #ddd solid;
}

/* Arrows */
.prev-link {
  text-align:left;
}
.next-link {
  text-align:right;
}


/* Larger devices */
@media ( min-width: 600px) {
  .prev-next-link {
    display: flex;
  }
  .prev-next-link a {
    flex: 1;
  }
  .prev-next-link a,
  .prev-next-link a:first-child {
    border: none;
  }
  .next-link {
    text-align: right;
  }
}
