@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

@font-face {
	font-family: "futura"; 
	src: url("fonts/futura.ttf") format("truetype"); 
}

@font-face {
	font-family: "futur"; 
	src: url("fonts/futur.ttf") format("truetype"); 
}




@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400..800&family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');
/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.my-font01 {
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.02em;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.red {
  color: #fc0202;
}
.base-color01 {
  /*--メイン文字カラー--*/
  color: #000;
}
.base-back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point-color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #2f6aab;
}
.point-color02 {
  /*--ポイント文字カラー 水色 --*/
  color: #2fbbdc;
}
.point-back01 {
  /*--ポイント背景カラー ブルー --*/
  background: #2f6aab;
}
.point-back02 {
  /*--ポイント背景カラー イエロー--*/
  background: #ffb200;
}
.accent-back01 {
  /*--アクセント背景カラー 薄グレー--*/
  background: #f5f5f5;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 無料相談ボタン */
.btn01 {
  display: inline-block;
  text-align: center;
  min-width: 320px;
  letter-spacing: 0.05em;
  border-radius: 80px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .btn01 {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    border-radius: 100px;
  }
}

/* 青枠丸ボタン */
.btn02 {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  min-width: 330px;
  border-radius: 140px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .btn02 {
    width: 100%;
    min-width: 100%;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}

/* title */
.content-title01 {
  color: #000;
  position: relative;
  z-index: 1;
}
.content-title01 .title-english {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .content-title01 .title-english {
    font-size: 40px;
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
.mv_note {
  background-color: #f5f5f5;
  padding: 30px;
  border-radius: 20px 0 0 20px;
  margin-left: calc(50% - 530px);
  margin-bottom: 100px;
}

@media screen and (max-width: 1440px) {
  .mv_note {
    margin-left: 13vw;
    width: calc(100% - 13vw);
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .mv_note {
    margin-left: 0;
    width: 100%;
    border-radius: 0;
    font-size: 3.5vw;
  }
}

.reason_pt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.reason_pt h2 {
  font-size: 44px;
  font-weight: 500;
  width: 400px;
  margin-right: 30px;
  line-height: 1.3;
}

.reason_pt .reason_dt {
  width: calc(100% - 430px);
}
.reason_pt .reason_dt dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #aaa;

}
.reason_pt .reason_dt dl dt {
  width: 138px;
}
.reason_pt .reason_dt dl dt span {
  color: #4b6daf;
  font-size: 70px;
  font-weight: 500;
  font-family: "futura";
  line-height: 1;
}
.reason_pt .reason_dt dl dt .title {
  color: #3379ff;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.reason_pt .reason_dt dl dd {
  width: calc(100% - 138px);
  font-size: 14px;
}
.reason_pt .reason_dt dl dd .title {
  color: #3379ff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn_link {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #333;
  padding: 15px 80px 15px 30px;
  cursor: pointer;

  background: linear-gradient(white, white) padding-box,
  linear-gradient(to right, #01abff, #3902da) border-box;
  border-radius: 50em;
  border: 3px solid transparent;
}
.btn_link::after {
  content: "";
  background: url(../images/i_arrow_gw.svg) no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain;
  position: absolute;
  right: 20px;
}
.btn_center {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.htitle_pt {
  margin-bottom: 50px;

}
.htitle_pt .stitle{
  font-size: 14px;
}

.htitle_pt h2 {
  font-family: "futur";
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.2;
  color: #02a8fe; 
  background-image: linear-gradient(45deg, #02a8fe 20%, #3804da 80%); 
  background-clip: text; 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

@media screen and (max-width: 768px) {
  .reason_pt {
    margin-bottom: 50px;
  }
  .reason_pt h2 {
    font-size: 7vw;
    font-weight: bold;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #aaa;
}
  .reason_pt .reason_dt {
    width: 100%;
  }
  .reason_pt .reason_dt dl dt {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  .reason_pt .reason_dt dl dt span {
    font-size: 10vw;
    margin-right: 3vw;
  }
  .reason_pt .reason_dt dl dt .title {
    color: #4b6daf;
    font-size: 4vw;
    margin-bottom: 0;
  }
  .reason_pt .reason_dt dl dd {
    width: 100%;
  }
  .reason_pt .reason_dt dl {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .btn_link {
    display: table;
    margin: 0 auto;
    font-size: 3.5vw;
    padding: 2vw 18vw 2vw 7vw;
  }
  .btn_link::after {
    width: 5vw;
    height: 5vw;
    right: 4vw;
    top: calc(50% - 2.5vw);
  }

  .htitle_pt h2 {
    font-size: 8vw;
  }

}

.archive_pt {
  margin-bottom: 100px;
}
.archive_pt ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.archive_pt ul li {
  width: 48%;
  margin-bottom: 30px;
}
.archive_pt ul li dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
/*  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;*/
}
.archive_pt ul li dl dt {
  color: #0090f4;
  font-size: 20px;
  font-weight: bold;
  /*width: 75%;*/
  width: calc(100% - 160px);
}
.archive_pt ul li dl dt .red {
  font-size: 28px;
}
.archive_pt ul li dl dt .year {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}
.archive_pt ul li dl dd {
  font-size: 28px;
  color: #4b6daf;
  width: 160px;
}
.archive_pt ul li dl dd span {
  font-family: "futura";
  font-size: 60px;
  color: #4b6daf;
}
.archive_pt ul li dl dd figure {
    height: 100px;
    text-align: center;
}
.archive_pt ul li dl dd figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (max-width: 768px) {
  .archive_pt {
    margin-bottom: 50px;
  }
  .archive_pt ul {
    width: 100%;
  }
  .archive_pt ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .archive_pt ul li dl dt {
    font-size: 3.75vw;
    width: calc(100% - 25vw);
  }
  .archive_pt ul li dl dt .red {
    font-size: 4.75vw;
  }
  .archive_pt ul li dl dt .year {
    font-size: 3.5vw;
  }
  .archive_pt ul li dl dd {
    font-size: 6vw;
    width: 25vw;
  }
  .archive_pt ul li dl dd figure {
    height: 70px;
  }
  .archive_pt ul li dl dd span {
    font-size: 14vw;
    line-height: 1.2;
  }
}

.slider_pt {
  margin-bottom: 100px;
}
.slider_list {
  display: flex;
  width: calc(50% + 600px);
  margin: 0 0 50px auto;
  padding: 0;
  position: relative;
}
.slider_list  .slick-slide {
  margin: 0 20px; 
}

.slider_list .slick-list {
  padding: 0px 10% 0px 0px !important;
}

.htitle_slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress {
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  margin-left: 100px;
  
  background-color: #f5f5f5;
  background-image: linear-gradient(to right, #4b6daf, #4b6daf);
  background-repeat: no-repeat;
  background-size: 0 100%;
  
  transition: background-size .4s ease-in-out;
}


.slider_list li a figure {
 margin-bottom: 15px;
}
.slider_list li a figure img {
  width: 100%;    
  height: 260px;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
.slider_list li a {
  display: block;
  font-size: 14px;
}
.slider_list li a:hover { opacity: 0.7; }

.slider_list li a .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}




@media screen and (max-width: 768px) {
  .slider_pt {
    margin-bottom: 50px;
  }
  .slider_list {
    width: 100%;
    margin: 0 0 50px auto;
  }
  .slider_list .slick-slide {
    margin: 0 10px;
  }

  .progress {
    width: calc(100% - 40px);
    margin: 0 20px 30px 20px;
  }

  .slider_list li a figure img {
    height: 60vw;
  }
}

.consult_pt {
  margin-bottom: 100px;
}

.consult_pt .consult_dt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.consult_pt .consult_dt dt {
  width: 250px;
  margin-right: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 14px;
}
.consult_pt .consult_dt dt .htitle_pt {
  margin-bottom: 30px;
}

.consult_pt .consult_dt dd {
  width: calc(100% - 300px);
}
.consult_pt .consult_dt dd .consultant_list li {
  margin: 0 20px;
  font-size: 14px;
}
.consult_pt .consult_dt dd .consultant_list li a:first-child {
  display: block;
  margin-bottom: 30px;
}
.consult_pt .consult_dt dd .consultant_list li figure {
  margin: 0 0 15px 0;
  padding: 0 0 0 0;
  width: 100%;
  position: relative;
}
.consult_pt .consult_dt dd .consultant_list li figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}
.consult_pt .consult_dt dd .consultant_list li .name {
  font-size: 18px;
  font-weight: bold;
}
.consult_pt .consult_dt dd .consultant_list li .job {
  font-size: 12px;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .consult_pt {
    margin-bottom: 50px;
  }
  .consult_pt .consult_dt {
    margin-bottom: 30px;
  }
  .consult_pt .consult_dt dt {
    width: 100%;
    margin-bottom: 50px;
  }
  .consult_pt .consult_dt dd {
    width: 100%;
  }
  .consult_pt .consult_dt dd .consultant_list li {
    margin: 0 10px;
  }
  .consult_pt .consult_dt dd .consultant_list li figure img {
    height: 59vw;
  }
  
}

.topics_pt {
  padding: 80px 0;
  margin-bottom: 100px;
  background: #f5f5f5;
}
.topics_pt .topics_title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.topics_pt .topics_title .htitle_pt {
  width: 200px;
}
.topics_pt .taglist {
  width: calc(100% - 200px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 50px;
  position: absolute;
  top: 25px;
  right: 0;
}
.topics_pt .taglist li {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #4b6daf;
  border: 1px solid #4b6daf;
  border-radius: 30px;
  padding: 7px 10px;
  margin: 0 0 5px 10px;
  min-width: 140px;
  cursor: pointer;
}
.topics_pt .taglist li.active {
  background-color: #f5f5f5;
  color: #4b6daf;
}

.topics_pt .topics_dt dl {
  display: flex;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.topics_pt .topics_dt dl dt {
  width: 300px;
}
.topics_pt .topics_dt dl dt .date {
  width: 100px;
  margin-right: 20px;
  font-size: 15px;
  font-weight: bold;
}
.topics_pt .topics_dt dl dt .tag {
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #4b6daf;
  border: 1px solid #4b6daf;
  border-radius: 30px;
  padding: 7px 10px;
  margin: 0 0 5px 10px;
  min-width: 140px;
}

.topics_pt .topics_dt dl dd {
  width: calc(100% - 300px);
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .topics_pt {
    padding: 40px 0;
    margin-bottom: 50px;
  }
  .topics_pt .topics_title {
    flex-wrap: wrap;
  }
  .topics_pt .topics_title .htitle_pt {
    width: 100%;
	margin-bottom: 30px;
  }
  .topics_pt .taglist {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
	margin-bottom: 30px;
	position: static;
  }
  .topics_pt .taglist li {
    font-size: 3vw;
    padding: 1vw 3vw;
    margin: 0 10px 5px 0;
    min-width: 23vw;
  }
  .topics_pt .topics_dt dl {
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .topics_pt .topics_dt dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
  .topics_pt .topics_dt dl dd {
    width: 100%;
  }
  .topics_pt .topics_dt dl dt .tag {
    font-size: 3vw;
    padding: 1vw 3vw;
    margin: 0;
    min-width: 23vw;
  }
}


/* タブ切り替え */
.panel { display: none; }
.panel.active { display: block; }


.flow_faq_pt {
  padding: 30px 0;
  margin-bottom: 100px;
  background-color: #f5f5f5;
}

.flow_faq_pt a {
  display: flex;
  align-items: center;
  width: 300px;
  position: relative;
  margin: 50px 0;
  line-height: 1;
}
.flow_faq_pt a:after {
  content: ""; 
  background: url(../images/i_arrow_bw.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: contain;
  position: absolute;
  right: 0;

}

.flow_faq_pt a label {
  font-family: "futur";
  font-size: 40px;
  font-weight: 500;
  margin-right: 20px;
  color: #4b6daf;
}
.flow_faq_pt a span {
  font-size: 14px;
  color: #3379ff;
}

@media screen and (max-width: 768px) {
  .flow_faq_pt {
    padding: 10px 0;
    margin-bottom: 50px;
  }
  .flow_faq_pt a {
    display: flex;
    width: 64vw;
    margin: 30px 0;
}
  .flow_faq_pt a label {
    font-size: 8vw;
    margin-right: 3vw;
  }
  .flow_faq_pt a span {
    font-size: 3.5vw;
  }
  .flow_faq_pt a:after {
    width: 5vw;
    height: 5vw;
  }
}


.access_pt {
  margin-bottom: 100px;
}
.access_pt .access_dt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.access_pt .access_dt li {
  width: 50%;
}
.access_pt .access_dt li:first-child {
  width: 46%;
}
.access_pt .access_dt li figure img {
  width: 100%;
  border-radius: 20px;
}

.access_pt .access_dt li .access_item {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ccc;
  font-size: 16px;
}
.access_pt .access_dt li .access_item .title {
  color: #3379ff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.sns_list a {
  display: inline-block;
  margin: 0 20px 10px 0;
}

@media screen and (max-width: 768px) {
  
  .access_pt {
    margin-bottom: 50px;
  }
  .access_pt .access_dt li {
    width: 100%;
  }
  .access_pt .access_dt li:first-child {
    width: 100%;
    margin-bottom: 20px;
  }
  .access_pt .access_dt li .access_item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 3.5vw;
  }
  .access_pt .access_dt li .access_item .title {
    font-size: 5vw;
  }
}


.recruit_pt {
  background-color: #f5f5f5;
  padding: 80px 0;
}
.recruit_pt .recruit_dt {
  margin-bottom: 50px;
}
.recruit_pt .recruit_dt .title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}
.recruit_pt .recruit_dt .desc {
  font-size: 14px;
  margin-bottom: 40px;
}

.btn_contact_link {
  display: table;
  color: #fff;
  font-size: 40px;
  padding: 0.5em 2em;
  margin: 0 auto;
  border-radius: 20px;
  background: rgb(1,171,255);
  background: linear-gradient(90deg, rgba(1,171,255,1) 0%, rgba(57,3,218,1) 100%);
}

@media screen and (max-width: 768px) {
  
  .recruit_pt {
    padding: 40px 0;
  }
  .recruit_pt .recruit_dt .title {
    font-size: 6vw;
  }
  .recruit_pt .recruit_dt .desc {
    font-size: 3.5vw;
  }

  .recruit_pt .btn_link {
    display: inline-block;
    margin: 0 auto;
  }
  .btn_contact_link {
    width: 100%;
    font-size: 5vw;
    text-align: center;
    padding: 3vw;
    border-radius: 12px;
  }

}