@charset "utf-8";

/**********リセット**********/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul li,
ol li {
  list-style: none;
}

/**********フォーム関連**********/
input[type="text"],input[type="tel"],input[type="email"],textarea{
padding:10px; border-radius:2px; border:1px #ddd solid; font-size:1.6rem; width:100%;
font-family:'Noto Sans Japanese', sans-serif;
}
input[type="submit"],input[type="button"]{outline:none; cursor:pointer;}
_::-webkit-full-page-media, _:future, :root select{
-webkit-appearance:none; -moz-appearance:none; appearance:none;
}

/*iOSでのデフォルトスタイルをリセット*/
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  box-sizing: border-box;
  appearance: button;
  border: none;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

a[href^="tel"] {
  color: inherit !important;
  text-decoration: none;
}

/**********検索窓**********/
.search-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  border: 2px var(--main-color) solid;
  border-radius: 5px;
  max-width: 240px;
  height: auto;
}
.search-form input {
  width: 200px;
  height: 40px;
  border: none;
  padding: 5px 15px;
}
.search-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 40px;
  border: none;
  background-color: var(--main-color);
  cursor: pointer;
}
.search-form button::after {
  content: '';
  background-image: url("common/images/search_ico.svg");
  background-repeat: no-repeat;
  width: 19px;
  height: 19px;
}

/**********共通**********/
:root {
  --main-color: #2950ad;
  --space-40: 4.0rem;
  --space-60: 6.0rem;
  --space-80: 8.0rem;
  --space-100: 10.0rem;
  --space-120: 12.0rem;
  --space-140: 14.0rem;
  --seminar_cat1_color: #3e61c9;
  --seminar_cat2_color: #c28528;
  --seminar_cat3_color: #28a1c2;
  --seminar_cat4_color: #444;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'M PLUS 1', sans-serif;
  font-smoothing: antialiased;
  font-size: 1.6rem;
  color: #000;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

a,
a:hover {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}
a:hover {
  opacity: 0.8;
  transition: 0.2s;
}

.inner {
  max-width: calc(1440px + 40px);
  padding: 0 20px;
  margin: auto;
}

.tl { text-align: left; }
.tc { text-align: center; }
.tr { text-align: right; }
.fl { float: left; }
.fr { float: right; }
.red { color: #d24040; }

hr {
  border: none;
  border-top: 1px solid #cdcdcd;
  margin: var(--space-40) 0;
}

.mb40{margin-bottom:var(--space-40);}
.mb80{margin-bottom:var(--space-80);}

/**********ヘッダ**********/
header {
  position: relative;
}

.header_column {
  display: flex;
  column-gap: 20px;
  row-gap: 5px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
}
.header_column .logo {
  flex: 1;
  height: 48px; /*=.sp_menu_button*/
  display: flex;
  align-items: center;
}
.header_column .logo h1{
  font-size: inherit;
}
.header_column .logo span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
.header_column .tel {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header_column .tel .number {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--main-color);
}

.header_column .tel .number::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('common/images/header_tel.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  vertical-align: middle;
}
.header_column .tel .time {
  font-size: 1.2rem;
  font-weight: 500;
}
.header_column .button {
  display: flex;
  gap: 10px;
  align-items: center;
}

.h_menu {
  display: flex;
  justify-content: center;
  background: var(--main-color);
  padding: 10px;
}
.h_menu li {
  border-left: 1px #fff solid;
}
.h_menu li:last-child {
  border-right: 1px #fff solid;
}
.h_menu li a {
  display: block;
  width: 200px;
  color: #fff;
  text-align: center;
  padding: 14px;
}

/**********メイン**********/
main {}
section {}
article {}

h1.page_title {
  position: relative;
  background: url("common/images/title_back_common.jpg") no-repeat center;
  background-size: cover;
  height: 290px;
  overflow: hidden;
  max-width: 1440px;
  padding: 20px;
  margin: auto;
}
h1.page_title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(41, 80, 173, .3);
}
h1.page_title span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4.0rem;
  font-weight: 500;
  color: #fff;
  -webkit-text-stroke: 2px var(--main-color);
  text-stroke: 2px var(--main-color);
  paint-order: stroke;
  width: 100%;
  text-align: center;
}

.breadcrumbs {
  font-size: 1.2rem;
  color: #727272;
  border-bottom: 1px #cdcdcd solid;
  padding: 14px 0;
  margin-bottom: 20px;
}
.breadcrumbs ul {
  display:flex;
  column-gap:10px;
  flex-wrap:wrap;
}
.breadcrumbs ul li:not(:last-child)::after {
  content:">";
  margin-left:10px;
}
.breadcrumbs ul li a {
  color: #727272;
}
.pagenavi{
  clear: both;
  text-align: center;
  margin: var(--space-40);
}


/*トップページ*/
#slider {
  position: relative;
  padding: var(--space-40) 0;
}
.slider {
  width: calc(780px + 14px);
  max-width: 80%;
  height: auto;
}
.slider .block {
  padding: 0 14px 14px 0;
}
.slider .block img {
  width: 100%;
  max-width: 780px;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 2.0rem;
  box-shadow: 14px 14px 0 #c4c4c4;
  margin-bottom: 14px;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.ccopy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: .1em;
  position: absolute;
  left: 50%;
  bottom: 30%;
  white-space: nowrap;
}
.ccopy span {
  display: inline-block;
  background: #fff;
  padding: 0 14px;
}

#seminar {
  background: url("common/images/seminar_back.jpg") no-repeat top center;
  padding: var(--space-100) 0;
}
.seminar_content {
  max-width: 1200px;
  margin: auto;
}
.seminar_content h2 {
  font-size: 4.8rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: .1em;
  margin-bottom: var(--space-80);
  display: flex;
  column-gap: 24px;
  align-items: center;
}
.seminar_content h2::before {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  background-image: url('common/images/seminar_title_ico.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.seminar_content h2 span {
  display: inline-block;
  font-size: 2.0rem;
}

.seminar_list_content {
  background: #fff;
  border-radius: 20px;
  padding: var(--space-40);
  margin-bottom: var(--space-40);
  position: relative;
}
.seminar_list_content h3 {
  font-size: 2.8rem;
  margin-bottom: var(--space-60);
  position: relative;
}
.seminar_list_content h3.seminar_cat1 {
  color: var(--seminar_cat1_color);
}
.seminar_list_content h3.seminar_cat2 {
  color: var(--seminar_cat2_color);
}
.seminar_list_content h3.seminar_cat3 {
  color: var(--seminar_cat3_color);
}
.seminar_list_content h3.seminar_cat4 {
  color: var(--seminar_cat4_color);
}
.seminar_list_content h3::before,
.seminar_list_content h3::after {
  content: "";
  height: 2px;
  position: absolute;
  bottom: -2.0rem;
  left: 0;
}
.seminar_list_content h3::before {
  width: 100%;
  background: #cdcdcd;
}
.seminar_list_content h3.seminar_cat1::after {
  width: 160px;
  background: var(--seminar_cat1_color);
}
.seminar_list_content h3.seminar_cat2::after {
  width: 160px;
  background: var(--seminar_cat2_color);
}
.seminar_list_content h3.seminar_cat3::after {
  width: 160px;
  background: var(--seminar_cat3_color);
}
.seminar_list_content h3.seminar_cat4::after {
  width: 160px;
  background: var(--seminar_cat4_color);
}
.seminar_list_content .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 46px;
  background: var(--main-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  top: var(--space-40);
  right: var(--space-40);
}
.seminar_list_content .more::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 46px;
  background-image: url('common/images/more_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.seminar_list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.seminar_list .block {
  width: calc((100% - 120px)/4);
}
.seminar_list .block .pic {
  margin-bottom: 16px;
}
.seminar_list .block .pic img {
  width: 250px;
  height: 165px;
  object-fit: cover;
  object-position: top;
}
.seminar_list .block .date {
  font-size: 1.3rem;
  font-weight: 500;
  color: #727272;
  margin-bottom: 5px;
}
.seminar_list .block .title {
  font-size: 1.4rem;
  font-weight: 500;
}

#news {
  padding: var(--space-80) 0;
}
.news_content {
  max-width: 1200px;
  margin: auto;
}
.news_content h2 {
  font-size: 4.8rem;
  font-weight: 500;
  color: var(--main-color);
  letter-spacing: .1em;
  margin-bottom: var(--space-40);
  display: flex;
  column-gap: 24px;
  align-items: center;
}
.news_content h2::before {
  content: "";
  display: inline-block;
  width: 72px;
  height: 72px;
  background-image: url('common/images/news_title_ico.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.news_content h2 span {
  display: inline-block;
  font-size: 2.0rem;
  color: #333;
}
.news_content .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: 80%;
  height: 72px;
  background: var(--main-color);
  color: #fff;
  font-size: 2.0rem;
  margin: auto;
  position: relative;
}
.news_content .more::after {
  content: "";
  display: inline-block;
  width: 58px;
  height: 72px;
  background-image: url('common/images/more_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.news_list {
  margin-bottom: var(--space-40);
}
.news_list li {
  background: #fff;
  position: relative;
}
.news_list li::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 13px;
  background-image: url('common/images/news_more_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--space-40);
}
.news_list li:nth-child(odd) {
  background: #f3f3f3;
}
.news_list li a {
  display: block;
  padding: 24px 42px 24px 36px;
}
.news_list li a .date {
  color: var(--main-color);
  font-weight: 700;
  display: inline-block;
  width: 140px;
  margin-right: 24px;
}

#instagram {
  background: url('common/images/instagram_back.svg') no-repeat center top 100px;
  padding: var(--space-140) 0 var(--space-80) 0;
}
.instagram_content {
  max-width: 1200px;
  margin: auto;
}
.instagram_content .title {
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--main-color);
  text-align: center;
  margin: var(--space-60) auto;
  position: relative;
  z-index: 1;
}
.instagram_content .title::before {
  content: "";
  display: inline-block;
  width: 230px;
  height: 160px;
  background-image: url('common/images/instagram_title_illust.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
}
.instagram_content .title::after {
  content: "";
  display: inline-block;
  width: 510px;
  max-width: 100%;
  height: 14px;
  background-image: url('common/images/instagram_title_border.png');
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.instagram_content .title span {
  font-size: 3.8rem;
}
.instagram_content .more {
  font-weight: bold;
  color: #fff;
  background: #444;
  border-radius: 5px;
  padding: 22px;
  margin: var(--space-40) auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  max-width: 325px;
  height: auto;
  position: relative;
}
.instagram_content .more::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background-image: url('common/images/instagram_button_ico.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.instagram_content .more::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  background-image: url('common/images/instagram_button_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

/*下層ページ*/
h2.common_title,
h3.common_title {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--main-color);
  background: #f3f3f3;
  border-left: 8px var(--main-color) solid;
  padding: 15px 30px;
  margin-bottom: 30px;
}
h2.common_title:not(:first-of-type),
h3.common_title:not(:first-of-type) {
  margin-top: var(--space-80);
}
h2.seminar_title {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: var(--space-40);
}

#about .post {
  max-width: 1100px;
}
.post {
  max-width: 1000px;
  padding: var(--space-80) 0;
  margin: auto;
}
.post p {
  line-height: 1.8;
  margin-bottom: var(--space-40);
}
.post p a {
  color: var(--main-color);
  text-decoration: underline;
}
.post :last-child {
  margin-bottom: 0;
}
.post .list {
  padding-left: 20px;
  margin-bottom: var(--space-40);
}
.post .list li {
  list-style: disc;
  margin-bottom: .8em;
}

.button_back {
  display: block;
  font-weight: 500;
  color: var(--main-color);
  background: #fff;
  border: 1px var(--main-color) solid;
  text-align: center;
  width: 240px;
  padding: 20px;
  margin: var(--space-100) auto;
}
.button_back:hover {
  color: var(--main-color);
}

.coming_soon {
  text-align: center;
  background: #f3f3f3;
  padding: 20px;
}

.seminar_date,
.single_date {
  font-size: 1.4rem;
  color: #727272;
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 20px;
}
.seminar_cat {
  font-size: 1.2rem;
  border: 1px var(--main-color) solid;
  padding: 4px;
  display: inline-block;
  margin-bottom: 20px;
}
.seminar_cat1 .seminar_cat {
  color: var(--seminar_cat1_color);
  border-color: var(--seminar_cat1_color);
}
.seminar_cat2 .seminar_cat {
  color: var(--seminar_cat2_color);
  border-color: var(--seminar_cat2_color);
}
.seminar_cat3 .seminar_cat {
  color: var(--seminar_cat3_color);
  border-color: var(--seminar_cat3_color);
}
.seminar_cat4 .seminar_cat {
  color: var(--seminar_cat4_color);
  border-color: var(--seminar_cat4_color);
}

.seminar_schedule {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: var(--space-40);
}
.seminar_schedule tr {
  border-bottom: 1px #cdcdcd solid;
}
.seminar_schedule th,
.seminar_schedule td {
  padding: 30px;
}
.seminar_schedule th.time {
  font-weight: 700;
  color: #fff;
  width: 240px;
}
.seminar_cat1 .seminar_schedule th.time { background: var(--seminar_cat1_color); }
.seminar_cat2 .seminar_schedule th.time { background: var(--seminar_cat2_color); }
.seminar_cat3 .seminar_schedule th.time { background: var(--seminar_cat3_color); }
.seminar_cat4 .seminar_schedule th.time { background: var(--seminar_cat4_color); }

.seminar_schedule th.detail {
  color: #fff;
  background: #575757;
}
.seminar_schedule td.time {
  text-align: center;
}
.seminar_cat1 .seminar_schedule td.time {
  color: var(--seminar_cat1_color);
  background: color-mix(in srgb, var(--seminar_cat1_color) 10%, transparent);
}
.seminar_cat2 .seminar_schedule td.time {
  color: var(--seminar_cat2_color);
  background: color-mix(in srgb, var(--seminar_cat2_color) 10%, transparent);
}
.seminar_cat3 .seminar_schedule td.time {
  color: var(--seminar_cat3_color);
  background: color-mix(in srgb, var(--seminar_cat3_color) 10%, transparent);
}
.seminar_cat4 .seminar_schedule td.time {
  color: var(--seminar_cat4_color);
  background: color-mix(in srgb, var(--seminar_cat4_color) 10%, transparent);
}

.button_column {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: var(--space-40);
}
.button_column .status {
  font-size: 2.0rem;
  font-weight: 500;
}
.button_column .status.status1 {color:#6ca0ce;}
.button_column .status.status2 {color:#ff9900;}
.button_column .status.status3 {color:#cdcdcd;}

.seminar_button {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  fotn-weight: 500;
  color: #fff;
  background: #6ca0ce;
  border-radius: 10px;
  box-shadow: 5px 5px 0 #1e4f7a;
  width: 300px;
  padding: 20px;
}
.seminar_button:hover {
  color: #fff;
}
.seminar_button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 25px;
  background-image: url('common/images/seminar_button_ico.svg');
  background-size: contain;
  background-repeat: no-repeat;
}

.seminar_mainpic {
  width: 400px;
  max-width: 80%;
  height: auto;
  margin: auto;
  margin-bottom: var(--space-40);
}

.contact_name {
  font-size: 1.8rem;
  font-weight: 500;
}
.contact_gmail {
  font-size: 1.4rem;
  border: 1px #cdcdcd solid;
  padding: 20px;
}
.contact_content {
  max-width: 640px;
  margin: auto;
}
.contact_content .item {
  margin-bottom: var(--space-40);
}
.contact_content .item .txt {
  font-weight: 500;
}
.contact_content .item .require {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  background: #e18700;
  border-radius: 5px;
  padding: 2px 10px;
  margin-left: 20px;
}

.button_submit {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: #e18700;
  border-radius: 5px;
  width: 100%;
  height: auto;
  padding: 20px;
}

.wpcf7-form-control-wrap {
  display: block;
  margin: 10px 0;
}

.profile_table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: var(--space-40);
}
.profile_table tr{
  border-bottom: 1px #cdcdcd solid;
}
.profile_table th,
.profile_table td {
  border-bottom: 1px #cdcdcd solid;
  padding: 24px 0;
}
.profile_table th {
  font-weight: 700;
  color: var(--main-color);
  text-align: left;
  width: 200px;
}

.qa_list dt {
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: 56px;
  margin-bottom: 24px;
  position: relative;
}
.qa_list dt::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url('common/images/qa_q.svg');
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  left: 0;
}
.qa_list dd {
  border-bottom: 1px #cdcdcd solid;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.link_list li {
  margin-bottom: 32px;
}
.link_list li a {
  font-size: 2.0rem;
  font-weight: 500;
  color: #333;
  display: block;
  background: #dceafb;
  padding: 16px var(--space-40);
}

.google_map {
  margin-bottom: var(--space-80);
}

.access_column {
  display: flex;
  gap: 16px;
  border-bottom: 2px #6d98c3 dotted;
  padding-bottom: 22px;
  margin-bottom: 22px;
}
.access_column .ico img {
  width: 54px;
  height: 54px;  
}
.access_column .txt {
  flex: 1;
}
.access_column .txt span {
  display: block;
  font-size: 2.0rem;
  font-weight: 500;
  margin-bottom: 10px;
}

h2.poicy_title,
h3.poicy_title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 10px;
}
h3.poicy_title + p {
  margin-bottom: 20px;
}

#about {
  background: url('common/images/about_back.svg') no-repeat center bottom;
  position: relative;
}
#about::after {
  content: "";
  display: inline-block;
  width: 220px;
  height: 165px;
  background-image: url('common/images/about_footer_illust.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(50% + 120px);
  bottom: 0;
}

#about .post {
  position: relative;
}
#about .post::before {
  content: "";
  display: inline-block;
  width: 300px;
  height: 260px;
  background-image: url('common/images/about_read_dot.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -240px;
  top: 30px;
  z-index: -1;
}

.about_title {
  position: absolute;
  left: -9999px;
}

.about_read {
  position: relative;
}
.about_read .about_read_ccopy {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
}
.about_read .about_read_column {
  display: flex;
  column-gap: var(--space-80);
  row-gap: var(--space-40);
  max-width: 880px;
  margin: auto;
  margin-bottom: var(--space-80);
}
.about_read .about_read_column .pic {
  text-align: center;
}
.about_read .about_read_column .txt {
  flex: 1;
}

.about_torikumi_content {
  max-width: 765px;
  margin: auto;
  margin-bottom: var(--space-80);
}
.about_torikumi_content .title {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  color: var(--main-color);
  background: #fff;
  max-width: 460px;
  height: auto;
  border: 2px var(--main-color) solid;
  box-shadow: 8px 8px 0 var(--main-color);
  padding: 16px;
  margin: auto;
  margin-bottom: var(--space-40);
}

.about_torikumi_column {
  display: flex;
  gap: var(--space-60);
  background: #fff;
  box-shadow: 0 0 20px rgba(51,51,51,.06);
  border-radius: 20px;
  padding: var(--space-40);
  margin-bottom: var(--space-60);
}
.about_torikumi_column .pic {
  text-align: center;
}
.about_torikumi_column .pic img {
  width: 490px;
  height: 326px;
  object-fit: cover;
  border-radius: 20px;
}
.about_torikumi_column .txt {
  flex: 1;
}
.about_torikumi_column .txt p:not(:last-of-type) {
  margin-bottom: 16px;
}
.about_torikumi_column .txt .seminar_title {
  font-size: 2.8rem;
  font-weight: 500;
  border-bottom: 1px var(--main-color) solid;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.about_torikumi_column .txt .seminar_title.seminar_cat1 { color: var(--seminar_cat1_color); }
.about_torikumi_column .txt .seminar_title.seminar_cat2 { color: var(--seminar_cat2_color); }
.about_torikumi_column .txt .seminar_title.seminar_cat3 { color: var(--seminar_cat3_color); }
.about_torikumi_column .txt .seminar_title.seminar_cat4 { color: var(--seminar_cat4_color); }

.about_torikumi_column .more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 46px;
  background: var(--main-color);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  margin-left: auto;
}
.about_torikumi_column .more::after {
  content: "";
  display: inline-block;
  width: 38px;
  height: 46px;
  background-image: url('common/images/more_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
}

.flow_content .block {
  border: 6px #dcdcdc solid;
  border-radius: 16px;
  padding: 30px;
  margin: auto;
  width: 900px;
  max-width: 100%;
  position: relative;
}
.flow_content .block::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -60px;
  left: 30px;
}
.flow_content .block.flow1::before { background-image: url('common/images/flow_step1.svg'); }
.flow_content .block.flow2::before { background-image: url('common/images/flow_step2.svg'); }

.flow_content .block.flow5::after {
  content: "";
  display: block;
  width: 104px;
  height: 104px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('common/images/flow_illust.png');
  position: absolute;
  bottom: -20px;
  left: 20px;
}

.flow_content .block .title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
}
.flow_content .block .title:not(:last-child) {
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.flow_content .block.flow2 .title,
.flow_content .block.flow3 .title,
.flow_content .block.flow5 .title {
  border-bottom: 1px #cdcdcd solid;
}

.flow_content .block.flow3 .title,
.flow_content .block.flow4 .title,
.flow_content .block.flow5 .title {
  color: #ED5252;
}

.flow_content .block .exp {
  font-weight: 500;
}
.flow_content .block .exp:not(:last-child) {
  margin-bottom: 16px;
}

.flow_content .block p {
  max-width: 620px;
  margin: auto;
}

.flow_content .seminar_column {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.flow_content .seminar_column span {
  display: block;
  border-radius: 30px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  width: 226px;
  height: auto;
  padding: 16px;
}
.flow_content .seminar_column .seminar_cat1 { background: var(--seminar_cat1_color); }
.flow_content .seminar_column .seminar_cat2 { background: var(--seminar_cat2_color); }
.flow_content .seminar_column .seminar_cat3 { background: var(--seminar_cat3_color); }
.flow_content .seminar_column .seminar_cat4 { background: var(--seminar_cat4_color); }

.flow_content .arrow {
  content: "";
  display: block;
  width: 52px;
  height: 36px;
  background-image: url('common/images/arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin: 3.0rem auto;
}
.flow_content .flow_column {
  display: flex;
  gap: 30px;
}

.news_title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: var(--space-40);
}

.search_list li {
  border-bottom: 1px #cdcdcd solid;
  padding: 20px;
}

/**********フッタ**********/
footer {
  background-color: var(--main-color);
  background-image: url("common/images/footer_illust.svg");
  background-repeat: no-repeat;
  background-position: left 48% bottom 0;
  padding: var(--space-80) 0;
}

.footer_column {
  display: flex;
  gap: var(--space-40);
  justify-content: space-between;
}
.footer_column .info {
  flex: 1;
  color: #fff;
}
.footer_column .info a {
  color: #fff;
}
.footer_column .info span {
  white-space: nowrap;
}
.footer_column .info .name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 3.0rem;
  margin-bottom: 10px;
}
.footer_column .info .section {
  margin-bottom: var(--space-60);
}
.footer_column .menu {
  display: flex;
  gap: 80px;
  justify-content: center;
}

.f_menu li {
  margin-bottom: 2.4rem;
}
.f_menu li a {
  color: #fff;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
#pagetop::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url('common/images/pagetop_arrow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/**********レスポンシブ**********/
br.sp {
  display: none;
}

.sp_menu_button {
  display: none;
}

@media(max-width:1440px) {
  .header_column {
    padding: 20px 0;
  }
  footer {
    background-size: 100px auto;
    background-position: right 100px bottom 0;
  }
}
/*/1440*/

@media(max-width:1200px) {
  .header_column .logo {
    flex: 100%;
  }
  .header_column .tel {
    flex: 1;
  }
  .ccopy {
    left: auto;
    right: 5%;
  }
  #about .post::before {
    left: -120px;
  }
  .about_read .about_read_ccopy {
    text-align: center;
  }
}
/*/1200*/

@media(max-width:1024px) {
  /*sp_menu*/
  .sp_menu_button {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: var(--main-color);
    border: 0;
    cursor: pointer;
    z-index:2;
  }

  .sp_menu_button::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('common/images/bars-solid-full.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .sp_menu_button.open::after {
    background-image: url('common/images/xmark-solid-full.svg');
  }

  .sp_menu {
    position: fixed;
    top: 0;
    padding-top: 80px;
    width: 100%;
    background: rgba(255,255,255,.8);
    z-index:1;
  }

  .h_menu {
    flex-direction: column;
    padding: 0;
  }

  .h_menu li {
    border-left: 0;
    border-bottom: 1px #ddd solid;
  }

  .h_menu li:last-child {
    border-right: 0;
  }

  .h_menu li a {
    width: 100%;
    padding: 20px;
  }
  /*/sp_menu*/

  .seminar_list_content .more {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    transform: translate(-50%);
    margin-bottom: var(--space-40);
  }
  .seminar_list {
    flex-wrap: wrap;
  }
  .seminar_list .block {
    text-align: center;
    width: calc((100% - 40px)/2);
  }
  
  .news_list li a .date {
    display: block;
    margin-bottom: 5px;
  }
  
  footer {
    padding-bottom: 120px;
  }
  .footer_column {
    flex-direction: column;
  }
  .footer_column .info {
    text-align: center;
  }
  .footer_column .menu {
    gap: 40px;
  }
  .f_menu li {
    text-align: center;
  }
  
  .about_read_column {
    flex-direction: column;
  }
  .about_torikumi_column {
    flex-direction: column;
  }
  .about_torikumi_column .more {
    margin-right: auto;
  }
  
  .profile_table th,
  .profile_table td {
    display: block;
    width: 100%;
  }
  
  .flow_content .flow_column {
    flex-direction: column;
  }
  .flow_content .block::before,
  .flow_content .block.flow5::after {
    width: 60px;
    height: 60px;
    top: -30px;
  }
  .seminar_column {
    flex-direction: column;
  }
  
  .seminar_schedule th.time {
    width: 130px;
  }
  .seminar_schedule th,
  .seminar_schedule td {
    padding: 15px;
  }
  .button_column {
    flex-direction: column;
  }
}
/*/1024*/

@media(max-width:800px) {
  .header_column {
    justify-content: flex-start;
    padding: 10px 0;
    margin-right: 68px;
  }
  .header_column .tel {
    flex: none;
  }
  
  #about::after {
    display: none;
  }
  .about_read_column .pic img {
    width: 260px;
    height: auto;
  }
}
/*/800*/

@media(max-width:600px) {
  .seminar_content h2,
  .news_content h2 {
    flex-direction: column;
  }
}
/*/600*/

@media(max-width:480px) {
  :root {
    --space-40: calc(min(4.0rem, 40px) * 0.8);
    --space-60: calc(min(6.0rem, 60px) * 0.8);
    --space-80: calc(min(8.0rem, 80px) * 0.8);
    --space-100: calc(min(10.0rem, 100px) * 0.8);
    --space-120: calc(min(12.0rem, 120px) * 0.8);
    --space-140: calc(min(14.0rem, 140px) * 0.8);
  }
  
  br.sp {
    display: block;
  }

  html {
    font-size: 55%;
  }
  
  .inner{
    padding: 0 10px;
  }
  
  .header_column .tel .number {
    font-size: 2.6rem;
  }
  
  .search-form input {
    width: 135px;
  }
}
/*/480*/