@charset "UTF-8";
/* CSS Document */

/*セクション間余白----------------------------------------------------------- */
section {
  padding: 100px 0;
}

footer {
  padding: 60px 0;
}

/*色関連----------------------------------------------------------- */
.bg_cl1 {
  background-color: #eeeef5;
}

.bg_cl2 {
  background-color: #f3f2f2;
}

.cl_base {
  color: #ff00cc;
}

.cl_main {
  color: #0064b3;
}

.cl_accent {
  color: #4265a1;
}

.cl_other1 {
  color: #4265a1;
}

.cl_other2 {
  color: #4265a1;
}

/*テキスト関連----------------------------------------------------------- */
.highlight {
  background: -webkit-linear-gradient(transparent 60%, #f9d21a 50%);
  background: -o-linear-gradient(transparent 60%, #f9d21a 50%);
  background: linear-gradient(transparent 60%, #f9d21a 50%);
  font-weight: bold;
}

/*リンク色----------------------------------------------------------- */
a:link,
a:visited {
  color: #162bee;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/*はみ出し画像中央----------------------------------------------------------- */
.wic_wrap {
  overflow-x: hidden;
}
.wic img {
  width: auto;
  max-width: unset;
}

.wic1 {
  margin-left: calc(50% - 1000px);
}
.wic1 img {
  width: 2000px;
  max-width: 2000px;
}

.wic2 {
  margin-left: calc(50% - 600px);
}
.wic2 img {
  width: 1200px;
  max-width: 1200px;
}

.wic3 {
  margin-left: calc(50% - 800px);
}
.wic3 img {
  width: 1600px;
  max-width: 1600px;
}

/*Page Top----------------------------------------------------------- */
.pagetop a {
  background-color: #000;
  filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.3));
}

/*Header----------------------------------------------------------- */
#header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background: #fff;
}
header .logo {
  height: 60px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 15px;
  padding-right: 95px;
}
header .logo p:nth-child(2) {
  margin-left: auto;
}
header .container {
  display: flex;
  justify-content: space-between;
  padding: 10px 15px;
}

#nav_toggle {
  position: absolute;
  top: 0;
  /**/
  right: 0;
  /**/
  width: 80px;
  /**/
  height: 80px;
  padding: 20px;
  background: #f9d21a;
}
@media screen and (min-width: 768px) {
  #nav_toggle {
    right: 15px;
  }
}
#nav_toggle div {
  position: relative;
  width: 30px;
  /**/
  margin: 0 auto;
}
#nav_toggle span {
  display: block;
  height: 4px;
  background: #000;
  position: absolute;
  width: 100%;
  left: 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 3px;
}
#nav_toggle span:nth-child(1) {
  top: 5px;
  /**/
}
#nav_toggle span:nth-child(2) {
  top: 15px;
  /**/
}
#nav_toggle span:nth-child(3) {
  top: 25px;
  /**/
}
.open #nav_toggle span:nth-child(1) {
  top: 12px;
  /**/
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav_toggle span:nth-child(3) {
  top: 12px;
  /**/
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
div#nav_toggle:after {
  content: "MENU";
  color: #000;
  display: block;
  padding-top: 80%;
  /**/
  font-family: "Roboto Condensed",sans-serif;
  font-style: italic;
  font-size: 11px;
  text-align: center;
}
.open div#nav_toggle:after {
  content: "CLOSE";
}

/*Navi----------------------------------------------------------- */
nav {
  width: 100%;
  position: fixed;
  top: 80px;
  padding-left: 0;
  padding-right: 0;
  background-color: #f9d21a;
  z-index: 999;
}
nav ul {
  display: flex;
  color: #fff;
}
nav li {
  width: 20%;
  border-right: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  line-height: 1em;
}
nav li:first-child {
  border-left: 1px solid #fff;
}
nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: #000;
  font-weight: bold;
  padding: 24px 0;
  background-color: #f9d21a;
  text-align: center;
}
nav li a:link,
nav li a:visited {
  color: #000;
}
nav li a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #000;
  opacity: 1;
}
nav li a p {
  -ms-word-break: break-all;
  word-break: break-all;
}

/*MV----------------------------------------------------------- */
.mv{
  padding: 80px 0 0 0;
}
.mv .lead{
  background: #000;
  padding: 15px 0;
}
.mvarea{
  background: url(../img/pc_mv_bg.png) left center;
  background-size: cover;
}
.mvarea02{
  background: url(../img/pc_mv_bg02.png) left center;
  background-size: cover;
}

/*sec01----------------------------------------------------------- */
.sec01 .blue_box{
  background: #0064b3;
  padding: 30px;
  color: #fff;
}

/*sec02----------------------------------------------------------- */
.sec02{
  background: #e1effa;
}

/*sec04----------------------------------------------------------- */
.sec04 h2{
  background: #000;
  padding: 45px 0;
}

/*cta----------------------------------------------------------- */
.cta{
  background: #0064b3;
}
.cta_box{
  padding: 10px;
  background: url(../img/pc_cta_bg.png) right center #fff;
  background-size: cover;
  position: relative;
}
.cta_in_box{
  border: 2px solid #0064b3;
  padding: 60px;
}
.cta_img, .cta_img_c{
  position: absolute;
  bottom: 0;
  right: 8%;
}
.cta_left{
  width: 70%;
}
.pc_cta_box_tel{
  margin-left: -28px;
}
.pc_cta_box_tel02{
  margin-left: 0;
}
/*--
.cta_left_c{
  width: 70%;
}
.pc_cta_box_tel_c{
  margin-left: -28px;
}
--*/
.pc_pr_5{
  padding-right: 5px;
}
.pc_pl_5{
  padding-left: 5px;
}

@media (min-width: 768px) and (max-width: 1229px) {
  .cta_img, .cta_img_c{
    right: 0;
  }
  .cta_img img, .cta_img_c img {
    width: 75%;
  }
  .cta_left_c, .pc_cta_box_tel_c{
  width: 70%;
  }

}

/*cta2----------------------------------------------------------- */
.cta2 h2{
  padding-bottom: 0;
}
.cta2 .cta2_in_box{
  border: 3px solid #008cd4;
  padding: 62px 60px;
  background: url(../img/pc_cta2_bg.png) no-repeat;
}
.cta2 .cta2_men{
  position: absolute;
  right: 50px;
  bottom: 3px;
}

/*sec05----------------------------------------------------------- */
.sec05, .sec05_c{
  background: #e6e6e6;
}

/*sec07----------------------------------------------------------- */
.sec07{
  background: url(../img/pc_sec07_bg.png);
}
.sec07 .white_box_l{
  border: 5px solid #0064b3;
  padding: 55px;
}
.sec07 .white_box_l h3{
  border-bottom: 2px solid #176fc1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.sec07 .white_box_l .name{
  display: inline-block;
  background: #000;
  color: #fff;
  font-weight: bold;
  padding: 5px 10px;
}
/*sec08----------------------------------------------------------- */
.sec08{
  background: #fcfaf1;
}
.slick1__container {
  overflow: hidden;
}
.slick1 {
    width: 100%;
    max-width: 1250px;
    margin: 15px auto;
    position: relative;
    @include breakpoint(500px) {
      margin: 5% auto;
    }
}
.slick1__item {
    margin-right: 15px;
    margin-left: 15px;
}
.slick1__item img {
    height: auto;
    width: 100%;
}
.slick1 button.arrow_name {
    width: 74px;
    height: 74px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    cursor: pointer;
    z-index: 5;
}
.slick1 button.arrow_name::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
}
.slick1 button.prev_arrow {
    top: calc(50% - 37px);
    left: 0;
}
.slick1 button.next_arrow {
    top: calc(50% - 37px);
    right: 0;
}
.slick1 button.prev_arrow::before {
    left: 52%;
    transform: translate(-50%,-50%)  rotate(225deg);
}
.slick1 button.next_arrow::before {
    left: 48%;
    transform: translate(-50%,-50%)  rotate(45deg);
}
.slick1 button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}
.slick-slider button:focus {
  outline: none;
}
.slick-list{
    overflow: visible;
}

/*sec10----------------------------------------------------------- */
.sec10{
  background: #eff6fb;
}
.sec10 h2{
  padding-top: 45px;
  padding-bottom: 45px;
  background: url(../img/pc_sec10_h2_bg.png) center center;
  background-size: cover;
}
.sec10 .white_box_l h3{
  margin-top: -75px;
}

/*sec11----------------------------------------------------------- */
.sec11 .step{
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 10px;
}
.sec11 .step p{
  margin:0 auto;
  width: 93px;
  background: #000;
  display: inline-block;
}
.sec11 h3{
  font-weight: bold;
  font-size: 22px;
}
.sec11 .step_txt{
  font-size: 16px;
}
.step_img{
  position: relative;
}
.step_arrow{
  position: absolute;
  top: 40%;
  right: -20px;
}

.sec11_2 {
  background: #edf6fd;
  padding-top: 0;
}

.sec11_2 .ttl_h2{
  background: #0064b3;
  padding: 65px 0;
}
.sec11_2 .arr{
  margin-bottom: 60px;
  margin-top: -44px;
}

/*sec12----------------------------------------------------------- */
.sec12{
  background: #efefef;
  padding-top: 0;
}
.staff_lead{
  color: #0064b3;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}
.staff_name{
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 15px;
}
.staff_name span{
  font-size: 14px;
  color: #abd4f5;
}
.staff_com{
  width: 100%;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 30px;
}
.staff_com th{
  background: #0064b3;
  color: #fff;
  padding: 12px;
  width: 15%;
  vertical-align: middle;
}
.staff_com td{
  background: #efefef;
  color: #0064b3;
  padding: 12px;
  vertical-align: middle;
}
.staff_txt{
  font-size: 16px;
}
.slick2__container {
  overflow: hidden;
}
.slick2 {
    width: 100%;
    max-width: 1250px;
    padding: 30px 15px;
    margin: 15px auto;
    position: relative;
    @include breakpoint(500px) {
      margin: 5% auto;
    }
}
.slick2__item {
    margin-right: 15px;
    margin-left: 15px;
}
.slick2__item img {
    height: auto;
    width: 100%;
}
.slick2 button.arrow_name {
    width: 74px;
    height: 74px;
    background-color: rgba(0, 0, 0, 0.7);
    position: absolute;
    cursor: pointer;
    z-index: 5;
}
.slick2 button.arrow_name::before {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 50%;
}
.slick2 button.prev_arrow {
    top: calc(50% - 37px);
    left: -15px;
}
.slick2 button.next_arrow {
    top: calc(50% - 37px);
    right: -15px;
}
.slick2 button.prev_arrow::before {
    left: 52%;
    transform: translate(-50%,-50%)  rotate(225deg);
}
.slick2 button.next_arrow::before {
    left: 48%;
    transform: translate(-50%,-50%)  rotate(45deg);
}
.slick2 button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.fix_sec12 .white_box_l{
  padding: 0;
}

.sec12 .slick-initialized .slick-slide {
  margin: 0 15px;
}

.taglist {
	display: grid;
	grid-template-columns: repeat(6, 6fr);
	grid-column-gap: 2px;
	grid-row-gap: 2px;
}
.taglist02 {
	display: grid;
	grid-template-columns: repeat(4, 4fr);
	grid-column-gap: 14.66px;
	grid-row-gap: 14.66px;
}
.taglist02_c {
	display: grid;
  /*--
	grid-template-columns: repeat(4, 4fr);
  --*/
	grid-template-columns: repeat(3, 3fr);
	grid-column-gap: 14.66px;
	grid-row-gap: 14.66px;
}
/*Footer----------------------------------------------------------- */
footer{
  background: #212121;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

footer .copy {
  text-align: center;
}

footer a:link, footer a:visited {
  color: #000;
  transition: all .3s;
}

footer a:hover, footer a:focus {
  color: #000;
  opacity: .7;
}

footer ul li {
  display: inline-block;
  margin: 0 5px;
  white-space: nowrap;
}

footer .copy {
  font-size: 90%;
}
footer a:link, footer a:visited {
  color: #fff;
  text-decoration: underline;
}


/*sec13----------------------------------------------------------- */
.sec13{
  background-color: #E4E5E5;
}
.sec13 .accordion-008 {
    max-width: 100%;
    margin-bottom: 30px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.sec13 .accordion-008 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1.8rem 4.8rem 1.8rem 2rem;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
    font-size: 24px;
}
.sec13 .accordion-008 summary .flex-item1{
    flex-basis: 96%; /* flexアイテムの幅を割合で指定 */
    display: flex;
    align-items: center;
}
.sec13 .accordion-008 summary .flex-item1 span{
        flex: 1; 
}
.sec13 .accordion-008 summary .flex-item1::before {
    content: 'Q';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #000000;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.2rem;
    width: 80px;
    height: 80px;
    position: relative;
    margin-top: -.1rem;
    margin-right: 1rem;
}

.sec13 .accordion-008 summary::-webkit-details-marker {
    display: none;
}

.sec13 .accordion-008 summary::before,
.sec13 .accordion-008 summary::after {
    width: 3px;
    height: .9em;
    border-radius: 5px;
    background-color: #333333b3;
    content: '';
}

.sec13 .accordion-008 summary::before {
    position: absolute;
    right: 2em;
    rotate: 90deg;
}

.sec13 .accordion-008 summary::after {
    transition: rotate .3s;
}

.sec13 .accordion-008[open] summary::after {
    rotate: 90deg;
}

.sec13 .accordion-008 div.flex-item2{
    flex-basis: 96%; /* flexアイテムの幅を割合で指定 */
    display: flex;
    align-items: center;
    padding: 1.8rem 4.8rem 1.8rem 2rem;
    border-top: 1px dashed #eee;
}
.sec13 .accordion-008 div.flex-item2::before {
    content: 'A';
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    background-color: #A0A0A0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 2.2rem;
    width: 80px;
    height: 80px;
    position: relative;
    margin-top: -.1rem;
    margin-right: 1rem;
}

.sec13 .accordion-008 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    color: #333333;
    transition: transform .5s, opacity .5s;
    flex: 1; 
}

.sec13 .accordion-008 p span{
    font-weight: 700; 
}

.sec13 .accordion-008[open] .flex-item2 p{
    transform: none;
    opacity: 1;
}