
html{
    font-size: 62.5%;
}

body{
  font-size: 1.6rem;
  font-family: "じゅん 501",sans-serif;
  line-height: 2;
  background-color:#fff;
  margin:0;
  padding:0;
}

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

header {
    position: relative;
    background-color:#fff;
    padding-bottom:10px;
}
@media screen and (max-width:768px) { /* スマホ */
  header {
    padding-bottom:0px;
  }
}


.header_information {
    display: inline-block;
    float: right;
    font-weight: bold;
    vertical-align: middle;
    text-align:right;
    margin:10px;
    line-height:1.3;
  }


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

.bread a{
    color:#fff;
}




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

}
a .gnav{
    color:#fff;
    text-decoration: none;
}

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


.circle{
  background-color: #b28c6e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin:5px auto 0px auto;
  display: flex;
  justify-content: center; /*左右中央揃え*/
  align-items: center;     /*上下中央揃え*/
}

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


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

.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(204,164,99, 0.9); /* ★メニュー背景色 */
  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);
}
.hamburger nav li {
  color: #000;
  text-align: left;
  padding: 10px 0;
}



.menulist ul, ol {
  margin-top:10px;
  padding:0;
  text-align:left;
}

.menulist ul li {
  position: relative;
  list-style-type: none!important;/*ポチ消す*/
  padding: 1em 1em 1em 1em;
  margin-bottom: 10px;
  line-height: 1.5;
  background: #FF99B4;
  vertical-align: middle;
  color: #fff;
  border-radius: 0px 0px 0px 0px;/*左側の角丸く*/
}

a.menulist ul li{
  color:#fff;
}





/* フッター領域 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
footer {
  width:100%;
  background-color:#741B47;
  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: underline;
}

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

#top_button:hover{
  cursor: pointer;
}

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


h1 {
  color: #fff;
  background: #741B47;
  padding:10px;
  text-align:center;
  font-size: 3.0rem;
  font-weight:bold;
  line-height:1.4;
  letter-spacing: 4px;
}


h2 {
  color:#fff;
  padding:15px;
  font-size: 2.4rem;
  font-weight:bold;
  line-height:1.1;
  margin:10px auto 20px auto;
  letter-spacing: 3px;
  text-align:center;
}


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


h3{
  margin:0px 5px;
  padding: 0em 0.5em;
  color: #000;
  background: transparent;
  border-left: solid 10px #7db4e6;
  text-align:left;
  line-height:1.2;
  letter-spacing: 2px;
}

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


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

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

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

.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:10px 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;
}




/* 囲い枠 ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.card{
  padding:20px 10px 20px 10px;
  border-radius: 10px;
}


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


.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;        /* 文字の影 */
}


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

a:hover{
  font-weight:bold;
}


@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;
}





.link_btn{
    text-align:center;
    max-width:90%;
    line-height:1.5;
    display:block;
    padding:10px 20px;
    margin:20px auto 40px auto;
    text-decoration: none;
    background:#3C78D8;
    text-align:center;
    border:4px solid #3C78D8;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    border-radius:10px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
    text-shadow:0px 1px 1px #ADADAD ;
    transition: all 0.5s ease;
}
.link_btn a:hover{
    background-color:#FFAA00;
    color:#ffff00;
    box-shadow:none;
}


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

.content_label {
  position: relative;
  color: #158b2b;
  font-size: 20px;
  font-weight:bold;
  padding: 3px 0;
  text-align: center;
  margin: 10px auto;
}
.content_label:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 150px;
  height: 58px;
  border-radius: 50%;
  border: 5px solid #a6ddb0;
  border-left-color: transparent;
  border-right-color: transparent;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


* You Tube ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */

.youtube {
  max-width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}


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

/* 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;
  }
}





/* 吹き出し見出し ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.balloon_1 {
  position: relative;
  font-size: 140%;
  font-weight:bold;
  color: #fff;
  display: inline-block;
  margin: 10px 10px 50px 10px;
  padding: 10px;
  min-width: 120px;
  max-width: 100%;
  background: #00707D;
}
.balloon_1:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #00707D;
}
.balloon_1 p {
  margin: 0;
  padding: 0;
}



.balloon_2 {
  position: relative;
  font-size: 140%;
  font-weight:bold;
  color: #fff;
  display: inline-block;
  margin: 10px 10px 50px 10px;
  padding: 10px;
  min-width: 120px;
  max-width: 100%;
  background: #947E3A;
}
.balloon_2:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #947E3A;
}
.balloon_2 p {
  margin: 0;
  padding: 0;
}



.balloon_3 {
  position: relative;
  font-size: 140%;
  font-weight:bold;
  color: #fff;
  display: inline-block;
  margin: 10px 10px 50px 10px;
  padding: 10px;
  min-width: 120px;
  max-width: 100%;
  background: #8F5400;
}
.balloon_3:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #8F5400;
}
.balloon_3 p {
  margin: 0;
  padding: 0;
}



.balloon_4 {
  position: relative;
  font-size: 140%;
  font-weight:bold;
  color: #fff;
  display: inline-block;
  margin: 10px 10px 50px 10px;
  padding: 10px;
  min-width: 120px;
  max-width: 100%;
  background: #942B60;
}
.balloon_4:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -30px;
  border: 30px solid transparent;
  border-top: 30px solid #942B60;
}
.balloon_4 p {
  margin: 0;
  padding: 0;
}




.indent_1{
        text-indent: 1.5rem;
    }




.row-eq-height {
  display: -webkit-flex; /* Safari */
  display: flex;
  flex-wrap: wrap;
}