@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
	 v2.0 | 20110126
	 License: none (public domain)
*/
html, 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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: bottom;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ============================================
	リキッドレイアウト
============================================ */
:root {
  --sb: 0px;
}

html {
  font-size: 10px;
}

@media (max-width: 1366px) {
  html {
    font-size: calc((100vw - var(--sb)) / 130);
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc((100vw - var(--sb)) / 37.5);
  }
}
/* ============================================
	共通
============================================ */
:root {
  --bl0: #008BD5;
  --bl1: #006FAA;
  --bl2: #008FCA;
  --bl3: #F3FAFD;
  --bk:	#333333;
  --wh:	#ffffff;
  --gy:	#F7F8F9;
  --pk1: #DD007F;
  --pk2: #F8D2DF;
  --pk3: #FFF2F7;
  --yl:	#FFFF00;
}

.c-bl0 {
  color: var(--bl0);
}

.c-bl1 {
  color: var(--bl1);
}

.c-bl2 {
  color: var(--bl2);
}

.c-bl3 {
  color: var(--bl3);
}

.c-pk1 {
  color: var(--pk1);
}

.c-pk2 {
  color: var(--pk2);
}

.c-pk3 {
  color: var(--pk3);
}

.c-gn {
  color: #4BA795;
}

.c-yl {
  color: var(--yl);
}

.c-bk {
  color: var(--bk);
}

.c-wh {
  color: var(--wh);
}

.c-gy {
  color: var(--gy);
}

.c-trp {
  color: transparent;
}

.bg-bl {
  background-color: var(--bl2);
}

.bg-gn {
  background-color: #4BA795;
}

.bg-pk {
  background-color: var(--pk1);
}

.bg-info-1 {
  background-color: #2DCDEA;
}

.bg-info-2 {
  background-color: #50CBD0;
}

.bg-info-3 {
  background-color: #008FCA;
}

.bg-info-4 {
  background-color: #E9FAFD;
}

.bg-info-5 {
  background-color: #EDFAFA;
}

.bg-info-6 {
  background-color: #E5F4FA;
}

.c-info-1 {
  color: #2DCDEA;
}

.c-info-2 {
  color: #50CBD0;
}

.c-info-3 {
  color: #008FCA;
}

body {
  font-family: "Inter", "游ゴシック", "Yu Gothic", sans-serif;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1.86;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0em;
  /* min-width: 1200px; */
  height: 100%;
  background: #fff;
  /* overflow-x: hidden; */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a,
a:visited,
a:hover {
  color: inherit;
  outline: none;
  border: none;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

img {
  max-width: 100%;
}

img[src$=".svg"] {
  width: 100%;
}

/* img object fit
--------------------------------- */
.ofi img,
img.ofi {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

/* pc sp
--------------------------------- */
.pc {
  display: block;
}

.pc-ib {
  display: inline-block;
}

.sp {
  display: none;
}

br.pc {
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .pc, .pc-ib, br.pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline-block;
  }
}
/* flex
--------------------------------- */
.flex {
  display: -webkit-flex;
  display: flex;
}

@media only screen and (min-width: 768px) {
  .flex-pc {
    display: -webkit-flex;
    display: flex;
  }
}
.fw-w {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ai-c {
  align-items: center;
}

.ai-e {
  align-items: flex-end;
}

.jc-c {
  justify-content: center;
}

.jc-e {
  justify-content: flex-end;
}

.jc-sb {
  justify-content: space-between;
}

/* container
--------------------------------- */
.container {
  max-width: 1236px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.container-md {
  max-width: 1136px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* order
--------------------------------- */
@media only screen and (min-width: 768px) {
  .order-pc-1 {
    order: 1;
  }
  .order-pc-2 {
    order: 2;
  }
}
/* font
--------------------------------- */
.ff-zkg {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.ff-zmg {
  font-family: "Zen Maru Gothic", sans-serif;
}

.ff-crimson {
  font-family: "Crimson Text", serif;
}

.fw5 {
  font-weight: 500;
}

.fw7 {
  font-weight: 700;
}

.ta-c {
  text-align: center;
}

.td-ul {
  text-decoration: underline;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* bg
--------------------------------- */
.bg-grad-blu {
  background: rgb(0, 139, 213);
  background: linear-gradient(135deg, rgb(0, 139, 213) 0%, rgb(0, 188, 213) 100%);
}

.bg-grad-pnk-v {
  background: rgb(248, 210, 223);
  background: linear-gradient(180deg, rgb(248, 210, 223) 0%, rgb(255, 242, 247) 100%);
}

/* ============================================

	@media max-767

============================================ */
@media only screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}
/* header
--------------------------------- */
/* .header {
  position: fixed;
  width: 100%;
  max-width: 1200px;
  height: 80px;
  background: #fff;
  left: 50%;
  top: 0;
  z-index: 11;
  transform: translateX(-50%);
} */

.header__inner,
.header__row,
.header__cv {
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;
  width: 234px;
  margin-left: 50px;
}

.header__cv-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.header__cv-tel .upper-text {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 7px;
}

.header__cv-tel a {
  color: var(--bl2);
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
}

.header__cv-apply {
  width: 247px;
  height: 100%;
  margin-left: 30px;
}

.header__cv-apply a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.3;
  height: 100%;
}

.header__cv-apply .icon-link {
  width: 18px;
  height: 18px;
  margin-left: 1rem;
  background: url(../images/parts/icon-link.png) no-repeat center/contain;
}

@media only screen and (max-width: 767px) {
  .header__logo {
    display: block;
    width: 120px;
  }
  .header__logo a {
    display: block;
  }
  .header__logo a:nth-child(2) {
    width: 80%;
    margin: 0.5rem auto 0;
  }
  .header__logo a:nth-child(2) img {
    display: block;
  }
  .header__cv-apply {
    width: 160px;
  }
  .header__cv-apply a {
    font-size: 16px;
  }
  .header__cv-apply .icon-apply-wht {
    width: 14px;
    height: 14px;
    margin: 0 auto 6px;
  }
  .header__cv-tel .upper-text {
    font-size: 15px;
  }
  .header__cv-tel a {
    font-size: 19px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 550px) {
  .header {
    transform: translate(0);
    left: 0;
    height: 8rem;
  }
  .header__logo {
    display: block;
    width: 8.5rem;
    margin-left: 20px;
  }
  .header__logo a:nth-child(2) {
    margin: 0.8rem auto 0;
  }
  .header__cv-apply {
    width: 8rem;
    height: 100%;
    margin-left: 15px;
  }
  .header__cv-apply a {
    flex-direction: column;
    font-size: 1.1rem;
  }
  .header__cv-apply .icon-apply-wht {
    width: 14px;
    height: 14px;
    margin: 0 auto 6px;
  }
  .header__cv-tel .upper-text {
    font-size: 1rem;
  }
  .header__cv-tel a {
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
/* mv
--------------------------------- */
.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1366/653;
  background: url(../images/base/bg-mv.jpg) no-repeat center/cover;
}
.mv .slick-slider {
  overflow: hidden;
  position: absolute;
  top: 8.5vw;
  right: 0;
  width: 50vw;
  aspect-ratio: 683/432;
  border-radius: 5rem 0 0 5rem;
}
.mv h3 {
  position: absolute;
  top: 8vw;
  left: 14.7vw;
  font-size: 1.32vw;
  font-weight: 700;
  color: #fff;
}
.mv h3::after {
  content: "";
  position: absolute;
  bottom: -0.2rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: #fff;
}
.mv h1 {
  position: absolute;
  top: 12.2vw;
  left: 5vw;
  width: max-content;
  font-size: 3vw;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: var(--wh);
  text-align: center;
}
.mv h1 span:nth-of-type(1) {
  font-size: 5.7vw;
  font-weight: 700;
  color: var(--yl);
  vertical-align: baseline;
  line-height: 1.3;
}
.mv h1 span:nth-of-type(2) {
  position: relative;
  top: 0.5rem;
}
.mv > span:nth-of-type(1) p {
  position: absolute;
  top: 33vw;
  left: 18vw;
  text-align: center;
  font: normal normal bold 1.8rem Noto Sans JP;
  letter-spacing: 1.6px;
  color: #FFFFFF;
}

.mv > span:nth-of-type(1) a {
  position: absolute;
  top: 36vw;
  left: 12.5vw;
  cursor: pointer;
  transition: all 0.4s;
  height: 6.4rem;
  font-size: 1.6rem;
  background-color: #FFFF00;
  color: #008BD5;
  border-radius: 60px;
  border: none;
  width: 23.7vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.mv > span:nth-of-type(1) a::after {
  content: "";
  display: block;
  width: 18px;
  height: 13.5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url(../images/parts/icon-right-blue.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 27px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.mv > span:nth-of-type(1) a:hover {
  background: #fff;
}
.mv > span:nth-of-type(n+2) {
  position: absolute;
  bottom: 4.5%;
  width: 10.9077598829vw;
}
.mv > span:nth-of-type(2) {
  right: 30.5vw;
}
.mv > span:nth-of-type(3) {
  right: 18vw;
}
.mv > span:nth-of-type(4) {
  right: 5.5vw;
}

@media (max-width: 1600px) {
  .mv > span:nth-of-type(1) p {
    left: 17vw;
  }
}
@media (max-width: 1400px) {
  .mv > span:nth-of-type(1) p {
    left: 16vw;
  }
}
@media (max-width: 1200px) {
  .mv > span:nth-of-type(1) p {
    left: 16vw;
  }
}
@media (max-width: 992x) {
  .mv > span:nth-of-type(1) p {
    left: 15vw;
  }
}
@media (max-width: 767px) {
  .mv {
    position: relative;
    width: 100%;
    max-height: 1180px;
    aspect-ratio: 375/625;
    text-align: center;
    background: url(../images/base/bg-mv-sp.jpg) no-repeat center/cover;
  }
  .mv .slick-slider {
    overflow: hidden;
    position: absolute;
    top: unset;
    bottom: 24vw;
    right: 0;
    display: inline-block;
    width: 97.6%;
    max-width: 650px;
    aspect-ratio: 366/231;
    border-radius: 2.5rem 0 0 2.5rem;
  }
  .mv h3 {
    position: relative;
    top: 1.8rem;
    left: unset;
    transform: none;
    display: block;
    width: max-content;
    margin: 0 auto 2.8rem;
    font-size: 1.4rem;
  }
  .mv h1 {
    position: relative;
    top: unset;
    left: unset;
    width: max-content;
    margin: 0.1rem auto 1.6rem;
    font-size: 2.4rem;
    line-height: 1.45;
  }
  .mv > span:nth-of-type(1) p {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 100%;
    font: normal normal bold 16px Noto Sans JP;
  }
  .mv h1 span:nth-of-type(1) {
    font-size: 4.4rem;
  }
  .mv > span:nth-of-type(1) {
    position: relative;
    display: block;
    bottom: unset;
    left: unset;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    height: 5.4rem;
    margin: 0 auto;
  }
  .mv > span:nth-of-type(1)::after {
    right: 1.4rem;
    width: 1.7rem;
    height: 1.7rem;
    background: url(../images/parts/icon-right-blue.svg) no-repeat center/contain;
  }
  .mv > span:nth-of-type(1):hover {
    filter: brightness(1.05);
  }
  .mv > span:nth-of-type(1):hover::after {
    right: 2rem;
  }
  .mv > span:nth-of-type(1) a {
    width: 70vw;
    height: 4.5rem;
    top: 6vh;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .mv > span:nth-of-type(n+2) {
    position: absolute;
    bottom: 4%;
    width: 27.4666666667vw;
  }
  .mv > span:nth-of-type(2) {
    right: unset;
    left: 3.8vw;
  }
  .mv > span:nth-of-type(3) {
    right: 36vw;
  }
  .mv > span:nth-of-type(4) {
    right: 3.8vw;
  }
}
/* footer
--------------------------------- */
footer {
  background: #fff;
  padding: 32px 0 30px;
}
.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer .left {
  max-width: 384px;
  width: 100%;
}
footer .left a:not(.footer-btn) {
  transition: .3s;
}
footer .left a:hover:not(.footer-btn) {
  opacity: .7;
  transition: .3s;
}
.footer .logo-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.footer .logo-wrapper .logo {
  width: 180px;
}
.footer .logo-wrapper .logo-chukyo {
  width: 154px;
}
.footer .sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 24px;  
}
.footer .sns .x {
  width: 30px;
  margin-right: 16px;
}
.footer .sns .facebook {
  width: 30px;
  margin-right: 16px;
}
.footer .sns .insta {
  width: 33px;
}
.footer .footer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  border-radius: 40px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  line-height: 1;
  box-sizing: content-box;
}
.footer .footer-btn.sp {
  display: none;
}
.footer .footer-btn.-b {
  background: linear-gradient(to right,#008BD5,#4FCBD0);
  color: #fff;
  margin-bottom: 16px;
}
.footer .footer-btn.-b span::after {
  position: absolute;
  content: "";
  background-image: url(../images/parts/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  transition: all .2s ease-out;
}
.footer .footer-btn.-b:hover {
  background: #fff;
  color: #008BD5;
  transition: all .2s ease-out;
}
.footer .footer-btn.-b:hover span::after {
  background-image: url(../images/parts/icon-arrow-blue.svg);
  transition: all .2s ease-out;
  right: 28px;
}

.footer .footer-btn.-w {
  background: #fff;
  color: #008BD5;
  border: solid 1px #008BD5;
}
.footer .footer-btn.-w span::after {
  position: absolute;
  content: "";
  background-image: url(../images/parts/icon-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  transition: all .2s ease-out;
}
.footer .footer-btn.-w:hover {
  background: linear-gradient(to right,#008BD5,#4FCBD0);
  color: #fff;
  transition: all .2s ease-out;
  border-color: #fff;
}
.footer .footer-btn.-w:hover span::after {
  background-image: url(../images/parts/icon-arrow-white.svg);
  transition: all .2s ease-out;
  right: 28px;
}
.footer .right,
.footer .right .sp-block {
  display: flex;
  gap: 64px;
}
.footer .right ul li {
  text-decoration: none;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
  font-family: "Zen Kaku Gothic New", sans-serif;
  transition: .3s;
}
.footer .right ul li:hover {
  color: #007aff;
  transition: .3s;
}
.footer .right ul li:not(:last-of-type) {
  margin-bottom: 28px;
}
/*黒帯*/
.footer-bottom {
  background: #222;
  padding: 16px;
}
.footer-bottom .inner {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom a {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: .3s;
}
.footer-bottom a:hover {
  opacity: .7;
  transition: .3s;
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0;
  }
  .footer-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
  }
  .footer .left {
    max-width: 384px;
    width: 100%;
  }
  footer .left a:not(.footer-btn) {
    transition: .3s;
  }
  footer .left a:hover:not(.footer-btn) {
    opacity: .7;
    transition: .3s;
  }
  .footer .logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
  }
  .footer .logo-wrapper .logo {
    width: 150px;
  }
  .footer .logo-wrapper .logo-chukyo {
    width: 150px;
  }
  .footer .sns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 32px;  
  }
  .footer .sns .x {
    width: 30px;
    margin-right: 16px;
  }
  .footer .sns .facebook {
    width: 30px;
    margin-right: 16px;
  }
  .footer .sns .insta {
    width: 33px;
  }
  .footer .footer-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 287px;
    margin: 0 auto;
    padding: 18px 0;
    border-radius: 40px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    line-height: 1;
    box-sizing: content-box;
  }
  .footer .footer-btn.sp {
    display: flex;
  }
  .footer .pc {
    display: none;
  }
  .footer .footer-btn.-b {
    background: linear-gradient(to right,#008BD5,#4FCBD0);
    color: #fff;
    margin-bottom: 16px;
  }
  .footer .footer-btn.-b span::after {
    position: absolute;
    content: "";
    background-image: url(../images/parts/icon-arrow-white.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 11px;
    height: 11px;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    transition: all .2s ease-out;
  }
  .footer .footer-btn.-b:hover {
    background: #fff;
    color: #008BD5;
    transition: all .2s ease-out;
  }
  .footer .footer-btn.-b:hover span::after {
    background-image: url(../images/parts/icon-arrow-blue.svg);
    transition: all .2s ease-out;
    right: 28px;
  }
  
  .footer .footer-btn.-w {
    background: #fff;
    color: #008BD5;
    border: solid 1px #008BD5;
  }
  .footer .footer-btn.-w span::after {
    position: absolute;
    content: "";
    background-image: url(../images/parts/icon-arrow-blue.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 11px;
    height: 11px;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    transition: all .2s ease-out;
  }
  .footer .footer-btn.-w:hover {
    background: linear-gradient(to right,#008BD5,#4FCBD0);
    color: #fff;
    transition: all .2s ease-out;
    border-color: #fff;
  }
  .footer .footer-btn.-w:hover span::after {
    background-image: url(../images/parts/icon-arrow-white.svg);
    transition: all .2s ease-out;
    right: 28px;
  }
  .footer .right {
    display: flex;
    gap: 32px;
  }
  .footer .right .sp-block {
    display: block;
  }
  .footer .right .sp-block ul:first-child {
    margin-bottom: 16px;
  }
  .footer .right ul li {
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: color 0.4s ease-in-out;
    transition: color 0.4s ease-in-out;
    font-family: "Zen Kaku Gothic New", sans-serif;
    transition: .3s;
  }
  .footer .right ul li:hover {
    color: #007aff;
    transition: .3s;
  }
  .footer .right ul li:not(:last-of-type) {
    margin-bottom: 16px;
  }
  /*黒帯*/
  .footer-bottom {
    background: #222;
    padding: 12px;
  }
  .footer-bottom .inner {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
  .footer-bottom a {
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    transition: .3s;
  }
  .footer-bottom a:hover {
    opacity: .7;
    transition: .3s;
  }
}



/* バナー
--------------------------------- */
.banner {
  width: 100%;
  min-height: 48rem;
}
.banner > .campaign {
  z-index: 0;
  position: relative;
  padding: 5.0rem 0;
  background-color: #F3FAFD;
}
.banner > .campaign > a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 3.0rem 1.5rem;
  text-align: center;
  background-color: #fff;
  border-radius: 2rem;
  pointer-events: none;
}
.banner h2 {
  text-align: center;
  font: normal normal bold 40px/41px Zen Kaku Gothic New;
  letter-spacing: 2px;
  color: #008BD5;
  opacity: 1;
  margin-bottom: 40px;
}
.banner > div > a > img {
  width: 45%;
}
.banner > div > a > div {
  width: 55%;
  padding-left: 4.0rem;
  display: flex;
  flex-direction: column;
}
.banner > div > a > div > img {
  width: 88%;
  margin-bottom: 1.7rem;
}
.banner > div > a > div p {
  margin-bottom: 6.4rem;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.banner > div > a > div p > span {
  display: inline-block;
  margin: 0 5px;
  padding: 4px 7px 0px;
  line-height: 1.5;
  vertical-align: baseline;
  color: #fff;
  background-color: #DD007F;
}
.banner > div > a > div p > span > span {
  line-height: 1;
  vertical-align: text-bottom;
  font-size: 3.6rem;
}
.banner > div > a > div h3 {
  position: relative;
  font-size: 3.6rem;
  font-weight: 700;
  color: #008BD5;
  text-align: left;
  line-height: 1.5;
}
.banner > div > a > div h3 > div span {
  font-size: 51px;
}
.banner > div > a > div h3 > span::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  border: 0.8rem solid transparent;
  border-top-color: #C8EEFF;
}
.banner > div > a > div h3 > div {
  display: inline-block;
  line-height: 1;
  background: linear-gradient(transparent 42%, #FFFF00 0%);
}
.banner .badge-few {
  position: absolute;
  top: 1.5rem;
  left: 3.0rem;
  width: 11.2rem;
  height: 11.2rem;
}
/*CTA*/
.cta {
  padding: 42px 0;
  background: url(../images/base/contact-bg.jpg) no-repeat;
  background-position: 0 50%;
  background-size: cover;
}
.cta .container {
  max-width: 1236px;
  padding: 0 18px;
  margin: 0 auto;
}
.cta h2 {
  max-width: 1236px;
  padding: 0 8px;
  margin: 0 auto;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0px;
  line-height: 1.4;
  color: #333333;
  margin-bottom: 16px;
}
.cta .info-row {
  background: rgba(255, 255, 255, 0.8);
  max-width: 1024px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 33px;
}
.cta .info-col:first-child {
  margin-right: 8.0rem;;
}
.cta .info-col p {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: 0.7px;
  color: #333333;
  margin-bottom: 1.7rem;
}
.cta .info-col p {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans JP",sans-serif;
  letter-spacing: 0.7px;
  color: #333333;
}
@media only screen and (max-width: 1020px) {  
  /*CTA*/
  .cta {
    background-position: 40% 50%;
  }

}
@media only screen and (max-width: 767px) {
  /* バナー
  --------------------------------- */
  .banner {
    min-height: 31.5rem;
  }
  .banner > .campaign {
    padding: 3rem 0 3rem;
  }
  .banner > .campaign a {
    display: block;
    padding: 0 1.4rem 2rem;
    max-width: 600px;
  }
  .banner h2 {
    width: 100%;
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .banner > div a h2 img {
    width: 100%;
  }
  .banner > div > a > img {
    max-width: 400px;
    width: 100%;
  }
  .banner > div a p {
    margin-bottom: 2.6rem;
    font-size: 1.7rem;
  }
  .banner > .campaign a span {
    width: 90px;
    right: calc(50% - 18.5rem);
    bottom: 1.8rem;
    left: -10px;
  }
  .banner > div a > div {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 0;
    padding-left: 0;
  }
  .banner > div a > div p {
    margin-bottom: 4.5rem;
    font-size: min(2rem, 30px);
  }
  .banner > div a > div p span {
    width: fit-content;
    font-size: min(2rem, 30px);
  }
  .banner > div a > div p span span {
    font-size: min(3rem, 45px);
  }
  .banner > div a > div h3 {
    font-size: 22px;
    text-align: center;
  }
  .banner > div a > div h3 span {
    width: fit-content;
    height: fit-content;
    font-size: min(1.4rem, 21px);
  }
  .banner .badge-few {
    position: absolute;
    top: -1.0rem;
    left: -2.0rem;
    width: 9.0rem;
    height: 9.0rem;
  }

  /*cta*/
  .cta {
    background: url(../images/base/contact-bg-sp.jpg);
    background-position: top;
  }
  .cta .info-row {
    padding: 20px;
    flex-direction: column;
  }
  .cta .info-col {
    margin: 0 auto;
  }
  .cta .info-col:first-child {
    margin-bottom: 24px;
    margin-right: auto;
  }
  .cta .info-col p {
    margin-bottom: 16px;
  }

}
/* アニメーション
--------------------------------- */
.cs-up {
  opacity: 0;
  transform: translateY(40%);
  transition: all 1.2s ease;
}

.cs-up.anim {
  transform: translateY(0);
  opacity: 1;
}

.cs-up-2 {
  opacity: 0;
  transform: translateY(10%);
  transition: all 1s ease;
}

.cs-up-2.anim {
  transform: translateY(0);
  opacity: 1;
}

.cs-fade {
  opacity: 0;
  transition: all 1.2s ease;
}

.cs-fade.anim {
  opacity: 1;
}

.cs-rotate {
  opacity: 0;
  transform: rotate(-20deg);
  transform-origin: right bottom;
  transition: all 1.2s ease;
}

.cs-rotate.anim {
  opacity: 1;
  transform: rotate(0);
}

.cs-anim-diag-1,
.cs-anim-diag-2,
.cs-anim-diag-3 {
  opacity: 0;
}

.cs-anim-diag-1.anim {
  animation: anim-diag-bounce-1 0.8s ease-in-out;
  animation-fill-mode: forwards;
}

.cs-anim-diag-2.anim {
  animation: anim-diag-bounce-2 1s ease-in-out;
  animation-fill-mode: forwards;
}

.cs-anim-diag-3.anim {
  animation: anim-diag-bounce-3 1s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes anim-diag-bounce-1 {
  0% {
    transform: translate(-10%, 10%);
    opacity: 0;
  }
  75% {
    transform: translate(2%, -2%);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes anim-diag-bounce-2 {
  0% {
    transform: translate(-40%, 40%);
    opacity: 0;
  }
  75% {
    transform: translate(5%, -5%);
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes anim-diag-bounce-3 {
  0% {
    transform: translate(20%, 20%);
    opacity: 0;
  }
  75% {
    transform: translate(-5%, -5%);
    opacity: 0.7;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* -----------------------------------------------------------
common
-----------------------------------------------------------*/

.sp {
  display: none;
}
.md {
  display: none;
}
.lg {
  display: none;
}

@media only screen and (max-width: 1300px) {
  .lg {
    display: block;
  }
}
@media only screen and (max-width: 992px) {
  .pc {
    display: none;
  }
  .md {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  /*common*/
  .sp {
    display: inline-block;
  }
}

/* -----------------------------------------------------------
LP用共通ヘッダー
-----------------------------------------------------------*/
.lp-header {
  background-color: #fff;
  width: 100%;
  position: fixed;
  z-index: 500;
}
.lp-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 48px;
}
/*左カラム*/
.lp-header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.lp-header-left .logo {
  display: flex;
}
.lp-header-left .logo-chukyo {
  margin-left: 32px;
  display: flex;
}
.lp-header-left a {
  transition: .3s;
}
.lp-header-left a:hover {
  opacity: .7;
  transition: .3s;
}
.lp-header-left .logo-chukyo img {
  height: auto;
}
/*右カラム*/
.lp-header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.lp-header-right .header__phnwpr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-right: 30px;
}
.lp-header-right .header__phnwpr a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  font-size: 24px;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.lp-header-right .header__phnwpr a img {
  max-width: 19px;
  margin-right: 12px;
}
.lp-header-right .header__phnwpr span {
  font-size: 12px;
  display: block;
  line-height: 1;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.lp-header-btnwpr {
  display: flex;
  align-items: center;
}
/*ボタン*/
.btn a {
  display: block;
  position: relative;
  padding: 23px 0;
  width: 228px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-image: -webkit-gradient(linear, left top, right top, from(#008bd5), to(#4fcbd0));
  background-image: -webkit-linear-gradient(left, #008bd5 0%, #4fcbd0 100%);
  background-image: linear-gradient(90deg, #008bd5 0%, #4fcbd0 100%);
  border: 2px solid;
  border-image: linear-gradient(90deg, #008bd5 0%, #4fcbd0 100%) 1;
  transition: all .2s ease-out;
}
.btn a:hover {
  color: #008BD5;
  transition: all .2s ease-out;
}
.btn a::before {
  background: #fff;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all .2s ease-out;
  width: 100%;
  opacity: 0;
}
.btn a:hover::before {
  opacity: 1;
  transition: all .2s ease-out;
}
.btn a p {
  position: relative;
  display: inline-block;
}
.btn a p:after {
  position: absolute;
  content: "";
  background-image: url(../images/parts/icon-arrow-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  top: 50%;
  /* right: -32px; */
  right: -12px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: all .2s ease-out;
}
.btn a:hover p:after {
  background-image: url(../images/parts/icon-arrow-blue.svg);
  /* right: -38px; */
  right: -20px;
  transition: all .2s ease-out;
}
/*白ボタン*/
.btn.-white a {
  background: #fff;
  color: #008BD5;
  transition: all .2s ease-out;
}
.btn.-white a:hover {
  background-image: -webkit-gradient(linear, left top, right top, from(#008bd5), to(#4fcbd0));
  background-image: -webkit-linear-gradient(left, #008bd5 0%, #4fcbd0 100%);
  background-image: linear-gradient(90deg, #008bd5 0%, #4fcbd0 100%);
  color: #fff;
}
.btn.-white a::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#008bd5), to(#4fcbd0));
  background-image: -webkit-linear-gradient(left, #008bd5 0%, #4fcbd0 100%);
  background-image: linear-gradient(90deg, #008bd5 0%, #4fcbd0 100%);
}
.btn.-white a p:after {
  background-image: url(../images/parts/icon-arrow-blue.svg);
}
.btn.-white a:hover p:after {
  background-image: url(../images/parts/icon-arrow-white.svg);
}
.menu {
  display: none;
}
@media only screen and (max-width: 1200px) {
  .lp-header-wrapper {
    padding-left: 15px;
  }
  /*ボタン*/
  .btn a {
    width: 150px;
  }
  .btn a p:after {
    right: -20px;
  }
  .btn a:hover p:after {
    right: -25px;
  }
}
@media only screen and (max-width: 992px) {
  /*右カラム*/
  .lp-header-right .header__phnwpr {
    display: none;
  }
  /*ボタン*/
  .btn a p:after {
    background-image: none;
  }
  /*ハンバーガーボタン*/
  .nav-icon-wpr {
    background-color: #008BD5;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    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;
    position: relative;
    z-index: 3;
    margin-right: 16px;
    cursor: pointer;
  }
  .nav-icon {
    position: relative;
    width: 18px;
    height: 14px;
    cursor: pointer;
  }
  .nav-icon span {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-icon:before, .nav-icon:after {
    content:"";
  }
  .nav-icon span, .nav-icon:before, .nav-icon:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 5px;
    -webkit-transition: all 0.4s cubic-bezier(0.17, 0.84, 0.53, 1.39);
    transition: all 0.4s cubic-bezier(0.17, 0.84, 0.53, 1.39);
  }
  .nav-icon:before {
    top: 0;
  }
  .nav-icon:after {
    margin: 0 auto;
    bottom: 0;
  }
  .is-opened .nav-icon span {
    opacity: 0;
  }
  .is-opened .nav-icon:before {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 2px 4px;
    -ms-transform-origin: 2px 4px;
    transform-origin: 2px 4px;
  }
  .is-opened .nav-icon:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 2px -2px;
    -ms-transform-origin: 2px -2px;
    transform-origin: 2px -2px;
  }
  .menu {
    display: block;
    max-height: 100vh;
    position: fixed;
    top: 63px;
    right: 0;
    background-color: #FFFFFF;
    width: calc(100% - 48px);
    padding: 40px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menu.is-opened {
    opacity: 1;
    visibility: visible;
    transition: all 0.25s ease;
    height: 100vh;
  }
  .menu-list a {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    padding: 0 0 24px;
    display: block;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    line-height: 1.4;
  }
  .menu .info-col:first-child {
    margin-bottom: 16px;
  }
  .menu .info-col p {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
  }
  .menu .info-row a {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  /*左カラム*/
  .lp-header-left .logo {
    width: 72px;
  }
  .lp-header-left .logo-chukyo {
    margin-left: 16px;
  }
  .lp-header-left .logo-chukyo img {
    width: 65px;
    height: auto;
  }
  /*ボタン*/
  .btn a {
    width: 88px;
    font-size: 14px;
    line-height: 19.992px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
  }
  .btn a p {
    display: block;
  }
}

/*---------------------------------------
フローとヘッダー位置調整　国家資格用
---------------------------------------*/
.mainContents {
  padding-top: 76px;
}
@media only screen and (max-width: 767px) {
  .mainContents {
    padding-top: 64px;
  }
}