@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
/* ========================================
 *  Font Family
 * ======================================== */
/* ==============================
*   Color
*==============================*/
/* ==============================
*   Font Size
*==============================*/
/*==============================
//  Media Query
//==============================*/
body {
  min-width: 1200px;
}

@media screen and (max-width: 767px) {
  body {
    min-width: initial;
  }
}
/*==============================
//  Font Size Rem
//
//  【概要】        font-sizeの単位をremに変換する
//  【第一引数】    希望のfont-size（数字のみ）
//  【備考】        IE対応のためpxでも出力する
//==============================*/
/*==============================
//  Font Size Rem Line Height Half Leading
//
//  【概要】
//      ・font-sizeの単位をremに変換
//      ・行間のサイズをもとに自動でline-heightを指定
//      ・ハーフリーディングを自動調整
//  【第一引数】
//      ・希望のfont-size（数字のみ）
//  【第二引数】
//      ・希望の行間サイズ（数字のみ）
//==============================*/
/*==============================
//
//  【概要】
//      ・pxをvwに変換
//  【第一引数】
//      ・pxサイズ（数字のみ）
//  【第二引数】
//      ・デザイン幅（数字のみ）初期値はf-variableに記述
//==============================*/
/*==============================
//  px→vwの計算
//==============================*/
/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}
@media screen and (max-width: 767px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: normal;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  top: -0.5em;
}

sup {
  top: -0.5em;
}

/* Embedded content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */
select::-ms-expand {
  display: none;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable] {
  outline: none;
}

/* Table */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: normal;
}

/* Misc */
/* ============================================ */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #333333;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.6;
  position: relative;
  min-width: 1200px;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
    font-size: 0.8888888889rem;
    min-width: initial;
  }
}

a {
  text-decoration: underline;
  color: #D6000F;
  transition: 0.3s all;
}
a:hover {
  text-decoration: none;
}

button {
  outline: none;
}

td,
th {
  vertical-align: middle;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
}

input::placeholder,
textarea::placeholder {
  color: #bbb;
}

img {
  max-width: 100%;
  backface-visibility: hidden;
}

[v-cloak] {
  display: none !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

[v-cloak] {
  display: none;
}

main {
  position: relative;
}

main {
  padding: 0;
}

.l-section {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding: 130px 0;
}
@media screen and (max-width: 1350px) {
  .l-section {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 13.3333333333vw 0;
  }
}
.l-section.bg_color {
  background-color: #F9F8F8;
}

.l-inner {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 15px;
  }
}

.c-btn_wrap {
  width: 100%;
  text-align: center;
}
.c-btn_wrap.bottom {
  max-width: 330px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 10px 0 0;
  border-radius: 100px;
  background-color: #D6000F;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s all;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-btn_wrap.bottom {
    max-width: 100%;
    height: 16vw;
    line-height: 16vw;
    padding: 0 2.6666666667vw 0 0;
    font-size: 18px;
  }
}
.c-btn_wrap.bottom::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow.svg) no-repeat center center;
  background-size: cover;
}
.c-btn_wrap.bottom:hover {
  opacity: 0.8;
}

.c-nav_pc {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.c-nav_pc_menu li a {
  margin-right: 40px;
  position: relative;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}
.c-nav_pc_menu li a:hover {
  color: #ffffff;
}
.c-nav_pc_menu li a:hover::after {
  transform: scale(1, 1);
}
.c-nav_pc_menu li a::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.3s all;
}
.c-nav_pc_menu li.contact a {
  width: 220px;
  height: 50px;
  border-radius: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #D6000F;
  background-color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.05em;
  position: relative;
  padding: 0 0 0 30px;
}
.c-nav_pc_menu li.contact a:hover {
  opacity: 0.8;
}
.c-nav_pc_menu li.contact a:hover::after {
  transform: scale(0, 1);
}
.c-nav_pc_menu li.contact a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 48px;
  width: 22px;
  height: 18px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/icon_mail_s.svg) center center no-repeat;
  background-size: cover;
  transition: 0.3s all;
}
.c-nav_sp {
  /*.hamburger.-active .hamburger__text::before {
        content: '閉じる';
      }*/
  /* .hamburger__text::before {
          content: "メニュー";
          text-align: center;
          color: #172e59;
          font-size: 10px;
          font-weight: 900;
      }*/
}
.c-nav_sp a {
  text-decoration: none;
}
.c-nav_sp .hamburger {
  display: block;
  height: 60px;
  width: 60px;
  margin-left: auto;
  position: relative;
  z-index: 10;
  width: 60px;
  border: none;
  background-color: #D6000F;
}
.c-nav_sp .hamburger.-active .hamburger__line {
  background-color: transparent;
}
.c-nav_sp .hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.c-nav_sp .hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}
.c-nav_sp .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  background-color: #ffffff;
  transition: 0.4s;
}
.c-nav_sp .hamburger__line:before,
.c-nav_sp .hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  transition: inherit;
}
.c-nav_sp .hamburger__line:before {
  top: -6px;
}
.c-nav_sp .hamburger__line:after {
  top: 6px;
}
.c-nav_sp .hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.c-nav_sp .header {
  width: 100%;
}
.c-nav_sp .header__nav-area {
  position: fixed;
  top: 60px;
  left: -100%;
  z-index: 15;
  height: 100dvh;
  width: 100%;
  visibility: hidden;
  padding-top: 0;
  background-color: #D6000F;
  transition: 0.4s;
}
.c-nav_sp .header__nav-area.-active {
  left: 0;
  visibility: visible;
  height: 100vh;
  overflow: auto;
}
.c-nav_sp .global-navigation {
  padding-top: 40px;
  padding-right: 25px;
  padding-bottom: 180px;
  padding-left: 25px;
}
.c-nav_sp .global-navigation__list > li {
  padding-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #df9197;
}
.c-nav_sp .global-navigation__list > li + li {
  margin-top: 20px;
}
.c-nav_sp .global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: bold;
  transition: color 0.4s;
  font-size: 16px;
}
.c-nav_sp .global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
}
.c-nav_sp .global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 9px;
  width: 2px;
  background-color: #ffffff;
  transform: translateY(-50%);
  transition: transform 0.4s;
}
.c-nav_sp .global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  background-color: #ffffff;
  transform: translateY(-50%);
}
.c-nav_sp .global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}
.c-nav_sp .accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}
.c-nav_sp .accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}
.c-nav_sp .accordion__list li {
  font-size: 15px;
}
.c-nav_sp .accordion__list li + li {
  margin-top: 20px;
}
.c-nav_sp .accordion__list li + li.sub {
  padding-left: 30px;
}
.c-nav_sp .accordion__list li + li.sub a {
  position: relative;
}
.c-nav_sp .accordion__list li + li.sub a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  position: absolute;
  left: -15px;
  top: 50%;
  transition: 0.3s all;
  background-color: #888888;
  transform: none;
}
.c-nav_sp .accordion__link {
  color: #cccccc;
}

.c-title-toph2 {
  margin: 0 0 30px;
  font-size: 36px;
  font-weight: bold;
  line-height: 160%;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 {
    margin: 0 0 4vw;
    font-size: 30px;
    font-size: 1.6666666667rem;
    line-height: 130%;
  }
}
.c-title-toph2 .en {
  font-size: 16px;
  font-weight: bold;
  line-height: 100%;
  font-family: "Roboto", sans-serif;
  display: block;
  letter-spacing: 0;
  color: #D6000F;
}
@media screen and (max-width: 767px) {
  .c-title-toph2 .en {
    font-size: 16px;
    font-size: 0.8888888889rem;
    margin-bottom: 0;
  }
}

.p-header {
  width: 100%;
  position: relative;
}
.p-header::before {
  background-color: #D6000F;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 72%;
  z-index: -1;
  height: calc(100vh - 160px);
}
@media screen and (max-width: 1350px) {
  .p-header::before {
    height: 650px;
  }
}
@media screen and (max-width: 767px) {
  .p-header::before {
    display: none;
  }
}
.p-header .hBox {
  width: 100%;
  height: 100px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header .hBox {
    height: 60px;
  }
}
.p-header .hBox .logo {
  width: 278px;
  height: 60px;
  margin: 0 0 0 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 1350px) {
  .p-header .hBox .logo {
    width: 220px;
    height: 47px;
  }
}
@media screen and (max-width: 767px) {
  .p-header .hBox .logo {
    margin: 0 0 0 15px;
    width: 180px;
    height: 38px;
  }
}
.p-header .hBox .logo:hover {
  opacity: 0.8;
}
.p-header .hBox .logo img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  /*ハンバーガー*/
  #globalMenuSp {
    z-index: 2500;
    color: #ffffff;
    background: #D6000F;
    text-align: left;
    width: 100vw;
    transition: top 0.5s ease;
    position: absolute;
    top: 60px;
    right: 0;
    height: auto;
    display: none;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
    overflow-y: scroll;
  }
  #globalMenuSp.active {
    display: block;
    height: 100vh;
    overflow: auto;
  }
  #globalMenuSp .btn_wrap {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  #globalMenuSp .btn_wrap ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 50px;
  }
  #globalMenuSp .btn_wrap ul li {
    width: 50%;
  }
  #globalMenuSp .btn_wrap ul li a {
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    text-align: center;
  }
  .navToggle {
    display: block;
    position: fixed;
    z-index: 2501;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    text-align: center;
    background-color: #D6000F;
  }
  .navToggle span {
    display: block;
    position: absolute;
    width: 26px;
    height: 2px;
    right: 17px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
  }
  .navToggle span:nth-child(1) {
    top: 20px;
  }
  .navToggle span:nth-child(2) {
    top: 29px;
  }
  .navToggle span:nth-child(3) {
    top: 37px;
  }
  .navToggle.active {
    width: 60px;
    height: 60px;
    mix-blend-mode: inherit;
    transition: 0.3s ease-in-out;
  }
  .navToggle.active span:nth-child(1) {
    top: 25px;
    background: #ffffff;
    transform: rotate(-40deg);
  }
  .navToggle.active span:nth-child(2),
  .navToggle.active span:nth-child(3) {
    top: 25px;
    background: #ffffff;
    transform: rotate(40deg);
  }
}
.p-footer {
  width: 100%;
  position: relative;
  text-align: center;
}
.p-footer_top {
  width: 100%;
}
.p-footer_top .contact_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.p-footer_top .contact_list a {
  background-color: #D6000F;
  display: grid;
  height: 270px;
  place-content: center;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
}
@media screen and (max-width: 1350px) {
  .p-footer_top .contact_list a {
    height: 200px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer_top .contact_list a {
    height: 120px;
  }
}
.p-footer_top .contact_list a figure {
  display: grid;
  height: 66px;
  width: 66px;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .p-footer_top .contact_list a figure {
    height: 35px;
    width: 35px;
  }
}
.p-footer_top .contact_list a p {
  margin-top: 5px;
  text-align: center;
}
.p-footer_top .contact_list a p strong {
  font-family: "Roboto", sans-serif;
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 4.8px;
  margin: 8px 0 10px;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-footer_top .contact_list a p strong {
    font-size: 20px;
    margin: 5px 0;
  }
}
.p-footer_top .contact_list a p small {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2.8px;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-footer_top .contact_list a p small {
    font-size: 12px;
  }
}
.p-footer_top .contact_list a:hover {
  opacity: 0.8;
}
.p-footer_top .contact_list li:first-child {
  border-right: 2px solid #E96D75;
}
.p-footer_top_nav {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-footer_top_nav {
    display: none;
  }
}
.p-footer_top_nav .c-nav_footer {
  max-width: 1100px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.p-footer_top_nav .c-nav_footer li {
  width: 16.6666666667%;
  text-align: center;
  border-left: 1px solid #CCCCCC;
}
.p-footer_top_nav .c-nav_footer li a {
  width: 100%;
  font-size: 15px;
  color: #333333;
  text-decoration: none;
  font-weight: bold;
}
.p-footer_top_nav .c-nav_footer li a:hover {
  color: #D6000F;
}
.p-footer_top_nav .c-nav_footer li:last-child {
  border-right: 1px solid #CCCCCC;
}
.p-footer_bottom {
  width: 100%;
  background-color: #3C3C3C;
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom {
    padding: 30px 15px;
  }
}
.p-footer_bottom .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .inner {
    justify-content: center;
  }
}
.p-footer_bottom .inner .c-nav_footersub {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .inner .c-nav_footersub {
    justify-content: center;
  }
}
.p-footer_bottom .inner .c-nav_footersub li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .inner .c-nav_footersub li a {
    font-size: 12px;
    margin: 0 10px;
  }
}
.p-footer_bottom .inner .c-nav_footersub li a:hover {
  color: #D6000F;
}
.p-footer_bottom .inner .copy {
  font-size: 14px;
  text-align: right;
  font-family: "Roboto", sans-serif;
  color: #ffffff;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-footer_bottom .inner .copy {
    font-size: 12px;
    margin-top: 10px;
  }
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 60px;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transform: translateY(100px);
  z-index: 9;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .pagetop {
    right: 5.3333333333vw;
    padding-bottom: 2.6666666667vw;
  }
}
.pagetop.on {
  transform: translateY(0);
}
.pagetop a {
  display: inline-block;
  width: 46px;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .pagetop a {
    width: 40px;
    height: 40px;
  }
}
.pagetop a:hover {
  opacity: 0.8;
}

.p-top {
  position: relative;
}
.p-top::before {
  background: linear-gradient(to bottom, #ffffff, #F9F8F8);
  content: "";
  display: block;
  height: 800px;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .p-top::before {
    display: none;
  }
}
.p-top-news {
  background-color: #F9F8F8;
  text-align: center;
}
.p-top-news_wrap {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 60px 80px;
  border: 1px solid #f7e8e8;
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap {
    padding: 15px 20px 30px;
  }
}
.p-top-news_wrap ul {
  width: 100%;
  text-align: left;
}
.p-top-news_wrap ul li {
  font-size: 16px;
  font-weight: 500;
  padding: 25px 15px 25px 30px;
  color: #333333;
  line-height: 170%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  border-bottom: 1px solid #EFEBEB;
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap ul li {
    font-size: 15px;
    padding: 15px 0;
  }
}
.p-top-news_wrap ul li .date {
  width: 130px;
  font-size: 16px;
  font-weight: 400;
  color: #888888;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap ul li .date {
    font-size: 14px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap ul li .main {
    font-size: 15px;
    width: 100%;
  }
}
.p-top-news_wrap ul li .main.new {
  position: relative;
  text-indent: 55px;
}
.p-top-news_wrap ul li .main.new::before {
  display: block;
  content: "NEW";
  position: absolute;
  top: 2px;
  left: 0;
  width: 45px;
  height: 20px;
  color: #ffffff;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  background-color: #D6000F;
  border-radius: 4px;
  line-height: 20px;
  text-align: center;
  text-indent: 0;
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap ul li .main.new::before {
    width: 12vw;
    height: 5.3333333333vw;
    font-size: 3.2vw;
    line-height: 5.3333333333vw;
  }
}
.p-top-news_wrap .btn-more {
  max-width: 330px;
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 10px 0 0;
  border-radius: 100px;
  background-color: #D6000F;
  color: #ffffff;
  text-align: center;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s all;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .p-top-news_wrap .btn-more {
    max-width: 80%;
    height: 13.3333333333vw;
    line-height: 13.3333333333vw;
    padding: 0 2.6666666667vw 0 0;
    font-size: 16px;
    margin: 25px auto 0;
  }
}
.p-top-news_wrap .btn-more::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background: url(../../src/img/icon/arrow.svg) no-repeat center center;
  background-size: cover;
}
.p-top-news_wrap .btn-more:hover {
  opacity: 0.8;
}
.p-top-news_wrap .btn-more.close::after {
  transform: translateY(-50%) rotate(180deg);
}

.p-mv_top {
  position: relative;
  width: 100%;
  background: url(../../src/img/top/main_bg.png) no-repeat top left;
  background-size: 28% auto;
}
.p-mv_top .top_catch {
  position: absolute;
  bottom: 140px;
  left: 50px;
  text-align: left;
  z-index: 10;
}
@media screen and (max-width: 1350px) {
  .p-mv_top .top_catch {
    bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-mv_top .top_catch {
    width: 96%;
    bottom: 15%;
    left: 2%;
    text-align: center;
  }
}
.p-mv_top .top_catch .txt01 {
  margin-bottom: 26px;
}
@media screen and (max-width: 767px) {
  .p-mv_top .top_catch .txt01 {
    margin-bottom: 30px;
  }
}
.p-mv_top .top_catch .txt01 span {
  color: #ffffff;
  font-size: 45px;
  background-color: #D6000F;
  padding: 10px 50px;
  line-height: 150%;
  font-weight: bold;
  border-radius: 6px;
}
@media screen and (max-width: 1350px) {
  .p-mv_top .top_catch .txt01 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 1350px) {
  .p-mv_top .top_catch .txt01 span {
    font-size: 4.8vw;
    padding: 10px;
  }
}
.p-mv_top .top_catch .txt02 span {
  color: #ffffff;
  font-size: 45px;
  background-color: #D6000F;
  padding: 10px 50px;
  line-height: 150%;
  font-weight: bold;
  border-radius: 6px;
}
@media screen and (max-width: 1350px) {
  .p-mv_top .top_catch .txt02 span {
    font-size: 40px;
  }
}
@media screen and (max-width: 1350px) {
  .p-mv_top .top_catch .txt02 span {
    font-size: 5.3333333333vw;
    padding: 10px;
  }
}
.p-mv_top .fadein {
  opacity: 0;
  animation: SlideIn 1.6s ease forwards;
}
.p-mv_top .txt01 {
  animation-delay: 1s;
}
.p-mv_top .txt02 {
  animation-delay: 2s;
}

@keyframes SlideIn {
  0% {
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.main_imgBox {
  width: 78%;
  height: 80vh;
  margin-right: 50px;
  margin-left: calc(22% - 50px);
  border-radius: 30px;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 1350px) {
  .main_imgBox {
    height: 620px;
  }
}
@media screen and (max-width: 767px) {
  .main_imgBox {
    width: 100%;
    height: 60vh;
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  animation: anime 48s infinite;
  /* アニメーション全体を48秒に設定（8秒 × 6枚） */
}

.main_img:nth-child(1),
.main_img:nth-child(4) {
  background: url(../../src/img/top/main01_pc.jpg) no-repeat center center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(1),
  .main_img:nth-child(4) {
    background: url(../../src/img/top/main01_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.main_img:nth-child(2),
.main_img:nth-child(5) {
  background: url(../../src/img/top/main02_pc.jpg) no-repeat center center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(2),
  .main_img:nth-child(5) {
    background: url(../../src/img/top/main02_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

.main_img:nth-child(3),
.main_img:nth-child(6) {
  background: url(../../src/img/top/main03_pc.jpg) no-repeat center center;
  background-size: cover;
  animation-delay: 0s;
}
@media screen and (max-width: 767px) {
  .main_img:nth-child(3),
  .main_img:nth-child(6) {
    background: url(../../src/img/top/main03_sp.jpg) no-repeat top center;
    background-size: cover;
  }
}

/* 各画像のアニメーション遅延設定 */
.main_img:nth-of-type(2) {
  animation-delay: 8s;
}

.main_img:nth-of-type(3) {
  animation-delay: 16s;
}

.main_img:nth-of-type(4) {
  animation-delay: 24s;
}

.main_img:nth-of-type(5) {
  animation-delay: 32s;
}

.main_img:nth-of-type(6) {
  animation-delay: 40s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  17% {
    opacity: 1;
  }
  25% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
.p-bread {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-bread {
    display: none;
  }
}
.p-bread ul {
  display: flex;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-bread ul li {
  padding-right: 40px;
  position: relative;
}
.p-bread ul li span {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0px;
  color: #333333;
  font-weight: 400;
}
.p-bread ul li:last-of-type::after {
  display: none;
}
.p-bread ul li a {
  display: inline-block;
  font-size: 13px;
  line-height: 160%;
  padding: 15px 0;
  color: #D6000F;
  transition: 0.3s all;
  text-decoration: none;
  text-decoration: underline;
}
.p-bread ul li a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.p-bread ul li::after {
  display: block;
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

.u-mb--0 {
  margin-bottom: 0px !important;
}
.u-mb--xxs {
  margin-bottom: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xxs {
    margin-bottom: 1.3333333333vw !important;
  }
}
.u-mb--xs {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--xs {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--s {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--s {
    margin-bottom: 5.3333333333vw !important;
  }
}
.u-mb--m {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--m {
    margin-bottom: 6.6666666667vw !important;
  }
}
.u-mb--l {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--l {
    margin-bottom: 9.3333333333vw !important;
  }
}
.u-mb--15 {
  margin-bottom: 15px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--15 {
    margin-bottom: 2.6666666667vw !important;
  }
}
.u-mb--60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--60 {
    margin-bottom: 8vw !important;
  }
}
.u-mb--80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--80 {
    margin-bottom: 16vw !important;
  }
}
.u-mb--120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .u-mb--120 {
    margin-bottom: 16vw !important;
  }
}

.u-mt--0 {
  margin-top: 0px !important;
}
.u-mt--xxs {
  margin-top: 10px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xxs {
    margin-top: 1.3333333333vw !important;
  }
}
.u-mt--xs {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--xs {
    margin-top: 2.6666666667vw !important;
  }
}
.u-mt--s {
  margin-top: 30px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--s {
    margin-top: 4vw !important;
  }
}
.u-mt--m {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--m {
    margin-top: 5.3333333333vw !important;
  }
}
.u-mt--l {
  margin-top: 50px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--l {
    margin-top: 6.6666666667vw !important;
  }
}
.u-mt--60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--60 {
    margin-top: 8vw !important;
  }
}
.u-mt--25 {
  margin-top: 25px !important;
}
@media screen and (max-width: 767px) {
  .u-mt--25 {
    margin-top: 5.3333333333vw !important;
  }
}

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

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

.u-fontsize--l {
  font-size: 28px;
  font-size: 1.5555555556rem;
  line-height: 1.2857142857;
}
.u-fontsize--l::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
.u-fontsize--l::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.2857142857) * 0.5em);
  content: "";
}
@media screen and (max-width: 767px) {
  .u-fontsize--l {
    font-size: 20px;
    font-size: 1.1111111111rem;
    line-height: 1.4;
  }
  .u-fontsize--l::before {
    display: block;
    width: 0;
    height: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
    content: "";
  }
  .u-fontsize--l::after {
    display: block;
    width: 0;
    height: 0;
    margin-bottom: calc((1 - 1.4) * 0.5em);
    content: "";
  }
}
.u-fontsize--16 {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .u-fontsize--16 {
    font-size: 1.4rem;
  }
}

.u-fontcolor--red {
  color: #D6000F;
}

.u-lineheight--140 {
  line-height: 140% !important;
}

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