@charset "UTF-8";

/* REM PX変換 */
/* @function rem($px, $rem: $pc-rem) {
  @return calc($px / $rem) * 1rem;
} */
/* 

フォント読み込み

⚫︎使い方

@include font-face('Lora', 'fonts/Lora', 400, italic, ttf);
@include font-face('Samplinal', 'fonts/Samplinal', bold, normal, eot woff2 woff);
-----------------------------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
}

/* 

上向き(upward)、右向き(rightward)、下向き(downward)、左向き(leftward)、左上(upper-left)、右上(upper-right)、右下(lower-right)、左下(lower-left)の８方向から選択します


@include triangle(upward, 20px, 15px, #cd5c5c);

@include triangle(upper-left, 12px, 12px);
---*/
.l-wrapprer {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.l-inner {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

html {
  font-size: 16px;
}

@media screen and (min-width: 750px) and (max-width: 1200px) {
  html {
    font-size: 1.126622vw;
  }
}

@media (max-width: 749px) {
  html {
    font-size: 3.4334763948vw;
  }
}

body {
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.022em;
  color: #1C242A;
}

a {
  color: inherit;
  transition: linear 0.32s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

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

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 749px) {
  p {
    font-size: 1.1rem;
  }
}

.wrapprer {
  position: relative;
  width: 100%;
}

.container {
  max-width: 1700px;
  width: 88%;
  margin: 0 auto;
  position: relative;
}

@media screen and (max-width: 749px) {
  .container {
    width: 90%;
  }
}

.br-only-pc {
  display: none;
}

@media screen and (max-width: 1199px) {
  .br-only-pc {
    display: inline;
  }

  .br-only-pc::before {
    content: "\a";
    white-space: pre;
  }
}

.text-only-pc {
  display: none;
}

@media screen and (max-width: 749px) {
  .text-only-pc {
    display: inline;
  }
}

.br-only-sp {
  display: inline;
}

.br-only-sp::before {
  content: "\a";
  white-space: pre;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

p {
  color: #5C6267;
}

section {
  padding: 11.25rem 0;
}

@media screen and (max-width: 749px) {
  section {
    padding: 3.75rem 0;
  }
}

.l-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5500;
}

.l-header__inner {
  background-color: #fff;
  width: 89.358974359%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 749px) {
  .l-header__inner {
    width: 100%;
  }
}

.l-header__logo {
  width: 18.6513629842%;
  background-color: #20629B;
  flex: 0 0 auto;
}

@media screen and (max-width: 749px) {
  .l-header__logo {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.l-header__logo_link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.125rem 0;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .l-header__logo_link {
    padding: 0;
  }
}

.l-header__logo_link img {
  margin: 0 auto;
  width: 63.3653846154%;
}

.l-header__nav {
  flex: 1 1 auto;
}

@media screen and (max-width: 749px) {
  .l-header__nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.91);
    z-index: 9999;
    padding: 12vh 5% 7vh;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.388s;
  }
}

.l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 750px) {
  .l-header__nav_list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    padding-right: 3rem;
  }
}

@media screen and (min-width: 750px) {
  .l-header__nav_item:not(:last-of-type) {
    margin-right: 3rem;
  }
}

@media screen and (max-width: 749px) {
  .l-header__nav_item:not(:last-of-type) {
    margin-bottom: 1.875rem;
  }
}

.l-header__nav_link {
  display: block;
  text-align: center;
}

.l-header__nav_eng {
  font-family: "Poppins", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  line-height: 0.0909090909em;
  font-weight: 400;
  color: #20629B;
  display: block;
  text-transform: uppercase;
}

@media screen and (max-width: 749px) {
  .l-header__nav_eng {
    font-size: 0.9375rem;
  }
}

.l-header__nav_eng::first-letter {
  text-transform: uppercase;
}

.l-header__nav_jp {
  font-size: 1.0625rem;
  letter-spacing: 0em;
  line-height: 2.6470588235em;
  font-weight: 600;
}

@media screen and (max-width: 749px) {
  .l-header__nav_jp {
    font-size: 1.4375rem;
  }
}

.l-header__close {
  display: none;
  position: absolute;
  width: 3.40625rem;
  height: 3.40625rem;
  top: 2rem;
  right: 1.4375rem;
}

@media screen and (max-width: 749px) {
  .l-header__close {
    display: block;
  }
}

.l-header__close_line {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #707070;
}

.l-header__close_line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.l-header__close_line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header__toggle {
  display: none;
  width: 3.8125rem;
  height: 3.5625rem;
  background-color: #20629B;
  padding: 0.625rem 0.9375rem 1.9375rem;
}

@media screen and (max-width: 749px) {
  .l-header__toggle {
    display: block;
  }
}

.l-header__toggle_inside {
  display: block;
  height: 100%;
  position: relative;
}

.l-header__toggle_inside::after {
  content: "Menu";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 0.76rem;
  bottom: -1.5rem;
}

.l-header__toggle_line {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #fff;
}

.l-header__toggle_line:nth-of-type(1) {
  top: 0;
}

.l-header__toggle_line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.l-header__toggle_line:nth-of-type(3) {
  bottom: 0;
}

.l-footer {
  padding: 8.1875rem 0 2.5625rem;
}

@media screen and (max-width: 749px) {
  .l-footer {
    padding-top: 4.375rem;
  }
}

.l-footer__col {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5.625rem;
}

@media screen and (max-width: 749px) {
  .l-footer__col {
    display: block;
  }
}

.l-footer__info {
  width: 59.2741935484%;
}

@media screen and (max-width: 749px) {
  .l-footer__info {
    width: 100%;
    margin-bottom: 4.125rem;
  }
}

.l-footer__logo {
  width: 10.0625rem;
  margin-bottom: 1.375rem;
}

.l-footer__address {
  margin-bottom: 1.125rem;
}

.l-footer__nav {
  padding: 1.375rem 0;
  border-bottom: 1px solid #D6D6D6;
  display: flex;
}

@media screen and (max-width: 749px) {
  .l-footer__nav {
    display: block;
    padding: 1.375rem 0 0.625rem;
  }
}

.l-footer__nav:first-of-type {
  border-top: 1px solid #D6D6D6;
}

@media screen and (max-width: 749px) {
  .l-footer__nav_item {
    width: 100%;
    margin-bottom: 0.75rem;
    line-height: 1.34;
  }
}

.l-footer__nav_item:not(:last-of-type) {
  margin-right: 2.5rem;
}

@media screen and (max-width: 749px) {
  .l-footer__nav_item:not(:last-of-type) {
    margin-right: 0;
  }
}

.l-footer__nav_link {
  display: flex;
}

.l-footer__nav_link.--center {
  align-items: center;
}

@media screen and (max-width: 749px) {
  .l-footer__nav_link.--center {
    width: 100%;
  }
}

.l-footer__nav_icon {
  margin-left: 0.625rem;
  width: 0.72375rem;
}

.l-footer__nav_icon.--front {
  margin: 0;
  width: 1.625rem;
  margin-right: 0.625rem;
}

.l-footer__group {
  width: 20.625rem;
}

@media screen and (max-width: 749px) {
  .l-footer__group {
    width: 100%;
  }
}

.l-footer__group_item:not(:last-of-type) {
  margin-bottom: 1.5rem;
}

.l-footer__copy {
  font-size: 0.75rem;
  line-height: 1;
  color: rgba(92, 98, 103, 0.64);
  letter-spacing: 0;
}

.l-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1), 0.377s;
  z-index: 7000;
}

.l-modal.is-modal-open {
  opacity: 1;
  visibility: visible;
}

.l-modal__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.91);
  z-index: 8000;
}

.l-modal__close {
  position: absolute;
  width: 3.40625rem;
  height: 3.40625rem;
  top: 3.59375rem;
  right: 3.125rem;
  z-index: 9999;
  cursor: pointer;
}

@media screen and (max-width: 749px) {
  .l-modal__close {
    top: 1.875rem;
    right: 1.25rem;
  }
}

.l-modal__close_line {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #707070;
}

.l-modal__close_line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.l-modal__close_line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-modal__content {
  position: relative;
  z-index: 9000;
  width: 40.6451612903%;
}

@media screen and (max-width: 749px) {
  .l-modal__content {
    width: 90%;
  }
}

.l-modal__thumb {
  max-height: 626px;
  height: 63vh;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.16);
  margin-bottom: 1.875rem;
}

@media screen and (max-width: 749px) {
  .l-modal__thumb {
    height: 42vh;
  }
}

.l-modal__info_ttl {
  font-size: 1.875rem;
  letter-spacing: 0.07em;
  line-height: 1em;
  font-weight: 300;
  margin-bottom: 0.8125rem;
}

.l-modal__info_desc {
  font-size: 0.9375rem;
  letter-spacing: 0.022em;
  line-height: 1.8666666667em;
  font-weight: 300;
}

@media screen and (max-width: 749px) {
  .l-modal__info_desc {
    line-height: 1.55;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in.visible {
  animation-name: fade-in;
}

@keyframes slide-up {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.slide-up.visible {
  animation-name: slide-up;
}

@keyframes my-slide-up {
  from {
    transform: translateY(50px) translateX(-50%);
    opacity: 0;
  }

  to {
    transform: translateY(0px) translateX(-50%);
    opacity: 1;
  }
}

.my-slide-up.visible {
  animation-name: my-slide-up;
}

@keyframes slide-in {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in.visible {
  animation-name: slide-in;
}

@keyframes slide-in-right {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-right.visible {
  animation-name: slide-in-right;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left.visible {
  animation-name: slide-in-left;
}

.fade-in,
.slide-up,
.slide-in,
.my-slide-up,
.slide-in-right,
.slide-in-left {
  animation-fill-mode: forwards;
  /* Start the animation immediately */
  animation-duration: 1s;
  /* Animation duration */
  animation-timing-function: cubic-bezier(0.64, 0, 0.78, 0);
  /* Animation speed curve */
}

/* initially hidden until scrolled into view */
.fade-in,
.slide-up,
.slide-in,
.my-slide-up,
.slide-in-right,
.slide-in-left {
  opacity: 0;
}

.fade-in.visible,
.slide-up.visible,
.slide-in.visible,
.my-slide-up.visible,
.slide-in-right.visible,
.slide-in-left.visible {
  opacity: 1;
}

.ad-5s {
  animation-duration: 0.5s;
}

.ad-10s {
  animation-duration: 1s;
}

.ad-15s {
  animation-duration: 1.5s;
}

.ad-20s {
  animation-duration: 2s;
}

.ad-25s {
  animation-duration: 2.5s;
}

.ad-30s {
  animation-duration: 3s;
}

@keyframes arrowBlink {

  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.js-animation {
  opacity: 0;
  visibility: hidden;
  transition: 1.388s;
  transform: translateY(50px);
}

.js-animation.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.u-sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.u-object-fit {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-bg-cover {
  position: relative;
}

.u-bg-cover__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-text-eng {
  text-transform: uppercase;
}

.u-text-eng::first-letter {
  text-transform: uppercase;
}

.u-pc-hidden {
  display: none;
}

@media screen and (max-width: 749px) {
  .u-pc-hidden {
    display: block;
  }
}

@media screen and (max-width: 749px) {
  .u-sp-hidden {
    display: none;
  }
}

.u-bg-cover {
  position: relative;
}

.u-bg-cover__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
}

.u-flex-sb {
  display: flex;
  justify-content: space-between;
}

.u-flex-sb.--wrap {
  flex-wrap: wrap;
}

@media screen and (max-width: 749px) {
  .u-flex-sb.--spRow {
    display: block;
  }
}

.c-sec-ttl {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0em;
  line-height: 1.6666666667em;
  font-weight: 700;
  margin-bottom: 5.6875rem;
}

@media screen and (max-width: 749px) {
  .c-sec-ttl {
    font-size: 2.1875rem;
    margin-bottom: 2.5rem;
  }
}

.c-sec-ttl__sub {
  display: block;
  font-family: "Poppins", sans-serif;
  color: #20629B;
  font-size: 1.125rem;
  line-height: 1.12;
}

.c-sec-ttl__sub.--yellow {
  color: #EEE600;
}

.c-sec-ttl__sub.--l_blue {
  color: #9ED3F2;
}

.c-sec-ttl__main.--white {
  color: #fff;
}

.top-fv {
  height: 67.5rem;
}

@media screen and (max-width: 749px) {
  .top-fv {
    height: 40.625rem;
  }
}

.top-fv__boxes {
  position: absolute;
  bottom: -8.5625rem;
  right: 0;
  width: 92.3076923077%;
  display: flex;
}

@media screen and (max-width: 749px) {
  .top-fv__boxes {
    display: block;
    width: 90%;
    left: auto;
    left: 50%;
    transform: translate(-50%, 50px);
  }

  .top-fv__boxes.is-active {
    transform: translate(-50%, 0);
  }
}

.top-fv__head,
.top-fv__info {
  padding: 4.5625rem 5rem;
}

@media screen and (max-width: 749px) {

  .top-fv__head,
  .top-fv__info {
    padding: 1.875rem 1.6875rem;
  }
}

.top-fv__head {
  width: 42.5%;
  flex: 0 0 auto;
  background-color: #20629B;
  color: #fff;
}

@media screen and (max-width: 749px) {
  .top-fv__head {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
}

.top-fv__head_eng {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.1875rem;
  line-height: 1;
  color: #9ED3F2;
  letter-spacing: 0.04em;
}

.top-fv__head_ttl {
  font-size: 2.5rem;
  line-height: 1.98;
}

@media screen and (max-width: 749px) {
  .top-fv__head_ttl {
    font-size: 2.0625rem;
    line-height: 1;
    margin-top: 0.875rem;
  }
}

.top-fv__info {
  background-color: #F9F9F9;
  flex: 1 1 auto;
}

.top-fv__info_ttl {
  font-size: 1.6875rem;
  letter-spacing: 0em;
  line-height: 1.4814814815em;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media screen and (max-width: 749px) {
  .top-fv__info_ttl {
    font-size: 1.375rem;
  }
}

.top-fv__info_desc {
  font-size: 1rem;
  letter-spacing: 0.022em;
  line-height: 1.875em;
  font-weight: 400;
}

@media screen and (min-width: 750px) {
  .top-fv__info_desc {
    padding-right: 6.25rem;
  }
}

.sec-greeting {
  padding: 20rem 0 11.625rem;
}

@media screen and (max-width: 749px) {
  .sec-greeting {
    padding: 9.6875rem 0 6.25rem;
  }
}

.sec-greeting__head {
  margin-bottom: 5.375rem;
}

@media screen and (max-width: 749px) {
  .sec-greeting__head {
    margin-bottom: 2.5rem;
  }
}

@media screen and (min-width: 750px) {
  .sec-greeting__info {
    width: 56.935483871%;
    flex: 0 0 auto;
    padding-left: 1.75rem;
    padding-right: 5.375rem;
  }
}

@media screen and (max-width: 749px) {
  .sec-greeting__info {
    margin-bottom: 1.875rem;
  }
}

.sec-greeting__info_ttl {
  font-size: 2rem;
  letter-spacing: 0em;
  line-height: 1.5625em;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 749px) {
  .sec-greeting__info_ttl {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
}

.sec-greeting__info_desc {
  font-size: 1rem;
  letter-spacing: 0.022em;
  line-height: 1.875em;
  font-weight: 400;
}

.sec-greeting__info_desc:not(:last-of-type) {
  margin-bottom: 1.375rem;
}

.sec-greeting__thumbs {
  flex: 1 1 auto;
}

.sec-greeting__thumbs_img {
  height: 28.4375rem;
  margin-bottom: 0.9375rem;
}

@media screen and (max-width: 749px) {
  .sec-greeting__thumbs_img {
    height: 20.625rem;
  }
}

.sec-greeting__thumbs_cap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
}

.sec-greeting__thumbs_sub {
  font-size: 0.875rem;
  display: inline-block;
  margin-right: 1em;
}

.sec-greeting__thumbs_name {
  font-size: 1.0625rem;
  font-weight: 600;
}

.tabel_wrap {
  position: relative;
}

@media screen and (max-width: 749px) {
  .tabel_wrap {
    overflow-x: scroll;
  }
}

.tabel_wrap__guide {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
  animation: arrowBlink 2.4s infinite;
}

@media screen and (min-width: 750px) {
  .tabel_wrap__guide {
    display: none !important;
  }
}

.tabel_wrap__guide_box {
  width: 12.1875rem;
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.375rem;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.tabel_wrap__guide_text {
  color: inherit;
  line-height: 1.35;
}

.tabel_wrap__guide_arw {
  text-align: center;
  margin-left: 0.75rem;
}

.table {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .table {
    width: 100%;
    display: block;
  }
}

@media screen and (max-width: 749px) {

  .table tbody,
  .table tr {
    width: 100%;
    display: block;
  }
}

.table th,
.table td {
  padding: 1.375rem 2rem;
  vertical-align: middle;
  border-top: 1px solid #D6D6D6;
  border-bottom: 1px solid #D6D6D6;
}

@media screen and (max-width: 749px) {

  .table th,
  .table td {
    padding: 0.6875rem 1.25rem;
    display: block;
    width: 100%;
  }
}

.table th {
  text-align: center;
  background-color: #f6f6f6;
  font-weight: 600;
  width: 21.2903225806%;
  line-height: 1.875;
}

@media screen and (max-width: 749px) {
  .table th {
    width: 100%;
  }
}

.table td {
  background-color: #fff;
}

.table__num_list {
  margin-top: 0.625rem;
}

.table__num_list li {
  list-style-type: decimal;
  list-style-position: inside;
}

.table__num_list li:not(:last-of-type) {
  margin-bottom: 0.3125rem;
}

.sec_profile {
  background-color: #F9F9F9;
}

.sec_profile__head {
  margin-bottom: 5.6875rem;
}

@media screen and (max-width: 749px) {
  .sec_profile__head {
    margin-bottom: 2.8125rem;
  }
}

.sec_history__head {
  margin-bottom: 5.6875rem;
}

@media screen and (max-width: 749px) {
  .sec_history__head {
    margin-bottom: 2.8125rem;
  }
}

.sec_history__headImg {
  height: 32.5rem;
  margin-bottom: 3.75rem;
}

@media screen and (max-width: 749px) {
  .sec_history__headImg {
    height: 18rem;
    margin-bottom: 2.8125rem;
  }
}

.sec_products {
  background-color: #F9F9F9;
}

.sec_products__guide {
  text-align: center;
  margin-bottom: 2.4375rem;
}

@media screen and (min-width: 750px) {

  .sec_products__list::before,
  .sec_products__list::after {
    content: "";
    display: block;
    width: 17.5rem;
  }

  .sec_products__list::before {
    order: 1;
  }
}

.sec_products__item {
  width: 17.5rem;
  height: 14.375rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.16);
  margin-bottom: 3.75rem;
  transition: linear 0.32s;
  overflow: hidden;
}

.sec_products__item.is-item--01 {
  transition-delay: 0.2s;
}

.sec_products__item.is-item--02 {
  transition-delay: 0.4s;
}

.sec_products__item.is-item--03 {
  transition-delay: 0.6s;
}

.sec_products__item.is-item--04 {
  transition-delay: 0.8s;
}

.sec_products__item.is-item--05 {
  transition-delay: 0.1s;
}

@media screen and (max-width: 749px) {
  .sec_products__item {
    width: 48.5%;
    height: 10.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.sec_products__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.17);
  z-index: 550;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.17, 0.67, 0.71, 0.98);
}

.sec_products__item_bg {
  transition: linear 0.32s;
}

.sec_products__item:hover::before {
  opacity: 1;
  visibility: visible;
}

.sec_products__item:hover .sec_products__item_bg {
  transform: translate(-50%, -50%) scale(1.05);
}

.sec_products__item_texts {
  position: relative;
  padding: 1.5625rem 0 0.625rem;
  font-weight: 600;
  width: 100%;
  color: #fff;
  text-align: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5396533613) 100%);
  z-index: 600;
}

.sec_products__item_ttl {
  letter-spacing: 0.07em;
}

.table-equ {
  border-collapse: collapse;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .table-equ {
    width: 740px;
  }
}

.table-equ th,
.table-equ td {
  vertical-align: middle;
  line-height: 1.76;
  padding: 1.25rem 1.375rem;
  border: 1px solid #D6D6D6;
  color: #5C6267;
}

.table-equ th.num,
.table-equ td.num {
  width: 5.5rem;
  text-align: center;
}

.table-equ thead th {
  background-color: #f6f6f6;
  font-weight: 600;
  text-align: left;
}

.sec_reclute__head {
  margin-bottom: 3.8125rem;
}

.sec_reclute__btn {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #fff;
  width: 21.25rem;
  padding: 1.625rem 0;
  font-size: 1.25rem;
  margin: 0 auto;
  font-weight: 600;
}

.sec_reclute__btn_icon {
  width: 0.7275rem;
  margin-left: 0.59375rem;
}

.sec_news {
  background-color: #F9F9F9;
}

.sec_news__article {
  border-bottom: 1px solid rgba(60, 80, 95, 0.3);
}

@media screen and (max-width: 749px) {
  .sec_news__article {
    padding: 1.3125rem 0;
  }
}

.sec_news__article:first-child {
  border-top: 1px solid rgba(60, 80, 95, 0.3);
}

.sec_news__article_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 2.75rem 0;
  padding-right: 3.125rem;
}

@media screen and (max-width: 749px) {
  .sec_news__article_top {
    display: block;
  }
}

.sec_news__article_top.is-accordion-open .sec_news__article_icon::after {
  opacity: 0;
}

.sec_news__article_date {
  color: #20629B;
  font-weight: 600;
  margin-right: 1.375rem;
  flex: 0 0 auto;
  font-size: 1.125rem;
}

@media screen and (max-width: 749px) {
  .sec_news__article_date {
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
  }
}

.sec_news__article_ttl {
  flex: 1 1 auto;
  font-weight: 400;
  color: #141B27;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
}

.sec_news__article_new {
  font-weight: 600;
  font-size: 0.75rem;
  color: #E60111;
  display: inline-block;
  margin-right: 0.6875rem;
}

.sec_news__article_icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.1875rem;
  height: 1.1875rem;
  right: 2.0625rem;
}

@media screen and (max-width: 749px) {
  .sec_news__article_icon {
    right: 0.4375rem;
  }
}

.sec_news__article_icon::after,
.sec_news__article_icon::before {
  content: "";
  position: absolute;
  background-color: #20629B;
}

.sec_news__article_icon::before {
  left: 0;
  top: 50%;
  width: 100%;
  height: 0.125rem;
  transform: translateY(-50%);
}

.sec_news__article_icon::after {
  top: 0;
  left: 50%;
  height: 100%;
  width: 0.125rem;
  transform: translateX(-50%);
}

.sec_news__article_content {
  margin-top: 1.8125rem;
  margin-bottom: 2.75rem;
  display: none;
}

.sec_news__article_content.is-accordion-contents-open {
  display: block;
}

.sec_news__article_content p {
  color: #141B27;
}

.sec_access {
  background-color: transparent;
}

@media screen and (max-width: 749px) {
  .sec_access__head {
    margin-bottom: 2.5rem;
  }
}

.sec_access__box {
  background-color: #F9F9F9;
  position: relative;
  z-index: 600;
}

.sec_access__info {
  padding: 2rem 1.625rem 0;
  margin-bottom: 2.875rem;
}

.sec_access__info_ttl {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.375rem;
}

.sec_access__info_item {
  display: flex;
  font-size: 1.125rem;
  letter-spacing: 0.022em;
  line-height: 1.6666666667em;
  font-weight: 400;
}

.sec_access__info_label {
  flex: 0 0 auto;
}

.sec_access__map {
  height: 38.25rem;
}

@media screen and (max-width: 749px) {
  .sec_access__map {
    height: 25rem;
  }
}

.sec_contact {
  background-color: #20629B;
  padding-top: 23.75rem;
  margin-top: -28.125rem;
}

@media screen and (max-width: 749px) {
  .sec_contact {
    margin-top: -25.625rem;
  }
}

.sec_contact__block {
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .sec_contact__block {
    width: 50%;
  }

  .sec_contact__block:not(:last-of-type) {
    border-right: 1px solid #fff;
  }
}

@media screen and (max-width: 749px) {
  .sec_contact__block:not(:last-of-type) {
    margin-bottom: 3.77rem;
  }
}

.sec_contact__block_ttl {
  font-size: 1.25rem;
  letter-spacing: 0em;
  line-height: 1.55em;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0;
}

.sec_contact__num {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

.sec_contact__num:not(:last-child) {
  margin-bottom: 0.9375rem;
}

.sec_contact__num_label {
  line-height: 1;
  font-size: 1.3125rem;
  margin-right: 0.6875rem;
}

.sec_contact__num_main {
  line-height: 1;
  font-size: 2.9375rem;
}

.sec_contact__mail {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 2.3125rem;
}

@media screen and (max-width: 749px) {
  .sec_contact__mail {
    margin-top: 0;
  }
}

.sec_contact__mail-icon {
  width: 2.40125rem;
  margin-right: 0.9375rem;
  display: inline-block;
}

.sec_contact__mail-text {
  font-size: 2.9375rem;
  line-height: 1;
}

.sec_contact__guide {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 0.6875rem;
}

.form-layout {
  text-align: left;
  align-items: flex-start;
  border: none !important;
  color: #fff;
}

@media screen and (min-width: 750px) {
  .form-layout {
    padding-right: 7.5625rem;
  }
}

.form-layout .sec_contact__head {
  text-align: left;
  margin-bottom: 1.5625rem;
}

.form-layout .sec_contact__num,
.form-layout .sec_contact__mail {
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 1.6875rem;
  margin-top: 0;
  color: #fff;
}

.form-layout .sec_contact__num_label {
  margin-bottom: 0.6875rem;
}

.form-layout__catch {
  font-size: 1.3125rem;
  margin-bottom: 1.8125rem;
  color: #fff;
}

.form-layout__desc {
  line-height: 1.91;
  margin-bottom: 2.5rem;
  color: #fff;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  background-color: #fff;
  width: 100%;
  font-size: 1.125rem;
  padding: 1.125rem 1.25rem;
  border: none;
  color: #1C242A;
}

textarea {
  height: 12.8125rem;
  overflow-y: scroll;
}

input[type=checkbox] {
  opacity: 0;
  top: 0;
  left: 0;
  visibility: hidden;
  position: absolute;
}

.form__item:not(:last-of-type) {
  margin-bottom: 2.0625rem;
}

.form__title {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  color: #fff;
}

.form .hissu {
  display: inline-block;
  color: #fff;
  background-color: #E60111;
  width: 3rem;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 0.6875rem;
  line-height: 1;
  padding: 0.375rem 0;
  margin-left: 0.625rem;
}

.submit {
  color: #fff;
  display: block;
  background-color: #18D192;
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.23;
  padding: 1.3125rem 0.625rem;
  text-align: center;
  letter-spacing: 0;
  cursor: pointer;
}

.submit.--back {
  background-color: #fff;
  border: 1px solid #666;
  margin-top: 1.25rem;
  color: #666;
}

.submit.--disable {
  background-color: #507799;
  color: #709cc3;
  pointer-events: none;
}

.chkbox__chkbox:checked+.chkbox__label::after {
  opacity: 1;
}

.chkbox__label,
.chkbox__agree {
  padding-left: 2.375rem;
  text-align: left;
}

.chkbox__label {
  position: relative;
  padding-left: 2.375rem;
  font-size: 1.125rem;
  margin-bottom: 1.0625rem;
  display: block;
  color: #fff;
}

.chkbox__label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #fff;
  border: 1px solid #BFBFBF;
}

.chkbox__label::after {
  content: "";
  position: absolute;
  left: 0.3125rem;
  bottom: 0.5rem;
  width: 0.625rem;
  height: 1rem;
  border-right: 0.1875rem solid #E60111;
  border-bottom: 0.1875rem solid #E60111;
  transform: rotate(33deg);
  opacity: 0;
}

.chkbox__label .agree__link {
  text-decoration: underline;
}

.chkbox__agree {
  font-size: 0.9375rem;
  color: #fff;
}

.c-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1), 0.377s;
  z-index: 7000;
}

.c-modal.is-modal-open {
  opacity: 1;
  visibility: visible;
}

.c-modal__bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 8000;
}

.c-modal__content {
  position: relative;
  z-index: 9000;
  width: 42.5rem;
  max-width: 680px;
  background-color: #fff;
  margin: 0 auto;
  padding: 3.75rem 1.875rem;
  height: 80vh;
  overflow-y: scroll;
  color: #1C242A;
  text-align: left;
}

@media screen and (max-width: 749px) {
  .c-modal__content {
    width: 90%;
    height: 92vh;
  }
}

.c-modal__close {
  position: absolute;
  width: 2.71875rem;
  height: 2.71875rem;
  top: 1.84375rem;
  right: 1.75rem;
  z-index: 9999;
  cursor: pointer;
}

.c-modal__close_line {
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #707070;
}

.c-modal__close_line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.c-modal__close_line:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.c-modal__head {
  text-align: center;
  font-weight: 600;
  font-size: 1.6875rem;
  margin-bottom: 1.875rem;
}

.c-modal .form__title {
  color: #1C242A;
  font-weight: 600;
}

.errmsg_mail {
  text-align: left;
  font-size: 0.9em;
  display: block;
  margin-top: 0.5em;
  color: #ffe200;
  font-weight: bold;
}

.pp-box {
  line-height: 1.45;
}

.pp-box:not(:last-child) {
  margin-bottom: 1.875rem;
}

.pp-box__ttl {
  text-align: center;
  font-size: 1.33rem;
  margin-bottom: 1.2rem;
}

.pp-box__read {
  text-align: center;
}

.pp-box__subT {
  font-size: 1.1rem;
  margin-bottom: 0.58rem;
}

.sec_thnaks {
  padding: 15.625rem 0;
}

@media screen and (max-width: 749px) {
  .sec_thnaks {
    padding: 5rem 0 1.875rem;
  }
}

.sec_thnaks__head {
  margin-bottom: 2.8125rem;
}

.sec_thnaks__desc {
  text-align: center;
}

.sec_thnaks__desc:not(:last-of-type) {
  margin-bottom: 1.4375rem;
}

.sec_thnaks__back {
  display: block;
  width: 16.25rem;
  margin: 3.4375rem auto 0;
  background-color: #20629B;
  color: #fff;
  padding: 1.0625rem 0.625rem;
  text-align: center;
  font-weight: 600;
}