@charset "utf-8";
/*================================
bace css
================================*/
.body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,section,article,aside,hgroup,header,footer,nav,dialog,figure,menu,video,audio,mark,time,canvas,details {    margin: 0;    padding: 0;    border: 0;    font-size: 100%;    background: transparent;    -webkit-box-sizing: border-box;    box-sizing: border-box;}
a {
    color: #000;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}
a:hover {
	opacity: .7;
}
a img{
    transition: all 0.2s ease;
    text-decoration: none;
}
section,article,aside,hgroup,header,footer,nav,dialog,figure,figcaption {
	display: block;
}
input,select {
    vertical-align: middle;
}
html {
    font-size: 62.5%;
}
body {
    font-family: "游ゴシック体","YuGothic","游ゴシック","Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4em;
    line-height: 1.75;
    min-width: 1100px;
    overflow-x: scroll;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    background: #fff;
    margin: 0;
}
img {
	max-width: 100%;
}
ul,
li,
dl,
dt,
dd,
form {
    margin: 0px;
    padding: 0px;
    border: 0px;
    list-style: none;
    letter-spacing: normal;
    /* For IE 6/7 */
    *display: inline;
    *zoom: 1;
}
li::marker {
    margin: 0;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}
ins {
    /* remember to highlight inserts somehow! */
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
table {
    /* markup tables with 'cellspacing="0"' */
    border-collapse: collapse;
    border-spacing: 0;
}
.alc {
    text-align: center !important;
}
.all {
    text-align: left !important;
}
.alr {
    text-align: right !important;
}
.floatL {
    float: left;
}
.floatR {
    float: right;
}
.clr {
    zoom: 1;
}
.clr:after {
    content: ' ';
    display: block;
    clear: both;
    height: 0;
}
.clearboth {
    clear: both !important;
}
.pc {
    display: block;
}
.sp {
    display: none;
}


/*================================
inview
================================*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}
/*================================
header
================================*/
header {
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 9999;
  top: 0;
  left: 0;
}
.header_inner {
  max-width: 900px;
  margin: auto;
  height: 100px;
  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;
  position: relative;
}
.hbox .logo{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hbox .logo img:first-child{
  margin-right: 2rem;
}
.header_btn{
  display: block;
  border: 0;
  background: none;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 1px 1px 6px 2px rgb(0,0,0,.15);
  transition: all 0.2s ease;
}
.header_btn:hover{
  background: #1280ad;
}
.header_btn span{
  position: absolute;
  width: 30px;
  border-top: 1px solid #000;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  transition: all 0.2s ease;
}
.header_btn:hover span{
  border-top: 1px solid #fff;
}
.header_btn span.line1{
  top: 14px;
}
.header_btn span.line2{
  top: 24px;
}
.header_btn span.line3{
  top: 34px;
}
.header_btn.on span.line1{
  top: 24px;
  transform: rotate(45deg);
}
.header_btn.on span.line2{
  opacity: 0;
}
.header_btn.on span.line3{
  top: 24px;
  transform: rotate(-45deg);
}
html.on{
  height: 100%;
  overflow: hidden;
}
.header_menu{
  position: fixed;
  top: 100px;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  padding: 4rem 0;
}
.header_menu.on{
  opacity: 1;
  visibility: visible;
}
.header_menu_list{
  width: 100%;
}
.header_menu_list li a{
  display: block;
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #1280ad;
  text-align: center;
  padding: 2rem 0;
}
.header_menu_bg{
  position: fixed;
  left: 0;
  top: 100px;
  width: 100vw;
  height: 100vh;
  background: -moz-linear-gradient(-45deg, #efffff 40%, #ffffea 70% , #effbea); 
  background: -webkit-linear-gradient(-45deg, #efffff 40%, #ffffea 70% , #effbea); 
  background: linear-gradient(135deg, #efffff 40%, #ffffea 70% , #effbea); 
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s;
  cursor: pointer;
  z-index: -1;
}
.header_menu.on .header_menu_bg{
  opacity: 1;
  visibility: visible;
}
/*================================
main
================================*/
#hero{
    margin-top: 100px;
    height: calc(100vh - 100px);
    background: url(../img/hero_pic.jpg) no-repeat top center / cover;
}
.copy_wrap{
  max-width: 900px;
  margin: auto;
  height: 100%;
  padding: 2rem 5%;
  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: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.copy_wrap .copy{
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}
.copy_wrap .copy02{
  height: 30%;
}
.copy_wrap img{
  max-height: 100%;
}
.en_title {
  text-align: center;
}
.jp_title {
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  margin: 0 0 4rem 0;
  letter-spacing: 0.2em;
  text-align: center;
  color: #4d4d4d;
}

.about{
  background: url(../img/about_bg.jpg) no-repeat bottom center / cover;
  padding: 4rem 0;
}
.about_subtitle{
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffff23;
  letter-spacing: 0.34em;
  text-align: center;
  margin: 2rem 0 1rem;
}
.about_text{
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
}
.about .inner{
  width: 1100px;
  margin: auto;
  border-radius: 5rem;
  padding: 4rem 0;
  background: #fff;
  box-shadow: 3px -5px 10px 0px rgb(255,255,255,.75) inset, 1px 1px 4px 2px rgb(0,0,0,.15);
  position: relative;
}
.aboutbg_deco{
  position: absolute;
  top: 50%;
  left: -5rem;
  transform: translateY(-50%);
}
.aboutbg_deco::before{
  content: '';
  display: block;
  width: 1px;
  height: 370px;
  margin: 20px auto;
  background: #fff;
}
.aboutbg_deco::after{
  content: '';
  display: block;
  width: 1px;
  height: 370px;
  margin: 20px auto;
  background: #fff;
}
.feature_contents{
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
}
.feature_contents::after{
  content: '';
  width: 80%;
  height: 70%;
  background: -moz-linear-gradient(left, #fff, #dfffca); 
  background: -webkit-linear-gradient(left, #fff, #dfffca); 
  background: linear-gradient(40deg, #fff, #dfffca); 
  position: absolute;
  bottom: 0;
  right: 0;
}
.feature_contents_inner{
  width: 900px;
  margin: auto;
}
.feature_contents .feature_pic{
  text-align: center;
  margin-bottom: 3rem;
}
.feature_pic{
  position: relative;
  z-index: 1;
}
.feature_num{
  text-align: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.feature_title{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 2rem;
}
.feature_title span{
  display: inline-block;
  font-size: 20px;
  font-size: 2rem;
  font-style: italic;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: .26em;
  color: #1280ad;
  background: #fff;
  padding: 0 1rem;
  position: relative;
}
.feature_title span:before{
    position: absolute;
    content: '';
    left: -10px;
    top: 0;
    width: 0;
    height: 0;
    border: none;
    border-left: solid 10px transparent;
  border-bottom: solid 30px #fff;
}
.feature_title span:after{
    position: absolute;
    content: '';
    right: -10px;
    top: 0;
    width: 0;
    height: 0;
    border: none;
    border-right: solid 10px transparent;
  border-top: solid 30px #fff;
}
.feature_title span:not(:last-child){
  margin-bottom: 0.5rem;
}
.feature_text{
  position: relative;
  z-index: 1;
  line-height: 2.2;
}
.feature_contents02{
  position: relative;
  padding-bottom: 4rem;
  margin-bottom: 6rem;
}
.feature_contents02::after{
  content: '';
  width: 80%;
  height: 73%;
  background: -moz-linear-gradient(left, #fff 1%, #ffffaa); 
  background: -webkit-linear-gradient(left, #fff 1%, #ffffaa); 
  background: linear-gradient(to right, #fff 1%, #ffffaa); 
  position: absolute;
  bottom: 0;
  left: 0;
}
.feature_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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.feature_flex > div:first-child{
  width: 430px;
}
.feature_flex > div:last-child{
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 3rem;
}
.feature_flex.reverse{
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.feature_flex.reverse > div:last-child{
  margin-right: 3rem;
}
.feature_contents03{
  position: relative;
}
.feature_contents03::after{
  content: '';
  width: 70%;
  height: 70%;
  background: -moz-linear-gradient(-50deg, #d8f0ff 50%, #fff); 
  background: -webkit-linear-gradient(-50deg, #d8f0ff 50%, #fff); 
  background: linear-gradient(140deg, #d8f0ff 50%, #fff); 
  position: absolute;
  right: 0;
  top: 4rem;
}

.flow{
  padding: 4rem 0;
}
.flow .inner{
  width: 1100px;
  margin: auto;
  border-radius: 5rem;
  padding: 5rem 0 10rem;
  background: -moz-linear-gradient(-45deg, #efffff 40%, #ffffea 70% , #effbea); 
  background: -webkit-linear-gradient(-45deg, #efffff 40%, #ffffea 70% , #effbea); 
  background: linear-gradient(135deg, #efffff 40%, #ffffea 70% , #effbea); 
  position: relative;
  z-index: 0;
}
.flow_subtitle{
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #1280ad;
  letter-spacing: 0.26em;
  text-align: center;
  margin: 2rem 0 10rem;
}
.flow_text{
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
  letter-spacing: 0.2em;
  margin-bottom: 4rem;
}
.flow_contents{
  width: 860px;
  margin: auto;
  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;
  position: relative;
  background: url(../img/flow_bg.svg) no-repeat center center / 100% auto;
}
.flow_contents_item{
  width: 250px;
  background: #fff;
  box-shadow: 3px 3px 15px 3px rgb(0,0,0,.15);
  position: relative;
}
.flow_contents_item:nth-child(-n+3){
  margin-bottom: 20rem;
}
.flow_contents_item_inner{
  position: relative;
  height: 100%;
  padding: 8rem 2rem 4rem;
}
.flow_contents_item_inner::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20px;
  background: -moz-linear-gradient(left, #add496, #92c5b9); 
  background: -webkit-linear-gradient(left, #add496, #92c5b9); 
  background: linear-gradient(to right, #add496, #92c5b9); 
}
.flow_contents_item:nth-child(2) .flow_contents_item_inner::after{
  background: -moz-linear-gradient(left, #8dc2c4, #87bfc4); 
  background: -webkit-linear-gradient(left, #8dc2c4, #87bfc4); 
  background: linear-gradient(to right, #8dc2c4, #87bfc4); 
}
.flow_contents_item:nth-child(3) .flow_contents_item_inner::after{
  background: -moz-linear-gradient(left, #82bec2, #62b4bd); 
  background: -webkit-linear-gradient(left, #82bec2, #62b4bd); 
  background: linear-gradient(to right, #82bec2, #62b4bd); 
}
.flow_contents_item:nth-child(4) .flow_contents_item_inner::after{
  background: -moz-linear-gradient(left, #60b5be, #09a9b9); 
  background: -webkit-linear-gradient(left, #60b5be, #09a9b9); 
  background: linear-gradient(to right, #60b5be, #09a9b9); 
}
.flow_contents_item:nth-child(5) .flow_contents_item_inner::after{
  background: -moz-linear-gradient(left, #01a7b4, #019eb0); 
  background: -webkit-linear-gradient(left, #01a7b4, #019eb0); 
  background: linear-gradient(to right, #01a7b4, #019eb0); 
}
.flow_contents_item:nth-child(6) .flow_contents_item_inner::after{
  background: -moz-linear-gradient(left, #019eb0, #019eb0); 
  background: -webkit-linear-gradient(left, #019eb0, #019eb0); 
  background: linear-gradient(to right, #019eb0, #019eb0); 
}
.flow_contents .contents_num{
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-43%);
  text-align: center;
}
.flow_contents .contents_title{
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  font-style: italic;
  color: #1280ad;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 2rem;
}
.flow_contents .contents_ico{
  text-align: center;
  min-height: 100px;
  margin-bottom: 2rem;
}
.flow_contents  .contents_subtitle{
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1280ad;
  margin-bottom: 2rem;
  text-align: center;
}

.member{
  padding: 10rem 0;
  background: url(../img/member_bg.png) no-repeat top center / cover;
}
.member .inner{
  width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 5rem;
  padding: 10rem 0;
}
.member_subtitle{
  font-size: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #1280ad;
  letter-spacing: 0.26em;
  text-align: center;
  margin-bottom: 6rem;
}
.member_flex{
  width: 860px;
  margin: auto;
}
.member_flex_item{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.member_flex_item:not(:last-child){
  margin-bottom: 10rem;
}
.member_flex_item > div{
  width: 48%;
}
.member_pic{
  position: relative;
}
.member_pic figcaption{
  position: absolute;
  bottom: -4.2rem;
  right: 0;
}
.member_posi{
  font-size: 16px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1280ad;
  margin-bottom: 1rem;
}
.member_name{
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #1280ad;
  margin-bottom: 1rem;
}
.member_text{
  line-height: 2;
}

.bgarea{
  background: #1280ad;
}
.contact .red{
  color: #ff0000;
}
.contact{
  width: 1100px;
  margin: auto;
  background: #fff;
}
.contact .inner{
  width: 770px;
  margin: auto;
  padding: 8rem 0;
}
.contact .contact_text{
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 6rem;
}
.contact .form_textArea{
  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;
  font-size: 16px;
  font-size: 1.6rem;
}
.contact .form_textArea:not(:first-child){
  margin-top: 3rem;
}
.contact .form_textArea.text{
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.contact .form_title{
  width: 200px;
}
.contact .form_textArea.text .form_title{
  margin-top: 1rem;
}
.contact .form_input{
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact .form_textArea input{
  width: 100%;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  border: 1px solid #333;
}
.contact textarea{
  width: 100%;
  padding: 1.5rem 2rem;
  box-sizing: border-box;
  border: 1px solid #333;
}
.contact label, input[type='checkbox'] {
  cursor: pointer;
}
.contact .form_privacy{
  font-size: 16px;
  font-size: 1.6rem;
  display: block;
  text-align: center;
  margin-top: 2rem;
}
.contact .form_privacy a:hover{
  opacity: 1;
  text-decoration: underline;
}
.contact .form_confirm input{
  display: block;
  width: 90%;
  margin: auto;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.25em;
  padding: .5rem;
  background: #808080;
  border: 0;
  border-radius: .5rem;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 2rem;
}
.contact .form_confirm input:hover{
  background: #4d4d4d;
}
.contact .pdf ul{
  display: flex;
  justify-content: center;
  font-size: 19px;
  padding-bottom: 147px;
}
.contact .pdf li{
  border-left: 1px solid #1280ac;
  border-right: 1px solid #1280ac;
}
.contact .pdf li+ li{
  border-left: 0;
  border-right: 1px solid #1280ac;
}
.contact .pdf a{
  color: #1280ac;
  padding: 0 64px;
  letter-spacing: 5px;
}
.company{
  background: #e0e0e0;
}
.company .inner{
  width: 730px;
  margin: auto;
  padding: 8rem 0;
}
.company_posi{
  text-align: center;
  margin-bottom: 1rem;
}
.company_logo{
  text-align: center;
  margin-bottom: 1rem;
}
.company_address{
  text-align: center;
  margin-bottom: 5rem;
}
.company_table{
  margin: auto;
}
.company_table th{
  font-weight: normal;
  text-align: right;
  vertical-align: top;
  padding-right: 5rem;
}
.thanks{
  margin-top: 120px;
  padding: 2rem 5% 10rem; 
}
.thanks_title{
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  color: #1280ad;
  text-align: center;
  margin-bottom: 3rem;
}
.thanks_text{
  font-size: 16px;
  font-size: 1.6rem;
  text-align: center;
}
/*================================
footer
================================*/
.copyright{
  font-size: 15px;
  font-size: 1.5rem;
  padding: 2rem 0;
  background: #4d4d4d;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body {
      min-width: 100%;
  }
  .pc {
      display: none!important;
  }
  .sp {
      display: block!important;
  }
  /*================================
	header
	================================*/
  .header_inner{
    max-width: 100%;
    width: 90%;
    height: 80px;
  }
  .hbox{
    width: calc(100% - 70px);
  }
  .hbox .logo{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .hbox .logo img:first-child{
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .header_menu_bg{
    top: 80px;
  }
  .header_btn:hover{
    background: #fff;
  }
  .header_btn:hover span{
    border-top: 1px solid #000;
  }
	/*================================
	main
	================================*/
  #hero{
    margin-top: 80px;
    height: 100vh;
    background: url(../img/hero_picsp.jpg) no-repeat bottom center / cover;
  }
  .copy_wrap{
    padding-bottom: 4rem;
    display: block;
    position: relative;
  }
  .copy_wrap .copy{
    height: 50%;
  }
  .copy_wrap .copy02{
    width: 90%;
    height: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .about{
    padding: 4rem 8%;
  }
  .about .en_title img{
      width: 40%;
      margin: auto;
  }
  .about .inner{
    width: 100%;
    margin: auto;
    border-radius: 2rem;
  }
  .aboutbg_deco{
    left: -6%;
  }
  .aboutbg_deco img{
    width: 50%;
  }
  .aboutbg_deco::before{
    margin: 20px 20px 20px auto;
  }
  .aboutbg_deco::after{
    margin: 20px 20px 20px auto;
  }
  .about_subtitle{
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .feature_contents_inner{
    width: 90%;
  }
  .feature_flex{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feature_flex.reverse{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }  
  .feature_flex > div:first-child{
    width: 100%;
  }
  .feature_flex > div:last-child{
    width: 100%;
    margin: 2rem auto 0;
  }
  .feature_flex.reverse > div:last-child{
    width: 100%;
    margin: 2rem auto 0;
  }
  .feature_title span{
    font-size: 18px;
    font-size: 1.8rem;
  }
  .feature_contents02::after{
    bottom: auto;
    top: 4rem;
  }
  .flow .inner{
    width: 90%;
    padding: 4rem 0;
    border-radius: 2rem;
  }
  .flow .en_title img{
    width: 30%;
    margin: auto;
  }
  .flow_contents{
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: none;
  }
  .flow_contents_item{
    width: 80%;
    margin: auto;
  }
  .flow_subtitle{
    font-size: 18px;
    font-size: 1.8rem;
  }
  .flow_contents_item_inner{
    padding: 5rem 2rem 4rem;
    z-index: 1;
  }
  .flow_contents .contents_num img{
    width: 80%;
  }
  .flow_contents_item:nth-child(-n+3){
    margin-bottom: 14rem;
  }
  .flow_contents_item:not(:last-child){
    margin-bottom: 14rem;
  }
  .flow_contents_item::before{
    content: '';
    position: absolute;
    bottom: -13%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 13px solid #1280ad;
  }
  .flow_contents_item:last-child:before{
    display: none;
  }
  .flow_contents_item::after{
    content: '';
    position: absolute;
    bottom: -50%;
    left: calc( 50% + 1.5px);
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    border-left: 3px dotted #1280ad;
    z-index: -1;
  }
  .flow_contents_item:last-child:after{
    display: none;
  }
  .member{
    padding: 4rem 0;
  }
  .member .inner{
    width: 90%;
    padding: 4rem 10%;
    border-radius: 2rem;
  }
  .member .en_title img {
      width: 50%;
      margin: auto;
  }
  .member_subtitle{
    font-size: 18px;
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
  .member_flex{
    width: 100%;
  }
  .member_flex_item{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .member_flex_item:not(:last-child){
    margin-bottom: 5rem;
  }
  .member_flex_item > div{
    width: 100%;
    margin: auto;
  }
  .member_flex_item > div:first-child{
    margin-bottom: 5rem;
  }
  .member_posi{
    font-size: 15px;
    font-size: 1.5rem;
  }
  .member_name{
    font-size: 20px;
    font-size: 2rem;
  }
  .contact{
    width: 100%;
  }
  .contact .inner{
    width: 90%;
  }
  .contact .en_title img{
    width: 50%;
  }
  .contact .contact_text{
    font-size: 15px;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .contact .form_textArea{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 14px;
    font-size: 1.4rem;
  }
  .contact .form_textArea:not(:first-child){
    margin-top: 1.5rem;
  }
  .contact .form_title{
    width: 100%;
    margin-bottom: .5rem;
  }
  .contact .form_input{
    width: 100%;
  }
  .contact .form_textArea input{
    padding: 1rem;
  }
  .contact .form_confirm input{
    font-size: 20px;
    font-size: 2rem;
    padding: 2rem 1rem;
    height: 70px;
  -webkit-appearance:none;
  }
  .contact .pdf a{
    display: flex;
    font-size: 19px;
    color: #1280ac;
  }
  .company .inner{
    width: 90%;
    padding: 4rem 0 2rem;
  }
  .company_address{
    font-size: 13px;
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
  .company_table{
    font-size: 13px;
    font-size: 1.3rem;
  }
  .company_table th{
    display: block;
    width: 100%;
    padding: 0;
    font-weight: bold;
    text-align: left;
  }
  .company_table td{
    display: block;
    width: 100%;
    padding: 0 0 1rem;
  }
	/*================================
	footer
	================================*/
  .copyright{
    padding: .5rem;
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
	/*================================
	main
	================================*/
  #hero{
    height: 667px;
  }
}