@charset "UTF-8";



/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: bottom;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}
body {
  line-height: 1;
}
ol, ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}



/* ============================================
  共通
============================================ */

:root {
  --color-gry: #E8E8E8;
  --color-blu: #008BD5;
  --color-blu-light: #DDF3FF;
  --color-pnk: #DD007F;
  --color-yel: #FFFF00;
}

html {
  overflow-x: hidden;
  font-size: 62.5%;
}

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

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

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

strong {
  font-weight: bold;
}

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

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


/* slick
--------------------------------- */
.slick-slide {
  outline: none;
}

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

/* flex
--------------------------------- */
.flex {
  display: -webkit-flex;
  display: flex;
}
@media only screen and (min-width: 767px) {
  .flex-pc {
    display: -webkit-flex;
    display: flex;
  }
}

.fw-w {
  -webkit-flex-wrap: wrap;
  flex-wrap:         wrap;
}

.ai-c {
  align-items: center;
}
.ai-e {
  align-items: flex-end;
}
.jc-c {
  justify-content: center;
}
.jc-e {
  justify-content: flex-end;
}
.jc-sb {
  justify-content: space-between;
}

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


/* icon
--------------------------------- */
.icon-apply-wht,
.icon-apply-blu {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat center center / 100% auto;
  margin: 0 8px 0 0;
}
.icon-apply-wht {
  background-image: url("../images/icon-apply-wht.png");
}
.icon-apply-blu {
  background-image: url("../images/icon-apply-blu.png");
}
.icon-consul-wht,
.icon-consul-blu {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: no-repeat center center / 100% auto;
  margin: 0 8px 0 0;
}
.icon-consul-wht {
  background-image: url("../images/icon-consul-wht.png");
}
.icon-consul-blu {
  background-image: url("../images/icon-consul-blu.png");
}


/* container
--------------------------------- */
.container {
  max-width: calc(1200px + 36px);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.container-md {
  max-width: calc(1100px + 36px);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}



/* order
--------------------------------- */
@media only screen and (min-width: 768px) {
  .order-pc-1 {
    order: 1;
  }
  .order-pc-2 {
    order: 2;
  }
}

/* font
--------------------------------- */
.ff-zkg {
  font-family: 'Zen Kaku Gothic New', sans-serif;
}
.ff-crimson {
  font-family: 'Crimson Text', serif;
}
.fw-500 {
  font-weight: 500;
}
.fw-700,
.fw-bold {
  font-weight: 700;
}
.fs-md {
  font-size: 2.2rem;
}
.text-center {
  text-align: center;
}
.text-underline {
  text-decoration: underline;
}

/* bg
--------------------------------- */
.bg-grad-blu {
  background: rgb(0,139,213);
  background: linear-gradient(135deg, rgba(0,139,213,1) 0%, rgba(0,188,213,1) 100%);
}
.bg-grad-pnk-v {
  background: rgb(248,210,223);
  background: linear-gradient(180deg, rgba(248,210,223,1) 0%, rgba(255,242,247,1) 100%);
}


/* marker
--------------------------------- */
.marker {
  background: linear-gradient(transparent 50%, var(--color-yel) 50%);
}
.marker-line {
  position: relative;
  z-index: 1;
}
.marker-line::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.35em;
  background: var(--color-yel);
  position: absolute;
  left: 0;
  bottom: 0.3em;
  z-index: -1;
}


/* inview
--------------------------------- */
.js-inview {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.js-inview_fadeIn {
  opacity: 0;
  -webkit-transition: opacity 1.2s;
          transition: opacity 1.2s;
}
.js-inview_top-posi {
  opacity: 0;
  position: relative;
  top: 30px;
  -webkit-transition: opacity 1.2s, top 1.2s;
          transition: opacity 1.2s, top 1.2s;
}
.js-inview_top-tl {
  opacity: 0;
  transform: translateY(30px);
  -webkit-transition: opacity 1.2s, transform 1.2s;
          transition: opacity 1.2s, transform 1.2s;
}
.js-inview_fadeIn.js-inview_view {
  opacity: 1;
}
.js-inview_top-posi.js-inview_view {
  opacity: 1;
  top: 0;
}
.js-inview_top-tl.js-inview_view {
  opacity: 1;
  transform: translateY(0);
}


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

  @media max-767

============================================ */
@media only screen and (max-width: 767px) {

  body {
    min-width: 100%;
  }


}


