@charset "UTF-8";
/*-----------------------------------------------------------------
  目次
  --------------------------------------------------------------
//tool:外部読み込み
Setting：変数及びmixin
//reset：基本外部cssを読み込む
Base：このサイト用の基本css
Layout:サイト共通で使われるもの。ヘッダ、フッタ等。
	1:header
	2:footer
page:ページ別
	1:top
module:汎用モジュールcss
utility：ユーティリティ
*/
.wrap {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .wrap {
    width: 980px;
  }
}
@media only screen and (max-width: 768px) {
  .wrap {
    width: 95%;
  }
}

/* ==========================================================================
   Base
   ======================================================================= */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1.4;
  font-size: 16px;
  font-family: "Noto Sans CJK JP Light", "游ゴシック体", "Yu Gothic", YuGothic,
    "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo,
    "メイリオ", sans-serif;
  color: #191e2d;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 4.26667vw;
  }
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}
@media only screen and (max-width: 768px) {
  img {
    width: 100%;
    height: auto;
  }
}

a {
  text-decoration: none;
  color: #191e2d;
}

a,
li {
  margin: 0;
  padding: 0;
}

a:hover {
  opacity: 0.7;
}

.txt_color_red {
  color: #cf1126;
}

/* ==========================================================================
   Layout
   ======================================================================= */
/*1:header
-------------------------------------------*/
.header {
  border-bottom: #cf1126 5px solid;
}
@media only screen and (max-width: 768px) {
  .header {
    position: relative;
  }
}
@media only screen and (min-width: 769px) {
  .header .site-title {
    width: 250px;
  }
  .header .site-title img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .header .site-title {
    width: 50vw;
  }
}

.header_wrap {
  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 only screen and (min-width: 769px) {
  .header_wrap {
    height: 75px;
  }
}
@media only screen and (max-width: 768px) {
  .header_wrap {
    height: 15vw;
  }
}

.sp_menu_box {
  width: 10vw;
  height: 10vw;
  background: #cf1126;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sp_menu span {
  display: block;
  width: 5vw;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  position: relative;
}
.sp_menu span:not(:last-child) {
  margin-bottom: 1vw;
}

.sp_menu.open .top {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -0.1vw;
  left: 0.5vw;
}

.sp_menu.open .bottom {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0.1vw;
  left: 0.5vw;
}

.sp_menu.open .middle {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  #headNav {
    width: 100%;
    position: absolute;
    top: 15vw;
    right: 0;
    display: none;
    z-index: 999;
  }
}

@media only screen and (max-width: 768px) {
  #primary-menu {
    background: #fff;
    border-top: solid 5px #cf1126;
  }
}

@media only screen and (min-width: 769px) {
  #primary-menu li {
    display: inline-block;
  }
  #primary-menu li:not(:last-child):after {
    content: "|";
    padding: 0 0.5em;
  }
}

@media only screen and (max-width: 768px) {
  #primary-menu li {
    border-bottom: solid 3px #cf1126;
  }
  #primary-menu li a {
    display: block;
    padding: 5vw 3vw;
  }
}

/*2:footer
-------------------------------------------*/
.footer {
  border-top: #cf1126 5px solid;
  padding: 1.25rem 0;
  font-size: 0.8em;
}
@media only screen and (min-width: 769px) {
  .footer {
    padding-bottom: 3.125rem;
  }
}
.footer ul {
  display: block;
  margin-bottom: 2.5rem;
  text-align: center;
}
.footer ul li {
  display: inline-block;
  text-align: left;
  padding: 0.5em;
}
.footer ul li a {
  color: #333333;
}
.footer_cont {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 769px) {
  .footer_cont {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .footer_cont {
    width: 85%;
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 769px) {
  .footer_cont .colR {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .footer_cont .colR {
    margin-bottom: 8vw;
  }
}
@media only screen and (min-width: 769px) {
  .footer_cont .colR .Tokyo {
    border-right: solid 1px #ccc;
    margin-right: 10px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .footer_cont .colR .Tokyo {
    margin-bottom: 3vw;
  }
}
.footer_cont .colL {
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .footer_cont .colL img {
    width: 250px;
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .footer_cont .colL img {
    width: 60vw;
  }
}

/*Headling Setting*/
.footer ul:after {
  content: "";
  display: table;
  clear: both;
}

.footer ul li.Facebook {
  float: right;
}

.footer ul li.Facebook a {
  background: none;
}

.footer ul li.Facebook a img {
  width: 28px;
}

.footer .Tel span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.footer .Tel .Area {
  border: 1px solid #cc0033;
  padding: 2px 5px;
  color: #cc0033;
  display: inline-block;
  background: #fff;
  font-weight: bold;
}

.footer .Tel a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #cc0033;
  text-decoration: none;
}

/*3:colmun
-------------------------------------------*/
/* ==========================================================================
   page
   ======================================================================= */
/*---------------------------------------------
 #top_main:トップページ
 -----------------------------------------------*/
/*top_main 
----------------------------*/
.home_main_wrap {
  background-image: url(/service/nseminar/wp-content/themes/human_tokyo_semi/images/home/fv_bg.jpg);
  background-repeat: no-repeat;
}
@media only screen and (min-width: 769px) {
  .home_main_wrap {
    height: 400px;
    background-size: cover;
    background-position: center center;
  }
}
@media only screen and (max-width: 768px) {
  .home_main_wrap {
    height: 80vw;
    background-size: auto 100%;
    background-position: 75% center;
    position: relative;
  }
  .home_main_wrap::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 769px) {
  .home_main_ttl {
    padding: 80px 0 0 60px;
  }
}

@media only screen and (max-width: 768px) {
  .home_main_ttl {
    width: 80vw;
    margin: 0 auto;
    padding: 10vw 0;
    position: relative;
    z-index: 2;
  }
}

.home_information {
  margin: 0 auto;
  padding: 1.5625rem 1.875rem 1.25rem 0.9375rem;
  background-color: rgba(25, 30, 45, 0.9);
  border-left: 0.9375rem solid #191e2d;
  -webkit-box-shadow: 0 0.5rem 15px rgba(65, 65, 65, 0.2);
  box-shadow: 0 0.5rem 15px rgba(65, 65, 65, 0.2);
  position: relative;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .home_information {
    width: 740px;
    top: -60px;
  }
}
@media only screen and (max-width: 768px) {
  .home_information {
    width: 95%;
    top: -20vw;
  }
}
.home_information h4 {
  margin-bottom: 1.5625rem;
}
@media only screen and (max-width: 768px) {
  .home_information h4 {
    width: 40vw;
  }
}
.home_information li {
  margin-bottom: 0.9375rem;
}
.home_information li a {
  display: block;
}
.home_information li a:link,
.home_information li a:hover,
.home_information li a:visited {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .home_information li .info_box {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home_information li .info_box_left {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .home_information li .info_box_left {
    margin-bottom: 0.3em;
    font-size: 0.8em;
  }
}
.home_information li .info_box_left::before {
  width: 8em;
  margin-right: 1em;
  line-height: 1.5;
  -ms-flex-item-align: start;
  align-self: flex-start;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.home_information li .info_box_left.state1::before {
  content: "受付中";
  background: #cf1126;
}
.home_information li .info_box_left.state0::before {
  content: "キャンセル待ち";
  background: #e78892;
}
.home_information li .info_box_left.state2::before {
  content: "満席";
  background: #e78892;
}
.home_information li .info_date {
  margin-right: 1em;
}
.home_information li .info_area {
  height: 1.8em;
  line-height: 1.8;
  margin-right: 1.25rem;
  padding: 0 0.5em;
  border-radius: 0.2em;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .home_information li .info_area {
    margin-right: 0;
    padding: 0.2em 0.5em;
  }
}
.sapporo {
  background-color: #6b55a9;
}
.tokyo {
  background-color: #e79800;
}
.osaka {
  background-color: #b51b19;
}
.nagoya {
  background-color: #2d4ba3;
}
.sendai {
  background-color: #69ad21;
}
.hakata {
  background-color: #d94307;
}
.web {
  background-color: #2097bd;
}
.web2 {
  background-color: #17b181;
}
.home_information li .info_ttl {
  -ms-flex-negative: 99999;
  flex-shrink: 99999;
}

.home_search {
  padding: 2.5rem 0;
  width: 100%;
  background-color: #c5bbad;
  background-image: url(/service/nseminar/wp-content/themes/human_tokyo_semi/images/home/home_search_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.home_search .wrap {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .home_search .wrap {
    width: 900px;
  }
}
@media only screen and (max-width: 768px) {
  .home_search .wrap {
    width: 90%;
  }
}
.home_search01link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media only screen and (min-width: 769px) {
  .home_search01link {
    width: 680px;
    margin: 0 auto;
  }
}
.home_search01link .tab_menu {
  padding: 0.625rem 0;
  background: rgba(25, 30, 45, 0.5);
  color: #fff;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .home_search01link .tab_menu {
    width: 330px;
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .home_search01link .tab_menu {
    width: 50%;
  }
}
.home_search01link .tab_menu::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-width: 0 2px 2px 0;
  border-color: #fff;
  border-style: solid;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 0.25rem);
  right: 0.625rem;
}
.home_search01link .tab_menu.open {
  background: #cf1126;
}
.home_search02box {
  background: #fff;
  border: solid 4px #cf1126;
}
@media only screen and (min-width: 769px) {
  .home_search02box {
    padding: 50px 90px;
  }
}
@media only screen and (max-width: 768px) {
  .home_search02box {
    padding: 3vw 0;
  }
}
@media only screen and (max-width: 768px) {
  .home_search02box .tab_cont {
    margin: 0 auto;
  }
  .home_search02box .tab_cont#cate {
    width: 90%;
  }
  .home_search02box .tab_cont#cale {
    width: 98%;
    font-size: 0.8em;
  }
}
.home_search #search {
  margin-bottom: 1.25rem;
}
.home_search_line {
  margin-bottom: 0.3125rem;
  padding: 0.625rem 0;
  border-bottom: #cf1126 1px solid;
}
@media only screen and (min-width: 769px) {
  .home_search_line {
    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;
  }
}
.home_search_line > dt {
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  .home_search_line > dt {
    width: 30%;
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .home_search_line > dd {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .home_search_line > dd {
    padding-left: 1em;
  }
}
.home_search_line > dd > ul > li {
  display: inline-block;
  margin-right: 1em;
  position: relative;
  cursor: pointer;
}
.home_search_line > dd > ul > li::before {
  display: inline-block;
  content: "";
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.2em;
  background: #eee;
  border: solid 1px #d2d2d2;
}
.home_search_line > dd > ul > li.checked::after {
  content: "";
  width: 0.5em;
  height: 0.3em;
  border-style: solid;
  border-color: #191e2d;
  border-width: 0 0 3px 3px;
  position: absolute;
  top: 0.3em;
  left: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.home_search .search_btn {
  margin: 0 auto;
  padding: 0.9375rem 0;
  background: #cf1126;
  position: relative;
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  border: solid 4px #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 769px) {
  .home_search .search_btn {
    width: 320px;
  }
}
@media only screen and (max-width: 768px) {
  .home_search .search_btn {
    width: 90%;
  }
}
.home_search .search_btn::after {
  content: "";
  display: inline-block;
  width: 0.3125em;
  height: 0.3125em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  border-color: #191e2d;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  top: calc(50% - 0.2em);
  right: 1em;
}

#cale {
  display: none;
}

.home_sspre {
  padding: 1.875rem 0;
  background: #fae7e9;
}
@media only screen and (min-width: 769px) {
  .home_sspre .wrap {
    width: 860px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
  }
}
.home_sspre .circle {
  width: 15.625rem;
  height: 15.625rem;
  background: #cf1126;
  color: #fff;
  border-radius: 15.625rem;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-weight: bold;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home_sspre .circle {
    margin: 1.25rem auto;
  }
}
.home_sspre .circle span {
  font-size: 1.75rem;
}
@media only screen and (min-width: 769px) {
  .home_sspre .contR {
    width: 550px;
  }
}
@media only screen and (max-width: 768px) {
  .home_sspre .contR {
    width: 95%;
    margin: 0 auto;
  }
}
.home_sspre .contR .noImage {
  background: #fdfdfd;
}

.sspre_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1.25rem;
}
.sspre_box_img {
  width: 6.25rem;
  margin-right: 0.9375rem;
}
.sspre_box_img img {
  height: auto;
}
.sspre_box_info {
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
.sspre_box .btm_s {
  margin-top: 0.625rem;
}
.sspre_box .noImage {
  width: 100%;
  height: 8.125rem;
  background: #eee;
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sspre_ttl {
  font-size: 1.25rem;
}

.home_merit {
  margin-top: 5.625rem;
  margin-bottom: 3.75rem;
}
@media only screen and (max-width: 768px) {
  .home_merit .wrap {
    width: 100%;
  }
}
.home_merit_ttl {
  font-size: 1.75rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .home_merit_ttl {
    font-size: 1.5rem;
  }
}
.home_merit .txt_color_red {
  display: inline-block;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .home_merit .txt_color_red {
    padding-top: 1.5em;
  }
}
@media only screen and (max-width: 768px) {
  .home_merit .txt_color_red {
    padding-top: 0.5em;
  }
}
.home_merit .txt_color_red:after {
  content: "・・・・";
  position: absolute;
  left: 0;
}
@media only screen and (min-width: 769px) {
  .home_merit .txt_color_red:after {
    top: 0.7em;
  }
}
@media only screen and (max-width: 768px) {
  .home_merit .txt_color_red:after {
    top: -0.2em;
  }
}
.home_merit_list {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .home_merit_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (max-width: 768px) {
  .home_merit_list {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .home_merit_list li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }
  .home_merit_list li:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .home_merit_list li:nth-child(2n) .home_merit_txt {
    right: auto;
    left: 0;
  }
  .home_merit_list li .home_merit_txt {
    position: absolute;
    bottom: 5vw;
    right: 0;
  }
}
@media only screen and (min-width: 769px) {
  .home_merit_img {
    width: 280px;
  }
}
@media only screen and (max-width: 768px) {
  .home_merit_img {
    width: 100%;
  }
}
.home_merit_img img {
  width: 100%;
  height: auto;
}
.home_merit_txt {
  width: 14.375rem;
  height: 4.6875rem;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  background: #cf1126;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.0625rem;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (min-width: 769px) {
  .home_merit_txt {
    margin: 0 auto;
    position: relative;
    top: -37px;
  }
}

/*---------------------------------------------
#result:検索結果ページ
-----------------------------------------------*/
#result .result {
  margin-bottom: 1.875rem;
}
#result .result dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #result .result dl {
    width: 500px;
  }
}
@media only screen and (max-width: 768px) {
  #result .result dl {
    width: 90%;
  }
}
#result .result dl dt {
  width: 10em;
  position: relative;
}
#result .result dl dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
#result .result dl dd {
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
#result .result dl dd span {
  display: inline-block;
}
#result .result_ttl {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: bold;
}

/*---------------------------------------------
#single-semi:セミナー詳細ページ
-----------------------------------------------*/
#single-semi h2 {
  margin: 1.5em auto 0.5em;
  padding: 0.5em;
  background-color: #eaeaea;
  font-size: 1.2em;
  font-weight: bold;
}

#single-semi .wrap {
  margin: 3.125rem auto;
}
@media only screen and (min-width: 769px) {
  #single-semi .wrap {
    width: 800px;
  }
}
@media only screen and (max-width: 768px) {
  #single-semi .wrap {
    width: 95%;
  }
}

#single-semi .entry-header {
  margin-bottom: 1.25rem;
}
#single-semi .entry-header .head {
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 769px) {
  #single-semi .entry-header .head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#single-semi .entry-header .head .state_box {
  margin-right: 0.625rem;
  padding: 0 0.625rem;
  background: #cf1126;
  font-size: 1.125rem;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #single-semi .entry-header .head .state_box {
    padding: 0.2em 1em;
    font-size: 0.9em;
    display: inline-block;
  }
}
#single-semi .entry-header .head .state_box.full {
  background: #e78892;
  font-size: 0.9em;
}
@media only screen and (min-width: 769px) {
  #single-semi .entry-header .head .state_box.full {
    width: 150px;
  }
}
#single-semi .entry-header .head .semi_ttl {
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
@media only screen and (max-width: 768px) {
  #single-semi .entry-header .head .semi_ttl {
    display: inline;
  }
}

#single-semi .entry-content .semi_flex_box {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 769px) {
  #single-semi .entry-content .semi_flex_box {
    font-size: 1rem;
  }
}
#single-semi .entry-content .semi_flex_box .img {
  margin-right: 0.625rem;
}
@media only screen and (min-width: 769px) {
  #single-semi .entry-content .semi_flex_box .img {
    width: 320px;
    height: 240px;
  }
}
@media only screen and (max-width: 768px) {
  #single-semi .entry-content .semi_flex_box .img {
    width: 32vw;
    height: 24vw;
  }
}
#single-semi .entry-content .semi_flex_box .img img {
  width: 100%;
}

#single-semi .entry-content .semi_info dl dt {
  width: 5em;
}

#single-semi .entry-content .semi_txt {
  margin-bottom: 3.125rem;
}
#single-semi .entry-content .semi_txt ul {
  margin: 1.25rem auto;
}
#single-semi .entry-content .semi_txt ul li {
  font-size: 1.02em;
  font-weight: bold;
}
#single-semi .entry-content .semi_txt strong {
  color: #cf1126;
}

#single-semi .semi_form_link {
  margin: 1.25rem auto;
}

#single-semi .semi_inst h3 {
  margin: 1.875rem auto 1.25rem;
  padding: 0.625rem;
  background: #ffeaec;
  font-size: 1.25rem;
}

#single-semi .reccomend h3 {
  margin: 1.875rem auto 1.25rem;
  padding: 0.3125rem;
  background: #cf1126;
  color: #fff;
  font-size: 1.125rem;
}

#single-semi .reccomend_wrap {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
}

#single-semi .reccomend .semibox {
  display: block;
  padding: 0.5em;
}
@media only screen and (min-width: 769px) {
  #single-semi .reccomend .semibox {
    width: 390px;
  }
}
@media only screen and (max-width: 768px) {
  #single-semi .reccomend .semibox {
    width: 100%;
  }
}

#single-semi .reccomend .semi_rec_head {
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 769px) {
  #single-semi .reccomend .semi_rec_head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#single-semi .reccomend .semi_rec_head .rec_state_box {
  margin-right: 0.625rem;
  padding: 0 0.625rem;
  background: #cf1126;
  min-width: 17%;
  font-size: 0.875rem;
  color: #fff;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  #single-semi .reccomend .semi_rec_head .rec_state_box {
    padding: 0.2em 1em;
    font-size: 0.9em;
    display: inline-block;
  }
}
#single-semi .reccomend .semi_rec_head .rec_state_box.full {
  background: #e78892;
  font-size: 0.9em;
}
@media only screen and (min-width: 769px) {
  #single-semi .reccomend .semi_rec_head .rec_state_box.full {
    width: 60px;
  }
}
#single-semi .reccomend .semi_rec_head .rec_semi_ttl {
  font-size: 1.125rem;
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
@media only screen and (max-width: 768px) {
  #single-semi .reccomend .semi_rec_head .rec_semi_ttl {
    display: inline;
  }
}

#single-semi .reccomend .semi_flex_box {
  margin-bottom: 0;
}
@media only screen and (min-width: 769px) {
  #single-semi .reccomend .semi_flex_box .img {
    width: 100px;
    height: 100px;
  }
}
@media only screen and (max-width: 768px) {
  #single-semi .reccomend .semi_flex_box .img {
    width: 25vw;
    height: 25vw;
  }
}
@media only screen and (min-width: 769px) {
  #single-semi .reccomend .semi_flex_box .colR {
    width: 250px;
  }
}
@media only screen and (max-width: 768px) {
  #single-semi .reccomend .semi_flex_box .colR {
    width: 68vw;
  }
}

/*---------------------------------------------
#page-past:過去セミナー一覧ページ
-----------------------------------------------*/
#page-past {
  margin-top: 3.125rem;
}
#page-past h2 {
  margin-bottom: 1.875rem;
  font-size: 1.5rem;
  font-weight: bold;
}
#page-past .past_link {
  width: 100%;
  text-align: right;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 769px) {
  #page-past .inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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-instructor:講師一覧
-----------------------------------------------*/
#page-instructor.wrap {
  margin: 3.125rem auto;
}
@media only screen and (min-width: 769px) {
  #page-instructor.wrap {
    width: 800px;
  }
}
@media only screen and (max-width: 768px) {
  #page-instructor.wrap {
    width: 95%;
  }
}

.instructor_wrap {
  margin-bottom: 3.125rem;
}

.instructor_flex_box {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.625rem;
}
.instructor_flex_box .colL {
  margin-right: 0.625rem;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .instructor_flex_box .colL {
    width: 200px;
    height: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .instructor_flex_box .colL {
    width: 25vw;
    height: 25vw;
  }
}
.instructor_flex_box .colL img {
  width: 100%;
  height: auto;
}
.instructor_flex_box .colR {
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
@media only screen and (min-width: 769px) {
  .instructor_flex_box .colR {
    width: 580px;
  }
}

.instructor_name {
  margin-top: 0.625rem;
  font-size: 1.25rem;
}

.instructor_career {
  margin-top: 0.9375rem;
}

/*---------------------------------------------
#archive-sspre:小冊子一覧
-----------------------------------------------*/
#archive-sspre {
  margin: 3.125rem auto;
}
#archive-sspre .sspre_main_ttl {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
#archive-sspre .sspre_box {
  border: solid 2px #cf1126;
  padding: 0.3125rem;
}
@media only screen and (min-width: 769px) {
  #archive-sspre .sspre_box {
    width: calc(100% / 2 - 5px);
  }
}
#archive-sspre .sspre_box_wrap {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #archive-sspre .sspre_box_wrap {
    width: 900px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 768px) {
  #archive-sspre .sspre_box_wrap {
    width: 95%;
  }
}
#archive-sspre .home_sspre {
  margin-bottom: 3.125rem;
}
#archive-sspre .home_sspre div div.contR .sspre_box {
  width: 100%;
  border: none;
}

/*---------------------------------------------
#page-sspre:小冊子ページ
-----------------------------------------------*/
#page-sspre {
  margin: 3.125rem auto;
}
#page-sspre .sspre_box_wrap {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  #page-sspre .sspre_box_wrap {
    width: 500px;
  }
}
#page-sspre .form_link {
  margin: 1.875rem auto;
}
#page-sspre .form_link .btm_m {
  margin: 1.25rem auto;
}
#page-sspre .home_merit {
  margin-top: 0;
}

/*---------------------------------------------
#page-category:カテゴリ一覧ページ
-----------------------------------------------*/
#page-category {
  margin: 3.125rem auto;
}
#page-category h2 {
  font-size: 1.25rem;
}
#page-category .wrap {
  margin-top: 1.875rem;
}
@media only screen and (min-width: 769px) {
  #page-category .wrap {
    width: 940px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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-form:フォーム
-----------------------------------------------*/
#page-form {
  margin: 3.125rem auto;
}
@media only screen and (min-width: 769px) {
  #page-form {
    width: 800px;
  }
}
#page-form h2 {
  margin-bottom: 1.25rem;
  text-align: center;
  font-size: 1.25rem;
}
#page-form .intro {
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}
#page-form input:not([type="radio"]) {
  width: 98%;
  margin: 0.3125rem;
  padding: 0.3125rem;
  border: solid 1px #ccc;
  border-radius: 3px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-flex-negative: 9999;
  flex-shrink: 9999;
}
#page-form input:not([type="radio"]).error {
  background: #ffd8dc;
}
@media only screen and (min-width: 769px) {
  #page-form .form_btn {
    width: 50%;
    margin: 0 auto;
  }
}
#page-form .form_other {
  margin-bottom: 2.66667vw;
  padding: 0.625rem;
  background: #f8f8f8;
}
#page-form .form_other p {
  margin-bottom: 0.625rem;
}
#page-form dl {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 769px) {
  #page-form dl {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
  }
}
#page-form dl dt {
  font-weight: bold;
}
@media only screen and (min-width: 769px) {
  #page-form dl dt {
    width: 200px;
  }
}
#page-form dl dt.error::after {
  content: "未入力です";
  display: block;
  color: #cf1126;
}
#page-form dl dt .required::after {
  content: "(※必須)";
  color: #cf1126;
}
@media only screen and (min-width: 769px) {
  #page-form dl dd {
    width: 580px;
    -ms-flex-negative: 9999;
    flex-shrink: 9999;
  }
}
@media only screen and (max-width: 768px) {
  #page-form dl dd {
    margin-bottom: 1.33333vw;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  #page-form dl dd.colTwo,
  #page-form dl dd .colTwo {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#page-form dl dd.colTwo label,
#page-form dl dd .colTwo label {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  #page-form dl dd.colTwo label,
  #page-form dl dd .colTwo label {
    width: 50%;
  }
}
#page-form dl dd.colTwo label input,
#page-form dl dd .colTwo label input {
  width: 98%;
}
#page-form dl dd.colThree input {
  width: 28%;
}
#page-form dl dd .mwform-tel-field,
#page-form dl dd .mwform-zip-field {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#page-form dl dd .mwform-tel-field input,
#page-form dl dd .mwform-zip-field input {
  width: 30%;
}
#page-form #error {
  margin-bottom: 2rem;
  color: #cf1126;
  font-size: 1.1rem;
}
#page-form input.wpcf7c-conf {
  border: none !important;
  background: none !important;
}

/* ==========================================================================
   module：汎用モジュール
   ======================================================================= */
.u_inner {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .u_inner {
    width: 940px;
  }
}
@media only screen and (max-width: 768px) {
  .u_inner {
    width: auto;
  }
}

.home_seminar {
  margin: 3.75rem auto 3.125rem auto;
}
.home_seminar h3 {
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .home_seminar h3 {
    width: 231px;
  }
}
@media only screen and (max-width: 768px) {
  .home_seminar h3 {
    width: 45vw;
  }
}
.home_seminar .wrap {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 769px) {
  .home_seminar .wrap:not(.page_wrap),
  .home_seminar .wrap .pages {
    width: 940px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
  }
}
@media only screen and (max-width: 768px) {
  .home_seminar .wrap {
    width: 95%;
  }
}
.home_seminar .wrap .pages.hide {
  display: none;
}
.home_seminar ul#pageNav {
  text-align: center;
  margin: 1.875rem auto;
  font-size: 1.25rem;
}
.home_seminar ul#pageNav li {
  display: inline-block;
  margin-right: 0.625rem;
  cursor: pointer;
}
.home_seminar ul#pageNav li.crnt {
  font-weight: bold;
  color: #cf1126;
}

.semibox {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 769px) {
  .semibox {
    width: 460px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media only screen and (max-width: 768px) {
  .semibox {
    display: block;
  }
}
.semibox .head {
  padding: 0.25rem;
  font-size: 1.125em;
  color: #fff;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .semibox .head {
    height: 2.2rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .semibox .head {
    text-align: center;
  }
}
.semibox .head .state_box {
  display: block;
  border: 1px solid #fff;
  padding: 0 0.25rem;
}
@media only screen and (min-width: 769px) {
  .semibox .head .state_box {
    margin-right: 1.25rem;
  }
  .semibox .head .state_box.full {
    font-size: 0.875rem;
    padding: 0.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .semibox .head .state_box {
    display: block;
  }
}
.semibox .head:after {
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  right: 0.5rem;
}
@media only screen and (min-width: 769px) {
  .semibox .head:after {
    display: block;
    position: absolute;
    width: 16px;
    height: 15px;
    top: calc(50% - 7px);
    background-image: url(../images/common/semi_arrow_pc.png);
  }
}
@media only screen and (max-width: 768px) {
  .semibox .head:after {
    display: inline-block;
    width: 4.13333vw;
    height: 4vw;
    margin-left: 0.5rem;
    /* background-image: url(../images/common/semi_arrow_sp.png); */
    content: ">>";
    font-weight: 700;
  }
}
.semibox.sate01 {
  border: 2px solid #cf1126;
}
.semibox.sate01 .head {
  background: #cf1126;
}
.semibox.sate02 {
  border: 2px solid #e78892;
}
.semibox.sate02 .head {
  background: #e78892;
}
.semibox .content {
  padding: 0.9375rem;
}
@media only screen and (min-width: 769px) {
  .semibox .content {
    height: calc(100% - 2.2rem);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.semibox_semi_ttl {
  padding-bottom: 0.9375rem;
}

.semi_ttl {
  font-size: 1.3rem;
  font-weight: bold;
}

.rec_semi_ttl span,
.semi_ttl span {
  font-size: 1rem;
  padding: 0 0.5em;
  margin-right: 0.2em;
  color: #fff;
  border-radius: 0.2em;
}

@media only screen and (max-width: 768px) {
  .rec_semi_ttl span,
  .semi_ttl span {
    padding: 0.2em 0.5em;
  }
}

.semi_flex_box {
  margin-top: 1em;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 0.875rem;
}
.semi_flex_box .img {
  margin-right: 0.625rem;
}
@media only screen and (min-width: 769px) {
  .semi_flex_box .img {
    width: 128px;
    height: 128px;
  }
}
@media only screen and (max-width: 768px) {
  .semi_flex_box .img {
    width: 26.66667vw;
    height: 26.66667vw;
  }
}
.semi_flex_box .img img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 769px) {
  .semi_flex_box .colR {
    width: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .semi_flex_box .colR {
    width: 60vw;
  }
}

.semi_cat {
  padding: 0.2em 0.5em 0.1em 0.5em;
  color: #0084c2;
  border-color: #0084c2;
  border-style: solid;
  border-width: 2px 2px 2px 6px;
  font-weight: bold;
}

.semi_info {
  padding: 0.4375rem 0.3125rem;
}
.semi_info dl {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.semi_info dl dt {
  width: 4em;
  position: relative;
}
.semi_info dl dt::after {
  content: "：";
  position: absolute;
  right: 0;
}
.semi_info dl dd {
  -ms-flex-negative: 100;
  flex-shrink: 100;
}

.semi_noimage {
  width: 100%;
  height: 100%;
  background: #eee;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* ==========================================================================
   utility：汎用クラス
   ======================================================================= */
input:not([type="radio"]),
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.utl {
  text-align: left;
}

.utc {
  text-align: center;
}

.utr {
  text-align: right;
}

.ustrong {
  font-weight: bold;
}

/*独自*/
.uspbr {
  display: none;
}
@media screen and (max-width: 768px) {
  .uspbr {
    display: block;
  }
}

.upc {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .upc {
    display: block !important;
  }
}

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

.btm_s,
.btm_m {
  display: inline-block;
  border: 2px solid #191e2d;
  color: #191e2d;
  background: #fff;
  position: relative;
}
@media only screen and (min-width: 769px) {
  .btm_s,
  .btm_m {
    cursor: pointer;
  }
}
.btm_s:after,
.btm_m:after {
  content: "";
  display: inline-block;
  width: 0.3125em;
  height: 0.3125em;
  border-style: solid;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  border-color: #191e2d;
}

.btm_s {
  padding: 0.1875rem 1.25rem 0.375rem 0.625rem;
  font-size: 1rem;
}
@media only screen and (max-width: 768px) {
  .btm_s {
    font-size: 0.9em;
  }
}
.btm_s:after {
  top: calc(50% - 0.125rem);
  right: 0.625rem;
}

.btm_m {
  padding: 1rem 1.875rem 0.875rem 1.25rem;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
}
.btm_m_end {
  display: inline-block;
  font-size: 1.25rem;
  color: #fff;
  background: #e78892;
  border: solid 2px #fff;
  padding: 1rem 1.875rem;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
  .btm_m,
  .btm_m_end {
    font-size: 0.9em;
  }
}
.btm_m:after {
  top: calc(50% - 0.09375rem);
  right: 1.25rem;
}
.btm_m.red {
  background: #cf1126;
  color: #fff;
  border: solid 2px #fff;
}
.btm_m.red.full {
  background: #e78892;
}
.btm_m.red::after {
  border-color: #fff;
}

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