@charset "UTF-8";
/**  Mixins */
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
:root {
  --base-width: 555;
}

@media (min-width: 768px) {
  :root {
    --base-width: 1920;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  color: transparent;
  width: 32px;
  height: 92px;
  min-width: initial;
  border-radius: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  transition: all 0.3s;
}
.slick-arrow:hover {
  opacity: 0.6;
}
.slick-arrow::before, .slick-arrow::after {
  content: "";
  width: 7px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
}
.slick-arrow:hover {
  color: transparent;
}
.slick-arrow.slick-prev {
  left: 0;
}
.slick-arrow.slick-prev::before {
  transform: rotate(-45deg);
  top: calc(50% - 2px);
}
.slick-arrow.slick-prev::after {
  transform: rotate(45deg);
  top: calc(50% + 2px);
}
.slick-arrow.slick-next {
  right: 0;
}
.slick-arrow.slick-next::before {
  transform: rotate(45deg);
  top: calc(50% - 2px);
}
.slick-arrow.slick-next::after {
  transform: rotate(-45deg);
  top: calc(50% + 2px);
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 9;
}
.slick-dots li {
  margin: 0 5px;
  padding: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.slick-dots li.slick-active {
  background: #000;
}
.slick-dots li button {
  padding: initial;
  max-width: initial;
  min-width: initial;
  color: transparent;
  font-size: 0;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #6096c4;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --smoke: #f4f5ef;
  --gray: #e5e5e5;
  --blue: #09297f;
  --blue-light: #38a1db;
  --green: #6e9e56;
  --green-dark: #6d8532;
  --orange: #f29b76;
  --yellow: #f2bb49;
  --primary: #09297f;
  --second: #f29b76;
  --text-body: #595857;
  --radius: 5px;
}

/* Base Setting
---------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Hiragino Sans", "ヒラギノ角ゴ Pro", "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium,", Meiryo, "Helvetica Neue", Arial, sans-serif;
  overflow-wrap: break-word;
  font-weight: 400;
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  width: 100%;
  background: var(--white);
}

a {
  transition: all 0.3s;
  color: var(--text-body);
  outline: none !important;
}
a:hover {
  opacity: 0.7;
  color: var(--primary);
}

p:last-of-type {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Koburina Gothic StdN", "Hiragino Sans", "ヒラギノ角ゴ Pro", "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium,", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 36px;
  line-height: 1.3;
}
@media (min-width: 48em) {
  h1 {
    font-size: 46px;
  }
}

h2 {
  font-size: 40px;
  line-height: 1.15;
}
@media (min-width: 48em) {
  h2 {
    font-size: 56px;
  }
}

h3 {
  font-size: 34px;
  line-height: 1.16;
}
@media (min-width: 48em) {
  h3 {
    font-size: 40px;
  }
}

h4 {
  font-size: 28px;
  line-height: 1.16;
}
@media (min-width: 48em) {
  h4 {
    font-size: 36px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}
@media (min-width: 48em) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.3;
}
@media (min-width: 48em) {
  h6 {
    font-size: 20px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

.container-fluid, .container--xl, .container--xs, .container--sm, .container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 calc(22 / var(--base-width) * 100vw);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .container-fluid, .container--xl, .container--xs, .container--sm, .container {
    padding: 0 20px;
  }
}

input[type=text],
input[type=email],
input[type=password],
input[type=phone],
input[type=search],
textarea,
select {
  border: 0.75px solid #aaabab;
  background: #efefef;
  padding: calc(5 / var(--base-width) * 100vw) calc(20 / var(--base-width) * 100vw);
  outline: none !important;
  min-height: calc(30 / var(--base-width) * 100vw);
  border-radius: 0;
  width: 100%;
  font-size: calc(16 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  input[type=text],
input[type=email],
input[type=password],
input[type=phone],
input[type=search],
textarea,
select {
    font-size: 16px;
    min-height: 42px;
    padding: 5px 20px;
  }
}

.checkbox-wrap {
  position: relative;
  padding-left: calc(20 / var(--base-width) * 100vw);
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .checkbox-wrap {
    padding-left: 24px;
  }
}
.checkbox-wrap input[type=checkbox] {
  display: none;
}
.checkbox-wrap input[type=checkbox]:checked ~ span::after {
  display: block;
}
.checkbox-wrap span::before, .checkbox-wrap span::after {
  content: "";
  position: absolute;
}
.checkbox-wrap span::before {
  border: 1.5px solid #aaabab;
  position: absolute;
  top: calc(3 / var(--base-width) * 100vw);
  left: 0;
  width: calc(12 / var(--base-width) * 100vw);
  height: calc(12 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .checkbox-wrap span::before {
    width: 16px;
    height: 16px;
    top: 6px;
  }
}
.checkbox-wrap span::after {
  width: calc(7 / var(--base-width) * 100vw);
  height: calc(4 / var(--base-width) * 100vw);
  border-left: calc(2 / var(--base-width) * 100vw) solid var(--blue-light);
  border-bottom: calc(2 / var(--base-width) * 100vw) solid var(--blue-light);
  transform: rotate(-45deg);
  display: none;
  top: calc(6 / var(--base-width) * 100vw);
  left: calc(3 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .checkbox-wrap span::after {
    width: 11px;
    height: 5px;
    border-left-width: 2px;
    border-bottom-width: 2px;
    top: 10px;
    left: 3px;
  }
}

.btn, button,
input[type=submit],
input[type=button], .btn--black, .btn--green {
  transition: all 0.3s;
  color: var(--white);
  padding: calc(5 / var(--base-width) * 100vw) calc(25 / var(--base-width) * 100vw);
  text-align: center;
  font-weight: 600;
  display: inline-block;
  outline: none !important;
  border-radius: 999px;
  background: var(--primary);
  text-transform: uppercase;
  border: 0;
  font-size: calc(13 / var(--base-width) * 100vw);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: calc(32 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .btn, button,
input[type=submit],
input[type=button], .btn--black, .btn--green {
    font-size: 20px;
    padding: 5px 30px;
    min-height: 50px;
  }
}
.btn img, button img,
input[type=submit] img,
input[type=button] img, .btn--black img, .btn--green img {
  max-height: 18px;
}
.btn:hover, button:hover,
input[type=submit]:hover,
input[type=button]:hover, .btn--black:hover, .btn--green:hover {
  opacity: 0.7;
  color: var(--white);
}
.btn--green {
  background: var(--green-dark);
  color: var(--white);
}
.btn--black {
  background: #231916;
  color: var(--white);
}
.btn--lg {
  font-size: calc(22 / var(--base-width) * 100vw);
  min-height: calc(39 / var(--base-width) * 100vw);
  min-width: calc(205 / var(--base-width) * 100vw);
  gap: calc(10 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .btn--lg {
    font-size: 34px;
    min-width: 318px;
    min-height: 60px;
    gap: 12px;
  }
}
.btn--lg img {
  max-height: calc(14 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .btn--lg img {
    max-height: 22px;
  }
}

.container--sm {
  max-width: 890px;
  padding: 0 calc(78 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .container--sm {
    padding-inline: 20px;
  }
}
.container--xs {
  max-width: 740px;
}
.container--xl {
  max-width: 1320px;
}

.section-heading {
  text-align: center;
  margin: 0 0 calc(15 / var(--base-width) * 100vw);
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) {
  .section-heading {
    margin: 0 0 35px;
  }
}
.section-heading h3 {
  font-family: "MOClearToneSG", "Hiragino Sans", "ヒラギノ角ゴ Pro", "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium,", Meiryo, "Helvetica Neue", Arial, sans-serif;
  color: #9fa0a0;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: calc(4 / var(--base-width) * 100vw);
  margin: 0 0 calc(6 / var(--base-width) * 100vw);
  line-height: 1.3;
  text-transform: uppercase;
  font-size: calc(19 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .section-heading h3 {
    font-size: 29px;
    padding-bottom: 4px;
    margin: 0 0 10px;
  }
}
.section-heading h3::before {
  content: "";
  border-bottom: 0.5px solid #9fa0a0;
  width: calc(116 / var(--base-width) * 100vw);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .section-heading h3::before {
    width: 180px;
  }
}
.section-heading h2 {
  font-family: "Koburina Gothic StdN", "Hiragino Sans", "ヒラギノ角ゴ Pro", "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium,", Meiryo, "Helvetica Neue", Arial, sans-serif;
  font-size: calc(25 / var(--base-width) * 100vw);
  font-weight: 600;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .section-heading h2 {
    font-size: 38px;
  }
}
.section-heading h2 img {
  max-width: calc(51 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .section-heading h2 img {
    max-width: 79px;
  }
}

.container-fluid {
  max-width: 1920px;
}
@media (min-width: 48em) {
  .container-fluid {
    padding: 0 64px;
  }
}

.section {
  padding-block: calc(30 / var(--base-width) * 100vw);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section {
    padding-block: 50px;
  }
}
.section--gray {
  background: #E6E6E6;
  background: linear-gradient(135deg, #e6e6e6 0%, white 100%);
}
.section--blue {
  background: #0c3190;
  background: linear-gradient(180deg, #0c3190 0%, #38a1db 100%);
}
.section--blue .section-heading h2 {
  color: var(--white);
}
.section--bg-1 {
  background: url("../images/bg_sp-back.png") no-repeat 50% 100%/cover #ffe787;
}
@media only screen and (min-width: 768px) {
  .section--bg-1 {
    background: url("../images/bg-back.png") no-repeat 50% 0/cover #ffe787;
  }
}
.section--bg-1 .section-heading {
  margin-bottom: calc(25 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .section--bg-1 .section-heading {
    margin-bottom: 55px;
  }
}
.section__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: calc(32 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .section__buttons {
    margin-top: 55px;
  }
}

.picture-full {
  display: block;
}
.picture-full img {
  width: 100%;
}

.text-vertical {
  position: absolute;
  top: 20px;
  left: 70px;
  z-index: 2;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .text-vertical {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .text-vertical {
    left: 175px;
  }
}
.text-vertical h2 {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-weight: 700;
  color: #9fa0a0;
  letter-spacing: 1px;
  z-index: 2;
  position: relative;
  line-height: 1;
  font-size: 50px;
}
@media only screen and (min-width: 1600px) {
  .text-vertical h2 {
    font-size: 84px;
  }
}
.text-vertical .bouble--1 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: 0.4;
  z-index: 1;
}
@media only screen and (min-width: 1600px) {
  .text-vertical .bouble--1 {
    width: 271px;
    height: 271px;
  }
}
.text-vertical .bouble--1.blue {
  opacity: 0.2;
}
.text-vertical .bouble--2 {
  position: absolute;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.7;
  z-index: 1;
  top: 100px;
  left: -65px;
}
@media only screen and (min-width: 1600px) {
  .text-vertical .bouble--2 {
    width: 86px;
    height: 86px;
    top: 160px;
    left: -120px;
  }
}
.text-vertical .bouble--2.bottom-left {
  top: 100px;
  left: -65px;
}
@media only screen and (min-width: 1600px) {
  .text-vertical .bouble--2.bottom-left {
    top: 160px;
    left: -120px;
  }
}
.text-vertical .bouble--2.top-right {
  top: -90px;
  left: auto;
  right: -90px;
}
@media only screen and (min-width: 1600px) {
  .text-vertical .bouble--2.top-right {
    top: -175px;
    right: -120px;
  }
}
.text-vertical .bouble.blue {
  background: var(--blue);
}
.text-vertical .bouble.blue-light {
  background: var(--blue-light);
}
.text-vertical .bouble.orange {
  background: var(--orange);
}
.text-vertical .bouble.yellow {
  background: var(--yellow);
}
.text-vertical .bouble.green {
  background: var(--green);
}
.text-vertical.right {
  left: auto;
  right: 70px;
}
@media only screen and (min-width: 1600px) {
  .text-vertical.right {
    right: 175px;
  }
}
.text-vertical.center {
  top: 56%;
  transform: translateY(-50%);
}

.text-blue {
  color: var(--blue);
}

.text-blue-light {
  color: var(--blue-light);
}

.text-green {
  color: var(--green);
}

.text-orange {
  color: var(--green);
}

.text-yellow {
  color: var(--yellow);
}

.hamburger {
  position: relative;
  width: 28px;
  height: 18px;
  line-height: 1;
  cursor: pointer;
  display: block;
  right: 0;
  z-index: 99;
  opacity: 1;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: #555555;
  backface-visibility: hidden;
  position: absolute;
  display: block;
  margin: auto;
  transition: 0.3s all ease;
  transform: rotate(0deg);
  border-radius: 5px;
  top: calc(50% - 1px);
  left: calc(50% - 14px);
}
.hamburger span::before, .hamburger span::after {
  content: "";
  transform-origin: center center;
  width: 100%;
  height: 2px;
  background: #555555;
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s all ease;
  border-radius: 5px;
  opacity: 1;
}
.hamburger span::after {
  top: -8px;
}
.hamburger.active span {
  transform: rotate(225deg);
}
.hamburger.active span::before {
  transform: rotate(-90deg);
  top: 0;
}
.hamburger.active span::after {
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .pcbr {
    display: block;
  }

  .spbr {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .pcbr {
    display: none;
  }

  .spbr {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

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

.slick-slider .slick-arrow {
  width: calc(34 / var(--base-width) * 100vw);
  height: calc(64 / var(--base-width) * 100vw);
  z-index: 5;
}
@media only screen and (min-width: 768px) {
  .slick-slider .slick-arrow {
    width: 34px;
    height: 64px;
  }
}
.slick-slider .slick-arrow::before, .slick-slider .slick-arrow::after {
  display: none;
}
.slick-slider .slick-arrow.slick-prev {
  background: url("../images/slider-prev-white.svg") no-repeat 0 0/100%;
}
.slick-slider .slick-arrow.slick-next {
  background: url("../images/slider-next-white.svg") no-repeat 0 0/100%;
}

.site-header {
  text-align: center;
  padding: calc(16 / var(--base-width) * 100vw) calc(22 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .site-header {
    padding: 30px 20px;
  }
}
.site-header img {
  max-width: calc(215 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .site-header img {
    max-width: 393px;
  }
}

.site-footer {
  background: #F8F9F9;
  text-align: center;
}
.site-footer__main {
  padding: calc(30 / var(--base-width) * 100vw) calc(20 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .site-footer__main {
    padding: 50px 20px;
  }
}
.site-footer__main h2 {
  font-size: calc(13 / var(--base-width) * 100vw);
  line-height: 1.4;
  font-weight: 600;
  color: #595857;
  margin: 0 0 calc(12 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .site-footer__main h2 {
    font-size: 20px;
    margin: 0 0 20px;
  }
}
.site-footer__main h3 {
  font-size: calc(11 / var(--base-width) * 100vw);
  font-family: "凸版文久見出しゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro", "hiragino-kaku-gothic-pron", "Hiragino Kaku Gothic Pro", "游ゴシック体", "游ゴシック", "Yu Gothic", "Yu Gothic Medium,", Meiryo, "Helvetica Neue", Arial, sans-serif;
  margin: 0 0 calc(5 / var(--base-width) * 100vw);
  font-weight: 900;
  color: var(--green-dark);
}
@media only screen and (min-width: 768px) {
  .site-footer__main h3 {
    font-size: 16px;
    margin: 0 0 6px;
  }
}
.site-footer__main img {
  max-width: calc(264 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .site-footer__main img {
    max-width: 410px;
  }
}
.site-footer__main .btn--green {
  display: flex;
  max-width: calc(220 / var(--base-width) * 100vw);
  margin: calc(12 / var(--base-width) * 100vw) auto 0;
}
@media only screen and (min-width: 768px) {
  .site-footer__main .btn--green {
    margin: 16px auto 0;
    max-width: 342px;
  }
}
.site-footer__bottom {
  padding-block: calc(6 / var(--base-width) * 100vw);
  font-size: calc(8 / var(--base-width) * 100vw);
  color: var(--white);
  background: #595857;
}
@media only screen and (min-width: 768px) {
  .site-footer__bottom {
    font-size: 12px;
    padding-block: 12px;
  }
}
.site-footer__bottom p {
  margin: 0;
}

/** pages */
.banner picture {
  display: block;
}
.banner picture img {
  width: 100%;
}

.about {
  padding: calc(35 / var(--base-width) * 100vw) 0 calc(55 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .about {
    padding: 0 0 80px;
  }
}
@media only screen and (min-width: 768px) {
  .about__inner {
    display: flex;
    justify-content: space-between;
  }
}
.about__content {
  font-size: calc(20 / var(--base-width) * 100vw);
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  .about__content {
    width: 64%;
    font-size: 17px;
    line-height: 2;
  }
}
@media only screen and (min-width: 1200px) {
  .about__content {
    font-size: 19px;
  }
}
.about__content h2 {
  font-size: calc(29 / var(--base-width) * 100vw);
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 calc(15 / var(--base-width) * 100vw);
  letter-spacing: 1px;
}
@media only screen and (min-width: 768px) {
  .about__content h2 {
    font-size: 29px;
    margin: 0 0 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .about__content h2 {
    font-size: 38px;
  }
}
.about__content h2 strong {
  font-size: calc(36 / var(--base-width) * 100vw);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .about__content h2 strong {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1200px) {
  .about__content h2 strong {
    font-size: 49px;
  }
}
.about picture {
  display: block;
  margin-top: calc(80 / var(--base-width) * 100vw);
  margin-right: calc(-78 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .about picture {
    width: calc(36% + 20px);
    margin-right: -20px;
    padding-left: 50px;
    align-self: flex-end;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .about picture {
    margin-right: -18%;
    width: 54%;
  }
}
.about picture img {
  width: 100%;
  border-radius: 50px 0 0 50px;
}

.box-content h3 {
  background: var(--blue);
  color: var(--white);
  position: relative;
  border-radius: 0 calc(30 / var(--base-width) * 100vw) calc(30 / var(--base-width) * 100vw) 0;
  z-index: 1;
  padding: calc(12 / var(--base-width) * 100vw) calc(24 / var(--base-width) * 100vw);
  font-size: calc(23 / var(--base-width) * 100vw);
  display: flex;
  align-items: center;
  min-height: calc(52 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .box-content h3 {
    min-height: 81px;
    border-radius: 0 45px 45px 0;
    font-size: 36px;
    padding: 18px 40px;
  }
}
.box-content h3::before {
  content: "";
  position: absolute;
  left: calc(8 / var(--base-width) * 100vw);
  right: calc(48 / var(--base-width) * 100vw);
  bottom: calc(8 / var(--base-width) * 100vw);
  top: 0;
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
}
@media only screen and (min-width: 768px) {
  .box-content h3::before {
    left: 12px;
    right: 75px;
    bottom: 12px;
  }
}
.box-content__body {
  padding: calc(15 / var(--base-width) * 100vw) 0 calc(55 / var(--base-width) * 100vw);
  font-size: calc(20 / var(--base-width) * 100vw);
  line-height: 1.7;
}
@media only screen and (min-width: 768px) {
  .box-content__body {
    padding: 40px 75px;
    font-size: 21px;
    line-height: 2;
  }
}
.box-content picture {
  display: block;
}
.box-content picture img {
  width: 100%;
  border-radius: calc(9 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .box-content picture img {
    border-radius: 20px;
  }
}
.box-content--blue h3 {
  background: var(--blue);
}
.box-content--blue-light h3 {
  background: var(--blue-light);
}
.box-content--green h3 {
  background: var(--green);
}
.box-content--orange h3 {
  background: var(--orange);
}
.box-content--yellow h3 {
  background: var(--yellow);
}

.section-arrow {
  padding-bottom: calc(44 / var(--base-width) * 100vw);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .section-arrow {
    padding-bottom: 55px;
  }
}
.section-arrow > h2 {
  color: var(--white);
  font-size: calc(24 / var(--base-width) * 100vw);
  line-height: 1.789;
  font-weight: 600;
  min-height: calc(130 / var(--base-width) * 100vw);
  background: var(--blue-light);
  position: relative;
  margin: 0 0 calc(42 / var(--base-width) * 100vw);
  letter-spacing: 1px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(20 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .section-arrow > h2 {
    font-size: 38px;
    min-height: 200px;
    margin: 0 0 70px;
    padding: 20px;
  }
}
.section-arrow > h2::before {
  content: "";
  border-top: calc(30 / var(--base-width) * 100vw) solid var(--blue-light);
  border-left: calc(15 / var(--base-width) * 100vw) solid transparent;
  border-right: calc(15 / var(--base-width) * 100vw) solid transparent;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% - 1px);
}
@media only screen and (min-width: 768px) {
  .section-arrow > h2::before {
    border-top-width: 50px;
    border-left-width: 45px;
    border-right-width: 45px;
  }
}
.section-arrow picture {
  display: block;
}
.section-arrow picture img {
  width: 100%;
}

.grid-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media only screen and (min-width: 768px) {
  .grid-items {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.slider-items {
  padding-inline: calc(50 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .slider-items {
    padding-inline: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .slider-items {
    margin: 0 -11px;
    padding-inline: 0;
  }
}

.post-item {
  padding-inline: calc(11 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .post-item {
    padding-inline: 11px;
  }
}
.post-item figure img {
  width: 100%;
  line-height: 1.673;
}
.post-item a {
  border: 1px solid #595857;
  background: var(--white);
  color: var(--text-body);
  display: block;
}
.post-item a:hover {
  color: inherit;
}
.post-item__body {
  padding: calc(10 / var(--base-width) * 100vw) calc(16 / var(--base-width) * 100vw) calc(15 / var(--base-width) * 100vw);
  font-size: calc(19 / var(--base-width) * 100vw);
  line-height: 1.4375;
}
@media only screen and (min-width: 768px) {
  .post-item__body {
    font-size: 16px;
    padding: 10px 12px 12px;
  }
}
.post-item__body time {
  font-size: calc(17 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .post-item__body time {
    font-size: 14px;
  }
}
.post-item__body h3 {
  font-size: calc(25 / var(--base-width) * 100vw);
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 5px;
}
@media only screen and (min-width: 768px) {
  .post-item__body h3 {
    font-size: 20px;
  }
}

.form-box {
  background: var(--white);
  border-radius: calc(26 / var(--base-width) * 100vw);
  padding: calc(15 / var(--base-width) * 100vw) calc(20 / var(--base-width) * 100vw) calc(35 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .form-box {
    border-radius: 36px;
    padding: 15px 30px 40px;
  }
}
.form-row {
  padding-block: calc(20 / var(--base-width) * 100vw);
  display: flex;
  border-bottom: 0.75px solid #aaabab;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .form-row {
    padding-block: 30px;
  }
}
.form-row > label {
  width: calc(175 / var(--base-width) * 100vw);
  padding-right: calc(10 / var(--base-width) * 100vw);
  margin: 0;
  font-size: calc(16 / var(--base-width) * 100vw);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .form-row > label {
    font-size: 22px;
    width: 235px;
    padding-right: 10px;
  }
}
.form-row > label span {
  font-size: calc(14 / var(--base-width) * 100vw);
  color: var(--white);
  background: #e60013;
  padding: 0 calc(5 / var(--base-width) * 100vw);
  margin-right: calc(4 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .form-row > label span {
    font-size: 20px;
    padding: 0px 7px;
    margin-right: 4px;
  }
}
.form-row > label span.not-required {
  background: #898989;
}
.form-row__input {
  width: calc(100% - 31.53vw);
  font-size: calc(9 / var(--base-width) * 100vw);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .form-row__input {
    width: calc(100% - 235px);
    font-size: 13px;
  }
}
.form-row__input a {
  color: #197fc4;
}
.form-row__input label {
  font-size: calc(13 / var(--base-width) * 100vw);
  margin: 0 0 4px;
}
@media only screen and (min-width: 768px) {
  .form-row__input label {
    font-size: 18px;
  }
}
.form-row--full {
  flex-wrap: wrap;
}
.form-row--full > label {
  width: 100%;
  margin-bottom: 10px;
}
.form-row--full .form-row__input {
  width: 100%;
  padding-left: calc(175 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .form-row--full .form-row__input {
    padding-left: 235px;
  }
}
.form-bottom {
  text-align: center;
  padding-top: calc(18 / var(--base-width) * 100vw);
  font-size: calc(13 / var(--base-width) * 100vw);
  font-weight: 600;
}
@media only screen and (min-width: 768px) {
  .form-bottom {
    padding-top: 23px;
    font-size: 18px;
  }
}
.form-bottom button,
.form-bottom input[type=submit],
.form-bottom input[type=button] {
  border-radius: calc(6 / var(--base-width) * 100vw);
  background: #0099d9;
  color: var(--white);
  width: 100%;
  max-width: calc(274 / var(--base-width) * 100vw);
  gap: 12px;
  min-height: calc(49 / var(--base-width) * 100vw);
  margin-bottom: calc(13 / var(--base-width) * 100vw);
  font-size: calc(20 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .form-bottom button,
.form-bottom input[type=submit],
.form-bottom input[type=button] {
    font-size: 28px;
    max-width: 375px;
    min-height: 67px;
    border-radius: 9px;
    margin-bottom: 20px;
  }
}
.form-bottom button img,
.form-bottom input[type=submit] img,
.form-bottom input[type=button] img {
  max-height: calc(25 / var(--base-width) * 100vw);
}
@media only screen and (min-width: 768px) {
  .form-bottom button img,
.form-bottom input[type=submit] img,
.form-bottom input[type=button] img {
    max-height: 35px;
  }
}
