@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&family=Noto+Sans+JP:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 2;
  color: #000;
  position: relative;
  font-family: serif, sans-serif, monospace;
}

ul {
  list-style: none;
}

h2 {
  font-size: 1.8vw;
  font-weight: 500;
}

p {
  font-size: 1.3vw;
}

a {
  font-size: 1.2vw;
  color: #000;
  text-decoration: none;
  list-style: none;
}

li {
  list-style: none;
}

@media screen and (max-width: 680px) {
  h2 {
    font-size: 6vw;
    font-weight: 500;
  }
  a {
    font-size: 3.3vw;
    color: #000;
    text-decoration: none;
  }
}

.pc_block {
  display: block;
}

.sp_block {
  display: none;
}

@media screen and (max-width: 680px) {
  .pc_block {
    display: none;
  }
  .sp_block {
    display: block;
  }
}

.br_pc {
  display: block;
}

.br_sp {
  display: none;
}

@media screen and (max-width: 680px) {
  .br_pc {
    display: none;
  }
  .br_sp {
    display: block;
  }
}

img {
  width: 100%;
  height: auto;
}

figure {
  width: 100%;
  height: auto;
}

/****** ▲general *****/
/*******　▼オープニングフェードイン *****/
.header {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 3s ease;
  transition: 3s ease;
}

/*******　▲オープニングフェードイン *****/
/*******　▼上からスクロールフェードイン *****/
.animation_box {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 3s ease;
  transition: 3s ease;
}

/*******　▲上からスクロールフェードイン *****/
/*******　▼下から *****/
.animation_box_bottom {
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  -webkit-transition: 3s ease;
  transition: 3s ease;
}

/*******　▲下から *****/
/*******　▼右から *****/
.animation_box_right {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: 3s ease;
  transition: 3s ease;
}

/*******　▲右から *****/
/*******　▼左から *****/
.animation_box_left {
  opacity: 0;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: 3s ease;
  transition: 3s ease;
}

/*******　▲左から *****/
/******　▼header　*****/
.header {
  position: relative;
}

.header .logo {
  width: 20%;
  padding: 2% 2% 35% 2%;
  top: 0px;
  left: 0px;
  z-index: 1;
  position: absolute;
  background: #707070;
  background-clip: border-box;
}

.header .logo img {
  width: 60%;
  height: auto;
}

.header .fv {
  width: 90%;
  padding: 0;
  margin: 0 auto;
  top: 150px;
  z-index: 1;
  position: relative;
}

.header .fv .fv_ttl {
  width: 55%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header .fv .fv_ttl h1 {
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 6vw;
  font-weight: 800;
  letter-spacing: 0.4em;
}

.header .fv .key_visual_pc {
  display: block;
}

.header .fv .key_visual_sp {
  display: none;
}

.header .fv .fv_copy {
  width: 15%;
  position: absolute;
  right: 0%;
  top: 8%;
}

.header .fv .fv_copy h2 {
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  font-size: 3.3vw;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.header .fv .credit {
  position: absolute;
  left: 10px;
  bottom: -0px;
  color: #fff;
}

.header .fv .credit p {
  font-size: 1.5vw;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
}

.header .fv .fv_place {
  position: absolute;
  right: 5px;
  bottom: -30px;
}

.header .fv .fv_place h2 {
  color: #fff;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
  font-size: 2.5vw;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.header .cto {
  width: 28%;
  margin: 18% auto 5%;
}

@media screen and (max-width: 680px) {
  .header {
    position: relative;
  }
  .header .logo {
    width: 30%;
    padding: 2% 2% 35% 2%;
    top: 0;
    left: 0;
    z-index: 1;
    position: absolute;
    background: #707070;
    background-clip: border-box;
  }
  .header .logo img {
    width: 70%;
    height: auto;
  }
  .header .fv {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    top: 90px;
    z-index: 1;
    position: relative;
  }
  .header .fv .fv_ttl {
    width: 55%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .header .fv .fv_ttl h1 {
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    font-size: 11vw;
    font-weight: 800;
    letter-spacing: 0.4em;
  }
  .header .fv .key_visual_pc {
    display: none;
  }
  .header .fv .key_visual_sp {
    display: block;
  }
  .header .fv .fv_copy {
    width: 15%;
    position: absolute;
    right: 0%;
    top: 5%;
  }
  .header .fv .fv_copy h2 {
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    font-size: 3.5vw;
    font-weight: 500;
    letter-spacing: 0.5em;
  }
  .header .fv .credit {
    position: absolute;
    left: 5px;
    bottom: -0px;
    color: #fff;
  }
  .header .fv .credit p {
    font-size: 2vw;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
  }
  .header .fv .fv_place {
    position: absolute;
    right: 5px;
    bottom: 0px;
  }
  .header .fv .fv_place h2 {
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.7);
    font-size: 2.8vw;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .header .cto {
    width: 55%;
    margin: 30% auto 10%;
  }
}

/******　▲header　*****/
/******　▼about　*****/
#about {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 5% 0;
  font-size: 2vw;
}

@media screen and (max-width: 680px) {
  #about {
    width: 100%;
    margin: 0 auto;
    margin-top: -15%;
    text-align: center;
    padding: 5% 0;
    font-size: 3.5vw;
    line-height: 1.8;
  }
}

/******　▲about  *****/
/******　▼about　*****/
#work_shop {
  width: 100%;
  padding: 0% 0;
  padding-bottom: 5%;
  background-color: #85A4CE;
  font-family: Hiragino maru Gothic ProN W4;
  font-size: 2.5vw;
  color: #fff;
}

#work_shop .ws_flex {
  width: 95%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-pack: justify;
}

#work_shop .ws_flex .ws_flex_lft {
  width: 70%;
  margin-top: 2%;
  color: #fff;
}

#work_shop .ws_flex .ws_flex_lft .yellow_big {
  color: #F7F154;
  font-size: 4.5vw;
}

#work_shop .ws_flex .ws_flex_lft .yellow_small {
  color: #F7F154;
  font-size: 3.5vw;
  padding: 0;
}

#work_shop .ws_flex .ws_flex_rt {
  width: 25%;
}

#work_shop .ws_flex_bottom {
  width: 90%;
  margin: 3% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

#work_shop .ws_flex_bottom .ws_flex_lft_bottom {
  width: 20%;
  margin-right: 5%;
}

#work_shop .ws_flex_bottom .ws_flex_rt_bottom {
  width: 75%;
}

@media screen and (max-width: 680px) {
  #work_shop {
    width: 100%;
    padding: 5% 0;
    padding-bottom: 5%;
    background-color: #85A4CE;
    font-family: Hiragino maru Gothic ProN W4;
    font-size: 4vw;
    color: #fff;
  }
  #work_shop .ws_flex {
    width: 95%;
    margin: 0% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    -ms-flex-pack: justify;
  }
  #work_shop .ws_flex .ws_flex_lft {
    width: 45%;
    margin-top: 2%;
    line-height: 1.4;
    color: #fff;
  }
  #work_shop .ws_flex .ws_flex_lft .yellow_big {
    color: #F7F154;
    font-size: 7vw;
    padding-top: 2.5%;
  }
  #work_shop .ws_flex .ws_flex_lft .yellow_small {
    color: #F7F154;
    font-size: 6vw;
    padding: 0;
  }
  #work_shop .ws_flex .ws_flex_rt {
    width: 40%;
  }
  #work_shop .ws_flex_bottom {
    width: 85%;
    margin: 6% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
  }
  #work_shop .ws_flex_bottom .ws_flex_lft_bottom {
    width: 25%;
    margin-right: 5%;
  }
  #work_shop .ws_flex_bottom .ws_flex_rt_bottom {
    width: 75%;
  }
}

/******　▲about  *****/
/******　▼summary *****/
#summary {
  width: 100%;
  margin: 10% auto;
  font-family: sans-serif;
}

#summary .summary_box {
  width: 70%;
  margin: 0% auto;
  border: 1px solid #A7A4A4;
  padding: 0;
  padding-bottom: 5%;
}

#summary .summary_box .summary_ttl {
  width: 100%;
  text-align: center;
  background-color: #A7A4A4;
  color: #fff;
  font-size: 1.5vw;
  padding: 0;
}

#summary .summary_box .summary_ttl h1 {
  font-weight: 600;
  margin: 0;
}

#summary .summary_box table {
  width: 75%;
  margin: 12% auto;
  font-size: 2vw;
  text-align: left;
}

#summary .summary_box tr.t-head th {
  padding-bottom: 3%;
}

#summary .summary_box tr.t-head td {
  padding-bottom: 3%;
}

#summary .summary_box th {
  padding-right: 15%;
  font-weight: 600;
}

#summary .summary_box td,
#summary .summary_box th {
  padding: 0px 10px;
}

#summary .summary_cto {
  width: 40%;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  #summary {
    width: 100%;
    margin: 20% auto;
    font-family: sans-serif;
  }
  #summary .summary_box {
    width: 90%;
    margin: 0% auto;
    border: 1px solid #A7A4A4;
    padding: 0;
    padding-bottom: 5%;
  }
  #summary .summary_box .summary_ttl {
    width: 100%;
    text-align: center;
    background-color: #A7A4A4;
    color: #fff;
    font-size: 2vw;
    padding: 0;
  }
  #summary .summary_box .summary_ttl h1 {
    font-weight: 600;
    margin: 0;
  }
  #summary .summary_box table {
    width: 100%;
    margin: 12% auto;
    font-size: 3.5vw;
    text-align: left;
  }
  #summary .summary_box tr.t-head th {
    padding-bottom: 5%;
  }
  #summary .summary_box tr.t-head td {
    padding-bottom: 5%;
  }
  #summary .summary_box th {
    padding-right: 5%;
    font-weight: 600;
  }
  #summary .summary_box td,
  #summary .summary_box th {
    padding: 0px 10px;
  }
  #summary .summary_cto {
    width: 50%;
    margin: 0 auto;
  }
}

/******　▲summary *****/
/******　▼consult *****/
#consult {
  width: 100%;
  margin: 10% auto;
}

#consult .consult_flex {
  width: 85%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  font-family: sans-serif;
  color: #fff;
}

#consult .consult_flex .consult_flex_lft {
  width: 50%;
  background-color: #425260;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 23px;
}

#consult .consult_flex .consult_flex_lft .consult_flex_lft {
  width: 50%;
  background-color: #425260;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#consult .consult_flex .consult_flex_lft .consult_flex_ttl {
  text-align: center;
}

#consult .consult_flex .consult_flex_lft .consult_flex_ttl h2 {
  font-size: 2.5vw;
  font-weight: 600;
}

#consult .consult_flex .consult_flex_lft .consult_flex_content {
  text-align: left;
}

#consult .consult_flex .consult_flex_lft .consult_flex_content p {
  font-size: 1.5vw;
}

#consult .consult_flex .consult_flex_rt {
  width: 50%;
}

#consult .consult_flex .consult_flex_rt img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#consult .consult_flex:nth-child(2) {
  width: 85%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-family: monospace;
}

#consult .consult_flex:nth-child(2) .consult_flex_lft {
  width: 50%;
  background-color: #5A576B;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 23px;
}

#consult .consult_flex:nth-child(3) {
  width: 85%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-family: sans-serif;
}

#consult .consult_flex:nth-child(3) .consult_flex_lft {
  width: 50%;
  background-color: #607978;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 23px;
}

@media screen and (max-width: 680px) {
  #consult {
    width: 100%;
    margin: 15% auto;
  }
  #consult .consult_flex {
    width: 100%;
    margin: 0% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    font-family: sans-serif;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    color: #fff;
  }
  #consult .consult_flex .consult_flex_lft {
    width: 100%;
    background-color: #425260;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8%;
  }
  #consult .consult_flex .consult_flex_lft .consult_flex_lft {
    width: 50%;
    background-color: #425260;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #consult .consult_flex .consult_flex_lft .consult_flex_ttl {
    text-align: center;
  }
  #consult .consult_flex .consult_flex_lft .consult_flex_ttl h2 {
    font-size: 5vw;
    font-weight: 600;
    padding-bottom: 5%;
  }
  #consult .consult_flex .consult_flex_lft .consult_flex_content {
    text-align: left;
  }
  #consult .consult_flex .consult_flex_lft .consult_flex_content p {
    font-size: 3vw;
  }
  #consult .consult_flex .consult_flex_rt {
    width: 100%;
  }
  #consult .consult_flex .consult_flex_rt img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #consult .consult_flex:nth-child(2) {
    width: 100%;
    margin: 0% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    font-family: monospace;
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #consult .consult_flex:nth-child(2) .consult_flex_lft {
    width: 100%;
    background-color: #5A576B;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8%;
  }
  #consult .consult_flex:nth-child(3) {
    width: 100%;
    margin: 0% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    font-family: sans-serif;
  }
  #consult .consult_flex:nth-child(3) .consult_flex_lft {
    width: 100%;
    background-color: #607978;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 8%;
  }
}

/******　▲consult *****/
/******　▼seminar *****/
#seminar {
  width: 100%;
  margin: 0 auto;
}

#seminar .seminar_ttl {
  text-align: center;
  line-height: 1.3;
  padding: 1.5%;
}

#seminar .seminar_ttl h3 {
  font-size: 2.5vw;
}

#seminar .seminar_ttl span {
  font-size: 2vw;
}

#seminar .schedule_box {
  width: 70%;
  margin: 5% auto;
  font-family: sans-serif;
  border: 1px solid #707070;
  padding: 2.5% 2.5% 0;
}

#seminar .schedule_box .schedule_ttl {
  font-size: 2.5vw;
  text-align: center;
  margin-bottom: 5%;
}

#seminar .schedule_box .schedule_ttl h3 {
  font-weight: 500;
}

#seminar .schedule_box .schedule_ttl_rt {
  margin-left: 35%;
  font-size: 2.2vw;
}

#seminar .schedule_box .booking_must {
  width: 20%;
  text-align: center;
  background-color: #CC0A0A;
  color: #fff;
  float: right;
}

#seminar .schedule_box .booking_must p {
  font-size: 1.8vw;
  font-weight: 600;
}

#seminar .schedule_box .schedule_flex {
  width: 100%;
  margin: 5% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-justify-content: space-around;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}

#seminar .schedule_box .schedule_flex .schedule_flex_lft {
  width: 35%;
  margin-right: 8%;
}

#seminar .schedule_box .schedule_flex .schedule_flex_rt {
  width: 65%;
}

#seminar .schedule_box .schedule_flex .schedule_flex_rt p {
  font-size: 2vw;
}

#seminar .schedule_box .schedule_flex .schedule_date {
  padding: 2% 0;
}

#seminar .schedule_box .schedule_flex .schedule_name {
  padding: 0%;
}

#seminar .schedule_box .schedule_flex .schedule_name span {
  font-size: 2.3vw;
}

#seminar .schedule_box .schedule_flex .schedule_job {
  padding: 0%;
  margin-left: 15%;
}

@media screen and (max-width: 680px) {
  #seminar {
    width: 100%;
    margin: 15% auto 30%;
  }
  #seminar .seminar_ttl {
    text-align: center;
    line-height: 1.3;
    padding: 1.5%;
  }
  #seminar .seminar_ttl h3 {
    font-size: 5vw;
  }
  #seminar .seminar_ttl span {
    font-size: 4vw;
  }
  #seminar .schedule_box {
    width: 90%;
    margin: 8% auto;
    font-family: sans-serif;
    border: 1px solid #707070;
    padding: 5% 2.2% 0;
  }
  #seminar .schedule_box .schedule_ttl {
    font-size: 4.5vw;
    text-align: center;
    margin-bottom: 5%;
  }
  #seminar .schedule_box .schedule_ttl h3 {
    font-weight: 600;
  }
  #seminar .schedule_box .schedule_ttl_rt {
    margin-left: 35%;
    font-size: 3.5vw;
  }
  #seminar .schedule_box .booking_must {
    width: 20%;
    text-align: center;
    background-color: #CC0A0A;
    color: #fff;
    float: right;
  }
  #seminar .schedule_box .booking_must p {
    font-size: 2vw;
    font-weight: 600;
  }
  #seminar .schedule_box .schedule_flex {
    width: 100%;
    margin: 5% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-justify-content: space-around;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
  }
  #seminar .schedule_box .schedule_flex .schedule_flex_lft {
    width: 35%;
    margin-right: 8%;
  }
  #seminar .schedule_box .schedule_flex .schedule_flex_rt {
    width: 65%;
  }
  #seminar .schedule_box .schedule_flex .schedule_flex_rt p {
    font-size: 3vw;
  }
  #seminar .schedule_box .schedule_flex .schedule_date {
    display: block;
    padding: 2% 0;
  }
  #seminar .schedule_box .schedule_flex .schedule_name {
    padding: 0%;
  }
  #seminar .schedule_box .schedule_flex .schedule_name span {
    font-size: 5vw;
  }
  #seminar .schedule_box .schedule_flex .schedule_job {
    padding: 0%;
    margin-left: 15%;
  }
}

/******　▲seminar *****/
/******　▼architechts *****/
#architects {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#architects .architects_ttl {
  text-align: center;
  line-height: 1.3;
  padding: 1.5%;
  position: relative;
}

#architects .architects_ttl h3 {
  font-size: 2.5vw;
}

#architects .architects_ttl span {
  font-size: 2vw;
}

#architects .architects_ttl p {
  font-size: 1vw;
}

#architects .architects_subttl {
  position: absolute;
  right: 30%;
  bottom: 15%;
}

@media screen and (max-width: 680px) {
  #architects {
    width: 100%;
    margin: 10% auto;
    position: relative;
  }
  #architects .architects_ttl {
    text-align: center;
    line-height: 1.3;
    padding: 1.5%;
    position: relative;
  }
  #architects .architects_ttl h3 {
    font-size: 5vw;
  }
  #architects .architects_ttl span {
    font-size: 4vw;
  }
  #architects .architects_subttl p {
    font-size: 2.5vw;
  }
  #architects .architects_subttl {
    position: absolute;
    right: 10%;
    bottom: 15%;
  }
}

/******　▲architechts*****/
/******　▼architects_flex*****/
.architects_flex_wrapper {
  width: 100%;
  margin: 0 auto;
}

.architects_flex_wrapper .architects_flex {
  width: 80%;
  margin: 5% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: monospace;
  color: #000;
}

.architects_flex_wrapper .architects_flex .architects_flex_box {
  width: 20%;
  margin: 5% 5%;
  text-align: center;
}

@media screen and (max-width: 680px) {
  .architects_flex_wrapper {
    width: 100%;
    margin: 5% auto;
  }
  .architects_flex_wrapper .architects_flex {
    width: 90%;
    margin: 5% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-family: monospace;
    color: #000;
  }
  .architects_flex_wrapper .architects_flex .architects_flex_box {
    width: 42%;
    margin: 5% auto 15%;
    text-align: center;
  }
  .architects_flex_wrapper .architects_flex .architects_flex_box p {
    font-size: 3vw;
  }
}

/******　▲architects_flex*****/
/******　▼access *****/
#access {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#access .access_ttl {
  text-align: center;
  line-height: 1.3;
  padding: 1.5%;
  position: relative;
}

#access .access_ttl h3 {
  font-size: 2.5vw;
}

#access .access_flex {
  width: 100%;
  margin: 0% auto;
  padding: 6%;
  background-color: #8D8A8A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: flex-start;
  -ms-flex-pack: justify;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#access .access_flex .access_flex_lft {
  width: 50%;
  padding: 10px 0;
}

#access .access_flex .access_flex_lft #access {
  position: relative;
  width: 100%;
  margin: 0% auto;
  height: 0;
  padding-top: 65%;
}

#access .access_flex .access_flex_lft #access iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#access .access_flex .access_flex_rt {
  width: 40%;
  padding: 10px 0;
  margin-right: 4%;
  color: #fff;
}

#access .access_flex .access_flex_rt .adress_flex {
  display: table;
  width: 100%;
  margin: 3% auto;
  text-align: left;
  font-size: 1.5vw;
  font-family: sans-serif;
}

#access .access_flex .access_flex_rt .address_box_lft {
  display: table-cell;
  vertical-align: top;
  width: 25%;
}

#access .access_flex .access_flex_rt .address_box_rt {
  display: table-cell;
  vertical-align: top;
  width: 70%;
}

@media screen and (max-width: 680px) {
  #access {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #access .access_ttl {
    text-align: center;
    line-height: 1.3;
    padding: 1.5%;
    position: relative;
  }
  #access .access_ttl h3 {
    font-size: 5vw;
  }
  #access .access_ttl span {
    font-size: 4vw;
  }
  #access .access_flex {
    width: 100%;
    margin: 0% auto;
    padding: 6%;
    background-color: #8D8A8A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: start;
            align-items: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    -ms-flex-pack: justify;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    flex-direction: column;
  }
  #access .access_flex .access_flex_lft {
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
  }
  #access .access_flex .access_flex_lft #access {
    position: relative;
    width: 100%;
    margin: 0% auto;
    height: 0;
    padding-top: 65%;
  }
  #access .access_flex .access_flex_lft #access iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #access .access_flex .access_flex_rt {
    width: 90%;
    margin: 0 auto;
    margin-right: 4%;
    color: #fff;
  }
  #access .access_flex .access_flex_rt .adress_flex {
    display: table;
    width: 100%;
    margin: 3% auto;
    text-align: left;
    font-family: sans-serif;
  }
  #access .access_flex .access_flex_rt .address_box_lft {
    display: table-cell;
    vertical-align: top;
    width: 25%;
  }
  #access .access_flex .access_flex_rt .address_box_rt {
    display: table-cell;
    vertical-align: top;
    width: 70%;
  }
  #access .access_flex .access_flex_rt .address_box_lft p {
    font-size: 3vw;
  }
  #access .access_flex .access_flex_rt .address_box_rt p {
    font-size: 3vw;
  }
}

/******　▲access *****/
/******　▼studio_list *****/
.studio_list {
  width: 100%;
  margin: 2.5% auto 10%;
  padding: 5%;
  text-align: center;
  font-family: sans-serif;
}

.studio_list .studio_list_ttl {
  width: 60%;
  margin: 2.5% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.studio_list .studio_list_ttl p {
  font-size: 2.5vw;
  font-weight: 300;
}

.studio_list .studio_list_ttl:before,
.studio_list .studio_list_ttl:after {
  content: "";
  height: 1px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: #666;
}

.studio_list .studio_list_ttl:before {
  margin-right: 1rem;
}

.studio_list .studio_list_ttl:after {
  margin-left: 1rem;
}

.studio_list li {
  font-size: 2vw;
  font-weight: 300;
  padding: 2%;
  line-height: 1.2;
}

.studio_list .stu {
  width: 20%;
  margin: 0 auto;
}

@media screen and (max-width: 680px) {
  .studio_list {
    width: 100%;
    margin: 2.5% auto 10%;
    padding: 5%;
    text-align: center;
    font-family: sans-serif;
  }
  .studio_list .studio_list_ttl {
    width: 80%;
    margin: 2.5% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .studio_list .studio_list_ttl p {
    font-size: 6vw;
    font-weight: 400;
  }
  .studio_list .studio_list_ttl:before,
  .studio_list .studio_list_ttl:after {
    content: "";
    height: 1px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #666;
  }
  .studio_list .studio_list_ttl:before {
    margin-right: 1rem;
  }
  .studio_list .studio_list_ttl:after {
    margin-left: 1rem;
  }
  .studio_list li {
    font-size: 4vw;
    font-weight: 300;
    padding: 4%;
    line-height: 1.2;
  }
  .studio_list .stu {
    width: 40%;
    margin: 0 auto;
  }
}

/******　▲studio_list *****/
/******　▼contact *****/
#contact {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#contact .contact_ttl {
  text-align: center;
  line-height: 1.3;
  padding: 1.5%;
  position: relative;
}

#contact .contact_ttl h3 {
  font-size: 2.5vw;
}

#contact .cto_box {
  width: 65%;
  margin: 5% auto;
  padding: 2%;
  text-align: center;
  background-color: #666;
}

#contact .cto_flex {
  width: 100%;
  margin: 0% auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  font-family: sans-serif;
}

#contact .cto_flex .cto_flex_lft {
  width: 45%;
  padding: 10px 0;
  text-align: center;
}

#contact .cto_flex .cto_flex_rt {
  width: 45%;
  padding: 10px 0;
  text-align: center;
}

#contact .cto_flex .cto_flex_lft h3 {
  color: #fff;
  font-size: 2vw;
  font-weight: 500;
  padding-bottom: 5%;
}

#contact .cto_flex .cto_flex_rt h3 {
  color: #fff;
  font-size: 2vw;
  font-weight: 500;
  padding-bottom: 5%;
}

#contact .cto_flex .free {
  padding: 1% 0;
  background: url("../img/free.png") left 10% top 50% no-repeat;
  background-size: 10% auto;
}

#contact .cto_flex .tel {
  padding: 1% 0;
  background: url("../img/tel.png") left 10% top 50% no-repeat;
  background-size: 8% auto;
}

#contact .cto_flex .fax {
  padding: 1% 0;
  background: url("../img/fax.png") left 10% top 50% no-repeat;
  background-size: 10% auto;
}

#contact .cto_flex span {
  font-size: 1.5vw;
  color: #fff;
  padding-left: 0%;
}

#contact .cto_flex .cto_button {
  width: 80%;
  margin: 5% auto;
  padding: 3%;
  background-color: #fff;
}

#contact .cto_flex .cto_button a {
  font-size: 1.5vw;
  color: #000;
}

@media screen and (max-width: 680px) {
  #contact {
    width: 100%;
    margin: 10% auto 20%;
    position: relative;
  }
  #contact .contact_ttl {
    text-align: center;
    line-height: 1.3;
    padding: 1.5%;
    position: relative;
  }
  #contact .contact_ttl h3 {
    font-size: 5vw;
  }
  #contact .contact_ttl span {
    font-size: 4vw;
  }
  #contact .cto_box {
    width: 100%;
    margin: 5% auto;
    padding: 0%;
    text-align: center;
    background-color: #666;
  }
  #contact .cto_flex {
    width: 100%;
    margin: 0% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    font-family: sans-serif;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #contact .cto_flex .cto_flex_lft {
    width: 90%;
    margin: 15% auto;
    padding: 10px 0;
    text-align: center;
  }
  #contact .cto_flex .cto_flex_rt {
    width: 90%;
    padding: 10px 0;
    text-align: center;
  }
  #contact .cto_flex .cto_flex_lft h3 {
    color: #fff;
    font-size: 5vw;
    font-weight: 500;
    padding-bottom: 5%;
  }
  #contact .cto_flex .cto_flex_rt h3 {
    color: #fff;
    font-size: 5vw;
    font-weight: 500;
    padding-bottom: 5%;
  }
  #contact .cto_flex .free {
    padding: 1% 0;
    background: url("../img/free.png") left 25% top 50% no-repeat;
    background-size: 8% auto;
  }
  #contact .cto_flex .tel {
    padding: 1% 0;
    background: url("../img/tel.png") left 25% top 50% no-repeat;
    background-size: 4% auto;
  }
  #contact .cto_flex .fax {
    padding: 1% 0;
    background: url("../img/fax.png") left 25% top 50% no-repeat;
    background-size: 8% auto;
  }
  #contact .cto_flex span {
    font-size: 3.5vw;
    color: #fff;
    padding-left: 0%;
  }
  #contact .cto_flex .cto_button {
    width: 60%;
    margin: 8% auto;
    padding: 3% 0;
    background-color: #fff;
  }
  #contact .cto_flex .cto_button a {
    font-size: 4vw;
    color: #000;
  }
}

/******　▲contact *****/
/******　▼footer *****/
.copyright {
  width: 100%;
  padding: 1% 0;
  text-align: center;
  background-color: #44423d;
}

.copyright p {
  font-size: 1vw;
  color: #fefefe;
  font-family: sans-serif;
  font-weight: 500;
}

@media screen and (max-width: 680px) {
  .copyright {
    width: 100%;
    padding: 2% 0;
    text-align: center;
    background-color: #44423d;
  }
  .copyright p {
    font-size: 2vw;
    color: #fefefe;
    font-family: sans-serif;
    font-weight: 500;
  }
}

/******　▲footer　*****/
/*# sourceMappingURL=style.css.map */