@charset "UTF-8";
/*--------------------------------------------

せんだいアクティブライフスタイル
https://www.khb-tv.co.jp/sendai-activelifestyle/index.html

   [00] 基本設定
   [01] ヘッダー
   [02] メインビジュアル
   [03] ABOUT
   [04] 講座開催内容
   [05] 講座スケジュール
   [06] オンライン参加
   [07] 講師プロフィール
   [08] 参加申し込み
   [09] フッター
   [99] 標準機能

---------------------------------------------*/
/*--------------------------------------------
   [00] 基本設定
---------------------------------------------*/
* {
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
  /*1rem=10px*/
}

body {
  font-size: 1.8rem;
  /*本文サイズ 1.8rem=18px*/
  line-height: 2;
  color: #33312b;
}

img {
  max-width: 100%;
  height: auto;
  text-align: center;
}

a {
  transition: 0.4s;
  color: #0084DB;
  text-decoration-line: underline;
}
a:hover {
  transition: 0.4s;
  opacity: 0.7;
}

::-moz-selection {
  background: #0084DB;
  color: #ffffff;
}

::selection {
  background: #0084DB;
  color: #ffffff;
}

h1, h2, h3, h4, h5, th {
  font-weight: 700;
}

main {
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  padding-top: 100px;
}

/*セクション設定-------------------------*/
.bg-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  background-size: contain;
  background: url("../images/bg.jpg");
  z-index: -1;
}

main {
  width: 100%;
}

section {
  padding: 100px 0;
}

.w_limit_sp {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
}

.w_limit_1440 {
  max-width: 1440px;
  margin: 0 auto;
}

.w_limit_1280 {
  max-width: 1280px;
  margin: 0 auto;
}

.w_limit_1100 {
  max-width: 1100px;
  margin: 0 auto;
}

.w_limit_1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.w_90per {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.w_limit_900 {
  max-width: 900px;
  margin: 0 auto;
}

h2 {
  line-height: 1;
  position: relative;
  margin-bottom: 80px;
  display: block;
  font-size: 3.2rem;
  text-align: left;
  vertical-align: middle;
  z-index: 1;
}
h2::before {
  content: "";
}

h2.h2-sideicon {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
h2.h2-sideicon img {
  height: 60px;
  width: auto;
  margin-right: 25px;
}

.flex_cal2 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1.5;
}
.flex_cal2 > div {
  width: 55%;
}
.flex_cal2 > figure {
  width: 40%;
}

/*アンカーリンクの飛び先*/
#Event-anchor, #About-anchor, #Date-anchor, #Nittei-anchor, #Online-anchor, #Contact-anchor, #Takuji-anchor, #Profile-anchor {
  margin-top: -100px;
  padding-top: 100px;
}

#aruku-pdf {
  margin-top: -100px;
}
#aruku-pdf::before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 1200px) {
  h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .flex_cal2 {
    align-items: flex-start;
    display: block;
  }
  .flex_cal2 > div {
    width: 100%;
  }
  .flex_cal2 > figure {
    width: 100%;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 600px) {
  section {
    padding: 25px 0;
  }
  body {
    font-size: 1.6rem;
  }
  h2.h2-sideicon {
    flex-direction: column;
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.5;
  }
  h2.h2-sideicon img {
    height: 50px;
    margin-right: 0px;
    margin-bottom: 15px;
  }
}
/*--------------------------------------------
[01] ヘッダー
---------------------------------------------*/
header {
  height: 100px;
  background-color: #ffffff;
  z-index: 999;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
header .w_limit_sp {
  height: 100%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
header h1 {
  width: 20%;
}
header h1 img {
  width: 220px;
  height: auto;
}
header nav#header_nav {
  width: 60%;
}
header nav#header_nav ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: flex-start;
}
header nav#header_nav ul li {
  margin: 0px 3%;
  position: relative;
}
header nav#header_nav ul li img {
  display: block;
}
header nav#header_nav ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

header.fixed {
  position: fixed; /*fixedを設定して固定*/
  z-index: 999; /*最前面へ*/
  top: 0; /*位置指定*/
  display: block;
  width: 100%;
}

.header-contact {
  text-align: right;
  position: relative;
  top: 0;
  right: 0;
  width: 25%;
  height: 100%;
  padding: 5px;
  background-color: #49CAD4;
  z-index: 5;
  transition: 0.3s;
}
.header-contact a {
  display: block;
  height: 100%;
  border: solid 2px #ffffff;
  text-align: center;
}
.header-contact a img {
  width: auto;
  height: 60px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.header-contact:hover {
  background-color: #ffb340;
  transition: 0.3s;
  opacity: 1;
}

.header-contact-tablet, .toggle {
  display: none;
}

.sticky-Btn {
  position: fixed;
  display: block;
  bottom: 15px;
  right: 15px;
  text-align: center;
  z-index: 75;
  border-top-left-radius: 15px;
}
.sticky-Btn a {
  vertical-align: middle;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}
.sp-sticky-Btn {
  display: none;
}

@media screen and (max-width: 1000px) {
  .header-contact {
    display: none;
  }
  .sticky-Btn {
    text-align: center;
    bottom: 5px;
    right: 5px;
    margin: auto;
    width: 70%;
  }
  .sticky-Btn a {
    justify-content: center;
  }
  .sp-sticky-Btn {
    position: fixed;
    display: block;
    width: 60%;
    height: 70px;
    bottom: 0;
    right: 0;
    padding: 3px;
    background-color: #49CAD4;
    text-align: center;
    max-width: 300px;
    z-index: 75;
    border-top-left-radius: 15px;
  }
  .sp-sticky-Btn a {
    vertical-align: middle;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
  }
  .sp-sticky-Btn a img {
    height: 60px;
  }
  header h1 {
    width: 35%;
  }
  header nav {
    width: 65%;
  }
  header nav ul {
    justify-content: space-between;
  }
  header nav ul li {
    margin: 0;
    margin-left: 20px;
  }
}
.nav-text {
  font-weight: 400;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
  margin-top: 7px;
  color: #666666;
  color: #659FDD;
}

.nav-only-sp {
  display: none;
}

@media screen and (max-width: 1150px) and (min-width: 768px) {
  .nav-text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 80px;
  }
  .nav-text {
    display: inline-block;
    margin-left: 15px;
  }
  header {
    height: 80px;
    padding: 15px 0;
  }
  header h1 {
    width: 100%;
    padding: 0;
  }
  header h1 img {
    height: 70px;
    width: auto;
  }
  header nav {
    width: 10%;
    position: relative;
  }
  header nav ul {
    justify-content: space-between;
  }
  header nav ul li {
    margin: 0;
    margin-left: 20px;
  }
  header nav ul li:first-of-type {
    margin-left: 0;
  }
  header nav ul li img {
    height: 28px;
  }
  .toggle {
    position: absolute;
    right: 10px;
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 12;
    top: 60%;
    transform: translateY(-55%);
  }
  .toggle span {
    display: block;
    position: absolute;
    width: 70%;
    height: 3px;
    border: none;
    background: #5eabd3;
    transition: 0.35s ease-in-out;
    right: 7px;
  }
  .toggle span:nth-child(1) {
    top: 3px;
  }
  .toggle span:nth-child(2) {
    top: 13px;
  }
  .toggle span:nth-child(3) {
    top: 23px;
  }
  /* .activeを付与した時(jsで変化させたときのスタイル)
      ------------------------*/
  body.active {
    overflow: hidden;
    /*背景スクロール禁止*/
  }
  nav#header_nav.active {
    display: block;
  }
  .toggle.active span {
    border-color: #ffffff;
  }
  .toggle.active span:nth-child(1) {
    top: 15px;
    left: 4px;
    transform: rotate(-45deg);
  }
  .toggle.active span:nth-child(2), .toggle.active span:nth-child(3) {
    top: 15px;
    transform: rotate(45deg);
  }
  .nav-only-sp {
    display: block;
  }
  nav#header_nav {
    display: none;
    z-index: 85;
    position: fixed;
    width: 75vw !important;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #f8fcc0;
    padding-top: 75px;
    padding: 75px 2%;
    overflow: scroll;
    font-size: 1.6rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  nav#header_nav ul {
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    height: auto;
  }
  nav#header_nav ul li {
    display: block;
    padding: 15px 10px;
    width: 100%;
    border-top: solid 1px #41aae7;
    margin-right: 0%;
    margin-left: 0;
    padding-left: 0;
    position: relative;
  }
  nav#header_nav ul li a {
    text-align: left;
    padding: 0 25px;
  }
  nav#header_nav ul li a::before {
    content: "";
    border-style: solid;
    border-width: 2px 2px 0 0;
    border-color: #41aae7;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    transition: 0.6s;
  }
  nav#header_nav ul li:last-of-type {
    border-bottom: solid 1px #41aae7;
  }
}
/*--------------------------------------------
[02] メインビジュアル
---------------------------------------------*/
#Mainvisual {
  padding: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 15;
  position: relative;
}

.mv-pc {
  display: block;
  position: relative;
  margin: auto;
  width: 100%;
}

@media screen and (min-width: 1920px) {
  #Mainvisual {
    background-size: cover;
    background-position: bottom 5vh center;
  }
}
@media screen and (max-width: 600px) {
  #Mainvisual {
    background: none;
    background-size: contain;
  }
  #Mainvisual img {
    width: 100%;
    height: auto;
  }
}
/*
  youtube埋め込み
---------------------------------------------*/
section#youtube {
  background: rgba(255, 255, 255, 0);
}
section#youtube .w_limit_1280 {
  padding: 15px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 768px) {
  section#youtube {
    padding-top: 0px;
    padding-bottom: 15px;
  }
  section#youtube .w_limit_1280 {
    padding: 0px;
  }
}
#top-to-Form {
  padding-top: 0;
  padding-left: 15px;
  padding-right: 15px;
}
#top-to-Form .toForm-box {
  max-width: 720px;
  margin: 0 auto;
  border: solid 8px #c7ba9a;
  box-shadow: rgba(0, 0, 0, 0.4) 7px 7px 25px;
}

#Work {
  background-color: #ffffff;
  padding: 50px 0;
}
#Work .w_limit_1280 {
  margin: auto;
}
#Work .w_limit_1280 > p {
  text-align: center;
}

.work_container .work_box.flex_cal2 > figure {
  width: 100%;
  margin-left: calc(50% - 50vw);
  flex: 2 1 680px;
}
.work_container .work_box.flex_cal2 > figure img {
  width: 100%;
  max-width: auto;
}
.work_container .work_box.flex_cal2 > div {
  width: 50%;
  margin-left: 5%;
  padding: 15px;
}
.work_container .work_box.flex_cal2:nth-of-type(even) > figure {
  order: 2;
  margin: 0;
  margin-right: calc(50% - 50vw);
}
.work_container .work_box.flex_cal2:nth-of-type(even) > div {
  order: 1;
  margin-left: 0%;
  margin-right: 5%;
}
.work_container .work_box.flex_cal2:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 900px) {
  .work_container {
    width: 100% !important;
  }
  .work_container .work_box.flex_cal2 {
    margin: 50px 0;
    display: block;
    width: 100%;
  }
  .work_container .work_box.flex_cal2 > figure {
    width: 100% !important;
    margin-left: 0;
    display: block;
  }
  .work_container .work_box.flex_cal2 > figure img {
    width: 100%;
  }
  .work_container .work_box.flex_cal2 > div {
    width: 100% !important;
    display: block;
    margin-left: 0%;
  }
}
@media screen and (max-width: 600px) {
  #Mainvisual .w_limit_1280 {
    margin-bottom: 0;
  }
  section#Work {
    margin-top: 0;
    padding-top: 0;
  }
  .work_container .work_box.flex_cal2 {
    margin-top: 0;
  }
  .work_container .work_box.flex_cal2 > figure {
    margin-top: 0;
  }
}
/*--------------------------------------------
   [03] イベントリスト
---------------------------------------------*/
ul.event_list {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
ul.event_list li {
  width: 30%;
  margin-right: 5%;
  position: relative;
  margin-bottom: 60px;
  padding-bottom: 35px;
}
ul.event_list li:nth-of-type(3n) {
  margin-right: 0;
}
ul.event_list li a.list_link {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}
ul.event_list li a.list_link:hover {
  background-color: rgba(255, 179, 64, 0.4);
}
ul.event_list li .list_datebox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
ul.event_list li .icon_stamp {
  /*			position: absolute;
  			right: 0;
  			bottom: 0;
  			z-index: 0;*/
  margin-top: 10px;
}
ul.event_list li .list_date {
  color: #ff744d;
  font-weight: 600;
  margin-top: 15px;
}
ul.event_list::after {
  content: "";
  width: 30%;
  display: block;
}
ul.event_list .event_title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.5;
  border: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.caution_linestamp {
  align-items: center;
  line-height: 1.5;
}
.caution_linestamp img {
  margin-right: 0.5rem;
}

@media screen and (max-width: 767px) {
  ul.event_list {
    flex-direction: column;
  }
  ul.event_list li {
    width: 100%;
    margin-right: 0;
  }
}
/*--------------------------------------------
   [03] ABOUT
---------------------------------------------*/
section#Event {
  margin-bottom: 0;
}

section#About {
  position: relative;
  z-index: 1;
  background-color: #ffffff !important;
}
section#About > .w_limit_1280, section#About > .w_limit_1440 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.about_h2_bg {
  padding: 50px 0 25px; /*	*/
  background-color: #ffffff !important;
  z-index: 5;
  position: relative;
}
.about_h2_bg h2.h2-sideicon {
  padding-top: 0;
  margin: 0;
}

.about-pc {
  position: relative;
  background-color: #ebf7ff;
  background-image: radial-gradient(rgba(255, 212, 212, 0.5) 12%, rgba(255, 255, 255, 0) 32%), radial-gradient(rgba(255, 212, 212, 0.5) 12%, rgba(255, 255, 255, 0) 32%);
  background-position: 0 0, 5px 5px;
  background-size: 10px 10px;
}

.about-bg-01 {
  background-image: url("../images/about-bg-01.jpg");
  /* background:  linear-gradient(#b7d6ef, #e4deff);*/
  background-color: #ebf7ff;
  padding: 100px 0 220px;
  margin-top: -50px;
  /*  transform: skewY(6deg);*/
  transform-origin: top right;
  position: relative;
}
.about-bg-01 > div {
  /*  transform: skewY(-6deg) !important;*/
}
.about-bg-01 .w_limit_1280 {
  position: relative;
}

.about-bg-02 {
  position: relative;
  padding-top: 150px;
  margin-top: -200px;
  padding-bottom: 0px;
  z-index: 3;
}

.about-bg-03 {
  background-color: #FFEBDD;
  transform: skewY(-6deg);
  transform-origin: top right;
  position: relative;
  z-index: 0;
  padding-top: 150px;
  margin-top: -250px;
  padding-bottom: 50px;
  margin-bottom: 250px;
}
.about-bg-03 > div {
  transform: skewY(6deg) !important;
}
.about-bg-03::after {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  background-color: #FFEBDD;
  position: absolute;
  bottom: -100px;
  left: 0;
  z-index: 0;
  transform: skewY(6deg) !important;
}

.about-02 {
  position: absolute;
  right: 0;
  top: 120px;
  margin: auto;
  z-index: 3;
}

.about-03 {
  position: relative;
  padding-bottom: 50px;
}

.about-04 {
  margin-top: -50px;
  position: relative;
  z-index: 4;
  padding-bottom: 120px;
}

.bg_03::before {
  content: "";
  transform: skewY(-8deg);
  background-color: #f9f5b1;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-img {
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 0;
}

.about-05 {
  margin-top: 50px;
  padding-top: 0;
  position: relative;
  z-index: 4;
}

.about-06 {
  text-align: center;
  margin-top: -100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 5;
}
.about-06::after {
  content: "";
  background-image: url("../images/before-arrow.svg");
  background-repeat: no-repeat;
  width: 50px;
  height: 94px;
  background-size: contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: auto;
  z-index: 999;
}

.btn-case {
  background-color: #ffffff;
  width: 100%;
  max-width: 350px;
  color: #49cad4;
  border: solid 2px #49cad4;
  padding: 10px 15px;
  padding-left: 30px;
  text-align: center;
  border-radius: 50px;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
}
.btn-case::before {
  content: "";
  background-image: url("../images/icon-question.svg");
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
}

.btn-case-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 55;
}

.active-example-list {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  padding: 50px 5%;
  margin: auto;
  width: 100%;
  max-width: 1280px;
  transition: 0.3s;
  position: relative;
  display: block;
  z-index: 5;
  margin-top: 50px;
  position: relative;
}
.active-example-list figure {
  position: absolute;
  z-index: 0;
  bottom: 25px;
  right: 0;
  width: 40%;
}
.active-example-list h3 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: solid 1px #ffadaf;
}
.active-example-list ul {
  position: relative;
  z-index: 1;
}
.active-example-list ul li {
  position: relative;
  padding-left: 1em;
  font-size: 2.1rem;
  margin-bottom: 10px;
}
.active-example-list ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background-color: #ffadaf;
  position: absolute;
  left: 0;
  top: 1em;
}

@media screen and (max-width: 1200px) {
  .about-bg-01 {
    padding: 150px 0 0px;
  }
  .about-02 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .about-02 img {
    width: 60vw;
  }
  .about-04 {
    width: 60vw;
    left: 0;
    right: auto;
    text-align: left;
    margin: 0;
  }
  .about-img {
    width: 45vw;
  }
  .about-05 {
    width: 60vw;
    margin: 25px 0 0;
  }
}
@media screen and (max-width: 1180px) {
  .btn-case {
    position: relative;
    margin-bottom: 40px;
  }
  .active-hide-list {
    position: relative;
  }
  .active-hide-list::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 17.3px 10px;
    border-color: transparent transparent #49cad4 transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: -17.3px;
    margin: auto;
  }
  .case-container {
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 15px;
  }
}
.btn-case-wrap {
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .about-bg-01 {
    padding: 50px 0 0px;
  }
  .about-bg-02 {
    position: relative;
    padding-top: 150px;
    margin-top: -200px;
    padding-bottom: 0px;
    z-index: 3;
  }
  .about-bg-03 {
    background-color: #FFEBDD;
    transform: skewY(-6deg);
    transform-origin: top right;
    position: relative;
    z-index: 2;
    padding-top: 150px;
    margin-top: -250px;
    padding-bottom: 50px;
    margin-bottom: 250px;
  }
  .about-01, .about-02, .about-03, .about-04, .about-05, .about-img {
    max-width: 600px;
    padding: 0 15px;
  }
  .about-01 {
    margin: 50px auto;
  }
  .about-02 {
    display: none;
  }
  .about-03 {
    margin-top: 50px;
    width: 100%;
  }
  .about-04 {
    position: relative;
    width: 100%;
    margin: 15px auto 50px;
  }
  .about-img {
    position: relative;
    right: 0;
    text-align: center;
    bottom: 0px;
    margin: 0px auto;
    width: 100%;
  }
  .about-05 {
    margin-top: 0px;
    padding-top: 0;
    position: relative;
    margin: auto;
    text-align: center;
    width: 100%;
  }
  .active-example-list figure {
    margin: 25px auto 0;
    width: 100%;
    max-width: 360px;
    position: relative;
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #About h2 span.h2-about {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14vw;
  }
}
@media screen and (max-width: 480px) {
  section#About > .w_limit_1280 {
    padding: 0px inherit;
  }
  .about-01 {
    margin: 25px 0;
  }
}
/*--------------------------------------------
[09] あるくと
---------------------------------------------*/
section#Aruku {
  position: relative;
  z-index: 5;
}

/*--------------------------------------------
[09] 構成団体
---------------------------------------------*/
section#Dantai {
  position: relative;
  z-index: 10;
}

h2.h2_dantai {
  text-align: center;
  color: #2094d4;
  z-index: 15;
  margin-bottom: 40px;
}
h2.h2_dantai span {
  font-size: 2.1rem;
  display: block;
  line-height: 1.5;
}

.bg_dantai {
  background-image: url("../images/bg_dantai.png");
}

ul.dantai_container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.dantai_container::after {
  content: "";
  display: block;
  width: 19.2%;
}
ul.dantai_container li {
  width: 19.2%;
  margin-right: 1%;
  margin-bottom: 15px;
}
ul.dantai_container li:nth-of-type(5n) {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  h2.h2_dantai {
    text-align: center;
    color: #2094d4;
    line-height: 1.8;
    z-index: 15;
    margin-bottom: 20px;
  }
  h2.h2_dantai span {
    font-size: 1.8rem;
    display: block;
  }
  ul.dantai_container::after {
    content: "";
    display: block;
    width: 32%;
  }
  ul.dantai_container li {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 15px;
  }
  ul.dantai_container li:nth-of-type(5n) {
    margin-right: 2%;
  }
  ul.dantai_container li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  ul.dantai_container::after {
    content: "";
    display: block;
    width: 48%;
  }
  ul.dantai_container li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 15px;
  }
  ul.dantai_container li:nth-of-type(3n) {
    margin-right: 4%;
  }
  ul.dantai_container li:nth-of-type(2n) {
    margin-right: 0;
  }
  h2.h2_dantai span {
    font-size: 1.6rem;
  }
}
/*--------------------------------------------
[09] フッター
---------------------------------------------*/
footer {
  background: #ffb340;
  padding: 100px 0 100px;
  z-index: 5;
}

.archive {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 50px 15px;
  margin-bottom: 50px;
}

/* スポンサー
---------------------------------------------*/
#Sponsor {
  margin-bottom: 50px;
}
#Sponsor .w_limit_1280 {
  position: relative;
}
#Sponsor dl {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  padding: 25px;
  position: relative;
  border-top: solid 2px #ffb340;
  background-color: #ffffff;
}
#Sponsor dl:last-of-type {
  border-bottom: solid 2px #ffb340;
}
#Sponsor dl dt {
  width: 25%;
}
#Sponsor dl dd {
  width: 75%;
  align-self: center;
}
#Sponsor dl dd.kyosan-flex {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
}

.contactBox {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.contactBox > div {
  width: 70%;
}
.contactBox figure {
  width: 25%;
}

.kyosan-flex div:first-of-type {
  line-height: 0;
}

@media screen and (max-width: 767px) {
  #Sponsor dl {
    padding: 25px 15px;
  }
  #Sponsor dl dt {
    margin-right: 5%;
  }
  #Sponsor dl dd {
    width: 70%;
  }
  #Sponsor dl dd.kyosan-flex {
    flex-direction: column;
  }
  #Sponsor dl dd.kyosan-flex p {
    margin-bottom: 40px;
  }
  #Sponsor dl dd.kyosan-flex p:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .contactBox {
    flex-direction: column;
  }
  .contactBox > div {
    width: 100%;
    margin-bottom: 25px;
  }
  .contactBox figure {
    width: 100%;
  }
}
.footer-logo {
  text-align: center;
  padding-bottom: 50px;
}
.footer-logo img {
  width: 465px;
  height: 39px;
}

.contact-box {
  /*  border: solid 1px #372163;*/
  max-width: 1000px;
  padding: 45px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 100px auto 100px;
  border: solid 5px #c7ba9a;
}

.contact-title {
  display: block;
  width: 24%;
  font-size: 2.4rem;
  padding-bottom: 0;
  margin-bottom: 0;
  border-right: solid 1px #33312b;
  text-align: center;
  font-weight: 600;
  padding-right: 25px;
}

h2.contact-title::after {
  display: none;
}

.contact-txt {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  width: 70%;
}

.contact-add {
  text-align: left;
  margin-left: 25px;
}
.contact-add p.contact-email span {
  color: #0083da;
  font-size: 2.1rem;
}
.contact-add .tel-link {
  font-size: 2.4rem;
}
.contact-add .tel-link a {
  font-size: 2.4rem;
}

small {
  display: block;
  text-align: center;
}

#PageTop {
  display: block;
  position: fixed;
  bottom: 5%;
  right: 5%;
  width: 68px;
  height: 68px;
  border-radius: 68px;
  background: #ffffff;
  border: solid 2px #ff744d;
  z-index: 5;
  transition: 0.5s;
}
#PageTop a {
  width: 100%;
  height: 100%;
  position: absolute;
}
#PageTop::before {
  content: "";
  border-style: solid;
  border-width: 3px 3px 0px 0px;
  border-color: #ff744d;
  transform: rotate(315deg);
  position: absolute;
  margin: auto;
  top: 7px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
}
#PageTop:hover {
  transition: 0.5s;
  background: #ff744d;
  border: solid 2px #ffffff;
}
#PageTop:hover::before {
  border-color: #ffffff;
}

@media screen and (max-width: 1000px) {
  .contact-txt {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-add {
    margin-left: 0px !important;
    margin-top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .contact-box {
    flex-direction: column;
    padding: 25px;
  }
  .contact-title {
    display: block;
    width: 100%;
    font-size: 2.8rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    border-right: none;
    border-bottom: solid 1px #050403;
  }
  .contact-txt {
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 0;
    align-items: center;
    margin-top: 15px;
  }
  .contact-txt .contact-add {
    align-items: center;
    text-align: center;
  }
  #PageTop {
    display: none !important;
  }
  footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
/*--------------------------------------------
[04] 講座開催内容
---------------------------------------------*/
#Date {
  padding-top: 0;
  padding-bottom: 0;
  z-index: 0;
  position: relative;
}
#Date::before {
  content: "";
  width: 100%;
  height: 18px;
  background-size: auto auto;
  background-color: #f4f2c7;
  background-image: repeating-linear-gradient(30deg, transparent, transparent 6px, white 6px, white 12px);
  padding: 5px 15px;
  position: absolute;
  top: 0;
}
#Date .w_limit_1280 {
  background-color: #ffffff;
  padding: 100px 0px;
}
#Date table {
  margin: 0 auto;
  font-size: 2.1rem;
  line-height: 1.5;
  width: 100%;
  max-width: 900px;
}
#Date table th {
  width: 20%;
  background: #659FDD;
  padding: 20px 30px;
  text-align: center;
  border-bottom: solid 1px #ffffff;
  /*    border-right: dashed 1px $theme-color;*/
  z-index: 3;
  color: #ffffff;
  vertical-align: middle;
}
#Date table td {
  width: 80%;
  padding: 20px 30px;
  vertical-align: middle;
  border-bottom: solid 1px #ffffff;
  background-color: #FFF7F8;
}
#Date table td p {
  margin-top: 5px;
}
#Date table td span.disp-pc-only {
  display: inline;
}
#Date table td .date-kome {
  font-size: 1.6rem;
  text-align: left;
}
#Date table tr:last-of-type th, #Date table tr:last-of-type td {
  border-bottom: none;
}

.to-googlemap-wrap {
  margin: 15px 0;
}

.to-googlemap.Btn {
  margin-left: 0rem;
  margin-top: 15px;
  position: relative;
  font-size: 16px;
  height: 50px;
  line-height: 46px;
  max-width: 280px;
  background-color: #ffffff;
  color: #00334e;
  border: solid 2px #00334e;
  text-align: center;
}
.to-googlemap.Btn::before {
  content: "";
  background-image: url("../images/icon-mappin.svg");
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  margin: auto;
  width: 15px;
  height: 22px;
}
.to-googlemap.Btn::after {
  border-color: #00334e;
}
.to-googlemap.Btn:hover::after {
  border-color: #23a1db;
}

.toform-Btn img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(5px 5px 5px rgba(104, 69, 18, 0.3));
}

@media screen and (max-width: 767px) {
  #Date table {
    border: none;
    font-size: 1.8rem;
  }
  #Date table th, #Date table td {
    display: block;
    width: 100%;
  }
  #Date table th {
    margin-top: 25px !important;
    border-right: none;
    border-bottom: none;
    padding: 5px 0px;
  }
  #Date table th:first-of-type {
    margin-top: 0;
  }
  #Date table td {
    border-bottom: none;
    border-top: none;
    text-align: center;
    padding: 15px 15px 30px;
  }
  .to-googlemap.Btn {
    margin: 25px auto 0;
  }
}
#Date ul {
  list-style-type: square;
  color: #30BCDE;
  padding-left: 25px;
  text-align: left;
}
#Date ul li:nth-of-type(n+2) {
  margin-top: 15px;
}
#Date ul li p {
  color: #33312b;
}
#Date .price {
  color: #E85F02;
  background: linear-gradient(transparent 70%, #FFF280 30%);
  font-weight: 700;
  font-size: 2.6rem;
  margin-left: 1em;
}

.ul-list-style-none {
  list-style-type: none;
  padding-left: 0;
}

#Date ul.course-bikou {
  margin-top: 25px;
  color: #E6843F;
}

.course-btn-container {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.course-btn-container a {
  z-index: 50;
  width: 100%;
  display: block;
}
.course-btn-container img {
  width: 480px;
  height: auto;
}

@media screen and (max-width: 600px) {
  .course-btn-container {
    flex-direction: column;
  }
  .course-btn-container p:last-of-type {
    margin-top: 25px;
  }
  #Date .price {
    margin: 10px auto 15px;
    text-align: center;
    display: block;
    background: #ffffff;
    border: solid 2px #FFEADC;
  }
}
@media screen and (max-width: 480px) {
  #Date table td span.disp-pc-only {
    display: none;
  }
}
/*--------------------------------------------
[05] イベントサブページ
---------------------------------------------*/
#Subpage .bg-fixed {
  opacity: 0.14;
}

.Crumbs {
  margin-top: 5px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  font-size: 1.5rem;
  width: 94%;
}
.Crumbs li {
  position: relative;
  margin-right: 30px;
}
.Crumbs li::after {
  content: "";
  border-width: 1px 0px 0px 1px;
  border-color: #9da7b3;
  width: 7px;
  height: 7px;
  transform: rotate(135deg);
  position: absolute;
  top: 3px;
  bottom: 0;
  left: -22px;
  margin: auto;
}
.Crumbs li:first-of-type::after {
  display: none;
}

section#Nittei {
  padding-top: 0;
}

.event_box {
  padding-top: 25px;
  margin-bottom: 75px;
  position: relative;
  /*  background-color: #ffffff;*/
}
.event_box h4 {
  font-size: 2.8rem;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.event_txt {
  font-size: 1.6rem;
}

.fc-red_A {
  color: #e62c17;
}

.fc-blue_B {
  color: #026cd6;
}

.event_mainvisual {
  text-align: center;
  margin: auto;
  max-width: 720px;
}

h3.h3-normal {
  font-size: 2.8rem;
  border-left: solid 8px #49cad4;
  padding-left: 20px;
  margin-bottom: 75px;
  margin-top: 50px;
}

.event_box-inner {
  margin: 0px auto;
  padding: 0 5%;
  position: relative;
}

.event_title {
  border-left: solid 6px #ff744d;
  padding: 15px 10px 15px 20px;
  margin-bottom: 25px;
}
.event_title h2 {
  margin-bottom: 0;
  line-height: 1.5;
}

.event_bosyu_box {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

/*募集状況アイコン*/
.icon_bosyu {
  background-color: #fa7e19;
  color: #ffffff;
  border-radius: 50px;
  text-align: center;
  padding: 0px 15px;
  height: 26px;
  line-height: 26px;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-right: 0.5em;
}

.icon_bosyu_before {
  background-color: #878787;
}

.icon_bosyu_after {
  background-color: #878787;
}

.event_date {
  font-weight: 600;
  font-size: 1.8rem;
}

.naiyou_readtxt {
  border-bottom: dashed 1px #ffb340;
  padding-bottom: 10px;
  padding-top: 10px;
  border-left: solid 5px #ffb340;
  padding-left: 15px;
  margin-bottom: 15px;
}

.naiyou_kugiriline {
  border-top: dashed 1px #ffb340;
  padding-top: 15px;
}

.event_box-inner .flex-cal2 {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
.event_box-inner .flex-cal2 .nittei-text {
  width: 55%;
}
.event_box-inner .flex-cal2 .flyer {
  width: 40%;
}

.event_title_icon {
  /* border-left: solid 5px $blue2023;
  	padding-left: 10px;
  	*/
  text-indent: -25px;
  padding-left: 25px;
}
.event_title_icon::before {
  content: "■";
  font-size: 15px;
  color: #5eabd3;
  padding-right: 10px;
}

.event_box table, table.default-table {
  width: 100%;
  margin: 40px 0 25px;
  font-size: 1.8rem;
  position: relative;
}

.event_box table tr, table.default-table tr {
  border-bottom: solid 1px #ffffff;
  line-height: 1.5;
}

.event_box table tr:last-of-type, table.default-table tr:last-of-type {
  border-bottom: none;
}

.event_box table {
  border-collapse: separate;
}
.event_box table th, .event_box table td {
  padding: 15px 15px;
}

.table-btn a.Btn {
  margin: 0;
}

table.default-table th, table.default-table td {
  padding: 0px 15px;
}

.event_box table th, table.default-table th {
  background-color: #ffffff;
  border-left: solid 1px #ffb340;
  border-bottom: solid 1px #ffb340;
  border-right: solid 10px #ffffff;
  width: 25%;
  text-align: center;
  vertical-align: middle;
}

.event_box table td, table.default-table td {
  border-bottom: solid 1px #c7c7c7;
  border-left: solid 1px #c7c7c7;
  background-color: #ffffff;
  width: 75%;
  z-index: 0;
}

.event_box table td ul, table.default-table td ul, ul.default-list {
  list-style-type: square;
  padding-left: 1.5em;
  color: #30BCDE;
}

.event_box table td ul li, table.default-table td ul li, ul.default-list li {
  margin: 15px 0;
}

.event_box table td ul li p, table.default-table td ul li p, ul.default-list li p {
  color: #33312b;
}

.flex-child_20 {
  width: 20%;
}

.flex-child_30 {
  width: 30% !important;
}

.flex-child_40 {
  width: 40% !important;
}

.flex-child_50 {
  width: 50%;
}

.flex-child_60 {
  width: 60%;
}
.flex-child_60 .flex-child_65 {
  width: 65% !important;
}

.flex-child_70 {
  width: 70%;
}

.event_box-inner .flex-cal2.flex-45-50 .nittei-text {
  width: 45%;
}
.event_box-inner .flex-cal2.flex-45-50 .flyer {
  width: 50%;
}

a.Btn.btn_close {
  background-color: #898989;
  color: #ffffff;
  border-color: #898989;
  pointer-events: none;
  height: auto;
  line-height: 1.5;
  padding: 20px 15px;
}
a.Btn.btn_close::before, a.Btn.btn_close::after {
  display: none;
}

.event_txt {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.flex_cal2.event_flex {
  align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .event_title {
    margin-bottom: 0px;
  }
  .event_title h2 {
    font-size: 2.8rem;
  }
  .event_box-inner .flex-cal2 {
    flex-direction: column;
  }
  .event_box-inner .flex-cal2 .nittei-text {
    width: 100%;
  }
  .event_box-inner .flex-cal2 .flyer {
    width: 75%;
    margin-top: 25px;
    margin: auto;
  }
  .event_box-inner .flex-cal2.flex-45-50 .nittei-text, .event_box-inner .flex-cal2.flex-45-50 .flyer {
    width: 100%;
  }
}
.boshu-end {
  background-color: #eeeeee;
  padding: 15px;
  margin-bottom: 50px;
}

.comingsoon {
  background-color: #fffdd6;
  padding: 15px;
}

.event_box p {
  line-height: 1.5;
}
.event_box h5 {
  font-size: 2rem;
  margin-top: 25px;
  margin-bottom: 0px;
  padding-bottom: 5px;
  border-bottom: solid 1px #cccccc;
  border-left: solid 5px orange;
  padding-left: 10px;
}

.ticket_present {
  background-color: #ffefcc;
  border-radius: 50px;
  padding: 10px;
  position: relative;
  margin-top: 25px;
  line-height: 1.2;
  /*&::after {
     content: "";
     position: absolute;
     top: -30px;
     left: 50px;
     margin-left: -15px;
     border: 15px solid transparent;
     border-bottom: 15px solid #ffefcc;
  }*/
}
.ticket_present::before {
  content: "★";
  color: #fbc800;
  font-size: 2.4rem;
}

@media screen and (max-width: 600px) {
  .event_box h4 {
    font-size: 2.4rem;
  }
  .event_box table, table.default-table {
    font-size: 1.6rem;
    margin-top: 10px;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .event_box table th, .event_box table td {
    display: block;
  }
  table.default-table th, table.default-table td {
    display: block;
  }
  .event_box table th, table.default-table th {
    padding-top: 5px;
    padding-bottom: 5px;
    width: 100%;
    margin-top: 15px;
  }
  .event_box table td, table.default-table td {
    width: 100%;
  }
}
/*--------------------------------------------
 [99] 標準機能
---------------------------------------------*/
/*
  微調整用
---------------------------------------------*/
.fz-12 {
  font-size: 1.2rem;
}

.fz-14 {
  font-size: 1.4rem;
}

.fz-15 {
  font-size: 1.5rem;
}

.fz-16 {
  font-size: 1.6rem;
}

.fz-18 {
  font-size: 1.8rem;
}

.fz-21 {
  font-size: 2.1rem;
}

.fz-24 {
  font-size: 2.4rem;
}

.fz-26 {
  font-size: 2.6rem;
}

.fz-28 {
  font-size: 2.8rem;
}

.fz-32 {
  font-size: 3.2rem;
}

@media screen and (max-width: 600px) {
  .fz-28 {
    font-size: 2.24rem;
  }
  .fz-32 {
    font-size: 2.56rem;
  }
  .fz-21_sp {
    font-size: 2.1rem;
  }
  .fz-18_sp {
    font-size: 1.8rem;
  }
  .fz-16_sp {
    font-size: 1.6rem;
  }
}
.fw-400 {
  font-weight: 400;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-900 {
  font-weight: 900;
}

.fc-normal {
  color: #33312b;
}

.fc-white {
  color: #ffffff;
}
.fc-white a {
  color: #ffffff;
}

.fc-red {
  color: #ba1c20;
}

.fc-yellow {
  color: #FCCF00;
}

.fc-blue {
  color: #5eabd3;
}

.fc-orange {
  color: #df5607;
}

.fc-vegablue {
  color: #393b8a;
}

.mgl-1em {
  margin-left: 1em;
}

.mgr-1em {
  margin-right: 1em;
}

.mgt-0 {
  margin-top: 0 !important;
}

.mgt-15 {
  margin-top: 15px;
}

.mgt-20 {
  margin-top: 20px;
}

.mgt-25 {
  margin-top: 25px;
}

.mgt-30 {
  margin-top: 30px !important;
}

.mgt-40 {
  margin-top: 40px !important;
}

.mgt-50 {
  margin-top: 50px !important;
}

.mgb-0 {
  margin-bottom: 0 !important;
}

.mgb-10 {
  margin-bottom: 10px;
}

.mgb-15 {
  margin-bottom: 15px;
}

.mgb-20 {
  margin-bottom: 20px;
}

.mgb-25 {
  margin-bottom: 25px;
}

.mgb-30 {
  margin-bottom: 30px !important;
}

.mgb-40 {
  margin-bottom: 40px !important;
}

.mgb-50 {
  margin-bottom: 50px !important;
}

.pdt-25 {
  padding-top: 25px;
}

.pdb-25 {
  padding-bottom: 25px;
}

.pdt-50 {
  padding-top: 50px;
}

.pdb-50 {
  padding-bottom: 50px;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.ta-left {
  text-align: left;
}

.indent-kome {
  padding-left: 1em;
  text-indent: -1em;
}

.lh-20 {
  line-height: 2;
}

.lh-15 {
  line-height: 1.5;
}

.lh-12 {
  line-height: 1.2;
}

/*テキスト装飾
-------------------------------*/
.marker_yellow_futo {
  background: linear-gradient(transparent 0%, #da0010 0%);
}

.marker_yellow_futo_y {
  background: linear-gradient(transparent 0%, #fbc800 0%);
}

.marker_yellow_hoso {
  background: linear-gradient(transparent 60%, #fbc800 60%);
}

.marker_yellow_hoso_r {
  background: linear-gradient(transparent 60%, #da0010 60%);
}

/*レスポンシブ改行
-------------------------------*/
.br_350, .br_480, .br_600, .br_768, .br_1200 {
  display: none;
}

/*order*/
.order_01 {
  order: 1 !important;
}

.order_02 {
  order: 2 !important;
}

@media screen and (max-width: 1200px) {
  .br_1200 {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .br_768 {
    display: inline;
  }
  .block-768 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .ta-center_sp {
    text-align: center;
  }
  .ta-right_sp {
    text-align: right;
  }
  .ta-left_sp {
    text-align: left;
  }
}
@media screen and (max-width: 600px) {
  .block-600 {
    display: block;
  }
  .br_600 {
    display: inline;
  }
}
@media screen and (max-width: 480px) {
  .br_480 {
    display: inline;
  }
}
@media screen and (max-width: 350px) {
  .br_350 {
    display: inline;
  }
}
/*
効果
----------------*/
.dropshadow {
  filter: drop-shadow(5px 5px 5px rgba(104, 69, 18, 0.3));
}

/*
  背景パターン
---------------------------------------------*/
.bg-white {
  background: #ffffff !important;
}

.bg-gray {
  background: #eaeaea;
}

.bg-shasen {
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 5px, whitesmoke 5px, whitesmoke 10px);
}

.bg-shasen-bold {
  background-size: auto auto;
  background-color: #bf6258;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 15px, #b85045 15px, #b85045 30px);
}

.bg-hougan {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 14px, #e7e7e7 16px), linear-gradient(90deg, rgba(255, 255, 255, 0) 14px, #e7e7e7 16px);
  background-size: 16px 16px;
}

/*rgba(218, 250, 227, 0.6)*/
.bg-dot-naname {
  background-color: #ffffff;
  background-image: radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%), radial-gradient(rgba(186, 226, 248, 0.2) 22%, rgba(255, 255, 255, 0) 22%);
  background-position: 0 0, 15px 15px;
  background-size: 30px 30px;
}

.bg-dot-hougan {
  background-color: #ffffff;
  background-image: radial-gradient(#e6e6e6 1px, rgba(255, 255, 255, 0) 1px);
  background-size: 12px 12px;
}

.bg-gradation {
  background: #6ca861;
  background: linear-gradient(45deg, #6ca861 0%, #379e8e 100%);
}

.bg-stripe {
  background-size: auto auto;
  background-color: white;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 15px, #ebca0e 15px, #ebca0e 30px);
}

/*
  ボタン
---------------------------------------------*/
a.Btn {
  font-size: 18px;
  text-decoration-line: none;
  max-width: 400px;
  height: 80px;
  line-height: 76px;
  background: #ffb340;
  border: solid 2px #ffb340;
  color: #1a1a1e;
  font-weight: 600;
  vertical-align: middle;
  position: relative;
  display: block;
  margin: auto;
  text-align: center;
  border-radius: 100px;
}
a.Btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border-radius: 20px;
}
a.Btn::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 37px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 4px 4px 0 0;
  border-color: #ffb340;
  transform: rotate(45deg);
  transition: 0.6s;
}
a.Btn:hover {
  background: #ffffff;
  color: #ffb340;
  opacity: 1;
}
a.Btn:hover::after {
  border-color: #ffb340;
  transition: 0.6s;
}
a.Btn:hover::before {
  border-color: #ffb340;
}

a.Btn.Btn_mini {
  font-size: 16px;
  max-width: 300px;
  height: 45px;
  line-height: 41px;
  margin: 10px 0;
}
a.Btn.Btn_mini::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  width: 8px;
  height: 8px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
  transition: 0.6s;
  border-color: #1a1a1e;
}
a.Btn.Btn_mini::before {
  background-color: transparent;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  display: none;
}

a.Btn.longBtn {
  line-height: 1.2;
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

@media screen and (max-width: 480px) {
  a.Btn {
    font-size: 1.6rem;
  }
}
/*
  スクロールアニメーション
    (スクロールしたら表示してほしいところにjs-animationをつける)
---------------------------------------------*/
.js-animation {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 1s;
}
.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.js-animation.js-ani-nomove {
  transform: translateY(0px);
  transition: all 1.2s;
}
.js-animation.js-ani-nomove.is-show {
  transform: translateY(0px);
}/*# sourceMappingURL=style.css.map */