@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: 15px;
}
@media screen and (max-width: 960px) {
  :root {
    --spa: 5.6vw;
  }
}

:root {
  --k: #333;
  --k2: #333;
  --k3: #555;
  --w: #fff;
  --g1: #f5f5f5;
  --g2: #ededed;
  --g3: #ccc;
  --g4: #aaa;
  --g5: #777;
  --g6: #666;
  --c1: #1678bf;
  --c2: #66caf2;
  --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: "";
  --font2: "";
}

: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 {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Noto Sans JP", serif, "Helvetica Neue", Arial, "Hiragino sans", "Hiragino Kaku Gothic ProN", "Meiryo";
  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;
  }
}
/* -----------------------------------------------
    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 ======= */
::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: 1030px;
  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: 1230px;
}
@media screen and (max-width: 960px) {
  .container.-large {
    max-width: auto;
  }
}
@media screen and (min-width: 1501px) {
  .container.-large {
    max-width: 1430px;
  }
}
.container.-small {
  max-width: 860px;
}
@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%;
  }
}
/*  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
===================================================================*/
/*==================================================================
    .h01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .btn01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .li01
===================================================================*/
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .header
===================================================================*/
.header {
  width: 100%;
  background-color: var(--g1);
  padding: 30px;
  height: 100px;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .hamburger
===================================================================*/
.hamburger {
  width: 60px;
  height: 60px;
  padding-top: 18px;
  background-color: #ccc;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  display: block;
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
  font: inherit;
  color: inherit;
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}
@media screen and (max-width: 960px) {
  .hamburger {
    width: 60px;
    height: 60px;
    padding-top: 18px;
    margin: 0;
  }
}
.hamburger__inner {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger__box {
  display: inline-block;
  top: 50%;
  left: 0;
  margin-top: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--k);
  border-radius: 0px;
  position: absolute;
  transition: var(--transition);
}
.hamburger__box::before, .hamburger__box::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--k);
  border-radius: 0px;
  position: absolute;
  left: 0;
  transition: var(--transition);
}
.hamburger__box::before {
  top: -7px;
}
.hamburger__box::after {
  bottom: -7px;
}

/* ======= スマホでのスクロール防止 ======= */
body.-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* ======= hover ======= */
.pc .hamburger:hover {
  opacity: 1;
}
.pc .hamburger:hover .hamburger__box::before {
  top: -4px;
}
.pc .hamburger:hover .hamburger__box::after {
  bottom: -4px;
}

/*  spin
---------------------------------------------*/
.hamburger--spin__box {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin__box::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.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 .hamburger__box {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff !important;
}
.hamburger.-active .hamburger__box::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  background-color: #fff !important;
}
.hamburger.-active .hamburger__box::after {
  background-color: #fff !important;
  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);
}

/* ======= hover ======= */
.pc .hamburger.-active:hover .hamburger__box::before {
  top: 0px;
}
.pc .hamburger.-active:hover .hamburger__box::after {
  bottom: 0px;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .nav-open : 開いたメニュー画面
===================================================================*/
.nav-open01 {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  transition: var(--transition);
  overflow-y: scroll;
}
.nav-open01__inner {
  padding: 80px 30px;
}
.nav-open01__inner__logo {
  margin-bottom: 30px;
}
.nav-open01__inner__list {
  text-align: center;
  margin-bottom: 30px;
}
.nav-open01__inner__list li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nav-open01__inner__list li a {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--w);
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.nav-open01.-active {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    .footer
===================================================================*/
.footer {
  width: 100%;
  background-color: #ddd;
  padding-top: 80px;
  padding-bottom: 100px;
}

/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    hero
===================================================================*/
/*==================================================================
    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;
}

@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 .hero
===================================================================*/

/*==================================================================
    #top .contact
===================================================================*/
#top .contact {
  position: relative;
}
#top .contact_inner {
  padding: 0 6.5625% 12.5%;
  position: relative;
  z-index: 2;
}
#top .contact_form .wpcf7-checkbox input {
  display: none;
  appearance: none;
}
#top .contact_form .wpcf7-checkbox input + span {
  display: inline-block;
  vertical-align: middle;
  padding-left: min(35px, 3.2374100719vw);
  position: relative;
  cursor: pointer;
}
#top .contact_form .wpcf7-checkbox input + span::before {
  display: block;
  content: "";
  width: min(30px, 2.8776978417vw);
  height: min(30px, 2.8776978417vw);
  background-color: #fff;
  border: 1px solid #000;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: max(-13px, -1.4388489209vw);
}
#top .contact_form .wpcf7-checkbox input + span::after {
  display: block;
  content: "";
  width: min(10px, 1.0791366906vw);
  height: min(16px, 1.726618705vw);
  border-right: 2px solid #df303e;
  border-bottom: 2px solid #df303e;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: min(10px, 0.8633093525vw);
  margin-top: max(-10px, -1.0791366906vw);
  opacity: 0;
}
#top .contact_form .wpcf7-checkbox input:checked + span::after {
  opacity: 1;
}
#top .contact_form-kind {
  padding-bottom: 7.5%;
}
#top .contact_form-kind .ttl {
  font-size: clamp(2rem, 2.6875vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: #df303e;
  margin-bottom: 2em;
}
#top .contact_form-kind .list .wpcf7-form-control-wrap {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
#top .contact_form-kind .list .wpcf7-form-control {
  display: flex;
  flex-flow: column nowrap;
  width: fit-content;
}
#top .contact_form-kind .list .wpcf7-list-item {
  margin-bottom: 0.6em;
  margin-left: 0;
}
#top .contact_form-kind .list .wpcf7-list-item:last-of-type {
  margin-bottom: 0;
}
#top .contact_form-kind .list .wpcf7-list-item-label {
  font-size: clamp(1.5rem, 2.6875vw, 2.4rem);
  line-height: 1.6;
  margin-bottom: 10px;
}
#top .contact_form-input {
  padding-bottom: 7.5%;
}
#top .contact_form-input dl:not(:last-of-type) {
  margin-bottom: 6.25%;
}
#top .contact_form-input dl dt {
  font-size: clamp(1.4rem, 2.6875vw, 2.2rem);
  margin-bottom: 0.8em;
}
#top .contact_form-input dl dt .must {
  font-size: clamp(1.4rem, 1.875vw, 1.6rem);
  color: var(--w);
  background-color: #df303e;
  padding: 0.2em 0.6em;
  margin-right: 0.4em;
}
#top .contact_form-input dl dt .as {
  color: #df303e;
}
#top .contact_form-input dl dd {
  line-height: 1.6;
}
#top .contact_form-input dl dd input {
  font-size: clamp(1.6rem, 2.25vw, 2rem);
}
#top .contact_form-privacy {
  padding-bottom: 5%;
}
#top .contact_form-privacy .blocks {
  width: 100%;
  aspect-ratio: 1390/450;
  border: solid 1px #ccc;
  padding: 3.75%;
  overflow: scroll;
}
#top .contact_form-privacy .blocks .ttl {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 2em;
}
#top .contact_form-privacy .blocks .sub {
  font-size: clamp(1.4rem, 1.875vw, 1.8rem);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 0.5em;
}
#top .contact_form-privacy .blocks .txt {
  margin-bottom: 2em;
}
#top .contact_form-privacy .blocks .txt p {
  font-size: clamp(1.4rem, 1.875vw, 1.8rem);
  line-height: 1.5;
}
#top .contact_form-privacy .blocks .txt p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
#top .contact_form-agree {
  padding-bottom: 5%;
  text-align: center;
}
#top .contact_form-agree .wpcf7-list-item-label {
  font-size: clamp(1.6rem, 1.875vw, 2rem);
}
#top .contact_form-btn {
  width: 100%;
  max-width: 69.0647482014%;
  margin: 0 auto;
}
#top .contact_form-btn input {
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5em 1em;
  font-size: clamp(1.6rem, 3.125vw, 2.5rem);
  background-color: #df303e;
  background-image: url(../../../images/lp/40a/top/contact_icon_arrow.png);
  background-repeat: no-repeat;
  background-position: top 50% right 4%;
  background-size: max(20px, 2.5vw) auto;
  cursor: pointer;
}
#top .contact_form-btn input:hover {
  opacity: 0.6;
}
#top .contact_form-btn input.back {
  background-color: #989898;
  background-image: none;
}
#top .contact_ttl {
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
  font-size: clamp(2rem, 3vw, 3rem);
}

#top .thanks {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding: 200px 20px 50px;
}
@media screen and (max-width: 960px) {
  #top .thanks {
    padding-top: 80px;
  }
}
#top .thanks p {
  margin-bottom: 40px;
  text-align: center;
}
#top .thanks-btn {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#top .thanks-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #df303e;
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 60px;
  border-radius: 3px;
}
@media screen and (max-width: 960px) {
  #top .thanks-btn a {
    line-height: 54px;
  }
}

.wpcf7-response-output {
  display: none;
}

/*==================================================================
    common parts
===================================================================*/
.contact-page_inner {
  max-width: 930px;
  margin: 0 auto;
  padding: 0 var(--spa);
}
@media screen and (max-width: 960px) {
  .contact-page_inner {
    max-width: unset;
  }
}
.contact-form .icon-must {
  line-height: 1 !important;
  background-color: #990000;
  padding: 0.4em;
  border-radius: 4px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--w);
  margin-right: 0.5em;
}
@media screen and (max-width: 960px) {
  .contact-form .icon-must {
    font-size: 1.2rem;
  }
}
.contact-form p,
.contact-form span,
.contact-form table {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .contact-form p,
  .contact-form span,
  .contact-form table {
    font-size: 1.4rem;
  }
}
.contact-form .mwform-radio-field label input {
  display: none;
}
.contact-form .mwform-radio-field label input:checked + span::after {
  transform: translateY(-50%) scale(1);
}
.contact-form .mwform-radio-field label span {
  font-size: 1.6rem;
  display: inline-block;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contact-form .mwform-radio-field label span {
    font-size: 1.4rem;
  }
}
.contact-form .mwform-radio-field label span::before, .contact-form .mwform-radio-field label span::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.contact-form .mwform-radio-field label span::before {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background-color: var(--w);
  border: 1px solid #d0d0d0;
  left: 0;
}
.contact-form .mwform-radio-field label span::after {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: var(--c1);
  left: 3px;
  transition: var(--transition);
  transform: translateY(-50%) scale(0);
}
.contact-form .mwform-checkbox-field input[type=checkbox] {
  appearance: none;
  display: none;
}
.contact-form .mwform-checkbox-field input[type=checkbox] + span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}
.contact-form .mwform-checkbox-field input[type=checkbox] + span::before {
  display: block;
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--w);
  border: 1px solid #d0d0d0;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -11px;
}
.contact-form .mwform-checkbox-field input[type=checkbox] + span::after {
  display: block;
  content: "";
  width: 8px;
  height: 12px;
  border-right: 2px solid #004c99;
  border-bottom: 2px solid #004c99;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 8px;
  margin-top: -7px;
  opacity: 0;
}
.contact-form .mwform-checkbox-field input[type=checkbox]:checked + span::before {
  background-color: var(--w);
}
.contact-form .mwform-checkbox-field input[type=checkbox]:checked + span::after {
  opacity: 1;
}
.contact-form input[type=text],
.contact-form input[type=tel],
.contact-form input[type=email],
.contact-form input[type=password] {
  line-height: 1.5;
  padding: 0.7em 1em;
  border: 1px solid #d0d0d0;
  border-radius: 0;
}
.contact-form input[type=text]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=password]:focus {
  border: solid 1px var(--c1);
}
.contact-form input[type=text]::placeholder,
.contact-form input[type=tel]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=password]::placeholder {
  color: #999;
}
.contact-form textarea {
  line-height: 1.5;
  padding: 0.7em 1em;
  border: 1px solid #d0d0d0;
  border-radius: 0;
}
.contact-form textarea:focus {
  border: solid 1px var(--c1);
}
.contact-form textarea::placeholder {
  color: #999;
}

/*==================================================================
    .contact-form
===================================================================*/
.contact-form_ttl {
  font-size: 3.2rem;
  font-family: var(--font1);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25em;
}
@media screen and (max-width: 960px) {
  .contact-form_ttl {
    font-size: 2.4rem;
  }
}
.contact-form_ttl span {
  display: block;
  font-size: 1.4rem;
  font-family: unset;
  margin-bottom: 0.4em;
}
@media screen and (max-width: 960px) {
  .contact-form_ttl span {
    font-size: 1.3rem;
  }
}
.contact-form_tel {
  margin-bottom: 5em;
}
@media screen and (max-width: 960px) {
  .contact-form_tel {
    margin-bottom: 3em;
  }
}
.contact-form_tel dl {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
.contact-form_tel dl dt {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  position: relative;
  margin-right: 0.6em;
}
.contact-form_tel dl dt::before {
  display: block;
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/common/icon_tel.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  margin-right: 0.3em;
}
@media screen and (max-width: 960px) {
  .contact-form_tel dl dt::before {
    width: 30px;
    height: 30px;
  }
}
.contact-form_tel dl dt .wrap {
  display: flex;
  flex-flow: column nowrap;
  line-height: 1.4;
  font-weight: 700;
}
.contact-form_tel dl dt .wrap .main {
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .contact-form_tel dl dt .wrap .main {
    font-size: 1.3rem;
  }
}
.contact-form_tel dl dt .wrap .sub {
  font-size: 1.3rem;
}
@media screen and (max-width: 960px) {
  .contact-form_tel dl dt .wrap .sub {
    font-size: 1.2rem;
  }
}
.contact-form_tel dl dd {
  font-size: 4rem;
  font-weight: 700;
  font-family: var(--font2);
  color: #333333;
}
@media screen and (max-width: 960px) {
  .contact-form_tel dl dd {
    font-size: 2.4rem;
  }
}

.contact-form .form_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 960px) {
  .contact-form .form_list {
    margin-bottom: 20px;
  }
}
.contact-form .form_item {
  width: 100%;
  margin-bottom: 25px;
}
@media screen and (max-width: 960px) {
  .contact-form .form_item {
    width: 100%;
  }
}
.contact-form .form_item label {
  margin-bottom: 10px;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .contact-form .form_item label {
    margin-bottom: 10px;
  }
}
.contact-form .form_item label.select {
  margin-right: 0px;
}
.contact-form .form_item .notice {
  background: #fff1f1;
  padding: 8px;
  color: #c52323;
  display: inline-block;
  margin-bottom: 15px;
}
.contact-form .form_item .notice a {
  text-decoration: underline;
}
.contact-form .form_item textarea {
  height: auto;
}
.contact-form .form_agree {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .contact-form .form_agree {
    flex-flow: column nowrap;
  }
}
.contact-form .form_btn {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-form .form_btn p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.contact-form .form_btn .btn {
  display: inline-block;
  max-width: 400px;
  width: 100%;
  padding: 0 20px;
  height: 70px;
  line-height: 70px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--w);
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #004c99;
  border: none;
  border-radius: 4px;
  box-shadow: 0px -6px 0px 0px rgba(0, 0, 0, 0.4) inset;
  cursor: pointer;
  transition: var(--transition);
}
@media screen and (max-width: 960px) {
  .contact-form .form_btn .btn {
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
.contact-form .form_btn .btn:hover {
  transform: translateY(6px);
  box-shadow: none;
}
.contact-form .form_btn .btn:first-of-type {
  /* margin-right: 10px; */
  margin-bottom:15px
}

.contact-form .form_btn .btn:last-of-type {
  margin-right: 0 !important;
}

.contact-form .form_btn .btn.-back {
  background-color: #666;
}
.contact-form .form_btn .btn:disabled {
  background-color: #666;
  opacity: 0.3;
  pointer-events: none;
}
.contact-form .form_lead {
  padding: 0 0 50px;
}
.contact-form .form_lead .ttl {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--c2);
  margin-bottom: 1em;
}
.contact-form .form_lead .txt {
  font-size: 1.6rem;
  line-height: 1.8;
}
.contact-form .form_lead .txt a {
  color: var(--c4);
  text-decoration: underline;
}
.contact-form .form_lead .txt a:hover {
  text-decoration: none;
}
.contact-form .form em.caution {
  color: #fff;
  background: #ac3713;
  margin-left: 5px;
  font-size: 1.1rem;
  padding: 0.2em 0.5em;
  border-radius: 2px;
}
.contact-form .form .short {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .contact-form .form .short {
    width: 100%;
  }
}
.contact-form .form .select {
  overflow: hidden;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .contact-form .form .select {
    width: 100%;
  }
}
.contact-form .form .select::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../../../images/lp/40a/common/icon_select.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 17px;
  right: 10px;
}
.contact-form .form .select select {
  width: 100%;
  height: auto;
  line-height: 1.5;
  padding: 0.7em 30px 0.7em 1em;
  border: 1px solid #d0d0d0;
  border-radius: 0;
  background-color: inherit;
  position: relative;
  cursor: pointer;
}
.contact-form .form .select select::-ms-expand {
  display: none;
}
.contact-form .form .select select:focus {
  border: solid 1px var(--c1);
}
.contact-form .form .select select option {
  color: #999;
}
.contact-form .form .select select:invalid {
  color: #999;
}
.contact-form .form .p-country-name {
  display: none;
}
.contact-form .form .checkList .mwform-radio-field-text {
  font-weight: normal !important;
}
.contact-form .form .checkList .mwform-radio-field-text:first-child {
  padding-left: 0;
}
.contact-form .form label.checkbox {
  position: relative;
}
.contact-form .form label.checkbox input {
  width: 1px;
}
.contact-form .form label.checkbox::before, .contact-form .form label.checkbox::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}
.contact-form .form label.checkbox::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
}
.contact-form .form label.checkbox.checked::before {
  background: #004cad;
  border: 1px solid #004cad;
}
.contact-form .form label.checkbox.checked::after {
  position: absolute;
  content: "";
  display: block;
  top: 3px;
  left: 5px;
  width: 15px;
  height: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.contact-form .form_check {
  text-align: center;
  margin-bottom: 30px;
}
.contact-form .form_check p {
  display: block;
  margin-bottom: 1.5em;
}
.contact-form .form_check p a {
  color: var(--c2);
  text-decoration: underline;
}
.contact-form .form_check p a:hover {
  text-decoration: none;
}
.contact-form .form_check span {
  margin-bottom: 30px;
}
.contact-form .form_check label {
  cursor: pointer;
}

.mw_wp_form_confirm {
  padding-top: 80px;
}
.mw_wp_form_confirm .annotation {
  display: none !important;
}
.mw_wp_form_confirm .caution {
  display: none !important;
}
.mw_wp_form_confirm .form_agree {
  display: none !important;
}