@charset "utf-8";
/* CSS Document */

/* =============================================================================
 Reset
============================================================================= */

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
*,:after,:before{box-sizing:border-box}button,input[type=button]{margin:0;padding:0;border:0;border-radius:0;background-color:transparent;outline:0;-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer}





/* =============================================================================
 variable
============================================================================= */
:root {
  --color-base: #000;
  --color-black: #000;
  --color-white: #fff;
  --color-blue: #0054e2;
  --color-gray: #f1f1f1;

  --gradient-01: linear-gradient(to right, var(--base-black) 0%, rgba(0,0,0) 100%);

  --fzPC-01: 1.5rem;
  --fzSP-01: 1.4rem;

  --content-width: 1220px;

  --transition-op: opacity ease .3s,visibility ease .3s;
  --transition-trf: transform ease .3s;
  --transition-all: all ease .3s;

}





/* =============================================================================
 Fonts
============================================================================= */

html {
  font-size: 62.5%;
}
body {
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.2rem;
  }
}

.en {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}



/* =============================================================================
 Elements
============================================================================= */

/* color setting */
body {
}



/* link setting */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a.on {
  text-decoration: none;
  opacity: 1;
  transition: opacity ease .3s;
}
@media (hover: hover) {
a.on:hover {
  text-decoration: none;
  opacity: .7;
}
}


/* image setting */
img {
  max-width: 100%;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}



/* box */
*,*:before,*:after {
  box-sizing: border-box;
}
.radius {
  border-radius: 3px;
}


/* cursor */
button {
  cursor: pointer;
}


/* button */
.btnArea {
  margin-top: 2.5em;
}
.btnArea a {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  padding: 1.2em 1em;
  position: relative;
  display: block;
  background-color: var(--color-blue);
  border-radius: 3px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
}
.btnArea a:before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  margin: auto 0;
  display: block;
  border: #fff 1px solid;
  border-radius: 100px;
  position: absolute;
  right: 1em;
  top: 0;
  bottom: 0;
}
.btnArea a:after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  margin: auto 0;
  display: block;
  border-top: #fff 1px solid;
  border-right: #fff 1px solid;
  position: absolute;
  right: 1.45em;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.btnArea a.contactBtn {
  background-color: var(--color-white);
  color: var(--color-blue);
}
.btnArea a.contactBtn:before {
  border: var(--color-blue) 1px solid;
  background-color: var(--color-blue);
}
@media screen and (max-width: 767px) {
.btnArea a {
  max-width: calc(480/750*100vw);
  font-size: calc(28/750*100vw);
}
}

.btnArea a.btnTarget:before {
  border: none;
  border-radius: 0;
  width: 1em;
  height: 1em;
  transform: translateY(-2px);
  background: url("../images/icon_target.svg") no-repeat;
  background-size: cover;
}
.btnArea a.btnTarget:after {
  content: none;
}
@media screen and (max-width: 767px) {
.btnArea a {
  max-width: calc(480/750*100vw);
  font-size: calc(28/750*100vw);
}
}



/* =============================================================================
 Responsive Class
============================================================================= */

@media screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .menu_list.navi-sp {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  .menu_list.navi-pc {
    display: none !important;
  }
}



/* =============================================================================
 Base Layout
============================================================================= */

body {
}

#container {
}
#mainArea {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
}





/* =============================================================================
 global navi
============================================================================= */

#globalNavi {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
.naviInner {
  width: 100%;
  height: 80px;
  padding: 0 20px;
  position: relative;
}
.naviInner .logo {
  width: 120px;
  height: 40px;
  margin: auto 0;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  z-index: 2;
}
.menu_list {
  width: 100%;
  height: 80px;
  padding: 0 0 0 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 3em;
  position: relative;
  z-index: 1;
}
.menu_list > li > a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-base);
}
.menu_list > li > a .jp {
  display: block;
  font-size: 50%;
}
@media (hover: hover) {
.menu_list > li > a:hover {
  text-decoration: none;
  opacity: .7;
}
}
@media screen and (min-width: 1000px) {
  .menu_list {
    transform: translateX(0) !important;
    visibility: visible !important;
  }
  .menu_bg {
    transform: translateX(100%) !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 999px) {
.naviInner .logo {
  width: 60px;
  height: 20px;
  left: 15px;
}
.naviInner {
  height: 50px;
  padding: 0 15px;
}
  .menu_list {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 26px 0;
    left: 0;
    padding: 120px 0 0 calc(68/750*100vw);
    position: absolute;
    transform: translateX(100%);
    transition: 0.3s; /* カスタマイズしてください */
    top: 100%;
    width: 100%;
    height: 50px;
    visibility: hidden;
  }
  .menu_list > li > a {
    font-size: 22px;
    color: var(--color-white);
  }
  .menu_list > li > a .en {
    position: relative;
    display: inline-block;
  }
  .menu_list > li > a .en:before {
    content: "";
    width: 20px;
    height: 20px;
    margin: auto 0;
    display: block;
    border-radius: 20px;
    background-color: var(--color-base);
    position: absolute;
    right: -26px;
    top: 0;
    bottom: 0;
  }
  .menu_list > li > a .en:after {
    content: "";
    width: 7px;
    height: 7px;
    margin: auto;
    display: block;
    border-top: #fff 2px solid;
    border-right: #fff 2px solid;
    position: absolute;
    right: -19px;
    top: 0;
    bottom: 0;
    transform: rotate(45deg);
  }
  .menu_list > li > a .jp {
    font-size: 12px;
    margin-top: 0.6em;
    color: var(--color-base);
  }
  #hamburger:checked ~ .menu_list {
    transform: translateX(20%);
    transition: 0.3s;
    visibility: visible;
  }
}

.menu_input {
  display: none;
}

.menu_bg {
  background: linear-gradient(180deg, rgb(0, 107, 243,.95), rgb(65, 142, 245,.95));
  cursor: pointer;
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
  transform: translateX(100%);
  transition: 0.3s;
}

#hamburger:checked ~ .menu_bg {
  transform: translateX(0);
  transition: 0.3s;
}

.menu_button {
  display: none;
}

@media screen and (max-width: 999px) {
  .menu_button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px;
    height: 50px;
    justify-content: center;
    width: 34px;
    position: absolute;
    right: 15px;
    top: 0;
    z-index: 1;
  }
}

.menu_button-mark {
  background-color: #000;
  display: block;
  height: 6px;
  transition: 0.3s;
  width: 32px;
}

@media screen and (max-width: 999px) {
  #hamburger:checked
    ~ .menu_button
    .menu_button-mark:nth-of-type(1) {
    transform: translate(2px, -5px) rotate(45deg);
    transform-origin: 0%;
  }
  #hamburger:checked
    ~ .menu_button
    .menu_button-mark:nth-of-type(2) {
    transform: translate(2px, 5px) rotate(-45deg);
    transform-origin: 0%;
  }
}




/* =============================================================================
 common footer
============================================================================= */

#footer {
}

@media screen and (max-width: 767px) {
}





/* =============================================================================
 Common Block Styles
============================================================================= */

/* side navi */
#sideNavi {
}

/* pagetop */
#pagetop {
}

@media screen and (max-width: 767px) {
}

/* parts */
.slash:before {
  content: "/";
  margin-right: 0.2em;
}

.secInner {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
.secInner {
  padding: 0 calc(40/750*100vw);
}
}

.secLead {
  margin-bottom: 0.8em;
  font-size: 44px;
  line-height: 1.46;
  color: var(--color-base);
  position: relative;
}
.secLead.border:before {
  content: "";
  width: 1.5em;
  height: 0.2em;
  position: absolute;
  left: 0;
  top: -0.5em;
  display: block;
  background-color: var(--color-blue);
}
.secLead .subText {
  font-size: 20px;
  color: var(--color-white);
}
@media screen and (max-width: 767px) {
.secLead {
  margin-bottom: 0.4em;
  font-size: calc(64/750*100vw);
}
.secLead .leadText {
  line-height: 1.32;
}
.secLead .subText {
  font-size: calc(32/750*100vw);
}
}


/* slick */
.slick-dots {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 6px;
}
.slick-dots > li > button {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  font-size: 0;
  display: block;
  background-color: #c8c8c8;
}
.slick-dots > li.slick-active > button {
  width: 20px;
  background-color: var(--color-blue);
}


/* =============================================================================
 Page Styles
============================================================================= */
/* hero */
.hero .secInner {
  width: 100%;
  padding: 0;
  max-width: none;
  position: relative;
}
.hero .secInner .lead01 {
  width: 504px;
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 5;
}
.hero .secInner ul.mvslide img {
  width: 100%;
  max-width: none;
}
@media screen and (max-width: 767px) {
.hero .secInner .lead01 {
  width: calc(608/750*100vw);
  bottom: calc(82/750*100vw);
}
}


/* about */
.about {
  width: 100%;
  margin: 0;
  padding: 0 0 170px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgb(38, 94, 229), rgb(67, 141, 250));
  transform: skewY(-10deg) translateY(calc(-130/1440*100vw));
  z-index: -1;
}
.about .secInner {
  padding-top: calc(180/1440*100vw);
}
.about .flex .left {
  width: calc(510/1100*100%);
}
.about .flex .right {
  width: calc(570/1100*100%);
}
.about .flex .text01 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 2.2;
}
.about .flex .right .img01 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .about .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .about .img01 {
    width: 570px;
  }
}
@media screen and (max-width: 767px) {
.about {
  padding: 0 0 60px;
}
.about:before {
  background: linear-gradient(180deg, rgb(38, 94, 229), rgb(67, 141, 250));
  transform: skewY(-20deg) translateY(calc(-260/1440*100vw));
}
.about .flex .left {
  width: 100%;
}
.about .flex .right {
  width: 100%;
}
.about .flex .text01 {
  margin-bottom: 2em;
  font-size: calc(30/750*100vw);
  line-height: 1.64;
}
}


/* point */
.point {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
  position: relative;
}
.point:before {
  content: "";
  position: absolute;
  top: calc(-130/1440*100vw);
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: calc(130/1440*100vw);
  background: var(--color-gray);
  transform: skewY(-10deg);
  z-index: -1;
}
.point .backimg01 {
  display: block;
  width: 468px;
  height: 360px;
  position: absolute;
  left: -40px;
  top: -60px;
  z-index: -1;
}
.point .secInner {
  padding-top: 120px;
}
.point .pointLead {
  margin-bottom: 1em;
  line-height: 1.32;
}
.point .pointLead .subText {
  margin-bottom: 0.2em;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  display: block;
}
.point .pointLead .subText .num {
  margin-left: 0.2em;
  font-size: 150%;
}
.point .pointLead .leadText {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-base);
}
.point .text01 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
}
@media screen and (min-width: 768px) {
.point .pointSlide {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  gap: 55px 60px;
  flex-wrap: wrap;
}
.point .pointSlide li {
  width: 272px;
}
}
@media screen and (max-width: 767px) {
.point {
  padding: 0 0 100px;
}
.point .secInner {
  padding-top: 60px;
}
.point:before {
  background: var(--color-gray);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
.point .backimg01 {
  width: calc(721/750*100vw);
  height: calc(523/750*100vw);
  left: calc(-140/750*100vw);
  top: -20px;
}
.point .pointArea {
  width: calc(100% + 80/750*100vw);
  margin-left: calc(-40/750*100vw);
}
.point .pointLead .subText {
  font-size: calc(26/750*100vw);
}
.point .pointLead .leadText {
  font-size: calc(32/750*100vw);
}
.point .text01 {
  font-size: calc(26/750*100vw);
}
.point .slick-slide {
  margin: 0 1em;
}
}


/* event */
.event {
  width: 100%;
  margin: 0;
  padding: 0 0 60px;
  position: relative;
}
.event:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: calc(130/1440*100vw);
  background: var(--color-white);
  transform: skewY(-10deg);
  z-index: -1;
}
.event .backimg02 {
  display: block;
  width: 468px;
  height: 360px;
  position: absolute;
  right: -40px;
  top: 30px;
  z-index: -1;
}
.event .secInner {
  padding-top: 240px;
}
.event .eventLead {
  margin-bottom: 0.6em;
  font-size: 36px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.32;
}
.event .text01 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
}
.event .text01.slead {
  margin-bottom: 0.4em;
  font-size: 18px;
}
.event .pointArea.exam {
  padding-bottom: 110px;
  border-bottom: #e2e2e2 1px solid;
  position: relative;
}
.event .pointArea.exam .backimg03 {
  display: block;
  width: 494px;
  height: 350px;
  position: absolute;
  left: -200px;
  top: -16px;
  z-index: -1;
}
.event .pointArea.exam .backimg04 {
  display: block;
  width: 570px;
  position: absolute;
  right: -240px;
  bottom: -266px;
  z-index: -1;
}
.event .examLead {
  margin-bottom: 1.4em;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
  text-align: center;
}
@media screen and (min-width: 768px) {
.event .flex {
  margin: 100px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 60px;
}
.event .flex.flex02 {
  flex-direction: row-reverse;
}
.event .flex .left {
  width: 480px;
}
.event .flex .right {
  width: 400px;
}
.event .panelSlide {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
}
.event .panelSlide .examImg {
  margin-bottom: 1.5em;
}
.event .panelSlide li {
  width: 300px;
}
}
@media screen and (max-width: 767px) {
.event {
  padding: 0 0 100px;
}
.event .secInner {
  padding-top: 120px;
}
.event:before {
  background: var(--color-white);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
.event .backimg02 {
  width: calc(721/750*100vw);
  height: calc(523/750*100vw);
  right: calc(-240/750*100vw);
  top: -40px;
}
.event .pointArea {
  width: calc(100% + 80/750*100vw);
  margin-left: calc(-40/750*100vw);
}
.event .eventLead {
  margin-top: 1.8em;
  text-align: center;
  font-size: calc(56/750*100vw);
}
.event .flex .left {
  width: calc(100% + 80/750*100vw);
  margin-left: calc(-40/750*100vw);
}
.event .text01 {
  font-size: calc(26/750*100vw);
}
.event .text01.slead {
  font-size: calc(30/750*100vw);
}
.event .right .text01 {
  width: calc(590/750*100vw);
  margin: 1.5em auto 0;
  line-height: 1.64;
}
.event .pointArea.exam .backimg03 {
  display: block;
  width: calc(483/750*100vw);
  position: absolute;
  left: calc(-173/750*100vw);
  top: -176px;
  z-index: -1;
}
.event .slick-slide {
  margin: 0 1em;
}
.event .pointArea.exam {
  margin-top: 80px;
  padding-bottom: 40px;
  border-bottom: none;
}
.event .examLead {
  font-size: calc(40/750*100vw);
}
.event .panelSlide .text01 {
  margin-top: 0.8em;
  line-height: 1.64;
}
.event .pointArea.exam .backimg04 {
  display: block;
  width: calc(721/750*100vw);
  position: absolute;
  right: calc(-303/750*100vw);
  bottom: 0;
  z-index: -1;
}
}


/* media */
.media {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.media:before {
  content: "";
  height: 90%;
  position: absolute;
  top: calc(-130/1440*100vw);
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: calc(130/1440*100vw);
  background: var(--color-gray);
  transform: skewY(-10deg);
  z-index: -1;
}
.media .backimg05 {
  display: block;
  width: 468px;
  height: 360px;
  position: absolute;
  left: -40px;
  top: 0;
  z-index: -1;
}
.media .secInner {
  padding-top: 120px;
}
.media .pointLead {
  margin-bottom: 1em;
  line-height: 1.32;
}
.media .pointLead .subText {
  margin-bottom: 0.2em;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue);
  display: block;
}
.media .pointLead .subText .num {
  font-size: 150%;
}
.media .pointLead .leadText {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-base);
}
.media .text01.slead {
  margin-top: 1.2em;
  margin-bottom: 0.4em;
  font-size: 18px;
}
.media .text01 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.46;
}
@media screen and (min-width: 768px) {
.media .panelSlide {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
}
.media .panelSlide li {
  width: 300px;
}
}
@media screen and (max-width: 767px) {
.media {
  padding: 0 0 40px;
}
.media .secInner {
  padding-top: 100px;
}
.media:before {
  height: 76%;
  background: var(--color-gray);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
.media .backimg05 {
  width: calc(721/750*100vw);
  height: calc(523/750*100vw);
  left: calc(-140/750*100vw);
  top: -10px;
}
.media .pointArea {
  width: calc(100% + 80/750*100vw);
  margin-left: calc(-40/750*100vw);
}
.media .text01 {
  font-size: calc(26/750*100vw);
}
.media .text01.slead {
  font-size: calc(30/750*100vw);
}
.media .slick-slide {
  margin: 0 1em;
}
}
#appli {
  margin-top: -60px;
  padding-top: 60px;
}
.appliArea {
  margin: 120px auto 0;
  padding: 50px 180px;
  background: linear-gradient(180deg, rgb(0, 84, 222), rgb(0, 107, 243));
  border-radius: 3px;
}
.appliArea .appliLead {
  margin: 0 auto 1.8em;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.46;
  text-align: center;
  position: relative;
}
.appliArea .appliLead:after {
  content: "";
  width: 60px;
  height: 6px;
  margin: 0 auto;
  background-color: var(--color-white);
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6em;
}
.appliArea .text01 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.46;
}
.appliArea .stext01 {
  margin-top: 0.6em;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.46;
}
@media screen and (max-width: 767px) {
.appliArea {
  width: calc(100% + (40/750*100vw));
  margin: 70px auto 0 calc(-20/750*100vw);
  padding: 40px calc(60/750*100vw);
}
.appliArea .appliLead {
  margin: 0 auto 1.8em;
  font-size: calc(48/750*100vw);
}
.appliArea .appliLead:after {
  width: 50px;
  height: 6px;
  bottom: -0.8em;
}
.appliArea .text01 {
  font-size: calc(26/750*100vw);
}
.appliArea .stext01 {
  font-size: calc(20/750*100vw);
}
}


/* faq */
.faq {
  width: 100%;
  margin: 0;
  padding: 0 0 130px;
  position: relative;
}
.faq:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 0;
  background: var(--color-white);
  transform: skewY(-10deg);
  z-index: -1;
}
.faq .secInner {
  padding-top: 120px;
}
ul.faqList {
  width: 100%;
  max-width: 940px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 32px calc(40/960*100%);
}
ul.faqList li {
  width: calc(450/960*100%);
}
dl.faqSet dt {
  margin-bottom: 0.6em;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.32;
}
dl.faqSet dd {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.46;
}
@media screen and (max-width: 767px) {
.faq {
  padding: 0 0 130px;
}
.faq .secInner {
  padding-top: 60px;
}
.faq:before {
  background: var(--color-white);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
ul.faqList {
  margin: 40px auto 0;
  gap: 20px 0;
}
ul.faqList li {
  width: 100%;
}
dl.faqSet dt {
  margin-bottom: 0.6em;
  font-size: calc(32/750*100vw);
}
dl.faqSet dd {
  font-size: calc(26/750*100vw);
}
}


/* operation */
.operation {
  width: 100%;
  margin: 0;
  padding: 0 0 100px;
  position: relative;
}
.operation:before {
  content: "";
  position: absolute;
  top: calc(-130/1440*100vw);
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: calc(130/1440*100vw);
  background: var(--color-gray);
  transform: skewY(-10deg);
  z-index: -2;
}
.operation .backimg02 {
    display: block;
    width: 468px;
    height: 360px;
    position: absolute;
    right: -20px;
    top: -100px;
    z-index: -2;
}
.operation .secInner {
  padding-top: 240px;
}
.operation .pointLead {
  margin-bottom: 1em;
  line-height: 1.32;
}
.operation .text01 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
}
 .operationArea {
  width: 100%;
  max-width: 940px;
  margin: 60px auto 0;
}
.operationArea .operationLead {
  margin-bottom: 1.5em;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.32;
}
@media screen and (max-width: 767px) {
.operation {
  padding: 0 0 130px;
}
.operation .secInner {
  padding-top: 60px;
}
.operation:before {
  background: var(--color-gray);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
.operation .backimg02 {
  width: calc(721/750*100vw);
  height: calc(523/750*100vw);
  right: calc(-240/750*100vw);
  top: -40px;
}
.operation .text01 {
  font-size: calc(26/750*100vw);
}
}


/* contact */
.contact {
  width: 100%;
  margin: 0;
  padding: 0 0 320px;
  position: relative;
}
.contact:before {
  content: "";
  position: absolute;
  top: 130px;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 0;
  background: var(--color-blue);
  transform: skewY(-10deg) translateY(-130px);
  z-index: -2;
}
.contact .secInner {
  padding-top: 240px;
}
.contact .contactLead {
  margin-bottom: 1.5em;
  font-size: 45px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.32;
  text-align: center;
}
@media screen and (max-width: 767px) {
.contact {
  padding: 0 0 160px;
}
.contact .secInner {
  padding-top: 60px;
}
.contact:before {
  top: 0;
  background: var(--color-blue);
  transform: skewY(-20deg) translateY(calc(-130/750*100vw));
}
.contact .contactLead {
  margin-bottom: 1em;
  font-size: calc(64/750*100vw);
}
}


/* footer */
.footer {
  width: 100%;
  margin: 0;
  position: relative;
}
.footer:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 0;
  background: var(--color-white);
  transform: skewY(-10deg) translateY(130px);
  z-index: -2;
}
.footer .footerInner {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 20px 20px 0;
}
.footer .logo {
  width: 150px;
}
.footer .logo a {
  display: block;
}
.footer .navis {
  width: 160px;
}
.footer ul.fnavi {
  display: flex;
  flex-direction: column;
  gap: 1em 0;
}
.footer ul.fnavi li {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
}
.footer ul.fnavi li a {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.32;
  position: relative;
  display: inline-block;
}
.footer ul.fnavi li a:before {
  content: "";
  width: 13px;
  height: 13px;
  background: url("../images/icon_arrow_s.svg") no-repeat;
  background-size: 13px 13px;
  margin: auto 0;
  display: block;
  position: absolute;
  right: -20px;
  top: 0;
  bottom: 0;
}
.footer .bnrsArea {
  width: 300px;
}
.footer .bnrsArea ul.bnrs {
  display: flex;
  flex-direction: column;
  gap: 22px 0;
}
@media screen and (min-width: 768px) {
  .footer .flex {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    gap: 0 70px;
  }
}
@media screen and (max-width: 767px) {
.footer {
  padding: 0;
}
.footer .secInner {
  padding-top: 60px;
}
.footer:before {
  background: var(--color-white);
  transform: skewY(-20deg) translateY(calc(-130/1440*100vw));
}
.footer .flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 20px 0;
}
.footer .logo {
  width: 100%;
  text-align: right;
}
.footer .logo a {
  width: calc(222/750*100vw);
  display: inline-block;
}
.footer .navis {
  width: 100%;
  padding-right: 1.5em;
  padding-left: 10%;
}
.footer ul.fnavi {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  gap: 1em 3.5em;
}
.footer ul.fnavi li a {
  font-size: calc(24/750*100vw);
}
.footer ul.fnavi li a:before {
  content: "";
  width: calc(22/750*100vw);
  height: calc(22/750*100vw);
  background: url("../images/icon_arrow_s.svg") no-repeat;
  background-size: calc(22/750*100vw) calc(22/750*100vw);
  right: calc(-36/750*100vw);;
}
.footer .bnrsArea {
  width: 100%;
}
.footer .bnrsArea ul.bnrs {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
}


.copyArea {
  margin-top: 60px;
  border-top: #e2e2e2 1px solid;
}
.copyArea .copyright {
  padding: 1.5em 20px;
  font-size: 10px;
}


