@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
:root {
  /* s0 : 0.5em(1文字16pxの半分の8pxの場合)
  	 s1 : 8
  	 s2 : 16
  	 s3 : 24
     s4 : 32
     s5 : 40
     s6 : 48
     s7 : 56
     s8 : 64
     s10 : 80
     s14 : 104
     s15 : 120
     s19 : 152
  */
  --s0: 0.5em;
  --s1: calc(var(--s0) * 1);
  --s2: calc(var(--s0) * 2);
  --s3: calc(var(--s0) * 3);
  --s4: calc(var(--s0) * 4);
  --s5: calc(var(--s0) * 5);
  --s6: calc(var(--s0) * 6);
  --s7: calc(var(--s0) * 7);
  --s8: calc(var(--s0) * 8);
  --s10: calc(var(--s0) * 10);
  --s13: calc(var(--s0) * 13);
  --s15: calc(var(--s0) * 15);
  --s19: calc(var(--s0) * 19);
  --s9: calc(var(--s0) * 9);
  --s11: calc(var(--s0) * 11);
  --s12: calc(var(--s0) * 12);
  --s14: calc(var(--s0) * 14);
}

:root {
  --spa: 5.6vw;
}
@media screen and (max-width: 960px) {
  :root {
    --spa: 5.6vw;
  }
}

:root {
  --k: #171a42;
  --k2: #333;
  --k3: #555;
  --w: #fff;
  --g1: #e9e9e9;
  --g2: #d1d1d1;
  --g3: #ccc;
  --g4: #aaa;
  --g5: #777;
  --g6: #666;
  --c1: #175bf8;
  --c2: #5b63b5;
  --c3: #d8695d;
  --c4: #50cc85;
  --c5: #b277e0;
  --c6: #e0c332;
  --cCaution: #e20c0c;
}

:root {
  --fzS: 1.4rem;
  --fz: 1.6rem;
  --fzM: 1.8rem;
  --fzL: 2rem;
}
@media screen and (max-width: 960px) {
  :root {
    --fzS: 1.3rem;
    --fz: 1.5rem;
    --fzM: 1.7rem;
    --fzL: 1.9rem;
  }
}

:root {
  --lhS: 1.4;
  --lh: 1.8;
  --lhL: 2.4;
}
@media screen and (max-width: 960px) {
  :root {
    --lhS: 1.4;
    --lh: 1.8;
    --lhL: 2.4;
  }
}

:root {
  --font1: "Cormorant Garamond", serif;
  --font2: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
}

:root {
  --bdrs1: 4px;
  --bdrs2: 6px;
  --opacity: 0.5;
  --bxs1: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  --bxs2: 0px -6px 0px -2px rgba(0, 0, 0, 0.2) inset;
  --txs1: 0px 0px 12px rgba(0, 0, 0, 0.6);
  --grd1: linear-gradient(135deg, #ffa84c 0%, #ff7b0d 100%);
}

:root {
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --linear: cubic-bezier(0, 0, 1, 1);
  --In: cubic-bezier(0.42, 0, 1, 1);
  --Out: cubic-bezier(0, 0, 0.58, 1);
  --InOut: cubic-bezier(0.42, 0, 0.58, 1);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --time: 200ms;
  --transition: all var(--time) var(--Out);
  --ease1: all var(--time) var(--ease);
  --ease2: all var(--time) cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease3: all var(--time) var(--easeInOutCubic);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
html {
  overflow-x: hidden;
  background: #fff;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
object,
iframe,
pre,
code,
p,
blockquote,
form,
fieldset,
legend,
table,
th,
td,
caption,
tbody,
tfoot,
thead,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
audio,
video,
canvas {
  margin: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
menu {
  display: block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

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

fieldset,
img {
  border: none;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ul,
ol,
menu {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr,
acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

a img,
map a {
  border: none;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

embed {
  width: 100%;
}

audio,
canvas,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img,
object,
embed {
  max-width: 100%;
  height: auto;
}

object,
embed {
  height: 100%;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

select,
input,
button,
textarea,
button {
  font: 99% arial, sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a,
img,
button,
input[type=button],
input[type=submit],
.touch-hover {
  -webkit-tap-highlight-color: transparent;
}

/*  box-sizing
---------------------------------------------*/
* {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
  font: 100%;
}

/*  main
---------------------------------------------*/
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}
/*  list
---------------------------------------------*/
li {
  list-style: none;
  line-height: 1;
}

/*  form
---------------------------------------------*/
input {
  line-height: 1;
}

form img,
input,
select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: var(--fz);
  vertical-align: middle;
  color: var(--k);
  height: auto;
}
@media screen and (max-width: 960px) {
  input,
  select,
  textarea,
  button {
    font-size: 1.6rem;
  }
}

textarea {
  height: auto;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  -webkit-appearance: none;
  font-size: var(--fz);
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
  border-radius: var(--bdrs1);
}
@media screen and (max-width: 960px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  select,
  textarea {
    font-size: 1.6rem;
  }
}

/* ======= outline ======= */
input[type=email],
input[type=text],
input[type=number],
input[type=password],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
label {
  margin-right: 1em;
  line-height: 1;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 961px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .spNone {
    display: none !important;
  }
}
/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

.clear {
  clear: both !important;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 960px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: var(--g1);
  margin-left: 1em;
  text-indent: -1em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: var(--font1) !important;
}

.font2 {
  font-family: var(--font2) !important;
}

/*  color
---------------------------------------------*/
.white {
  color: var(--w);
}

.black {
  color: var(--k);
}

.c-caution {
  color: var(--cCaution);
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/* font-size
---------------------------------------------*/
.fz {
  font-size: var(--fz);
}

.fz-s {
  font-size: var(--fzS);
  line-height: var(--lhS);
}

.fz-l {
  font-size: var(--fzL);
  line-height: var(--lhL);
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: YakuHanJP_Narrow, "Shippori Mincho", serif, "Helvetica Neue", Arial, "Hiragino sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-size: var(--fz);
  color: var(--k);
  font-weight: 400;
  line-height: 1;
  font-feature-settings: "palt" 1;
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 374px) {
  html,
  body {
    font-size: 9px;
    line-height: 1;
  }
}
.wrapper p {
  letter-spacing: 0.05em;
}

/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}
@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}
/* -----------------------------------------------
    p
------------------------------------------------*/
p {
  font-size: var(--fz);
  line-height: var(--lh);
}

/* ======= hiwrite ======= */
::-moz-selection {
  background: #a6d2fc;
}
::selection {
  background: #a6d2fc;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  background: linear-gradient(transparent 80%, #ff0 80%);
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* ======= 注釈 ======= */
.annotation {
  color: #666;
  font-size: var(--fzS);
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  text-decoration: none;
  transition: var(--transition);
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  transition: var(--transition);
}

a[href^="tel:"] {
  cursor: default;
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: var(--c1);
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: var(--c1);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: calc(1200px + var(--spa) * 2);
  padding-right: var(--spa);
  padding-left: var(--spa);
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .container {
    max-width: auto;
  }
}
.container.-large {
  max-width: calc(1400px + var(--spa) * 2);
}
@media screen and (max-width: 960px) {
  .container.-large {
    max-width: auto;
  }
}
.container.-small {
  max-width: calc(1100px + var(--spa) * 2);
}
@media screen and (max-width: 960px) {
  .container.-small {
    max-width: auto;
  }
}
.container.-min {
  max-width: 690px;
}
@media screen and (max-width: 960px) {
  .container.-min {
    max-width: auto;
  }
}
.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    form
===================================================================*/
/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px rgb(250, 250, 250) inset;
}

/*  hover
---------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=password],
select,
textarea {
  transition: var(--transition);
}

.pc input[type=text]:hover,
.pc input[type=tel]:hover,
.pc input[type=email]:hover,
.pc input[type=password]:hover,
.pc select:hover,
.pc textarea:hover {
  border: 1px solid var(--c1);
  background-color: #fff;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=password]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--c1);
}

input[type=button]:focus,
input[type=submit]:focus,
button[type=submit]:focus,
input[type=file],
input[type=text]:focus,
input[type=tel]:focus,
input[type=password]:focus,
button:focus {
  outline: none;
}

/*  input.short
---------------------------------------------*/
input.short,
select.short,
textarea.short {
  width: 40%;
}

@media screen and (max-width: 960px) {
  input.short,
  select.short,
  textarea.short {
    width: 100%;
  }
}
/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: var(--cCaution);
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: -0.4em;
  right: -0.2rem;
}

/*  button submit
---------------------------------------------*/
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  display: inline-block;
  color: var(--w);
  background-color: var(--c1);
  border: 0;
  padding: 0rem 3rem;
  margin-bottom: 0.5em;
  text-align: center;
  font-weight: bold;
  border-radius: var(--bdrs1);
  height: 50px;
  position: relative;
  transition: var(--transition);
}

/* ======= hover ======= */
.pc input[type=button]:hover,
.pc input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*  checkbox radio
---------------------------------------------*/
/* ======= common ======= */
input[type=checkbox],
input[type=radio] {
  transform-origin: right bottom;
  transform: scale(1, 1);
  cursor: pointer;
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 0;
}

label.checkbox,
label.radio {
  padding-left: 1.5em;
  margin-bottom: 0.5em;
  display: inline-block;
  cursor: pointer;
  letter-spacing: 0;
}

label.checkbox input,
label.radio input {
  opacity: 0;
}

label.checkbox span,
label.radio span {
  display: inline-block;
  position: relative;
}

/* ======= checkbox ======= */
label.checkbox span::before,
label.checkbox span::after {
  content: "";
  display: block;
  position: absolute;
  transition: var(--transition);
}

label.checkbox span::before {
  top: 50%;
  transform: translateY(-50%);
  left: -22px;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: var(--bdrs1);
}

label.checkbox input[type=checkbox]:checked + span::before {
  background: var(--c2);
  border: 1px solid var(--c2);
}

label.checkbox input[type=checkbox]:checked + span::after {
  position: absolute;
  content: "";
  display: block;
  top: 3px;
  left: -19px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* ======= radio ======= */
label.radio span::before,
label.radio span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transition: var(--transition);
}

label.radio span::before {
  left: -22px;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bcc2ba;
  border-radius: 100%;
  transform: translateY(-50%);
}

label.radio span::after {
  opacity: 0;
  left: -19px;
  transform-origin: center;
  transform: translateY(-50%) scale(1);
}

label.radio input[type=radio]:checked + span::after {
  opacity: 1;
  left: -19px;
  width: 12px;
  height: 12px;
  background: var(--c2);
  border-radius: 100%;
}

/*  input file
---------------------------------------------*/
input[type=file] {
  -webkit-appearance: none;
  display: none;
}

label.file {
  display: inline-block;
  color: var(--w);
  font-size: var(--fz);
  background-color: var(--c1);
  padding: 1rem 2.5rem;
  margin-bottom: 0.8rem;
  border-radius: var(--bdrs2);
  cursor: pointer;
  transition: var(--transition);
}

/* ======= hover ======= */
.pc label.file:hover {
  background-color: var(--c2);
}

/*  select
---------------------------------------------*/
select {
  -webkit-appearance: none;
  width: 100%;
  position: relative;
  height: 40px;
  padding-left: 1rem;
  border-radius: var(--bdrs1);
  cursor: pointer;
  line-height: 1;
}

label.select {
  position: relative;
  display: block;
}

label.select::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  right: 1px;
  width: 38px;
  height: 38px;
}

label.select::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  border-top: 6px solid var(--k);
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  font-size: 1.4rem;
}

/*
表示確認済みPC : chrome,safari,edge,firefoxはアップデードでselectの疑似要素がOKになりました。
※ IE11~9はデフォルト表示
確認済みSP : 【ios12】 Safari/chrome 【android7】chrome
*/
/* IE9以下はデフォルト */
label.select::after,
label.select::before {
  display: none\9 ;
}

/* IE10,11はデフォルト */
@media all and (-ms-high-contrast: none) {
  label.select::after,
  label.select::before {
    display: none;
  }
}
/* ======= sp ======= */
@media screen and (max-width: 960px) {
  label.select::after {
    right: 10px;
    border-top: 5px solid var(--k);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 1.4rem;
  }
}
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .headline
===================================================================*/
/*==================================================================
    .h01
===================================================================*/
.h01 {
  display: flex;
  flex-flow: column nowrap;
}
.h01 span {
  font-size: 6rem;
  font-family: var(--font1);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 960px) {
  .h01 span {
    font-size: 5.7rem;
  }
}
.h01 em {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 2rem;
}
.h01 em::before {
  display: block;
  content: "";
  width: 66px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
}

/*==================================================================
    .h02
===================================================================*/
.h02 {
  position: relative;
  z-index: 2;
}
.h02 span {
  display: inline;
  font-size: 4.5rem;
  line-height: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 960px) {
  .h02 span {
    font-size: 3rem;
  }
}
.h02 span::after {
  display: inline-block;
  content: "";
  width: 66px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin-top: 0.5em;
}
@media screen and (max-width: 960px) {
  .h02 span::after {
    width: 42px;
  }
}

/*==================================================================
    .h03
===================================================================*/
.h03 {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-end;
  font-size: 6rem;
  font-family: var(--font1);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .h03 {
    font-size: 4.2rem;
  }
}
.h03::after {
  display: block;
  content: "";
  width: 66px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin-left: -0.2em;
}
@media screen and (max-width: 960px) {
  .h03::after {
    width: 42px;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .btn
===================================================================*/
/*==================================================================
    .btn01
===================================================================*/
.btn01 {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  font-size: 1.6rem;
  font-family: var(--font1);
  color: var(--k);
  border: solid 1px var(--k);
  position: relative;
}
@media screen and (max-width: 960px) {
  .btn01 {
    height: 50px;
  }
}
.btn01::before, .btn01::after {
  display: block;
  content: "";
  background-color: var(--k);
  position: absolute;
  transition: var(--transition);
}
.btn01::before {
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 5px;
  transform-origin: 100% 0;
  transform: scale(0);
}
@media screen and (max-width: 960px) {
  .btn01::before {
    transform: scale(1);
  }
}
.btn01::after {
  width: 1px;
  height: 100%;
  bottom: -5px;
  right: -5px;
  transform-origin: 100% 100%;
  transform: scale(0);
}
@media screen and (max-width: 960px) {
  .btn01::after {
    transform: scale(1);
  }
}
.btn01:hover::before {
  transform: scale(1);
}
.btn01:hover::after {
  transform: scale(1);
}
.btn01.-fz20 {
  font-size: 2rem;
  height: 60px;
}
.btn01.-blank span {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.btn01.-blank span::before {
  display: block;
  content: "";
  width: 15.5px;
  height: 15.5px;
  background-image: url(../img/common/icon_blank.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-right: 6px;
}
.btn01.-teacher span {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 20px;
}
.btn01.-teacher span::after {
  display: block;
  content: "";
  width: 15.5px;
  height: 15.5px;
  background-image: url(../img/common/icon_blank.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/*==================================================================
    .pagetop
===================================================================*/
.pagetop {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: solid 1px var(--k);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .pagetop {
    width: 46px;
    height: 46px;
  }
}
.pagetop::before, .pagetop::after {
  display: block;
  content: "";
  background-color: var(--k);
  position: absolute;
  transition: var(--transition);
}
.pagetop::before {
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 5px;
  transform-origin: 100% 0;
  transform: scale(0);
}
@media screen and (max-width: 960px) {
  .pagetop::before {
    transform: scale(1);
  }
}
.pagetop::after {
  width: 1px;
  height: 100%;
  bottom: -5px;
  right: -5px;
  transform-origin: 100% 100%;
  transform: scale(0);
}
@media screen and (max-width: 960px) {
  .pagetop::after {
    transform: scale(1);
  }
}
.pagetop img {
  display: inline-block;
  transition: var(--transition);
}
@media screen and (max-width: 960px) {
  .pagetop img {
    width: 10px;
  }
}
.pagetop:hover::before {
  transform: scale(1);
}
.pagetop:hover::after {
  transform: scale(1);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .li01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .pagenation
===================================================================*/
/*==================================================================
    .pagenation
===================================================================*/
.pagenation_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.pagenation_info {
  font-family: var(--font2);
  margin: 0 36px;
}
.pagenation_prev, .pagenation_next {
  width: 36px;
  height: 36px;
}
.pagenation_prev a, .pagenation_next a {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  border: solid 1px var(--k);
}
.pagenation_prev a:hover, .pagenation_next a:hover {
  border: solid 1px var(--c2);
}
.pagenation_prev a {
  background-image: url(../img/common/icon_news_prev.svg);
}
.pagenation_prev a:hover {
  background-image: url(../img/common/icon_news_prev_h.svg);
}
.pagenation_next a {
  background-image: url(../img/common/icon_news_next.svg);
}
.pagenation_next a:hover {
  background-image: url(../img/common/icon_news_next_h.svg);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .header
===================================================================*/
/*==================================================================
    .header
===================================================================*/
.header {
  width: 100%;
  background-color: var(--w);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: var(--transition);
}
.header_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 120px;
  padding: 0 3.5714285714% 0 2.5%;
  transition: var(--transition);
}
@media screen and (max-width: 1080px) {
  .header_inner {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 960px) {
  .header_inner {
    height: 80px;
    justify-content: flex-start;
    padding: 0 2.6666666667vw;
  }
}
@media screen and (max-width: 1080px) {
  .header_logo {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .header_logo {
    display: block;
  }
}
.header_logo .full {
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.header_logo .full img {
  margin-right: 10px;
}
.header_logo .small {
  display: none;
  transition: var(--transition);
}
@media screen and (max-width: 960px) {
  .header_nav {
    display: none;
  }
}
.header_nav .sub {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.header_nav .sub_item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  flex-shrink: 0;
  max-width: 100%;
}
.header_nav .sub_item a {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--k);
  position: relative;
}
.header_nav .sub_item a::before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  bottom: -0.4em;
  left: 0;
  transition: var(--transition);
}
.header_nav .sub_item a:hover::before {
  width: 100%;
}
.header_nav .sub_item:first-of-type::after {
  display: block;
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 8px;
}
.header_nav .main {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
.header_nav .main_item {
  flex-shrink: 0;
  max-width: 100%;
}
.header_nav .main_item:not(:last-of-type) {
  margin-right: 15px;
}
.header_nav .main_item a {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--k);
  position: relative;
}
.header_nav .main_item a::before {
  display: block;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  bottom: -0.4em;
  left: 0;
  transition: var(--transition);
}
.header_nav .main_item a:hover::before {
  width: 100%;
}
.header.scrolled {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
}
.header.scrolled .header_inner {
  height: 60px;
}
@media screen and (max-width: 960px) {
  .header.scrolled .header_inner {
    height: 80px;
  }
}
.header.scrolled .header_logo .full {
  display: none;
}
@media screen and (max-width: 960px) {
  .header.scrolled .header_logo .full {
    display: block;
    display: flex;
    align-items: center;
  }
}
.header.scrolled .header_logo .small {
  display: block;
}
@media screen and (max-width: 960px) {
  .header.scrolled .header_logo .small {
    display: none;
  }
}
.header.scrolled .header_nav .sub {
  display: none;
}

.wrapper {
  margin-top: 120px;
  transform: var(--transition);
}
@media screen and (max-width: 960px) {
  .wrapper {
    margin-top: 80px;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .hamburger
===================================================================*/
.hamburger {
  display: none;
  width: 80px;
  height: 80px;
  padding-top: 18px;
  background-color: var(--w);
  text-align: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  cursor: pointer;
  transition: var(--transition);
}
@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
  }
}
.hamburger .menu {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.8em;
}
.hamburger__inner {
  width: 34px;
  height: 10px;
  display: inline-block;
  position: relative;
}
.hamburger__box {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
}
.hamburger__box::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.hamburger__box::after {
  bottom: -9px;
}

/*  spin
---------------------------------------------*/
.hamburger--spin__box {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin__box::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* ======= active ======= */
.hamburger.-active {
  mix-blend-mode: normal;
}
.hamburger.-active .menu {
  opacity: 0;
}
.hamburger.-active .hamburger__box {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger.-active .hamburger__box::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .nav-open : 開いたメニュー画面
===================================================================*/
.nav-open01 {
  width: 100%;
  height: 100%;
  background-color: var(--w);
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  transition: var(--transition);
  overflow-y: scroll;
}
.nav-open01 .spnav {
  padding: 90px 8vw 50px;
  background: linear-gradient(143deg, rgba(204, 222, 248, 0.69) 45.67%, rgba(241, 194, 246, 0.69) 93.32%);
}
.nav-open01 .spnav_logo {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px var(--w);
}
.nav-open01 .spnav_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
.nav-open01 .spnav_list .list.-first {
  width: 45.3333333333vw;
  margin-right: 5.3333333333vw;
}
.nav-open01 .spnav_list .list.-second {
  width: 33.3333333333vw;
}
.nav-open01 .spnav_list .list_item:not(:last-of-type) {
  margin-bottom: 25px;
}
.nav-open01 .spnav_list .list_item a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--k);
}
.nav-open01 .spnav_list .list_item a::before {
  display: block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin-right: 0.4em;
}
.nav-open01 .spcta {
  padding: 25px 8vw;
  background-color: var(--w);
}
.nav-open01 .spcta .ttl {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.3em;
}
.nav-open01 .spcta .add {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.15em;
}
.nav-open01 .spcta .btn {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}
.nav-open01.-active {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .footer
===================================================================*/
/*==================================================================
    .footer
===================================================================*/
.footer {
  padding: 80px 0 50px;
  background: linear-gradient(103deg, #ddf8ff 1.2%, #ffecb9 100%);
  position: relative;
}
@media screen and (max-width: 960px) {
  .footer {
    padding: 40px 0;
  }
}
.footer_up {
  padding: 0 0 75px;
  border-bottom: solid 1px var(--w);
}
@media screen and (max-width: 960px) {
  .footer_up {
    padding: 0 0 45px;
  }
}
.footer_up .flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-right: 4.1666666667%;
}
@media screen and (max-width: 960px) {
  .footer_up .flex {
    flex-flow: column nowrap;
    padding-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .footer_up .flex_l {
    width: 100%;
  }
}
.footer_up .flex_l .ttl {
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 960px) {
  .footer_up .flex_l .ttl {
    font-size: 2.4rem;
    line-height: normal;
    text-align: center;
    margin-bottom: 1.6em;
  }
}
@media screen and (max-width: 960px) {
  .footer_up .flex_r {
    width: 100%;
  }
}
.footer_up .flex_r .btn {
  width: 240px;
}
@media screen and (max-width: 960px) {
  .footer_up .flex_r .btn {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}
.footer_dn {
  padding: 45px 0 0;
}
.footer_dn .ttl {
  margin-bottom: 25px;
  transition: 0.3s;
}
.footer_dn .ttl:hover {
  opacity: 0.6;
}
@media screen and (max-width: 960px) {
  .footer_dn .ttl {
    text-align: center;
  }
}
.footer_dn nav {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  .footer_dn nav {
    display: none;
  }
}
.footer_dn nav .list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.footer_dn nav .list_item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 0.8em;
}
.footer_dn nav .list_item:not(:last-of-type)::after {
  display: block;
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.8em;
}
.footer_dn nav .list_item a {
  font-size: 1.6rem;
  color: var(--k);
  font-weight: 500;
}
.footer_dn nav .list_item a:hover {
  text-decoration: underline;
}
.footer_dn .copy {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .footer_dn .copy {
    flex-flow: column nowrap;
  }
}
.footer_dn .copy_logo {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .footer_dn .copy_logo {
    flex-flow: column nowrap;
    margin-bottom: 30px;
  }
}
.footer_dn .copy_logo .icon {
  margin-right: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  .footer_dn .copy_logo .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.footer_dn .copy_logo .add {
  font-size: 1.4rem;
}
@media screen and (max-width: 960px) {
  .footer_dn .copy_logo .add {
    text-align: center;
  }
}
.footer_dn .copy small {
  margin-left: 1em;
}
@media screen and (max-width: 960px) {
  .footer_dn .copy small {
    font-size: 1.1rem;
    line-height: normal;
    text-align: center;
    margin-left: 0;
  }
}
.footer .scroll-top {
  width: 100%;
  position: absolute;
  top: -84px;
}
@media screen and (max-width: 960px) {
  .footer .scroll-top {
    top: -80px;
  }
}
.footer .scroll-top_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

/*==================================================================
    .pankuzu
===================================================================*/
.pankuzu_inner {
  padding: 10px 75px 10px 0;
}
.pankuzu .list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
.pankuzu .list_item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .pankuzu .list_item {
    font-size: 1.4rem;
  }
}
.pankuzu .list_item:not(:last-of-type)::after {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.5em;
}
@media screen and (max-width: 960px) {
  .pankuzu .list_item:not(:last-of-type)::after {
    width: 16px;
    margin: 0 0.2em;
  }
}
.pankuzu .list_item a {
  color: var(--k);
}
.pankuzu .list_item a:hover {
  color: var(--c2);
}

#admission .pankuzu {
  background-color: #f0f4f6;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .hero
===================================================================*/
/*==================================================================
    .hero
===================================================================*/
.hero {
  padding: 0 50px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .hero {
    padding: 0;
  }
}
.hero_inner {
  width: 100%;
  position: relative;
}
.hero_catch {
  position: absolute;
  left: 20px;
  bottom: 25px;
  z-index: 2;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--k);
  letter-spacing: 0.09em;
}
@media screen and (max-width: 960px) {
  .hero_catch {
    left: 5.3333333333vw;
    bottom: 40px;
    font-size: 2.6rem;
  }
}
.hero_catch .black {
  opacity: 1;
  transition: var(--transition);
}
.hero_catch .white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}
.hero_catch.-w {
  color: var(--w);
}
.hero_icon {
  position: absolute;
  top: 50%;
  left: -90px;
  margin-top: -150px;
  z-index: 2;
  animation: rotate-icon 24s linear infinite;
}
@media screen and (max-width: 960px) {
  .hero_icon {
    left: auto;
    right: -95px;
    margin-top: -95px;
  }
  .hero_icon img {
    width: 190px;
  }
}
@keyframes rotate-icon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.hero_topics {
  position: absolute;
  right: 20px;
  bottom: 15px;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .hero_topics {
    width: 100%;
    max-width: 335px;
    bottom: -160px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 auto;
  }
}
.hero_topics .topics_item a {
  display: block;
  background-color: var(--w);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
  padding: 1em 2em;
  color: var(--k);
}
@media screen and (max-width: 960px) {
  .hero_topics .topics_item a {
    padding: 0.8em 1.25em;
  }
}
.hero_topics .topics_item a dl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .hero_topics .topics_item a dl {
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}
.hero_topics .topics_item a dl dt {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.5rem;
  font-family: var(--font1);
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  .hero_topics .topics_item a dl dt {
    font-size: 1.6rem;
    margin-bottom: 0.4em;
  }
}
.hero_topics .topics_item a dl dt::after {
  display: block;
  content: "";
  width: 18px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.5em;
  transition: var(--transition);
}
.hero_topics .topics_item a dl dd {
  font-size: 1.3rem;
  font-weight: 500;
}
.hero_topics .topics_item a:hover {
  color: var(--c2);
  box-shadow: none;
}
.hero_topics .topics_item a:hover dt::after {
  background-color: var(--c2);
}
.hero_slider {
  width: 100%;
  position: relative;
}
.hero_slider .slider {
  width: 100%;
}
.hero_slider .slider_item {
  height: calc(100vh - 120px);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item {
    height: auto;
    aspect-ratio: 375/475;
  }
}
.hero_slider .slider_item.-item01 {
  background-image: url(../img/top/top_slider_01.jpg);
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item.-item01 {
    background-image: url(../img/top/top_slider_01_sp.jpg);
  }
}
.hero_slider .slider_item.-item02 {
  background-image: url(../img/top/top_slider_02.jpg);
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item.-item02 {
    background-image: url(../img/top/top_slider_02_sp.jpg);
  }
}
.hero_slider .slider_item.-item03 {
  background-image: url(../img/top/top_slider_03.jpg);
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item.-item03 {
    background-image: url(../img/top/top_slider_03_sp.jpg);
  }
}
.hero_slider .slider_item.-item04 {
  background-image: url(../img/top/top_slider_04.jpg);
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item.-item04 {
    background-image: url(../img/top/top_slider_04_sp.jpg);
  }
}
.hero_slider .slider_item.-item05 {
  background-image: url(../img/top/top_slider_05.jpg);
}
@media screen and (max-width: 960px) {
  .hero_slider .slider_item.-item05 {
    background-image: url(../img/top/top_slider_05_sp.jpg);
  }
}
.hero_slider .counter {
  font-size: 1.2rem;
  font-weight: 500;
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: absolute;
  right: 20px;
  top: 51%;
  letter-spacing: 1.5em;
  transform: translateY(-50%);
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .hero_slider .counter {
    right: 5.3333333333vw;
  }
}

/*==================================================================
    .hero-ul
===================================================================*/
.hero-ul_inner {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .hero-ul_inner {
    padding-top: 55px;
    padding-bottom: 25px;
  }
}
.hero-ul .icon {
  position: absolute;
  top: -275px;
  left: -135px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .hero-ul .icon {
    top: -325px;
    left: -25px;
  }
  .hero-ul .icon img {
    width: 190px;
  }
}
.hero-ul_ttl {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-end;
  font-size: 2rem;
  padding-right: 75px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .hero-ul_ttl {
    font-size: 1.6rem;
    padding-right: 45px;
    text-align: right;
  }
}
.hero-ul_ttl span {
  font-size: 8rem;
  font-family: var(--font1);
  position: relative;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 960px) {
  .hero-ul_ttl span {
    font-size: 5.7rem;
  }
}
.hero-ul_ttl span::after {
  display: block;
  content: "";
  width: 66px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  position: absolute;
  right: -75px;
  bottom: 35px;
}
@media screen and (max-width: 960px) {
  .hero-ul_ttl span::after {
    width: 42px;
    right: -45px;
    bottom: 25px;
  }
}

.hero-img {
  width: 89.2857142857%;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .hero-img {
    width: 93.3333333333vw;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  transition: var(--transition);
  animation-duration: var(--time);
  animation-fill-mode: both;
}

.animate.-animated {
  visibility: visible;
}

.aInfinite {
  animation-iteration-count: infinite;
}

.aEx {
  transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.-a0 {
  animation-duration: 0s;
  animation-fill-mode: both;
}

.-a1 {
  animation-duration: 0.1s;
  animation-fill-mode: both;
}

.-a2 {
  animation-duration: 0.2s;
  animation-fill-mode: both;
}

.-a3 {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.-a4 {
  animation-duration: 0.4s;
  animation-fill-mode: both;
}

.-a5 {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

.-a6 {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

.-a7 {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.-a8 {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.-a9 {
  animation-duration: 0.9s;
  animation-fill-mode: both;
}

.-a10 {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.-a11 {
  animation-duration: 1.1s;
  animation-fill-mode: both;
}

.-a12 {
  animation-duration: 1.2s;
  animation-fill-mode: both;
}

.-a13 {
  animation-duration: 1.3s;
  animation-fill-mode: both;
}

.-a14 {
  animation-duration: 1.4s;
  animation-fill-mode: both;
}

.-a15 {
  animation-duration: 1.5s;
  animation-fill-mode: both;
}

.-a16 {
  animation-duration: 1.6s;
  animation-fill-mode: both;
}

.-a17 {
  animation-duration: 1.7s;
  animation-fill-mode: both;
}

.-a18 {
  animation-duration: 1.8s;
  animation-fill-mode: both;
}

.-a19 {
  animation-duration: 1.9s;
  animation-fill-mode: both;
}

.-a20 {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.-a21 {
  animation-duration: 2.1s;
  animation-fill-mode: both;
}

.-a22 {
  animation-duration: 2.2s;
  animation-fill-mode: both;
}

.-a23 {
  animation-duration: 2.3s;
  animation-fill-mode: both;
}

.-a24 {
  animation-duration: 2.4s;
  animation-fill-mode: both;
}

.-a25 {
  animation-duration: 2.5s;
  animation-fill-mode: both;
}

.-a26 {
  animation-duration: 2.6s;
  animation-fill-mode: both;
}

.-a27 {
  animation-duration: 2.7s;
  animation-fill-mode: both;
}

.-a28 {
  animation-duration: 2.8s;
  animation-fill-mode: both;
}

.-a29 {
  animation-duration: 2.9s;
  animation-fill-mode: both;
}

.-a30 {
  animation-duration: 3s;
  animation-fill-mode: both;
}

.-a31 {
  animation-duration: 3.1s;
  animation-fill-mode: both;
}

.-a32 {
  animation-duration: 3.2s;
  animation-fill-mode: both;
}

.-a33 {
  animation-duration: 3.3s;
  animation-fill-mode: both;
}

.-a34 {
  animation-duration: 3.4s;
  animation-fill-mode: both;
}

.-a35 {
  animation-duration: 3.5s;
  animation-fill-mode: both;
}

.-a36 {
  animation-duration: 3.6s;
  animation-fill-mode: both;
}

.-a37 {
  animation-duration: 3.7s;
  animation-fill-mode: both;
}

.-a38 {
  animation-duration: 3.8s;
  animation-fill-mode: both;
}

.-a39 {
  animation-duration: 3.9s;
  animation-fill-mode: both;
}

.-a40 {
  animation-duration: 4s;
  animation-fill-mode: both;
}

.-a41 {
  animation-duration: 4.1s;
  animation-fill-mode: both;
}

.-a42 {
  animation-duration: 4.2s;
  animation-fill-mode: both;
}

.-a43 {
  animation-duration: 4.3s;
  animation-fill-mode: both;
}

.-a44 {
  animation-duration: 4.4s;
  animation-fill-mode: both;
}

.-a45 {
  animation-duration: 4.5s;
  animation-fill-mode: both;
}

.-a46 {
  animation-duration: 4.6s;
  animation-fill-mode: both;
}

.-a47 {
  animation-duration: 4.7s;
  animation-fill-mode: both;
}

.-a48 {
  animation-duration: 4.8s;
  animation-fill-mode: both;
}

.-a49 {
  animation-duration: 4.9s;
  animation-fill-mode: both;
}

.-a50 {
  animation-duration: 5s;
  animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.-ad0 {
  animation-delay: 0s;
}

.-ad1 {
  animation-delay: 0.1s;
}

.-ad2 {
  animation-delay: 0.2s;
}

.-ad3 {
  animation-delay: 0.3s;
}

.-ad4 {
  animation-delay: 0.4s;
}

.-ad5 {
  animation-delay: 0.5s;
}

.-ad6 {
  animation-delay: 0.6s;
}

.-ad7 {
  animation-delay: 0.7s;
}

.-ad8 {
  animation-delay: 0.8s;
}

.-ad9 {
  animation-delay: 0.9s;
}

.-ad10 {
  animation-delay: 1s;
}

.-ad11 {
  animation-delay: 1.1s;
}

.-ad12 {
  animation-delay: 1.2s;
}

.-ad13 {
  animation-delay: 1.3s;
}

.-ad14 {
  animation-delay: 1.4s;
}

.-ad15 {
  animation-delay: 1.5s;
}

.-ad16 {
  animation-delay: 1.6s;
}

.-ad17 {
  animation-delay: 1.7s;
}

.-ad18 {
  animation-delay: 1.8s;
}

.-ad19 {
  animation-delay: 1.9s;
}

.-ad20 {
  animation-delay: 2s;
}

.-ad21 {
  animation-delay: 2.1s;
}

.-ad22 {
  animation-delay: 2.2s;
}

.-ad23 {
  animation-delay: 2.3s;
}

.-ad24 {
  animation-delay: 2.4s;
}

.-ad25 {
  animation-delay: 2.5s;
}

.-ad26 {
  animation-delay: 2.6s;
}

.-ad27 {
  animation-delay: 2.7s;
}

.-ad28 {
  animation-delay: 2.8s;
}

.-ad29 {
  animation-delay: 2.9s;
}

.-ad30 {
  animation-delay: 3s;
}

.-ad31 {
  animation-delay: 3.1s;
}

.-ad32 {
  animation-delay: 3.2s;
}

.-ad33 {
  animation-delay: 3.3s;
}

.-ad34 {
  animation-delay: 3.4s;
}

.-ad35 {
  animation-delay: 3.5s;
}

.-ad36 {
  animation-delay: 3.6s;
}

.-ad37 {
  animation-delay: 3.7s;
}

.-ad38 {
  animation-delay: 3.8s;
}

.-ad39 {
  animation-delay: 3.9s;
}

.-ad40 {
  animation-delay: 4s;
}

.-ad41 {
  animation-delay: 4.1s;
}

.-ad42 {
  animation-delay: 4.2s;
}

.-ad43 {
  animation-delay: 4.3s;
}

.-ad44 {
  animation-delay: 4.4s;
}

.-ad45 {
  animation-delay: 4.5s;
}

.-ad46 {
  animation-delay: 4.6s;
}

.-ad47 {
  animation-delay: 4.7s;
}

.-ad48 {
  animation-delay: 4.8s;
}

.-ad49 {
  animation-delay: 4.9s;
}

.-ad50 {
  animation-delay: 5s;
}

.op0 {
  opacity: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #top
===================================================================*/
/*==================================================================
    #top .news
===================================================================*/
#top .news {
  padding: 120px 0 140px;
}
@media screen and (max-width: 960px) {
  #top .news {
    padding: 220px 0 80px;
  }
}
#top .news_flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  #top .news_flex {
    flex-flow: column nowrap;
  }
}
#top .news_flex-l {
  width: 35.8333333333%;
}
@media screen and (max-width: 960px) {
  #top .news_flex-l {
    width: 100%;
  }
}
#top .news_flex-l .h01 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  #top .news_flex-l .h01 {
    margin-bottom: 40px;
  }
}
#top .news_flex-l .btn {
  max-width: 240px;
}
@media screen and (max-width: 960px) {
  #top .news_flex-l .btn {
    display: none;
  }
}
#top .news_flex-r {
  width: 60%;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list {
    margin-bottom: 40px;
  }
}
#top .news_flex-r .list_item {
  padding-bottom: 10px;
  border-bottom: solid 1px var(--g1);
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item {
    padding-bottom: 20px;
  }
}
#top .news_flex-r .list_item:not(:first-of-type) {
  padding-top: 50px;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item:not(:first-of-type) {
    padding-top: 20px;
  }
}
#top .news_flex-r .list_item a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  color: var(--k);
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item a {
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}
#top .news_flex-r .list_item a:hover {
  color: var(--c2);
}
#top .news_flex-r .list_item a .icons {
  width: 130px;
  margin-right: 10px;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item a .icons {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    margin-right: 0;
    margin-bottom: 0.6em;
  }
}
#top .news_flex-r .list_item a .icons_wrap {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  margin-bottom: 0.4em;
}
#top .news_flex-r .list_item a .icons_date {
  font-size: 1.6rem;
  font-family: var(--font1);
  font-weight: 500;
  margin-right: 0.4em;
}
#top .news_flex-r .list_item a .icons_new {
  font-family: 1.4rem;
  font-family: var(--font2);
  font-weight: 500;
  color: var(--c1);
}
#top .news_flex-r .list_item a .icons_cat {
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item a .icons_cat {
    flex-flow: row wrap;
  }
}
#top .news_flex-r .list_item a .icons_cat-item {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item a .icons_cat-item {
    padding-left: 0;
    margin-bottom: 0.2em;
  }
}
#top .news_flex-r .list_item a .icons_cat-item:not(:last-of-type) {
  margin-bottom: 0.2em;
  margin-right: 0.4em;
}
#top .news_flex-r .list_item a .txt {
  width: calc(100% - 140px);
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .list_item a .txt {
    width: 100%;
  }
}
#top .news_flex-r .list_item a .txt p {
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
}
#top .news_flex-r .btn-sp {
  display: none;
}
@media screen and (max-width: 960px) {
  #top .news_flex-r .btn-sp {
    display: block;
    max-width: 190px;
    margin: 0 auto;
  }
}

/*==================================================================
    #top .movie
===================================================================*/
@media screen and (max-width: 960px) {
  #top .movie_box {
    padding: 0;
  }
}
#top .movie_box iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
#top .movie_lead-inner {
  padding: 90px 0 80px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #top .movie_lead-inner {
    padding: 50px 0 50px;
  }
}
#top .movie_lead-inner .lead {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #top .movie_lead-inner .lead {
    max-width: unset;
    padding: 0 5.3333333333vw;
  }
}
#top .movie_lead-inner .lead p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}
#top .movie_lead-inner .lead p:not(:last-of-type) {
  margin-bottom: 2.25em;
}
#top .movie_lead-inner .icon {
  position: absolute;
  z-index: -1;
}
#top .movie_lead-inner .icon.-icon01 {
  top: -200px;
  right: 4.5454545455%;
  width: 104px;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  #top .movie_lead-inner .icon.-icon01 {
    top: -130px;
    right: -10px;
    z-index: -1;
  }
}
#top .movie_lead-inner .icon.-icon02 {
  top: 250px;
  left: 3.6363636364%;
  width: 72px;
}
@media screen and (max-width: 960px) {
  #top .movie_lead-inner .icon.-icon02 {
    top: 500px;
    left: -20px;
  }
}
#top .movie_lead-inner .icon.-icon03 {
  top: -150px;
  left: 10%;
  width: 32px;
}
@media screen and (max-width: 960px) {
  #top .movie_lead-inner .icon.-icon03 {
    top: 10px;
    left: 10.6666666667vw;
  }
}
#top .movie_textarea {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "游ゴシック";
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  #top .movie_textarea {
    padding: 4%;
  }
}
#top .movie_textarea .bg {
  margin: 0 auto 200px;
  width: 736px;
  padding: 30px 40px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(101, 125, 198, 0.3);
}
@media screen and (max-width: 960px) {
  #top .movie_textarea .bg {
    margin: 0 auto 100px;
    width: 100%;
    max-width: 736px;
    padding: 30px 20px;
  }
}
#top .movie_textarea .ttl {
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  color: #5B63B5;
}
#top .movie_textarea .ttl::before {
  background-color: #5B63B5;
  bottom: -10px;
  content: "";
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 30px;
}
#top .movie_textarea .txt {
  font-size: 1.4rem;
  font-weight: 500;
}

/*==================================================================
    #top .about
===================================================================*/
#top .about {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #top .about {
    padding: 0 0 100px;
  }
}
#top .about_flex {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-right: -100px;
}
@media screen and (max-width: 960px) {
  #top .about_flex {
    flex-flow: column nowrap;
    margin-right: 0;
  }
}
#top .about_flex-l {
  width: 44.6153846154%;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l {
    width: 100%;
  }
}
#top .about_flex-l .h01 {
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l .h01 {
    margin-bottom: 35px;
  }
}
#top .about_flex-l .img {
  display: none;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l .img {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    margin: 0 calc(var(--spa) * -1) 40px;
  }
}
#top .about_flex-l .outline_ttl {
  font-size: 3.3rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l .outline_ttl {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
}
#top .about_flex-l .outline_txt {
  margin-bottom: 3em;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l .outline_txt {
    margin-bottom: 2.5em;
  }
}
#top .about_flex-l .outline_txt p {
  font-size: 1.6rem;
  line-height: 2.25;
}
#top .about_flex-l .outline_btn {
  max-width: 240px;
}
@media screen and (max-width: 960px) {
  #top .about_flex-l .outline_btn {
    width: 100%;
    max-width: 190px;
    margin: 0 auto;
  }
}
#top .about_flex-r {
  width: 52.3076923077%;
  position: relative;
}
@media screen and (max-width: 960px) {
  #top .about_flex-r {
    display: none;
  }
}

/*==================================================================
    #top .bnr-area
===================================================================*/
#top .bnr-area {
  padding: 0 0 110px;
}
@media screen and (max-width: 960px) {
  #top .bnr-area {
    padding: 0 0 100px;
  }
}
#top .bnr-area_list-item:not(:last-of-type) {
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
#top .bnr-area_list-item a {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  aspect-ratio: 1100/335;
  padding: 0 65px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  position: relative;
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a {
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    aspect-ratio: 335/172;
    padding: 5.3333333333vw;
  }
}
#top .bnr-area_list-item a.first {
  background-image: url(../img/top/bnr-area_bnr_01.png);
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a.first {
    background-image: url(../img/top/bnr-area_bnr_01_sp.png);
  }
}
#top .bnr-area_list-item a.second {
  background-image: url(../img/top/bnr-area_bnr_02.png);
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a.second {
    background-image: url(../img/top/bnr-area_bnr_02_sp.png);
  }
}
#top .bnr-area_list-item a em,
#top .bnr-area_list-item a span {
  position: relative;
  z-index: 2;
}
#top .bnr-area_list-item a em {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--w);
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a em {
    font-size: 2.6rem;
  }
}
#top .bnr-area_list-item a span {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--k);
  background-color: var(--w);
  padding: 0.875em 1.25em;
  margin-left: 1.25em;
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a span {
    font-size: 1.4rem;
    padding: 0.65em 0.85em;
    margin-left: 0;
    margin-top: 0.85em;
  }
}
#top .bnr-area_list-item a::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(23, 26, 66, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  transition: var(--transition);
  opacity: 0;
}
@media screen and (max-width: 960px) {
  #top .bnr-area_list-item a::before {
    display: none;
  }
}
#top .bnr-area_list-item a:hover {
  box-shadow: none;
}
#top .bnr-area_list-item a:hover::before {
  opacity: 1;
}

/*==================================================================
    #top .faq
===================================================================*/
#top .faq {
  padding: 0 0 70px;
}
@media screen and (max-width: 960px) {
  #top .faq {
    padding: 0 0 70px;
  }
}
#top .faq_headline {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
#top .faq_headline .h01 {
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  #top .faq_headline .h01 {
    margin-bottom: 45px;
  }
}
#top .faq_headline .btn {
  width: 100%;
  max-width: 240px;
}
@media screen and (max-width: 960px) {
  #top .faq_headline .btn {
    display: none;
  }
}
#top .faq_list .list {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-left: 4.1666666667%;
}
@media screen and (max-width: 960px) {
  #top .faq_list .list {
    flex-flow: column nowrap;
    padding-left: 0;
    margin-bottom: 40px;
  }
}
#top .faq_list .list_item {
  width: 48.6956521739%;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  #top .faq_list .list_item {
    width: 100%;
    margin-bottom: 15px;
  }
}
#top .faq_list .list_item .q,
#top .faq_list .list_item .a {
  border: 1px solid var(--g1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
#top .faq_list .list_item .q.active,
#top .faq_list .list_item .a.active {
  border: 1px solid var(--k);
}
#top .faq_list .list_item .q {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
  padding: 25px 60px 25px 25px;
  position: relative;
  cursor: pointer;
}
#top .faq_list .list_item .q::before {
  display: block;
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(-45deg);
  transition: var(--transition);
}
#top .faq_list .list_item .q:hover::before {
  transform: rotate(315deg);
}
#top .faq_list .list_item .q.active::before {
  transform: rotate(0deg);
}
#top .faq_list .list_item .a {
  display: none;
  padding: 40px;
  margin-top: -1px;
}
@media screen and (max-width: 960px) {
  #top .faq_list .list_item .a {
    padding: 25px;
  }
}
#top .faq_list .list_item .a p {
  font-size: 1.6rem;
  line-height: 2.25;
}
#top .faq_list .list_item .a p:not(:last-of-type) {
  margin-bottom: 2.25em;
}
#top .faq_list .list_item .a p a {
  color: var(--k);
  text-decoration: underline;
}
#top .faq_list .list_item .a p a:hover {
  text-decoration: none;
}
#top .faq_list .list_item .a .caution {
  margin-top: 2em;
}
#top .faq_list .list_item .a .caution p {
  font-size: 1.4rem;
  line-height: 1.8;
}
#top .faq_list .list_item .a .caution p:not(:last-of-type) {
  margin-bottom: 1em;
}
#top .faq_btn {
  display: none;
}
@media screen and (max-width: 960px) {
  #top .faq_btn {
    display: block;
    width: 100%;
    max-width: 190px;
    margin: 0 auto;
  }
}

/*==================================================================
    #top .bnr
===================================================================*/
#top .bnr {
  width: 100%;
  text-align: center;
  margin: 0 0 180px;
}
#top .bnr a {
  width: 403px;
  height: 106px;
  background-color: rgba(23, 26, 66, 0.7);
  display: inline-block;
}
@media screen and (max-width: 960px) {
  #top .bnr a {
    width: 350px;
    height: auto;
  }
}
#top .bnr img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #about
===================================================================*/
/*==================================================================
    #about .purpose
===================================================================*/
#about .purpose {
  padding: 150px 0 200px;
}
@media screen and (max-width: 960px) {
  #about .purpose {
    padding: 50px 0 80px;
  }
}
#about .purpose_inner {
  position: relative;
}
#about .purpose_inner .h02 {
  position: absolute;
  right: 5.6vw;
  top: 0;
}
@media screen and (max-width: 960px) {
  #about .purpose_inner .h02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 30px;
  }
}
#about .purpose_lead {
  padding: 120px 0 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  #about .purpose_lead {
    padding: 0;
  }
}
#about .purpose_lead .icon {
  position: absolute;
  bottom: 60px;
  right: -100px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #about .purpose_lead .icon {
    display: none;
  }
}
#about .purpose_lead-inner {
  max-width: 700px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #about .purpose_lead-inner {
    max-width: unset;
  }
}
#about .purpose_lead-inner .ttl {
  font-size: 3rem;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 960px) {
  #about .purpose_lead-inner .ttl {
    font-size: 2.2rem;
  }
}
#about .purpose_lead-inner .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
#about .purpose_lead-inner .txt p:not(:last-of-type) {
  margin-bottom: 2.25em;
}

/*==================================================================
    #about .image
===================================================================*/
#about .image {
  padding: 0 0 200px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #about .image {
    padding: 0 0 80px;
  }
}
#about .image::before {
  display: block;
  content: "";
  width: 100%;
  height: 510px;
  background: linear-gradient(143deg, rgba(204, 222, 248, 0.69) 45.67%, rgba(241, 194, 246, 0.69) 93.32%);
  position: absolute;
  top: 120px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #about .image::before {
    height: 555px;
    top: 90px;
  }
}
#about .image_inner {
  position: relative;
}
#about .image_inner .h02 {
  position: absolute;
  right: 5.6vw;
  top: 0;
}
@media screen and (max-width: 960px) {
  #about .image_inner .h02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 30px;
  }
}
#about .image_image {
  padding: 180px 0 0;
}
@media screen and (max-width: 960px) {
  #about .image_image {
    padding: 0;
  }
}
#about .image_image .ttl {
  font-size: 3.5rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  #about .image_image .ttl {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
}
#about .image_image .img {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  #about .image_image .img {
    margin-bottom: 20px;
  }
}
#about .image_image .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #about .image_image .txt p {
    text-align: left;
  }
}

/*==================================================================
    #about .feature
===================================================================*/
#about .feature {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #about .feature {
    padding: 0 0 80px;
  }
}
#about .feature_inner {
  position: relative;
}
#about .feature_inner .h02 {
  position: absolute;
  right: 5.6vw;
  top: 0;
}
@media screen and (max-width: 960px) {
  #about .feature_inner .h02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 30px;
  }
}
#about .feature_blocks {
  padding: 120px 0 0;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks {
    padding: 0 var(--spa);
  }
}
#about .feature_blocks .blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks {
    flex-flow: column nowrap;
    align-items: center;
  }
}
#about .feature_blocks .blocks:not(:last-of-type) {
  margin-bottom: 120px;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
#about .feature_blocks .blocks_img {
  width: 45.7142857143%;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks_img {
    width: 100%;
    margin-bottom: 20px;
  }
}
#about .feature_blocks .blocks_outline {
  width: 54.2857142857%;
  padding: 85px 10.7142857143% 0 4.4285714286%;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks_outline {
    width: 100%;
    padding: 0;
  }
}
#about .feature_blocks .blocks_outline .ttl {
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks_outline .ttl {
    margin-bottom: 35px;
  }
}
#about .feature_blocks .blocks_outline .ttl_main {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  padding-bottom: 0.4em;
  border-bottom: solid 1px var(--k);
  font-size: 1.8rem;
  font-weight: 500;
  position: relative;
}
#about .feature_blocks .blocks_outline .ttl_main::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  bottom: 2px;
}
#about .feature_blocks .blocks_outline .ttl_main .en {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
#about .feature_blocks .blocks_outline .ttl_main .en::after {
  display: block;
  content: "";
  width: 22px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.4em;
}
#about .feature_blocks .blocks_outline .sub {
  font-size: 2rem;
  line-height: 1.9;
  font-weight: 500;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks_outline .sub {
    margin-bottom: 1.3em;
  }
}
#about .feature_blocks .blocks_outline .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
#about .feature_blocks .blocks.-re {
  flex-flow: row-reverse nowrap;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks.-re {
    flex-flow: column nowrap;
  }
}
#about .feature_blocks .blocks.-re .blocks_outline {
  padding: 85px 4.4285714286% 0 10.7142857143%;
  position: relative;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks.-re .blocks_outline {
    padding: 0;
  }
}
#about .feature_blocks .blocks.-re .blocks_outline .icon {
  position: absolute;
  top: 150px;
  left: -85px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #about .feature_blocks .blocks.-re .blocks_outline .icon {
    display: none;
  }
}

/*==================================================================
    #about .learning
===================================================================*/
#about .learning_inner {
  padding: 120px 0 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  #about .learning_inner {
    padding: 0 var(--spa);
  }
}
#about .learning_inner .h02 {
  position: absolute;
  right: 5.6vw;
  top: 0;
}
@media screen and (max-width: 960px) {
  #about .learning_inner .h02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    position: relative;
    right: auto;
    top: auto;
  }
}
#about .learning_img {
  padding: 100px 0;
  background: linear-gradient(103deg, #c1f3ff 1.2%, #f9eed0 100%);
}
@media screen and (max-width: 960px) {
  #about .learning_img {
    padding: 120px 0 45px;
    margin-top: -80px;
  }
}
#about .learning_img .graph {
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #about .learning_img .graph {
    max-width: unset;
  }
}

/*==================================================================
    #about .policy
===================================================================*/
#about .policy {
  padding: 120px 0 180px;
}
@media screen and (max-width: 960px) {
  #about .policy {
    padding: 80px 0 150px;
  }
}
#about .policy_ttl {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #about .policy_ttl {
    margin-bottom: 30px;
  }
}
#about .policy_list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #about .policy_list {
    flex-flow: column nowrap;
    width: 100%;
    max-width: 276px;
  }
}
#about .policy_list-item {
  width: 30.2222222222%;
}
#about .policy_list-item:first-child {
  margin-right: 40px;
}
@media screen and (max-width: 960px) {
  #about .policy_list-item {
    width: 100%;
  }
  #about .policy_list-item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #message
===================================================================*/
/*==================================================================
    #message .message
===================================================================*/
#message .message {
  padding: 100px 0 140px;
}
@media screen and (max-width: 960px) {
  #message .message {
    padding: 50px 0 100px;
  }
}
#message .message_flex {
  display: flex;
  flex-flow: row-reverse nowrap;
  justify-content: flex-start;
}
@media screen and (max-width: 960px) {
  #message .message_flex {
    flex-flow: column nowrap;
    align-items: center;
  }
}
#message .message_flex-l {
  width: 53.6363636364%;
}
@media screen and (max-width: 960px) {
  #message .message_flex-l {
    width: 100%;
  }
}
#message .message_flex-l .txt {
  margin-bottom: 3em;
}
#message .message_flex-l .txt:last-of-type {
  margin-bottom: 5em;
}
#message .message_flex-l .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
#message .message_flex-l .btn {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #message .message_flex-l .btn {
    width: 100%;
  }
}
#message .message_flex-r {
  width: 23.1818181818%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r {
    width: 100%;
    margin-bottom: 40px;
  }
}
#message .message_flex-r .icon {
  position: absolute;
  top: 30%;
  right: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r .icon {
    display: none;
  }
}
#message .message_flex-r .prof {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r .prof {
    writing-mode: horizontal-tb;
    text-orientation: initial;
    justify-content: center;
  }
}
#message .message_flex-r .prof_dean {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.6rem;
  letter-spacing: 1em;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r .prof_dean {
    letter-spacing: 0.4em;
  }
}
#message .message_flex-r .prof_dean::after {
  display: block;
  content: "";
  width: 42px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 1em 0 2em;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r .prof_dean::after {
    margin: 0 1em 0 0.5em;
  }
}
#message .message_flex-r .prof_name {
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 960px) {
  #message .message_flex-r .prof_name {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #curriculum
===================================================================*/
/*==================================================================
    #curriculum .lead
===================================================================*/
#curriculum .lead {
  padding: 50px 0 200px;
}
@media screen and (max-width: 960px) {
  #curriculum .lead {
    padding: 40px 0 80px;
  }
}
#curriculum .lead_txt P {
  font-size: 2rem;
  line-height: 2.2;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #curriculum .lead_txt P {
    font-size: 1.6rem;
    text-align: left;
  }
}

/*==================================================================
    #curriculum .talent
===================================================================*/
#curriculum .talent {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #curriculum .talent {
    padding: 0 0 100px;
  }
}
#curriculum .talent_inner {
  padding: 110px var(--spa) 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_inner {
    padding: 0 var(--spa);
  }
}
#curriculum .talent_inner .h02 {
  position: absolute;
  right: 5.6vw;
  top: 0;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_inner .h02 {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    position: relative;
    right: auto;
    top: auto;
    margin-bottom: 30px;
  }
}
#curriculum .talent_inner .icon {
  position: absolute;
  bottom: -200px;
  right: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_inner .icon {
    display: none;
  }
}
#curriculum .talent_img {
  width: 77.2727272727%;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_img {
    width: 92vw;
    margin-left: calc(var(--spa) * -1);
  }
}
#curriculum .talent_list {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_list {
    flex-flow: column nowrap;
    align-items: center;
  }
}
#curriculum .talent_list-item {
  width: 30%;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_list-item {
    max-width: 330px;
    width: 100%;
  }
  #curriculum .talent_list-item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
#curriculum .talent_list-item .ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 2.6rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 0.6em;
}
@media screen and (max-width: 960px) {
  #curriculum .talent_list-item .ttl {
    font-size: 2.2rem;
    height: auto !important;
  }
}
#curriculum .talent_list-item .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}

/*==================================================================
    #curriculum .pickup
===================================================================*/
#curriculum .pickup {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #curriculum .pickup {
    padding: 0 0 100px;
  }
}
#curriculum .pickup_inner {
  position: relative;
}
#curriculum .pickup_inner .h03 {
  margin-bottom: 90px;
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_inner .h03 {
    margin-bottom: 45px;
  }
}
#curriculum .pickup_inner .icon {
  position: absolute;
  bottom: -200px;
  left: -100px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_inner .icon {
    display: none;
  }
}
#curriculum .pickup_list {
  border-top: solid 1px var(--g1);
}
#curriculum .pickup_list-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  padding: 50px 0;
  border-bottom: solid 1px var(--g1);
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_list-item {
    flex-flow: column nowrap;
    padding: 25px 0;
  }
}
#curriculum .pickup_list-item .ttl {
  width: 390px;
  font-size: 2rem;
  font-weight: 700;
  padding-left: 42px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_list-item .ttl {
    width: 100%;
    font-size: 1.8rem;
    padding-left: 25px;
    margin-bottom: 1em;
  }
}
#curriculum .pickup_list-item .ttl::before {
  display: block;
  content: "";
  width: 26px;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  top: 50%;
  left: 0;
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_list-item .ttl::before {
    width: 15px;
  }
}
#curriculum .pickup_list-item .txt {
  width: calc(100% - 390px);
}
@media screen and (max-width: 960px) {
  #curriculum .pickup_list-item .txt {
    width: 100%;
  }
}
#curriculum .pickup_list-item .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}

/*==================================================================
    #curriculum .curriculum
===================================================================*/
#curriculum .curriculum {
  padding: 0 0 140px;
}
@media screen and (max-width: 960px) {
  #curriculum .curriculum {
    padding: 0 0 100px;
  }
}
#curriculum .curriculum_inner .h03 {
  margin-bottom: 90px;
}
@media screen and (max-width: 960px) {
  #curriculum .curriculum_inner .h03 {
    margin-bottom: 45px;
  }
}
#curriculum .curriculum_pdf {
  margin-bottom: 10px;
}
#curriculum .curriculum_pdf .pdf a {
  display: block;
  position: relative;
}
#curriculum .curriculum_pdf .pdf a span {
  display: inline-block;
  font-size: 2rem;
  font-family: var(--font2);
  color: var(--w);
  padding: 0.8em;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  #curriculum .curriculum_pdf .pdf a span {
    font-size: 1.6rem;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
  }
}
#curriculum .curriculum_pdf .pdf a:hover span {
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
}
#curriculum .curriculum_pdf .caution p {
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #curriculum .curriculum_pdf .caution p {
    font-family: 1.2rem;
  }
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #teacher
===================================================================*/
/*==================================================================
    #teacher .member
===================================================================*/
#teacher .member {
  padding: 170px 0 200px;
}
@media screen and (max-width: 960px) {
  #teacher .member {
    padding: 80px 0 100px;
  }
}
#teacher .member_blocks {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks {
    flex-flow: column nowrap;
  }
}
#teacher .member_blocks:not(:last-of-type) {
  margin-bottom: 80px;
}
#teacher .member_blocks-l {
  width: 69.0909090909%;
  margin-right: 7.2727272727%;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
#teacher .member_blocks-l .prof {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .prof {
    flex-flow: column nowrap;
  }
}
#teacher .member_blocks-l .prof_name {
  width: 60%;
  padding-right: 1em;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .prof_name {
    width: 100%;
    padding-right: 0;
    margin-bottom: 15px;
  }
}
#teacher .member_blocks-l .prof_name .ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .prof_name .ttl {
    font-size: 2rem;
  }
}
#teacher .member_blocks-l .prof_name .ttl span {
  font-size: 1.4rem;
  font-weight: 400;
  color: #4c5184;
  margin-left: 1.8em;
}
#teacher .member_blocks-l .prof_name .professor {
  font-size: 1.7rem;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .prof_name .professor {
    font-size: 1.6rem;
  }
}
#teacher .member_blocks-l .prof_expert {
  width: 40%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .prof_expert {
    width: 100%;
    justify-content: flex-start;
  }
}
#teacher .member_blocks-l .prof_expert .expert {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 1.4rem;
  line-height: normal;
  font-weight: 500;
}
#teacher .member_blocks-l .prof_expert .expert_ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  white-space: nowrap;
}
#teacher .member_blocks-l .prof_expert .expert_ttl::after {
  display: block;
  content: "";
  width: 22px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.8em;
}
#teacher .member_blocks-l .list_item {
  padding: 30px 0;
  border-top: solid 1px var(--g1);
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-l .list_item {
    padding: 20px 0;
  }
}
#teacher .member_blocks-l .list_item .set {
  display: flex;
  flex-flow: row nowrap;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
}
#teacher .member_blocks-l .list_item .set_ttl {
  width: 135px;
  min-height: 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding-right: 1.8em;
  white-space: nowrap;
}
#teacher .member_blocks-l .list_item .set_ttl::after {
  display: block;
  content: "";
  width: 22px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg) translateY(1.5em);
}
#teacher .member_blocks-l .list_item .set_cont {
  width: calc(100% - 130px);
}
#teacher .member_blocks-r {
  width: 260px;
}
@media screen and (max-width: 960px) {
  #teacher .member_blocks-r {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
#teacher .member_blocks-r .img {
  margin-bottom: 20px;
}
#teacher .member_blocks-r .url_item:not(:last-of-type) {
  margin-bottom: 15px;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #admission
===================================================================*/
/*==================================================================
    #admission .talent
===================================================================*/
#admission .talent {
  padding: 150px 0 200px;
}
@media screen and (max-width: 960px) {
  #admission .talent {
    padding: 50px 0 80px;
  }
}
#admission .talent_inner {
  position: relative;
}
#admission .talent_inner .icon {
  position: absolute;
  bottom: -125px;
  right: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #admission .talent_inner .icon {
    display: none;
  }
}
#admission .talent_blocks {
  display: flex;
  flex-flow: row-reverse nowrap;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks {
    flex-flow: column nowrap;
  }
}
#admission .talent_blocks-r {
  width: 250px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-r {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-r .h02 span {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
}
#admission .talent_blocks-l {
  width: calc(100% - 250px);
  padding: 115px 0 0;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-l {
    width: 100%;
    padding: 0;
  }
}
#admission .talent_blocks-l .list {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-l .list {
    margin-bottom: 40px;
  }
}
#admission .talent_blocks-l .list_item {
  border: solid 1px var(--k);
  padding: 55px;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-l .list_item {
    padding: 30px;
  }
}
#admission .talent_blocks-l .list_item:not(:last-of-type) {
  margin-bottom: 20px;
}
#admission .talent_blocks-l .list_item p {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 960px) {
  #admission .talent_blocks-l .list_item p {
    font-size: 1.6rem;
  }
}
#admission .talent_blocks-l .btn {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}

/*==================================================================
    #admission .admission
===================================================================*/
#admission .admission {
  padding: 150px 0 200px;
  background-color: #f0f4f6;
}
@media screen and (max-width: 960px) {
  #admission .admission {
    padding: 50px 0 100px;
  }
}
#admission .admission_blocks {
  display: flex;
  flex-flow: row-reverse nowrap;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks {
    flex-flow: column nowrap;
  }
}
#admission .admission_blocks-r {
  width: 250px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-r {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-r .h02 span {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
}
#admission .admission_blocks-l {
  width: calc(100% - 250px);
  padding: 100px 0 0;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l {
    width: 100%;
    padding: 0;
  }
}
#admission .admission_blocks-l .blocks:not(:last-of-type) {
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
#admission .admission_blocks-l .blocks_ttl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 3rem;
  font-weight: 500;
  padding-bottom: 0.6em;
  border-bottom: solid 1px var(--k);
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_ttl {
    font-size: 2rem;
  }
}
#admission .admission_blocks-l .blocks_ttl span {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}
#admission .admission_blocks-l .blocks_ttl span::before {
  display: block;
  content: "";
  width: 42px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin: 0 0.8em;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_ttl span::before {
    width: 30px;
    margin: 0 0.4em;
  }
}
#admission .admission_blocks-l .blocks_cont {
  padding: 10px 0 60px;
}
#admission .admission_blocks-l .blocks_cont .tbl {
  width: 100%;
  border-collapse: collapse;
}
#admission .admission_blocks-l .blocks_cont .tbl tr th {
  vertical-align: top;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr th {
    display: block;
    width: 0%;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr th.main {
  width: 140px;
  padding: 40px 0;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr th.main {
    width: 100%;
    padding: 20px 0;
    font-size: 1.8rem;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr th.sub {
  width: 85px;
  padding: 40px 0;
  font-size: 1.6rem;
  font-weight: 500;
  vertical-align: middle;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr th.sub {
    width: 100%;
    padding: 0 0 20px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr td {
  width: calc(100% - 225px);
  padding: 40px 0;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr td {
    display: block;
    width: 100%;
    padding: 0 0 20px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr td .list {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#admission .admission_blocks-l .blocks_cont .tbl tr td .list_item {
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 500;
  padding: 0.8em 1.8em;
  background-color: var(--w);
  border: solid 1px var(--g2);
  margin: 0.2em 0;
  position: relative;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr td .list_item {
    font-size: 1.4rem;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr td .list_item:not(:last-of-type) {
  margin-right: 56px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr td .list_item:not(:last-of-type) {
    margin-right: 30px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr td .list_item:not(:last-of-type)::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/admission/icon_plus.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -36px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr td .list_item:not(:last-of-type)::after {
    width: 10px;
    height: 10px;
    right: -20px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr:first-of-type {
  border-bottom: solid 1px #cccccc;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr:first-of-type td {
    padding: 0 0 20px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr:last-of-type th.sub {
  padding: 0 0 40px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr:last-of-type th.sub {
    padding: 0 0 20px;
  }
}
#admission .admission_blocks-l .blocks_cont .tbl tr:last-of-type td {
  padding: 0 0 40px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_cont .tbl tr:last-of-type td {
    padding: 0 0 20px;
  }
}
#admission .admission_blocks-l .blocks_btn {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_btn {
    flex-flow: column nowrap;
  }
}
#admission .admission_blocks-l .blocks_btn-item {
  width: 270px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_btn-item {
    width: 100%;
    max-width: 270px;
  }
}
#admission .admission_blocks-l .blocks_btn-item:not(:last-of-type) {
  margin-right: 70px;
}
@media screen and (max-width: 960px) {
  #admission .admission_blocks-l .blocks_btn-item:not(:last-of-type) {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#admission .admission_blocks-l .blocks_btn-item .btn01 {
  background-color: var(--w);
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #career
===================================================================*/
/*==================================================================
    #career .course
===================================================================*/
#career .course {
  padding: 150px 0 130px;
}
@media screen and (max-width: 960px) {
  #career .course {
    padding: 50px 0;
  }
}
#career .course_inner {
  position: relative;
}
#career .course_inner .icon {
  position: absolute;
  bottom: 100px;
  right: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #career .course_inner .icon {
    display: none;
  }
}
#career .course_blocks {
  display: flex;
  flex-flow: row-reverse nowrap;
  margin-bottom: 100px;
}
@media screen and (max-width: 960px) {
  #career .course_blocks {
    flex-flow: column nowrap;
    margin-bottom: 60px;
  }
}
#career .course_blocks-r {
  width: 250px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  #career .course_blocks-r {
    width: 100%;
    justify-content: center;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  #career .course_blocks-r .h02 span {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
}
#career .course_blocks-l {
  width: calc(100% - 250px);
  padding: 120px 0 0;
}
@media screen and (max-width: 960px) {
  #career .course_blocks-l {
    width: 100%;
    padding: 0;
  }
}
#career .course_blocks-l .txt p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
#career .course_list {
  display: flex;
  flex-flow: row wrap;
}
@media screen and (max-width: 960px) {
  #career .course_list {
    flex-flow: column nowrap;
  }
}
#career .course_list-item {
  width: 30.4545454545%;
  margin-bottom: 70px;
}
@media screen and (max-width: 960px) {
  #career .course_list-item {
    width: 100%;
    max-width: 335px;
    margin: 0 auto 50px;
  }
}
#career .course_list-item:not(:nth-of-type(3n)) {
  margin-right: 4.3181818182%;
}
@media screen and (max-width: 960px) {
  #career .course_list-item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}
#career .course_list-item .img {
  text-align: center;
  margin-bottom: 15px;
}
#career .course_list-item .ttl {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  font-size: 2.2rem;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 960px) {
  #career .course_list-item .ttl {
    font-size: 2rem;
  }
}
#career .course_list-item .ttl::after {
  display: block;
  content: "";
  width: 30px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  margin-left: 0.2em;
}
@media screen and (max-width: 960px) {
  #career .course_list-item .ttl::after {
    width: 26px;
  }
}
#career .course_list-item .sub {
  font-size: 1.6rem;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 2em;
}
@media screen and (max-width: 960px) {
  #career .course_list-item .sub {
    margin-bottom: 0.5em;
  }
}
#career .course_list-item .txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
}

/*==================================================================
    #career .job
===================================================================*/
#career .job {
  padding: 0 0 180px;
}
@media screen and (max-width: 960px) {
  #career .job {
    padding: 0 0 100px;
  }
}
#career .job_blocks {
  display: flex;
  flex-flow: row-reverse nowrap;
}
@media screen and (max-width: 960px) {
  #career .job_blocks {
    flex-flow: column nowrap;
  }
}
#career .job_blocks-r {
  width: 250px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-r {
    width: 100%;
    justify-content: center;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 960px) {
  #career .job_blocks-r .h02 span {
    writing-mode: horizontal-tb;
    text-orientation: initial;
  }
}
#career .job_blocks-l {
  width: calc(100% - 250px);
  padding: 120px 0 0;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l {
    width: 100%;
    padding: 0;
  }
}
#career .job_blocks-l .blocks {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l .blocks {
    margin-bottom: 60px;
  }
}
#career .job_blocks-l .blocks_ttl {
  font-size: 2.6rem;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l .blocks_ttl {
    margin-bottom: 1em;
  }
}
#career .job_blocks-l .blocks_list ul {
  display: flex;
  flex-flow: row wrap;
}
#career .job_blocks-l .blocks_list ul li {
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 1em;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l .blocks_list ul li {
    margin-bottom: 1em;
  }
}
#career .job_blocks-l .blocks_caution p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #7e7b78;
}
#career .job_blocks-l .blocks_lead {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.8em;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l .blocks_lead {
    font-size: 1.6rem;
  }
}
#career .job_blocks-l .blocks_case ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#career .job_blocks-l .blocks_case ul li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 50px;
  border: solid 1px var(--k);
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  #career .job_blocks-l .blocks_case ul li {
    width: calc(50% - 5px);
  }
  #career .job_blocks-l .blocks_case ul li:nth-of-type(even) {
    margin-right: 0;
  }
}
#career .job_blocks-l .blocks_case ul li:last-of-type {
  width: auto;
  border: none;
  align-items: flex-end;
  justify-content: flex-start;
}
#career .job_blocks-l .btn {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #news
===================================================================*/
/*==================================================================
    #news .news
===================================================================*/
#news .news {
  padding: 0 0 180px;
}
@media screen and (max-width: 960px) {
  #news .news {
    padding: 0 0 100px;
  }
}
#news .news_inner {
  position: relative;
}
#news .news_inner .icon.-icon01 {
  position: absolute;
  top: 30%;
  right: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #news .news_inner .icon.-icon01 {
    display: none;
  }
}
#news .news_inner .icon.-icon02 {
  position: absolute;
  bottom: -125px;
  left: -125px;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  #news .news_inner .icon.-icon02 {
    display: none;
  }
}
#news .news_list {
  max-width: 850px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #news .news_list {
    max-width: unset;
  }
}
#news .news_list .list {
  margin-bottom: 80px;
}
@media screen and (max-width: 960px) {
  #news .news_list .list {
    margin-bottom: 50px;
  }
}
#news .news_list .list_item {
  border-bottom: solid 1px var(--g1);
}
#news .news_list .list_item a {
  display: block;
  color: var(--k);
  padding: 40px 0 50px;
}
@media screen and (max-width: 960px) {
  #news .news_list .list_item a {
    padding: 30px 0;
  }
}
#news .news_list .list_item a .icons {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-family: var(--font2);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1em;
}
#news .news_list .list_item a .icons_date {
  letter-spacing: 0.1em;
}
#news .news_list .list_item a .icons_new {
  font-size: 1.3rem;
  color: var(--c1);
  margin-left: 0.8em;
}
#news .news_list .list_item a .cat {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 1em;
}
#news .news_list .list_item a .cat_item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  font-size: 1.3rem;
  font-family: var(--font2);
  font-weight: 500;
  background: linear-gradient(103deg, #c1f3ff 1.2%, #f9eed0 100%);
  border-radius: 4px;
  margin-bottom: 0.25em;
}
#news .news_list .list_item a .cat_item:not(:first-of-type) {
  margin-left: 0.8em;
}
#news .news_list .list_item a .ttl {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0.4em;
  transition: var(--transition);
}
@media screen and (max-width: 960px) {
  #news .news_list .list_item a .ttl {
    font-size: 1.8rem;
  }
}
#news .news_list .list_item a .txt p {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  transition: var(--transition);
}
#news .news_list .list_item a:hover .ttl {
  color: var(--c2);
}
#news .news_list .list_item a:hover .txt p {
  color: var(--c2);
}

/*==================================================================
    #news .article
===================================================================*/
#news .article {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #news .article {
    padding: 0 0 100px;
  }
}
#news .article_inner {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #news .article_inner {
    max-width: unset;
  }
}
#news .article_head {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
@media screen and (max-width: 960px) {
  #news .article_head {
    flex-flow: column nowrap;
    align-items: flex-start;
  }
}
#news .article_head .cat {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-bottom: 1em;
}
#news .article_head .cat_item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 30px;
  font-size: 1.3rem;
  font-family: var(--font2);
  font-weight: 500;
  background: linear-gradient(103deg, #c1f3ff 1.2%, #f9eed0 100%);
  border-radius: 4px;
  margin-bottom: 0.25em;
}
@media screen and (max-width: 960px) {
  #news .article_head .cat_item {
    margin-left: 0.25em;
    margin-right: 0.25em;
  }
}
#news .article_head .cat_item:not(:first-of-type) {
  margin-left: 0.8em;
}
@media screen and (max-width: 960px) {
  #news .article_head .cat_item:not(:first-of-type) {
    margin-left: 0.25em;
  }
}
#news .article_head .icons {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  font-family: var(--font2);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 1.25em;
  margin-left: 1.5em;
}
@media screen and (max-width: 960px) {
  #news .article_head .icons {
    margin-left: 0.25em;
  }
}
#news .article_head .icons_date {
  letter-spacing: 0.1em;
}
#news .article_head .icons_new {
  font-size: 1.3rem;
  color: var(--c1);
  margin-left: 0.8em;
}
#news .article_ttl {
  font-size: 4rem;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 960px) {
  #news .article_ttl {
    font-size: 3.2rem;
  }
}
#news .article_thumb {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  #news .article_thumb {
    margin-bottom: 50px;
  }
}
#news .article_cont p {
  font-size: 1.6rem;
  line-height: 2.25;
  font-weight: 500;
}
#news .article_cont p:not(:last-of-type) {
  margin-bottom: 2.25em;
}
#news .article_cont h2 {
  font-size: 3.5rem;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 0.2em;
  padding-left: 0.4em;
  border-bottom: solid 1px var(--k);
  margin-bottom: 0.6em;
  margin-top: 1.5em;
  position: relative;
}
@media screen and (max-width: 960px) {
  #news .article_cont h2 {
    font-size: 2.8rem;
  }
}
#news .article_cont h2::before, #news .article_cont h2::after {
  display: block;
  content: "";
  width: 1px;
  height: calc(100% - 0.7em);
  background-color: var(--k);
  position: absolute;
  top: 0.35em;
}
#news .article_cont h2::before {
  left: 0;
}
#news .article_cont h2::after {
  left: 3px;
}
#news .article_cont h3 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 0.2em;
  border-bottom: solid 1px var(--g2);
  margin-top: 2.5em;
  margin-bottom: 0.2em;
  position: relative;
}
@media screen and (max-width: 960px) {
  #news .article_cont h3 {
    font-size: 2.2rem;
  }
}
#news .article_cont h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: normal;
  padding-left: 30px;
  margin-top: 2.2em;
  margin-bottom: 0.5em;
  position: relative;
}
#news .article_cont h4::before {
  display: block;
  content: "";
  width: 28px;
  height: 1px;
  background-color: var(--k);
  transform: rotate(-45deg);
  position: absolute;
  top: 0.8em;
  left: 0;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    #faq
===================================================================*/
/*==================================================================
    #faq .faq
===================================================================*/
#faq .faq {
  padding: 0 0 200px;
}
@media screen and (max-width: 960px) {
  #faq .faq {
    padding: 0 0 100px;
  }
}
#faq .faq_list {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  #faq .faq_list {
    max-width: unset;
  }
}
#faq .faq_list .list {
  display: flex;
  flex-flow: column nowrap;
}
#faq .faq_list .list_item {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 960px) {
  #faq .faq_list .list_item {
    margin-bottom: 15px;
  }
}
#faq .faq_list .list_item .q,
#faq .faq_list .list_item .a {
  border: 1px solid var(--g1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
#faq .faq_list .list_item .q.active,
#faq .faq_list .list_item .a.active {
  border: 1px solid var(--k);
}
#faq .faq_list .list_item .q {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: normal;
  padding: 25px 60px 25px 25px;
  position: relative;
  cursor: pointer;
}
#faq .faq_list .list_item .q::before {
  display: block;
  content: "";
  width: 24px;
  height: 1px;
  background-color: var(--k);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(-45deg);
  transition: var(--transition);
}
#faq .faq_list .list_item .q:hover::before {
  transform: rotate(315deg);
}
#faq .faq_list .list_item .q.active::before {
  transform: rotate(0deg);
}
#faq .faq_list .list_item .a {
  display: none;
  padding: 40px;
  margin-top: -1px;
}
@media screen and (max-width: 960px) {
  #faq .faq_list .list_item .a {
    padding: 25px;
  }
}
#faq .faq_list .list_item .a p {
  font-size: 1.6rem;
  line-height: 2.25;
}
#faq .faq_list .list_item .a p:not(:last-of-type) {
  margin-bottom: 1.8em;
}
#faq .faq_list .list_item .a p a {
  color: var(--k);
  text-decoration: underline;
}
#faq .faq_list .list_item .a p a:hover {
  text-decoration: none;
}
#faq .faq_list .list_item .a .caution {
  margin-top: 2em;
}
#faq .faq_list .list_item .a .caution p {
  font-size: 1.4rem;
  line-height: 1.8;
}
#faq .faq_list .list_item .a .caution p:not(:last-of-type) {
  margin-bottom: 1em;
}/*# sourceMappingURL=style.css.map */