@charset "UTF-8";
/*
  Merged file: theme.css + sub.css
  Base: theme.css
  Merge strategy: append sub.css as override section so existing styles in sub.css keep winning
*/
/* 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-wrapper {
  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;
  scroll-behavior: smooth;
}

@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;
  background: #f9f9f9;
}

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: 5rem 0;
}

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

/* ================================
   アニメーション関係
================================ */

@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;
  }
}

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

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

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

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

.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;
}

@keyframes arrowBlink {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

/* ================================
   l-header
================================ */

.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%;
  width: 25%;
  background-color: #fff;
  flex: 0 0 auto;
}

@media screen and (max-width: 749px) {
  .l-header__logo {
    width: 45%;
    /* width: 100%; */
    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%;
  color: #fff;
  font-size: 110%;
}

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

.l-header__logo_link img {
  margin: 0 auto;
  width: 63.3653846154%;
  width: 12rem;
  height: auto;
}
@media screen and (max-width: 749px) {
  .l-header__logo_link img {
    width: 10rem;
  }
}
.l-header__nav {
  flex: 1 1 auto;
}

@media screen and (max-width: 749px) {
  body.admin-bar .l-header__nav {
    top: 46px;
  }
  .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: 8rem 5%;
    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: #67679d;
  display: block;
  text-transform: uppercase;
}

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

.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; */
	  font-size: 20px;
  }
}

.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: #67679d;
  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;
  left: 0;
  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;
}

@media screen and (max-width: 749px) {
  .l-header__close,
  .l-modal__close {
    width: 2.71875rem;
    height: 2.71875rem;
    top: 1rem;
    right: 1rem;
  }
}

.l-header__nav_link {
  padding-top: 0.7em;
}

.l-header__nav_link .l-header__nav_eng {
  font-weight: bold;
  line-height: 0;
}

.l-header__nav_link {
  position: relative;
  padding-top: 2em;
  padding-bottom: 0.8em;
  -webkit-transition: all 0s;
  transition: all 0s;
}
@media screen and (max-width: 749px) {
  .l-header__nav_link {
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
.l-header__nav_link::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #67679D;
  left: 0;
  bottom: 0px;
  position: absolute;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

@media screen and (max-width: 749px) {
  .l-header__nav_link::after {
    display: none;
  }
}

.l-header__nav_link:hover {
  opacity: 1;
}

.l-header__nav_link:hover::after {
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.l-header__logo_link {
  /* padding: 2rem 0; */
  padding: 0.9rem 0;
}

  /* .l-header__logo {
    width: 55%;
  } */

  .l-header__nav {
    background-color: #fffffff5;
  }

  /* .l-header__nav_jp {
    font-size: 1.7rem;
  } */

  /* .l-header__nav_item:not(:last-of-type) {
    margin-bottom: 1rem;
  } */

  /* .l-header__nav_link {
    padding-top: 1rem;
  } */

  .sec_contact__mail,
  .sec_contact__num {
    pointer-events: auto;
  }

  .c-modal__close_line,
  .l-header__close_line,
  .l-modal__close_line {
    height: 2px;
  }

  /* .sec_products__item,
  .sec_products__list::after,
  .sec_products__list::before {
    width: 48%;
  } */
/* } */

.l-header__logo {
  display: -ms-grid;
  display: grid;
}

.l-header__toggle {
  width: 5rem;
  height: 5.5rem;
  background-color: #9ED3F2;
  background: 0;
}

.l-header__toggle_inside::after {
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  bottom: -1em;
}

.l-header__toggle_line {
  background-color: #333;
}

.l-header__toggle_line:first-of-type {
  top: 10px;
}

.l-header__toggle_line:nth-of-type(2) {
  top: 18px;
}

.l-header__toggle_line:nth-of-type(3) {
  top: 24px;
  bottom: inherit;
}

/* ================================
   l-footer
================================ */

.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 {
  margin-bottom: 2rem;
}
.l-footer__logo img{
  width: 20rem;
  height: auto;
}
.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__logo img{
    max-width: 20rem;
    width: 80%;
  }
  .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;
} */

/* .ul.--kome li {
  position: relative;
  padding-left: 1.1em;
}

.ul.--kome li::before {
  position: absolute;
  content: "※";
  left: 0;
}

.ul.--decimal {
  position: relative;
}

.ul.--decimal > li {
  padding-left: 0.1em;
  margin-bottom: 0.5em;
  list-style: decimal;
}

.sec_contact__block:not(:last-of-type) {
  border-right: 0;
}

.c-modal__body.form .form__title {
  margin-bottom: 0.5em;
  font-size: 0.9em;
}

.c-modal__body.form .form__item {
  margin-bottom: 1.4em;
}

.c-modal__body.form .form__item + .form__item {
  padding-top: 1.4em;
  border-top: 1px solid #ddd;
}

.c-modal__body.form .form__item + .form__item.--last {
  border-top: 0;
}

.js-modal__submit {
  font-size: 1em;
}

.js-form-modal-close.submit.--back {
  font-size: 1em;
}

#form-conf .c-modal__content {
  padding-left: 6rem;
  padding-right: 6rem;
}

#form-conf .c-modal__head {
  margin-bottom: 3rem;
}

.js-form-modal.c-modal .c-modal__content {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

.js-form-modal.c-modal.is-modal-open .c-modal__content {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

#link_contact {
  padding-top: 6rem;
  margin-top: 0rem;
  padding-left: 6rem;
  padding-right: 3rem;
}

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

  .sec_contact__head .c-sec-ttl__sub {
    padding-left: 0.2em;
  }
}

.sec_contact__mail .sec_contact__mail-text {
  position: relative;
}

.sec_contact__mail .sec_contact__mail-text::after {
  content: "";
  display: block;
  left: auto;
  right: 0;
  bottom: 0;
  position: absolute;
  background-color: #fff;
  height: 3px;
  width: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sec_contact__mail:hover {
  opacity: 1;
}

.sec_contact__mail:hover .sec_contact__mail-text::after {
  left: 0;
  right: auto;
  width: 100%;
}

.sec_contact__mail-text {
  font-size: 2.2rem;
}

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

  .c-modal__head,
  .sec-greeting__info_ttl,
  .top-fv__info_ttl {
    font-size: 1.55rem;
  }

  .l-footer__nav_link,
  .l-modal__info_desc,
  .sec-greeting__info_desc,
  .sec_news__article_ttl,
  .table td,
  .table th,
  .top-fv__info_desc {
    font-size: 1.1rem;
  }

  .ul li {
    font-size: 1rem;
  }

  .top-fv.u-bg-cover {
    margin-bottom: 260px;
  }

  .top-fv__boxes {
    -webkit-box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.16);
    bottom: -300px;
  }

  /* .c-sec-ttl,
  .c-sec-ttl__main {
    font-size: 2rem;
  } */

  .table td {
    -webkit-border-before: 0;
    border-block-start: 0;
    padding: 1.25rem;
  }

  /* .l-footer__group {
    padding-left: 5vw;
    padding-right: 5vw;
  } */

  .c-modal__content {
    padding-left: 0;
    padding-right: 0;
  }

/* ================================
   l-から始まるCSS
================================ */

.l-page {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.l-list {
  padding-top: 30rem;
  padding-bottom: 5rem;
  position: relative;
}

.l-list__mv {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.l-list__mv .u-bg-cover {
  height: 30rem;
}
.l-list__head .c-sec-ttl {
  margin-top: 8rem;
}
.l-list__body {
  margin-top: 3rem;
}

.l-list__body-child {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 749px) {
  .l-list__body-child {
    flex-direction: column;
    gap: 3rem;
  }
}
.l-list__body-img {
  max-width: 33rem;
}
@media screen and (max-width: 749px) {
  .l-list__body-img {
    max-width: 100%;
  }
}
.l-list__body-img img{
  aspect-ratio:530 / 398 ;
}







.l-list__body-table {
  flex: 1;
  width: 100%;
}
.l-list__body-child .l-list__body-table th{
  min-width: 10rem;
}

.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;
  }
}
.l-page .form .form__title {
  color: #1c242a;
}

.l-modal__info_ttl {
  font-size: 1.6em;
}

.l-modal__info_desc {
  font-size: 0.9em;
}





.l-modal__content {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

.is-modal-open .l-modal__content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 200ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

.l-modal__info {
  text-align: center;
}

.l-inner.--profile {
  margin-bottom: 4rem;
}

.c-table-wrap {
  overflow-x: visible;
}

@media screen and (max-width: 749px) {
  .c-table-wrap {
    overflow-x: auto;
  }
}

.c-table-wrap table {
  min-width: 40rem;
  border-collapse: collapse;
  white-space: nowrap;
}

/* ================================
   c-から始まるCSS
================================ */

.c-sec-ttl {
  text-align: center;
  /* font-size: 3rem; */
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 700;
}

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

.c-sec-ttl__sub.--white {
  color: #FFF;
}

.c-sec-ttl__sub.--l_blue {
  color: #9ed3f2;
}
.c-sec-ttl__sub.--l_gray {
  color: #d6d6d6;
}

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

.c-sec-ttl__main.--mb2 {
  margin-bottom: 2rem;
}
.c-sec-ttl__main.--small {
  font-size: 2rem;
  margin-bottom: 3.75rem;
}
.c-sec-ttl__main.--white {
  color: #fff;
}

@media screen and (max-width: 749px) {
  .c-sec-ttl__main.--small {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

.c-card__item {
  width: 22.5rem;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  cursor: pointer;
  background: #fff;
  transition: linear 0.32s;
  overflow: hidden;
}

.c-card__item .c-card__item_img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  transition: linear 0.32s;
}
.c-card__item .c-card__item_img.--narrow {
  height: 11.25rem;
}

.c-card__item:hover::before {
  opacity: 1;
  visibility: visible;
}

.c-card__item:hover .c-card__item_img {
  transform: scale(1.05);
}
.c-card__item .c-card__item_number {
  color: #67679d;
  font-size: 1.125rem;
  font-weight: 900;
}
.c-card__item .c-card__item_body {
  position: relative;
  padding: 1.5625rem 1rem 1.875rem;
  width: 100%;
  z-index: 600;
}

.c-card__item .c-card__item_ttl {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0em;
}
.c-card__item .c-card__item_subtitle {
  font-size: 1.25rem;
  font-weight: 700;
}
.c-card__item .c-card__item_text {
  margin-top: 1rem;
  line-height: 2;
  font-weight: 500;
}

.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;
}

.c-list-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列 */
  gap: 1.25rem 1.875rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-list-nav li {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 1rem;
  position: relative;
}

.c-list-nav li a {
  display: block;
  padding-right: 3rem;
  text-decoration: none;
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  transition: opacity 0.3s;
}

/* 丸矢印 */
.c-list-nav li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/arrow-list.svg");
}

.c-list-nav li a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 749px) {
  .c-list-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-bread {
  margin-bottom: 1rem;
  padding: 1rem 0rem;
  color: #1c242a;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.c-bread span a {
  text-decoration: underline;
}
.c-bread span.current-item {
  text-decoration: none;
}
.c-bread > span {
  margin: 0 0.5rem;
}
.c-bread > span:first-child {
  margin: 0 0.5rem 0 0;
}

.c-modal__content {
  padding-left: 3rem;
  padding-right: 3rem;
}

.c-modal__bg {
  background-color: #ffffffc9;
}

  .c-sec-ttl.sec_recruit__head {
    margin-bottom: 1rem;
  }

  div.c-modal__close {
    top: 1rem;
    right: 2.2rem;
  }


  #form-conf .c-modal__content,
  .privacycontent {
    padding-left: 3em;
    padding-right: 3em;
  }

  .c-modal__content {
    width: 100%;
    height: 100vh;
  }

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

.c-sec-ttl.--policy,
.c-sec-ttl.--philosophy{
  margin-bottom: 1em;
}

/* ================================
   top-fvから始まるCSS
================================ */

.top-fv {
  height: 90vh;
}
@media screen and (max-width: 749px) {
  .top-fv {
    height: 40.625rem;
  }
}
.top-fv .top-fv__boxes {
  position: absolute;
  bottom: -8.5625rem;
  right: 0;
  width: 92.3076923077%;
  display: flex;
}
@media screen and (max-width: 749px) {
  .top-fv .top-fv__boxes {
    display: block;
    width: 90%;
    left: auto;
    left: 50%;
    transform: translate(-50%, 50px);
  }
  .top-fv .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: #67679d;
  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: #d6d6d6;
  letter-spacing: 0.04em;
}

.top-fv__head_ttl {
  font-size: 2.3rem;
  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: #fff;
  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;
  }
}

.top-fv__boxes.js-animation.is-active {
  -webkit-transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
}

/* ================================
   sec_manufacturingから始まるCSS
================================ */

.sec_manufacturing {
  margin: 20rem 0 5rem;
}

@media screen and (max-width: 749px) {
  .sec_manufacturing {
    margin: 10rem 0 0rem;
  }
}
.sec_manufacturing__head {
  margin-top: 3rem;
}

/* ================================
   sec_maintenance,sec_faqから始まるCSS
================================ */

.sec__faq-list{
  margin-top: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #D9D9D9;
}
.sec__faq-q,
.sec__faq-a{
  padding-block: 1rem;
  padding-left: 3rem;
  position: relative;
}
.sec__faq-q{
  font-size: 1.25rem;
  font-weight: bold;
}
.sec__faq-q::before,
.sec__faq-a::before{
  position: absolute;
  content:"";
  top:50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.125rem;
  height: 2.125rem;
}
.sec__faq-q::before{
  background-image: url("../img/icon-faq-Q.jpg");
  background-size: cover;
}
.sec__faq-a::before{
  background-image: url("../img/icon-faq-A.jpg");
  background-size: cover;
}

/* ================================
   sec_listから始まるCSS
================================ */

.sec_list__nav {
  margin-top: 3rem;
}

/* ================================
   sec-greetingから始まるCSS
================================ */

.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;
  height: auto;
}

.sec-greeting__thumbs_img {
  margin-top: 2rem;
  height: 28.4375rem;
}

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

/* 縦長画像が cover で切れるのを防ぎ、枠内にフィットさせて中央配置 */
.sec-greeting__thumbs_img .u-object-fit {
  object-fit: contain;
  object-position: center;
}

.sec-greeting__thumbs_cap {
  margin-top: 0.9375rem;
  min-height: 3rem;
  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;
}

.sec-greeting__thumbs.js-animation {
  -webkit-transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
  overflow: hidden;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

@media screen and (max-width: 749px) {
  .sec-greeting__thumbs.js-animation {
    -webkit-transition-delay: 0;
    transition-delay: 0;
  }
}

/* ================================
   sec_profileから始まるCSS
================================ */

/* .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_profile__movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  display: block;
  margin-bottom: 3rem;
} */

/* .sec_profile__movie iframe {
  height: 100%;
  width: 100%;
} */

/* .sec_profile {
  background-color: #F9F9F97A;
} */


/* ================================
   sec__policyから始まるCSS
================================ */
.sec__policy,
.sec__philosophy {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 4em;
  padding-bottom: 2em;
}
@media screen and (max-width: 749px) {
  .sec__policy,
  .sec__philosophy {
    padding: 2em;
    padding-bottom: 2em;

  }
}

.sec__policy p,
.sec__philosophy p {
  margin-bottom: 1em;
}

.sec__policy-ttl,
.sec__philosophy-ttl {
  margin-bottom: 0.3em;
  font-size: 1.2rem;
}




/* ================================
   sec_historyから始まるCSS
================================ */

.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_history__headImg.js-animation {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  overflow: hidden;
}

.sec_history__headImg.js-animation > img {
  -webkit-transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  opacity: 0;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.sec_history__headImg.js-animation.is-active > img {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

/* ================================
   sec_recruitから始まるCSS
================================ */

.sec_recruit__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_recruit.js-animation .l-inner {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.sec_recruit.js-animation.is-active .l-inner {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.sec_recruit.js-animation {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  overflow: hidden;
}

.sec_recruit.js-animation > img {
  -webkit-transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 500ms cubic-bezier(0, 0.635, 0.435, 0.965);
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
}

.sec_recruit.js-animation.is-active > img {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}


/* ================================
   sec_newsから始まるCSS
================================ */

.sec_news {
margin-top: 3.37rem;
}

.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 {
    padding: 0;
    display: block;
  }
}

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

.sec_news__article_date {
  color: #67679d;
  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: #67679d;
}

.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_news__article_content {
  margin-top: 0;
}

.sec_news__article_icon::after,
.sec_news__article_icon::before {
  -webkit-transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sec_news__article_top.is-accordion-open .sec_news__article_icon::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
}


  .sec_news__article_edit {
    padding-top: 1em;
  }

  .sec_news__article_content {
    margin-bottom: 1em;
  }

/* ================================
   sec_accessから始まるCSS
================================ */


.sec_access {
  background-color: transparent;
}

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

.sec_access__box {
  background: #fff;
  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;
  gap: 1rem;
}

.sec_access__info_label {
  flex: 0 0 auto;
}

.sec_access__map iframe {
  margin-bottom: -8px;
  width: 100%;
  height: 38.25rem;
}

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

/* ================================
   sec_contactから始まるCSS
================================ */

.sec_contact {
  background-color: #67679d;
  padding-top: 25.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 .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;
}

  .sec_contact__num_main {
    font-size: 2.5rem;
  }

  .sec_contact__mail-text {
    font-size: 2.2rem;
  }

.sec_contact__num {
  pointer-events: none;
}

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

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

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

.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;
}

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

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




table.tablepress{
  width: 100%;
}
table.tablepress tr th {
  padding: 1rem;
  text-align: center;
  background: #f6f6f6;
  border: 1px solid #d6d6d6;
}
table.tablepress tr td {
  padding: 1rem;
  border: 1px solid #d6d6d6;
  background: #fff;
}
table.tablepress tr td a {
  color: #67679d;
  text-decoration: underline;
}


.list-child-Swiper .swiper-button-next .swiper-navigation-icon,
.list-child-Swiper .swiper-button-prev .swiper-navigation-icon {
  display: none;
}
.list-child-Swiper .swiper-button-prev,
.list-child-Swiper .swiper-button-next{
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
.list-child-Swiper .swiper-button-next {
  right: 0rem;
  background-image: url("../img/arrow-swiper-next.svg");
}
.list-child-Swiper .swiper-button-prev {
  left: 0rem;
  background-image: url("../img/arrow-swiper-prev.svg");
}
.list-child-Swiper .swiper-button-prev:hover,
.list-child-Swiper .swiper-button-next:hover{
  opacity: 0.6;
}


.list-child-Swiper {
  position: relative;
  padding: 0 1.25rem;
  /* padding-bottom: 40px; */
}

.list-child-Swiper .swiper-pagination {
  position: static;
  margin-top: 1.25rem;
  text-align: center;
}

.list-child-Swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 8px !important;
  background: #fff;
  border: 2px solid #67679d;
  border-radius: 50%;
  opacity: 1;
  box-sizing: border-box;
}

.list-child-Swiper .swiper-pagination-bullet-active {
  background: #67679d;
}

.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;
} */

.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__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 {
  margin-inline: auto;
  width: 100%;
  max-width: 30rem;
  color: #fff;
  display: block;
  border: none;
  background-color: #ffc400;
  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:hover {
  opacity: 0.6;
}

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

.home .submit.--back {
  display: none;
}

.submit.--disable {
  background-color: #b3964e;
  color: #b3b3ce;
  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: 80%;
  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;
}




.privacy__item {
  margin-top: 1.6em;
}

.privacy__item + .privacy__item {
  border-top: 1px solid #ddd;
  padding-top: 1.6em;
}

.privacy__item .title {
  margin-bottom: 0.4em;
}

.privacy__item .body {
  font-size: 0.85em;
  line-height: 2;
}



/* ================================
   sec_thnaksから始まるCSS
================================ */


.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: #67679d;
  color: #fff;
  padding: 1.0625rem 0.625rem;
  text-align: center;
  font-weight: 600;
}






/* autofill reset */
/* Chrome / Edge / Safari: autofill の背景色を上書き */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
input:autofill,
textarea:autofill,
select:autofill {
  /* ここを「通常時の入力欄の背景色」に合わせる */
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;

  /* 文字色（通常時に合わせる） */
  -webkit-text-fill-color: #1c242a !important;
  caret-color: #1c242a !important;

  /* Chromeの塗り戻し対策 */
  transition: background-color 9999s ease-out 0s !important;

  /* 念のため */
  background-color: #fff !important;
  background-image: none !important;
}

/* ================================
   その他（元の内容を保持）
================================ */

.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-flex-slider {
  width: clamp(0%, calc(50% + 38.75rem), 95%);
  overflow: hidden;
  position: relative;
  left: clamp(5%, calc(50% - 38.75rem), 100%);
}
.u-flex-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(22.5rem, 80vw);
  overflow-x: auto;
  gap: 2.5rem;
  /* padding: 16px 8px; */

  scroll-snap-type: x mandatory;
  scroll-padding: 8px;

  -webkit-overflow-scrolling: touch;
  overflow-x: scroll; /* auto ではなく scroll にする */
  overflow-y: hidden;

  /* Firefox用 */
  scrollbar-width: auto;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}
.u-flex-slider__track .u-flex-slider__slide {
  scroll-snap-align: start;
}

/* WebKit(Chrome/Edge/Safari) */
.u-flex-slider__track::-webkit-scrollbar {
  height: 1rem;
}
.u-flex-slider__track::-webkit-scrollbar-track {
  background: transparent;
}
.u-flex-slider__track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
}
.u-flex-slider__track::-webkit-scrollbar {
  height: 1rem;
}
.u-flex-slider__track::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 999px;
}

.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;
  }
}



.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;
}




.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;
  background-color: #fff;
}

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

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





/* =======================================
   sub.css merged overrides
   ======================================= */



.agree .chkbox__label {
  cursor: pointer;
}


.js-animation {
  -webkit-transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
  transition: all 400ms cubic-bezier(0, 0.635, 0.435, 0.965);
}







.ul {
  font-weight: 400;
  margin-left: 1.4em;
}

.ul li {
  color: #5C6267;
  font-size: 1em;
}

.ul.--ten {
  position: relative;
  padding-left: 0;
}

.ul.--ten > li {
  padding-left: 0.8em;
}

.ul.--ten > li::before {
  content: "・";
  margin-right: 0.3em;
  position: absolute;
  left: 0;
}

  .table tr + tr th {
    border-top: 0;
  }

  .tabel_wrap__guide_box {
    width: 14rem;
  }



  #link_contact {
    /* padding-left: 0;
    padding-right: 0; */
  }

  #form-conf {
    width: 100%;
  }

  /* div.form__edit.--sp,
  hr#link_contact--sp {
    display: block;
  }

  div.form__edit.--pc,
  hr#link_contact.--pc {
    display: none;
  }

#link_contact--sp {
  opacity: 0;
  height: 0;
  width: 0;
  display: block;
}

#link_contact--sp,
.form__edit.--sp {
  display: none;
}

#link_contact.--pc,
.form__edit.--pc {
  display: block;
} */




