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

@import url(https://fonts.googleapis.com/css?family=Monda);
@import url(https://fonts.googleapis.com/css?family=Lato:900&display=swap);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Noto+Serif+JP:600&display=swap&subset=japanese);
@import url(https://fonts.googleapis.com/css?family=Roboto:700&display=swap);
@import url('https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');
@import url(https://use.fontawesome.com/releases/v5.10.2/css/all.css);

/*横の半分こ*/
.oneArea {
  background: linear-gradient(90deg, #fdf1cb 0%, #f0bc68 50%, #c4d7d1 50%, #e4f6f1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
　padding: 0px;
　margin: 0px;
}
/*横の半分こ*/

.bottom-right {
  position: absolute;
  bottom: 25px;
  right: 25px;
	opacity: 0.60; /* 60％不透明度(＝40％透過) */
}

/* 画像の上に文字をのせる　before */
.before {
  position: relative;
  }

.before p {
  position: absolute;
  bottom: 0;/*画像の左上に配置*/
  left: 0;
  margin: 0; /*余計な隙間を除く*/
  color: white;/*文字を白に*/
  background: black;/*背景色*/
  font-size: 16px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
  }

.before img {
  width: 100%;
  }
/* 画像の上に文字をのせる　before */


/* 画像の上に文字をのせる　after */
.after {
  position: relative;
  }

.after p {
  position: absolute;
  bottom: 0;/*画像の左上に配置*/
  left: 0;
  margin: 0; /*余計な隙間を除く*/
  color: white;/*文字を白に*/
  background: crimson;/*背景色*/
  font-size: 16px;
  line-height: 1;/*行高は1に*/
  padding: 5px 10px;/*文字周りの余白*/
  }

.after img {
  width: 100%;
  }
/* 画像の上に文字をのせる　after */

.display-4 {
	line-height: 180%;
}

/*ライン*/
.under {
  padding: 0.5rem 0;
    margin-bottom: 0.2rem;
    border-bottom: 5px solid #b4b7b9;
    font-weight: bold;
    font-size: 26px;
	width: 80px;
}

/*グリッド上部を斜めに*/
.angle-box {
  position: relative;
  padding: 40px;
  background: white; /* コンテンツの背景はそのまま */
  overflow: visible; /* 切られないように */
}

.angle-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fbfbfb;
  z-index: -1; /* 背景の後ろに配置 */

  /* ここで背景だけ斜めにする */
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0% 100%);
}
/*グリッド上部を斜めに*/

/*スクロール促すアニメション*/
/* スクロールダウンの位置 */
.scroll {
  position: absolute;
  right: 3%;
  bottom: 15%;
  writing-mode: vertical-rl;
  color: #fff;
	z-index: 20;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #fff;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/*スクロール促すアニメション*/


/*円にする*/
.circle-element {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}

/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span{opacity: 0;}
.eachTextAnime.appeartext span{ animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
/*========= 1文字ずつ出現させるためのCSS ===============*/


/*=== 9-1-2 丸が動いてスクロールを促す ====*/

/*スクロールダウン全体の場所*/
.scrolldown2{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	bottom:10px;
	left:50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span{
    /*描画位置*/
	position: absolute;
	left:10px;
	bottom:10px;
    /*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom:0;
    left:-4px;
    /*丸の形状*/
	width:10px;
	height:10px;
	border-radius: 50%;
	background:#eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite,
		cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove{
      0%{bottom:45px;}
     100%{bottom:-5px;}
 }

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
	100%{opacity:0;}
 }

/* 線の描写 */
.scrolldown2:after{
	content:"";
    /*描画位置*/
	position: absolute;
	bottom:0;
	left:0;
    /*線の形状*/
	width:2px;
	height: 50px;
	background:#eee;
}
/*=== 9-1-2 丸が動いてスクロールを促す ====*/


/* 拡大スライド */
.Opening {
  position: relative;
  background-color: #FFF;
  margin: 0;
}

.Opening ul {
  margin: 0;
}

.Opening ul li{
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

/* ★ グラデーション追加 */
.Opening ul li::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 5;
}

/* 文字はグラデーションより前に */
.Opening ul li .Opening__text{
  color: #FFFFFF;
  text-shadow:1px 2px 3px #808080;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
  z-index: 10;   /* ← 9 → 10 に変更 */
  width: 80%;
}

.Opening ul li img.Opening__text{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
  z-index: 10;   /* ← 9 → 10 に変更 */
}

.Opening ul li span img.Opening__img{
  max-width: inherit;
  width: 100%;
  height: auto;
}
/* 拡大スライド */

/* 拡大スライド */
/*.Opening {
position:relative;
background-color: #FFF;
margin: 0;
}
.Opening ul {
  margin: 0;
}
.Opening ul li{
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}
.Opening ul li .Opening__text{
  color: #FFFFFF;
  text-shadow:1px 2px 3px #808080;
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
  z-index: 9;
	width: 80%;
}
.Opening ul li img.Opening__text{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform:translate(-50%, -50%);
  z-index: 9;
}
.Opening ul li span {
}
.Opening ul li span img.Opening__img{
  max-width: inherit;
  width: 100%;
  height: auto;
}*/
/* 拡大スライド */


.item img {
width:100%;}

.fluid2 {
padding:0;
margin: 0;
overflow: hidden;
}

/* GoogleMap埋め込みレスポンシブ対応 */
.gmap {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
  
.gmap iframe,
.gmap object,
.gmap embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* GoogleMap埋め込みレスポンシブ対応 */

/*.mincho { font-family: "Noto Serif JP"; }*/

.mincho { font-family: 'Shippori Mincho'; }

.allura { font-family: 'Allura'; }


a:link  {
-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

.text-green {
color: #71b267;
}

.text-navy {
color: #1a3c63;
}

footer {
    background-color:#1a4677;
    color: #fff;
}


.footer-copyright {
	color: #fff;
    background-color:#1a3c63;
}

/* 縦書き */
.vertical {
    writing-mode: vertical-lr;
　-webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;
transform:translate(-20%, -30%);
    }
/* 縦書き */

/* コンテンツをスライド */
#slideR {
	z-index: 99;
	cursor: pointer;
	position: fixed;
	top: 40%;
	right: -240px;
	background-color: rgba(26,70,119,0.8); /* 26,70,119 */
	width: 280px;
    height:auto;
	color: #fff;
	font-size: 14px;
}
#slideR a {
	color: #fff;
	display: block;
	padding: 5px 10px;
}
#slideR ul {
	position: relative;
	padding: 10px 10px 10px 40px;
    text-align: center;
}

#slideR ul li {
    list-style-type: none;
}   

#slideR .nav-icon {
	position: absolute;
	left: 10px;
	top: 40%;
	font-size: 20px;
    text-align: center;
}
/* コンテンツをスライド */

/* アンダーライン赤色 */
.under-red {
  background: linear-gradient(transparent 60%, #fef1f4 60%);
}

/* アンダーライン緑色 */
.under-green {
  background: linear-gradient(transparent 60%, #f3fdea 60%);
}

/* アンダーライン黄色 */
.under-yellow {
  background: linear-gradient(transparent 60%, #fdffe9 60%);
}

.ccf {
	font-size: 2.5rem;
	line-height: 180%;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 0.5rem;
}

h1 {
	line-height: 180%;
}
.h1 {
	line-height: 180%;
}

h2 {
	line-height: 180%;
}

.h2 {
	line-height: 180%;
}

h3 {
	line-height: 180%;
}

.h3 {
	line-height: 180%;
    margin-bottom: 20px;
}

h4 {
	line-height: 180%;
}

.h4 {
	line-height: 180%;
}

.display-3 {
	line-height: 180%;
}

.small {
	line-height: 100%;
    font-size:95%;
}

.x-small {
	line-height: 100%;
    font-size:50%;
}

.sp {
    display: none;
}

.splh {
    line-height: 100%;
}

.medium {
	font-size: 1.25rem;
	margin-bottom: 0.8rem;
	font-weight: 500;
	line-height: 180%;
}

.pc {
    display: block;
}


.tel {
    font-family:  'Hanken Grotesk','Roboto','Lato','Monda', "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
    line-height: 100%;
}

.f-rb {
    font-family: 'Roboto','Lato','Monda', "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
}

/* バーガーメニューアニメーション */
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 0px;
  width: 30px;
  height: 40px;
  box-sizing: border-box;
  position: relative;
	outline: none;
}
.navbar-light .navbar-toggler-icon {
  background-image:none; /* この行で背景画像を無効化 */
  background-color: #333;
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  transition: ease .5s;
}

/* 3本のバーそれぞれの座標を設定 */
.navbar-toggler-icon:nth-of-type(1) {top:7px;}
.navbar-toggler-icon:nth-of-type(2) {top:14px;}
.navbar-toggler-icon:nth-of-type(3) {top:21px;}

/* メニューが開いている時の　3本のバーそれぞれの座標および角度を設定 */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
top:13px;
transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
top:13px;
transform: rotate(-45deg);
}


/* ハンバーガーメニューの枠線を消すCSS */
.navbar-light .navbar-toggler {
    border-color: rgba(0,0,0,0);
}

/* 文字をフワッと表示のCSS */
.fadein {
    animation-name: fadein;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-direction: normal;
}
@keyframes fadein {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


/* cover背景画像のCSS */
.cover-img {
	height: 300px;
	display: table;
	width: 100%;
	background-size: cover;
}

.cover-text {
	display: table-cell;
	vertical-align: middle;
  text-align: center;
}

body {
	line-height: 200%; /*"Noto Serif JP" 明朝体　'Monda'*/
	font-family: "Heebo","Noto Sans Japanese", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo;
	font-size:17px;
	animation: fadeIn 2s ease 0s 1 normal; /* ここから下の行は読み込み時にフェードイン */
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


.contents { /* 背景を全体的に斜めにして右傾斜 */
	position: relative;
	overflow: hidden;
	margin-top: 2%;
	margin-right: 0;
	margin-bottom: 2%;
	margin-left: 0;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
}
.contents:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 130%;
	height: 70%;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	z-index: -1;
	margin-top: 3%;
	margin-right: -15%;
	margin-bottom: 0;
	margin-left: -15%;
	background-color: #6699CC;
}
.contents_inner {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-width: 1000px;
	height: 100%;
	margin: 0 auto;
	padding: 100px 20px 120px;
	color: #fff;
	text-align: center;
}
.contents_inner h1 {
	margin-bottom: 20px;
	font-size: 2em;
}


.contents2 { /* 背景を全体的に斜めにして左傾斜 */
	position: relative;
	overflow: hidden;
	margin-top: 2%;
	margin-right: 0;
	margin-bottom: 2%;
	margin-left: 0;
	padding-top: 80px;
	padding-right: 0;
	padding-bottom: 80px;
	padding-left: 0;
}
.contents2:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 130%;
	height: 70%;
	background: #011931;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	z-index: -1;
	margin-top: 3%;
	margin-right: -15%;
	margin-bottom: 0;
	margin-left: -15%;
}
.contents2_inner {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	max-width: 1000px;
	height: 100%;
	margin: 0 auto;
	padding: 100px 20px 120px;
	color: #fff;
	text-align: center;
}
.contents2_inner h1 {
	margin-bottom: 20px;
	font-size: 2em;
}


#scrollUp { /* スクロールアップ */
	bottom: 10px;
	right: 10px;
	background-image: url("../image/up.png");
    background-size:45px 45px;
	width: 45px;
	height: 45px;
}
#scrollUp:hover {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.7;
}

.nav-item{ /* 各ナビ間隔の余白調整のCSS */
	/*padding-left: 10px;*/
	padding-left: 5px;
	padding-right: 5px;
}

.navbar-text{ /* 各ナビテキスト間隔の余白調整のCSS */
	padding-left: 10px;
}


/* ------------- スクロールフェードインDown用 ------------- */
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
/* ------------- スクロールフェードインDown用 END ------------- */
   
    
/* ------------- クロールすると下からスふわっとコンテンツがフェードイン ------------- */
 .fadeInUp {
  opacity : 0;
  transform: translateY(20px);
  transition: 1s;
}   
/* ------------- クロールすると下からスふわっとコンテンツがフェードイン ------------- */


/* ワイドスクリーン用のCSS */
@media only screen and (min-width: 1500px) {
	
/*グリッドの上部をアーチにする*/
.arch50-element {
  border-top-left-radius: 50%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
.arch20-element {
  border-top-left-radius: 20%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}

		
	.cover-img {
		height: 400px;
	}

.navbar{ /* ナビバー背景を不透過のCSS */
    border-radius: 0;
    border: none;
    background-color: rgba(255,255,255,0.8);
}
   

footer{ /* フッターの上下余白調整のCSS */
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}


.button { /* 中央から左右に開くボタンのCSS */
  display: inline-block;
  width: 400px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.button:hover {
  background-color: #fff;
  border-color: #0a4d97;
  color: #0a4d97;
  text-decoration: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0a4d97;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  
}
.button::before {
  right: 0;
}
.button::after {
  left: 0;
}
.button:hover::before,
.button:hover::after {
  width: 0;
  background-color: #0a4d97;
}



.button2 { /* 奥から背景をふわっと表示させる */
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  text-shadow: none;
}
.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button2 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #0a4d97;
  color: #0a4d97;
  line-height: 50px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}
.button2:hover {
  color: #fff;
  text-decoration: none;
}
.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.button2:hover::after {
  background: #0a4d97;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.button3 {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button3::before,
.button3::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button3,
.button3::before,
.button3::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button3 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
	text-shadow: none;
}
.button3:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}

.button4 {
  display: inline-block;
  width: 140px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button4::before,
.button4::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button4,
.button4::before,
.button4::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button4 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
}
.button4:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}
    

.breadcrumb{ /* パンくずリスト背景色のCSS */
  background-color: white;
}



a.thumnail { /* マウスオーバーで画像がにゅるっと拡大 */
    display: block;
    overflow: hidden;
    width: 100%;
}
 
.thumnail img {
    height: auto;
    -webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    width: 100%;
    vertical-align: bottom;
}
 
figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}
 
figcaption {
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    opacity: 0;
    font-size: 16px;
    font-size: 1.6rem;
    position: absolute;
    text-align: center;
    -webkit-transition:all 0.25s ease-in-out;
        transition:all 0.25s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 25%;
}
 
a:hover>figure img {
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
}
 
a:hover>figure figcaption {
    opacity: 1;
}

.nav-item{ /* 各ナビ間隔の余白調整のCSS */
	/*padding-left: 10px;*/
	padding-left: 5px;
	padding-right: 5px;
}


}

/* タブレット用のCSS */
@media only screen and (min-width : 768px) and (max-width : 1499px) {　/*変更前 max-width: 1200px */
	
/*グリッドの上部をアーチにする*/
.arch50-element {
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}

.arch20-element {
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
	.cover-img {
		height: 300px;
	}
	
.fs90 {
		font-size: 90%;
	}

.toggler__txt{ /* 3本線の下文字表示 */
	display: block;
	font-size : 0.5em;
	margin-top: 5px;
	color: #000;
  }

.navbar{ /* ナビバー背景を不透過のCSS */
    border-radius: 0;
    border: none;
    background-color: rgba(255,255,255,0.8);
}

footer{ /* フッターの上下余白調整のCSS */
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

.button { /* 中央から左右に開くボタンのCSS */
  display: inline-block;
  width: 400px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.button:hover {
  background-color: #fff;
  border-color: #0a4d97;
  color: #0a4d97;
  text-decoration: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0a4d97;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  
}
.button::before {
  right: 0;
}
.button::after {
  left: 0;
}
.button:hover::before,
.button:hover::after {
  width: 0;
  background-color: #0a4d97;
}


.button2 { /* 奥から背景をふわっと表示させる */
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  text-shadow: none;
}
.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button2 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #0a4d97;
  color: #0a4d97;
  line-height: 50px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}
.button2:hover {
  color: #fff;
  text-decoration: none;
}
.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.button2:hover::after {
  background: #0a4d97;
  -webkit-transform: scale(1);
  transform: scale(1);
}

	.button3 {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
		border-radius: 30px;
}
.button3::before,
.button3::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button3,
.button3::before,
.button3::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button3 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
	text-shadow: none;
}
.button3:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}
	
.button4 {
  display: inline-block;
  width: 140px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button4::before,
.button4::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button4,
.button4::before,
.button4::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button4 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
}
.button4:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}
	

.breadcrumb{ /* パンくずリスト背景色のCSS */
  background-color: white;
}


a.thumnail { /* マウスオーバーで画像がにゅるっと拡大 */
    display: block;
    overflow: hidden;
    width: 100%;
}
 
.thumnail img {
    height: auto;
    -webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    width: 100%;
    vertical-align: bottom;
}
 
figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}
 
figcaption {
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    opacity: 0;
    font-size: 16px;
    font-size: 1.6rem;
    position: absolute;
    text-align: center;
    -webkit-transition:all 0.25s ease-in-out;
        transition:all 0.25s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 25%;
}
 
a:hover>figure img {
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
}
 
a:hover>figure figcaption {
    opacity: 1;
}

.tb {
    display: none;
}
    
.tb-font {
	line-height: 100%;
    font-size:80%;
}

}

/* スマホ用のCSS */
@media only screen and (max-width: 767px) {　/*変更前 max-width: 479px */
	
/*グリッドの上部をアーチにする*/
.arch50-element {
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
.arch20-element {
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
	.cover-img {
		height: 300px;
	}

.toggler__txt{ /* 3本線の下文字表示 */
	display: block;
	font-size : 0.5em;
	margin-top: 5px;
	color: #000;
  }
	
	.sph1 { /* スマホ時のh1の文字縮小のCSS */
    font-size: 2.0rem;
}
	
	.sph2{
	font-size: 1.8rem;
}
    
.navbar{ /* ナビバー背景を不透過のCSS */
    border-radius: 0;
    border: none;
    background-color: rgba(255,255,255,0.95);
}

footer{ /* フッターの上下余白調整のCSS */
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

.button { /* 中央から左右に開くボタンのCSS */
  display: inline-block;
  width: 100%;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.button:hover {
  background-color: #fff;
  border-color: #0a4d97;
  color: #0a4d97;
  text-decoration: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0a4d97;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  
}
.button::before {
  right: 0;
}
.button::after {
  left: 0;
}
.button:hover::before,
.button:hover::after {
  width: 0;
  background-color: #0a4d97;
}


.button2 { /* 奥から背景をふわっと表示させる */
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  text-shadow: none;
}
.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button2 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #0a4d97;
  color: #0a4d97;
  line-height: 50px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}
.button2:hover {
  color: #fff;
  text-decoration: none;
}
.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.button2:hover::after {
  background: #0a4d97;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.button3 {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button3::before,
.button3::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button3,
.button3::before,
.button3::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button3 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
	text-shadow: none;
}
.button3:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}

.button4 {
  display: inline-block;
  width: 140px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button4::before,
.button4::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button4,
.button4::before,
.button4::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button4 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
}
.button4:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}

.breadcrumb{ /* パンくずリスト背景色のCSS */
  background-color: white;
}


a.thumnail { /* マウスオーバーで画像がにゅるっと拡大 */
    display: block;
    overflow: hidden;
    width: 100%;
}
 
.thumnail img {
    height: auto;
    -webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    width: 100%;
    vertical-align: bottom;
}
 
figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}
 
figcaption {
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    opacity: 0;
    font-size: 14px;
    font-size: 1.4rem;
    position: absolute;
    text-align: center;
    -webkit-transition:all 0.25s ease-in-out;
        transition:all 0.25s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 25%;
}
 
a:hover>figure img {
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
}
 
a:hover>figure figcaption {
    opacity: 1;
}


/* カルーセル高さの確保 */
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  min-height: auto; /* ピクセルにすると最低高さが確保される */

} 
    
    
    #scrollUp { /* スクロールアップ */
	bottom: 90px;
	right: 10px;
	background-image: url("../image/up.png");
	width: 45px;
	height: 45px;
}
#scrollUp:hover {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.7;
}

.sp {
    display: block;
}

.sp-font {
	line-height: 180%;
    font-size:80%;
}
	
    .pc {
    display: none;
}
    
}


/* 印刷用のCSS */
@media print {
	
/*グリッドの上部をアーチにする*/
.arch50-element {
  border-top-left-radius: 50%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
.arch20-element {
  border-top-left-radius: 20%;
  border-top-right-radius: 0%;
  /* overflow: hidden; 子要素がはみ出さないようにする */
}
	
		.cover-img {
		height: 400px;
	}
	

.navbar{ /* ナビバー背景を不透過のCSS */
    border-radius: 0;
    border: none;
    background-color: rgba(255,255,255,0.8);
}


footer{ /* フッターの上下余白調整のCSS */
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}


.button { /* 中央から左右に開くボタンのCSS */
  display: inline-block;
  width: 400px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.button:hover {
  background-color: #fff;
  border-color: #0a4d97;
  color: #0a4d97;
  text-decoration: none;
}
.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  width: 50%;
  height: 100%;
  background-color: #0a4d97;
}

.button,
.button::before,
.button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
  
}
.button::before {
  right: 0;
}
.button::after {
  left: 0;
}
.button:hover::before,
.button:hover::after {
  width: 0;
  background-color: #0a4d97;
}



.button2 { /* 奥から背景をふわっと表示させる */
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  text-shadow: none;
}
.button2::before,
.button2::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button2,
.button2::before,
.button2::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.button2 {
  position: relative;
  z-index: 2;
  background-color: #fff;
  border: 2px solid #0a4d97;
  color: #0a4d97;
  line-height: 50px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, .2);
}
.button2:hover {
  color: #fff;
  text-decoration: none;
}
.button2::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
}
.button2:hover::after {
  background: #0a4d97;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.button3 {
  display: inline-block;
  width: 200px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button3::before,
.button3::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button3,
.button3::before,
.button3::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button3 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
	text-shadow: none;
}
.button3:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}

.button4 {
  display: inline-block;
  width: 140px;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
	border-radius: 30px;
}
.button4::before,
.button4::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}
.button4,
.button4::before,
.button4::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button4 {
  background-color: #0a4d97;
  border: 2px solid #0a4d97;
  color: #fff;
  line-height: 50px;
}
.button4:hover {
  background-color: #0aaadb;
  border-color: #0aaadb;
  color: #fff;
	text-decoration: none;
text-shadow: none;
}
	
.breadcrumb{ /* パンくずリスト背景色のCSS */
  background-color: white;
}



a.thumnail { /* マウスオーバーで画像がにゅるっと拡大 */
    display: block;
    overflow: hidden;
    width: 100%;
}
 
.thumnail img {
    height: auto;
    -webkit-transition:all 0.25s ease-in-out;
    transition:all 0.25s ease-in-out;
    width: 100%;
    vertical-align: bottom;
}
 
figure {
    margin: 0;
    overflow: hidden;
    position: relative;
    text-align: center;
}
 
figcaption {
    background-color: rgba(0,0,0,0.6);
    color: #FFF;
    opacity: 0;
    font-size: 16px;
    font-size: 1.6rem;
    position: absolute;
    text-align: center;
    -webkit-transition:all 0.25s ease-in-out;
        transition:all 0.25s ease-in-out;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding-top: 25%;
}
 
a:hover>figure img {
        transform: scale(1.15,1.15);
        -webkit-transform:scale(1.15,1.15);
        -moz-transform:scale(1.15,1.15);
        -ms-transform:scale(1.15,1.15);
        -o-transform:scale(1.15,1.15);
}
 
a:hover>figure figcaption {
    opacity: 1;
}
    

}