@charset "UTF-8";
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  background-color: transparent;
  cursor: pointer;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/*------------------------------------------------------------------------------
  base
------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  font-weight: normal;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  margin: 0;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
          animation: fadeIn 2s ease 0s 1 normal;
}
body.home, body.error404 {
  -webkit-animation: none;
          animation: none;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
  }
}
body.noscroll {
  overflow: hidden;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  border: 0;
  margin: 0;
  vertical-align: bottom;
  max-width: 100%;
  -webkit-user-drag: none;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #333;
  text-decoration: none;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
a:hover {
  opacity: 0.85;
}

.object_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.object_contain {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*------------------------------------------------------------------------------
  is-blur
------------------------------------------------------------------------------*/
.is-blur {
  -webkit-animation-name: fadeBlur;
          animation-name: fadeBlur;
  opacity: 1;
  -webkit-transition: all 2.4s linear;
  transition: all 2.4s linear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes fadeBlur {
  from {
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }
  to {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes fadeBlur {
  from {
    -webkit-filter: blur(7px);
            filter: blur(7px);
  }
  to {
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
/*------------------------------------------------------------------------------
  common
------------------------------------------------------------------------------*/
#wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  overflow: hidden;
  padding-top: 12.8rem;
}
@media screen and (max-width: 767px) {
  #wrapper {
    padding-top: 8.5rem;
  }
}

.l-main {
  display: block;
  background-color: transparent;
}

#wrapper .l-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.l-main__common-container {
  margin: 23rem 0 14rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container {
    margin: 10rem 0 8rem;
  }
}

.l-main__common-container2 {
  margin: 9rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container2 {
    margin: 7rem 0 8rem;
  }
}

.l-main__common-container3 {
  margin: 12rem 0 16rem;
}
@media screen and (max-width: 767px) {
  .l-main__common-container3 {
    margin: 8rem 0;
  }
}

/*------------------------------------------------------------------------------
  l-header
------------------------------------------------------------------------------*/
.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.l-header.is-fixed {
  position: fixed;
  top: 0px;
  background-color: rgba(255, 255, 255, 0.97);
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.06);
  z-index: 999;
}
.l-header.is-fixed .l-header__inner {
  padding: 1.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .l-header.is-fixed .l-header__inner {
    padding: 0.8rem 2rem;
  }
}
.l-header.is-fixed .l-header__logo {
  max-width: 5rem;
}
@media screen and (max-width: 767px) {
  .l-header.is-fixed .l-header__logo {
    max-width: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header.is-fixed .h-header__logo-text {
    font-size: 1.4rem;
  }
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1.8rem 5rem;
}
@media screen and (max-width: 1280px) {
  .l-header__inner {
    padding: 1.8rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 1.2rem 2rem;
  }
}

.l-header__logo-wrap {
  margin-right: 1.6rem;
}
.l-header__logo-wrap a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header__logo {
  width: 100%;
  max-width: 7rem;
  margin-right: 2.2rem;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    max-width: 4.6rem;
    margin-right: 1.4rem;
  }
}

.h-header__logo-text {
  color: #0B364A;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .h-header__logo-text {
    font-size: 1.5rem;
  }
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.5rem;
}

.l-header__nav-item:not(:last-child) {
  margin-right: 3rem;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item:not(:last-child) {
    margin-right: 0;
  }
}
.l-header__nav-item.--md {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-item.--md {
    display: block;
  }
}

.l-header__nav-link {
  color: #0B364A;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.5rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 1023px) {
  .l-header__nav-link {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    padding: 0.5rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    white-space: nowrap;
  }
}
.l-header__nav-link:hover {
  color: #128AC1;
  opacity: 1;
}

/* 1023px
--------------------------------------------- */
@media only screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: 999;
    width: 0;
    height: 100vh;
    -webkit-transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #0B364A;
    margin-right: 0;
  }
  .l-header__nav.open {
    display: block;
    opacity: 1;
    width: calc(100% - 4rem);
    -webkit-box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
            box-shadow: -6px 0 32px rgba(0, 0, 0, 0.24);
    z-index: 99;
  }
}
@media only screen and (max-width: 1023px) and (max-width: 767px) {
  .l-header__nav.open {
    width: calc(100% - 2rem);
  }
}
@media only screen and (max-width: 1023px) {
  .l-header__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 auto;
    text-align: center;
    height: 100%;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 10rem 0rem 0;
  }
  .l-header__nav-item {
    width: 100%;
    text-align: center;
    margin: 0 0 2.8rem;
  }
}
/*------------------------------------------------------------------------------
  l-footer
------------------------------------------------------------------------------*/
.l-footer {
  background-color: #0B364A;
  padding-top: 9.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-top: 6rem;
  }
  .l-footer .c-inner {
    padding: 0 1.6rem;
  }
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 1023px) {
  .l-footer__contents {
    display: block;
    margin: 0 auto;
    max-width: 72rem;
    padding-bottom: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__contents {
    max-width: 50rem;
  }
}

.l-footer__info {
  margin-right: 7rem;
}
@media screen and (max-width: 1280px) {
  .l-footer__info {
    margin-right: 2rem;
  }
}
@media screen and (max-width: 1023px) {
  .l-footer__info {
    margin: 0 0 3.2rem;
  }
}

.l-footer__company {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  display: block;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.l-footer__texts {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .l-footer__texts {
    font-size: 1.3rem;
  }
}

.l-footer__nav-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-footer__nav-wrap.pc {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-wrap.pc {
    display: none !important;
  }
}
.l-footer__nav-wrap.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-wrap.sp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__nav-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
            flex: 0 1 49%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .l-footer__nav:nth-child(n+3) {
    margin-top: 3rem;
  }
}
.l-footer__nav:not(:last-child) {
  padding-right: 1.6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .l-footer__nav:not(:last-child) {
    padding-right: 0;
  }
}
.l-footer__nav > li:not(:first-child) {
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav > li:not(:first-child) {
    margin-top: 2.4rem;
  }
}
.l-footer__nav > li > a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding-left: 1.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-footer__nav > li > a {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    padding-left: 1.3rem;
  }
}
.l-footer__nav > li > a::before {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 0;
  background-image: url(../img/triangle-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 8px;
  height: 14px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav > li > a::before {
    top: 5px;
    width: 6px;
    height: 12px;
  }
}

.l-footer__nav-child {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.8rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child {
    margin-top: 0.4rem;
  }
}
.l-footer__nav-child li a {
  color: #eee;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0.3rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-child li a {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.l-footer__nav-child li a:hover {
  opacity: 0.7;
}

.l-footer__copyright {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #082736;
  padding: 2.4rem 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    font-size: 1.2rem;
    padding: 1.6rem 1rem;
  }
}

/*------------------------------------------------------------------------------
  sidebar
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  c-inner
------------------------------------------------------------------------------*/
.c-inner {
  max-width: 114rem;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2rem;
}

.c-inner--sm {
  max-width: 104rem;
}

.c-inner--lg {
  max-width: 138rem;
}

/*------------------------------------------------------------------------------
  c-breadcrumb
------------------------------------------------------------------------------*/
.c-breadcrumb {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.c-breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  position: relative;
}
.c-breadcrumb__item:not(:last-child) {
  margin-right: 2.4rem;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7px;
  right: -18px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
  width: 1px;
  height: 16px;
  background-color: #828282;
  font-size: 1.4rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__item:not(:last-child)::after {
    top: 6px;
    right: -12px;
    height: 13px;
  }
}

.c-breadcrumb__link {
  color: #128AC1;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb__link {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
  }
}
.c-breadcrumb__link.--current {
  color: #4F4F4F;
  font-weight: normal;
  pointer-events: none;
  text-decoration: none;
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  c-btn
------------------------------------------------------------------------------*/
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
  width: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    max-width: 16.7rem;
  }
}
.c-btn:hover {
  opacity: 1;
}
.c-btn:hover .c-btn__text {
  color: #0A5099;
  opacity: 1;
}
.c-btn:hover .c-btn__text.u-green-color {
  color: #009D5B;
}
.c-btn:hover .c-btn__text.u-red-color {
  color: #FA2524;
}
.c-btn:hover .c-btn__circle {
  position: relative;
}
.c-btn:hover .c-btn__circle::before {
  width: 100%;
  height: 100%;
  opacity: 1;
}

.c-btn__text {
  color: #0B364A;
  font-size: 2.2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.07em;
  margin-top: 0.3rem;
  margin-right: 2.4rem;
  display: block;
  font-family: "Josefin Sans", sans-serif;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .c-btn__text {
    font-size: 1.8rem;
    margin-right: 1.6rem;
  }
}

.c-btn__circle {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  width: 100%;
  height: 48px;
  border-radius: 50%;
  max-width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0B364A;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn__circle {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46px;
            flex: 0 1 46px;
    height: 46px;
  }
}
.c-btn__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0%;
  height: 0%;
  border-radius: 50%;
  background-color: #0A5099;
  -webkit-transition: all 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: all 0.25s cubic-bezier(0, 0, 0.25, 1);
  z-index: 0;
  opacity: 1;
}
.c-btn__circle.u-bgc-green::before {
  background-color: #009D5B;
}
.c-btn__circle.u-bgc-red::before {
  background-color: #FA2524;
}
.c-btn__circle img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 9;
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .c-btn__circle img {
    width: 22px;
  }
}

/*------------------------------------------------------------------------------
  c-burger-btn
------------------------------------------------------------------------------*/
.c-burger-btn {
  display: none;
}
@media screen and (max-width: 1023px) {
  .c-burger-btn {
    display: block;
    border: none;
    cursor: pointer;
    position: relative;
    top: 0px;
    z-index: 999;
    padding: 12px 30px;
    background-color: transparent;
    margin-right: -32px;
    /* ハンバーガーメニューが開いたとき */
  }
  .c-burger-btn.cross .c-burger-btn__bar {
    background-color: #fff;
  }
  .c-burger-btn.cross .c-burger-btn__bar--top {
    -webkit-transition-delay: 40ms;
            transition-delay: 40ms;
    -webkit-transform: translateY(11px) rotate(135deg);
            transform: translateY(11px) rotate(135deg);
  }
  .c-burger-btn.cross .c-burger-btn__bar--mid {
    -webkit-transition-delay: 120ms;
            transition-delay: 120ms;
    -webkit-transform: translateX(-15px) scaleX(0);
            transform: translateX(-15px) scaleX(0);
  }
  .c-burger-btn.cross .c-burger-btn__bar--bottom {
    -webkit-transition-delay: 20ms;
            transition-delay: 20ms;
    -webkit-transform: translateY(-11px) rotate(-135deg);
            transform: translateY(-11px) rotate(-135deg);
  }
}

.c-burger-btn__bar {
  margin: 0 auto;
  display: block;
  height: 1px;
  width: 40px;
  border-radius: 0px;
  background-color: #0B364A;
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.c-burger-btn__bar--top,
.c-burger-btn__bar--mid {
  margin-bottom: 10px;
}

/*------------------------------------------------------------------------------
  c-splash-screen
------------------------------------------------------------------------------*/
.c-splash-screen {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #D0E0EB;
  background-image: url(../img/load-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}

.js-fade-out {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  /* フェードアウトも2秒に設定 */
}

.c-splash-screen__logo {
  width: 220px;
  opacity: 0;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}
@media screen and (max-width: 767px) {
  .c-splash-screen__logo {
    width: 156px;
  }
}

/*------------------------------------------------------------------------------
  c-title
------------------------------------------------------------------------------*/
.c-title__en {
  color: #0B364A;
  font-size: 9.6rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 1280px) {
  .c-title__en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 1023px) {
  .c-title__en {
    font-size: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__en {
    font-size: 5.6rem;
  }
}

.c-title__ja {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 1280px) {
  .c-title__ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title__ja {
    font-size: 1.8rem;
  }
}

/*------------------------------------------------------------------------------
  c-title02
------------------------------------------------------------------------------*/
.c-title02__en {
  color: #0B364A;
  font-size: 7.2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 1280px) {
  .c-title02__en {
    font-size: 6.2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__en {
    font-size: 4rem;
  }
}

.c-title02__en--md {
  font-size: 8rem;
}
@media screen and (max-width: 1280px) {
  .c-title02__en--md {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__en--md {
    font-size: 4.6rem;
  }
}

.c-title02__en--lg {
  font-size: 8.6rem;
}
@media screen and (max-width: 1280px) {
  .c-title02__en--lg {
    font-size: 7.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__en--lg {
    font-size: 5.6rem;
  }
}

.c-title02__ja {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
@media screen and (max-width: 1280px) {
  .c-title02__ja {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title02__ja {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-title03
------------------------------------------------------------------------------*/
.c-title03__ja {
  color: #0B364A;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-title03__ja {
    font-size: 2.6rem;
  }
}

.c-title03__en {
  font-size: 1.8rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .c-title03__en {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  c-news
------------------------------------------------------------------------------*/
.c-news-wrap {
  width: 100%;
  max-width: 92.4rem;
}

.c-news {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .c-news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-news:not(:last-child) {
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-news:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}

.c-news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 13.2rem;
          flex: 0 1 13.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-family: "Josefin Sans", sans-serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 0.5rem;
  padding-right: 0.8rem;
  display: inline-block;
}
@media screen and (max-width: 1023px) {
  .c-news__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 9.6rem;
            flex: 0 1 9.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-news__date {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 8.2rem;
            flex: 0 1 8.2rem;
    letter-spacing: 0.05em;
  }
}

.c-news__category-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 14rem;
          flex: 0 1 14rem;
}
@media screen and (max-width: 1023px) {
  .c-news__category-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 12rem;
            flex: 0 1 12rem;
  }
}
@media screen and (max-width: 767px) {
  .c-news__category-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 10rem;
            flex: 0 1 10rem;
  }
}

.c-news__category {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  border-radius: 24px;
  background-color: #0B364A;
  padding: 0.7rem 2rem;
}
@media screen and (max-width: 767px) {
  .c-news__category {
    font-size: 1.1rem;
    padding: 0.5rem 1.6rem;
  }
}

.c-news__link {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 5.8rem 0.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .c-news__link {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 1.4rem;
    padding-right: 5rem;
    margin-top: 0.6rem;
  }
}
.c-news__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../img/arrow-navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 37px;
  height: 10px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-news__link::after {
    top: 51.5%;
    right: 0px;
    width: 34px;
    height: 8px;
  }
}
.c-news__link:hover {
  text-decoration: underline;
}
.c-news__link:hover::after {
  right: 2px;
}

/*------------------------------------------------------------------------------
  c-pagination
------------------------------------------------------------------------------*/
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin-top: 4.8rem;
  }
}

.c-pagination li {
  margin: 0 7.5px;
}
@media screen and (max-width: 767px) {
  .c-pagination li {
    margin: 0 8px;
  }
}

.c-pagination__number {
  color: #0B364A;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 40px;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #0B364A;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
@media screen and (max-width: 767px) {
  .c-pagination__number {
    font-size: 1.3rem;
    line-height: 35px;
    width: 35px;
    height: 35px;
  }
}
.c-pagination__number:hover {
  opacity: 1;
  color: #fff;
  background-color: #0B364A;
}

.c-pagination__number.current {
  pointer-events: none;
  color: #fff;
  background-color: #0B364A;
}

.c-pagination__prev,
.c-pagination__next {
  width: 40px;
  height: 40px;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-pagination__prev,
  .c-pagination__next {
    width: 35px;
    height: 35px;
  }
}
.c-pagination__prev::before,
.c-pagination__next::before {
  content: "";
  position: absolute;
  top: 52%;
  width: 17px;
  height: 14px;
  background-image: url(../img/caret-navy.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-pagination__prev::before,
  .c-pagination__next::before {
    width: 15px;
    height: 12px;
  }
}

.c-pagination__prev::before {
  left: 13px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.c-pagination__next::before {
  right: 13px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*------------------------------------------------------------------------------
  c-card
------------------------------------------------------------------------------*/
.c-card-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.27%;
}
@media screen and (max-width: 480px) {
  .c-card-wrap {
    display: block;
  }
}

.c-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 31.82%;
          flex: 0 1 31.82%;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 3px solid;
  padding: 2.4rem 1.8rem 1.8rem;
}
@media screen and (max-width: 1023px) {
  .c-card {
    padding: 1.6rem 1rem 0.6rem;
  }
}
@media screen and (max-width: 767px) {
  .c-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48.8%;
            flex: 0 1 48.8%;
  }
  .c-card:nth-child(n+3) {
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .c-card:nth-child(n+3) {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .c-card:nth-child(n+2) {
    margin-top: 2rem;
  }
}
.c-card:nth-child(n+4) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 480px) {
  .c-card:nth-child(n+4) {
    margin-top: 2rem;
  }
}

.c-card--green {
  border-color: #0C7C59;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(5, 89, 63, 0.12);
          box-shadow: 0px 0px 24px 0px rgba(5, 89, 63, 0.12);
}
.c-card--green .c-card__title {
  color: #0C7C59;
}
.c-card--green .c-card__address::before {
  background-image: url(../img/post-green.svg);
}
.c-card--green .c-card__tel::before {
  background-image: url(../img/tel-green.svg);
}

.c-card--blue {
  border-color: #128AC1;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(5, 89, 63, 0.12);
          box-shadow: 0px 0px 24px 0px rgba(5, 89, 63, 0.12);
}
.c-card--blue .c-card__title {
  color: #128AC1;
}
.c-card--blue .c-card__address::before {
  background-image: url(../img/post-blue.svg);
}
.c-card--blue .c-card__tel::before {
  background-image: url(../img/tel-blue.svg);
}

.c-card__title {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 1023px) {
  .c-card__title {
    font-size: 1.7rem;
  }
}

.c-card__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
}

.c-card__address,
.c-card__tel {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.8rem;
}
@media screen and (max-width: 1023px) {
  .c-card__address,
  .c-card__tel {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    padding-left: 2.2rem;
  }
}
.c-card__address::before,
.c-card__tel::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.9rem;
  height: 1.9rem;
}
@media screen and (max-width: 1023px) {
  .c-card__address::before,
  .c-card__tel::before {
    top: 0.3rem;
    width: 1.7rem;
    height: 1.7rem;
  }
}

.c-card__address {
  margin-bottom: 0.4rem;
}

.c-card__tel {
  margin-bottom: 1.6rem;
}

/*------------------------------------------------------------------------------
  c-interview-card
------------------------------------------------------------------------------*/
.c-interview-card {
  overflow: hidden;
}

.c-interview-card__link {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
}
.c-interview-card__link:hover {
  opacity: 0.95;
}

.c-interview-card__img {
  width: 100%;
  margin-bottom: 1.2rem;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-interview-card__img {
    margin-bottom: 1rem;
  }
}
.c-interview-card__img img {
  aspect-ratio: 280/350;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
  -webkit-transform: scale(1) rotate(0);
          transform: scale(1) rotate(0);
}
.c-interview-card__img img:hover {
  -webkit-transform: scale(1.07) rotate(2deg);
          transform: scale(1.07) rotate(2deg);
}

.c-interview-card__title {
  color: #0B364A;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .c-interview-card__title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-interview-card__title {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}
.c-interview-card__title:hover {
  text-decoration: underline;
}

.c-interview-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-interview-card__info p {
  color: #128AC1;
  font-size: 1.2rem;
  font-weight: 500;
}
.c-interview-card__info p:not(:last-child) {
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-interview-card__info p:not(:last-child) {
    margin-right: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-mv
------------------------------------------------------------------------------*/
.p-mv {
  position: relative;
  margin-bottom: 20rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-bottom: 12rem;
  }
}

.p-mv__inner {
  width: calc(100% - 10rem);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  .p-mv__inner {
    width: 100%;
    padding: 0 2rem;
  }
}

.p-mv__lead-en {
  position: absolute;
  top: 55.5rem;
  left: 1.8rem;
  width: 93.33%;
  max-width: 150rem;
  z-index: 1;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 1280px) {
  .p-mv__lead-en {
    top: 76%;
    width: 78vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__lead-en {
    left: 1rem;
    width: 94.5vw;
  }
}

.p-mv__lead-ja {
  color: #128AC1;
  font-size: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  margin-top: 7.6rem;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-ja {
    font-size: 2rem;
    margin-top: 6.2rem;
  }
}
.p-mv__lead-ja .--sm {
  font-size: 2.3rem;
}
@media screen and (max-width: 767px) {
  .p-mv__lead-ja .--sm {
    font-size: 1.8rem;
  }
}

.p-mv__btn {
  width: 100%;
  max-width: 22.2rem;
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: relative;
  z-index: 2;
  margin-bottom: -0.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    display: none;
  }
}
.p-mv__btn .c-btn__text {
  font-size: 1.8rem;
  font-style: normal;
  letter-spacing: 0.18em;
  font-family: "Noto Sans JP", sans-serif;
}

.swiper {
  overflow: hidden;
}
.swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.swiper .swiper-slide {
  height: 70rem;
  width: auto !important;
}
.swiper .swiper-slide img {
  height: 70rem;
  width: auto !important;
}
@media screen and (max-width: 1023px) {
  .swiper .swiper-slide {
    height: 56rem;
  }
  .swiper .swiper-slide img {
    height: 56rem;
  }
}
@media screen and (max-width: 767px) {
  .swiper .swiper-slide {
    height: 40rem;
  }
  .swiper .swiper-slide img {
    height: 40rem;
  }
}

/*------------------------------------------------------------------------------
  p-top-media
------------------------------------------------------------------------------*/
.p-top-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 1921px) {
  .p-top-media {
    max-width: 190rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-top-media__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 57.1%;
          flex: 0 1 57.1%;
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-top-media__img-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-media__img-wrap {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.p-top-media__en {
  position: absolute;
  width: 100%;
  mix-blend-mode: hard-light;
}

.p-top-media__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 44rem;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-top-media__text-wrap {
    max-width: 100%;
    margin-top: 10.5rem;
  }
}

.p-top-media__text {
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.1em;
  text-align: justify;
  margin: 4rem 0 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-top-media__text {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    text-align: justify;
    width: 100%;
    margin: 3.2rem 0 2.4rem;
  }
}

/*------------------------------------------------------------------------------
  p-top-about
------------------------------------------------------------------------------*/
.p-top-about {
  margin-bottom: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    margin-bottom: 17rem;
  }
  .p-top-about .p-top-media__text-wrap {
    padding-left: 2rem;
  }
}
.p-top-about::before {
  content: "";
  position: absolute;
  top: 13rem;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60rem;
  height: 45.6rem;
  background-color: #EFF6F9;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-about::before {
    top: 6rem;
    left: auto;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: calc(100% - 5rem);
    height: 100%;
  }
}
.p-top-about .p-top-media__img-wrap {
  margin-right: 7.6rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about .p-top-media__img-wrap {
    margin-right: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about .p-top-media__img-wrap {
    margin-right: 0rem;
  }
}
.p-top-about .p-top-media__en {
  max-width: 67rem;
  bottom: -13rem;
  left: 9.4rem;
}
@media screen and (max-width: 1023px) {
  .p-top-about .p-top-media__en {
    width: 44vw;
    bottom: -30%;
    left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about .p-top-media__en {
    bottom: -28%;
    left: 1.2rem;
    width: 90.66vw;
  }
}

.p-top-about__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 2rem;
}

/*------------------------------------------------------------------------------
  p-top-business
------------------------------------------------------------------------------*/
.p-top-business {
  margin-bottom: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-business {
    margin-bottom: 16rem;
  }
  .p-top-business .p-top-media__text-wrap {
    padding-right: 2rem;
  }
}
.p-top-business::before {
  content: "";
  position: absolute;
  top: 13rem;
  left: 41%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60rem;
  height: 45.6rem;
  background-color: #F1F9EF;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-business::before {
    top: 6rem;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: calc(100% - 5rem);
    height: 100%;
  }
}
.p-top-business .p-top-media {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.p-top-business .p-top-media__img-wrap {
  margin-left: 9rem;
}
@media screen and (max-width: 1023px) {
  .p-top-business .p-top-media__img-wrap {
    margin-left: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business .p-top-media__img-wrap {
    margin-left: 0;
  }
}
.p-top-business .p-top-media__en {
  bottom: -11.5rem;
  left: 1rem;
  max-width: 65.6rem;
}
@media screen and (max-width: 1023px) {
  .p-top-business .p-top-media__en {
    width: 43vw;
    bottom: -27%;
    left: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business .p-top-media__en {
    bottom: -24%;
    left: 0.2rem;
    width: 90.66vw;
  }
}

.p-top-business__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
}

/*------------------------------------------------------------------------------
  p-top-culture
------------------------------------------------------------------------------*/
.p-top-culture {
  background-color: #113A4F;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 14rem 0;
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-top-culture {
    padding: 8rem 0 7.2rem;
    margin-bottom: 9rem;
  }
}

.p-top-culture__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 767px) {
  .p-top-culture__heading {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 3.2rem;
  }
}

.p-top-culture__lead {
  color: #fff;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-top-culture__lead {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 767px) {
  .p-top-culture__lead {
    font-size: 1.45rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    text-align: center;
  }
}

.p-top-culture__title {
  text-align: right;
}
.p-top-culture__title .c-title__en {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-culture__title {
    width: 100%;
    text-align: center;
    margin-bottom: 2.4rem;
  }
}

.p-top-culture__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-culture__img-wrap {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: calc(100% + 3.6rem);
  }
}

.p-top-culture__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 33%;
          flex: 0 1 33%;
}

.p-top-culture__en {
  position: absolute;
  bottom: -9.5rem;
  left: 0;
  width: 100%;
  max-width: 63.3rem;
  mix-blend-mode: hard-light;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  .p-top-culture__en {
    bottom: -8rem;
    max-width: 50rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-culture__en {
    bottom: -5rem;
    left: 45%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 83vw;
  }
}

.p-top-culture__btn {
  margin-top: 3rem;
  max-width: 19.9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-top-culture__btn {
    max-width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 1.6rem;
    margin: 7.2rem auto 0;
  }
}
.p-top-culture__btn:hover .c-btn__text {
  color: #6CD0FF;
}
.p-top-culture__btn .c-btn__circle::before {
  background-color: #6CD0FF;
}

/*------------------------------------------------------------------------------
  p-top-news
------------------------------------------------------------------------------*/
.p-top-news {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-top-news {
    margin-bottom: 8rem;
  }
  .p-top-news .c-inner {
    padding: 0 1.2rem;
  }
}

.p-top-news__box {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #EFF6F9;
  border-radius: 8rem;
  padding: 9.6rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-news__box {
    max-width: 70rem;
    border-radius: 4rem;
    padding: 6.4rem 1.6rem 6rem;
    margin: 0 auto;
  }
}

.p-top-news__list {
  max-width: 82rem;
  margin: 4.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-news__list {
    margin-top: 4rem;
  }
}

/*------------------------------------------------------------------------------
  p-page-mv
------------------------------------------------------------------------------*/
.p-page-mv {
  position: relative;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .p-page-mv {
    margin-top: 5.6rem;
  }
}

.p-page-mv__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 180rem;
  padding-left: 5rem;
  margin: 0 auto;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__inner {
    padding-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__inner {
    padding-left: 0;
  }
}

.p-page-mv__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-left: 6rem;
  padding-right: 5rem;
  margin: 0 auto 4.4rem;
  max-width: 180rem;
}
@media screen and (max-width: 1280px) {
  .p-page-mv__heading {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__heading {
    padding: 0 1.8rem;
    margin-bottom: 2rem;
  }
}
.p-page-mv__heading .c-breadcrumb {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 0;
}

.p-page-mv__title-en {
  color: #0B364A;
  font-size: 8.6rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__title-en {
    font-size: 7.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-en {
    font-size: 5rem;
    letter-spacing: 0.01em;
  }
}

.p-page-mv__title-ja {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__title-ja {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__title-ja {
    font-size: 1.4rem;
  }
}

.p-page-mv__img {
  position: relative;
}

.p-page-mv__en {
  position: absolute;
  mix-blend-mode: hard-light;
}
.p-page-mv__en.--about {
  bottom: -132px;
  right: 50px;
  width: 787px;
}
@media screen and (min-width: 1921px) {
  .p-page-mv__en.--about {
    right: 20px;
  }
}
@media screen and (max-width: 1023px) {
  .p-page-mv__en.--about {
    bottom: -100px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__en.--about {
    bottom: -16%;
    right: 10px;
    width: 60%;
  }
}
.p-page-mv__en.--business, .p-page-mv__en.--culture {
  bottom: -108px;
  right: 50px;
  width: 703px;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__en.--business, .p-page-mv__en.--culture {
    bottom: -90px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__en.--business, .p-page-mv__en.--culture {
    bottom: -15%;
    right: 10px;
    width: 62%;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__en.--culture {
    bottom: -14%;
    width: 58%;
  }
}
.p-page-mv__en.--recruit {
  bottom: -108px;
  right: 50px;
  width: 853px;
}
@media screen and (max-width: 1023px) {
  .p-page-mv__en.--recruit {
    bottom: -21%;
    right: 20px;
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-page-mv__en.--recruit {
    bottom: -11%;
    right: 6px;
    width: 62%;
  }
}

/*------------------------------------------------------------------------------
  p-common-mv
------------------------------------------------------------------------------*/
.p-common-mv {
  position: relative;
  background-color: #DEEBF6;
  background: linear-gradient(92deg, rgba(0, 157, 225, 0.15) 0%, rgba(10, 54, 129, 0.15) 100%);
  height: 25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-common-mv {
    height: 20rem;
  }
}

.p-common-mv__title {
  padding-top: 9rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-common-mv__title {
    padding-top: 8.5rem;
  }
}

.p-common-mv__title-en {
  color: #0B364A;
  font-size: 7.4rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.04em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-common-mv__title-en {
    font-size: 5.8rem;
  }
  .p-common-mv__title-en.--pp {
    font-size: 4.8rem;
    letter-spacing: 0.02em;
  }
}

.p-common-mv__title-ja {
  color: #0B364A;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
}

.p-common-mv__en {
  position: absolute;
  mix-blend-mode: hard-light;
}
.p-common-mv__en.--news {
  bottom: -84px;
  right: 56px;
  width: 405px;
}
@media screen and (max-width: 1023px) {
  .p-common-mv__en.--news {
    right: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-common-mv__en.--news {
    bottom: -12px;
    width: 134px;
  }
}
.p-common-mv__en.--interview {
  bottom: -88px;
  right: 50px;
  width: 527px;
}
@media screen and (max-width: 1023px) {
  .p-common-mv__en.--interview {
    bottom: -60px;
    right: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-common-mv__en.--interview {
    right: 12px;
    bottom: -16px;
    width: 160px;
  }
}
.p-common-mv__en.--contact {
  bottom: -78px;
  right: 31px;
  width: 513px;
}
@media screen and (max-width: 1023px) {
  .p-common-mv__en.--contact {
    bottom: -60px;
    right: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-common-mv__en.--contact {
    right: 10px;
    bottom: -30px;
    width: 174px;
  }
}
.p-common-mv__en.--sitemap {
  bottom: -118px;
  right: 50px;
  width: 527px;
}
@media screen and (max-width: 1023px) {
  .p-common-mv__en.--sitemap {
    bottom: -60px;
    right: 20px;
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .p-common-mv__en.--sitemap {
    right: 12px;
    bottom: -16px;
    width: 160px;
  }
}
.p-common-mv__en.--pp {
  bottom: -92px;
  right: 50px;
  width: 627px;
}
@media screen and (max-width: 1023px) {
  .p-common-mv__en.--pp {
    bottom: -65px;
    right: 20px;
    width: 450px;
  }
}
@media screen and (max-width: 767px) {
  .p-common-mv__en.--pp {
    right: 12px;
    bottom: -24px;
    width: 162px;
  }
}

/*------------------------------------------------------------------------------
  p-message
------------------------------------------------------------------------------*/
.p-message {
  margin-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .p-message {
    margin-bottom: 8rem;
  }
}
.p-message .c-inner {
  position: relative;
}

.p-message__contents {
  z-index: 1;
  width: 100%;
  padding-left: 12rem;
}
@media screen and (max-width: 1280px) {
  .p-message__contents {
    padding-left: 0;
  }
}
@media screen and (max-width: 1023px) {
  .p-message__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media screen and (max-width: 1023px) {
  .p-message__text-warp {
    display: contents;
  }
  .p-message__text-warp .c-title02 {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    width: 100%;
    margin-bottom: 2.4rem;
  }
}

.p-message__texts {
  color: #0B364A;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
  margin: 3.4rem 0 4.8rem;
}
@media screen and (max-width: 1280px) {
  .p-message__texts {
    font-size: 1.4rem;
    max-width: 55rem;
    letter-spacing: 0.02em;
    margin: 2.4rem 0 3.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-message__texts {
    line-height: 1.8;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-message__texts {
    font-size: 1.3rem;
    margin: 1.6rem 0 2.4rem;
  }
}
.p-message__texts p:not(:last-child) {
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .p-message__texts p:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.p-message__texts .u-fw-bold {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
  .p-message__texts .u-fw-bold {
    font-size: 1.8rem;
  }
}

.p-message__bottom-texts {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 767px) {
  .p-message__bottom-texts {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}

.p-message__sign {
  width: 100%;
  max-width: 18.6rem;
}
@media screen and (max-width: 767px) {
  .p-message__sign {
    max-width: 15rem;
  }
}

.p-message__img {
  position: absolute;
  top: 5.4rem;
  right: 0;
  width: 96rem;
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-message__img {
    position: static;
    width: 95%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}
@media screen and (max-width: 767px) {
  .p-message__img {
    position: relative;
    top: 0;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
  }
}

/*------------------------------------------------------------------------------
  p-history
------------------------------------------------------------------------------*/
.p-history {
  background-color: #EFF6F9;
  padding: 12.4rem 0;
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-history {
    padding: 7rem 0;
    margin-bottom: 7rem;
  }
}

.p-history__list {
  margin-top: 4.4rem;
}
@media screen and (max-width: 767px) {
  .p-history__list {
    margin-top: 1.6rem;
  }
}

.p-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #ADD6E9;
  padding: 2.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-history__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 1.8rem 0;
  }
}

.p-history__year,
.p-history__month {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.35;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-history__year,
  .p-history__month {
    font-size: 2rem;
  }
}
.p-history__year::after,
.p-history__month::after {
  position: relative;
  bottom: 1px;
  right: -2px;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .p-history__year::after,
  .p-history__month::after {
    font-size: 1.3rem;
  }
}
.p-history__year:empty::after,
.p-history__month:empty::after {
  display: none;
}

.p-history__year {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10.6rem;
          flex: 0 0 10.6rem;
  color: #128AC1;
}
@media screen and (max-width: 767px) {
  .p-history__year {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84px;
            flex: 0 0 84px;
  }
}
.p-history__year::after {
  content: "年";
}

.p-history__month {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 92px;
          flex: 0 0 92px;
  color: #2F667E;
}
@media screen and (max-width: 767px) {
  .p-history__month {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 70px;
            flex: 0 0 70px;
  }
}
.p-history__month::after {
  content: "月";
}

.p-history__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #0B364A;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-history__text {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    margin-top: 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-organization
------------------------------------------------------------------------------*/
.p-organization {
  margin-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-organization {
    margin-bottom: 5rem;
  }
}

.p-organization__graph-wrap {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-organization__graph-wrap {
    overflow-x: auto;
    width: 100%;
    margin-top: 3.2rem;
    padding-bottom: 2rem;
  }
}

.p-organization__graph {
  max-width: 103rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-organization__graph {
    margin: 0;
    width: 48rem;
    overflow-x: scroll;
  }
}

/*------------------------------------------------------------------------------
  p-shop
------------------------------------------------------------------------------*/
.p-shop {
  background: -webkit-gradient(linear, right top, left top, color-stop(-0.55%, #184B66), color-stop(101.15%, #113A4F));
  background: linear-gradient(270deg, #184B66 -0.55%, #113A4F 101.15%);
  padding: 11.6rem 0 14rem;
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-shop {
    padding: 5.8rem 0 6.4rem;
    margin-bottom: 7rem;
  }
}

.p-shop__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-shop__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 2.4rem;
  }
}
.p-shop__list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24%;
          flex: 0 1 24%;
}
@media screen and (max-width: 767px) {
  .p-shop__list li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.4rem);
            flex: 0 1 calc(50% - 0.4rem);
  }
  .p-shop__list li:nth-child(n+3) {
    margin-top: 0.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-company
------------------------------------------------------------------------------*/
.p-company {
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-company {
    margin-bottom: 8rem;
  }
  .p-company .c-inner {
    padding: 0 1.6rem;
  }
}

.p-company__detail {
  margin-top: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-company__detail {
    margin-top: 3.2rem;
  }
}

.p-company__detail-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.6rem 4.8rem;
}
@media screen and (max-width: 1023px) {
  .p-company__detail-item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__detail-item {
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    padding: 2rem 1.2rem;
  }
}
.p-company__detail-item:nth-child(odd) {
  background-color: #F0F5FB;
}
.p-company__detail-item dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 26rem;
          flex: 0 1 26rem;
}
@media screen and (max-width: 1023px) {
  .p-company__detail-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 16rem;
            flex: 0 1 16rem;
  }
}
@media screen and (max-width: 767px) {
  .p-company__detail-item dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 10rem;
            flex: 0 1 10rem;
  }
}
.p-company__detail-item dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*------------------------------------------------------------------------------
  p-business
------------------------------------------------------------------------------*/
.p-business {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .p-business {
    padding-bottom: 6rem;
  }
}
.p-business::before {
  content: "";
  position: absolute;
  top: 17.6rem;
  width: calc(100% - 10rem);
  height: calc(100% - 17.6rem);
  z-index: -1;
}
@media screen and (min-width: 1441px) {
  .p-business::before {
    width: calc(100% - (100% - 130rem) / 2);
  }
}
@media screen and (max-width: 1399px) {
  .p-business::before {
    width: calc(100% - (100% - 120rem) / 2);
  }
}
@media screen and (max-width: 1023px) {
  .p-business::before {
    top: 11rem;
    height: calc(100% - 11rem);
  }
}
@media screen and (max-width: 767px) {
  .p-business::before {
    top: 10vw;
    height: calc(100% - 10vw);
  }
}
.p-business:not(:last-child) {
  margin-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .p-business:not(:last-child) {
    margin-bottom: 7rem;
  }
}

.p-business--01::before {
  left: 0;
  background-color: #F6FDF4;
}
.p-business--01 .p-business__number {
  letter-spacing: 0;
}
.p-business--01 .p-business__contents {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-business--01 .p-business__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 44.73%;
          flex: 0 1 44.73%;
}

.p-business--02::before {
  right: 0;
  background-color: #EFF6F9;
}
.p-business--02 .p-business__main-img {
  margin-left: auto;
}
.p-business--02 .p-business__texts {
  margin-right: 4.6rem;
}
@media screen and (max-width: 1280px) {
  .p-business--02 .p-business__texts {
    margin-right: auto;
  }
}
.p-business--02 .p-business__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 39.1%;
          flex: 0 1 39.1%;
}

.p-business--03::before {
  left: 0;
  background-color: #F6F6F6;
}

.p-business__main-img {
  width: calc(100% - (100% - 110rem) / 2);
  margin-bottom: 9.6rem;
}
@media screen and (max-width: 1280px) {
  .p-business__main-img {
    width: calc(100% - 2rem);
  }
}
@media screen and (max-width: 1023px) {
  .p-business__main-img {
    margin-bottom: 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__main-img {
    margin-bottom: 6.4rem;
  }
}

.p-business__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 3.6rem;
}
@media screen and (max-width: 1023px) {
  .p-business__heading {
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-business__heading {
    margin-bottom: 2rem;
  }
}

.p-business__number {
  color: #0B364A;
  font-size: 6.2rem;
  font-weight: normal;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
  margin-right: 3.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-business__number {
    font-size: 5.2rem;
    margin-right: 2.4rem;
  }
}
.p-business__number::before {
  content: "Business";
  position: absolute;
  top: -20px;
  left: 55%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1.6rem;
  font-style: italic;
  letter-spacing: 0.01em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-business__number::before {
    top: -16px;
    font-size: 1.3rem;
  }
}

.p-business__title {
  color: #0B364A;
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.14em;
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-business__title {
    font-size: 2.8rem;
  }
}

.p-business__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 7.2rem;
}
@media screen and (max-width: 1023px) {
  .p-business__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-business__texts {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50.1%;
          flex: 0 1 50.1%;
}
@media screen and (max-width: 1280px) {
  .p-business__texts {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 55%;
            flex: 0 1 55%;
    padding-right: 0;
    margin-bottom: 2.8rem;
  }
}
.p-business__texts p {
  color: #222;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1280px) {
  .p-business__texts p {
    font-size: 1.4rem;
  }
}

.p-business__store .c-card-wrap {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-business__store .c-card-wrap {
    margin-top: 2.8rem;
  }
}

/*------------------------------------------------------------------------------
  p-common-recruit
------------------------------------------------------------------------------*/
.p-common-recruit {
  margin-bottom: 19rem;
}
@media screen and (min-width: 1921px) {
  .p-common-recruit {
    max-width: 190rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-common-recruit {
    margin-bottom: 10rem;
  }
}

.p-common-recruit__inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2rem;
}

.p-recruit-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-recruit-media {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-recruit-media__text-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 41rem;
  margin-top: 15.6rem;
  margin-right: 7.8rem;
}
@media screen and (max-width: 1023px) {
  .p-recruit-media__text-wrap {
    margin-top: 7rem;
    margin-right: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-media__text-wrap {
    margin: 8rem 0 0;
    padding-right: 2rem;
  }
}

.p-recruit-media__text {
  margin: 4rem 0 6.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-media__text {
    margin: 3.2rem 0 2.4rem;
    text-align: justify;
  }
}

.p-recruit-media__img-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 61.13%;
          flex: 0 1 61.13%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 767px) {
  .p-recruit-media__img-wrap {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }
}

.p-recruit-media__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 48.39%;
          flex: 0 1 48.39%;
}
@media screen and (max-width: 767px) {
  .p-recruit-media__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
            flex: 0 1 49%;
  }
}
.p-recruit-media__img:first-child {
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-recruit-media__img:first-child {
    margin-top: 1.2rem;
  }
}

.p-recruit-media__en {
  position: absolute;
  bottom: -8.6rem;
  left: 2.6rem;
  max-width: 75rem;
  mix-blend-mode: hard-light;
}
@media screen and (max-width: 1023px) {
  .p-recruit-media__en {
    bottom: -15%;
    left: 1rem;
    width: 55vw;
  }
}
@media screen and (max-width: 767px) {
  .p-recruit-media__en {
    bottom: -17%;
    left: 0;
    width: 92vw;
  }
}

/*------------------------------------------------------------------------------
  p-interview
------------------------------------------------------------------------------*/
.p-interview .c-inner {
  padding: 0 1.2rem;
}

.p-interview--single {
  margin: 20rem 0 12rem;
}
@media screen and (max-width: 520px) {
  .p-interview--single {
    margin: 16rem 0 7rem;
  }
}

.p-interview__card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 105.4rem;
  margin: 0 auto;
}
@media screen and (max-width: 520px) {
  .p-interview__card-list {
    margin-left: -0.2rem;
  }
}

.p-interview__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 41.8%;
          flex: 0 1 41.8%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (max-width: 1023px) {
  .p-interview__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 44%;
            flex: 0 1 44%;
  }
}
@media screen and (max-width: 767px) {
  .p-interview__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 46%;
            flex: 0 1 46%;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 47%;
            flex: 0 1 47%;
  }
}
.p-interview__card:first-child {
  margin-top: 0 !important;
}
.p-interview__card:nth-child(2) {
  margin-top: 10rem !important;
}
@media screen and (max-width: 767px) {
  .p-interview__card:nth-child(2) {
    margin-top: 6rem !important;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card:nth-child(2) {
    margin-top: 0rem !important;
  }
}
.p-interview__card:nth-child(n+2) {
  margin-top: 4rem;
}
@media screen and (max-width: 520px) {
  .p-interview__card:nth-child(n+2) {
    margin-top: 3.2rem;
  }
}
.p-interview__card:nth-child(even) {
  margin-top: 14rem;
}
@media screen and (max-width: 767px) {
  .p-interview__card:nth-child(even) {
    margin-top: 10rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card:nth-child(even) {
    margin-top: 3.2rem;
  }
}
.p-interview__card a:hover {
  opacity: 0.95;
}

.p-interview__card-img {
  width: 100%;
  margin-bottom: 3.2rem;
  position: relative;
  overflow: hidden;
  -webkit-box-shadow: 12px 12px 0 #0B364A;
          box-shadow: 12px 12px 0 #0B364A;
}
@media screen and (max-width: 767px) {
  .p-interview__card-img {
    -webkit-box-shadow: 5px 5px 0 #0B364A;
            box-shadow: 5px 5px 0 #0B364A;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card-img {
    margin-bottom: 1.2rem;
  }
}
.p-interview__card-img img {
  aspect-ratio: 440/550;
  -webkit-transition: all 0.24s ease;
  transition: all 0.24s ease;
  -webkit-transform: scale(1) rotate(0);
          transform: scale(1) rotate(0);
}
.p-interview__card-img img:hover {
  -webkit-transform: scale(1.07) rotate(2deg);
          transform: scale(1.07) rotate(2deg);
}

.p-interview__card-title {
  color: #0B364A;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-interview__card-title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
}

.p-interview__card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.p-interview__card-info p {
  color: #128AC1;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1023px) {
  .p-interview__card-info p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview__card-info p {
    font-size: 1.2rem;
  }
}
.p-interview__card-info p:not(:last-child) {
  margin-right: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-interview__card-info p:not(:last-child) {
    margin-right: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-interview-post
------------------------------------------------------------------------------*/
.p-interview-post {
  max-width: 90rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #A6D9EE;
  border-radius: 2px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
  padding: 11.6rem 5rem 7.2rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-interview-post {
    padding: 11.6rem 3.2rem 7.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-post {
    padding: 8rem 2rem 6rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview-post {
    padding: 0 2rem 6rem;
  }
}

.p-interview-post__thumb {
  position: absolute;
  top: -10rem;
  right: -5.6rem;
  width: 44rem;
  -webkit-box-shadow: -15px 15px 0 #0B364A;
          box-shadow: -15px 15px 0 #0B364A;
}
@media screen and (max-width: 1023px) {
  .p-interview-post__thumb {
    top: -10vw;
    right: -2rem;
    width: 44.2vw;
    -webkit-box-shadow: -10px 10px 0 #0B364A;
            box-shadow: -10px 10px 0 #0B364A;
  }
}
@media screen and (max-width: 520px) {
  .p-interview-post__thumb {
    position: relative;
    top: auto;
    left: calc(50% + 4px);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    -webkit-box-shadow: -8px 8px 0 #0B364A;
            box-shadow: -8px 8px 0 #0B364A;
    margin-top: -8.4rem;
    display: block;
  }
}

.p-interview-post__head {
  max-width: 41rem;
  min-height: 34.6rem;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 1023px) {
  .p-interview-post__head {
    width: 43vw;
    min-height: 32vw;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-post__head {
    margin-bottom: 4.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview-post__head {
    width: 100%;
    margin: 4rem 0 3.2rem;
  }
}

.p-interview-post__location {
  color: #128AC1;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-post__location {
    font-size: 1.5rem;
  }
}

.p-interview-post__position {
  color: #128AC1;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-interview-post__position {
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 520px) {
  .p-interview-post__position {
    margin-bottom: 1.6rem;
  }
}

.p-interview-post__title {
  color: #0B364A;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1023px) {
  .p-interview-post__title {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-post__title {
    font-size: 1.8rem;
  }
}

.p-interview__contents p {
  line-height: 1.6;
}

.p-interview-post__block:not(:last-of-type) {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-interview-post__block:not(:last-of-type) {
    margin-bottom: 3.2rem;
  }
}

.p-interview-post__sub-title {
  color: #0B364A;
  font-size: 1.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 2px;
  background: linear-gradient(92deg, rgba(0, 157, 225, 0.15) 0%, rgba(10, 54, 129, 0.15) 100%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  padding: 0.8rem 2rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-interview-post__sub-title {
    font-size: 1.4rem;
    padding: 0.8rem 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-culture
------------------------------------------------------------------------------*/
.p-culture {
  margin-bottom: 17rem;
}
@media screen and (max-width: 767px) {
  .p-culture {
    position: relative;
    margin-bottom: 12rem;
  }
}

.p-culture__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 7.2rem;
  max-width: 180rem;
}
@media screen and (min-width: 1921px) {
  .p-culture__inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  .p-culture__inner {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-culture__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-culture__text-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 42.95%;
          flex: 0 1 42.95%;
}
@media screen and (max-width: 1023px) {
  .p-culture__text-wrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 60%;
            flex: 0 1 60%;
    margin-right: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-culture__text-wrap {
    margin-bottom: 1.6rem;
  }
}

.p-culture__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .p-culture__title-wrap {
    margin-bottom: 2.4rem;
  }
}

.p-culture__title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #0B364A;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.24em;
  margin-right: 3rem;
}
@media screen and (max-width: 767px) {
  .p-culture__title {
    font-size: 2.6rem;
    letter-spacing: 0.18em;
    margin-right: 1.6rem;
  }
}

.p-culture__title-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #BACCD4;
  width: 100%;
  height: 1px;
  max-width: 38rem;
  margin-bottom: -0.4rem;
}
@media screen and (max-width: 767px) {
  .p-culture__title-line {
    max-width: 100%;
  }
}

.p-culture__texts {
  color: #0B364A;
  font-weight: 600;
  line-height: 2.3;
  letter-spacing: 0.07em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 1280px) {
  .p-culture__texts {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-culture__texts {
    font-size: 1.3rem;
    letter-spacing: 0;
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .p-culture__texts {
    letter-spacing: 0.04em;
  }
}
.p-culture__texts p:not(:last-child) {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-culture__texts p:not(:last-child) {
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-culture__texts p:not(:last-child) {
    margin-bottom: 1.6rem;
  }
}

.p-culture__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 52.5%;
          flex: 0 1 52.5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 16px solid #0B364A;
}
@media screen and (max-width: 1280px) {
  .p-culture__img {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 49%;
            flex: 0 1 49%;
  }
}
@media screen and (max-width: 1023px) {
  .p-culture__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 30%;
            flex: 1 30%;
    border-width: 8px;
  }
}

.p-culture__bg-text {
  width: calc(100% - 40px);
  max-width: 180rem;
  display: block;
  margin: -11rem auto 0;
}
@media screen and (max-width: 1023px) {
  .p-culture__bg-text {
    margin-top: -8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-culture__bg-text {
    position: absolute;
    bottom: -4.4rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 95%;
    margin-top: 0;
    z-index: 1;
  }
}

/*------------------------------------------------------------------------------
  p-interview-slider
------------------------------------------------------------------------------*/
.p-interview-slider {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 11rem;
}
@media screen and (max-width: 1280px) {
  .p-interview-slider {
    padding-left: 8vw;
  }
}
@media screen and (max-width: 1023px) {
  .p-interview-slider {
    padding-left: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-slider {
    padding-left: 2rem;
  }
}
.p-interview-slider .c-title03__ja {
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-interview-slider .c-title03__ja {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
  }
}

.p-interview-slider__inner {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 9.6rem 0 0 6rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-interview-slider__inner {
    padding-left: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-slider__inner {
    padding: 6rem 0 0 2rem;
  }
}
.p-interview-slider__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 42rem;
  background-color: #EFF6F9;
  background: linear-gradient(92deg, rgba(0, 157, 225, 0.15) 0%, rgba(10, 54, 129, 0.15) 100%);
  z-index: -1;
}
@media screen and (max-width: 1023px) {
  .p-interview-slider__inner::before {
    height: 38rem;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-slider__inner::before {
    height: 48vw;
  }
}
@media screen and (max-width: 480px) {
  .p-interview-slider__inner::before {
    height: 84vw;
  }
}

.interview-swiper,
.interview-swiper--part-time {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
}
.interview-swiper .swiper-wrapper,
.interview-swiper--part-time .swiper-wrapper {
  margin: 5.6rem 0;
}
@media screen and (max-width: 767px) {
  .interview-swiper .swiper-wrapper,
  .interview-swiper--part-time .swiper-wrapper {
    margin: 3.2rem 0;
  }
}
.interview-swiper .swiper-button-prev,
.interview-swiper .swiper-button-next,
.interview-swiper--part-time .swiper-button-prev,
.interview-swiper--part-time .swiper-button-next {
  height: 44px;
  width: 44px;
  top: 47px;
}
@media screen and (max-width: 767px) {
  .interview-swiper .swiper-button-prev,
  .interview-swiper .swiper-button-next,
  .interview-swiper--part-time .swiper-button-prev,
  .interview-swiper--part-time .swiper-button-next {
    display: none;
  }
}
.interview-swiper .swiper-button-prev,
.interview-swiper--part-time .swiper-button-prev {
  left: auto;
  right: 120px;
}
@media screen and (max-width: 1023px) {
  .interview-swiper .swiper-button-prev,
  .interview-swiper--part-time .swiper-button-prev {
    right: 90px;
  }
}
.interview-swiper .swiper-button-next,
.interview-swiper--part-time .swiper-button-next {
  right: 50px;
}
@media screen and (max-width: 1023px) {
  .interview-swiper .swiper-button-next,
  .interview-swiper--part-time .swiper-button-next {
    right: 20px;
  }
}
.interview-swiper .swiper-button-prev::after,
.interview-swiper .swiper-button-next::after,
.interview-swiper--part-time .swiper-button-prev::after,
.interview-swiper--part-time .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  width: 44px;
  height: 44px;
}
.interview-swiper .swiper-button-prev::after,
.interview-swiper--part-time .swiper-button-prev::after {
  background-image: url(../img/slide-btnL.png);
}
.interview-swiper .swiper-button-next::after,
.interview-swiper--part-time .swiper-button-next::after {
  background-image: url(../img/slide-btnR.png);
}

@media screen and (max-width: 767px) {
  .p-interview-slider__btn {
    max-width: 19.2rem;
  }
}
.p-interview-slider__btn .c-btn__text {
  font-size: 1.8rem;
  font-style: normal;
  margin-top: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-interview-slider__btn .c-btn__text {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

/*------------------------------------------------------------------------------
  p-job
------------------------------------------------------------------------------*/
.p-job {
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-job {
    margin-bottom: 8rem;
  }
}
.p-job .p-interview-slider {
  padding-left: 0;
}
@media screen and (min-width: 1441px) {
  .p-job .p-interview-slider {
    padding-left: 11rem;
  }
}
.p-job .p-interview-slider__inner {
  max-width: calc(100% - (100% - 114rem) / 2);
  padding-left: 2rem;
  margin-left: auto;
}
@media screen and (min-width: 1441px) {
  .p-job .p-interview-slider__inner {
    max-width: 100%;
  }
}
.p-job .p-interview-slider__inner::before {
  content: none;
}

.p-job--part-time {
  background-color: #F0F5FB;
  padding: 13rem 0;
}
@media screen and (max-width: 767px) {
  .p-job--part-time {
    padding: 8rem 0;
  }
}

.p-job__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 6.4rem 0 -1.6rem;
}
@media screen and (max-width: 767px) {
  .p-job__list {
    display: block;
    margin: 4rem 0 -0.8rem;
  }
}

.p-job__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 45.455%;
          flex: 0 1 45.455%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid;
  padding-bottom: 2.2rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-job__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item:first-child {
    padding-bottom: 1.6rem;
    margin-bottom: 3.2rem;
  }
}

.p-job__item--red {
  border-color: #FE4A49;
}
.p-job__item--red .p-job__item-title {
  background: linear-gradient(93deg, #F95857 -11.21%, #F24443 101.85%);
}

.p-job__item--orange {
  border-color: #FF8600;
}
.p-job__item--orange .p-job__item-title {
  background: linear-gradient(93deg, #FF9E33 -11.21%, #F88504 101.85%);
}

.p-job__food {
  position: absolute;
  top: -16px;
  right: 53px;
  width: 152px;
}
@media screen and (max-width: 1023px) {
  .p-job__food {
    right: 10px;
    width: 100px;
  }
}

.p-job__mobile {
  position: absolute;
  top: -26px;
  right: 7px;
  width: 195px;
}
@media screen and (max-width: 1023px) {
  .p-job__mobile {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-job__mobile {
    top: -22px;
    width: 126px;
  }
}

.p-job__item-title {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.1em;
  padding: 1.2rem 6.4rem 1.2rem 4rem;
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, calc(100% - 22px) 100%, 0% 100%);
}
@media screen and (max-width: 1280px) {
  .p-job__item-title {
    font-size: 2rem;
    padding: 1rem 5rem 1rem 3rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-job__item-title {
    font-size: 1.8rem;
    padding: 1rem 4rem 1rem 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item-title {
    font-size: 1.55rem;
    padding: 0.8rem 3.2rem 0.8rem 1.6rem;
  }
}

.p-job__item-detail {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 2.2rem 0 4rem;
  margin-top: 3.8rem;
}
@media screen and (max-width: 1280px) {
  .p-job__item-detail {
    padding: 0 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item-detail {
    margin-top: 2.4rem;
  }
}
.p-job__item-detail li {
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  padding-left: 4rem;
}
@media screen and (max-width: 1280px) {
  .p-job__item-detail li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-job__item-detail li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-job__item-detail li {
    padding-left: 2.8rem;
  }
}
.p-job__item-detail li:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-job__item-detail li:not(:last-child) {
    margin-bottom: 0.8rem;
  }
}
.p-job__item-detail li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 27px;
  height: 22px;
}
@media screen and (max-width: 767px) {
  .p-job__item-detail li::before {
    top: 3px;
    width: 21px;
    height: 19px;
  }
}

.p-job__item-detail--red li::before {
  background-image: url(../img/check-red.png);
}

.p-job__item-detail--orange li::before {
  background-image: url(../img/check-orange.png);
}

/*------------------------------------------------------------------------------
  p-salary
------------------------------------------------------------------------------*/
.p-salary {
  margin-bottom: 13rem;
}
@media screen and (max-width: 767px) {
  .p-salary {
    margin-bottom: 8rem;
  }
  .p-salary .c-title02__en {
    font-size: 3.6rem;
  }
}

.p-salary__table {
  border: 1px solid #D2E1E8;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-salary__table {
    margin-top: 3.2rem;
  }
}

.p-salary__table-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-salary__table-row:not(:last-child) {
  border-bottom: 1px solid #D2E1E8;
}
.p-salary__table-row dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 29rem;
          flex: 0 1 29rem;
  color: #0B364A;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  background-color: #F0F5FB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.8rem 1.6rem 2.8rem 3.2rem;
}
@media screen and (max-width: 1023px) {
  .p-salary__table-row dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 19rem;
            flex: 0 1 19rem;
    font-size: 1.6rem;
    padding-left: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salary__table-row dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 9.8rem;
            flex: 0 1 9.8rem;
    font-size: 1.35rem;
    padding: 1.6rem 0.8rem 1.6rem 1rem;
  }
}
.p-salary__table-row dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 2.8rem 1.6rem 2.8rem 2.8rem;
}
@media screen and (max-width: 1023px) {
  .p-salary__table-row dd {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-salary__table-row dd {
    font-size: 1.3rem;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: 1.6rem 0.8rem 1.6rem 1.2rem;
  }
}

/*------------------------------------------------------------------------------
  p-faq
------------------------------------------------------------------------------*/
.p-faq__list {
  max-width: 100rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 26px 0px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  margin: 5.6rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-faq__list {
    margin: 4rem auto 0;
  }
}

.p-faq__item:not(:last-child) {
  margin-bottom: 1.5px;
}
@media screen and (max-width: 767px) {
  .p-faq__item:not(:last-child) {
    margin-bottom: 1px;
  }
}

.p-faq__question {
  color: #0B364A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F4F8FD;
  position: relative;
}
.p-faq__question::before, .p-faq__question::after {
  content: "";
  position: absolute;
  background-color: #0B364A;
  cursor: pointer;
}
.p-faq__question::before {
  top: 36px;
  right: 34px;
  width: 16px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .p-faq__question::before {
    top: 24px;
    width: 14px;
    right: 14px;
    height: 1px;
  }
}
.p-faq__question::after {
  top: 29px;
  right: 41px;
  height: 16px;
  width: 2px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
@media screen and (max-width: 767px) {
  .p-faq__question::after {
    top: 18px;
    right: 20.5px;
    height: 14px;
    width: 1px;
  }
}
.p-faq__question.open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-faq__q {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 90px;
          flex: 0 1 90px;
  background-color: #0B364A;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 52px;
            flex: 0 1 52px;
  }
}
.p-faq__q::before {
  content: "Q";
  position: absolute;
  top: 58%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  font-size: 3.8rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-faq__q::before {
    top: 56%;
    font-size: 2.7rem;
  }
}

.p-faq__question-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #0B364A;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 66px 20px 24px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1.3rem;
    line-height: 1.6;
    letter-spacing: 0.03em;
    padding: 14px 40px 14px 12px;
  }
}

.p-faq__answer-wrap {
  display: none;
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-faq__a {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 90px;
          flex: 0 1 90px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 62px;
            flex: 0 1 62px;
  }
}
.p-faq__a::before {
  content: "A";
  position: absolute;
  top: 58%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #0B364A;
  font-size: 3.8rem;
  font-weight: normal;
  font-style: italic;
  line-height: 1;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-faq__a::before {
    top: 56%;
    left: 44%;
    font-size: 3rem;
  }
}

.p-faq__answer-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 66px 20px 24px;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    line-height: 1.6;
    text-align: justify;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: 14px 16px 14px 2px;
  }
}

/*------------------------------------------------------------------------------
  p-contact
------------------------------------------------------------------------------*/
.p-contact {
  margin: 14rem 0 12rem;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin: 7rem 0;
  }
}

.p-contact__box {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ADD6E9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 94rem;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
  padding: 8.8rem 1.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact__box {
    padding: 5.6rem 1.6rem;
  }
}

.p-contact__title {
  text-align: center;
  margin-bottom: 5.6rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    margin-bottom: 3.2rem;
  }
}

.p-contact__title-ja {
  color: #0B364A;
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact__title-ja {
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
  }
}

.p-contact__title-en {
  color: #128AC1;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact__title-en {
    font-size: 1.4rem;
  }
}

.p-contact-form {
  max-width: 80rem;
  margin: 0 auto;
}

.p-contact-form__list {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__list {
    margin-bottom: 2.8rem;
  }
}

.p-contact-form__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item {
    display: block;
  }
}
.p-contact-form__item:not(:last-child) {
  margin-bottom: 3.2rem;
}

.p-contact-form__item-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 24.4rem;
          flex: 0 1 24.4rem;
  color: #0B364A;
  font-weight: 600;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 1.2rem;
  margin-top: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__item-title {
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }
}

.p-contact-form__required,
.p-contact-form__any {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  border-radius: 2px;
  padding: 0.36rem 1.2rem;
  margin-right: 1.2em;
}
@media screen and (max-width: 767px) {
  .p-contact-form__required,
  .p-contact-form__any {
    font-size: 1.1rem;
    padding: 0.25rem 0.8rem;
  }
}

.p-contact-form__required {
  background-color: #0B364A;
}

.p-contact-form__any {
  background-color: #999;
}

.p-contact-form__input-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
}
.p-contact-form__input-wrap input[type=text],
.p-contact-form__input-wrap input[type=email],
.p-contact-form__input-wrap input[type=tel],
.p-contact-form__input-wrap select,
.p-contact-form__input-wrap textarea {
  color: #333;
  font-size: 1.6rem !important;
  line-height: 1.5;
  letter-spacing: 0;
  width: 100%;
  padding: 9.5px 12px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
  background-color: #F3FAFD;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact-form__input-wrap input[type=text]::placeholder,
.p-contact-form__input-wrap input[type=email]::placeholder,
.p-contact-form__input-wrap input[type=tel]::placeholder,
.p-contact-form__input-wrap select::placeholder,
.p-contact-form__input-wrap textarea::placeholder {
  color: #888888;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap input[type=text]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=email]::-webkit-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-webkit-input-placeholder, .p-contact-form__input-wrap select::-webkit-input-placeholder, .p-contact-form__input-wrap textarea::-webkit-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::-moz-placeholder, .p-contact-form__input-wrap input[type=email]::-moz-placeholder, .p-contact-form__input-wrap input[type=tel]::-moz-placeholder, .p-contact-form__input-wrap select::-moz-placeholder, .p-contact-form__input-wrap textarea::-moz-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]:-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]:-ms-input-placeholder, .p-contact-form__input-wrap select:-ms-input-placeholder, .p-contact-form__input-wrap textarea:-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=email]::-ms-input-placeholder, .p-contact-form__input-wrap input[type=tel]::-ms-input-placeholder, .p-contact-form__input-wrap select::-ms-input-placeholder, .p-contact-form__input-wrap textarea::-ms-input-placeholder {
    font-size: 1.3rem;
  }
  .p-contact-form__input-wrap input[type=text]::placeholder,
  .p-contact-form__input-wrap input[type=email]::placeholder,
  .p-contact-form__input-wrap input[type=tel]::placeholder,
  .p-contact-form__input-wrap select::placeholder,
  .p-contact-form__input-wrap textarea::placeholder {
    font-size: 1.3rem;
  }
}
.p-contact-form__input-wrap textarea {
  resize: none;
  min-height: 22rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__input-wrap textarea {
    min-height: 17rem;
  }
}
.p-contact-form__input-wrap input[type=radio],
.p-contact-form__input-wrap input[type=checkbox] {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #B4BCC9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: -4.5px;
  background-color: transparent;
  -webkit-box-shadow: 0 0 0 -2px #fff;
          box-shadow: 0 0 0 -2px #fff;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  margin-right: 1rem;
}
.p-contact-form__input-wrap input[type=radio]:checked,
.p-contact-form__input-wrap input[type=checkbox]:checked {
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #0B364A;
          box-shadow: 0 0 0 1px #0B364A;
  background-color: #0B364A;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.p-contact-form__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap {
    display: block;
  }
}
.p-contact-form__radio-wrap label {
  color: #0B364A;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap label {
    display: block;
  }
  .p-contact-form__radio-wrap label:not(:last-child) {
    margin-top: 1.2rem;
  }
}
.p-contact-form__radio-wrap label:nth-child(n+3) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__radio-wrap label:nth-child(n+3) {
    margin-top: 1.2rem;
  }
}

.p-contact-form__agree-text {
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree-text {
    font-size: 1.35rem;
  }
}

.p-contact-form__agree {
  color: #0B364A;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__agree {
    font-size: 1.35rem;
    margin-bottom: 4rem;
  }
}
.p-contact-form__agree input {
  margin-right: 1.4rem;
}
.p-contact-form__agree a {
  text-decoration: underline;
}

.p-contact-form__btn {
  height: 6.4rem;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: block;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn {
    height: 5.8rem;
  }
}
.p-contact-form__btn input[type=submit] {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  width: 100%;
  height: 100%;
  max-width: 28rem;
  border-radius: 1px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #0B364A;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.14);
  display: block;
  margin: 0 auto;
}
.p-contact-form__btn input[type=submit]:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .p-contact-form__btn input[type=submit] {
    font-size: 1.6rem;
    max-width: 26rem;
  }
}

.p-contact-form .wpcf7-form-control.wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio {
    display: block;
  }
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  font-weight: bold;
  display: inline-block;
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item.first {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 35%;
          flex: 0 1 35%;
  max-width: 17rem;
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:nth-child(2) {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 64%;
          flex: 0 1 64%;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    display: block;
  }
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:not(:last-child) {
    margin-top: 1.2rem;
  }
}
.p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:nth-child(n+3) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form .wpcf7-form-control.wpcf7-radio .wpcf7-list-item:nth-child(n+3) {
    margin-top: 1.2rem;
  }
}
.p-contact-form .wpcf7-list-item {
  margin-left: 0;
}

/*------------------------------------------------------------------------------
  p-single
------------------------------------------------------------------------------*/
.p-single .c-inner {
  padding: 0 1.6rem;
}

.p-single__box {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #ADD6E9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 94rem;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(11, 54, 74, 0.08);
  padding: 7.8rem 1.6rem 5.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-single__box {
    padding: 4.8rem 1.6rem 3.2rem;
  }
}

.p-single__box-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.p-single__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #ADD6E9;
  padding-bottom: 2rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-single__head {
    padding-bottom: 1.6rem;
    margin-bottom: 2.4rem;
  }
}

.p-single__date {
  color: #555;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.07em;
  font-family: "Josefin Sans", sans-serif;
  display: inline-block;
  padding-top: 0.45rem;
  margin-right: 2.4rem;
}
@media screen and (max-width: 1023px) {
  .p-single__date {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__date {
    font-size: 1.5rem;
    padding-top: 0.4rem;
    margin-right: 1.6rem;
  }
}

.p-single__category {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: inline-block;
  border-radius: 24px;
  background-color: #0B364A;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.7rem 2rem;
}
@media screen and (max-width: 1023px) {
  .p-single__category {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__category {
    font-size: 1.1rem;
    padding: 0.5rem 1.6rem;
  }
}

.p-single__title {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 1.2rem;
}
@media screen and (max-width: 1023px) {
  .p-single__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__title {
    font-size: 1.9rem;
    line-height: 1.5;
    letter-spacing: 0.04em;
    margin-top: 0.8rem;
  }
}

.p-single__contents h2 {
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-single__contents h2 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__contents h2 {
    font-size: 1.6rem;
  }
}
.p-single__contents h3 {
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (max-width: 1023px) {
  .p-single__contents h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-single__contents h3 {
    font-size: 1.5rem;
  }
}
.p-single__contents p {
  font-weight: 500;
}
.p-single__contents h2,
.p-single__contents h3,
.p-single__contents h4,
.p-single__contents h5,
.p-single__contents a,
.p-single__contents p,
.p-single__contents .wp-block-table,
.p-single__contents .wp-block-image,
.p-single__contents .wp-block-media-text {
  margin: 2.4rem 0;
}
@media screen and (max-width: 767px) {
  .p-single__contents h2,
  .p-single__contents h3,
  .p-single__contents h4,
  .p-single__contents h5,
  .p-single__contents a,
  .p-single__contents p,
  .p-single__contents .wp-block-table,
  .p-single__contents .wp-block-image,
  .p-single__contents .wp-block-media-text {
    margin: 2rem 0;
  }
}
.p-single__contents a {
  color: #128AC1;
  text-decoration: underline;
}

.p-single__btn {
  width: 100%;
  max-width: 18.8rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-single__btn {
    max-width: 16.6rem;
    margin-top: 3.2rem;
  }
}
.p-single__btn .c-btn__text {
  font-size: 1.8rem;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-single__btn .c-btn__text {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------------------------------------
  p-sitemap
------------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
  .p-sitemap .c-inner {
    padding: 0 1.6rem;
  }
}

.p-sitemap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.636%;
}
@media screen and (max-width: 1023px) {
  .p-sitemap__list {
    gap: 3.5%;
  }
}
@media screen and (max-width: 767px) {
  .p-sitemap__list {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.p-sitemap__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 30.91%;
          flex: 0 1 30.91%;
  max-width: 34rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 48%;
            flex: 0 1 48%;
  }
  .p-sitemap__item:nth-child(n+3) {
    margin-top: 3.2rem;
  }
}
.p-sitemap__item:nth-child(n+4) {
  margin-top: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap__item:nth-child(n+4) {
    margin-top: 3.2rem;
  }
}

.p-sitemap__main-link {
  color: #0B364A;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block;
  position: relative;
  padding-left: 2.2rem;
  padding-bottom: 0.8rem;
}
@media screen and (max-width: 1023px) {
  .p-sitemap__main-link {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-sitemap__main-link {
    font-size: 1.5rem;
    padding-left: 1.6rem;
  }
}
@media screen and (max-width: 480px) {
  .p-sitemap__main-link {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.p-sitemap__main-link::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 1px;
  background-image: url(../img/triangle-grade.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 18px;
}
@media screen and (max-width: 1023px) {
  .p-sitemap__main-link::before {
    top: 7px;
  }
}
@media screen and (max-width: 767px) {
  .p-sitemap__main-link::before {
    width: 8px;
    height: 17px;
  }
}
.p-sitemap__main-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(274deg, #9CD9F6 -1.25%, #095E85 100%);
}

.p-sitemap__links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 2.2rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap__links {
    padding-left: 1.6rem;
    margin-top: 1rem;
  }
}
.p-sitemap__links a {
  color: #0B364A;
  line-height: 1.5;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .p-sitemap__links a {
    font-size: 1.2rem;
  }
}
.p-sitemap__links a:not(:last-child) {
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap__links a:not(:last-child) {
    margin-bottom: 1rem;
  }
}

/*------------------------------------------------------------------------------
  p-privacy-policy
------------------------------------------------------------------------------*/
.p-privacy-policy {
  margin: 12rem 0 8.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy {
    margin: 7rem 0 5rem;
  }
}

.p-privacy-policy__title {
  color: #0B364A;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.07em;
  padding-bottom: 1.6rem;
  margin-bottom: 2.4rem;
  position: relative;
}
@media screen and (max-width: 1023px) {
  .p-privacy-policy__title {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__title {
    font-size: 2rem;
    padding-bottom: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
.p-privacy-policy__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(274deg, #9CD9F6 -1.25%, #095E85 100%);
}

.p-privacy-policy__detail {
  margin: 4.8rem 0;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__detail {
    margin: 3.2rem 0;
  }
}
.p-privacy-policy__detail dt {
  color: #0B364A;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.07em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.2rem 1.6rem;
  border-left: 2px solid #0B364A;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1023px) {
  .p-privacy-policy__detail dt {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__detail dt {
    font-size: 1.6rem;
    padding: 0.1rem 0.8rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
  }
}
.p-privacy-policy__detail dd {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 1.6rem;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__detail dd {
    padding-left: 0.8rem;
    line-height: 1.6;
  }
}

.p-privacy-policy__detail-block:not(:last-child) {
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__detail-block:not(:last-child) {
    margin-bottom: 3.2rem;
  }
}

.p-privacy-policy__bottom {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 3.2rem 1.6rem;
  border-top: 1px solid #D2E1E8;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__bottom {
    padding: 2.4rem 0.8rem;
  }
}

.p-privacy-policy__bottom-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 0.8rem;
}
.p-privacy-policy__bottom-detail dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 6.8rem;
          flex: 0 0 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-privacy-policy__bottom-detail dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5.6rem;
            flex: 0 0 5.6rem;
  }
}
.p-privacy-policy__bottom-detail dd {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(100% - 5.6rem);
          flex: 0 1 calc(100% - 5.6rem);
}
.p-privacy-policy__bottom-detail a {
  color: #128AC1;
  font-weight: 500;
  text-decoration: underline;
}

/*------------------------------------------------------------------------------
  u-color
------------------------------------------------------------------------------*/
.u-primary-color {
  color: #0B364A;
}

.u-blue-color {
  color: #128AC1;
}

.u-light-blue-color {
  color: #6CD0FF;
}

.u-green-color {
  color: #0C7C59;
}

.u-red-color {
  color: #FE4A49;
}

.u-orange-color {
  color: #FF8600;
}

.u-white-color {
  color: #fff;
}

/*------------------------------------------------------------------------------
  u-bgc
------------------------------------------------------------------------------*/
.u-bgc-green {
  background-color: #0C7C59;
}

.u-bgc-white {
  background-color: #fff;
}

.u-bgc-red {
  background-color: #FE4A49;
}

/*------------------------------------------------------------------------------
  u-fz
------------------------------------------------------------------------------*/
.u-fz16 {
  font-size: 1.6rem;
}

.u-fz15 {
  font-size: 1.5rem;
}

.u-fz14 {
  font-size: 1.4rem;
}

.u-fz13 {
  font-size: 1.3rem;
}

.u-fz12 {
  font-size: 1.2rem;
}

/*------------------------------------------------------------------------------
  u-fw
------------------------------------------------------------------------------*/
.u-fw-bold {
  font-weight: bold;
}

.u-fw-medium {
  font-weight: 500;
}

.u-fw-normal {
  font-weight: 400;
}

/*------------------------------------------------------------------------------
  u-text-align
------------------------------------------------------------------------------*/
.u-text-align-left {
  text-align: left;
}

.u-text-align-center {
  text-align: center;
}

.u-text-align-right {
  text-align: right;
}

/*------------------------------------------------------------------------------
  margin
------------------------------------------------------------------------------*/
.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-space-2 {
  margin-top: 2px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-space-4 {
  margin-top: 4px !important;
}

.u-mt-space-3 {
  margin-top: 3px !important;
}

.u-mt-1 {
  margin-top: 8px !important;
}

.u-mt-2 {
  margin-top: 16px !important;
}

.u-mt-3 {
  margin-top: 24px !important;
}

.u-mt-4 {
  margin-top: 32px !important;
}

.u-mt-5 {
  margin-top: 40px !important;
}

.u-mt-6 {
  margin-top: 48px !important;
}

.u-mt-7 {
  margin-top: 56px !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mb-05 {
  margin-bottom: 4px !important;
}

.u-mb-1 {
  margin-bottom: 8px !important;
}

.u-mb-2 {
  margin-bottom: 16px !important;
}

.u-mb-3 {
  margin-bottom: 24px !important;
}

.u-mb-4 {
  margin-bottom: 32px !important;
}

.u-mb-5 {
  margin-bottom: 40px !important;
}

.u-mb-6 {
  margin-bottom: 48px !important;
}

.u-mb-7 {
  margin-bottom: 56px !important;
}

.u-my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.u-my-1 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.u-my-2 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}

.u-my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

.u-my-4 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}

.u-my-5 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.u-my-6 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}

.u-my-7 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}

.u-ml-1 {
  margin-left: 8px !important;
}

.u-ml-2 {
  margin-left: 16px !important;
}

.u-ml-05 {
  margin-left: 4px !important;
}

.u-mr-1 {
  margin-right: 8px !important;
}

.u-mr-2 {
  margin-right: 16px !important;
}

.u-mr-3 {
  margin-right: 24px !important;
}

.u-mr-4 {
  margin-right: 32px !important;
}

.u-mr-5 {
  margin-right: 40px !important;
}

.u-m-space-4 {
  margin: 4px !important;
}

.u-m-1 {
  margin: 8px !important;
}

.u-m-2 {
  margin: 16px !important;
}

.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

/*------------------------------------------------------------------------------
  padding
------------------------------------------------------------------------------*/
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pt-1 {
  padding-top: 8px !important;
}

.u-pt-2 {
  padding-top: 16px !important;
}

.u-pt-3 {
  padding-top: 24px !important;
}

.u-pt-4 {
  padding-top: 32px !important;
}

.u-pt-5 {
  padding-top: 40px !important;
}

.u-pt-6 {
  padding-top: 48px !important;
}

.u-pt-7 {
  padding-top: 56px !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-pb-1 {
  padding-bottom: 8px !important;
}

.u-pb-2 {
  padding-bottom: 16px !important;
}

.u-pb-3 {
  padding-bottom: 24px !important;
}

.u-pb-4 {
  padding-bottom: 32px !important;
}

.u-pb-5 {
  padding-bottom: 40px !important;
}

.u-pb-6 {
  padding-bottom: 48px !important;
}

.u-pb-7 {
  padding-bottom: 56px !important;
}

.u-py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.u-py-1 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.u-py-2 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}

.u-py-3 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.u-py-4 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}

.u-py-5 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.u-py-6 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

.u-py-7 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}

.u-pl-1 {
  padding-left: 8px !important;
}

.u-pl-2 {
  padding-left: 16px !important;
}

.u-pr-1 {
  padding-right: 8px !important;
}

.u-pr-2 {
  padding-right: 16px !important;
}

.u-p-1 {
  padding: 8px !important;
}

.u-p-2 {
  padding: 16px !important;
}

/*------------------------------------------------------------------------------
  u-flex
------------------------------------------------------------------------------*/
.u-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.u-justify-content-star {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: start !important;
}

.u-justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: end !important;
}

.u-justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.u-justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: start !important;
}

.u-align-items-flex-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.u-align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: end !important;
}

.u-align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.u-align-self-start {
  -ms-flex-item-align: start !important;
      -ms-grid-row-align: start !important;
      align-self: start !important;
}

.u-align-self-end {
  -ms-flex-item-align: end !important;
      -ms-grid-row-align: end !important;
      align-self: end !important;
}

.u-align-self-center {
  -ms-flex-item-align: center !important;
      -ms-grid-row-align: center !important;
      align-self: center !important;
}

.u-align-self-strech {
  -ms-flex-item-align: stretch !important;
      -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

.u-flex-grow-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.u-flex-shrink-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
/*# sourceMappingURL=style.css.map */