@charset "UTF-8";

/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

body {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #161b17;
  line-height: 1.8;
  text-align: center;
  letter-spacing: .08em;
  font-size: 1.6rem;
  font-weight: 500;
  word-break: break-all;
}

#wrapper {
  min-width: 1200px;
}

/*==========================================
PC表示で電話番号リンクを無効
===========================================*/
a[href^="tel:"] {
  pointer-events: none;
}

/*==========================================
サイトの標準横幅と内部余白
===========================================*/
.inbox {
  width: 1080px;
  margin: 0 auto;
}

.com-pd {
  padding: 115px 0;
}

.com-pt {
  padding-top: 115px;
}

.com-pb {
  padding-bottom: 115px;
}

.com-mb {
  margin-bottom: 115px;
}

/*==========================================
PC非表示
===========================================*/
.pc-none {
  display: none !important;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: 10px;
  text-align: left;
  position: relative;
  z-index: 1;
}
div .bread .breadcrumbs {
  position: absolute;
  width: 1080px;
  margin: 0 auto;
  left: 0;
  top: 10px;
}
div .bread li {
  display: inline-block;
  color: #036936;
}
div .bread li:after {
  content: " > ";
  padding: 0 2px;
  color: #999;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: #999;
}

/*==========================================
float
===========================================*/
.fl-l {
  float: left;
}

.fl-r {
  float: right;
}

/*==========================================
Flexbox
===========================================*/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し
-----------------------*/
.flx-wrp {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*逆順
-----------------------*/
.flx-rr {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/*水平方向の揃え
=================================================*/
/*初期値
-----------------------*/
.flx-strt {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between）
-----------------------*/
.flx-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around）
-----------------------*/
.flx-ard {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*水平揃え　末揃え
-----------------------*/
.flx-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/*水平揃え　中央揃え
-----------------------*/
.flx-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*垂直方向の揃え
=================================================*/
/*水平揃え　上揃え
-----------------------*/
.flx-alitem-strt {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*水平揃え　高さ揃え
-----------------------*/
.flx-alitem-strch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/*水平揃え　縦・横の中央揃え
-----------------------*/
.flx-alitem-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*水平揃え　下揃え
-----------------------*/
.flx-alitem-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/*水平揃え　ベースライン揃え
-----------------------*/
.flx-alitem-base {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

/*複数行にした揃え方
=================================================*/
/*初期値
-----------------------*/
.flx-alcont-strt {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え
-----------------------*/
.flx-alcont-strch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

/*親要素の終点から配置。下揃え
-----------------------*/
.flx-alcont-end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

/*中央揃え
-----------------------*/
.flx-alcont-c {
  -ms-flex-line-pack: center;
      align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-btw {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置
-----------------------*/
.flx-alcont-s-ard {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.flex-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.flex-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

/*==========================================
スマホ用ドロワー無効
===========================================*/
.drawer_menu {
  display: none;
}

#nav-toggle,
#global-nav {
  display: none;
}

.drawer_menu {
  display: none;
}

/*==========================================
header
===========================================*/
#header {
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 40px 0 40px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1001;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 4px solid rgba(224, 232, 226, 0.9);
}
#header h1 {
  line-height: 1;
}
#header .hd-wrp {
  border-bottom: 1px solid #e6efe8;
  padding-bottom: 5px;
}
#header .hd-wrp .hd-wrp_right {
  width: 280px;
}
#header .hd-wrp .hd-wrp_right .num {
  font-size: 2rem;
}
#header .hd-wrp .hd-wrp_right .num span {
  margin-right: 5px;
}
#header nav {
  width: 1080px;
  margin: 0 auto;
  padding: 5px 0;
}
#header nav li {
  font-size: 1.8rem;
  letter-spacing: .05em;
}
#header nav li a {
  color: #036936;
}
#header nav li small {
  font-size: 1.4rem;
  color: #7a9f83;
}

/*==========================================
メインビジュアル
===========================================*/
#mv {
  position: relative;
  height: 48.958vw;
  max-height: 940px;
  min-height: 545px;
}
#mv h2 {
  width: 25%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17.7vw;
  z-index: 100;
  min-width: 360px;
}
#mv #top-slider {
  height: 48.958vw;
  max-height: 940px;
  min-height: 545px;
  position: relative;
}
#mv #top-slider li {
  height: 100%;
}
#mv #top-slider li:nth-child(1) {
  background: url(../img/top/mv/slide01.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(2) {
  background: url(../img/top/mv/slide02.png) center no-repeat;
  background-size: cover;
}
#mv #top-slider li:nth-child(3) {
  background: url(../img/top/mv/slide03.png) center no-repeat;
  background-size: cover;
}
#mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#mv .bx-pager {
  display: none;
}

/*==========================================
共通ブロック・要素
===========================================*/
.txt-blc {
  text-align: left;
}
.txt-blc p {
  margin-bottom: 25px;
  line-height: 1.8;
}
.txt-blc p:last-child {
  margin-bottom: 0;
}

#g-map h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
#g-map h4 span {
  padding-left: 20px;
}
#g-map .map {
  height: 400px;
}
#g-map .map iframe {
  width: 100%;
  height: 100%;
}

.more-btn {
  position: relative;
  font-size: 2.2rem;
  color: #036936;
  z-index: 1;
  overflow: inherit;
}
.more-btn:before {
  width: 60px;
  height: 60px;
  border: 1px solid #cde0d1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 50%;
  position: absolute;
  content: '';
  left: -40px;
  top: -32px;
  z-index: -1;
}
.more-btn:after {
  position: absolute;
  content: '';
  background: url('../img/common/more-btn_arr.png?1684392231');
  width: 26px;
  height: 7px;
  background-size: 100%;
  top: -7px;
  right: auto;
  bottom: auto;
  left: -43px;
  background-repeat: no-repeat;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.more-btn small {
  color: #7a9f83;
  margin-left: 5px;
  font-size: 1.4rem;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-dl > dl {
  padding: 20px 15px;
}
.com-dl > dl:nth-child(odd) {
  background: rgba(230, 239, 232, 0.4);
}
.com-dl > dl > dt, .com-dl > dl > dd {
  display: table-cell;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.com-dl > dl > dt {
  width: 180px;
  color: #7a9f83;
  vertical-align: top;
}
.com-dl > dl > dd a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
トップページ
===========================================*/
/*-------------------------------
お知らせ
-------------------------------*/
#top-news {
  height: 245px;
  position: relative;
}
#top-news .inbox {
  position: absolute;
  left: 0;
  right: 0;
  top: -90px;
  background: #fff;
  padding: 30px 85px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 200px;
  z-index: 100;
}
#top-news h3 {
  width: 190px;
  text-align: left;
}
#top-news h3 span {
  display: block;
}
#top-news h3 .en {
  font-size: 2.6rem;
  color: #7a9f83;
  margin-bottom: 5px;
}
#top-news .news-lists {
  width: 650px;
}
#top-news .news-lists article {
  text-align: left;
  border-bottom: 1px solid #e6efe8;
}
#top-news .news-lists article:last-child {
  border-bottom: none;
}
#top-news .news-lists article a {
  padding: 10px 15px;
}
#top-news .news-lists article .category-label {
  width: 100%;
}
#top-news .news-lists article .category-label li {
  color: #477c54;
  position: relative;
  padding-left: 10px;
  margin: 0 10px 5px 0;
}
#top-news .news-lists article .category-label li:before {
  width: 1px;
  height: 16px;
  position: absolute;
  content: '';
  background: #477c54;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
#top-news .news-lists article .category-label li:first-child {
  padding-left: 0;
}
#top-news .news-lists article .category-label li:first-child:before {
  background: none;
}
#top-news .news-lists article time {
  width: 105px;
  color: #7a9f83;
}
#top-news .news-lists article h4 {
  width: 515px;
}
#top-news .more-btn {
  position: absolute;
  left: 130px;
  top: 190px;
}

/*-------------------------------
人生を豊かに、華やかに
-------------------------------*/
#top-about .inbox {
  padding: 105px 0 100px 0;
  background: url(../img/top/about-bg.png) center/cover no-repeat;
  border-top: 4px solid #e0e8e2;
  border-bottom: 1px solid #cde0d1;
}
#top-about h3 {
  margin-bottom: 55px;
}
#top-about p {
  margin-bottom: 85px;
}

/*-------------------------------
フラワーアレンジメントの解説動画をYouTube動画にも紹介しています
-------------------------------*/
#top-movie {
  padding: 70px 0 100px 0;
}
#top-movie h3 {
  margin-bottom: 50px;
}
#top-movie .inbox {
  padding-bottom: 70px;
  border-bottom: 1px solid #cde0d1;
}
#top-movie .movie {
  width: 880px;
  margin: 0 auto;
}

/*-------------------------------
自分だけのオリジナル作品を作ってみたい
-------------------------------*/
#top-message {
  padding: 80px 0;
  background: url(../img/top/message-bg.png) center/cover no-repeat;
}
#top-message .inbox {
  background: rgba(255, 255, 255, 0.8);
  padding: 75px 0 70px 0;
}
#top-message h3 {
  width: 690px;
  margin: 0 auto 65px auto;
  position: relative;
  height: 146px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#top-message h3:before, #top-message h3:after {
  width: 16px;
  height: 146px;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  background: url(../img/top/message-ttl_frame.png) center/100% no-repeat;
}
#top-message h3:before {
  left: 0;
}
#top-message h3:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#top-message p {
  margin-bottom: 80px;
}
#top-message .btn-wrp {
  width: 545px;
  margin: 0 auto;
}

/*-------------------------------
結婚式・誕生日・特別な日に…
フラワーギフトをお作りさせて
いただきます
-------------------------------*/
#order-made {
  padding: 75px 0 0 0;
  margin-bottom: 105px;
}
#order-made .inbox {
  padding: 80px 50px 75px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../img/top/order-made-img.png) right top no-repeat, url(../img/top/order-made-bg.png) center/cover no-repeat;
  text-align: left;
}
#order-made h3 {
  margin-bottom: 55px;
}
#order-made p {
  margin-bottom: 40px;
  line-height: 2;
}
#order-made p:last-child {
  margin-bottom: 0;
}

/*-------------------------------
ギャラリー
-------------------------------*/
#top-gallery {
  padding: 0 0 100px 0;
}
#top-gallery .inbox {
  position: relative;
}
#top-gallery h3 {
  text-align: left;
  margin-bottom: 45px;
}
#top-gallery h3 span {
  display: block;
}
#top-gallery h3 .en {
  font-size: 2.6rem;
  color: #7a9f83;
  margin-bottom: 5px;
}
#top-gallery .more-btn {
  position: absolute;
  right: 0;
  top: 45px;
}

.gallery-wrp li {
  width: 350px;
  margin: 0 15px 15px 0;
}
.gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3), .gallery-wrp li:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
.gallery-wrp li:nth-of-type(3n), .gallery-wrp li:last-child {
  margin-right: 0;
}
.gallery-wrp li .com-img {
  width: 100%;
  height: 350px;
}

/*==========================================
footer
===========================================*/
#footer {
  background: #f6faf7;
}
#footer .inbox {
  padding: 60px 0;
}
#footer .ft-top_wrp {
  border-bottom: 1px solid #e6efe8;
  padding-bottom: 10px;
  margin-bottom: 65px;
}
#footer .ft-top_wrp .ft-top_wrp__right {
  width: 585px;
}
#footer .ft-top_wrp .ft-top_wrp__right .closed {
  color: #477c54;
}
#footer .ft-btn_wrp {
  width: 930px;
  margin: 0 auto 60px auto;
}
#footer .ft-nav {
  width: 985px;
  margin: 0 auto;
  text-align: left;
}
#footer .ft-nav li {
  margin-bottom: 15px;
}
#footer .ft-nav li:last-child {
  margin-bottom: 0;
}
#footer .ft-nav li a {
  position: relative;
  padding-left: 20px;
}
#footer .ft-nav li a:before {
  width: 10px;
  height: 1px;
  position: absolute;
  content: '';
  z-index: 1;
  background: #161b17;
  left: 0;
  bottom: 0;
  top: 0;
  margin: auto 0;
}

#copyright {
  background: #cde0d1;
  color: #fff;
  font-size: 10px;
  word-break: normal;
}
#copyright a {
  color: #fff;
}

/*==========================================
サブビジュアル
===========================================*/
.lower-sv {
  position: relative;
  height: 500px;
}
.lower-sv h2 {
  width: 480px;
  margin: 0 auto;
  position: absolute;
  bottom: 135px;
  left: 0;
  right: 0;
  background: rgba(71, 124, 84, 0.8);
  color: #fff;
  padding: 25px 0;
}
.lower-sv h2 .en {
  position: absolute;
  left: 5px;
  top: 0;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: capitalize;
}
.lower-sv h2 .en:after {
  width: 1px;
  height: 20px;
  position: absolute;
  content: '';
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.4);
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
}
.lower-sv h2 .ja {
  font-size: 3rem;
}

#about-sv {
  background: url(../img/sv/about-sv.png) center/cover no-repeat;
}

#lesson-sv {
  background: url(../img/sv/lesson-sv.png) center/cover no-repeat;
}

#course-sv {
  background: url(../img/sv/course-sv.png) center/cover no-repeat;
}

#gallery-sv {
  background: url(../img/sv/gallery-sv.png) center/cover no-repeat;
}

#information-sv {
  background: url(../img/sv/information-sv.png) center/cover no-repeat;
}

#contact-sv {
  background: url(../img/sv/contact-sv.png) center/cover no-repeat;
}

#complete-sv {
  background: url(../img/sv/complete-sv.png) center/cover no-repeat;
}

#news-sv {
  background: url(../img/sv/news-sv.png) center/cover no-repeat;
}

#privacy-sv {
  background: url(../img/sv/privacy-sv.png) center/cover no-repeat;
}

#site-sv {
  background: url(../img/sv/site-sv.png) center/cover no-repeat;
}

#e404-sv {
  background: url(../img/sv/e404-sv.png) center/cover no-repeat;
}

/*==========================================
共通タイトル
===========================================*/
.ttl01 {
  margin-bottom: 40px;
}
.ttl01 span {
  display: block;
}
.ttl01 .en {
  font-size: 2.6rem;
  color: #e09552;
}
.ttl01 .ja {
  font-size: 4rem;
}

.ttl02 {
  font-size: 2.5rem;
  text-align: left;
  font-weight: 500;
  margin-bottom: 20px;
}

/*==========================================
ヴァン・ヴェール
===========================================*/
/*----------------------------
生徒の皆様へご挨拶
-----------------------------*/
#greeting .inbox {
  max-width: 1488px;
  width: 77.5%;
  min-width: 1080px;
}
#greeting .message-wrp {
  background: url(../img/about/greeting-bg.png) bottom center/100% no-repeat;
  padding-bottom: 195px;
}
#greeting .message-wrp h4 {
  color: #036936;
  font-size: 2.8rem;
  margin-bottom: 50px;
}
#greeting .message-wrp p {
  margin-bottom: 45px;
  line-height: 2;
}
#greeting .message-wrp p:last-child {
  margin-bottom: 0;
}
#greeting .profile {
  width: 1080px;
  margin: 0 auto;
}
#greeting .profile .ttl01 {
  text-align: left;
  margin-bottom: 25px;
}
#greeting .profile .ttl01 .en {
  color: #7698d8;
}
#greeting .profile .profile-wrp {
  padding: 65px 190px 60px 190px;
  border-top: 1px solid #7a9f83;
  border-bottom: 1px solid #7a9f83;
  text-align: left;
}
#greeting .profile .profile-wrp dt {
  width: 290px;
}
#greeting .profile .profile-wrp dt small {
  display: block;
  font-size: 1.6rem;
  color: #7a9f83;
}
#greeting .profile .profile-wrp dt span {
  display: block;
  font-size: 2.8rem;
  color: #036936;
}
#greeting .profile .profile-wrp dd {
  width: 380px;
}
#greeting .profile .profile-wrp dd dt {
  font-size: 1.6rem;
  color: #7a9f83;
  margin-bottom: 10px;
}
#greeting .profile .profile-wrp dd li {
  margin-bottom: 5px;
}
#greeting .profile .profile-wrp dd li:last-child {
  margin-bottom: 0;
}
#greeting .profile .profile-wrp dd li:before {
  content: '・';
}

/*----------------------------
ヴァン・ヴェールのレッスンが選ばれる理由
-----------------------------*/
#reason .ttl01 {
  margin-bottom: 55px;
}
#reason .reason-item {
  padding-top: 80px;
  position: relative;
  margin-bottom: 75px;
  z-index: 1;
}
#reason .reason-item:last-child {
  margin-bottom: 0;
}
#reason .reason-item .img-blc {
  position: absolute;
  top: 0;
  z-index: -1;
}
#reason .reason-item .txt-blc {
  width: 790px;
  padding: 70px 75px 65px 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#reason .reason-item .txt-blc h4 {
  position: relative;
  font-size: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 146px;
  position: relative;
  margin-bottom: 40px;
}
#reason .reason-item .txt-blc h4:before, #reason .reason-item .txt-blc h4:after {
  width: 16px;
  height: 146px;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
}
#reason .reason-item .txt-blc h4:before {
  left: 0;
}
#reason .reason-item .txt-blc h4:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#reason .reason-item .txt-blc h4 span {
  position: absolute;
  left: -68px;
  top: -66px;
  font-size: 1.6rem;
}
#reason .reason-item .txt-blc p {
  line-height: 2;
  text-align: center;
}
#reason .reason-item:nth-of-type(1) .txt-blc {
  background: rgba(230, 239, 232, 0.9);
}
#reason .reason-item:nth-of-type(1) .txt-blc h4 {
  color: #036936;
}
#reason .reason-item:nth-of-type(1) .txt-blc h4:before, #reason .reason-item:nth-of-type(1) .txt-blc h4:after {
  background: url(../img/about/reason01-ttl_frame.png) center/100% no-repeat;
}
#reason .reason-item:nth-of-type(2) .txt-blc {
  background: rgba(248, 241, 234, 0.9);
}
#reason .reason-item:nth-of-type(2) .txt-blc h4 {
  color: #e09552;
}
#reason .reason-item:nth-of-type(2) .txt-blc h4:before, #reason .reason-item:nth-of-type(2) .txt-blc h4:after {
  background: url(../img/about/reason02-ttl_frame.png) center/100% no-repeat;
}
#reason .reason-item:nth-of-type(3) .txt-blc {
  background: rgba(237, 241, 248, 0.9);
}
#reason .reason-item:nth-of-type(3) .txt-blc h4 {
  color: #7698d8;
}
#reason .reason-item:nth-of-type(3) .txt-blc h4:before, #reason .reason-item:nth-of-type(3) .txt-blc h4:after {
  background: url(../img/about/reason03-ttl_frame.png) center/100% no-repeat;
}
#reason .reason-item:nth-of-type(odd) .img-blc {
  right: 0;
}
#reason .reason-item:nth-of-type(even) .txt-blc {
  margin-left: auto;
}
#reason .reason-item:nth-of-type(even) .img-blc {
  left: 0;
}
#reason .more-btn {
  margin-top: 105px;
  display: inline-block;
}

/*==========================================
フラワーレッスン
===========================================*/
/*----------------------------
初めての方へ
-----------------------------*/
#beginner .ttl01 {
  border-bottom: 1px solid #7a9f83;
  padding-bottom: 10px;
}
#beginner .beginner-wrp .txt-blc {
  width: 690px;
}
#beginner .beginner-wrp .txt-blc h4 {
  font-size: 2.8rem;
  color: #036936;
  margin-bottom: 45px;
}

/*----------------------------
レッスン内容
-----------------------------*/
#lesson-course .ttl01 .en {
  color: #7698d8;
}
#lesson-course .course-wrp {
  margin-bottom: 95px;
}
#lesson-course .course-wrp li {
  padding: 30px 20px 30px 30px;
  margin-bottom: 15px;
  text-align: left;
}
#lesson-course .course-wrp li:last-child {
  margin-bottom: 0;
}
#lesson-course .course-wrp li dt {
  width: 360px;
  font-size: 2.8rem;
}
#lesson-course .course-wrp li dt span {
  vertical-align: middle;
  font-size: 1.6rem;
  margin-right: 10px;
}
#lesson-course .course-wrp li:nth-child(odd) {
  background: rgba(239, 242, 249, 0.6);
}
#lesson-course .course-wrp li:nth-child(odd) dt span {
  color: #7698d8;
}
#lesson-course .course-wrp li:nth-child(even) {
  background: rgba(249, 242, 236, 0.6);
}
#lesson-course .course-wrp li:nth-child(even) dt span {
  color: #e09552;
}
#lesson-course .course-wrp li dd {
  width: 625px;
}

/*----------------------------
レッスン開始までの流れ
-----------------------------*/
#flow {
  background: url(../img/lesson/flow-left_bg.png) left top/38.2291% no-repeat, url(../img/lesson/flow-right_bg.png) right 6.5104% bottom/29.5833% no-repeat;
}
#flow .flow-wrp {
  margin-bottom: 100px;
}
#flow .flow-wrp li {
  margin-bottom: 20px;
  padding: 50px 50px 50px 80px;
  background: rgba(230, 239, 232, 0.9);
  position: relative;
}
#flow .flow-wrp li:last-child {
  margin-bottom: 0;
}
#flow .flow-wrp li:before {
  position: absolute;
  left: 15px;
  top: 0;
  font-size: 2.4rem;
  color: rgba(3, 105, 54, 0.8);
}
#flow .flow-wrp li dt {
  width: 375px;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  font-size: 4.2rem;
  color: #036936;
}
#flow .flow-wrp li dt:before, #flow .flow-wrp li dt:after {
  width: 16px;
  height: 96px;
  background: url(../img/lesson/flow-ttl_frame.png) center/100% no-repeat;
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
}
#flow .flow-wrp li dt:before {
  left: 0;
}
#flow .flow-wrp li dt:after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
#flow .flow-wrp li:nth-child(1):before {
  content: "01 /";
}
#flow .flow-wrp li:nth-child(2):before {
  content: "02 /";
}
#flow .flow-wrp li:nth-child(3):before {
  content: "03 /";
}
#flow .flow-wrp li:nth-child(4):before {
  content: "04 /";
}
#flow .flow-wrp li dd {
  width: 515px;
  text-align: left;
}

/*----------------------------
よくあるご質問
-----------------------------*/
#faq {
  background: url(../img/lesson/faq-bg.png) center/cover no-repeat;
}
#faq .faq-wrp {
  background: rgba(255, 255, 255, 0.9);
  padding: 50px 90px;
}
#faq .faq-wrp > li {
  text-align: left;
  margin-bottom: 25px;
}
#faq .faq-wrp > li:last-child {
  margin-bottom: 0;
}
#faq .faq-wrp > li dt {
  color: #036936;
  font-size: 2rem;
  border-bottom: 1px solid #7a9f83;
  padding: 0 10px 5px 40px;
  margin-bottom: 10px;
  position: relative;
}
#faq .faq-wrp > li dt:before {
  position: absolute;
  content: 'Q.';
  left: 0;
  top: -2px;
}
#faq .faq-wrp > li dd {
  padding-left: 40px;
}

/*==========================================
コース案内
===========================================*/
#course .lead-txt {
  margin-bottom: 60px;
}
#course .lead-txt span {
  font-size: 2rem;
  color: #036936;
  display: block;
}
#course .course-wrp {
  padding: 25px 40px;
  border-bottom: 1px solid #7a9f83;
  border-top: 1px solid #7a9f83;
}
#course .course-wrp li {
  margin-bottom: 25px;
}
#course .course-wrp li:last-child {
  margin-bottom: 0;
}
#course .course-wrp li .post-name {
  width: 600px;
  text-align: left;
  font-size: 2.8rem;
  color: #036936;
}
#course .course-wrp li .price {
  width: 315px;
  text-align: right;
}
#course .course-wrp li .price em {
  font-size: 2rem;
}
#course .course-wrp li .course-notes {
  width: 100%;
  padding: 20px 15px;
  text-align: left;
  margin-top: 5px;
  background: rgba(230, 239, 232, 0.4);
}

/*==========================================
ギャラリー
===========================================*/
#gallery .lead-txt {
  font-size: 2rem;
  color: #036936;
  margin-bottom: 55px;
}
#gallery .gallery-wrp {
  padding-top: 35px;
  border-top: 1px solid #7a9f83;
}

/*==========================================
スクール概要
===========================================*/
/*-------------------------
スクール情報
--------------------------*/
#information .com-dl {
  width: 625px;
}

/*-------------------------
アクセスマップ
--------------------------*/
#access .ttl01 .en {
  color: #7698d8;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.category-select {
  overflow: hidden;
  width: 300px;
  margin-left: auto;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  border-radius: 2px;
  border: 2px solid #2e2e2e;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: .8em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #2e2e2e;
  pointer-events: none;
}
.category-select select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: .01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 38px 10px 8px;
  color: #2e2e2e;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.category-select select::-ms-expand {
  display: none;
}

/*==========================================
お知らせ
===========================================*/
.post-wrap .column-lists > li {
  margin-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.post-wrap .column-lists > li a {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
}
.post-wrap .column-lists > li a:hover .more-btn {
  background: #fff;
  color: #036936;
}
.post-wrap .column-lists > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.post-wrap .column-lists .post-ttl {
  text-align: left;
  margin-bottom: 15px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl time {
  color: #036936;
  text-align: left;
  padding: 4px 0;
  width: 65px;
}
.post-wrap .column-lists .post-ttl time,
.post-wrap .column-lists .post-ttl .category-label {
  font-weight: normal;
  font-size: 10px;
}
.post-wrap .column-lists .post-ttl .category-label {
  width: 720px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.post-wrap .column-lists .post-ttl .category-label li {
  border: 1px solid #036936;
  color: #fff;
  background: #036936;
  padding: 2px 10px;
  margin-right: 5px;
  margin-bottom: 5px;
}
.post-wrap .column-lists .post-ttl .category-label li:last-child {
  margin-right: 0;
}
.post-wrap .column-lists .post-ttl .column-ttl {
  width: 100%;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 500;
}
.post-wrap .column-lists .post-body {
  text-align: left;
  margin-bottom: 20px;
}
.post-wrap .column-lists .more-btn {
  width: 125px;
  font-size: 14px;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: #036936;
  border: 1px solid #036936;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.post-wrap .column-lists .thumb {
  width: 210px;
  height: 200px;
}
.post-wrap .column-lists .post-area {
  width: 800px;
}
.post-wrap .post-content {
  padding: 0 20px 5px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}
.post-wrap .post-content img {
  max-width: 100%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single-meta {
  margin-bottom: 20px;
}
.single-meta time {
  font-size: 11px;
  text-align: left;
  width: 85px;
  padding: 3px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.single-meta .category-label {
  width: 950px;
  font-size: 10px;
  margin-left: 10px;
}
.single-meta .category-label li {
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-meta .category-label li:last-child {
  margin-right: 0;
}
.single-meta .category-label li a {
  border: 1px solid #036936;
  color: #036936;
  padding: 3px 10px;
  border-radius: 25px;
  display: block;
}
.single-meta .category-label li a:hover {
  opacity: 1;
  color: #fff;
  background: #036936;
}

/*----------------------------------
詳細ページのカテゴリー表示(テキストエリア下部)
----------------------------------*/
.single-category {
  max-width: 250px;
  min-width: 150px;
  margin-top: 10px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.single-category dt {
  width: 80px;
}
.single-category dt:after {
  content: ':';
  padding: 0 5px;
}
.single-category dd {
  max-width: 170px;
  line-height: 2;
  min-width: 60px;
}
.single-category ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.single-category ul li {
  margin-right: 5px;
}
.single-category ul li:last-child {
  margin-right: 0;
}
.single-category ul li a {
  display: block;
  padding-left: 8px;
  position: relative;
}
.single-category ul li a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  left: 0;
  content: '#';
}
.single-category ul li a:hover {
  background: #ccc;
}

/*==========================================
お問い合わせ
===========================================*/
#contact .contact-form {
  margin-bottom: 20px;
}
#contact .contact-form dl dt {
  padding: 0 15px;
  width: 320px !important;
  position: relative;
  vertical-align: top;
}
#contact .contact-form dl dt em {
  position: absolute;
  top: 0;
  right: 10px;
  color: #f00;
  font-weight: 500;
  padding: 3px;
  font-size: 11px;
}
#contact .contact-form dl dd {
  padding: 0 15px;
}
#contact .contact-form dl dd li {
  list-style: none;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#contact .contact-form dl dd li:last-child {
  margin-right: 0;
}
#contact .contact-form .txtarea {
  width: 640px;
  font-size: 16px;
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
}
#contact .contact-form select {
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  color: #161b17;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
}
#contact .contact-form #post01,
#contact .contact-form #post02 {
  width: 150px;
}
#contact .contact-form #addr21 {
  margin-top: 15px;
}
#contact .contact-form textarea {
  height: 260px;
  line-height: 1.8;
}
#contact .contact-form .error-text {
  color: #ff0000;
  margin-bottom: 5px;
}
#contact .contact-form .upload-item-wrap #file01 {
  margin-bottom: 10px;
}
#contact .contact-form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact-form .upload-item-wrap .thumb img {
  max-width: 100%;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  width: 100%;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 5px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .ancion-btn:hover,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button:hover {
  filter: alpha(opacity=60);
  opacity: .6;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .upload-button {
  margin-bottom: 5px;
  background: #036936;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap p {
  background: #477c54;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap .select-file,
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input {
  display: none !important;
}
#contact .contact-form .upload-item-wrap .ancion-btn-wrap input#file-upload-button {
  background: #477c54;
}
#contact .g-recaptcha div {
  margin: 0 auto;
  margin-bottom: 25px;
}
#contact input[type='button'][disabled],
#contact input[type='submit'][disabled] {
  opacity: .7;
  pointer-events: none;
}
#contact input[type='button'],
#contact input[type='submit'],
#contact .contact-submits-wrap button {
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
  background: #fff;
  padding: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Serif JP", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", serif;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 1px solid #036936;
  color: #036936;
  border-radius: 0;
}
#contact input[type='button']:hover,
#contact input[type='submit']:hover,
#contact .contact-submits-wrap button:hover {
  background: #036936;
  cursor: pointer;
  color: #fff;
  filter: alpha(opacity=100);
  opacity: 1;
}
#contact .check-btn {
  width: 260px;
  margin: 0 auto;
  margin-top: 20px;
}
#contact .back-btn {
  width: 270px;
  margin: 0 auto;
  margin-right: 40px;
}
#contact .contact-submits-wrap {
  margin-top: 20px;
}
#contact .send-btn {
  width: 240px;
  margin: 0 auto;
}
#contact .privacy-agree {
  text-decoration: underline;
  color: -webkit-link;
}

/*==========================================
プライバシーポリシー
===========================================*/
#privacy .privacy-box {
  margin-bottom: 40px;
  text-align: left;
}
#privacy .privacy-box:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box p {
  margin-bottom: 25px;
}
#privacy .privacy-box p:last-child {
  margin-bottom: 0;
}
#privacy .privacy-box ul {
  margin-top: 25px;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/
/*==========================================
404.php
===========================================*/
#err-cont .txt-blc a {
  text-decoration: underline;
}
