﻿@charset "UTF-8";

@import url('//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css?family=Quicksand:300,400,500,700');
@import url('//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;900&display=swap');
@import url('//fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');
@import url('//fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;500;600;700&display=swap');


/*========================
ナビゲーション
========================*/
.hbgmenu, .hbgmenu span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  box-sizing: border-box;
}
.hbgmenu {
  position: fixed;
  top: 32px;
  right: 32px;
  width: 68px;
  height: 36px;
  z-index: 10;
  cursor: pointer;
  border: none;
  background: none;
}
.hbgmenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #49A37E;
  z-index: 10;
}
.hbgmenu span:nth-of-type(1) {
  top: 0px;
}
.hbgmenu span:nth-of-type(2) {
  top: 15px;
}
.hbgmenu span:nth-of-type(3) {
  bottom: 0px;
}
.hbgmenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(45deg);
  transform: translateY(15px) rotate(45deg);
}
.hbgmenu.active span:nth-of-type(2) {
  opacity: 0;
}
.hbgmenu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
}
/*メニュー中身*/
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  height: 100vh;
  opacity: 0;
  background-color: #FFF;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
  visibility: visible;
}
.navinner {
  width: 100%;
  height: 100%;
  position: relative;
  text-align: center;
  padding-top: 60px;
}
.navlink {
  padding: 15px 32px;
}
.navlink li {
  list-style-type: none;
}
.navlink li a {
  display: block;
  padding: 12px 0;
  transition: all 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
  color:#222 ;
}
.naveng {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8em;
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 3px;
  color:#A4D5C1 ;
}
.navjpn {
  font-size: 1em;
  font-weight: 900;
  line-height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.navsublink {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  font-size: 0.8em;
  text-align: center;
  margin-bottom: 6px;
}
@media screen and (max-width: 640px) {
.hbgmenu {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 28px;
  }
.hbgmenu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #49A37E;
  z-index: 10;
  }
.hbgmenu span:nth-of-type(1) {
  top: 0px;
  }
.hbgmenu span:nth-of-type(2) {
  top: 12px;
  }
.hbgmenu span:nth-of-type(3) {
  bottom: 0px;
  }
.hbgmenu.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
  }
.hbgmenu.active span:nth-of-type(2) {
  opacity: 0;
  }
.hbgmenu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
  }
.navinner {
  padding-top: 48px;
  }
.navsublink {
  font-size: 0.85em;
  }
}

/* ナビゲーション内電話リンク */
.navtel {
  padding:0;
  margin: 0;
}
.navtel:before {
  content:"";
  display:inline-block;
  width:1.3em;
  height:1.3em;
  background:url(../img/icon_tel2.png) no-repeat;
  background-size:contain;
  vertical-align:middle;
  margin-right: 8px;
  margin-bottom: 3px;
}
.navtel a{
  text-decoration:none;
  font-size:1.2em;
  line-height:100%;
  color:#FFF;
  font-weight:900;
  letter-spacing: 0.05em;
}

/* 外部リンクアイコン並び*/
.navlinkicon {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:flex-start;
  margin-top: 8px;
}
.navlinkicon li{
  margin:0 18px 0 0;
}
.navlinkicon li:last-child{
  margin:0 0 0 0;
}
.navlinkicon li img {
  width: 100%;
  max-width: 36px;
}
.navlinkicon li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 0.75em;
  line-height: 2;
  text-align: center;
  color: #49A37E;
  text-decoration: none;
}


/*========================
フッター
========================*/
footer {
  width: 100%;
  background: #FFF;
  margin: 0 0 80px;
  padding: 0 32px 18px;
  text-align: center;
}
@media screen and (max-width: 767px) {
footer {
  padding: 0 24px 12px;
  margin: 0 0 54px;
  }
}

.copyright {
  font-size: 0.75em;
  color: #999;
  text-align: center;
  white-space: nowrap;
}

/*固定フッターリンクバナー*/
.footbanner {
  display: block;
  width: 100%;
  height: 80px;
  background: rgb(151,136,117);
background: linear-gradient(180deg, rgba(151,136,117,1) 0%, rgba(120,106,90,1) 100%);
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  margin: 0;
}
.footbanner a {
  text-decoration: none;
}
.footinner {
  position: relative;
  max-width: 640px;
  padding: 0;
  margin: 0 auto;
  z-index: 2;
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 1.8em;
  line-height: 80px;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 2px 2px 3px rgba(0,0,0,0.3);
  padding: 0;
}
@media screen and (max-width: 767px) {
.footbanner {
  height: 54px;
  }
.footinner {
  position: relative;
  font-size: 1.25em;
  line-height: 54px;
  }
}
@media screen and (max-width: 480px) {
.footinner {
  text-align: left;
  padding: 0 0 0 18px;
  }
}


/*========================
汎用パーツ
========================*/
/*-------------------------
タイトル
--------------------------*/
/*英字タイトル*/
.engtitle_white {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 12px;
  color: #FFF;
}
.engtitle_green {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 12px;
  color: #49A37E;
}
.engtitle_lightgreen {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 12px;
  color: #80BFA5;
}
.engtitle_lightgreen2 {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 4.8em;
  font-weight: 700;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 12px;
  color: #DFF1EA;
}

@media screen and (max-width: 640px) {
.engtitle_white,
.engtitle_green,
.engtitle_lightgreen,
.engtitle_lightgreen2 {
  font-size: 3em;
  margin-bottom: 8px;
  }
}

/*日本語タイトル*/
.jpntitle_green {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 900;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 48px;
  color: #48A37E;
  letter-spacing: 0.03em;
}
.jpntitle_white {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2em;
  font-weight: 900;
  line-height: 100%;
  white-space: nowrap;
  margin-bottom: 48px;
  color: #FFF;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 640px) {
.jpntitle_green,
.jpntitle_white {
  font-size: 1.5em;
  margin-bottom: 32px;
  }
}

/*-------------------------
サブタイトル
--------------------------*/
/*横線付きグリーン見出し*/
.subtitle {
  position: relative;
  padding: 0 1em;
  text-align: center;
  margin-bottom:20px ;
}
.subtitle:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 5px;
  content: '';
  background: #49A37E;
}
.subtitle span {
  position: relative;
  padding: 0 0.5em;
  background: #E0F1EA;
  color: #47A37E;
  font-weight: 900;
  font-size: 1.5em;
  letter-spacing: 0.03em;
  line-height: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 480px) {
.subtitle {
  margin-bottom:15px ;
  }
.subtitle:before {
  height: 3px;
  }
.subtitle span {
  font-size: 1.3em;
  }
}

/*-------------------------
色背景
--------------------------*/
/*濃グリーン*/
.greenwrap {
  width: 100%;
  margin: 0 auto;
  padding: 68px 0;
  background: #49A37E;
}
/*白*/
.whitewrap {
  width: 100%;
  margin: 0 auto;
  padding: 68px 0;
  background: #FFF;
}
@media screen and (max-width: 767px) {
.greenwrap,
.whitewrap {
  padding: 46px 0;
  }
}

/*-------------------------
詳細テーブル (研修会・定例会)
--------------------------*/
.schedule {
  width: 100%;
  border-collapse: collapse;
  line-height: 1.6;
  margin: 18px 0 15px;
}
.schedule tr{
  border: 1px solid #999;
  margin: 0 0 -1px;
}
.schedule th{
  width: 25%;
  padding: 10px 12px;
  text-align:center;
  vertical-align: middle;
  background-color: #EEE;
  font-weight:700;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9em;
}
.schedule td{
  width: 75%;
  padding: 10px 12px;
  background-color: #FFF;
  text-align:left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
.schedule {
  margin: 15px 0 12px;
  }
.schedule th,
.schedule td {
  display:block;
  width:100%;
  }
.schedule th{
  padding: 2px 8px 5px;
  text-align:left;
  font-size: 0.85em;
  }
.schedule td{
  padding: 5px 8px 8px;
  font-size: 0.95em;
  }
}

/*-------------------------
ページ上部へジャンプ
--------------------------*/
#jumptop{
  position:fixed;
  right: 0;
  bottom:0;
}
.jumpbtn {
  width:84px;
  height:80px;
  cursor:pointer;
  background:#49A37E;
  position: relative;
}
.jumpbtn:before {
  content: '';
  position: absolute;
  top: 42%;
  right: 24px;
  display: block;
  width: 32px;
  height: 32px;
  border-top: 5px solid #FFF; 
  border-right: 5px solid #FFF; 
  transform: rotate(-45deg); 
}
@media(max-width:767px){
.jumpbtn {
  width:60px;
  height:54px;
  }
.jumpbtn:before {
  right: 18px;
  width: 22px;
  height: 22px;
  border-top: 3px solid #FFF; 
  border-right: 3px solid #FFF; 
  }
}

/*-------------------------
ボタン
--------------------------*/
/* 矢印付きグリーンボタン */
.btn_green {
  display: block;
  position: relative;
  background:#49A37E;
  width: 100%;
  max-width: 560px;
  padding: 8px 12px 10px;
  color: #FFF !important;
  text-align: center;
  text-decoration: none;
  font-size: 1.3em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  transition: all .3s;
  letter-spacing: 0.05em;
}
.btn_green:hover{
  background:#409171;
}
.btn_green:after{
  content: '';
  position: absolute;
  top: 38%;
  right: 18px;
  display: block;
  width: 15px;
  height: 15px;
  border-top: 3px solid #FFF; 
  border-right: 3px solid #FFF; 
  transform: rotate(45deg); 
}
@media screen and (max-width: 480px) {
.btn_green {
  font-size: 1.15em;
  max-width: 100%;
  }
.btn_green:after{
  right: 15px;
  width: 12px;
  height: 12px;
  }
}

/* 角丸グリーンボタン */
.btn_green2 {
  background:#49A37E;
  padding: 5px 18px 8px;
  color: #FFF !important;
  text-align: center;
  border-radius: 9999px;
  -webkit-border-radius: 9999px;
  -moz-border-radius: 9999px;
  text-decoration: none;
  font-size: 1.05em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  transition: all .3s;
  letter-spacing: 0.03em;
}
.btn_green2:hover{
  background:#409171;
}

/*-------------------------
テキストリンク
--------------------------*/
/* アイコン付き電話リンク */
.tel {
  padding:0;
  margin: 0;
}
.tel:before {
  content:"";
  display:inline-block;
  width:1.5em;
  height:1.5em;
  background:url(../img/icon_tel.png) no-repeat;
  background-size:contain;
  vertical-align:middle;
  margin-right: 8px;
  margin-bottom: 5px;
}
.tel a{
  text-decoration:none;
  font-size:1.3em;
  line-height:100%;
  color:#222;
  font-weight:900;
  letter-spacing: 0.05em;
}

/* アイコン付き外部リンク */
.exlink {
  padding:0;
  margin: 0;
  text-decoration:none;
  font-size:1em;
  line-height:100%;
  color:#E37215;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
}
.exlink:before {
  content:"";
  display:inline-block;
  width:1.3em;
  height:1.3em;
  background:url(../img/icon_exlink.png) no-repeat;
  background-size:contain;
  vertical-align:middle;
  margin-right: 6px;
  margin-bottom: 3px;
}

/* 文末矢印付きリンク */
.arrlink {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 0.95em;
  text-decoration: none;
  white-space: nowrap;
  margin: 0;
  position: relative;
  display: inline-block;
  padding: 0 0.8em 0 0;
  vertical-align: middle;
  color: #49A37E;
}
.arrlink::after{
  content: "";
  position: absolute;
  top: 0.1em;
  bottom: 0;
  right: 0;
  width: 0.6em;
  height: 0.6em;
  margin: auto;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #49A37E;
  border-right: 2px solid #49A37E;
}

/*-------------------------
写真ギャラリー
--------------------------*/
/* 写真ギャラリー横並び2列(640px以下で縦列切替) */
.gallery2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
  flex-wrap: wrap;
}
.gallery2 li {
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  padding:0 12px 24px 12px;
  box-sizing: border-box;
}
.gallery2 img {
  width:100%;
}
@media screen and (max-width: 640px) {
.gallery2 li {
  flex-direction: column;
  display:block;
  width: 100%;
  max-width:100%;
  padding:0 0 25px 0;
  }
}

/* 写真ギャラリー横並び2列固定 */
.gallery2_fix {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
  flex-wrap: wrap;
}
.gallery2_fix li {
  width: 50%;
  max-width:50%;
  width: calc(100% / 2);
  padding:0 12px 24px 12px;
  box-sizing: border-box;
}
.gallery2_fix img {
  width:100%;
}
@media screen and (max-width: 640px) {
.gallery2_fix li {
  padding:0 6px 15px 6px;
  }
}

/* 写真ギャラリー横並び3列(640px以下で縦列切替) */
.gallery3 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
  flex-wrap: wrap;
}
.gallery3 li {
  width: 33.33%;
  max-width:33.33%;
  width: calc(100% / 3);
  padding:0 10px 20px 10px;
  box-sizing: border-box;
}
.gallery3 img {
  width:100%;
}
@media screen and (max-width: 640px) {
.gallery3 li {
  flex-direction: column;
  display:block;
  width: 100%;
  max-width:100%;
  padding:0 0 15px 0;
  }
}

/* 写真ギャラリー横並び3列固定 */
.gallery3_fix {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
  flex-wrap: wrap;
}
.gallery3_fix li {
  width: 33.33%;
  max-width:33.33%;
  width: calc(100% / 3);
  padding:0 10px 20px 10px;
  box-sizing: border-box;
}
.gallery3_fix img {
  width:100%;
}
@media screen and (max-width: 640px) {
.gallery3_fix li {
  padding:0 6px 12px 6px;
  }
}

/* 写真ギャラリーキャプション */
.caption {
  font-size: 0.9em;
  margin-top: 8px;
  line-height: 1.6;
  padding: 0 5px;
  margin-left:1em;
  text-indent:-1em;
}
.caption:before{
  content: "▲";
}

/*-------------------------
横並びflexbox
--------------------------*/
/* 幅可変横並び*/
.column {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: flex-start;
  align-items:flex-start;
}
.column li{
  margin:0 15px 0 0;
}
.column li:last-child{
  margin:0 0 0 0;
}

/* 画像320px ＋ テキスト*/
.column320 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.column320_img {
  max-width: 320px;
  margin: 0 30px 0 0;
}
.column320_text {
  flex: 1;
}
@media screen and (max-width: 1000px) {
.column320_img {
  max-width: 240px;
  margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.column320 {
  flex-direction: column;
  display:block;
  }
.column320_img {
  max-width: 100%;
  margin: 0 0 15px 0;
  text-align: center;
  }
}

/* 均等2列(767px以下で縦列切り替え) */
.col2 {
  width:100%;
  margin: auto;
  padding:0;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items:center;
}
.col2 li{
  width:50%;
  margin:0 30px 0 0;
}
.col2 li:last-child{
  margin:0 0 0 0;
}
@media screen and (max-width: 1000px) {
.col2 li{
  margin:0 20px 0 0;
  }
}
@media screen and (max-width: 767px) {
.col2 {
  flex-direction: column;
  display:block;
  }
.col2 li {
  width:100%;
  margin:0 0 20px 0;
  }
.col2 li:last-child{
  margin:0 0 0 0;
  }
}

