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

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

header {
    position: relative;
    background-color:#373C38;
    padding-bottom:10px;
    background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #ffe9a7 10px ), repeating-linear-gradient( #aa7700, #ffaa00 );
}
@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:#203744;
    margin:0px 0px 10px 0px;
    padding:5px;
    font-size:80%;
    color:#fff;
}

.bread a{
    color:#fff;
}



/* ナビゲーション ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.gnav{
  background:
    linear-gradient(
      90deg,
      rgba(208, 147, 82, 0.7),
      rgba(192, 134, 70, 0.4) 60%,
      rgba(208, 147, 82, 0.7)
    ),
    repeating-radial-gradient(
      ellipse at 60% 500%,
      #998646,
      #664422 0.4%,
      #664422 0.8%,
      #aa4452 1%
    );
    box-shadow: 2px 2px 4px gray;
    width: 95%;
    border-radius: 5px;
    padding:5px;
    margin:5px;
    text-align:center;
    font-size:min(3vw,16px);
    color:#fff;
}

.gnav:hover{
    background: rgba(84,63,50,0.9);
    text-decoration: none;

}

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

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


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

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

.gnav_sub{
  background-color:#752100;
  padding:7px 20px;
  border-radius:20px;
}

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

.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(63, 49, 43, 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);
}
.hamburger nav li {
  color: #000;
  text-align: left;
  padding: 10px 0;
}



.menulist ul {
  background-color:#fff;
  border: solid 2px #752100;
  padding: 0.2em;
  position: relative;
  margin-top: 2em;
}
.menulist ul li {
  line-height: 1.5;
  padding: 0.5em 0 0.5em 1.4em;
  border-bottom: dashed 1px silver;
  list-style-type: none!important;
  text-align:left;
}
.menulist ul li:last-of-type {
  border-bottom: none;
}
.menulist ul li:before {
  content: "";/*アイコン種類*/
  position: absolute;
  left : 0em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/
}
.menulist ul li:after {
  /*タイトルタブ*/
  background: #752100;
  color: #fff;
  font-weight: bold;
  position: absolute;
  width:70%;
  left: -2px;
  bottom: 100%;
  padding: 5px 10px;
  content: "メニュー";/*タブの文字*/
  letter-spacing: 0.05em;/*字間*/
}




@media screen and (max-width:768px) { /* スマホ */
  .menulist{
    margin-top:-30px;
  }
  .menulist li{
    list-style: none;
  }
  .menulist a{
    font-weight:bold;
  }
  .menulist a:hover{
    font-weight:bold;
  }
}



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

#top_button:hover{
  cursor: pointer;
}

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


h1 {
  font-size: 3.0rem;
  font-weight:bold;
  text-align:left;
  line-height:140%;
  margin-left: 20px;
  padding-left: 17px;
  position: relative;
  border-left: solid 2px #FF9800;
  box-shadow: -4px 0px #fff,
            -6px 0px #FF9800,
            -10px 0px #fff,
            -12px 0px #FF9800;
  padding-bottom: 10px;
}

h1:before {
  content: "";
  position: absolute;
  left: -25px;
  right: 0;
  bottom: 8px;
  border-bottom: 2px solid #FFC107;
  box-shadow: 0px 6px #FFC107;
}


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


h2 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #2f5d50;
  text-align:left;
  position: relative;
  margin:40px auto 15px auto;
  padding-bottom:7px;
  line-height:1.4;
}

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


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


h3{
    color: #769164;
    font-size: 2.0rem;
    text-align: left;
    margin: 30px auto 10px auto;
    padding-bottom: 0px;
    border-bottom: solid 3px #769164;
    letter-spacing: 3px;
    font-weight:bold;
    line-height:1.4;
}

.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: dashed 2px #ab6953;
    padding:5px 0px;
    color: #ab6953;
    margin: 20px auto 20px 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;
}



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

.plan_box {
    margin: 2em 0;
    line-height:2.5;
    background: #fcfcfc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.22);
}
.plan_box .plan_box-title {
    font-size: 1.4em;
    background: #5fc2f5;
    padding: 4px;
    text-align: center;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 0.05em;
}
.plan_box p {
    padding: 15px 20px;
    margin: 10px;
}

.plan_box h4 {
    margin: 10px;
    font-size:120%;
}


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


.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 {
  max-width: 80%;
  margin: 30px auto 40px auto;
}
a.link_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: 1px solid #228bc8;
  box-sizing: border-box;
  width: 100%;
  padding: 20px;
  color: #228bc8;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  transition-duration: 0.2s;
}
a.link_btn:hover {
  background: #228bc8;
  border: 1px solid #05639a;
  color: #fff;
}
a.link_btn:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
  border-color: transparent transparent #228bc8 transparent;
}
a.link_btn span {
    position: absolute;
    bottom: 12px;
    right: 20px;
    display: inline-block;
}
a.link_btn span:before {
    content: '';
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    margin-top: -8px;
}
a.link_btn span:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: 2px solid #228bc8;
    border-right: 2px solid #228bc8;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 4px;
    margin-top: -3px;
}




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

.content_label {
  position: relative;
  color: #158b2b;
  font-size: 24px;
  font-weight:bold;
  padding: 0px 0;
  text-align: center;
  margin: 20px auto 10px auto;
}
.content_label:before {
  content: "";
  position: absolute;
  top: 0px;
  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%);
}



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

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