@charset "UTF-8";
/* ====================================================
reset style
==================================================== */
@import url("https://fonts.googleapis.com/css?family=PT+Serif:400,400i,700,700i&display=swap");
@import url("https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i&display=swap");
html {
  overflow-y: scroll;
  font-size: 10px;
  /* Base font size, change to 14px or 16px if needed */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

img {
  vertical-align: middle;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%;
}

/*because legend doesn't inherit in IE */
legend {
  color: #000;
}

del, ins {
  text-decoration: none;
}

/* ====================================================
Font
==================================================== */
/* ====================================================
Position & transform
==================================================== */
/* ====================================================
Media Quary
==================================================== */
/* ====================================================
Color
==================================================== */
/* ====================================================
Sizing
==================================================== */
/* ====================================================
Misc
==================================================== */
/* ====================================================
Base style & container
==================================================== */
body {
  color: black;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
  color: #404040;
  overflow-x: hidden;
}

.inner {
  max-width: 1500px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}

.inner-1450 {
  max-width: 1490px;
  display: block;
  padding: 0 20px;
  margin: 0 auto;
}

.inner-1750 {
  max-width: 1750px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

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

@media screen and (min-width: 420px) {
  .sp-420 {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .pc-1300 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc-1300.sp {
    display: block;
  }
}

a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ====================================================
Float & clear
==================================================== */
.clearfix {
  *zoom: 1;
}

.clearfix:before {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/* ====================================================
Header
==================================================== */
.none-scroll {
  overflow: hidden;
}

#main-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #fff;
}

#main-header .menu-bar {
  display: none;
  position: absolute;
  z-index: 99;
  right: 20px;
  top: 23px;
  width: 32px;
  height: 25px;
}

@media screen and (max-width: 990px) {
  #main-header .menu-bar {
    display: block;
  }
}

#main-header .menu-bar i {
  width: 32px;
  display: block;
  height: 2px;
  margin-bottom: 8px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: #333;
}

#main-header .menu-bar i:last-child {
  margin-bottom: 0;
}

#main-header .menu-bar.on i {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#main-header .menu-bar.on i:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 10px;
}

#main-header .menu-bar.on i:nth-child(2) {
  display: none;
}

#main-header .menu-bar.on i:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  top: 10px;
}

#main-header .flex-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 990px) {
  #main-header .flex-header {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#main-header .flex-header .logo {
  width: 34.5%;
  padding: 10px 15px 10px 34px;
}

@media screen and (max-width: 1500px) {
  #main-header .flex-header .logo {
    width: 25%;
  }
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .logo {
    width: 20%;
    padding: 8px 15px;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .logo {
    width: 100%;
  }
}

#main-header .flex-header .logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#main-header .flex-header .logo img {
  max-width: 42px;
  height: auto;
}

#main-header .flex-header .logo p {
  color: #000;
  margin-left: 11px;
  margin-top: 6px;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-size: 12px;
  font-size: 1.2rem;
}

@media screen and (min-width: 990px) and (max-width: 1250px) {
  #main-header .flex-header .logo p {
    margin-left: 6px;
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  #main-header .flex-header .logo p {
    font-size: 10px;
    font-size: 1rem;
  }
}

#main-header .flex-header .logo p span {
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (min-width: 990px) and (max-width: 1250px) {
  #main-header .flex-header .logo p span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 767px) {
  #main-header .flex-header .logo p span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

#main-header .flex-header .navGlobal {
  width: 65.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1500px) {
  #main-header .flex-header .navGlobal {
    width: 75%;
  }
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal {
    width: 80%;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal {
    width: 100%;
    height: 100vh;
    padding-bottom: 100px;
    overflow-y: auto;
    display: none;
    position: fixed;
    top: 60px;
    right: 0%;
    background: #fff;
    z-index: 9999;
    opacity: 0;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal.show-menu {
    opacity: 1;
    display: block;
  }
}

#main-header .flex-header .navGlobal .navGlobalIn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 188px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 14px;
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal .navGlobalIn {
    width: calc(100% - 170px);
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal .navGlobalIn {
    display: block;
    width: 100%;
    padding: 30px 20px 20px;
    text-align: center;
  }
}

#main-header .flex-header .navGlobal .navGlobalIn li {
  margin-right: 42px;
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal .navGlobalIn li {
    margin-right: 20px;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal .navGlobalIn li {
    margin-right: 0;
    margin-bottom: 25px;
  }
}

#main-header .flex-header .navGlobal .navGlobalIn li a {
  color: #4a4a4a;
  font-weight: bold;
  letter-spacing: -0.5px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1100px) {
  #main-header .flex-header .navGlobal .navGlobalIn li a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#main-header .flex-header .navGlobal .for-owner {
  color: #fff;
  background: #ccc629;
  width: 188px;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  text-align: center;
  padding: 15px 5px 15px 40px;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal .for-owner {
    font-size: 13px;
    font-size: 1.3rem;
    width: 170px;
    padding: 18px 5px 19px 40px;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal .for-owner {
    width: 100%;
    display: block;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px;
  }
}

#main-header .flex-header .navGlobal .for-owner span {
  display: block;
  font-weight: bold;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal .for-owner span {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

#main-header .flex-header .navGlobal .for-owner:before {
  content: '';
  border: 70px solid transparent;
  border-left: 39px solid #fff;
  border-top: 0;
  position: absolute;
  left: 0px;
  top: 0px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media screen and (max-width: 1300px) {
  #main-header .flex-header .navGlobal .for-owner:before {
    border: 73px solid transparent;
    border-left: 39px solid #fff;
    border-top: 0;
  }
}

@media screen and (max-width: 990px) {
  #main-header .flex-header .navGlobal .for-owner:before {
    display: none;
  }
}

/* ====================================================
Footer
==================================================== */
#main-footer .logo-footer {
  padding: 78px 0 42px;
  text-align: center;
}

@media screen and (max-width: 990px) {
  #main-footer .logo-footer {
    padding: 40px 0;
  }
}

@media screen and (max-width: 990px) {
  #main-footer .logo-footer img {
    max-width: 120px;
  }
}

#main-footer .menuFooter {
  background: #404040;
  color: #fff;
}

#main-footer .menuFooter a {
  color: #fff;
}

#main-footer .navGlobal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  #main-footer .navGlobal {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#main-footer .navGlobal .navGlobalIn {
  width: calc(100% - 80px);
  padding: 15px 0 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 8.5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 990px) {
  #main-footer .navGlobal .navGlobalIn {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .navGlobal .navGlobalIn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 20px 0 0px;
  }
}

#main-footer .navGlobal .navGlobalIn li {
  margin-right: 40px;
  font-weight: 500;
}

@media screen and (max-width: 990px) {
  #main-footer .navGlobal .navGlobalIn li {
    margin-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  #main-footer .navGlobal .navGlobalIn li {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

#main-footer .navGlobal .navGlobalIn li a {
  color: #fff;
  letter-spacing: -0.5px;
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 990px) {
  #main-footer .navGlobal .navGlobalIn li a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

#main-footer .navGlobal .list-share {
  width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  padding: 0 14px;
  text-align: right;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  #main-footer .navGlobal .list-share {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 15px;
  }
}

#main-footer .navGlobal .list-share li {
  margin-left: 25px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  #main-footer .navGlobal .list-share li {
    margin: 0 10px;
  }
}

#main-footer .navGlobal .list-share li:first-child {
  margin-left: 0;
}

#main-footer .navTagFt {
  border-top: 1px solid #7a7a7a;
  padding: 28px 0 51px;
}

@media screen and (max-width: 767px) {
  #main-footer .navTagFt {
    padding: 20px 0;
  }
  #main-footer .navTagFt .inner {
    padding: 0 10px;
  }
}

#main-footer .navTagFt ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  #main-footer .navTagFt ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-right: 0;
  }
}

#main-footer .navTagFt ul li {
  margin: 0 12px;
  position: relative;
}

@media screen and (max-width: 767px) {
  #main-footer .navTagFt ul li {
    margin: 0 0 10px;
    width: auto;
    text-align: center;
    padding: 0 10px;
  }
}

@media (max-width: 370px) {
  #main-footer .navTagFt ul li {
    padding: 0 6px;
  }
}

#main-footer .navTagFt ul li:before {
  content: '';
  height: 14px;
  width: 2px;
  background: #b1b1b1;
  position: absolute;
  left: -10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  #main-footer .navTagFt ul li:before {
    left: 0;
  }
}

#main-footer .navTagFt ul li:first-child:before {
  display: none;
}

#main-footer .navTagFt ul li a {
  font-size: 12px;
  font-size: 1.2rem;
}

#main-footer .copyRight {
  text-align: center;
  padding-bottom: 20px;
}

/* ====================================================
Scroll fadeIn
==================================================== */
.scrEvent {
  opacity: 0;
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
}

.scrEvent.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

/* ====================================================
Layout page child
==================================================== */
.wp-main-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.wp-main-page .content-left {
  width: calc(100% - 21.24%);
  padding-right: 40px;
}

@media screen and (max-width: 1200px) {
  .wp-main-page .content-left {
    width: calc(100% - 25.24%);
  }
}

@media screen and (max-width: 1000px) {
  .wp-main-page .content-left {
    width: 100%;
    padding-right: 0px;
  }
}

.wp-main-page .sidebar {
  width: 21.24%;
}

@media screen and (max-width: 1200px) {
  .wp-main-page .sidebar {
    width: 25.24%;
  }
}

@media screen and (max-width: 1000px) {
  .wp-main-page .sidebar {
    width: 100%;
  }
}

.wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 60px;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    padding-top: 20px;
  }
}

.wp-pagenavi .pages {
  display: none !important;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #1b1b1b;
  font-size: 16px;
  font-size: 1.6rem;
  background: #fff;
  width: 35px;
  height: 35px;
  display: block;
  line-height: 35px;
  padding: 0 !important;
  border: 1px solid #1b1b1b;
  margin-right: 20px;
  text-align: center;
  margin: 0 10px !important;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi a, .wp-pagenavi span {
    width: 30px;
    height: 30px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 30px;
  }
}

.wp-pagenavi span.current {
  background: #1b1b1b !important;
  color: #fff  !important;
}

a.nextpostslink {
  border: 0 !important;
  width: 35px;
  height: 35px;
  display: block;
  position: relative;
}

a.nextpostslink:after {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  font-weight: bold;
  font-size: 20px;
  background: #fff;
}

a.previouspostslink {
  border: 0 !important;
  width: 35px;
  height: 35px;
  display: block;
  position: relative;
}

a.previouspostslink:after {
  content: "\f104";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  font-weight: bold;
  background: #fff;
  font-size: 20px;
}

/* ====================================================
MODULE
==================================================== */
/*パンくずMODULE*/
/*見出しMODULE*/
.ttlCom01 {
  color: #404040;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  padding-top: 10px;
  margin-bottom: 36px;
  line-height: 1.5;
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 1300px) {
  .ttlCom01 {
    margin-bottom: 30px;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .ttlCom01 {
    padding-top: 5px;
    margin-bottom: 15px;
    font-size: 30px;
    font-size: 3rem;
  }
}

.ttlCom01 span {
  letter-spacing: 0.5px;
  margin-top: 11px;
  margin-left: 20px;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 1300px) {
  .ttlCom01 span {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 767px) {
  .ttlCom01 span {
    margin-left: 15px;
  }
}

.ttlCom01:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  top: 0;
  left: 0;
  background: #ccc629;
}

@media screen and (max-width: 767px) {
  .ttlCom01:before {
    width: 25px;
    height: 2px;
  }
}

.ttlCom01.style02 {
  padding-top: 0;
  margin-bottom: 89px;
  color: #a9aaab;
}

@media screen and (max-width: 1300px) {
  .ttlCom01.style02 {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1000px) {
  .ttlCom01.style02 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .ttlCom01.style02 {
    margin-bottom: 20px;
  }
}

.ttlCom01.style02:before {
  display: none;
}

.ttlCom01.style02 span {
  margin-top: 6px;
}

.ttlCom02 {
  color: #fff;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  line-height: 1.2;
  text-align: center;
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 767px) {
  .ttlCom02 {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 640px) {
  .ttlCom02 {
    font-size: 70px;
    font-size: 9.33333vw;
    /* 750 = design width, mobile only */
  }
}

.ttlCom02 span {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 640px) {
  .ttlCom02 span {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ttlCom03 {
  padding: 12px 0 8px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  border-top: 1px solid #7d7997;
  border-bottom: 1px solid #7d7997;
}

@media screen and (max-width: 767px) {
  .ttlCom03 {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ttlCom03 {
    padding: 14px 0 6px;
  }
}

.ttlCom04 {
  color: #9a9b9c;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 38px;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .ttlCom04 {
    margin-bottom: 15px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.ttlCom05 {
  color: #404040;
  text-align: center;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  line-height: calc(48/30);
  margin-bottom: 27px;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1000px) {
  .ttlCom05 {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.ttlCom05 span {
  letter-spacing: -2px;
  display: block;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1000px) {
  .ttlCom05 span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media only screen and (max-width: 374px) {
  .ttlCom05 span {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.ttlCom05 span span {
  display: inline;
}

.txtBasic01 {
  text-align: left;
  line-height: 2;
  font-weight: 500;
  color: #323232;
  letter-spacing: -1.2px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .txtBasic01 {
    letter-spacing: 0;
    line-height: 1.7 !important;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.txtBasic01 span {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .txtBasic01 span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.page-ttl {
  padding: 100px 0 92px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 767px) {
  .page-ttl {
    padding: 8vw 0;
  }
}

/*テキストMODULE*/
.txtBase01 {
  font-weight: 500;
  line-height: 2;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .txtBase01 {
    line-height: 1.6;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

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

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

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

.ft-min {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
}

/*リンクMODULE*/
/*ボタンMODULE*/
.btn {
  width: 100px;
  height: 50px;
  border: 2px solid #FFCCCC;
  text-align: center;
  line-height: 50px;
}

.btnRed {
  color: red;
  background-color: #FFCCCC;
}

.btnBlue {
  color: white;
  border-color: blue;
  background-color: blue;
}

.view-all {
  position: relative;
  padding-right: 22px;
  color: #404040;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

@media screen and (min-width: 768px) {
  .view-all {
    margin-top: -6px;
  }
}

@media screen and (max-width: 767px) {
  .view-all {
    display: inline-block;
    margin-bottom: 0;
  }
}

@media (max-width: 420px) {
  .view-all {
    margin-bottom: 20px;
  }
}

.view-all:after {
  content: '';
  background: url("../img/index/ico-view.png") no-repeat;
  width: 17px;
  height: 5px;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.date {
  color: #999999;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .date {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.date .cate-name {
  font-weight: bold;
  color: #fff;
  background: #404040;
  padding: 1px 11px 2px;
  border-radius: 20px;
  margin-left: 14px;
  line-height: 15px;
  height: 18px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .date .cate-name {
    margin-left: 10px;
  }
}

.flex-between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .flex-between {
    display: block;
  }
}

.read-more {
  border: 1px solid #404040;
  max-width: 174px;
  display: block;
  width: 100%;
  padding: 6px;
  text-align: center;
  color: #404040;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
}

.read-more span {
  display: block;
  position: relative;
}

.read-more span:after {
  content: '';
  background: url("../img/index/ico-view.png") no-repeat;
  width: 17px;
  height: 5px;
  right: 0;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.read-more.style02 {
  border-color: #fff;
  color: #fff;
  letter-spacing: 0;
  padding: 6px;
  max-width: 300px;
  margin: 0 auto;
}

.read-more.style02 span:after {
  height: 4px;
  top: 56%;
  background: url("../img/index/ico-view-white02.png") no-repeat;
}

main {
  display: block;
  width: 100%;
}

.page-main-visual {
  min-height: 250px;
  position: relative;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .page-main-visual {
    padding-top: 70px;
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .page-main-visual {
    min-height: 150px;
  }
}

.page-main-visual .mv_ttl {
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  color: #404040;
  font-size: 48px;
  font-size: 4.8rem;
  position: absolute;
  text-align: center;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .page-main-visual .mv_ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-main-visual .mv_ttl span {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  display: block;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .page-main-visual .mv_ttl span {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    letter-spacing: 0px;
  }
}

@media screen and (max-width: 767px) {
  .page-main-visual .mv_ttl span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.page-main-visual .mv_ttl span:last-child {
  width: 40px;
  height: 3px;
  background: #cbc529;
  margin: 0 auto;
  margin-top: 20px;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

@media screen and (max-width: 767px) {
  .page-main-visual .mv_ttl span:last-child {
    margin-top: 10px;
  }
}

.ttl-vh-01 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  background: #8b839b;
  padding: 13px 17px;
  margin-bottom: 64px;
}

@media screen and (max-width: 1200px) {
  .ttl-vh-01 {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 10px 15px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .ttl-vh-01 {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 10px 15px;
    margin-bottom: 30px;
  }
}

.ttl-vh-02 {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #434343;
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 17px;
  border-bottom: 1px dashed #dedede;
}

@media screen and (max-width: 1200px) {
  .ttl-vh-02 {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 1000px) {
  .ttl-vh-02 {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}

.ttl-vh-03 {
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 700;
  color: #8b839b;
  font-size: 23px;
  font-size: 2.3rem;
  border-bottom: 2px solid #8b839b;
  text-align: center;
  text-transform: uppercase;
  padding: 10.5px 0px;
}

@media screen and (max-width: 1200px) {
  .ttl-vh-03 {
    font-size: 20px;
    font-size: 2rem;
    padding: 8px 0px;
  }
}

.tag-cate {
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 18px;
  background: #b37ba4;
  border-radius: 15px;
  display: inline-block;
  margin-top: 12px;
  margin-bottom: 6px;
  margin-right: 8px;
  min-width: 85px;
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .tag-cate {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
  }
}

@media screen and (max-width: 1000px) {
  .tag-cate {
    font-size: 12px;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.tag-cate.cate-01 {
  background: #f8c7cc;
}

.tag-cate.cate-02 {
  background: #9cafb7;
}

.tag-cate.cate-03 {
  background: #81a684;
}

.tag-cate.cate-04 {
  background: #4d7ea8;
}

.sp-ip5 {
  display: none;
}

@media screen and (max-width: 321px) {
  .sp-ip5 {
    display: block;
  }
}

/*リストMODULE*/
/*ボックスMODULE*/
/*グリッドMODULE*/
/*フォームMODULE*/
.main-visual {
  position: relative;
}

.main-visual .main_mov {
  width: 100%;
}

.main-visual .main_mov video {
  width: 100%;
  height: auto;
}

.main-visual img {
  width: 100%;
}

.main-visual .item {
  position: relative;
}

.main-visual .item:before {
  content: '';
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.main-visual .ttl-mv {
  position: absolute;
  left: 49.7%;
  top: 48%;
  width: 100%;
  z-index: 999;
  text-align: center;
  max-width: 322px;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 1000px) {
  .main-visual .ttl-mv img {
    max-width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .main-visual .ttl-mv img {
    max-width: 35%;
  }
}

.main-visual .ttl-mv span {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  display: block;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .main-visual .ttl-mv span {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.topics-content {
  padding: 69px 0 120px;
}

@media screen and (max-width: 1300px) {
  .topics-content {
    padding: 50px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .topics-content {
    padding: 50px 0 7px;
  }
}

@media screen and (max-width: 767px) {
  .topics-content .flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 420px) {
  .topics-content .flex-between {
    display: block;
  }
}

.topics-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 768px) {
  .topics-list {
    -ms-flex-wrap: no-wrap;
        flex-wrap: no-wrap;
  }
}

@media screen and (max-width: 767px) {
  .topics-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.topics-item {
  width: calc(100%/3 - 22px);
  margin-right: 33px;
}

.topics-item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .topics-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
}

.topics-item a {
  display: block;
}

.topics-item a img {
  width: 100%;
  margin-bottom: 25px;
}

@media screen and (max-width: 1300px) {
  .topics-item a img {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .topics-item a img {
    margin-bottom: 15px;
    position: relative;
  }
}

.topics-item a .date {
  padding-left: 4px;
}

.topics-item a .topic-desc {
  font-weight: bold;
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .topics-item a .topic-desc {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.about-sel {
  position: relative;
  padding: 113px 0 160px;
  background: url("../img/index/bg-01.png") no-repeat;
  background-size: cover;
  min-height: 650px;
}

@media screen and (max-width: 1300px) {
  .about-sel {
    padding: 100px 0 120px;
  }
}

@media screen and (max-width: 1000px) {
  .about-sel {
    min-height: 500px;
    background-position: center;
  }
}

@media screen and (max-width: 767px) {
  .about-sel {
    padding: 40px 0 50px !important;
    min-height: 100%;
    background-position: left;
  }
}

@media screen and (max-width: 767px) {
  .about-sel .ttlCom01 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .about-sel .ttlCom01 span {
    margin-left: 0;
    display: block;
  }
}

.about-sel .content-about {
  margin-left: 90px;
  max-width: 530px;
}

@media screen and (max-width: 1300px) {
  .about-sel .content-about {
    margin-left: 45px;
  }
}

@media screen and (max-width: 1000px) {
  .about-sel .content-about {
    margin-left: 0;
    max-width: 400px;
  }
}

.about-sel .content-about .ttl-about {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  color: #404040;
  margin-bottom: 7px;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1000px) {
  .about-sel .content-about .ttl-about {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .about-sel .content-about .ttl-about {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 5px;
    line-height: 1.6;
  }
}

.about-sel .content-about .desc-about {
  color: #404040;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 48px;
  line-height: 1.9;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 1300px) {
  .about-sel .content-about .desc-about {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .about-sel .content-about .desc-about {
    margin-bottom: 20px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .about-sel .content-about .desc-about {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media (max-width: 370px) {
  .about-sel .content-about .desc-about {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.about-sel .content-about p {
  color: #323232;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 40px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1000px) {
  .about-sel .content-about p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .about-sel .content-about p {
    margin-bottom: 30px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.feature-content {
  padding: 143px 0 127px;
}

@media screen and (max-width: 1300px) {
  .feature-content {
    padding: 100px 0px;
  }
}

@media screen and (max-width: 767px) {
  .feature-content {
    padding: 50px 0px 15px;
  }
}

@media screen and (min-width: 768px) {
  .feature-content .ttlCom01 {
    margin-bottom: 31px;
  }
}

.feature-content .feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    margin-bottom: 0;
  }
}

.feature-content .feature-item:nth-child(2n) .feature-text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item:nth-child(2n) .feature-text {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.feature-content .feature-item:nth-child(2n) .feature-img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item:nth-child(2n) .feature-img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.feature-content .feature-item .feature-text {
  width: 36%;
  padding: 10%;
  background: #e8e3e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 50px 5.4% 85px 8.4%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1700px) {
  .feature-content .feature-item .feature-text {
    padding-right: 2%;
    padding-left: 3%;
  }
}

@media screen and (max-width: 1300px) {
  .feature-content .feature-item .feature-text {
    padding: 30px 2%;
  }
}

@media screen and (max-width: 1000px) {
  .feature-content .feature-item .feature-text {
    padding: 30px;
    width: 42%;
  }
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item .feature-text {
    width: 100%;
    padding: 30px 20px 50px;
  }
}

.feature-content .feature-item .feature-text img {
  margin-bottom: 66px;
}

@media screen and (max-width: 1300px) {
  .feature-content .feature-item .feature-text img {
    margin-bottom: 30px;
    max-width: 200px;
  }
}

@media screen and (max-width: 1000px) {
  .feature-content .feature-item .feature-text img {
    max-width: 160px;
    margin-bottom: 20px;
  }
}

.feature-content .feature-item .feature-text .ttl-fea {
  width: 100%;
  color: #404040;
  margin-bottom: 10px;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1300px) {
  .feature-content .feature-item .feature-text .ttl-fea {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item .feature-text .ttl-fea {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media (max-width: 370px) {
  .feature-content .feature-item .feature-text .ttl-fea {
    font-size: 20px;
    font-size: 2rem;
  }
}

.feature-content .feature-item .feature-text .ttl-fea span {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #e5df8d), color-stop(50%, transparent));
  background-image: -o-linear-gradient(left, #e5df8d 50%, transparent 50%);
  background-image: linear-gradient(to right, #e5df8d 50%, transparent 50%);
  background-size: 200% 10px;
  background-repeat: no-repeat;
  background-position: 0% .8em;
}

.feature-content .feature-item .feature-text .desc-fea {
  color: #404040;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  width: 100%;
  margin-bottom: 35px;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 1300px) {
  .feature-content .feature-item .feature-text .desc-fea {
    margin-bottom: 25px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item .feature-text .desc-fea {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.feature-content .feature-item .feature-text p {
  width: 100%;
  font-weight: 500;
  color: #323232;
  line-height: 1.8;
  margin: 0 0 31px;
  font-size: 15px;
  font-size: 1.5rem;
}

.feature-content .feature-item .feature-text p span {
  max-width: 335px;
  display: inline-block;
}

@media screen and (max-width: 1300px) {
  .feature-content .feature-item .feature-text p {
    margin-bottom: 20px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.feature-content .feature-item .feature-img {
  width: 64%;
}

@media screen and (max-width: 1000px) {
  .feature-content .feature-item .feature-img {
    width: 58%;
  }
}

@media screen and (max-width: 767px) {
  .feature-content .feature-item .feature-img {
    width: 100%;
  }
}

.feature-content .feature-item .feature-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover';
}

.course-img {
  position: relative;
}

.course-img img {
  width: 100%;
}

.course-img .course-text {
  position: absolute;
  top: -64px;
  right: 0;
  background: #fff;
  padding: 24px 46px 35px;
  max-width: 625px;
  width: 100%;
}

@media screen and (max-width: 1300px) {
  .course-img .course-text {
    max-width: 500px;
    padding: 30px;
  }
}

@media screen and (max-width: 1000px) {
  .course-img .course-text {
    max-width: 400px;
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .course-img .course-text {
    position: static;
    padding: 20px 0;
  }
}

.course-img .course-text .ttl-course {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  margin-bottom: -5px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 1300px) {
  .course-img .course-text .ttl-course {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .course-img .course-text .ttl-course {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.course-img .course-text .desc-course {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  margin-bottom: 23px;
  line-height: 1;
  font-size: 36px;
  font-size: 3.6rem;
}

@media screen and (max-width: 1300px) {
  .course-img .course-text .desc-course {
    margin-bottom: 20px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .course-img .course-text .desc-course {
    line-height: 1.2;
    margin-bottom: 15px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.course-img .course-text .desc-course span {
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  color: #ccc629;
  font-weight: 300;
  font-size: 48px;
  font-size: 4.8rem;
  font-style: italic;
}

@media screen and (max-width: 1300px) {
  .course-img .course-text .desc-course span {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .course-img .course-text .desc-course span {
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 767px) {
  .course-img .course-text p {
    margin-bottom: 15px;
  }
}

.course-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .course-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.course-item {
  width: 25%;
  padding: 22px 0 28px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .course-item {
    padding: 20px 0 25px;
  }
}

@media screen and (max-width: 767px) {
  .course-item {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .course-item:last-child {
    margin-bottom: 0;
  }
}

.course-item:nth-child(1) {
  background: #b09fad;
}

.course-item:nth-child(2) {
  background: #9b8ba2;
}

.course-item:nth-child(3) {
  background: #8b839c;
}

.course-item:nth-child(4) {
  background: #7d7997;
}

.course-item .ttl {
  text-align: left;
  padding: 0 34px 15px;
  border-bottom: 1px solid #c0b2bd;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 1300px) {
  .course-item .ttl {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 15px 15px;
  }
}

.course-item .ttl span {
  line-height: 1;
  font-style: italic;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 300;
  margin-top: -5px;
  padding-right: 35px;
  position: relative;
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 1300px) {
  .course-item .ttl span {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 1000px) {
  .course-item .ttl span {
    padding-right: 30px;
    font-size: 32px;
    font-size: 3.2rem;
  }
}

.course-item .ttl span:after {
  content: '';
  background: url("../img/index/ico-01.png") no-repeat;
  width: 25px;
  height: 43px;
  position: absolute;
  right: 4px;
  top: 5px;
}

@media screen and (max-width: 1300px) {
  .course-item .ttl span:after {
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .course-item .ttl span:after {
    height: 25px;
  }
}

.course-item .content {
  padding: 44px 20px 0 26px;
}

@media screen and (max-width: 1300px) {
  .course-item .content {
    padding: 30px 15px 0;
  }
}

@media screen and (max-width: 1300px) {
  .course-item .content {
    padding: 20px 15px 0;
  }
}

@media (max-width: 370px) {
  .course-item .content {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.course-item .content .desc {
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 21px;
  letter-spacing: -1px;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1300px) {
  .course-item .content .desc {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .course-item .content .desc {
    margin-bottom: 15px;
  }
}

.course-item .content .txtBase01 {
  margin-bottom: 45px;
}

@media screen and (max-width: 1300px) {
  .course-item .content .txtBase01 {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 1000px) {
  .course-item .content .txtBase01 {
    margin-bottom: 20px;
  }
}

.instructor-bg {
  background: url("../img/index/bg-02.png") no-repeat right 15% center;
  background-size: cover;
  padding: 80px 0 98px;
  min-height: 450px;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .instructor-bg {
    background-position: center right 33%;
    min-height: 333px;
  }
}

@media screen and (max-width: 767px) {
  .instructor-bg {
    background-position: center right 30%;
  }
}

@media screen and (max-width: 767px) {
  .instructor-bg .inner {
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 767px) {
  .instructor-bg:before {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
  }
}

@media screen and (min-width: 768px) {
  .instructor-bg .ttlCom01.style02 {
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 1000px) {
  .instructor-bg .ttlCom01.style02 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .instructor-bg .ttl-about {
    margin-bottom: 20px !important;
  }
}

@media screen and (min-width: 768px) {
  .instructor-bg .desc-about {
    margin-bottom: 40px !important;
  }
}

.column-content {
  padding: 157px 0 205px;
}

@media screen and (max-width: 1300px) {
  .column-content {
    padding: 120px 0;
  }
}

@media screen and (max-width: 767px) {
  .column-content {
    padding: 50px 0;
  }
}

.column-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.column-item {
  width: calc(100%/2 - 30px);
  margin-right: 60px;
  border-bottom: 1px solid #e4e4e4;
}

.column-item:nth-child(2n) {
  margin-right: 0;
}

.column-item:nth-child(1) {
  border-top: 1px solid #e4e4e4;
}

.column-item:nth-child(2) {
  border-top: 1px solid #e4e4e4;
}

@media screen and (max-width: 1000px) {
  .column-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: -1px;
  }
}

.column-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 0;
}

@media screen and (max-width: 500px) {
  .column-item a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .column-item a {
    padding: 30px 0 24px;
  }
}

.column-item a .img {
  width: 210px;
}

@media screen and (max-width: 500px) {
  .column-item a .img {
    width: 100%;
  }
}

.column-item a .img img {
  width: 100%;
}

.column-item a .text {
  padding-left: 23px;
  padding-top: 10px;
  width: calc(100% - 210px);
}

@media screen and (max-width: 1300px) {
  .column-item a .text {
    padding-top: 0;
  }
}

@media screen and (max-width: 500px) {
  .column-item a .text {
    width: 100%;
    padding-left: 0;
    padding-top: 15px;
  }
}

.column-item a .text .ttl-column {
  color: #000;
  font-weight: bold;
  margin-bottom: 17px;
  margin-top: 7px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .column-item a .text .ttl-column {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
}

.column-item a .text p {
  color: #000;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .column-item a .text p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact-main {
  padding: 83px 0 84px;
  background: url("../img/index/bg-03.jpg") no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1300px) {
  .contact-main {
    padding: 60px 0;
    background-position: center right 75%;
  }
}

@media screen and (max-width: 767px) {
  .contact-main {
    padding: 50px 0 60px;
    background-position: center;
  }
}

.contact-main .ttl-contact {
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 30px;
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 1300px) {
  .contact-main .ttl-contact {
    margin-bottom: 20px;
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-main .ttl-contact {
    font-size: 30px;
    font-size: 3rem;
  }
}

.contact-main p {
  margin-bottom: 61px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .contact-main p {
    margin-bottom: 40px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-main p {
    margin-bottom: 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.contact-main .btnCom01 {
  background: #ccc629;
  height: 138px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 592px;
  margin: 0 auto;
  width: 100%;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 1300px) {
  .contact-main .btnCom01 {
    height: 100px;
    max-width: 400px;
    font-size: 26px;
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 767px) {
  .contact-main .btnCom01 {
    height: 70px;
    max-width: 300px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.contact-main .btnCom01 span {
  display: block;
  width: 100%;
  position: relative;
}

.contact-main .btnCom01 span:after {
  content: '';
  background: url("../img/index/ico-view-white.png") no-repeat;
  width: 32px;
  background-size: cover;
  height: 10px;
  right: 8px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.product-index {
  padding: 170px 0 174px;
  text-align: center;
}

@media screen and (max-width: 1300px) {
  .product-index {
    padding: 110px 0;
  }
}

@media screen and (max-width: 767px) {
  .product-index {
    padding: 50px 0;
  }
}

.product-index .ttl-pro {
  color: #404040;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  margin-bottom: 33px;
  font-size: 36px;
  font-size: 3.6rem;
}

@media screen and (max-width: 1300px) {
  .product-index .ttl-pro {
    margin-bottom: 25px;
    font-size: 30px;
    font-size: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .product-index .ttl-pro {
    margin-bottom: 20px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.product-index .ttl-pro span {
  display: block;
  margin-bottom: 10px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 1300px) {
  .product-index .ttl-pro span {
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .product-index .ttl-pro span {
    margin-bottom: 5px;
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.product-index .txtBase01 {
  max-width: 760px;
  text-align: left;
  margin: 0 auto;
  margin-bottom: 39px;
}

@media screen and (max-width: 1300px) {
  .product-index .txtBase01 {
    margin-bottom: 30px;
  }
}

.product-index .read-more {
  margin: 0 auto 62px;
}

@media screen and (max-width: 1300px) {
  .product-index .read-more {
    margin: 0 auto 45px;
  }
}

.product-index .list-img-pro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1125px;
  margin: 0 auto;
}

.product-index .list-img-pro li {
  width: calc(100%/5 - 12px);
  margin-right: 15px;
  text-align: center;
}

.product-index .list-img-pro li:nth-child(5) {
  margin-right: 0;
}

.sec_news_main {
  padding-top: 30px;
  padding-bottom: 180px;
}

@media screen and (max-width: 767px) {
  .sec_news_main {
    padding: 30px 0px;
  }
}

@media screen and (max-width: 767px) {
  .sec_news_main .list-news-main {
    margin-bottom: 30px;
  }
}

.sec_news_main .list-news-main .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0px;
  border-bottom: 1px solid #cdcdcd;
}

@media screen and (max-width: 767px) {
  .sec_news_main .list-news-main .item {
    padding: 20px 0px;
  }
}

.sec_news_main .list-news-main .item:first-child {
  padding-top: 0px;
}

.sec_news_main .list-news-main .item-img {
  max-width: 34.09%;
}

@media screen and (max-width: 767px) {
  .sec_news_main .list-news-main .item-img {
    max-width: none;
    width: 100%;
    margin-bottom: 15px;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sec_news_main .list-news-main .item-img {
    width: 34.09%;
  }
}

.sec_news_main .list-news-main .item-info {
  width: calc(100% - 34.09%);
  padding-left: 15px;
  position: relative;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .sec_news_main .list-news-main .item-info {
    width: calc(100% - 34.09%);
  }
}

@media screen and (max-width: 767px) {
  .sec_news_main .list-news-main .item-info {
    max-width: none;
    width: 100%;
    padding-left: 0;
  }
}

.sec_news_main .list-news-main .item-info .description {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 26px;
  color: #434343;
}

@media screen and (max-width: 1200px) {
  .sec_news_main .list-news-main .item-info .description {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 22px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .sec_news_main .list-news-main .item-info .description {
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 20px;
  }
}

.sec_news_main .list-news-main .item-info .read-more {
  position: absolute;
  bottom: 0px;
  left: 15px;
}

@media screen and (max-width: 1200px) {
  .sec_news_main .list-news-main .item-info .read-more {
    position: static;
  }
}

.sec_news_main .list-news-main .item-info .created-date {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: -35px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .sec_news_main .list-news-main .item-info .created-date {
    position: static;
    text-align: left;
    margin-bottom: 10px;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}

@media screen and (max-width: 1000px) {
  .sec_news_main .list-news-main .item-info .created-date {
    position: static;
    text-align: left;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin-bottom: 10px;
  }
}

.sec_news_main .list-news-main .item-info .created-date span {
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  color: #999999;
  display: inline-block;
  margin-left: 17px;
}

@media screen and (max-width: 1200px) {
  .sec_news_main .list-news-main .item-info .created-date span {
    margin-left: 0px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .sec_news_main .list-news-main .item-info .created-date span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 0px;
    margin-right: 10px;
  }
}

.sec_news_main .list-news-main .item-info .created-date span i {
  color: #7e7997;
  margin-right: 7px;
}

.box-sidebar {
  border: 1px solid #e8e3e7;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .box-sidebar {
    margin-bottom: 30px;
  }
}

.box-sidebar .box-archive-content {
  padding: 0px 17px 12px 17px;
}

@media screen and (max-width: 767px) {
  .box-sidebar .box-archive-content {
    padding: 0px 10px 10px 10px;
  }
}

.box-sidebar .box-archive-content li:last-child a {
  border-bottom: none;
}

.box-sidebar .box-archive-content li a {
  display: block;
  border-bottom: 1px dashed #e9e4e8;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  padding: 15px 0px 14px 35px;
  color: #434343;
  position: relative;
  letter-spacing: 1px;
}

@media screen and (max-width: 1200px) {
  .box-sidebar .box-archive-content li a {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1000px) {
  .box-sidebar .box-archive-content li a {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 12px 0px 12px 20px;
  }
}

.box-sidebar .box-archive-content li a:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: #b37ba4;
  border-radius: 50%;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 1200px) {
  .box-sidebar .box-archive-content li a:before {
    width: 4px;
    height: 4px;
  }
}

@media screen and (max-width: 1000px) {
  .box-sidebar .box-archive-content li a:before {
    left: 5px;
  }
}

.box-categories .box-categories-content {
  padding: 0px 17px 17px 17px;
}

@media screen and (max-width: 767px) {
  .box-categories .box-categories-content {
    padding: 0px 10px 10px 10px;
  }
}

.box-categories .box-categories-content li:last-child a {
  border-bottom: none;
}

.box-categories .box-categories-content li a {
  display: block;
  border-bottom: 1px dashed #e9e4e8;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  padding: 14px 0px 14px 20px;
  color: #434343;
  position: relative;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .box-categories .box-categories-content li a {
    font-size: 18px;
    font-size: 1.8rem;
    padding: 12px 0px 12px 15px;
  }
}

.box-news-relative {
  margin-bottom: 65px;
}

@media screen and (max-width: 767px) {
  .box-news-relative {
    margin-bottom: 30px;
  }
}

.box-news-relative .ttl-news-relative {
  background: #8b839b;
  color: #fff;
}

.box-news-relative .list-item {
  padding: 28px 17px 16px;
}

.box-news-relative .list-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 15px 0px 15px 0px;
  border-bottom: 1px dashed #ebe6ea;
}

.box-news-relative .list-item .item:first-child {
  padding-top: 0;
  padding-bottom: 7px;
}

.box-news-relative .list-item .item:first-child .ttl-vh-04 a {
  letter-spacing: 0px;
}

.box-news-relative .list-item .item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.box-news-relative .list-item .item-img {
  width: 109px;
}

.box-news-relative .list-item .item .ttl-vh-04 {
  width: calc(100% - 109px);
  padding-left: 7px;
}

.box-news-relative .list-item .item .ttl-vh-04 a {
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  color: #434343;
  line-height: 24px;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .box-news-relative .list-item .item .ttl-vh-04 a {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0px;
    line-height: 20px;
  }
}

.sec_news_detail {
  padding-top: 30px;
  padding-bottom: 133px;
}

@media screen and (max-width: 767px) {
  .sec_news_detail {
    padding: 30px 0px;
  }
}

.ttl-detail {
  padding-bottom: 12px;
  padding-top: 13px;
  border-bottom: 2px solid #8b839b;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .ttl-detail {
    padding: 10px 0px;
  }
}

.date-news-detail .tag-cate {
  margin-top: 10px;
  margin-left: 0;
  color: #fff;
}

.date-news-detail span {
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  color: #999999;
  display: inline-block;
  margin-left: 17px;
}

.date-news-detail span:nth-child(2) {
  margin-left: 2px;
}

@media screen and (max-width: 1200px) {
  .date-news-detail span {
    margin-left: 0px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .date-news-detail span {
    font-size: 12px;
    font-size: 1.2rem;
    margin-left: 0px;
    margin-right: 10px;
  }
}

.date-news-detail span i {
  color: #7e7997;
  margin-right: 7px;
}

.box-img-center {
  margin-top: 30px;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .box-img-center {
    margin-top: 15px;
  }
}

.box-img-center img {
  margin: 0 auto;
}

.news-detail-content {
  margin-bottom: 38px;
}

.news-detail-content strong {
  font-weight: 600;
  font-size:150%;
}

.news-detail-content em {
  font-style: italic;
}

.news-detail-content h2 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 46px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #705e96;
  padding-left: 10px;
  padding-top: 9px;
  padding-bottom: 9px;
  margin-bottom: 17px;
  border-left: 9px solid #705e96;
  letter-spacing: -1px;
  line-height: 1.2;
}

.news-detail-content h3 {
  font-size: 20px;
  font-size: 2.0rem;
  line-height: 38px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}

.news-detail-content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 32px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .news-detail-content h2 {
    letter-spacing: 0px;
    font-size: 20px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .news-detail-content {
    margin-bottom: 20px;
  }
}

.news-detail-content h3 span {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  padding-left: 10px;
  display: inline-block;
  margin-bottom: 20px;
  letter-spacing: -1px;
  background: url("../img/news/detail/line-dot.png") no-repeat left bottom;
  background-size: contain;
  padding-bottom: 2px;
}

@media screen and (max-width: 767px) {
  .news-detail-content h3 span {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.news-detail-content img {
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .news-detail-content img {
    margin-top: 15px;
  }
}

.news-detail-content .col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .news-detail-content .col-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-detail-content .col-2 .img {
  width: calc(50% - 12.5px);
  margin-right: 25px;
}

.news-detail-content .col-2 .img:nth-child(2n + 2) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .news-detail-content .col-2 .img {
    width: 100%;
    margin-right: 0px;
  }
}

.news-detail-content .col-2 .img img {
  width: 100%;
}

.news-detail-content .col-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-detail-content .col-3 .img {
  width: calc((100% - 15px*2)/3);
  margin-right: 15px;
}

.news-detail-content .col-3 .img:nth-child(3n + 3) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .news-detail-content .col-3 .img {
    width: 100%;
    margin-right: 0px;
  }
}

.news-detail-content .col-3 .img img {
  width: 100%;
}

.news-detail-content p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 26px;
  letter-spacing: -1px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .news-detail-content p {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
    letter-spacing: 0px;
  }
}

.news-detail-content .box-exercise {
  max-width: 860px;
  margin: 0 auto;
  margin-top: 27px;
  margin-bottom: 40px;
  border: 2px solid #d1b0c8;
}

.news-detail-content .box-exercise > h3 {
  text-align: center;
  background: #efefef;
  margin-top: 20px;
  padding: 6px 0px;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #333333;
  display: block;
  border: none;
}

.news-detail-content .box-exercise .content {
  padding-left: 35px;
  margin-top: 20px;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .news-detail-content .box-exercise .content {
    padding: 0px 5px;
    margin: 15px 0px;
  }
}

.news-detail-content .box-exercise .content h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: bold;
  color: #333333;
  padding-bottom: 5px;
  border-bottom: 2px solid #b37ba4;
  margin-bottom: 32px;
  display: inline-block;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .news-detail-content .box-exercise .content h4 {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0px;
    margin-bottom: 20px;
  }
}

.news-detail-content .box-exercise .content ul {
  padding-left: 5px;
}

.news-detail-content .box-exercise .content ul li {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  color: #434343;
  margin-bottom: 1px;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .news-detail-content .box-exercise .content ul li {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}

.news-detail-content .box-exercise .content ul li span {
  font-weight: bold;
  color: #333;
}

.txt-basic {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 26px;
  letter-spacing: -1px;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  color: #434343;
}

@media screen and (max-width: 767px) {
  .txt-basic {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 22px;
    letter-spacing: 0px;
  }
}

.page-seminar .page-ttl {
  background-image: url(../img/seminar/bg_ttl.jpg);
}

.page-seminar .sec-seminar {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar {
    padding: 60px 0 0;
  }
}

.page-seminar .sec-seminar .ttl-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 38px 0;
  background: #404040;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .ttl-bar {
    padding: 25px 0;
  }
}

.page-seminar .sec-seminar .ttl-bar .logo svg {
  width: 48px;
}

.page-seminar .sec-seminar .ttl-bar .ttl {
  margin-left: 10px;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .ttl-bar .ttl {
    font-size: 30px;
    font-size: 3rem;
  }
}

.page-seminar .sec-seminar .lead {
  margin: 25px 0 130px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .lead {
    margin: 25px 0 calc(50px + 6.66vw);
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-seminar .sec-seminar .item-contents {
  position: relative;
  padding-bottom: 50px;
  background: #e8e2e6;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents {
    padding-bottom: 6.66vw;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1550px;
}

.page-seminar .sec-seminar .item-contents .content-inner .img {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 49.54%;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .img {
    width: 100%;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner .img img {
  margin-top: -50px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .img img {
    margin-top: -6.66vw;
    width: 90%;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner .txt-box {
  padding: 80px 0 20px;
  width: 46%;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .txt-box {
    padding: 8vw 20px 1.33vw;
    width: 100%;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner .txt-box .item {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .txt-box .item {
    margin-bottom: 6.66vw;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner .txt-box .txt {
  padding-left: 96px;
}

@media screen and (max-width: 990px) {
  .page-seminar .sec-seminar .item-contents .content-inner .txt-box .txt {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .txt-box .txt {
    padding-left: 12.8vw;
  }
}

.page-seminar .sec-seminar .item-contents .content-inner .txt-box .icn {
  margin-bottom: 20px;
}

.page-seminar .sec-seminar .item-contents .content-inner .txt-box .cap {
  margin: 5px 0 30px;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .item-contents .content-inner .txt-box .cap {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.page-seminar .sec-seminar .ttl-seminar {
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .ttl-seminar {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-seminar .icn {
    width: 34.1vw;
  }
}

.page-seminar .sec-schedule {
  padding: 125px 0 30px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule {
    padding: 60px 0 20px;
  }
}

.page-seminar .sec-schedule .outline {
  max-width: 1290px;
  margin: 0 auto;
}

.page-seminar .sec-schedule .outline .ttlCom03 {
  margin-bottom: 85px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .outline .ttlCom03 {
    margin-bottom: 6.66vw;
  }
}

.page-seminar .sec-schedule .outline-item {
  margin: 0 auto 90px;
  max-width: 1220px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .outline-item {
    margin-bottom: 6.66vw;
  }
}

.page-seminar .sec-schedule .ttl-seminar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .ttl-seminar {
    display: block;
    margin-bottom: 30px;
  }
}

.page-seminar .sec-schedule .ttl-seminar .icn {
  margin-right: 20px;
  max-width: 256px;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .ttl-seminar .icn {
    margin-bottom: 15px;
  }
}

.page-seminar .sec-schedule .schedule-table {
  border-top: 1px solid #dcdcdc;
  font-size: 17px;
  font-size: 1.7rem;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .schedule-table {
    margin-top: 30px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .page-seminar .sec-schedule .schedule-table:not(:first-of-type) {
    border-top: 0;
  }
}

.page-seminar .sec-schedule .schedule-table .tRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-seminar .sec-schedule .schedule-table .tHead, .page-seminar .sec-schedule .schedule-table .tData {
  padding: 28px 3%;
  border-bottom: 1px solid #dcdcdc;
  border-left: 1px solid #dcdcdc;
  width: 100%;
}

.page-seminar .sec-schedule .schedule-table .tHead:last-child, .page-seminar .sec-schedule .schedule-table .tData:last-child {
  border-right: 1px solid #dcdcdc;
}

@media screen and (min-width: 768px) {
  .page-seminar .sec-schedule .schedule-table .tHead.area, .page-seminar .sec-schedule .schedule-table .tData.area {
    padding: 28px 2%;
    width: 12%;
    text-align: center;
  }
  .page-seminar .sec-schedule .schedule-table .tHead.day, .page-seminar .sec-schedule .schedule-table .tData.day {
    width: 24%;
  }
  .page-seminar .sec-schedule .schedule-table .tHead.place, .page-seminar .sec-schedule .schedule-table .tData.place {
    width: 38%;
  }
  .page-seminar .sec-schedule .schedule-table .tHead.price, .page-seminar .sec-schedule .schedule-table .tData.price {
    width: 26%;
  }
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .schedule-table .tHead, .page-seminar .sec-schedule .schedule-table .tData {
    padding: 20px 2%;
  }
}

.page-seminar .sec-schedule .schedule-table .tHead {
  background: #ededed;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .schedule-table .tHead {
    padding: 10px 2%;
    text-align: left;
  }
}

.page-seminar .sec-schedule .schedule-table .tData.area {
  font-weight: bold;
  background: #f5f4d5;
}

.page-seminar .sec-schedule .schedule-table .tData.day, .page-seminar .sec-schedule .schedule-table .tData.place, .page-seminar .sec-schedule .schedule-table .tData.price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .page-seminar .sec-schedule .schedule-table .pcHead {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .page-seminar .sec-schedule .schedule-table .spHead {
    display: none;
  }
}

.page-salon .page-ttl {
  background-image: url(../img/salon/bg_ttl.jpg);
}

.page-salon .sec-salon .map-area {
  padding: 45px 0 50px;
  background: #f1e9e6 url(../img/salon/bg_map.png) repeat-y center center;
  background-size: 100%;
}

.page-salon .sec-salon .map-area img {
  display: inline;
}

@media screen and (max-width: 767px) {
  .page-salon .sec-salon .map-area {
    padding: 6vw 2% 6.66vw;
  }
}

.page-salon .sec-salon .map-area .map-inner {
  position: relative;
  margin: 0 auto;
  max-width: 600px;
}

.page-salon .sec-salon .map-area .map-inner .icn {
  position: absolute;
  width: 9.16%;
}

.page-salon .sec-salon .map-area .map-inner .icn.icn01 {
  top: 53.9%;
  left: 36.666%;
}

.page-salon .sec-salon .map-area .map-inner .icn.icn02 {
  top: 57.62%;
  left: 68.5%;
}

.page-salon .sec-salon .map-area .map-inner .icn.icn03 {
  top: 75.339%;
  left: 51.333%;
}

.page-salon .sec-salon .map-area .map-inner .icn.icn04 {
  left: 9%;
  top: 85.2427%;
}

.page-salon .sec-salon .map-area map area {
  cursor: pointer;
}

.page-salon .sec-salon .inner {
  padding-top: 134px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .page-salon .sec-salon .inner {
    padding-top: 60px;
  }
}

.page-salon .sec-salonList {
  margin: 0 auto;
  max-width: 1290px;
}

.page-salon .sec-salonList .ttlCom03 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .page-salon .sec-salonList .ttlCom03 {
    margin-bottom: 4vw;
  }
}

.page-salon .sec-salonList .salon-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
  .page-salon .sec-salonList .salon-list {
    margin-bottom: 3.33vw;
  }
}

.page-salon .sec-salonList .salon-list-item {
  margin-left: 2.3%;
  margin-bottom: 75px;
  width: 31.8%;
  font-size: 15px;
  font-size: 1.5rem;
}

@media screen and (min-width: 861px) {
  .page-salon .sec-salonList .salon-list-item:nth-child(3n + 1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 860px) {
  .page-salon .sec-salonList .salon-list-item {
    width: 48.5%;
    margin-left: 3%;
  }
  .page-salon .sec-salonList .salon-list-item:nth-child(2n + 1) {
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .page-salon .sec-salonList .salon-list-item {
    margin-left: 0;
    margin-bottom: 50px;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-salon .sec-salonList .salon-list-item .ttl {
  margin-bottom: 20px;
  padding: 14px 0;
  color: #fff;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  background: #858585;
}

@media screen and (max-width: 640px) {
  .page-salon .sec-salonList .salon-list-item .ttl {
    padding: 10px 0;
    color: #fff;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.page-salon .sec-salonList .salon-list-item .info p {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.page-salon .sec-salonList .salon-list-item .info p span {
  display: block;
}

.page-salon .sec-salonList .salon-list-item .info p .head {
  width: 94px;
  background: #c4b9c7;
  text-align: center;
  line-height: 44px;
}

@media screen and (max-width: 640px) {
  .page-salon .sec-salonList .salon-list-item .info p .head {
    width: 80px;
  }
}

.page-salon .sec-salonList .salon-list-item .info p .desc {
  -ms-flex-item-align: center;
      align-self: center;
  padding-left: 1em;
  width: calc(100% - 94px);
}

@media screen and (max-width: 640px) {
  .page-salon .sec-salonList .salon-list-item .info p .desc {
    width: calc(100% - 80px);
  }
}

.page-salon .sec-salonList .salon-list-item .info p .desc a {
  color: inherit;
}

.page-salon .sec-salonList .salon-list-item .info p .desc .txtLink {
  color: #7d7997;
}

.page-salon .sec-salonList .salon-list-item .info p .desc .txtLink:hover {
  text-decoration: underline;
}

.page-feature_index .page-ttl {
  background-image: url(../img/feature/index/bg_ttl.png);
}

.page-feature_index_02 .page-ttl {
  background-image: url(../img/feature/bg_ttl.png);
}

.page-main-visual-style01 {
  position: relative;
}

.page-main-visual-style01 img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .page-main-visual-style01 img {
    width: auto;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
}

.page-main-visual-style01 .mv_ttl {
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  color: #fff;
  font-size: 48px;
  font-size: 4.8rem;
  position: absolute;
  text-align: center;
  z-index: 2;
  top: 52%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .page-main-visual-style01 .mv_ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-main-visual-style01 .mv_ttl span {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  display: block;
  letter-spacing: -1px;
  color: #fff;
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .page-main-visual-style01 .mv_ttl span {
    font-size: 16px;
    font-size: 1.6rem;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    letter-spacing: 0px;
  }
}

.sec-ttl-top {
  text-align: center;
  margin-bottom: 142px;
  margin-top: 90px;
}

@media screen and (max-width: 1000px) {
  .sec-ttl-top {
    margin: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .sec-ttl-top {
    margin: 30px 0;
  }
}

.sec-ttl-top .txt-yellow {
  color: #ccc629;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-style: italic;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .sec-ttl-top .txt-yellow {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.sec-ttl-top .ttl-factor {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin: 8px 0;
  letter-spacing: -4px;
}

@media screen and (max-width: 767px) {
  .sec-ttl-top .ttl-factor {
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0;
    margin: 5px 0px;
  }
}

.sec-ttl-top .txt-bot {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .sec-ttl-top .txt-bot {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec_factor .box-content-top {
  background: #e8e3e6;
  margin-bottom: 102px;
  padding-top: 84px;
  padding-bottom: 47px;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top {
    padding: 50px 0px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top {
    margin-bottom: 50px;
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

.sec_factor .box-content-top .wp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.sec_factor .box-content-top .wp-flex .box-slider {
  width: 50%;
  margin-top: -139px;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-slider {
    margin-top: -80px;
  }
}

@media screen and (max-width: 800px) {
  .sec_factor .box-content-top .wp-flex .box-slider {
    margin-top: 0;
    margin-bottom: 65px;
    width: 100%;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-next, .sec_factor .box-content-top .wp-flex .box-slider .slick-prev {
  display: none !important;
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-dots {
  bottom: -28px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .slick-dots {
    bottom: -20px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-dots li button {
  color: #FFFFFF;
  background: #adadad;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .slick-dots li button {
    width: 7px;
    height: 7px;
    padding: 0;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-dots li button:before {
  content: '';
  opacity: 1;
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .slick-dots li button:before {
    width: 7px;
    height: 7px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-dots li {
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .slick-dots li {
    width: 7px;
    height: 7px;
    margin: 0px 5px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .slick-dots li.slick-active button:before {
  background: #404040;
  opacity: 1;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .slick-dots li.slick-active button:before {
    width: 7px;
    height: 7px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .item {
  position: relative;
}

.sec_factor .box-content-top .wp-flex .box-slider .item .box-caption {
  position: absolute;
  height: 160px;
  bottom: 0px;
  width: 100%;
  left: 0;
  z-index: 99;
  padding-left: 56px;
  padding-right: 56px;
  padding-top: 22px;
  background: rgba(40, 40, 40, 0.5);
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-slider .item .box-caption {
    height: auto;
    padding: 10px 5px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .item .box-caption .ttl-slider {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .item .box-caption .ttl-slider {
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .item .box-caption .ttl-slider span {
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  color: #fff;
  font-size: 30px;
  font-size: 3rem;
  font-style: italic;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .item .box-caption .ttl-slider span {
    font-size: 26px;
    font-size: 2.6rem;
  }
}

.sec_factor .box-content-top .wp-flex .box-slider .item .box-caption p {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  color: #fff;
  line-height: 26px;
  letter-spacing: -1px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-slider .item .box-caption p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 18px;
  }
}

.sec_factor .box-content-top .wp-flex .box-content {
  width: 50%;
  padding-left: 98px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .wp-flex .box-content {
    padding-left: 30px;
  }
}

@media screen and (max-width: 800px) {
  .sec_factor .box-content-top .wp-flex .box-content {
    padding-left: 0px;
    width: 100%;
  }
}

.sec_factor .box-content-top .wp-flex .box-content img {
  margin-bottom: 56px;
  width: auto;
  max-height: 90px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content img {
    margin-bottom: 20px;
    max-width: 100%;
    max-height: 70px;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor {
    margin-bottom: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .number {
  color: #fff;
  width: 110px;
  font-size: 90px;
  font-size: 9rem;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-style: italic;
  line-height: 66px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .number {
    font-size: 70px;
    font-size: 7rem;
    width: 80px;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor {
  width: calc(100% - 110px);
  font-size: 20px;
  font-size: 2rem;
  color: #404040;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor {
    font-size: 15px;
    font-size: 1.5rem;
    width: calc(100% - 80px);
  }
}

@media screen and (max-width: 320px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor span {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  display: block;
  margin-top: 10px;
  letter-spacing: -2px;
}

.sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor span b {
  background-image: -o-linear-gradient(left, #e5df8d 50%, transparent 50%);
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #e5df8d), color-stop(50%, transparent));
  background-image: linear-gradient(to right, #e5df8d 50%, transparent 50%);
  background-size: 200% 10px;
  background-repeat: no-repeat;
  background-position: 0% .8em;
}

@supports (-ms-ime-align: auto) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor span b {
    background-position: 0% 1em;
  }
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor span {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-ttl-factor .ttl-factor span {
    font-size: 20px;
    font-size: 2rem;
    margin-top: 5px;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-description {
  padding-right: 80px;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-description {
    padding-right: 0;
  }
}

.sec_factor .box-content-top .wp-flex .box-content .box-description p {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 2;
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-weight: 500;
  letter-spacing: -1px;
}

.sec_factor .box-content-top .wp-flex .box-content .box-description p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-description p {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-content .box-description p {
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec_factor .box-content-top .wp-flex .box-img {
  width: 50%;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .sec_factor .box-content-top .wp-flex .box-img {
    width: 100%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-img {
    width: 100%;
    margin-bottom: 40px;
  }
}

.sec_factor .box-content-top .wp-flex .box-img img {
  max-width: 639px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .wp-flex .box-img img {
    max-width: 100%;
  }
}

.sec_factor .box-content-top .wp-flex .box-img-custom {
  margin-top: -20px;
  margin-left: -5px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .wp-flex .box-img-custom {
    width: 100%;
    margin-bottom: 40px;
    margin-top: 0px;
    margin-left: 0px;
  }
}

.sec_factor .box-content-top .wp-flex .box-img-custom img {
  max-width: 649px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .wp-flex .box-img-custom img {
    max-width: 100%;
  }
}

.sec_factor .box-content-top .wp-flex .box-img-custom-02 {
  text-align: left;
  margin-left: 0;
  margin-top: 0;
}

.sec_factor .box-content-top .wp-flex .box-img-custom-02 img {
  max-width: 100%;
}

.sec_factor .box-content-top .course-list-feature {
  margin-top: 87px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature {
    margin-top: 30px;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item {
  width: calc((100% - 25px*2)/3);
  margin-right: 24px;
  padding: 0px;
  text-align: center;
  color: #fff;
}

@supports (-ms-ime-align: auto) {
  .sec_factor .box-content-top .course-list-feature .course-item {
    margin-right: 24px;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item:nth-child(3n + 3) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature .course-item {
    width: 100%;
    margin-bottom: 30px;
    margin-right: 0px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature .course-item:last-child {
    margin-bottom: 0;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item:nth-child(1) {
  background: #b09fad;
}

.sec_factor .box-content-top .course-list-feature .course-item:nth-child(2) {
  background: #9b8ba2;
}

.sec_factor .box-content-top .course-list-feature .course-item:nth-child(3) {
  background: #8b839c;
}

.sec_factor .box-content-top .course-list-feature .course-item .content {
  padding: 74px 35px 21px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content {
    padding: 30px 10px;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course {
  font-weight: bold;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 37px;
  padding-bottom: 37px;
  border-bottom: 1px solid #c0b2bd;
  font-size: 30px;
  font-size: 3rem;
  letter-spacing: -1px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course {
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course {
    margin-bottom: 15px;
    padding-bottom: 15px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media only screen and (max-width: 374px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course span {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: calc(30 / 18);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .ttl-course span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.sec_factor .box-content-top .course-list-feature .course-item .content .txtBase01 {
  margin-bottom: 45px;
  letter-spacing: -1px;
  text-align: left;
  padding: 0px 8px;
  line-height: 26px;
}

@media screen and (max-width: 1300px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .txtBase01 {
    margin-bottom: 25px;
    padding: 0px;
  }
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .course-list-feature .course-item .content .txtBase01 {
    margin-bottom: 0;
    padding: 0px;
  }
}

.sec_factor .box-content-top .course-list-feature-02 .course-item .content .ttl-course {
  padding-bottom: 30px;
}

.sec_factor .box-content-top .course-list-feature-02 .course-item .content .txtBase01 {
  margin-bottom: 35px;
}

@media screen and (max-width: 1000px) {
  .sec_factor .box-content-top .course-list-feature-02 .course-item .content .txtBase01 {
    margin-bottom: 0;
  }
}

.sec_factor .box-content-top-custom {
  padding-top: 70px;
  padding-bottom: 75px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top-custom {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.sec_factor .box-content-top-custom-02 {
  padding-top: 70px;
  padding-bottom: 90px;
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .sec_factor .box-content-top-custom-02 {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

.sec-feature-relative {
  margin-top: 185px;
  margin-bottom: 182px;
}

@media screen and (max-width: 1000px) {
  .sec-feature-relative {
    margin: 50px 0px;
  }
}

@media screen and (max-width: 767px) {
  .sec-feature-relative {
    margin: 40px 0px;
  }
}

.sec-feature-relative .wp-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.sec-feature-relative .wp-flex .item {
  width: calc((100% - 70px*2)/3);
  margin-right: 69px;
}

@media screen and (max-width: 1000px) {
  .sec-feature-relative .wp-flex .item {
    margin-right: 30px;
    width: calc((100% - 31px*2)/3);
  }
}

@media screen and (max-width: 767px) {
  .sec-feature-relative .wp-flex .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .sec-feature-relative .wp-flex .item:last-child {
    margin-bottom: 10px;
  }
}

.sec-feature-relative .wp-flex .item:nth-child(3n + 3) {
  margin-right: 0;
}

.sec-feature-relative .wp-flex .item:hover {
  opacity: 1;
}

.sec-feature-relative .wp-flex .item:hover .img:before {
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.sec-feature-relative .wp-flex .item .img {
  position: relative;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .sec-feature-relative .wp-flex .item .img {
    margin-bottom: 15px;
  }
}

.sec-feature-relative .wp-flex .item .img:before {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.25);
}

.sec-feature-relative .wp-flex .item .img img {
  width: 100%;
}

.sec-feature-relative .wp-flex .item .box-info {
  border-bottom: 1px solid #d7d7d7;
  padding-bottom: 15px;
  position: relative;
}

.sec-feature-relative .wp-flex .item .box-info:after {
  content: "\f054";
  font-family: FontAwesome;
  color: #cbcbcb;
  position: absolute;
  top: 35%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sec-feature-relative .wp-flex .item .box-info .txt-yellow {
  color: #ccc629;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-style: italic;
  margin-bottom: 15px;
}

.sec-feature-relative .wp-flex .item .box-info .ttl-factor {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bolder;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  display: inline-block;
  margin-left: 20px;
  color: #404040;
}

.sec-feature-relative .wp-flex .item.active {
  pointer-events: none;
  cursor: default;
}

.sec-feature-relative .wp-flex .item.active .img:before {
  display: none;
}

.sec-feature-relative .wp-flex .item.active .box-info {
  border-bottom: 1px solid #ccc629;
}

.sec-feature-relative .wp-flex .item.active .box-info:after {
  display: none;
}

.pt-70 {
  padding-top: 70px !important;
}

@media screen and (max-width: 1000px) {
  .pt-70 {
    padding: 0px !important;
  }
}

.pt-10 {
  padding-top: 10px !important;
}

@media screen and (max-width: 800px) {
  .pt-10 {
    padding: 0px !important;
  }
}

.pd-50 {
  padding: 0px 50px !important;
}

@media screen and (max-width: 1000px) {
  .pd-50 {
    padding: 0px !important;
  }
}

.pb-65 {
  padding-bottom: 65px !important;
}

@media screen and (max-width: 800px) {
  .pb-65 {
    padding-bottom: 40px !important;
  }
}

.pt-80 {
  padding-top: 80px !important;
}

@media screen and (max-width: 800px) {
  .pt-80 {
    padding-top: 50px !important;
  }
}

.mt-60 {
  margin-top: 60px !important;
}

@media screen and (max-width: 767px) {
  .mt-60 {
    margin-top: 30px !important;
  }
}

.mt-170 {
  margin-top: 170px !important;
}

@media screen and (max-width: 767px) {
  .mt-170 {
    margin-top: 40px !important;
  }
}

.page-interview .page-ttl {
  background-image: url(../img/interview/bg_ttl.jpg);
  margin-bottom: 160px;
}

@media screen and (max-width: 990px) {
  .page-interview .page-ttl {
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .page-ttl {
    margin-bottom: 40px;
  }
}

.page-interview .col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-interview .txt {
  font-size: 15px;
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.9;
}

.page-interview .txt:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .page-interview .txt {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.8;
  }
}

.page-interview .sec-interview {
  margin-bottom: 175px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview {
    margin-bottom: 55px;
  }
}

.page-interview .sec-interview .img-col {
  width: 50%;
  z-index: 2;
  padding-top: 50px;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-interview .img-col {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .img-col {
    width: 100%;
    padding: 0;
    margin: 0 auto 35px;
  }
  .page-interview .sec-interview .img-col img {
    width: 100%;
  }
}

.page-interview .sec-interview .txt-col {
  width: 49.5%;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .txt-col {
    width: 100%;
  }
}

.page-interview .sec-interview .interview-ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .interview-ttl {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 25px;
  }
}

.page-interview .sec-interview .sub-ttl {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .sub-ttl {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.page-interview .sec-interview .txt-inner {
  padding: 0 13.7%;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-interview .txt-inner {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .txt-inner {
    padding: 0;
  }
}

.page-interview .sec-interview .prof-box {
  background: #b09fad;
  color: #FFF;
  margin-left: -40%;
  margin-top: 85px;
  padding: 30px 30px 30px 53.7%;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-interview .prof-box {
    margin: 45px 0 0;
    padding: 30px;
    margin-left: -100%;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box {
    padding: 20px 20px 30px;
    margin: 35px -20px 0;
  }
}

.page-interview .sec-interview .prof-box .prof-col {
  width: 62%;
  float: left;
  padding-right: 8%;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .prof-col {
    width: 100%;
    float: none;
  }
}

.page-interview .sec-interview .prof-box .img-col {
  padding: 0 !important;
  margin: 0 !important;
  width: 38%;
  float: right;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .img-col {
    width: 60%;
    margin: 0 auto 20px !important;
    float: none;
  }
}

.page-interview .sec-interview .prof-box .img-col img {
  width: 100%;
}

.page-interview .sec-interview .prof-box .prof-ttl {
  position: relative;
  margin-bottom: 15px;
}

.page-interview .sec-interview .prof-box .prof-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
}

.page-interview .sec-interview .prof-box .prof-ttl span {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 0 10px 0 0;
  background: #b09fad;
  font-style: italic;
  font-size: 18px;
  font-size: 1.8rem;
}

.page-interview .sec-interview .prof-box .position {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .position {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.page-interview .sec-interview .prof-box .name {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .name {
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}

.page-interview .sec-interview .prof-box .name span {
  font-size: 24px;
  font-size: 2.4rem;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .name span {
    font-size: 19px;
    font-size: 1.9rem;
  }
}

.page-interview .sec-interview .prof-box .txt {
  font-size: 14px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-interview .prof-box .txt {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.page-interview .sec-point {
  margin-bottom: 167px;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-point {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point {
    margin-bottom: 60px;
  }
}

.page-interview .sec-point .sec-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .sec-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

.page-interview .sec-point .sec-ttl span {
  display: block;
  font-size: 36px;
  font-size: 3.6rem;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .sec-ttl span {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

.page-interview .sec-point .intro-txt {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 95px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .intro-txt {
    font-size: 14px;
    font-size: 1.4rem;
    margin-bottom: 45px;
  }
}

.page-interview .sec-point .col-wrap {
  padding: 0 70px;
  margin-bottom: 120px;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-point .col-wrap {
    padding: 0;
    margin-bottom: 65px;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .col-wrap {
    margin-bottom: 35px;
  }
}

.page-interview .sec-point .col-wrap:last-of-type {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .page-interview .sec-point .col-wrap.point02 .img-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.page-interview .sec-point .col-wrap.point02 .txt-col {
  padding-left: 0;
  padding-right: 6.8%;
}

@media screen and (min-width: 768px) {
  .page-interview .sec-point .col-wrap.point02 .txt-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 990px) {
  .page-interview .sec-point .col-wrap.point02 .txt-col {
    padding-right: 4%;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .col-wrap.point02 .txt-col {
    padding: 0;
  }
}

.page-interview .sec-point .img-col {
  position: relative;
  width: 55.3%;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-point .img-col {
    width: 45%;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .img-col {
    width: 100%;
    margin-bottom: 25px;
  }
}

.page-interview .sec-point .txt-col {
  width: 44%;
  padding-left: 6.8%;
  padding-top: 85px;
}

@media screen and (max-width: 990px) {
  .page-interview .sec-point .txt-col {
    width: 55%;
    padding-top: 0;
    padding-left: 4%;
  }
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .txt-col {
    width: 100%;
    padding: 0;
  }
}

.page-interview .sec-point .interview-ttl {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 35px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .interview-ttl {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
  }
}

.page-interview .sec-point .txt {
  line-height: 1.7;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .page-interview .sec-point .txt {
    margin-bottom: 20px;
  }
}

.inner-1290 {
  max-width: 1330px;
  margin: 0 auto;
  padding: 0 20px;
}

/*Tel*/
@media screen and (min-width: 768px) {
  a[href^="tel"]:link,
  a[href^="tel"]:visited,
  a[href^="tel"]:hover {
    pointer-events: none;
    cursor: default;
  }
}

@media only screen and (max-width: 900px) {
  .sp-900 {
    display: none;
  }
}

@media only screen and (min-width: 375px) {
  .pc-374 {
    display: none;
  }
}

@media only screen and (min-width: 550px) {
  .pc-550 {
    display: none;
  }
}

.ttl_custom01 {
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: 55px 0 16px;
  border-left: 6px solid #858585;
  padding: 1px 1px 0 10px;
}

@media screen and (max-width: 767px) {
  .ttl_custom01 {
    margin: 30px 0 10px;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ttl_custom01 {
    padding: 7px 1px 0 10px;
    line-height: 1.1;
  }
}

.page-outline .page-ttl {
  background-image: url(../img/outline/bg_ttl.jpg);
}

.page-privacy .page-ttl {
  background-image: url(../img/privacy/bg_ttl.jpg);
}

.tbl {
  width: 100%;
  max-width: 1010px;
  margin: 0 auto;
  border: 2px solid #DCDCDC;
  font-size: 17px;
  font-size: 1.7rem;
  line-height: calc(27 / 17);
  font-weight: 500;
  color: #323232;
}

@media screen and (max-width: 767px) {
  .tbl {
    font-size: 15px;
    font-size: 1.5rem;
    border-width: 1px;
  }
}

.tbl tr {
  border-bottom: 2px solid #DCDCDC;
  border-width: 1px;
}

.tbl tr:last-child {
  border-bottom: none;
}

.tbl td {
  padding: 26px 15px 26px 50px;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .tbl td {
    padding: 15px 15px 15px 25px;
  }
}

@media screen and (max-width: 500px) {
  .tbl td {
    padding: 6px;
  }
}

.tbl td:first-child {
  width: 178px;
  background: rgba(133, 133, 133, 0.2);
}

@media screen and (max-width: 500px) {
  .tbl td:first-child {
    width: 88px;
  }
}

.tbl td:last-child {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  padding-left: 36px;
  width: calc(100% - 178px);
}

@media screen and (max-width: 767px) {
  .tbl td:last-child {
    padding-left: 20px;
  }
}

@media screen and (max-width: 500px) {
  .tbl td:last-child {
    padding-left: 6px;
    width: calc(100% - 88px);
  }
}

.tbl td a {
  color: #323232;
}

.sec-outline {
  padding: 143px 0 92px;
}

@media screen and (max-width: 767px) {
  .sec-outline {
    padding: 60px 0 30px;
  }
}

.sec-outline .ttlCom03 {
  margin-bottom: 101px;
}

@media screen and (max-width: 767px) {
  .sec-outline .ttlCom03 {
    margin-bottom: 30px;
  }
}

.sec-privacy {
  padding: 143px 0 124px;
  color: #323232;
}

@media screen and (max-width: 767px) {
  .sec-privacy {
    padding: 60px 0 30px;
  }
}

.sec-privacy .ttlCom03 {
  margin-bottom: 86px;
}

@media screen and (max-width: 767px) {
  .sec-privacy .ttlCom03 {
    margin-bottom: 30px;
  }
}

.sec-privacy p {
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: calc(27 / 15);
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .sec-privacy p {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.sec-privacy p.txt_custom01 {
  text-align: center;
  font-weight: bold;
  letter-spacing: -1.1px;
  margin-bottom: 90px;
}

@media screen and (max-width: 767px) {
  .sec-privacy p.txt_custom01 {
    margin-bottom: 40px;
  }
}

.sec-privacy p span {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
}

.sec-privacy a {
  color: inherit;
}

.privacy {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.page-about_index .page-ttl {
  background-image: url(../img/about/mv.jpg);
}

.sec-content-about {
  padding: 0px 0 106px;
}

@media screen and (max-width: 767px) {
  .sec-content-about {
    padding-bottom: 22px;
  }
}

.sec-content-about .title-about {
  text-align: center;
  background: url("../img/about/bg-01.png") no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 110px;
  padding-bottom: 54px;
}

@media screen and (max-width: 767px) {
  .sec-content-about .title-about {
    padding: 50px 0px;
  }
}

.sec-content-about .title-about .ttl-about {
  font-weight: bold;
  color: #404040;
  margin-bottom: 49px;
  letter-spacing: -3px;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-size: 30px;
  font-size: 3rem;
}

@media screen and (max-width: 767px) {
  .sec-content-about .title-about .ttl-about {
    margin-bottom: 25px;
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.sec-content-about .title-about .ttl-about span {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .sec-content-about .title-about .ttl-about span {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: -1px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .sec-content-about .title-about img {
    max-width: 150px;
  }
}

.sec-content-about .about-sel {
  background: url("../img/about/img-01.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  padding-bottom: 0;
  padding: 94px 0px 40px;
}

@media screen and (max-width: 1000px) {
  .sec-content-about .about-sel {
    padding: 60px 0px 30px;
    position: relative;
    background-position: center right 30%;
  }
}

@media screen and (max-width: 1000px) {
  .sec-content-about .about-sel:before {
    content: '';
    background: rgba(255, 255, 255, 0.3);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
  }
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel {
    background: #fff;
    padding: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel > img {
    margin-bottom: 15px;
  }
}

.sec-content-about .about-sel .content-about {
  margin-left: 89px;
  padding-bottom: 0;
  max-width: 490px;
}

@media screen and (max-width: 1000px) {
  .sec-content-about .about-sel .content-about {
    margin-left: 40px;
    position: relative;
    z-index: 2;
  }
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel .content-about {
    margin-left: 0;
  }
}

.sec-content-about .about-sel .content-about p {
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel .content-about p {
    margin-bottom: 15px;
  }
}

.sec-content-about .about-sel .desc-about02 {
  color: #323232;
  font-weight: bold;
  margin-bottom: 36px;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  letter-spacing: -1px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel .desc-about02 {
    margin-bottom: 20px;
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.sec-content-about .about-sel .desc-about02 span {
  font-size: 28px;
  font-size: 2.8rem;
}

@media screen and (max-width: 767px) {
  .sec-content-about .about-sel .desc-about02 span {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.sec-approach {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  padding-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .sec-approach {
    padding-bottom: 50px;
  }
}

@media screen and (min-width: 768px) {
  .sec-approach .ttlCom04 {
    margin-bottom: 25px;
  }
}

.sec-program {
  background: #e8e3e6;
  padding: 100px 0 69px;
}

@media screen and (max-width: 767px) {
  .sec-program {
    padding: 50px 0 15px;
  }
}

@media screen and (min-width: 768px) {
  .sec-program .ttlCom05 {
    margin-bottom: 54px;
  }
}

.sec-program .list-program {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1375px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .sec-program .list-program {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sec-program .list-program .item-program {
  margin-right: 69px;
  width: calc(100%/3 - 46px);
}

.sec-program .list-program .item-program:nth-child(1) .ttl-img {
  max-width: 325px;
}

.sec-program .list-program .item-program:nth-child(2) .ttl-img {
  max-width: 344px;
}

.sec-program .list-program .item-program:nth-child(3) {
  margin-right: 0;
}

.sec-program .list-program .item-program:nth-child(3) .ttl-img {
  max-width: 300px;
}

@media screen and (max-width: 1000px) {
  .sec-program .list-program .item-program {
    margin-right: 30px;
    width: calc(100%/3 - 20px);
  }
}

@media screen and (max-width: 767px) {
  .sec-program .list-program .item-program {
    width: 100%;
    margin-right: 0;
    margin-bottom: 35px;
  }
}

.sec-program .list-program .item-program .ttl-img {
  display: block;
  width: 83%;
  margin-bottom: -34px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .sec-program .list-program .item-program .ttl-img {
    width: 100%;
  }
}

.sec-program .list-program .item-program .ttl-img img {
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .sec-program .list-program .item-program .ttl-img img {
    max-height: 70px;
    width: auto;
  }
}

.sec-program .list-program .item-program img {
  padding-left: 16px;
  width: 100%;
}

.sec-program .list-program .item-program .ttl-program {
  color: #404040;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: -12px;
  letter-spacing: -2px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 1000px) {
  .sec-program .list-program .item-program .ttl-program {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-program .list-program .item-program .ttl-program {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec-program .list-program .item-program .ttl-program span {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #e5df8d), color-stop(50%, transparent));
  background-image: -o-linear-gradient(left, #e5df8d 50%, transparent 50%);
  background-image: linear-gradient(to right, #e5df8d 50%, transparent 50%);
  background-size: 200% 10px;
  background-repeat: no-repeat;
  background-position: 0% .8em;
}

.sec-program .list-program .item-program .desc-program {
  color: #404040;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  margin-bottom: 19px;
  letter-spacing: -2px;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
}

@media screen and (max-width: 1000px) {
  .sec-program .list-program .item-program .desc-program {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .sec-program .list-program .item-program .desc-program {
    margin-bottom: 10px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.sec-program .list-program .item-program p {
  max-width: 342px;
  margin-left: -1px;
  line-height: calc(27/15);
}

.mw-775 {
  max-width: 775px;
  margin: 0 auto;
}

.sec_factor02 .box-content-top {
  background: #fff;
  padding-top: 125px;
}

@media screen and (max-width: 1000px) {
  .sec_factor02 .box-content-top {
    padding-top: 80px;
    padding-bottom: 0px;
    margin-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top {
    padding: 50px 0;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .sec_factor02 .box-content-top .ttlCom05 {
    margin-bottom: 40px;
  }
}

.sec_factor02 .box-content-top .txtBasic01 {
  line-height: calc(27/15);
}

.sec_factor02 .box-content-top .course-list-feature {
  max-width: 1360px;
  margin: 59px auto 0;
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top .course-list-feature {
    margin-top: 50px;
  }
}

.sec_factor02 .box-content-top .course-list-feature .course-item {
  margin-bottom: 30px;
}

@media screen and (max-width: 1000px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item {
    padding: 0;
  }
}

.sec_factor02 .box-content-top .course-list-feature .course-item:nth-child(4) {
  background: #7d7997;
}

.sec_factor02 .box-content-top .course-list-feature .course-item:nth-child(5) {
  background: #8b839c;
}

.sec_factor02 .box-content-top .course-list-feature .course-item:nth-child(6) {
  background: #9b8ba2;
}

.sec_factor02 .box-content-top .course-list-feature .course-item .content {
  padding: 63px 35px 34px;
}

@media screen and (max-width: 1000px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content {
    padding: 30px 10px;
  }
}

.sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course {
  margin-bottom: 35px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1201px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course {
    letter-spacing: -4px;
  }
}

@media screen and (max-width: 1200px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course {
    margin-bottom: 15px;
    padding-bottom: 15px;
    letter-spacing: -2px;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course span {
  display: inline;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top .course-list-feature .course-item .content .ttl-course span {
    font-size: 20px;
    font-size: 2rem;
  }
}

.sec_factor02 .box-content-top .course-list-feature .number-fea {
  color: #fff;
  font-family: "PT Serif", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", YuMincho, "Yu Mincho", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  font-style: italic;
  line-height: 1;
  margin-bottom: 15px;
  display: block;
  font-size: 48px;
  font-size: 4.8rem;
}

@media screen and (max-width: 1000px) {
  .sec_factor02 .box-content-top .course-list-feature .number-fea {
    font-size: 40px;
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .sec_factor02 .box-content-top .course-list-feature .number-fea {
    margin-bottom: 10px;
    font-size: 36px;
    font-size: 3.6rem;
  }
}

@media only screen and (max-width: 374px) {
  .sec_factor02 .box-content-top .course-list-feature .number-fea {
    font-size: 30px;
    font-size: 3rem;
  }
}

.sec_factor02 .box-content-top .course-list-feature .txtBase01 {
  text-align: center !important;
}

@media screen and (max-width: 1000px) {
  .sec_factor02 .box-content-top .course-list-feature .txtBase01 {
    margin-bottom: 0 !important;
  }
}

.page-instructor .page-ttl {
  background-image: url(../img/instructor/bg_ttl.jpg);
}

.page-instructor .col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 165px;
}

.page-instructor .txt {
  font-size: 17px;
  font-size: 1.7rem;
  line-height: 1.76;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .page-instructor .txt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.page-instructor .profile {
  margin: 60px 0 0;
}

@media screen and (max-width: 767px) {
  .page-instructor .profile {
    margin: 40px 0 0;
  }
}

.page-instructor .profile p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .page-instructor .profile p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-instructor .profile .name {
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 17px;
  font-size: 1.7rem;
  border-bottom: 1px solid #858585;
}

@media screen and (max-width: 767px) {
  .page-instructor .profile .name {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.page-instructor .profile .name span {
  margin-left: 1em;
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .page-instructor .profile .name span {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

.page-instructor .sec-instructor {
  padding: 100px 0 40px;
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor {
    padding: 60px 0 40px;
  }
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .inner {
    padding: 0;
  }
}

.page-instructor .sec-instructor .col-wrap {
  margin: 0 auto 160px;
  padding-top: 110px;
  max-width: 1300px;
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .col-wrap {
    margin: 0 auto;
    padding: 6vw 0;
    background: rgba(133, 133, 133, 0.2);
  }
}

@media screen and (min-width: 768px) {
  .page-instructor .sec-instructor .col-wrap.instructor01 .img-col:after {
    content: '';
    display: block;
    position: absolute;
    left: 8%;
    top: -60px;
    width: 85%;
    height: 85%;
    max-height: 44.54vw;
    background: #fff;
  }
}

@media screen and (min-width: 768px) {
  .page-instructor .sec-instructor .col-wrap.instructor02 .img-col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.page-instructor .sec-instructor .col-wrap.instructor02 .txt-col {
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .page-instructor .sec-instructor .col-wrap.instructor02 .txt-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .col-wrap.instructor02 .txt-col {
    padding: 6vw 20px;
  }
}

.page-instructor .sec-instructor .img-col {
  position: relative;
  width: 53%;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .page-instructor .sec-instructor .img-col:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -110px;
    width: 85%;
    height: 85%;
    max-height: 44.54vw;
    background: rgba(133, 133, 133, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .img-col {
    width: 100%;
    margin-bottom: 25px;
  }
}

.page-instructor .sec-instructor .img-col img {
  position: relative;
  width: 85%;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .img-col img {
    width: 95%;
  }
}

.page-instructor .sec-instructor .txt-col {
  width: 40%;
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .txt-col {
    padding: 6vw 20px;
    width: 95%;
    background: #fff;
  }
}

.page-instructor .sec-instructor .interview-ttl {
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.5;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 767px) {
  .page-instructor .sec-instructor .interview-ttl {
    font-size: 19px;
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
}

.page-product .page-ttl {
  background-image: url(../img/product/bg_ttl.jpg);
}

.page-product .sec-product {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product {
    padding: 60px 0 0;
  }
}

.page-product .sec-product .ttl-bar {
  padding: 38px 0;
  text-align: center;
  background: #7d7997;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .ttl-bar {
    padding: 25px 0;
  }
}

.page-product .sec-product .ttl-bar .logo svg {
  width: 48px;
}

.page-product .sec-product .ttl-bar .ttl {
  margin-left: 10px;
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .ttl-bar .ttl {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-product .sec-product .sec-item {
  margin: 90px 0;
  padding: 120px 0 110px;
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#e8e2e6), color-stop(50%, rgba(232, 226, 230, 0.5)), to(#e8e2e6));
  background: -o-linear-gradient(left, #e8e2e6 0%, rgba(232, 226, 230, 0.5) 50%, #e8e2e6 100%);
  background: linear-gradient(to right, #e8e2e6 0%, rgba(232, 226, 230, 0.5) 50%, #e8e2e6 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e8e2e6', endColorstr='#e8e2e6',GradientType=1 );
  /* IE6-9 */
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item {
    margin: 60px 0;
    padding: 60px 0;
  }
}

.page-product .sec-product .sec-item .product-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 124px;
  max-width: 1075px;
}

@media screen and (max-width: 1000px) {
  .page-product .sec-product .sec-item .product-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item {
    margin: 0 auto 60px;
  }
}

.page-product .sec-product .sec-item .product-item:last-child {
  margin-bottom: 0;
}

.page-product .sec-product .sec-item .product-item .img {
  width: 37.2%;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .img {
    margin-bottom: 40px;
    width: 100%;
    text-align: center;
  }
  .page-product .sec-product .sec-item .product-item .img img {
    max-width: 78%;
  }
}

.page-product .sec-product .sec-item .product-item .description {
  width: 55%;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .description {
    width: 100%;
  }
  .page-product .sec-product .sec-item .product-item .description .label img {
    width: 70%;
    max-width: 300px;
    height: auto;
  }
}

.page-product .sec-product .sec-item .product-item .ttl-product {
  margin: 20px 0 15px;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .ttl-product {
    font-size: 24px;
    font-size: 2.4rem;
  }
}

.page-product .sec-product .sec-item .product-item .cap span {
  padding-bottom: 2px;
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 3px solid #ccc629;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .cap span {
    line-height: 1.8;
    font-size: 17px;
    font-size: 1.7rem;
  }
}

.page-product .sec-product .sec-item .product-item .desc {
  margin: 35px 0 40px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.66;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .desc {
    margin: 25px 0 30px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-product .sec-product .sec-item .product-item .net span {
  display: inline-block;
  padding: 7px 20px;
  background: #fff;
  color: #7d7d7d;
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .page-product .sec-product .sec-item .product-item .net span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.ss-pickup {
  padding: 106px 0px 0px;
  font-family: YuMincho, "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "游明朝", "游明朝体", "ＭＳ 明朝", "MS Mincho", "HiraMinProN-W3", "TakaoEx明朝", TakaoExMincho, "MotoyaLCedar", "Droid Sans Japanese", serif;
  color: #000;
}

.ss-pickup .inner {
  max-width: 1230px;
  text-align: center;
}

.ss-pickup .inner .ttl-style02 {
  font-size: 12px;
  font-size: 1.2rem;
  color: #939393;
  margin-bottom: 46px;
  text-align: center;
}

.ss-pickup .inner .ttl-style02 span {
  font-family: "Lato", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴPro W3", "Hiragino Kaku Gothic Pro", Osaka, "Meiryo", "メイリオ", "MS Pゴシック", Arial, Helvetica, Verdana, sans-serif;
  font-size: 30px;
  font-size: 3rem;
  font-weight: bold;
  display: block;
  color: #000000;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.ss-pickup .inner .content {
  padding: 100px 0;
  font-size: 14px;
  font-size: 1.4rem;
}

.ss-pickup .inner .btn-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
  overflow: hidden;
}

.ss-pickup .inner .btn-wrap .btn-custom01 {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  border: 1px solid #000000;
  height: 66px;
  display: block;
  position: relative;
  line-height: 66px;
  margin-top: 48px;
  max-width: 370px;
  width: 100%;
  color: #000;
}

.ss-pickup .inner .btn-wrap .btn-custom01:before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg) translateY(-50%);
      -ms-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
}

/*# sourceMappingURL=maps/styles.css.map */

