@charset "UTF-8";
/*=====================================================
  share
=====================================================*/
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

html {
  font-size: 18px;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", meiryo, "メイリオ", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 1rem;
  font-feature-settings: "palt";
  letter-spacing: 0.1rem;
  color: #333;
  text-align: left;
  position: relative;
  background-color: #FFF;
  background-image: url(/images/bg.png);
}

a:link {
  color: #333;
}

a:visited {
  color: #333;
}

a:hover,
a:active {
  color: #8cc07c;
  text-decoration: none;
}

/*---------------------------------------------------
  p
---------------------------------------------------*/
p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 2;
}

@media print, screen and (min-width: 1200px) {
  p {
    font-size: 18px;
    font-size: 1rem;
  }
}

p:first-child {
  margin-top: 0;
}

/*==================================================
  header
==================================================*/
.header {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background-color: white;
  box-shadow: 0px 6px 15px -7px rgba(0, 0, 0, 0.1);
}

@media print, screen and (min-width: 768px) {
  .header {
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0px 6px 15px -7px rgba(0, 0, 0, 0);
    transition: all .2s;
  }
  .header.header--on {
    background-color: white;
    box-shadow: 0px 6px 15px -7px rgba(0, 0, 0, 0.1);
  }
}

@media print, screen and (min-width: 768px) {
  .header.header--on .header__logo {
    display: block;
    opacity: 1;
  }
}

.header .header__logo {
  width: 260px;
  margin: 12px auto 0 0;
}

@media print, screen and (min-width: 1200px) {
  .header .header__logo {
    position: relative;
    transition: all .2s;
  }
}

.header .header__spMenu {
  width: 60px;
  height: 60px;
  transition: all .2s;
  cursor: pointer;
  background-color: transparent;
  position: fixed;
  right: 0;
  top: 0;
  transition: all .2s;
}

@media print, screen and (min-width: 768px) {
  .header .header__spMenu {
    display: none;
  }
}

.header .header__spMenu span {
  position: absolute;
  left: 16px;
  width: 28px;
  height: 3px;
  overflow: hidden;
  text-indent: -9999px;
  background-color: #7b7b47;
  transition: all .2s;
}

.header .header__spMenu span:nth-of-type(1) {
  top: 19px;
}

.header .header__spMenu span:nth-of-type(2) {
  top: 29px;
}

.header .header__spMenu span:nth-of-type(3) {
  top: 39px;
}

.header .header__spMenu.on span:nth-of-type(1) {
  top: 29px;
}

.header .header__spMenu.on span:nth-of-type(2) {
  opacity: 0;
}

.header .header__spMenu.on span:nth-of-type(3) {
  top: 29px;
}

/*=====================================================
  gNav
=====================================================*/
.gNav {
  width: 100%;
  height: calc(100vh - 60px);
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  background-color: #efefef;
  background-image: url(/images/bg.png);
}

@media print, screen and (min-width: 768px) {
  .gNav {
    width: calc(100% - 260px);
    height: auto;
    display: block;
    position: relative;
    top: 0;
    margin: 0 0 0 auto;
    background-color: transparent;
    background-image: none;
  }
}

.gNav ul {
  width: 100%;
  margin: 0;
  padding: 20px;
}

@media print, screen and (min-width: 768px) {
  .gNav ul {
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}

.gNav ul li {
  margin: 0;
  padding: 10px 0 10px 0;
  line-height: 1;
  list-style: none;
}

@media print, screen and (min-width: 768px) {
  .gNav ul li {
    padding: 0 0 0 28px;
  }
}

.gNav ul li.gNav__policy {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li.gNav__policy {
    display: block;
  }
  .gNav ul li.gNav__policy a {
    background-image: url(/images/icon_arrow_primary_l_down.svg);
  }
}

.gNav ul li.gNav__message {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li.gNav__message {
    display: block;
  }
  .gNav ul li.gNav__message a {
    background-image: url(/images/icon_arrow_primary_l_down.svg);
  }
}

.gNav ul li.gNav__intro {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li.gNav__intro {
    display: block;
  }
  .gNav ul li.gNav__intro a {
    background-image: url(/images/icon_arrow_primary_l_down.svg);
  }
}

.gNav ul li.gNav__about {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li.gNav__about {
    display: block;
  }
  .gNav ul li.gNav__about a {
    background-image: url(/images/icon_arrow_primary_l_down.svg);
  }
}

.gNav ul li.gNav__access {
  display: none;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li.gNav__access {
    display: block;
  }
  .gNav ul li.gNav__access a {
    background-image: url(/images/icon_arrow_primary_l_down.svg);
  }
}

.gNav ul li a {
  margin: 0;
  padding: 0 0 0 24px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  background-image: url(/images/icon_arrow_primary_m_right.svg);
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 15px 15px;
}

@media print, screen and (min-width: 1200px) {
  .gNav ul li a:hover {
    text-decoration: underline;
  }
}

/*==================================================
  wrapper
==================================================*/
/*=====================================================
  main
=====================================================*/
.main {
  width: 100%;
  padding: 20px;
  background-color: #fff;
}

@media print, screen and (min-width: 1200px) {
  .main {
    width: 1200px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 10px;
  }
}

/*=====================================================
  spNav
=====================================================*/
.spNav {
  width: 100%;
  margin: 20px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

@media print, screen and (min-width: 768px) {
  .spNav {
    display: none;
  }
}

.spNav li {
  width: 49%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spNav li a {
  margin: 0 0 10px 0;
  padding: 8px 15px;
  display: block;
  background-color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.77778rem;
  border-radius: 40px;
  font-weight: bold;
  border: 3px solid #d1c9bf;
  background-image: url(/images/icon_arrow_primary_l_down.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
}

.spNav li.spNav__recruit a, .spNav li.spNav__busshinkai a {
  background-image: url(/images/icon_arrow_primary_m_right.svg);
  background-position: right 10px center;
}

/*==================================================
  footer
==================================================*/
.footer {
  width: 100%;
  margin: 0;
  padding: 40px 20px 160px 0;
  background-image: url(/images/bg.png);
}

@media print, screen and (min-width: 1200px) {
  .footer {
    padding: 40px 0;
  }
}

.footer .footer__title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 18px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}

@media print, screen and (min-width: 1200px) {
  .footer .footer__title {
    font-size: 24px;
    font-size: 1.33333rem;
  }
}

.footer .footer__title .footer__titleSmall {
  font-size: 14px;
  font-size: 0.77778rem;
}

@media print, screen and (min-width: 1200px) {
  .footer .footer__title .footer__titleSmall {
    font-size: 18px;
    font-size: 1rem;
  }
}

.footer .footer__info {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.6;
  text-align: center;
}

@media print, screen and (min-width: 1200px) {
  .footer .footer__info {
    font-size: 16px;
    font-size: 0.88889rem;
  }
}

.footer .footer__info .footer__slash {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .footer .footer__info .footer__slash {
    display: inline;
  }
}

.footer .footer__info a {
  text-decoration: none;
}

/*==================================================
  btnPageTop
==================================================*/
.btnPageTop {
  position: relative;
  z-index: 10000;
}

.btnPageTop a {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 80px;
  overflow: hidden;
  text-indent: -9999px;
  background-color: #8cc07c;
  background-image: url("/images/icon_arrow_white_l_up.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 14px 14px;
  border-radius: 60px;
}

@media print, screen and (min-width: 1200px) {
  .btnPageTop a {
    bottom: 100px;
  }
}

/*=====================================================
  bdr
=====================================================*/
.bdr, .bdrBold, .bdrRed, .bdrDot, .bdrLinkList {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  border: 5px solid #eaedef;
  background-color: #fff;
}

@media print, screen and (min-width: 1200px) {
  .bdr, .bdrBold, .bdrRed, .bdrDot, .bdrLinkList {
    padding: 30px;
  }
}

.bdrBold {
  border-width: 5px;
  border-color: #eaedef;
}

/*---------------------------------------------------
  bdrRed
---------------------------------------------------*/
.bdrRed {
  border-width: 5px;
  border-color: #cc0000;
}

/*=====================================================
  bdrDot
=====================================================*/
.bdrDot {
  border: 2px dotted #e3e3e4;
}

/*=====================================================

=====================================================*/
.bdrLinkList {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*=====================================================
  depContact
=====================================================*/
.depContact .depContact__title {
  padding: 0;
  background: none;
  border: none;
}

/*=====================================================
  button
=====================================================*/
.button, .buttonViewMore, .buttonUp, .buttonLeft, .buttonDown, .buttonEdit, .buttonGreen, .buttonLarge, .buttonWin, .buttonPdf, .buttonWord, .buttonExcel, .buttonPpt, .buttonPrint {
  padding: 12px 58px 12px 40px;
  display: inline-block;
  position: relative;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.4;
  text-decoration: none;
  font-weight: bold;
  color: #8cc07c !important;
  position: relative;
  transition: all .2s;
  cursor: pointer;
  background-color: transparent;
  background-image: url(/images/icon_arrow_primary_l_right.svg);
  background-repeat: no-repeat;
  background-position: right 15px top 18px;
  background-size: 15px 15px;
  border: 1px solid #8cc07c;
  border-radius: 100px;
}

.button a, .buttonViewMore a, .buttonUp a, .buttonLeft a, .buttonDown a, .buttonEdit a, .buttonGreen a, .buttonLarge a, .buttonWin a, .buttonPdf a, .buttonWord a, .buttonExcel a, .buttonPpt a, .buttonPrint a {
  text-decoration: none;
}

@media print, screen and (min-width: 1200px) {
  .button, .buttonViewMore, .buttonUp, .buttonLeft, .buttonDown, .buttonEdit, .buttonGreen, .buttonLarge, .buttonWin, .buttonPdf, .buttonWord, .buttonExcel, .buttonPpt, .buttonPrint {
    font-size: 18px;
    font-size: 1rem;
    transition: all .2s;
  }
  .button:hover, .buttonViewMore:hover, .buttonUp:hover, .buttonLeft:hover, .buttonDown:hover, .buttonEdit:hover, .buttonGreen:hover, .buttonLarge:hover, .buttonWin:hover, .buttonPdf:hover, .buttonWord:hover, .buttonExcel:hover, .buttonPpt:hover, .buttonPrint:hover {
    color: #fff !important;
    text-decoration: none;
    background-color: #fdaa09;
    background-position: right 10px top 18px;
    background-image: url(/images/icon_arrow_white_l_right.svg);
    border: 1px solid #fdaa09;
  }
}

.buttonViewMore {
  min-width: 280px;
  padding: 16px 40px;
  font-size: 15px;
  font-size: 0.83333rem;
  text-align: center;
  background-position: right 14px center;
}

@media print, screen and (min-width: 1200px) {
  .buttonViewMore {
    padding: 20px 40px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .buttonViewMore:hover {
    background-position: right 5px center;
  }
}

.buttonUp {
  background-image: url(/images/icon_arrow_primary_l_up.svg);
  background-position: right 15px top 18px;
}

.buttonUp:hover {
  background-image: url(/images/icon_arrow_white_l_up.svg);
  background-position: right 15px top 13px;
}

.buttonLeft {
  padding: 12px 40px 12px 58px;
  background-image: url(/images/icon_arrow_primary_l_left.svg);
  background-position: left 15px top 18px;
}

.buttonLeft:hover {
  background-image: url(/images/icon_arrow_white_l_left.svg);
  background-position: left 10px top 18px;
}

.buttonDown {
  background-image: url(/images/icon_arrow_primary_l_down.svg);
}

.buttonDown:hover {
  background-image: url(/images/icon_arrow_white_l_down.svg);
  background-position: right 15px top 22px;
}

.buttonEdit {
  background-color: #999;
  color: #fff !important;
  background-image: none;
  border-color: #999;
  background-image: url(/images/icon_arrow_white_l_right.svg);
}

.buttonEdit:hover {
  background-color: #666;
  border-color: #666;
}

.buttonGreen {
  background-color: #8cc07c;
  color: #fff !important;
  background-image: url(/images/icon_arrow_white_m_right.svg);
  border-color: #8cc07c;
}

.buttonGreen:hover {
  background-color: #0e0d0d;
  border-color: #0e0d0d;
}

.buttonLarge {
  padding: 14px 40px 14px 40px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1rem;
  background-position: right 15px top 17px;
}

@media print, screen and (min-width: 1200px) {
  .buttonLarge {
    font-size: 28px;
    font-size: 1.55556rem;
    background-position: right 15px top 23px;
    background-size: 20px 20px;
  }
  .buttonLarge:hover {
    background-position: right 10px top 23px;
  }
}

/*=====================================================
  buttonWin
=====================================================*/
.buttonWin {
  padding-right: 34px;
  background-image: url(/images/icon_win.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 17px 13px;
}

.buttonWin:hover {
  background-image: url(/images/icon_win_white.svg);
  background-position: right 10px center;
}

.buttonPdf {
  padding: 12px 20px 12px 38px;
  background-image: url("/images/icon_file_pdf.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonPdf:hover {
  background-image: url("/images/icon_file_pdf.svg");
  background-size: 18px 18px;
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonWord {
  padding: 12px 20px 12px 38px;
  background-image: url("/images/icon_file_word.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonWord:hover {
  background-image: url("/images/icon_file_word.svg");
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonExcel {
  padding: 12px 20px 12px 38px;
  background-image: url("/images/icon_file_excel.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonExcel:hover {
  background-image: url("/images/icon_file_excel.svg");
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonPpt {
  padding: 12px 20px 12px 38px;
  background-image: url("/images/icon_file_ppt.svg");
  background-repeat: no-repeat;
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonPpt:hover {
  background-image: url("/images/icon_file_ppt.svg");
  background-position: left 10px center;
  background-size: 18px 18px;
}

.buttonPrint {
  padding: 12px 20px 12px 46px;
  background-image: url("/images/icon_printer.svg");
  background-repeat: no-repeat;
  background-position: left 12px center;
  background-size: 24px 24px;
}

.buttonPrint a {
  color: #333 !important;
}

.buttonPrint:hover {
  color: #fff;
  background-image: url("/images/icon_printer_white.svg");
  background-position: left 12px center;
  background-size: 24px 24px;
}

.buttonPrint:hover a {
  color: #fff !important;
}

/*=====================================================
  color
=====================================================*/
.red {
  color: #cc0000;
}

.blue {
  color: #8cc07c;
}

.green {
  color: #29865e;
}

.yellow {
  color: #ffff00;
}

.orange {
  color: #ff9900;
}

.faq {
  margin: 0;
  padding: 0;
}

.faq dl {
  margin: 0 0 40px 0;
  padding: 0;
}

.faq dl dt {
  width: 100%;
  margin: 0 0 15px 0;
  padding: 0 0 0 38px;
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.6;
  display: block;
  position: relative;
}

@media print, screen and (min-width: 1200px) {
  .faq dl dt {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

.faq dl dt::before {
  width: 30px;
  height: 30px;
  content: "Q";
  font-size: 18px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: #8cc07c;
}

.faq dl dd {
  width: 100%;
  margin: 0 0 30px 0;
  padding: 0 0 0 38px;
  display: block;
  position: relative;
  font-size: 18px;
  font-size: 1rem;
}

.faq dl dd::before {
  width: 30px;
  height: 30px;
  content: "A";
  font-size: 18px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #fff;
  line-height: 1.6;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  border-radius: 50%;
  background-color: #d1c9bf;
}

.fs--xl {
  font-size: 22px;
  font-size: 1.22222rem;
}

@media print, screen and (min-width: 1200px) {
  .fs--xl {
    font-size: 26px;
    font-size: 1.44444rem;
  }
}

.fs--l {
  font-size: 18px;
  font-size: 1rem;
}

@media print, screen and (min-width: 1200px) {
  .fs--l {
    font-size: 24px;
    font-size: 1.33333rem;
  }
}

.fs--ml {
  font-size: 18px;
  font-size: 1rem;
}

.fs--m {
  font-size: 18px;
  font-size: 1rem;
}

.fs--s {
  font-size: 13px;
  font-size: 0.72222rem;
}

@media print, screen and (min-width: 1200px) {
  .fs--s {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}

/*=====================================================
  tblBlock--form
=====================================================*/
.f__errorMsg {
  padding: 5px;
  display: block;
  color: #cc0000 !important;
  font-weight: bold;
  line-height: 1.8;
  background-color: #fdeaea;
}

/*=====================================================
  f_text
=====================================================*/
input[type=checkbox],
input[type=radio] {
  margin-right: 10px;
  display: inline-block;
}

input[type=submit],
button {
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-size: 1rem;
}

textarea {
  box-sizing: border-box;
}

label {
  margin-right: 0;
  display: inline-block;
}

.f_caseText {
  color: #999;
}

.f__text {
  padding: 14px !important;
  border: 1px solid #e3e3e4 !important;
  font-size: 15px;
  font-size: 0.83333rem;
}

.f__select {
  padding: 14px !important;
  border: 1px solid #e3e3e4 !important;
  font-size: 18px;
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  .f__select {
    font-size: 15px;
    font-size: 0.83333rem;
  }
}

.f__textarea {
  padding: 10px !important;
  border: 1px solid #e3e3e4 !important;
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.f__name,
.f__kana {
  width: 80%;
}

@media print, screen and (min-width: 768px) {
  .f__name,
  .f__kana {
    width: 300px;
  }
}

.f__fullName {
  width: 80%;
}

@media print, screen and (min-width: 768px) {
  .f__fullName {
    width: 300px;
  }
}

.f__age {
  width: 10%;
}

@media print, screen and (min-width: 768px) {
  .f__age {
    width: 50px;
  }
}

.f__tel {
  width: 80%;
}

@media print, screen and (min-width: 768px) {
  .f__tel {
    width: 400px;
  }
}

.f__zip {
  width: 80%;
}

@media print, screen and (min-width: 768px) {
  .f__zip {
    width: 160px;
  }
}

.f__company,
.f__dep {
  width: 70%;
}

@media print, screen and (min-width: 768px) {
  .f__company,
  .f__dep {
    width: 300px;
  }
}

.f__mail {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .f__mail {
    width: 400px;
  }
}

.f__date {
  width: 100%;
}

.f__address {
  width: 100%;
}

.f__schoolName {
  width: 100%;
}

@media print, screen and (min-width: 1200px) {
  .f__schoolName {
    width: 50%;
  }
}

.f__comment {
  width: 100%;
  height: 200px;
}

@media print, screen and (min-width: 1200px) {
  .f__comment {
    height: 300px;
  }
}

.f__submit {
  width: 100%;
  max-width: 300px;
  padding: 12px;
  font-size: 20px;
  font-size: 1.11111rem;
  border-radius: 5px;
  background-color: #8cc07c;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  box-shadow: 0px 5px 0px 0px #e4e2e2;
}

@media print, screen and (min-width: 1200px) {
  .f__submit {
    max-width: 400px;
    padding: 15px;
    font-size: 24px;
    font-size: 1.33333rem;
    transition: all .2s;
  }
  .f__submit:hover {
    background-color: #fdaa09;
    box-shadow: 0px 0px 0px 0px #e4e2e2;
  }
}

.f__require {
  background-color: #fefdc5;
}

.f_requireBox {
  display: inline-block;
  padding: 10px;
}

.iconRequire, .iconOptional {
  margin-left: 5px;
  padding: 3px 8px;
  position: relative;
  top: -2px;
  display: inline-block;
  color: #FFF;
  line-height: 1;
  font-size: 11px;
  font-size: 0.61111rem;
  background-color: #cc0000;
  border-radius: 10px;
}

.iconOptional {
  background-color: #74948a;
}

/*==================================================
  buttonSubmit
==================================================*/
.buttonSubmit {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 15px;
  display: inline-block;
  position: relative;
  font-size: 20px;
  font-size: 1.11111rem;
  font-weight: bold;
  color: #fff;
  background-color: #8cc07c;
  -webkit-appearance: none;
}

@media print, screen and (min-width: 1200px) {
  .buttonSubmit {
    padding: 25px;
    font-size: 26px;
    font-size: 1.44444rem;
    transition: all .2s;
  }
  .buttonSubmit:hover {
    background-color: #fdaa09;
    box-shadow: 0px 0px 0px 0px #e4e2e2;
  }
}

/*---------------------------------------------------
  errBox
---------------------------------------------------*/
.errBdrBox {
  margin-bottom: 1rem;
  padding: 15px 20px;
  font-weight: bold;
  color: #cc0000;
  border: 5px solid #cc0000;
  background: #fdeaea;
}

@media print, screen and (min-width: 768px) {
  .errBdrBox {
    padding: 20px;
  }
}

.errBdrBox p {
  font-size: 18px;
  font-size: 1rem;
}

@media print, screen and (min-width: 768px) {
  .errBdrBox p {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

/*---------------------------------------------------
  err
---------------------------------------------------*/
.f__errForm {
  border: 1px solid #cc0000 !important;
  background: #fdeaea !important;
}

.f__errBox {
  background: #fdeaea !important;
}

.f__errMsg {
  margin: 0 0 10px 0;
  padding: 10px;
  color: #cc0000;
  font-weight: bold;
  line-height: 1.4;
  background-color: #fdeaea;
}

.f__errText {
  margin-bottom: 10px;
  padding: 8px;
  color: #cc0000;
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 1.4;
  font-weight: bold;
  background-color: #fdeaea;
}

.fBtnArea {
  margin: 2rem 0;
  overflow: hidden;
}

.fBtnArea .fBtnArea__rightBox {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 576px) {
  .fBtnArea .fBtnArea__rightBox {
    width: 48%;
    float: right;
  }
}

.fBtnArea .fBtnArea__leftBox {
  margin-bottom: 40px;
}

@media print, screen and (min-width: 576px) {
  .fBtnArea .fBtnArea__leftBox {
    width: 48%;
    float: left;
  }
}

/*==================================================
  f_button
==================================================*/
.f_button {
  width: 100%;
  cursor: pointer;
  font-size: 18px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

@media print, screen and (min-width: 768px) {
  .f_button {
    width: auto;
    padding: 24px 84px 24px 34px;
    font-weight: bold;
    font-size: 22px;
    font-size: 1.22222rem;
  }
}

/*=====================================================
  hr
=====================================================*/
hr {
  width: 100%;
  height: 3px;
  margin: 20px 0;
  padding: 0;
  border: none;
  background: url(/images/hr_bg.png) repeat-x 0 0;
}

/*=====================================================
  icon
=====================================================*/
.iconArrow, .iconArrowLeft, .iconArrowUp, .iconArrowDown {
  padding-left: 24px;
  background-image: url(/images/icon_arrow_primary_s_right.svg);
  background-repeat: no-repeat;
  background-position: 0 8px;
  background-size: 10px 10px;
}

.iconArrowLeft {
  background-image: url(/images/icon_arrow_primary_s_left.svg);
  background-size: 10px 10px;
}

.iconArrowUp {
  background-image: url(/images/icon_arrow_primary_s_up.svg);
  background-size: 10px 10px;
}

.iconArrowDown {
  background-image: url(/images/icon_arrow_primary_s_down.svg);
  background-size: 10px 10px;
}

/*=====================================================
  new
=====================================================*/
.iconNew {
  margin-left: 5px;
  margin-right: 5px;
  padding: 2px 8px;
  display: inline-block;
  font-size: 9px;
  font-size: 0.5rem;
  color: #fff;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0;
  background: #cc0000;
  border-radius: 30px;
  vertical-align: middle;
}

/*=====================================================
  file
=====================================================*/
.iconPdf::before, .iconWord::before, .iconExcel::before, .iconPpt::before {
  width: 14px;
  height: 18px;
  margin-right: 8px;
  padding-right: 4px;
  display: inline-block;
  position: relative;
  top: -2px;
  content: 'PDF';
  overflow: hidden;
  text-indent: -9999px;
  background-image: url(/images/icon_file_pdf.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  vertical-align: middle;
}

.iconWord::before {
  content: 'Word';
  background-image: url(/images/icon_file_word.svg);
}

.iconExcel::before {
  content: 'Excel';
  background-image: url(/images/icon_file_excel.svg);
}

.iconPpt::before {
  content: 'Power Point';
  background-image: url(/images/icon_file_ppt.svg);
}

.iconWin {
  position: relative;
}

.iconWin::after {
  width: 18px;
  height: 13px;
  margin-left: 8px;
  margin-right: 5px;
  padding-right: 10px;
  display: inline-block;
  content: '別ウィンドウ';
  overflow: hidden;
  text-indent: -9999px;
  background: url(/images/icon_win.svg) no-repeat 0 0;
  background-size: 17px 13px;
  vertical-align: middle;
  background-size: 17px 13px;
}

.icon--none::before,
.icon--none::after {
  width: 0 !important;
  height: 0 !important;
  margin-bottom: 0;
  padding: 0 !important;
  content: "" !important;
  background: none !important;
}

.icon--noneBefore::before {
  padding: 0 !important;
  content: "" !important;
}

.icon--noneAfter::after {
  padding: 0 !important;
  content: "" !important;
}

/*=====================================================
  indexList
=====================================================*/
.indexList ul {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.indexList ul li {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}

@media print, screen and (min-width: 768px) {
  .indexList ul li {
    width: 31%;
    margin-right: 3.333333%;
    margin-bottom: 3%;
  }
  .indexList ul li:nth-child(3n) {
    margin-right: 0;
  }
}

.indexList ul li a {
  display: block;
  color: #333;
  text-decoration: none;
}

@media print, screen and (min-width: 1200px) {
  .indexList ul li a {
    transition: all .2s;
  }
  .indexList ul li a:hover img {
    transform: scale(1.1);
  }
}

.indexList ul li .indexList__img {
  max-height: 260px;
  overflow: hidden;
}

.indexList ul li .indexList__img img {
  transition: all .2s;
}

.indexList ul li .indexList__title {
  width: 100%;
  margin: 0;
  padding: 12px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
  position: relative;
}

@media print, screen and (min-width: 1200px) {
  .indexList ul li .indexList__title {
    padding: 14px 0 10px 0;
  }
}

.indexList ul li .indexList__text {
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 1.4;
}

@media print, screen and (min-width: 1200px) {
  .indexList.indexList--2col ul {
    justify-content: space-between;
  }
  .indexList.indexList--2col ul li {
    width: 49%;
    margin-right: 0;
  }
}

/*=====================================================
  linkList
=====================================================*/
.linkList, .linkListAnchor {
  margin: 1rem 0;
  padding: 0;
}

.linkList ul, .linkListAnchor ul {
  margin: 0;
  padding: 0;
}

.linkList li, .linkListAnchor li {
  padding: 0 0 0 22px;
  list-style: none;
  background-image: url(/images/icon_arrow_primary_s_right.svg);
  background-repeat: no-repeat;
  background-position: 0 6px;
  background-size: 10px 10px;
}

@media print, screen and (min-width: 1200px) {
  .linkList li, .linkListAnchor li {
    background-position: 0 10px;
  }
}

.linkList.linkList--side ul, .linkList--side.linkListAnchor ul {
  overflow: hidden;
}

@media print, screen and (min-width: 576px) {
  .linkList.linkList--side li, .linkList--side.linkListAnchor li {
    padding-right: 20px;
    display: inline-block;
  }
}

.linkList.linkList--2col ul, .linkList--2col.linkListAnchor ul {
  overflow: hidden;
}

@media print, screen and (min-width: 576px) {
  .linkList.linkList--2col li, .linkList--2col.linkListAnchor li {
    width: 49%;
    padding-right: 2%;
    display: inline-block;
    vertical-align: top;
  }
  .linkList.linkList--2col li:nth-child(2n), .linkList--2col.linkListAnchor li:nth-child(2n) {
    padding-right: 0;
  }
}

.linkList.linkList--left li, .linkList--left.linkListAnchor li {
  background-image: url(/images/icon_arrow_primary_s_left.svg);
}

.linkList.linkList--up li, .linkList--up.linkListAnchor li {
  background-image: url(/images/icon_arrow_primary_s_up.svg);
}

.linkList.linkList--down li, .linkList--down.linkListAnchor li {
  background-image: url(/images/icon_arrow_primary_s_down.svg);
}

/*=====================================================
  linkListAnchor
=====================================================*/
.linkListAnchor {
  margin-top: 15px;
  margin-bottom: 40px;
  padding: 10px 20px;
  border: 1px solid #eaedef;
}

.linkListAnchor ul {
  overflow: hidden;
}

.linkListAnchor li {
  padding-left: 20px;
  background-image: url(/images/icon_arrow_primary_s_down.svg);
  background-position: 0 6px;
  background-size: 10px 10px;
}

@media print, screen and (min-width: 576px) {
  .linkListAnchor li {
    padding-left: 24px;
    padding-right: 20px;
    display: inline-block;
    background-position: 0 12px;
  }
}

.linkListAnchor.linkListAnchor--right ul li {
  background-image: url(/images/icon_arrow_primary_s_right.svg);
  background-position: 0 6px;
  background-size: 10px 10px;
}

@media print, screen and (min-width: 1200px) {
  .linkListAnchor.linkListAnchor--right ul li {
    background-position: 0 12px;
  }
}

/*=====================================================
  ol/ul
=====================================================*/
ol,
ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 0px 0px 0px 30px;
}

ol li,
ul li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  padding-left: 0;
  line-height: 1.8;
  font-size: 15px;
  font-size: 0.83333rem;
}

@media print, screen and (min-width: 1200px) {
  ol li,
  ul li {
    font-size: 18px;
    font-size: 1rem;
  }
}

ol li ul,
ul li ul {
  margin-top: 10px;
  margin-bottom: 10px;
}

ol {
  padding-left: 40px;
}

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

.list--none ul li {
  list-style: none !important;
}

/*=====================================================
  dl
=====================================================*/
dl dt {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.8;
  font-weight: bold;
  font-size: 18px;
  font-size: 1rem;
}

@media print, screen and (min-width: 1200px) {
  dl dt {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

dl dd {
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  padding-left: 0;
  line-height: 1.8;
  font-size: 15px;
  font-size: 0.83333rem;
}

@media print, screen and (min-width: 1200px) {
  dl dd {
    font-size: 18px;
    font-size: 1rem;
  }
}

dl label {
  margin-bottom: 10px;
  font-size: 15px;
  font-size: 0.83333rem;
}

@media print, screen and (min-width: 1200px) {
  dl label {
    font-size: 18px;
    font-size: 1rem;
  }
}

/*==================================================
  list2col
==================================================*/
.list2col ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.list2col ul li {
  width: 100%;
}

@media print, screen and (min-width: 576px) {
  .list2col ul li {
    width: 46%;
  }
}

/*==================================================
  list3col
==================================================*/
.list3col ul {
  display: flex;
  flex-wrap: wrap;
}

.list3col ul li {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .list3col ul li {
    width: 30%;
    margin-right: 5%;
  }
  .list3col ul li:nth-child(3n) {
    margin-right: 0;
  }
}

/*==================================================
  list4col
==================================================*/
.list4col ul {
  display: flex;
  flex-wrap: wrap;
}

.list4col ul li {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .list4col ul li {
    width: 22%;
    margin-right: 4%;
  }
  .list4col ul li:nth-child(4n) {
    margin-right: 0;
  }
}

/*=====================================================
  ol/ul
=====================================================*/
.listArrow ul, .listArrow ol {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0px;
}

.listArrow li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0;
  list-style: none;
}

.listArrow li a {
  padding: 2px 15px 2px 15px;
  display: inline-block;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.4;
  background-image: url(/images/icon_arrow_primary_s_right.svg);
  background-repeat: no-repeat;
  background-position: 0 8px;
  background-size: 10px 10px;
}

@media print, screen and (min-width: 1200px) {
  .listArrow li a {
    font-size: 18px;
    font-size: 1rem;
  }
}

.listArrow.listArrow--horizon li {
  margin-right: 20px;
  display: inline-block;
}

/*=====================================================
  news
=====================================================*/
.news {
  margin: 0;
  padding: 0;
}

.news ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid #e3e3e4;
  border-bottom: 1px solid #fff;
}

.news ul li {
  width: 100%;
  margin: 0;
  padding: 15px 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  background-image: url("/images/icon_arrow_primary_l_right.svg");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 15px 15px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #e3e3e4;
}

@media print, screen and (min-width: 1200px) {
  .news ul li {
    transition: all .2s;
  }
  .news ul li:hover {
    background-position: right 0 center;
  }
}

@media print, screen and (min-width: 1200px) {
  .news ul li {
    padding: 20px 0;
  }
}

.news ul li a {
  width: 100%;
  padding: 0;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
}

@media print, screen and (min-width: 1200px) {
  .news ul li a {
    transition: all .2s;
  }
  .news ul li a:hover .news__title {
    text-decoration: underline;
    background-position: right 10px center;
  }
}

.news ul li a .news__date {
  width: 100%;
  display: block;
  font-weight: bold;
}

@media print, screen and (min-width: 768px) {
  .news ul li a .news__date {
    width: 180px;
  }
}

.news ul li a .news__title {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .news ul li a .news__title {
    width: calc(100% - 180px);
    padding-right: 15px;
  }
}

/*=====================================================
  paging
=====================================================*/
.paging {
  text-align: center;
}

.paging ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.paging ul li {
  margin: 0 2px;
  padding: 0px;
  font-size: 15px;
  font-size: 0.83333rem;
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
  background-image: none;
  line-height: 1;
  display: block;
  margin-bottom: 5px;
}

@media print, screen and (min-width: 1200px) {
  .paging ul li {
    font-size: 18px;
    font-size: 1rem;
  }
}

.paging ul li a {
  color: #333;
  display: inline-block;
  padding: 8px 10px;
  text-decoration: none;
  border: 1px solid #eaedef;
  box-sizing: border-box;
  border-radius: 5px;
  transition: all .2s;
}

@media print, screen and (min-width: 1200px) {
  .paging ul li a {
    padding: 12px 14px;
  }
  .paging ul li a:hover {
    background: #8cc07c;
    color: #fff;
    border-color: #8cc07c;
  }
}

.paging ul li.on a {
  background: #8cc07c !important;
  color: #fff !important;
  border-color: #8cc07c !important;
}

/*=====================================================
  table
=====================================================*/
table th, table td {
  font-size: 15px;
  font-size: 0.83333rem;
}

@media print, screen and (min-width: 1200px) {
  table th, table td {
    font-size: 18px;
    font-size: 1rem;
  }
}

/*---------------------------------------------------
  table
---------------------------------------------------*/
table {
  margin-top: 25px;
  margin-bottom: 25px;
}

table.table--small th, table.table--small td {
  padding: 8px 5px;
  font-size: 15px;
  font-size: 0.83333rem;
}

caption {
  margin-bottom: 10px;
  display: inline-block;
  font-size: 15px;
  font-size: 0.83333rem;
  text-align: left;
}

@media print, screen and (min-width: 1200px) {
  caption {
    font-size: 18px;
    font-size: 1rem;
  }
}

th {
  padding: 12px;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.8;
  vertical-align: middle;
  background-color: #f6f7f8;
  border: 1px solid #e3e3e4;
}

@media print, screen and (min-width: 1200px) {
  th {
    font-size: 18px;
    font-size: 1rem;
    padding: 20px;
  }
}

thead th {
  background-color: #f6f7f8;
  text-align: center;
  vertical-align: middle;
}

td {
  padding: 12px;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.8;
  background-color: #fff;
  border: 1px solid #e3e3e4;
  vertical-align: middle;
}

@media print, screen and (min-width: 1200px) {
  td {
    padding: 20px;
    font-size: 18px;
    font-size: 1rem;
  }
}

.tableBlock table {
  padding-bottom: 20px;
  display: block;
  border-width: 0;
}

@media print, screen and (min-width: 768px) {
  .tableBlock table {
    padding-bottom: 0;
    display: table;
  }
}

.tableBlock tbody {
  display: block;
}

@media print, screen and (min-width: 768px) {
  .tableBlock tbody {
    display: table-row-group;
  }
}

.tableBlock tr {
  display: block;
}

@media print, screen and (min-width: 768px) {
  .tableBlock tr {
    display: table-row;
  }
}

.tableBlock th, .tableBlock td {
  display: block;
  border-width: 0;
}

@media print, screen and (min-width: 768px) {
  .tableBlock th, .tableBlock td {
    display: table-cell;
    border-width: 1px;
  }
}

.tableBlock th {
  text-align: left;
  font-weight: bold;
}

.tableBlock th:empty {
  display: none;
}

@media print, screen and (min-width: 768px) {
  .tableBlock th {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .tableBlock th:empty {
    display: table-cell;
  }
}

.tableBlock td {
  padding: 12px;
}

@media print, screen and (min-width: 768px) {
  .tableBlock td {
    padding: 20px;
    border: 1px solid #e3e3e4;
    border-bottom-style: solid;
  }
}

/* =====================================================
  tableBorderNone
=====================================================*/
.tableBorderNone {
  margin-top: 30px;
  margin-bottom: 30px;
  border: none;
}

.tableBorderNone th {
  padding: 8px 10px;
  text-align: left;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 1.8;
  border: none;
  background-color: transparent;
}

@media print, screen and (min-width: 1200px) {
  .tableBorderNone th {
    font-size: 18px;
    font-size: 1rem;
  }
}

.tableBorderNone thead th {
  text-align: center;
  border: none;
}

.tableBorderNone td {
  padding: 8px 10px;
  line-height: 1.8;
  font-size: 15px;
  font-size: 0.83333rem;
  border: none;
  background-color: transparent;
}

@media print, screen and (min-width: 1200px) {
  .tableBorderNone td {
    font-size: 18px;
    font-size: 1rem;
  }
}

/*=====================================================
  scroll
=====================================================*/
.scroll {
  margin: 20px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media print, screen and (min-width: 1200px) {
  .scroll {
    margin: 0;
    overflow: visible;
    white-space: normal;
  }
}

.scroll table {
  max-width: 1020px;
  width: 800px;
  margin: 1rem 0 !important;
}

@media print, screen and (min-width: 1200px) {
  .scroll table {
    width: 100%;
    max-width: 1200px;
  }
}

.scroll table th,
.scroll table td {
  vertical-align: middle;
}

.scroll::-webkit-scrollbar {
  height: 5px;
}

.scroll::-webkit-scrollbar-track {
  border-radius: 5px;
  background: #eee;
}

.scroll::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #666;
}

.scroll:before {
  content: "\008868\00306f\005de6\0053f3\00306b\0030b9\0030af\0030ed\0030fc\0030eb\003067\00304d\00307e\003059";
  /* 文字化け対策のためUnicode変換 */
  color: #fff;
  font-size: 12px;
  background-color: #666;
  border-radius: 8px;
  padding: 0.05em 0.5em;
}

@media print, screen and (min-width: 1200px) {
  .scroll:before {
    display: none;
  }
}

/*==================================================
  tableBtnView
==================================================*/
.tableBtnView {
  width: 100%;
  padding: 10px;
  display: block;
  color: #fff;
  line-height: 1;
  text-align: center;
  background-color: #817f7f;
  border-radius: 3px;
  transition: all .2s;
}

.tableBtnView .icon {
  padding-left: 30px;
  display: inline-block;
  background-image: url("/images/swap_horiz_white_24dp.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
  background-size: 24px 24px;
}

.tableBtnView.on {
  background-color: #CCC;
}

@media print, screen and (min-width: 768px) {
  .tableBtnView {
    display: none;
  }
}

/*==================================================
  tag
==================================================*/
.tag {
  margin-right: 6px;
  padding: 6px 12px;
  display: inline-block;
  font-size: 11px;
  font-size: 0.61111rem;
  line-height: 1;
  color: #fff;
  background-color: #8cc07c;
  border-radius: 15px;
}

@media print, screen and (min-width: 1200px) {
  .tag {
    padding: 5px 12px;
    font-size: 13px;
    font-size: 0.72222rem;
  }
}

.tag.tag--info {
  background-color: #2971bb;
}

.tag.tag--event {
  background-color: #23aea3;
}

.tag.tag--blog {
  background-color: #574d89;
}

.tag.tag--red {
  background-color: #cc0000;
}

.tag.tag--blue {
  background-color: #30a4df;
}

.tag.tag--green {
  background-color: #29865e;
}

.tag.tag--orange {
  background-color: #0e0d0d;
}

/*=====================================================
  topicPath
=====================================================*/
.topicPath {
  width: 100%;
  margin: 40px 0 0 0;
  padding: 20px 0 10px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #e3e3e4;
  border-bottom: 1px solid #e3e3e4;
}

@media print, screen and (min-width: 1200px) {
  .topicPath {
    width: 1200px;
    margin: 60px auto 0 auto;
    padding: 30px 0 20px 0;
  }
}

.topicPath ol {
  margin: 0;
  padding: 0 0 10px 0;
  white-space: nowrap;
  position: relative;
  overflow-x: auto;
}

@media print, screen and (min-width: 1200px) {
  .topicPath ol {
    overflow-x: visible;
    white-space: normal;
  }
}

.topicPath ol li {
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
  font-size: 12px;
  font-size: 0.66667rem;
  line-height: 1.4;
}

@media print, screen and (min-width: 1200px) {
  .topicPath ol li {
    font-size: 14px;
    font-size: 0.77778rem;
  }
}

.topicPath ol li::before {
  content: " > ";
}

.topicPath ol li:first-child::before {
  content: "";
}

.topicPath ol li a {
  color: #333;
  text-decoration: none;
}

.topicPath ol li a:hover {
  color: #8cc07c;
  text-decoration: underline;
}

/*---------------------------------------------------
  h1
---------------------------------------------------*/
h1 {
  margin: 0 0 30px 0;
  padding: 0 0 20px 0;
  font-size: 28px;
  font-size: 1.55556rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  background-image: url(/images/title_bg.svg);
  background-size: 75px 8px;
  background-repeat: no-repeat;
  background-position: center bottom 0;
}

@media print, screen and (min-width: 1200px) {
  h1 {
    margin-bottom: 40px;
    padding-bottom: 30px;
    font-size: 36px;
    font-size: 2rem;
    background-size: 94px 10px;
  }
}

/*---------------------------------------------------
  h2
---------------------------------------------------*/
h2,
.h2 {
  margin: 20px 0;
  padding: 0 14px 0 18px;
  font-size: 22px;
  font-size: 1.22222rem;
  display: block;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  border-left: 8px solid #8cc07c;
  background-repeat: no-repeat;
  background-size: 26px 36px;
}

@media print, screen and (min-width: 1200px) {
  h2,
  .h2 {
    margin-bottom: 30px;
    padding-left: 20px;
    font-size: 34px;
    font-size: 1.88889rem;
  }
}

h2:first-child,
.h2:first-child {
  margin-top: 0;
}

/*---------------------------------------------------
  h3
---------------------------------------------------*/
h3,
.h3 {
  margin: 20px 0;
  padding-bottom: 0.7rem;
  display: block;
  position: relative;
  font-size: 22px;
  font-size: 1.22222rem;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 5px solid #eaedef;
}

@media print, screen and (min-width: 1200px) {
  h3,
  .h3 {
    font-size: 28px;
    font-size: 1.55556rem;
    margin-bottom: 30px;
    padding-bottom: 0.7rem;
  }
}

h3::after,
.h3::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  content: '';
  width: 30%;
  height: 5px;
  background-color: #8cc07c;
}

@media print, screen and (min-width: 1200px) {
  h3::after,
  .h3::after {
    width: 140px;
  }
}

/*---------------------------------------------------
  h4
---------------------------------------------------*/
h4,
.h4 {
  margin: 20px 0;
  padding: 0 0 10px 0;
  display: block;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 1.4;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
}

@media print, screen and (min-width: 1200px) {
  h4,
  .h4 {
    font-size: 20px;
    font-size: 1.11111rem;
  }
}

/*---------------------------------------------------
  h5
---------------------------------------------------*/
h5,
.h5 {
  margin: 20px 0;
  padding: 0 0 0 20px;
  position: relative;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 1.4;
  font-weight: bold;
}

@media print, screen and (min-width: 1200px) {
  h5,
  .h5 {
    font-size: 18px;
    font-size: 1rem;
  }
}

h5:before,
.h5:before {
  width: 13px;
  height: 3px;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  background-color: #d1c9bf;
}

/*---------------------------------------------------
  h6
---------------------------------------------------*/
h6,
.h6 {
  margin: 20px 0;
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 1.4;
  font-weight: bold;
}

@media print, screen and (min-width: 1200px) {
  h6,
  .h6 {
    font-size: 16px;
    font-size: 0.88889rem;
  }
}

/*---------------------------------------------------
  leadText
---------------------------------------------------*/
.leadText {
  font-size: 18px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: bold;
}

@media print, screen and (min-width: 1200px) {
  .leadText {
    font-size: 26px;
    font-size: 1.44444rem;
    line-height: 1.8;
  }
}

/*---------------------------------------------------
  p
---------------------------------------------------*/
p {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 15px;
  font-size: 0.83333rem;
  line-height: 2;
}

@media print, screen and (min-width: 1200px) {
  p {
    font-size: 18px;
    font-size: 1rem;
  }
}

p:first-child {
  margin-top: 0;
}

/*=====================================================
  nowrap
=====================================================*/
.nowrap {
  white-space: nowrap;
}

/*=====================================================
  note
=====================================================*/
.note1 {
  display: inline-block;
  padding-left: 1rem;
  text-indent: -1rem;
}

.note1_5 {
  display: inline-block;
  padding-left: 1.5rem;
  text-indent: -1.5rem;
}

.note2 {
  display: inline-block;
  padding-left: 2rem;
  text-indent: -2rem;
}

.note2_5 {
  display: inline-block;
  padding-left: 2.5rem;
  text-indent: -2.5rem;
}

.note3 {
  display: inline-block;
  padding-left: 3rem;
  text-indent: -3rem;
}

.note3_5 {
  display: inline-block;
  padding-left: 3.5rem;
  text-indent: -3.5rem;
}

/*=====================================================
  youtube
=====================================================*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/*=====================================================
  wrap
=====================================================*/
.wrap {
  width: 100%;
  margin: 70px 0 0 0;
  padding: 15px 20px;
}

@media print, screen and (min-width: 1200px) {
  .wrap {
    padding: 0;
  }
}
