@charset "UTF-8";
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}
/* Anti FOUC */
.remodal, [data-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(255, 255, 255, 0.5);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}
/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #F5F5F5;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
/* Vertical align of the modal dialog */
.remodal, .remodal-wrapper:after {
  vertical-align: middle;
}
/* Close button */
.remodal-close {
  position: absolute;
  top: 32px;
  right: 32px;
  display: block;
  overflow: visible;
  width: 48px;
  height: 48px;
  margin: 0;
  padding: 0;
  background: #E7380D;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #fff;
  border: 0;
  outline: 0;
}
.remodal-close._blue {
  background: #012E49;
}
.remodal-close:hover, .remodal-close:focus {
  color: #2b2e38;
}
.remodal-close:before {
  position: absolute;
  top: 23px;
  left: 8px;
  width: 32px;
  content: "";
  text-align: center;
  display: inline-block;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.remodal-close:after {
  position: absolute;
  top: 23px;
  left: 8px;
  width: 32px;
  content: "";
  text-align: center;
  display: inline-block;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 768px) {
  .remodal {
    padding: 4.8rem 2.4rem;
  }
  .remodal-close {
    width: 2.4rem;
    height: 2.4rem;
    right: 1.8rem;
    top: 1.8rem;
  }
  .remodal-close:before {
    width: 1.4rem;
    top: 1.1rem;
    left: 0.5rem;
    border-bottom: 1px solid #fff;
  }
  .remodal-close:after {
    width: 1.4rem;
    top: 1.1rem;
    left: 0.5rem;
    border-bottom: 1px solid #fff;
  }
}
/* Dialog buttons */
.remodal-confirm, .remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
    will-change: filter;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    will-change: filter;
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
    will-change: filter;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
    will-change: filter;
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    will-change: filter;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
    will-change: filter;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    will-change: filter;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
    will-change: filter;
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1024px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .tab {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .tabupper {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .tabpc {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .tabsp {
    display: none !important;
  }
}
@media screen and (min-width: 770px) and (max-width: 1279px) {
  .header__dropdown-mail.sp, .header__dropdown-line.sp {
    display: block !important;
  }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
@media all and (min-width: 1280px) {
  body.admin-bar header {
    top: 32px !important;
  }
}
@media screen and (max-width: 1279px) {
  html[lang="ja"] {
    margin-top: 0 !important;
  }
  #wpadminbar {
    display: none !important;
  }
}
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: bottom;
  text-decoration: none;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
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;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", メイリオ, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0;
  background: #fff;
}
a {
  text-decoration: none;
  outline: none;
  transition: 0.2s ease-in-out;
}
/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  min-height: 100vh;
}
.wrapper > section:nth-child(even) {
  background: #fafafa;
}
.contents {
  padding-top: 6rem;
}
@media screen and (max-width: 1279px) {
  .contents {
    padding-top: 5.6rem;
  }
}
.scrollin {
  position: relative;
  top: 5rem;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.isAnimate {
  top: 0;
  opacity: 1;
}
/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul[role="list"], ol[role="list"] {
  list-style: none;
}
html {
  scroll-behavior: auto;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img, picture {
  max-width: 100%;
  vertical-align: middle;
}
input, button, textarea, select {
  font: inherit;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
.module-btn {
  border: 1px solid #E7380D;
  font-size: 1.5rem;
  border-radius: 4rem;
  text-align: center;
  background: #fff;
  color: #E7380D;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.module-btn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #E7380D;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.module-btn:hover {
  box-shadow: none;
}
.module-btn:hover a {
  color: #fff;
}
.module-btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.module-btn__link {
  position: relative;
  z-index: 3;
  color: #E7380D;
  display: block;
  padding: 0.8rem 0;
  font-weight: bold;
}
.module-btn__link:after {
  content: '';
  border-right: 2px solid #E7380D;
  border-bottom: 2px solid #E7380D;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  position: absolute;
  right: 1.6rem;
  top: calc(50% - 0.4rem);
  transition: 0.3s ease-in-out;
}
.module-btn__link:hover:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.module-btn__link[target="_blank"]::after {
  display: none;
}
.module-btn__link[target="_blank"]::before {
  content: '';
  width: 18px;
  height: 13px;
  background-image: url("../img/common/blank--on.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.3em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .4s;
}
.module-btn__link[target="_blank"]:hover::before {
  background-image: url("../img/common/blank02.svg");
}
.contents._top {
  padding-top: 10rem;
}
@media screen and (max-width: 768px) {
  .contents._top {
    padding-top: 0;
  }
}
/*
 * Module
 * -------------------------------------------------------------------
 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  z-index: 10000;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  transition: 0.5s ease-in-out;
}
.header.hide {
  top: -8rem;
}
.header._top {
  top: 0;
  background: #fff;
}
.header__container {
  display: flex;
  justify-content: space-between;
}
.header__logo {
  padding: 0 0 0 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.header__logo-txt {
  color: #012E49;
  letter-spacing: 0.05rem;
  display: block;
}
.header__logo a {
  transition: 0.2s ease-in-out;
}
.header__logo a:hover {
  opacity: 0.6;
}
.header__service-cont {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .header {
    display: flex;
    justify-content: right;
  }
  .header__container {
    width: 100%;
    justify-content: right;
  }
  .header__logo {
    margin-left: 0;
    margin-right: auto;
  }
  .header__logo {
    width: 12rem;
    padding: 0 0 0 1.2rem;
    position: relative;
    z-index: 90;
  }
  .header__logo-txt {
    font-size: 1rem;
    letter-spacing: -0.1rem;
  }
  .header__service-cont {
    display: none;
  }
}
/**/
.header__nav {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}
.header__nav-btn {
  position: relative;
}
.header__nav-btn:after {
  content: '';
  width: 0;
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #E7380D;
}
.header__nav-btn:hover:after {
  width: 100%;
}
.header__nav a {
  color: #261F09;
}
.header__nav-list {
  display: flex;
  gap: 2.5rem;
  margin-right: 3rem;
  min-height: 100%;
  align-items: center;
}
.header__nav-dropdown:after {
  content: '';
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 1.0rem;
  height: 1.0rem;
  transform: rotate(45deg);
  vertical-align: 0.5rem;
  margin-left: .7rem;
}
.header__nav-item {
  min-height: 100%;
  align-items: center;
  height: 6rem;
  display: flex;
}
.header__nav-item_imgari {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1.6rem 0;
}
.header__nav-item._dropdown__btn:hover .header__service-cont {
  display: block;
  opacity: 1;
  pointer-events: unset;
}
@media screen and (max-width: 1279px) {
  .header__nav {
    flex-direction: column;
    justify-content: flex-start;
    display: none;
    background: #fff;
    position: absolute;
    z-index: 10;
    top: 45px;
    left: 0;
    width: 100%;
    padding: 20px 5% 10%;
    height: calc(100vh - 45px);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .header__nav-btn {
    width: 100%;
    font-size: 1.4rem;
    padding: 2rem 0;
    display: block;
  }
  .header__nav-btn:after {
    content: '';
    background: url("../img/common/c-arrow-circle.svg") no-repeat;
    width: 1.6rem;
    height: 1.6rem;
    background-size: contain;
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 0.8rem);
    left: unset;
    border: none;
  }
  .header__nav-btn.accordionBtn::after {
    background: url("../img/common/accordion_off.svg") no-repeat;
    background-size: contain;
  }
  .accordion--open .header__nav-btn.accordionBtn::after {
    background: url("../img/common/accordion_on.svg") no-repeat;
    background-size: contain;
  }
  .header__nav-list {
    display: block;
    width: 100%;
    margin-bottom: 4rem;
    margin-right: 0;
    min-height: unset;
  }
  .header__nav-item {
    flex-direction: column;
    width: 100%;
    height: auto;
    position: relative;
    border-bottom: 0.1rem solid #C8C8C8;
  }
  .header__nav-list .dl_accordion {
    border-bottom: 0.1rem solid #C8C8C8;
  }
  .header__nav-list .dl_accordion .header__nav-item {
    border: none;
  }
  .header__nav-list .dl_accordion dd .header__nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 9px 1px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
.header__service-cont {
  width: 100%;
}
.header__service-lists {
  display: flex;
  max-width: 100%;
  width: 120rem;
  margin: 0 auto;
  background: #F0F0F0;
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
  padding: 3.2rem;
  gap: 0 0.4rem;
}
.header__service-list {
  display: block;
  position: relative;
  max-width: 376px;
}
.header__service-list_ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 1.5rem;
  padding: 0.8rem 0;
}
.header__service-list_ttl:after {
  content: '';
  display: inline-block;
  background: url("../img/common/c-arrow-circle.svg");
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 1.6rem;
  vertical-align: -0.3rem;
  background-size: contain;
}
.header__service-thumb {
  overflow: hidden;
}
.header__service-thumb img {
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.header__service-thumb:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 1279px) {
  .header__nav-btn:hover:after {
    width: 1.6rem;
  }
  .header__service-list_ttl {
    position: relative;
    left: unset;
    bottom: unset;
    text-align: left;
    padding: 0;
  }
  .header__service-list_ttl:after {
    position: absolute;
    right: 0;
    top: calc(50% - 0.8rem);
  }
  .header__service-thumb {
    width: 9rem;
    margin-right: 1rem;
  }
  .header__contact {
    width: 50%;
  }
}
.header__contact._dropdown__btn {
  position: relative;
}
@media screen and (min-width: 769px) {
  .header__contact._dropdown__btn:hover .header__contact-cont {
    opacity: 1;
    pointer-events: unset;
  }
}
.header__contact._dropdown__btn .header__contact-cont {
  position: absolute;
  top: 100%;
  right: 0;
  color: #fff;
  font-size: 1.5rem;
  line-height: calc(20/15);
  border-top: 1px solid #fff;
  opacity: 0;
  transition: 0.2s ease-in-out;
  pointer-events: none;
}
.header__contact._dropdown__btn .header__contact-cont a {
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  padding: 1.2rem 1.7rem;
  position: relative;
  z-index: 2;
}
.header__contact._dropdown__btn .header__contact-cont a:after {
  position: absolute;
  content: '';
  display: inline-block;
  background: url("../img/common/c-arrow-circle_wh.svg");
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  right: 1.4rem;
  top: calc(50% - 0.8rem);
}
.header__contact-list {
  position: relative;
  background: #E7380D;
  overflow: hidden;
}
.header__contact-list:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #012E49;
  /*背景色*/
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.header__contact-list:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.header__contact-cont {
  width: 202%;
  position: absolute;
  top: 100%;
}
.header__contact-btn {
  background: #E7380D;
  padding: 1.9rem 1.4rem;
  height: 6rem;
  display: block;
  color: #fff;
  position: relative;
}
.header__contact-btn img {
  display: inline-block;
  margin-right: 0.8rem;
}
.header__contact-btn._line {
  background: #02B902;
  color: #fff;
  transition: all .2s;
}
.header__contact-btn._line:hover {
  opacity: .6;
}
.header__contact-btn a {
  background: url("../img/ic_mail.svg") no-repeat 3.5rem;
  display: inline-block;
  width: 18rem;
  padding: 1.7rem 0 1.7rem 6rem;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 5rem;
  font-weight: bold;
  position: relative;
}
.header__contact-btn a:before {
  position: absolute;
  border-radius: 4rem;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: #FFB300;
  z-index: -1;
  transition: 0.15s ease-in-out;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
}
.header__contact-btn a:hover:before {
  background: #FF8800;
  transform: scale(1.1);
}
.header__contact-btn a:after {
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  right: 1.8rem;
  top: calc(50% - 0.3rem);
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
}
.header__other-link {
  display: none;
}
@media screen and (max-width: 1279px) {
  .header__contact._dropdown__btn .header__contact-cont {
    opacity: 1;
    pointer-events: unset;
    display: none;
    width: 223%;
    right: auto;
    left: -12%;
    font-size: 1.4rem;
  }
  .header__contact._dropdown__btn .header__contact-cont a {
    border: none;
    background-image: linear-gradient(to right, #fff 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    padding: 1.4rem 3.8rem 1.4rem 1.4rem;
  }
  .header__contact-lists {
    background: #E7380D;
  }
  .header__contact-list:first-child a {
    background: none !important;
  }
  .header__contact-btn {
    padding: 1.8rem 0 1.8rem 1rem;
    font-size: 1.4rem;
  }
  .header__contact-btn img {
    margin-right: 0.6rem;
    width: 1.5rem;
  }
  .header__contact-btn a {
    background: url("../img/ic_mail.svg") no-repeat calc(50% - 5rem);
    width: 100%;
    padding: 2.2rem 0 2.2rem 6rem;
    text-align: center;
    padding-left: 2rem;
  }
  .header__other-link {
    display: block;
    text-align: center;
    font-size: 1.4rem;
  }
  .header__other-link li {
    margin-bottom: 1rem;
  }
  .header__other-link .material-icons {
    font-size: 1.4rem;
    vertical-align: middle;
    margin-left: 0.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .header__dropdown-mail.tabsp {
    display: none !important;
  }
}
.header__dropdown-mail_btn {
  width: 5.8rem;
  border-left: 0.1rem solid #C8C8C8;
  margin-right: 0;
  margin-left: auto;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.2rem 0;
  line-height: 1.2;
  text-align: center;
}
.header__dropdown-mail_btn ._orange {
  font-size: 1.7rem;
  color: #E7380D;
  font-family: 'Roboto';
  display: block;
}
.header__dropdown-mail_cont {
  display: none;
  position: absolute;
  width: 80%;
  top: 100%;
  left: 15%;
  color: #fff;
  font-size: 1.5rem;
  line-height: calc(20/15);
  border-top: 1px solid #fff;
}
.header__dropdown-mail_cont a {
  background: #E7380D;
  border-bottom: 1px solid #fff;
  color: #fff;
  display: block;
  padding: 1.2rem 1.7rem;
  position: relative;
}
.header__dropdown-mail_cont a:hover {
  opacity: 0.6;
}
.header__dropdown-mail_cont a:after {
  position: absolute;
  content: '';
  display: inline-block;
  background: url("../img/common/c-arrow-circle_wh.svg");
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  right: 1.4rem;
  top: calc(50% - 0.8rem);
}
.header__dropdown-line_btn {
  display: block;
  width: 5.6rem;
  border-left: 0.1rem solid #C8C8C8;
  margin-right: 0;
  margin-left: auto;
  font-size: 1rem;
  font-weight: bold;
  padding: 1.2rem 0;
  line-height: 1.2;
  color: #000;
  text-align: center;
}
.header__dropdown-line_btn ._green {
  font-size: 1.7rem;
  color: #02B902;
  font-family: 'Roboto';
  display: block;
}
.header__dropdown-line_btn.btn--map span {
  color: #012E49;
}
.header__menu-cta {
  display: flex;
}
.menu-trigger {
  display: none;
}
@media screen and (max-width: 1279px) {
  .menu-trigger {
    border-left: 0.1rem solid #C8C8C8;
    display: block;
    position: relative;
    width: 7rem;
    cursor: pointer;
    z-index: 99999;
  }
  .header__menu-cta {
    width: 100%;
    flex-direction: row-reverse;
  }
}
.menu-trigger:after {
  content: 'MENU';
  color: #E7380D;
  position: absolute;
  top: 1.1rem;
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
  font-family: 'Roboto';
  font-weight: bold;
}
.menu-trigger._top span {
  background: #E7380D;
  display: block;
  height: 0.2em;
  width: 100%;
  left: 0%;
}
.menu-trigger span {
  background: #E7380D;
  display: block;
  height: 0.1rem;
  width: 70%;
  left: 15%;
}
.menu-trigger span:first-child {
  position: absolute;
  top: 3.5rem;
}
.menu-trigger span:last-child {
  position: absolute;
  top: 4rem;
}
.menu-trigger.active span:first-child {
  transform: rotate(10deg);
  top: 4rem;
}
.menu-trigger.active span:last-child {
  transform: rotate(-10deg);
  top: 4rem;
}
.under-anchor {
  height: 0;
  position: sticky;
  top: 10rem;
  left: 0;
  font-size: 1.3rem;
  font-weight: bold;
  z-index: 50;
  width: 12.7rem;
}
.under-anchor__list {
  margin-bottom: 2.5px;
}
@media screen and (max-width: 768px) {
  .under-anchor {
    position: inherit;
    top: unset;
    left: unset;
    background: #F5F5F5;
    border-radius: 0.5rem;
    margin: 0 2.4rem 4.8rem;
    height: auto;
    width: calc(100% - 4.8rem);
    padding: 2.2rem 1.3rem;
  }
  .under-anchor__list {
    width: calc(50% - 0.5rem);
  }
}
.under-anchor__list.current a {
  line-height: 1.8rem;
}
@media screen and (min-width: 769px) {
  .under-anchor__list.current a {
    background: #E7380D;
    color: #fff;
  }
}
.under-anchor__link {
  color: #B4B4B4;
  display: block;
  padding: 0.1rem 0 0 1rem;
  border-radius: 0 0.2rem 0.2rem 0;
}
.scroll-point {
  padding-top: 8rem;
  margin-top: -8rem;
}
.under-mv {
  position: relative;
  margin-bottom: 7.6rem;
}
.under-mv:before {
  content: '';
  width: 4rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  background: #E7380D;
}
.under-mv._normal-contact {
  margin-bottom: 8rem;
}
.under-mv._normal-contact:before {
  content: none;
}
.under-mv._contact {
  margin-bottom: 14.6rem;
}
.under-mv._contact:before {
  content: none;
}
.under-mv._mailmagazine {
  margin-bottom: 5rem;
}
.under-mv._mailmagazine:before {
  content: none;
}
.under-mv__bg {
  margin-left: 4rem;
  width: calc(100% - 4rem);
  pointer-events: none;
}
.under-mv__bg._contact {
  margin-left: 0;
  width: 100%;
}
.under-mv__bg img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .under-anchor__lists {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem 1rem;
  }
  .under-anchor__link {
    font-size: 1.4rem;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    border-bottom: 1px solid #C8C8C8;
    color: #000;
    padding: 0 2.4rem 0.5rem 0;
  }
  .under-anchor__link:before {
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-bottom: 1px solid #E7380D;
    transition: 0.3s ease-in-out;
  }
  .under-anchor__link:hover:before {
    width: 100%;
  }
  .under-anchor__link:after {
    content: '';
    width: 1.6rem;
    height: 1.6rem;
    background: url(../img/common/c-arrow-circle-down.svg) no-repeat;
    position: absolute;
    top: 0.4rem;
    right: 0;
  }
  .under-mv {
    margin-bottom: 3.7rem;
  }
  .under-mv:before {
    width: 1.2rem;
  }
  .under-mv__bg {
    margin-left: 1.2rem;
    width: calc(100% - 1.2rem);
  }
}
@media screen and (max-width: 400px) {
  .under-mv__bg {
    height: 78vh;
  }
  .under-mv__bg img {
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}
.under-mv__txt {
  position: absolute;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  padding: 2.5% 2% 2.5% 10%;
  width: 83%;
}
.under-mv__txt._contact {
  bottom: -12.4rem;
  min-width: unset;
}
.under-mv__txt._normal-contact {
  bottom: -6.4rem;
  min-width: unset;
}
.under-mv__txt-fukidashi {
  position: absolute;
  bottom: calc(100% - 4rem);
  background: #012E49;
  border-radius: 5px;
  padding: 1.2rem 10px;
  text-align: center;
  color: #FFFFFF;
  font-size: 1.934vw;
  font-weight: bold;
  margin-bottom: 2rem;
  width: 50%;
  line-height: calc(28/22);
}
.under-mv__txt-fukidashi:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 12px;
  border-bottom-width: 10px;
  border-left-width: 0px;
  border-right-width: 16px;
  margin-left: -10px;
  border-top-color: #012E49;
  top: 100%;
  left: 50%;
}
.under-mv__ttl {
  margin-bottom: 1rem;
}
.under-mv__ttl-en {
  font-size: 2vw;
  color: #E7380D;
  display: block;
  margin-bottom: 1.8rem;
}
.under-mv__ttl-jp {
  font-size: 3.8vw;
  display: block;
  position: relative;
  padding-top: 1.8rem;
  line-height: calc(40/32);
}
.under-mv__ttl-jp:before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: calc(4.2rem);
}
.under-mv__ttl-jp:after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: 0;
}
.under-mv__lead {
  font-size: 1.8334vw;
  font-weight: bold;
  color: #012E49;
}
@media screen and (max-width: 768px) {
  .under-mv__txt._contact {
    width: calc(100% - 3.5rem);
  }
  .under-mv__txt._normal-contact {
    width: calc(100% - 3.5rem);
  }
  .under-mv__txt {
    padding: 2.5% 6% 2.5%;
    width: 94%;
  }
  .under-mv__txt-fukidashi {
    font-size: 4.267vw;
    letter-spacing: 0;
    width: calc(100% - 4rem);
    left: 3.2rem;
    bottom: calc(100% - 2.3rem);
  }
  .under-mv__ttl-en {
    font-size: 4.267vw;
    margin-bottom: 3%;
  }
  .under-mv__ttl-jp {
    font-size: 6.6vw;
    padding-top: 3%;
  }
  .under-mv__ttl-jp:before {
    height: 0.2rem;
    width: 7vw;
    left: 7vw;
  }
  .under-mv__ttl-jp:after {
    height: 0.2rem;
    width: 7vw;
    left: 0;
  }
  .under-mv__lead {
    font-size: 4.2334vw;
  }
}
.under-intro {
  padding-left: 12.6rem;
  width: 80.6rem;
}
.under-intro__ttl {
  font-size: 2rem;
  color: #012E49;
  font-weight: bold;
  margin-bottom: 2rem;
}
.under-intro__txt {
  margin-bottom: 8.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .under-intro {
    padding-left: 10%;
    width: 92%;
    max-width: 94rem;
  }
}
@media screen and (max-width: 768px) {
  .under-intro {
    width: 100%;
    padding: 0 2rem;
  }
  .under-intro__ttl {
    font-size: 1.6rem;
  }
  .under-intro__txt {
    margin-bottom: 6rem;
  }
}
.under-intro._pt2 {
  max-width: 85.3rem;
  padding-left: 0;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1160px) {
  .under-intro._pt2 {
    width: calc(100% - 3rem);
    max-width: none;
    padding: 0 0 0 150px;
    margin: 0 3rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .under-intro._pt2 {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.under-intro._pt2 .under-intro__ttl {
  text-align: center;
}
.archive-mv {
  position: relative;
}
.archive-mv__bg {
  text-align: center;
  overflow: hidden;
  height: 24rem;
  position: relative;
}
.archive-mv__bg.icon_xpel::before {
  content: '';
  width: 134px;
  height: 0;
  padding: 134px 0 0;
  position: absolute;
  left: 20px;
  top: 20px;
  background: url(//protection-film.com/cwp/wp-content/themes/protection202412/assets/css/../img/top/icon_xpel.svg) no-repeat;
  background-size: contain;
  z-index: 5;
  pointer-events: none;
}
.archive-mv__bg._h348 {
  height: 34.8rem;
}
.archive-mv__bg img {
  max-width: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  height: 100%;
}
.archive-mv__txt {
  width: 94%;
  max-width: 102.8rem;
  margin: -6rem auto 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1;
  position: relative;
  padding: 4rem 0 0;
}
._basic-txt {
  font-size: 1.5rem;
  line-height: calc(28/15);
  text-align: justify;
}
._t-center {
  text-align: center;
}
._t-left {
  text-align: left !important;
}
.module-under__breadcrumb {
  font-size: 1.6rem;
  text-align: left;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .archive-mv__bg {
    height: auto;
  }
  .archive-mv__bg.icon_xpel::before {
    width: 25.6%;
    padding: 25.6% 0 0;
    left: auto;
    right: 3.4%;
    top: 5.4%;
  }
  .archive-mv__bg._h348 {
    height: auto;
  }
  .archive-mv__bg img {
    width: 100%;
  }
  .archive-mv__txt {
    width: 90%;
    margin-top: -7rem;
  }
  ._basic-txt {
    font-size: 1.4rem;
    line-height: calc(24/14);
  }
  .module-under__breadcrumb {
    margin-bottom: 3rem;
    font-size: 1.2rem;
  }
}
.module-under__breadcrumb li {
  display: inline;
  color: #261F09;
}
.module-under__breadcrumb li:after {
  display: inline-block;
  margin: 0 0.3rem;
  content: ">";
}
.module-under__breadcrumb li:last-child:after {
  content: none;
}
.module-under__breadcrumb a {
  display: inline-block;
  color: #261F09;
}
.module-under__ttl {
  text-align: center;
  background: url("../img/bg.webp") repeat;
  background-size: 160rem auto;
  padding: 1rem 3rem 3.8rem;
  font-size: 4rem;
  margin-bottom: 6rem;
}
.module-under__ttl-jp {
  font-weight: 700;
}
.module-under__ttl-jp:before {
  content: '';
  background: url("../img/ic_scissor.svg") no-repeat;
  background-size: contain;
  height: 4.7rem;
  width: 3rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 2rem;
}
.module-under__ttl-jp:after {
  content: '';
  background: url("../img/ic_comb.svg") no-repeat;
  background-size: contain;
  height: 5rem;
  width: 2.8rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 2rem;
}
.module-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3rem;
}
.module-title._left {
  text-align: left;
}
.module-title._left .module-title__jp:before {
  left: calc(4.2rem);
}
.module-title._left .module-title__jp:after {
  left: 0;
}
.module-title__en {
  font-size: 150%;
  color: #E7380D;
  display: block;
  margin-bottom: 1.7rem;
  letter-spacing: .05em;
  font-family: 'Roboto', sans-serif;
}
@media screen and (max-width: 768px) {
  .module-under__ttl {
    margin-bottom: 5rem;
    font-size: 2.4rem;
    padding: 1rem 2rem 3.8rem;
  }
  .module-under__ttl-jp:before {
    height: 3rem;
    width: 2rem;
    margin-right: 1rem;
  }
  .module-under__ttl-jp:after {
    height: 3.2rem;
    width: 1.8rem;
    margin-left: 1rem;
  }
  .module-title {
    margin-bottom: 2.3rem;
  }
  .module-title._left {
    text-align: center;
  }
  .module-title._left .module-title__jp:before {
    left: calc(50%);
  }
  .module-title._left .module-title__jp:after {
    left: calc(50% - 2.4rem);
  }
  .module-title__en {
    font-size: 1.4rem;
    margin-bottom: 1.3rem;
  }
}
.module-title__jp {
  font-size: 4rem;
  display: block;
  position: relative;
  padding-top: 2rem;
  line-height: calc(40/32);
  letter-spacing: .05em;
}
.module-title.has--fukidashi .module-title__jp {
  padding-top: 8rem;
}
.module-title__jp small {
  display: block;
  font-size: 60%;
}
.module-title__jp:before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: calc(50%);
}
.module-title__jp:after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: calc(50% - 4.2rem);
}
.module-title .fukidashi {
  position: absolute;
  left: 0;
  right: 0;
  top: 8rem;
  width: 8em;
  text-align: center;
  display: inline-block;
  margin: auto;
  background: #012E49;
  color: #fff;
  padding: .3em 0 .3em 1em;
  border-radius: 5px;
  font-size: 125%;
  letter-spacing: .15em;
}
.module-title .fukidashi::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  border: 5px solid #012E49;
  border-right-color: transparent;
  border-bottom-color: transparent;
  height: 0;
  width: 0;
}
@media screen and (max-width: 1024px) {
  .module-title__jp {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  .module-title__jp {
    font-size: 2.2rem;
    padding-top: 1.3rem;
  }
  .module-title.has--fukidashi .module-title__jp {
    padding-top: 7rem;
  }
  .module-title__jp small {
    font-size: 47%;
    margin: 0 0 2%;
  }
  .module-title__jp:before {
    height: 0.2rem;
    width: 2.4rem;
  }
  .module-title__jp:after {
    height: 0.2rem;
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
  .module-title .fukidashi {
    top: 5.4rem;
    width: 9.4em;
    padding: .4em 0 .4em 1em;
  }
}
.page-heading-sub__content {
  margin: 0;
  padding: 0;
}
.page-heading-sub__content--left {
  text-align: left;
}
.page-heading-sub__content--center {
  text-align: center;
}
.page-heading-sub__content--right {
  text-align: right;
}
.page-heading-sub__text {
  position: relative;
  font-size: 2.4rem;
}
.page-heading-sub__text:before {
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 1.6em;
  margin-right: .8rem;
  border-radius: 3px;
  background: #08aeb0;
  content: "";
}
.page-heading-sub__message {
  margin: 0 auto;
  padding-top: 1.6rem;
  color: #aaaaaa;
  font-weight: 400;
  font-size: 1.6rem;
}
/**/
.fixed-cta {
  position: fixed;
  bottom: 3rem;
  left: calc(100% - 4.3rem);
  width: 23rem;
  transition: 0.5s ease-in-out;
  z-index: 10;
}
body.home .fixed-cta {
  transform: translateX(4.4rem);
}
body.home .fixed-cta.fadeinAnim {
  transform: translateX(0);
}
.fixed-cta:hover {
  left: calc(100% - 23rem) !important;
}
.fixed-cta__link {
  border-radius: 0.5rem 0 0 0.5rem;
  background: #E7380D;
  margin-bottom: 0.8rem;
  min-height: 4.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  box-sizing: border-box;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-weight: bold;
  position: relative;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.fixed-cta__link._blue {
  background: #012E49;
}
.fixed-cta__link._green {
  background: #02B902;
}
.fixed-cta__link._mizu {
  background: #253C7C;
}
.fixed-cta__link img {
  transition: 0.2s ease-in-out;
  max-width: 45px;
  padding: 1.3rem .3rem 1.2rem 1.2rem;
}
.fixed-cta__link._blue img {
  max-width: 40px;
}
.fixed-cta__link img.mail {
  width: 44px;
  height: 44px;
  padding-left: .5rem;
}
.fixed-cta__link:hover {
  color: rgba(255, 255, 255, 0.6);
}
.fixed-cta__link:hover img {
  opacity: 0.6;
}
.fixed-cta__link:hover.js-fixed-contacts {
  color: #fff;
}
.fixed-cta__link:hover.js-fixed-contacts img {
  opacity: 1;
}
.fixed-cta__txt {
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fixed-cta {
    background: #fff;
    bottom: 0;
    top: unset;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .fixed-cta:hover {
    left: 0 !important;
  }
  body.home .fixed-cta {
    transform: translateY(0);
  }
  .fixed-cta.mini .fixed-cta__txt {
    padding-left: 0rem;
    text-align: center;
  }
  .fixed-cta__link {
    margin-bottom: 0;
    border-radius: 0;
    justify-content: center;
    position: unset;
    width: 5rem;
  }
  .fixed-cta__link:nth-child(1), .fixed-cta__link:nth-child(2) {
    width: calc(50% - 2.75rem);
  }
  .fixed-cta__link:nth-child(2) {
    margin: 0 .25rem;
  }
  .fixed-cta__link a {
    color: #fff;
    font-size: 1.5rem;
    width: 100%;
    display: block;
    text-align: center;
    line-height: 4.8rem;
  }
  .fixed-cta__link a.sp_line span {
    display: inline-block;
    padding: 0 0 0 2.8rem;
    background: url(../img/common/ic_line.svg) no-repeat left center;
    background-size: 2.1rem;
  }
  .fixed-cta__link a.sp_tel span {
    display: inline-block;
    padding: 0 0 0 2.8rem;
    background: url(../img/common/ic_tel.svg) no-repeat left center;
    background-size: 2.2rem;
  }
  .fixed-cta__link.js-fixed-contacts {
    z-index: 10;
  }
  .fixed-cta__link.js-fixed-contacts span {
    overflow: hidden;
    display: block;
    white-space: nowrap;
    text-indent: 150%;
    margin: 0;
    background: url(../img/common/ic_mail.svg) no-repeat center;
    background-size: 1.8rem auto;
  }
}
/**/
.footer {
  background: #F5F5F5;
  padding: 6.4rem 3rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 2.5rem;
  }
}
.footer__cont {
  max-width: 103rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.2fr 1.8fr;
  grid-template-rows: auto auto 1fr;
  gap: 0rem 5rem;
  grid-template-areas: "footer__left footer__links""footer__left footer__group""footer__left footer__copyright";
}
@media screen and (max-width: 1024px) {
  .footer__cont {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "footer__links""footer__left""footer__group""footer__copyright";
  }
}
.footer__left {
  grid-area: footer__left;
}
.footer__links {
  grid-area: footer__links;
}
.footer__group {
  grid-area: footer__group;
}
.footer__copyright {
  grid-area: footer__copyright;
}
.footer__left {
  width: 24.5rem;
}
.footer__logo {
  margin-bottom: 1rem;
  display: block;
  transition: 0.2s ease-in-out;
}
.footer__logo:hover {
  opacity: 0.6;
}
.footer__logo img {
  width: 100%;
}
.footer__logo-txt {
  font-size: 1.5rem;
  display: block;
  color: #000;
  font-weight: bold;
  margin-top: 1rem;
  letter-spacing: 0.1rem;
}
.footer__address {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.footer__map {
  margin-bottom: 1.6rem;
}
.footer__map iframe {
  width: 100%;
  height: 12.4rem;
}
.footer__cta {
  font-size: 1.5rem;
  margin-bottom: 7.5rem;
}
.footer__cta-link {
  display: block;
  margin-bottom: 0.5rem;
}
.footer__cta a {
  color: #1A0DAB;
  text-decoration: underline;
}
.footer__cta a:hover {
  color: #1a0dab7e;
}
.footer__cta img {
  display: inline-block;
  margin-right: 0.7rem;
}
.footer__sns {
  display: flex;
  justify-content: space-between;
}
.footer__sns-link {
  width: 3rem;
  height: 3rem;
  background: #fff;
  background-position: center center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.footer__sns-link:hover {
  box-shadow: none;
  background: #012E49;
}
.footer__sns-link:hover._twitter {
  background: #012E49 url(../img/common/ic_twitter_wh.svg) no-repeat center center;
}
.footer__sns-link:hover._line {
  background: #012E49 url(../img/common/ft_line_wh.svg) no-repeat center center;
}
.footer__sns-link:hover._fb {
  background: #012E49 url(../img/common/ic_fb_wh.svg) no-repeat center center;
}
.footer__sns-link:hover._tiktok {
  background: #012E49 url(../img/common/ic_tiktok_wh.svg) no-repeat center center;
}
.footer__sns-link:hover._insta {
  background: #012E49 url(../img/common/ic_insta_wh.svg) no-repeat center center;
}
.footer__sns-link:hover._threads {
  background: #012E49 url(../img/common/ic_threads_wh.svg) no-repeat center center;
}
.footer__sns-tube:hover._tube {
  background: #012E49 url(../img/common/ic_tube_wh.svg) no-repeat center center;
}
.footer__sns-link:hover img {
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .footer__left {
    width: 100%;
  }
  .footer__logo {
    text-align: center;
  }
  .footer__logo img {
    width: 24.5rem;
  }
  .footer__address {
    text-align: center;
    font-size: 1.4rem;
  }
  .footer__cta {
    padding-left: 5rem;
    margin-bottom: 2.4rem;
    font-size: 1.4rem;
  }
  .footer__sns {
    justify-content: center;
    gap: 1.6rem;
    margin-bottom: 4.9rem;
  }
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
}
.footer__links-sec {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 2rem;
}
.footer__links-btn {
  font-size: 1.5rem;
  min-width: 16rem;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #C8C8C8;
}
.footer__links-btn.long {
  width: 34.6%;
}
.footer__links-btn:before {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-bottom: 1px solid #E7380D;
  transition: 0.3s ease-in-out;
}
.footer__links-btn:hover:before {
  width: 100%;
}
.footer__links-btn:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/c-arrow-circle.svg) no-repeat;
  position: absolute;
  top: .2rem;
  right: 0;
  background-size: contain;
}
.dl_accordion .footer__links-btn:after {
  background: url(../img/common/accordion_off.svg) no-repeat;
  background-size: contain;
}
.dl_accordion .footer__links-btn.accordion--open:after {
  background: url(../img/common/accordion_on.svg) no-repeat;
  background-size: contain;
}
.footer__links .dl_accordion {
  border-bottom: 0.1rem solid #C8C8C8;
}
.footer__links .dl_accordion .footer__links-btn {
  border: none;
}
.footer__links .dl_accordion dd .footer__links-btn a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.footer__links-btn._thumb {
  margin-top: 0.6rem;
  width: calc(33.3% - 1.8rem);
  padding-right: 0;
  margin-right: 2.6rem;
}
.footer__links-btn._thumb.last {
  margin-right: 0;
}
.footer__links-btn._thumb:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/c-arrow-circle.svg) no-repeat;
  position: absolute;
  top: unset;
  bottom: 1rem;
  right: 0;
  background-size: contain;
}
.footer__links-thumb {
  margin-bottom: 1rem;
  overflow: hidden;
}
.footer__links-thumb img {
  transform: scale(1);
  transition: 0.4s ease-in-out;
}
.footer__links-link {
  color: #000;
  font-weight: bold;
  display: block;
  padding: 0 2rem 0 0;
}
.footer__links-btn._thumb .footer__links-link {
  padding: 0;
}
.footer__links-link:hover .footer__links-thumb img {
  transform: scale(1.1);
}
.footer__group {
  margin-top: 1.5rem;
  width: 38.3rem;
}
@media screen and (max-width: 1024px) {
  .footer__links-btn:hover:before {
    display: none;
  }
  .footer__links-btn._thumb:after {
    bottom: calc(50% - 0.8rem);
  }
  .footer__links-thumb {
    width: 7.4rem;
    margin-right: 0.9rem;
    margin-bottom: 0;
  }
  .footer__links {
    flex-direction: column;
    margin-bottom: 4.8rem;
  }
  .footer__links-link {
    padding: 2rem 0;
  }
  .footer__links-sec {
    display: block;
    margin: 0;
  }
  .footer__links-btn {
    margin-bottom: 0;
    margin-right: 0;
    padding-bottom: 0;
    font-size: 1.4rem;
    width: 100%;
  }
  .footer__links-btn:after {
    top: calc(50% - 0.8rem);
  }
  .footer__links-btn._thumb {
    margin-top: 0;
    padding: 0;
    width: 100%;
  }
  .footer__links-btn._thumb .footer__links-link {
    padding: 1.6rem 0;
    display: flex;
    width: 100%;
    align-items: center;
  }
  .footer__group {
    margin-top: 0;
    width: 100%;
  }
}
/**/
.footer__group-ttl {
  background: #012E49;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.footer__group-flex {
  background: #fff;
  border-radius: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  margin-bottom: 3.2rem;
}
.footer__group-name {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: calc(22/15);
  text-align: center;
  margin-bottom: 1rem;
}
.footer__group-logo {
  margin-bottom: 1.6rem;
  width: 13rem;
}
.footer__group-link {
  position: relative;
  overflow: hidden;
  background: #012E49;
  display: block;
  width: 33.4rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  border-radius: 3rem;
}
.footer__group-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #E7380D;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer__group-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer__group-link span {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
}
.footer__group-link span:after {
  content: '';
  background: url(../img/common/ic_blank.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2rem;
  height: 1.5rem;
  margin-left: 1rem;
  vertical-align: -0.2rem;
}
.footer__copyright {
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding-top: 3.2rem;
  font-size: 1.2rem;
  font-weight: normal;
}
.footer__copyright a {
  color: #000;
  position: relative;
  display: inline-block;
  border-bottom: 0.1rem solid #000;
}
.footer__copyright a:after {
  content: '';
  transition: 0.2s ease-in-out;
  width: 0;
  height: 0.1rem;
  background: #E7380D;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
}
.footer__copyright a:hover:after {
  width: 100%;
}
.footer__contact-list {
  position: relative;
  background: #E7380D;
  transition: 0.2s ease-in-out;
  margin-left: 1.9rem;
  margin-right: 1.9rem;
}
.footer__contact-list:before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #012E49;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.footer__contact-list:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.footer__contact-cont {
  transition: 0.7s ease-in-out;
  width: 32rem;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
}
.footer__contact-cont.open {
  max-height: 100vh;
  pointer-events: unset;
}
.footer__contact-cont a {
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  color: #fff;
  display: block;
  padding: 1.2rem 3.3rem 1.2rem 0;
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.footer__contact-cont a:hover {
  opacity: 0.6;
}
.footer__contact-cont a:after {
  position: absolute;
  content: '';
  display: inline-block;
  background: url("../img/common/c-arrow-circle_wh.svg");
  background-size: contain;
  width: 1.6rem;
  height: 1.6rem;
  right: 0;
  top: calc(50% - 0.8rem);
}
.footer-mailmagazine {
  background: url("../img/contact/bg_mail.png") no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 9rem 0;
}
.footer-mailmagazine__cont {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  width: 75.7rem;
  margin: 0 auto;
  padding: 3.5rem 4rem;
  box-sizing: border-box;
}
.footer-mailmagazine__cont-ttl {
  text-align: center;
  font-size: 1.85rem;
  color: #012E49;
  font-weight: bold;
  margin-bottom: 2rem;
}
.footer-mailmagazine__cont-txt {
  font-size: 1.4rem;
  line-height: calc(24/14);
  margin-bottom: 4rem;
}
.footer-mailmagazine__error-txt {
  text-align: center;
  font-size: 1.4rem;
}
.footer-mailmagazine__error-txt a {
  color: #1A0DAB;
  text-decoration: underline;
}
.footer-mailmagazine__error-txt a:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/common/c-arrow-circle_bl_hover.svg") no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1rem;
}
.module-cta {
  text-align: center;
  position: relative;
  max-width: 102.8rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 1024px) {
  .footer__group-flex {
    border-radius: 1.6rem;
    margin: 1.6rem 1.6rem 3rem;
    padding: 2.4rem;
  }
  .footer__group-name {
    width: 100%;
    padding: 0 0 0;
    margin-bottom: 1rem;
    text-align: center;
    margin-right: 0;
  }
  .footer__group-logo {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1.4rem;
    text-align: center;
  }
  .footer__group-btn {
    width: 100%;
  }
  .footer__group-link {
    border-radius: 5rem;
    width: 100%;
  }
  .footer__group-link span:after {
    position: absolute;
    right: 1.3rem;
    top: calc(50% - 0.7rem);
  }
  .footer__copyright {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
  .footer__copyright li {
    margin-bottom: 1rem;
  }
  .footer__contact-list:first-child a {
    background: none;
  }
  .footer__contact-cont {
    bottom: 100%;
    right: 0;
    width: 100%;
    background: #E7380D;
  }
  .footer-mailmagazine {
    background: url("../img/contact/bg_mail_sp.png") no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 3.7rem 1.2rem;
  }
  .footer-mailmagazine__cont {
    width: 100%;
    padding: 3.5rem 2rem;
  }
  .footer-mailmagazine__cont-txt {
    margin-bottom: 2rem;
  }
  .module-cta {
    width: 100%;
  }
}
.module-cta__bg {
  position: absolute;
  left: 0;
  top: 0;
}
.module-cta__tags {
  position: relative;
  top: -4.6rem;
  display: flex;
  justify-content: right;
  max-width: 90rem;
  margin: 0 auto;
}
.module-cta__tag {
  width: 10.5rem;
  height: 10.7rem;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  padding-right: 0.6rem;
  padding-top: 2rem;
  line-height: 1.3;
}
.module-cta__tag span {
  font-size: 1.4rem;
}
.module-cta__sec {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.16);
  border-radius: 0.5rem;
  max-width: 88.6rem;
  margin: 0 auto;
  padding: 3.2rem 6rem 4rem;
}
.module-cta__sec-flex {
  display: flex;
  gap: 0 1.6rem;
  justify-content: center;
  align-items: flex-start;
}
.module-cta__sec-icon {
  display: inline-block;
  margin-right: 1.8rem;
  width: 2.2rem;
  background: url("../img/common/ic_mail.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .module-cta {
    padding: 0 2.5rem 4rem;
    margin: 0 auto 6rem;
  }
  .module-cta._price {
    padding: 12rem 2.5rem 8rem;
  }
  .module-cta__bg {
    left: 2.5rem;
    width: calc(100% - 5rem);
  }
  .module-cta__bg img {
    width: 100%;
  }
  .module-cta__tags {
    width: 100%;
    justify-content: center;
  }
  .module-cta__tag {
    width: 7.2rem;
    height: 7.6rem;
    background-size: 100%;
    font-size: 1.6rem;
    padding-top: 1rem;
    line-height: 1.4;
    margin-bottom: 6rem;
  }
  .module-cta__tag span {
    font-size: 1rem;
  }
  .module-cta__sec {
    width: calc(100% - 2.4rem);
    padding: 2rem;
  }
  .module-cta__sec-flex {
    flex-direction: column;
    gap: 1.6rem 0;
  }
  .module-cta__sec-icon {
    position: absolute;
    left: 2.4rem;
    top: calc(50% - 1.2rem);
  }
}
.module-cta__sec-icon img {
  opacity: 0;
  width: 100%;
}
.module-cta__sec-icon._blue {
  width: 2.5rem;
  background: url("../img/common/ic_tel.svg") no-repeat center center;
  background-size: contain;
}
.module-cta__sec-btn {
  border: 1px solid #E7380D;
  background: #E7380D;
  font-size: 2rem;
  border-radius: 2.8rem;
  text-align: center;
  display: block;
  position: relative;
  width: calc(50% - 0.8rem);
  overflow: hidden;
}
.module-cta__sec-btn._onebtn {
  width: 54rem;
}
.module-cta__sec-btn._onebtn .module-cta__sec-link {
  position: relative;
}
.module-cta__sec-btn._onebtn .module-cta__sec-link:after {
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(-45deg);
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.6rem);
  transition: 0.3s ease-in-out;
}
.module-cta__sec-btn._onebtn:hover .module-cta__sec-link:after {
  border-right: 2px solid #E7380D;
  border-bottom: 2px solid #E7380D;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}
@media screen and (max-width: 768px) {
  .module-cta__sec-btn {
    width: 100%;
    font-size: 1.5rem;
  }
  .module-cta__sec-btn._onebtn {
    width: 100%;
    border-radius: 8rem;
  }
}
.module-cta__sec-btn._blue {
  border: 1px solid #012E49;
  background: #012E49;
}
.module-cta__sec-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.module-cta__sec-btn:hover {
  box-shadow: none;
}
.module-cta__sec-btn:hover a {
  color: #E7380D;
}
.module-cta__sec-btn:hover a._blue {
  color: #012E49;
}
.module-cta__sec-btn:hover .module-cta__sec-icon {
  background: url("../img/common/ic_mail_red.svg") no-repeat center center;
  background-size: contain;
}
.module-cta__sec-btn:hover .module-cta__sec-icon img {
  opacity: 0;
}
.module-cta__sec-btn:hover .module-cta__sec-icon._blue {
  width: 2.5rem;
  background: url("../img/common/ic_tel_bl.svg") no-repeat center center;
  background-size: contain;
}
.module-cta__sec-btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@keyframes b-radius {
  from {
    border-radius: 2.8rem;
  }
  to {
    border-radius: 2.8rem 2.8rem 0 0;
  }
}
@keyframes b-radius-back {
  from {
    border-radius: 2.8rem 2.8rem 0 0;
  }
  to {
    border-radius: 2.8rem;
  }
}
.module-cta__sec-btn_contact {
  border: none;
  overflow: unset;
  cursor: pointer;
  position: relative;
  z-index: 5;
  animation-name: b-radius-back;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.module-cta__sec-btn_contact:before {
  content: none;
}
.module-cta__sec-btn_contact .module-cta__sec-icon {
  background: none !important;
}
.module-cta__sec-btn_contact .module-cta__sec-icon img {
  opacity: 1 !important;
}
.module-cta__sec-btn_contact .footer__contact-cont {
  width: 100%;
  position: absolute;
  top: calc(100% - 2.8rem);
  padding-top: 2.8rem;
  left: 0;
  text-align: left;
  border-radius: 0 0 2.8rem 2.8rem;
  background: #E7380D;
}
.module-cta__sec-btn_contact .footer__contact-lists {
  width: 100%;
  padding: 0 4rem;
}
@media screen and (max-width: 768px) {
  .module-cta__sec-btn_contact .footer__contact-cont {
    bottom: unset;
    top: calc(100% - 2.4rem);
    padding-top: 2.4rem;
  }
  .module-cta__sec-btn_contact .footer__contact-lists {
    padding: 0 2rem;
  }
}
.module-cta__sec-btn_contact .footer__contact-list {
  margin-left: 0;
  margin-right: 0;
}
.module-cta__sec-btn_contact:hover .module-cta__sec-icon {
  background: none !important;
}
.module-cta__sec-btn_contact:hover .module-cta__sec-icon img {
  opacity: 1 !important;
}
.module-cta__sec-btn_contact:hover a {
  color: #fff;
}
.module-cta__sec-btn_contact.active {
  animation-name: b-radius;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
}
.module-cta__sec-btn_contact.open {
  background: #E7380D;
  width: 100%;
  overflow: unset;
  border-radius: 2.8rem 2.8rem 0 0;
}
.module-cta__sec-btn_contact.open .footer__contact-cont.open {
  max-height: 100vh;
  width: 100%;
  z-index: 99;
}
.module-cta__sec-btn_contact.open .footer__contact-lists {
  width: 100%;
}
.module-cta__sec-btn_contact.open a {
  color: #fff;
}
.module-cta__sec-btn_contact.open:before {
  content: none;
}
.module-cta__sec-link {
  position: relative;
  z-index: 3;
  color: #fff;
  display: block;
  padding: 1.3rem 0;
  font-weight: bold;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .module-cta__sec-link {
    padding: 1.3rem 0 1.3rem 0rem;
  }
}
.module-cta-title {
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.module-cta-title__en {
  font-size: 2rem;
  color: #E7380D;
  display: block;
  margin-bottom: 1.6rem;
  font-family: 'Roboto';
}
.module-cta-title__jp {
  font-size: 2.4rem;
  display: block;
  position: relative;
  padding-top: 1.6rem;
}
.module-cta-title__jp:before {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: 50%;
}
.module-cta-title__jp:after {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: calc(50% - 3.2rem);
}
.breadcrumb {
  background: #F5F5F5;
  padding: 2.1rem;
  border-bottom: 0.1rem solid #C8C8C8;
}
.breadcrumb ul, .breadcrumb ol {
  width: 102.8rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .breadcrumb ul, .breadcrumb ol {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
    gap: 1rem 0;
  }
}
.breadcrumb li {
  margin-right: 3rem;
  color: #000000;
  font-size: 1.3rem;
  position: relative;
}
.breadcrumb li:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: block;
  position: absolute;
  border-bottom: 0.1rem solid #000;
  border-right: 0.1rem solid #000;
  left: calc(100% + 0.8rem);
  top: calc(50% - 0.4rem);
  transform: rotate(-45deg);
}
.breadcrumb li:last-child {
  margin-right: 0;
}
.breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb a {
  color: #646464;
  display: inline-block;
  position: relative;
}
.breadcrumb a:after {
  content: '';
  width: 100%;
  height: 0.1rem;
  background: #646464;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}
.breadcrumb a:before {
  content: '';
  width: 0;
  height: 0.1rem;
  background: #E7380D;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease-in-out;
}
.breadcrumb a:hover:before {
  width: 100%;
  z-index: 1;
}
.breadcrumb__home {
  vertical-align: middle;
  vertical-align: 0.2rem;
  padding-right: 0.2rem;
}
.pagenation {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 1.8rem;
  font-weight: bold;
  color: #787878;
  margin-top: 4.8rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .pagenation {
    gap: 0 1rem;
  }
}
.pagenation_link {
  cursor: pointer;
}
.pagenation span {
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  position: relative;
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  font-weight: bold;
}
.pagenation ._num {
  cursor: pointer;
}
.pagenation .no_link-prev {
  margin-right: 6.8rem;
  width: 4rem;
}
.pagenation .no_link-next {
  margin-left: 6.8rem;
  width: 4rem;
}
@media screen and (max-width: 768px) {
  .pagenation .no_link-prev {
    margin-right: 1rem;
  }
  .pagenation .no_link-next {
    margin-left: 1rem;
  }
}
.pagenation .current {
  background: #F0F0F0;
  color: #787878;
}
.pagenation ._prev {
  margin-right: 6.8rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  background: #E7380D;
  color: #fff;
  border-radius: 50%;
  position: relative;
  text-indent: -99999px;
  border: 0.1rem solid #E7380D;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
.pagenation ._prev:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 50%;
}
.pagenation ._prev:hover {
  box-shadow: none;
}
.pagenation ._prev:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.pagenation ._prev:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
}
@media screen and (max-width: 768px) {
  .pagenation ._prev {
    margin-right: 3rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.pagenation ._prev:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  left: 1.6rem;
  top: 1.3rem;
  display: block;
  transform: rotate(135deg);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .pagenation ._prev:after {
    width: 1rem;
    height: 1rem;
    left: 1.3rem;
    top: 1rem;
  }
  .pagenation ._prev {
    margin-right: 1rem;
  }
}
.pagenation ._next {
  margin-left: 6.8rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  background: #E7380D;
  color: #fff;
  border-radius: 50%;
  position: relative;
  text-indent: -99999px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  border: 0.1rem solid #E7380D;
  cursor: pointer;
}
.pagenation ._next:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  border-radius: 50%;
}
.pagenation ._next:hover {
  box-shadow: none;
}
.pagenation ._next:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.pagenation ._next:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
}
@media screen and (max-width: 768px) {
  .pagenation ._next {
    margin-left: 3rem;
    width: 3.2rem;
    height: 3.2rem;
  }
}
.pagenation ._next:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  left: 0.8rem;
  top: 1.2rem;
  display: block;
  transform: rotate(-45deg);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .pagenation ._next:after {
    width: 1rem;
    height: 1rem;
    left: 0.8rem;
    top: 1rem;
  }
  .pagenation ._next {
    margin-left: 1rem;
  }
}
.pagenation .material-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
}
.table-overview {
  width: 100%;
  line-height: 1.8;
  text-align: left;
}
.table-overview tr th {
  width: 16rem;
  padding: .8rem;
  vertical-align: top;
}
.table-overview tr td {
  width: calc(100% - 16rem);
  padding: .8rem 1.6rem;
  vertical-align: top;
}
.module-article__lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 36rem));
  gap: 4rem;
  max-width: 122rem;
  margin: 0 auto 5rem;
  padding: 0 3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1000px) {
  .module-article__lists {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 47.1%));
  }
}
@media screen and (max-width: 768px) {
  .module-article__lists {
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    display: flex;
    flex-direction: column;
    gap: 2.4rem 0;
    margin-bottom: 3.4rem;
  }
}
.module-article__sec {
  border: .2rem solid #D6D6D6;
  border-radius: 2rem;
  box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.16);
  padding: 3rem;
  background: #fff;
}
.module-article__thumb {
  margin-bottom: 1.6rem;
  border-radius: 1rem;
  overflow: hidden;
}
.module-article__txt-date {
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
  font-size: 1.6rem;
  vertical-align: middle;
}
.module-article__txt-cat {
  color: #FF8800;
  border: 1px solid #FF8800;
  font-size: 1.2rem;
  vertical-align: middle;
  display: inline-block;
  margin-left: 1rem;
  padding: 0 0.3rem;
}
.module-article__ttl {
  font-size: 1.9rem;
  margin: 1.5rem 0;
  font-weight: bold;
  line-height: calc(29/19);
}
@media screen and (max-width: 768px) {
  .module-article__ttl {
    font-size: 1.6rem;
  }
}
.module-article__btn {
  text-align: center;
}
.module-article__link {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1.6rem 0;
  width: 24rem;
  border-radius: 4rem;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .module-article__link {
    max-width: 80%;
    padding: 1.2rem 0;
  }
}
.module-article__link span {
  position: relative;
  font-weight: bold;
}
.module-article__link:before {
  position: absolute;
  border-radius: 4rem;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: #FFB300;
  z-index: 0;
  transition: 0.15s ease-in-out;
}
.module-article__link:hover:before {
  background: #FF8800;
  transform: scale(1.1);
}
.module-article__link:after {
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  right: 1.8rem;
  top: calc(50% - 0.3rem);
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
}
.module-more__btn {
  text-align: center;
}
.module-more__link {
  display: inline-block;
  color: #fff;
  font-size: 2.1rem;
  font-weight: bold;
  padding: 2rem 0;
  width: 30rem;
  position: relative;
}
.module-more__link:before {
  position: absolute;
  border-radius: 4rem;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: #000;
  z-index: 0;
  transition: 0.15s ease-in-out;
}
.module-more__link span {
  position: relative;
}
.module-more__link:hover:before {
  background: #FF8800;
  transform: scale(1.1);
}
@media screen and (max-width: 1000px) {
  .module-more__link {
    max-width: 60%;
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
}
.module-more__link:after {
  content: '';
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: block;
  position: absolute;
  right: 1.8rem;
  top: calc(50% - 0.3rem);
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
}
.top-movie {
  position: absolute;
  right: 0;
  top: 12rem;
  width: 36rem;
  z-index: 5;
  transform: translateX(40.7rem);
  transition: transform 0.5s ease-in-out;
  box-sizing: border-box;
}
.top-movie.fadeinAnim {
  transform: translateX(0);
}
@media screen and (max-width: 1280px) {
  .top-movie {
    width: 28vw;
  }
}
@media screen and (max-width: 768px) {
  .top-movie {
    position: unset;
    width: 90%;
    margin: 0 auto;
    transform: translateX(0);
  }
}
.top-movie__link {
  position: relative;
  background: #FAFAFA;
  margin-bottom: 1rem;
  padding: 4.45%;
  border-radius: 8px 0 0 8px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  border: solid 1px #A0A0A0;
  border-right: none;
  transition: opacity .4s;
}
.top-movie__link.none {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.top-movie__link .close {
  width: 14px;
  height: 14px;
  position: absolute;
  left: -6px;
  top: -6px;
  background: url("../img/common/close.svg") no-repeat;
  background-size: contain;
  cursor: pointer;
}
.top-movie__link a {
  display: flex;
  align-items: center;
}
.top-movie__link .top-movie__thumb img {
  transform-origin: center bottom;
}
.top-movie__link a:hover .top-movie__thumb img {
  transform: scale(1.1);
}
.top-movie__link .top-movie__thumb {
  width: 43%;
  margin: 0 4% 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 5px 0 0 5px;
}
.top-movie__link .top-movie__thumb img {
  transition: 0.3s ease-in-out;
}
.top-movie__link .textBox {
  width: 54%;
}
.top-movie__link .top-movie__ttl {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: calc(22/14);
  color: #012E49;
}
.top-movie__link .top-movie__btn {
  background: #E7380D;
  border-radius: 50px;
  overflow: hidden;
  text-align: center;
  margin: 5% 0 0;
  position: relative;
  border: solid 1px #E7380D;
}
.top-movie__link .top-movie__btn::before {
  content: '';
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  right: 0;
  top: 0;
  transition: all .4s;
}
.top-movie__link .top-movie__btn span {
  color: #fff;
  position: relative;
  z-index: 5;
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.43;
  padding: .75em 0;
  transition: all .4s;
}
.top-movie__link .top-movie__btn span::before {
  content: '';
  width: 1.143em;
  height: 1.143em;
  background: url("../img/common/c-arrow-blank.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: 5%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top-movie__link a:hover .top-movie__btn::before {
  width: 100%;
  left: 0;
  right: auto;
}
.top-movie__link a:hover .top-movie__btn span {
  color: #E7380D;
}
@media screen and (max-width: 1280px) {
  .top-movie__thumb-txt {
    font-size: 1.083vw;
  }
  .top-movie__link .top-movie__ttl {
    font-size: 1.1vw;
  }
  .top-movie__link .top-movie__btn span {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  .top-movie__link {
    padding: 3% 2.5%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: solid 1px #A0A0A0;
  }
  .top-movie__link .close {
    display: none;
  }
  .top-movie__thumb {
    width: 35%;
  }
  .top-movie__thumb-txt {
    font-size: 3vw;
  }
  .top-movie__link .top-movie__ttl {
    font-size: 3.733vw;
  }
  .top-movie__link .top-movie__btn span {
    font-size: 3.733vw;
  }
}
.top-movie__close {
  position: absolute;
  left: -1.2rem;
  top: -1.2rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: #fff;
}
.top-movie__close:before, .top-movie__close:after {
  content: '';
  position: absolute;
  width: 1.2rem;
  height: 0;
  border-bottom: 2px solid #012E49;
  left: 0.6rem;
}
.top-movie__close:before {
  transform: rotate(-45deg);
  top: 1.1rem;
}
.top-movie__close:after {
  transform: rotate(45deg);
  top: 1.1rem;
}
.top-movie__remodal {
  padding: 3.5rem 9rem;
}
@media screen and (max-width: 768px) {
  .top-movie__remodal {
    padding: 4.8rem 1.5rem 1.5rem;
  }
}
.top-movie__remodal video {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .top-movie__remodal video {
    height: auto;
  }
}
.top-google__review {
  width: 32.4rem;
  position: absolute;
  right: 0;
  top: 41rem;
  z-index: 5;
  transition: transform 0.5s ease-in-out;
  transform: translateX(32.4rem);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.top-google__review.fadeinAnim {
  transform: translateX(0);
}
.top-google__review a {
  display: flex;
  background: #F5F5F5 url("../img/common/c-arrow-circle-down.svg") no-repeat right 5% center;
  background-size: 1.6rem;
  align-items: center;
  padding: 5% 6.5%;
  border-radius: 0.5rem 0 0 0.5rem;
  width: 32.4rem;
  box-sizing: border-box;
  font-weight: bold;
  color: #000;
  font-size: 1.4rem;
  transition: opacity .3s;
}
.top-google__review a:hover {
  opacity: .9;
}
.top-google__thumb {
  width: 47%;
  margin: 0 3% 0 0;
}
.top-google__txt {
  width: 41%;
  margin: 0 9% 0 0;
}
@media screen and (max-width: 1280px) {
  .top-google__review {
    width: 26%;
    top: calc(12rem + 23vw);
  }
  .top-google__review a {
    width: 100%;
  }
  .top-google__txt {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 768px) {
  .top-google__review {
    position: unset;
    width: calc(100% - 2.4rem);
    margin: 0 0 4.8rem auto;
    transform: translateX(0);
  }
  .top-google__review a {
    border-radius: 0.5rem;
  }
  .top-google__txt {
    font-size: 4vw;
  }
}
/**/
.top-map__bnr {
  width: 32.4rem;
  position: absolute;
  right: 0;
  top: 50rem;
  z-index: 5;
  transition: transform 0.5s ease-in-out;
  transform: translateX(32.4rem);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.top-map__bnr.fadeinAnim {
  transform: translateX(0);
}
.top-map__bnr a {
  display: flex;
  align-items: center;
  border-radius: 0.5rem 0 0 0.5rem;
  box-sizing: border-box;
  font-weight: bold;
  color: #000;
  font-size: 1.4rem;
  padding: 5% 6.5%;
  background-image: url(../img/top/review_blank.svg);
  background-repeat: no-repeat;
  background-position: right 5% center;
  background-color: #f5f5f5;
  background-size: 1.6rem auto;
  transition: opacity .3s;
}
.top-map__bnr a:hover {
  opacity: .9;
}
.top-map__bnr .map--icon {
  width: 17%;
  margin: 0 6% 0 0;
}
.top-map__bnr .map--text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .05em;
}
@media screen and (max-width: 1280px) {
  .top-map__bnr {
    width: 26%;
    top: calc(12rem + 30vw);
  }
  .top-map__bnr .map--text {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  .top-map__bnr {
    position: unset;
    width: calc(100% - 2.4rem);
    margin: -2.4rem 0 4.8rem auto;
    transform: translateX(0);
  }
  .top-map__bnr a {
    border-radius: 0.5rem;
  }
  .top-map__bnr .map--text {
    font-size: 4vw;
  }
}
/**/
.top-mv {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 121.6rem;
  margin: 0 auto 13.2rem;
  position: relative;
  transition: .5s linear;
  opacity: 0;
}
.top-mv.fadeinMv {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-mv {
    width: 100%;
    flex-direction: column;
    margin: 55px auto 8%;
  }
}
.top-mv__slider {
  width: 87.5%;
}
#top-mvSlider > li:not(:first-child) {
  display: none;
}
.top-mv__thumbnail {
  width: 11%;
}
.top-mv__thumbnail .slick-track {
  transform: unset !important;
}
.top-mv__thumbnail .slick-slide {
  background: #000;
  border: none;
  overflow: hidden;
}
.top-mv__thumbnail .slick-slide + .slick-slide {
  margin: 8.96% 0 0;
}
#top-mvThumbnail .slick-list {
  overflow: visible;
}
.top-mv__thumbnail .slick-slide img {
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.top-mv__thumbnail .slick-slide:hover img {
  opacity: 1;
  transform: scale(1.25);
}
.top-mv__thumbnail .slick-slide:last-child {
  margin-bottom: 0;
}
.top-mv__thumbnail .slick-slide.slick-current img {
  opacity: 1;
}
.top-mv__txt {
  position: absolute;
  left: 5.8rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  padding: 2.4rem;
  top: 70%;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .top-mv__slider {
    width: 100%;
    margin-bottom: 10rem;
  }
  .top-mv__slider img {
    width: 100%;
  }
  .top-mv__thumbnail {
    width: 100%;
  }
  .top-mv__thumbnail .slick-slide {
    width: 15.666%;
    height: 0;
    position: relative;
    padding: 15.666% 0 0;
    margin: 0 .5%;
  }
  .top-mv__thumbnail .slick-slide + .slick-slide {
    margin: 0 .5%;
  }
  .top-mv__thumbnail .slick-slide img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-mv__txt {
    width: calc(100% - 4rem);
    top: unset;
    bottom: 6rem;
    left: 2rem;
    padding: 1.6rem 1.6rem;
  }
}
.top-mv__txt-ttl {
  position: relative;
  background: #012E49;
  border-radius: 5px;
  padding: 2px 10px;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__txt-ttl {
    font-size: 1.8334vw;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__txt-ttl {
    font-size: 3.5vw;
    letter-spacing: 0;
  }
}
.top-mv__txt-ttl:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 12px;
  border-bottom-width: 10px;
  border-left-width: 0px;
  border-right-width: 16px;
  margin-left: -10px;
  border-top-color: #012E49;
  top: 100%;
  left: 50%;
}
.top-mv__txt-lead {
  font-size: 4.8rem;
  font-weight: bold;
}
.top-mv__txt-flex {
  display: flex;
}
.top-mv__txt-desc {
  font-size: 2rem;
  line-height: calc(28/20);
  font-weight: bold;
  vertical-align: bottom;
}
.top-mv__txt-500 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  vertical-align: bottom;
}
.top-mv__txt-500_orange {
  color: #E7380D;
  font-size: 2.8rem;
}
.top-mv__txt-500_big {
  font-size: 6.8rem;
  vertical-align: -5px;
}
.top-mv__txt-500_up {
  vertical-align: 12px;
}
@media screen and (max-width: 1200px) {
  .top-mv__txt-lead {
    font-size: 4vw;
    line-height: calc(45/37);
    margin: 0 0 3%;
  }
}
@media screen and (max-width: 768px) {
  .top-mv__txt-lead {
    font-size: 8.5vw;
  }
  .top-mv__txt-flex {
    flex-direction: column;
  }
  .top-mv__txt-desc {
    font-size: 1.4rem;
    letter-spacing: -0.1rem;
  }
  .top-mv__txt-500 {
    text-align: center;
  }
  .top-mv__txt-500_orange {
    font-size: 1.8rem;
  }
  .top-mv__txt-500_big {
    font-size: 4rem;
  }
  .top-mv__txt-500_up {
    font-size: 1.4rem;
    vertical-align: super;
    display: inline-block;
    margin-left: 0.3rem;
  }
  .top-mv__txt-500_up _::-webkit-full-page-media, .top-mv__txt-500_up _:future, :root .top-mv__txt-500_up {
    vertical-align: -0.5rem;
  }
}
/*-------*/
.top-service {
  max-width: 102.8rem;
  margin: 0 auto;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding: 8rem 3%;
  display: flex;
  gap: 0 4rem;
}
@media screen and (max-width: 768px) {
  .top-service {
    width: 100%;
    background: none;
    padding: 3rem 2.5rem 0;
    flex-direction: column;
    gap: 5.6rem 0;
    margin-bottom: 7.2rem;
  }
}
.top-service__sec {
  width: calc(50% - 2rem);
  position: relative;
  padding: 0 0 3em;
}
@media screen and (max-width: 768px) {
  .top-service__sec {
    width: 100%;
    max-width: 500px;
    margin: auto;
  }
}
.top-service__ttl {
  text-align: left;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top-service__ttl {
    text-align: center;
  }
}
.top-service__ttl-en {
  font-size: 1.6rem;
  color: #E7380D;
  display: block;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top-service__ttl-en {
    font-size: 1.4rem;
  }
}
.top-service__ttl-jp {
  font-size: 2.8rem;
  display: block;
  position: relative;
  padding-top: 1.6rem;
  color: #012E49;
}
@media screen and (max-width: 1024px) {
  .top-service__ttl-jp {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .top-service__ttl-jp {
    font-size: 2.2rem;
  }
}
.top-service__ttl-jp:before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 3.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: 3.2rem;
}
@media screen and (max-width: 768px) {
  .top-service__ttl-jp:before {
    height: 0.2rem;
    width: 2.4rem;
    left: 50%;
  }
}
.top-service__ttl-jp:after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 3.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-service__ttl-jp:after {
    height: 0.2rem;
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
}
.top-service__thumb {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .top-service__thumb {
    margin-bottom: 2.4rem;
    text-align: center;
  }
}
.top-service__txt {
  font-size: 1.5rem;
  line-height: calc(28/15);
  margin-bottom: 3.2rem;
  letter-spacing: 0.1rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top-service__txt {
    font-size: 1.4rem;
  }
}
.top-service__btn {
  border: 1px solid #E7380D;
  font-size: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  color: #E7380D;
  display: block;
  overflow: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .top-service__btn {
    font-size: 1.4rem;
  }
}
.top-service__btn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #E7380D;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.top-service__btn:hover {
  box-shadow: none;
}
.top-service__btn:hover a {
  color: #fff;
}
.top-service__btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.top-service__btn-link {
  position: relative;
  z-index: 3;
  color: #E7380D;
  display: block;
  padding: 0.9rem 0;
  line-height: calc(20/15);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-service__btn-link {
    line-height: calc(20/14);
    padding: 1.2rem 0;
  }
}
.top-service__btn-link:after {
  content: '';
  border-right: 2px solid #E7380D;
  border-bottom: 2px solid #E7380D;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-45deg);
  position: absolute;
  right: 1.6rem;
  top: calc(50% - 0.4rem);
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .top-service__btn-link:after {
    width: 1.3rem;
    height: 1.3rem;
    top: calc(50% - 0.7rem);
  }
}
.top-service__btn-link:hover:after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.top-reason {
  margin-bottom: 7.5rem;
}
.top-reason__lists {
  display: flex;
  flex-wrap: wrap;
  max-width: 102.8rem;
  margin: 0 auto 4.8rem;
  text-align: center;
  justify-content: center;
  gap: 1em 0;
}
@media screen and (max-width: 1024px) {
  .top-reason__lists {
    width: 100%;
    flex-wrap: wrap;
    padding: 0 2.5rem;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .top-reason__lists {
    gap: 0;
    margin-bottom: 0;
  }
}
.top-reason__list {
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  width: calc(100% / 5);
  padding: 1em 0;
}
.top-reason__list:first-child {
  background-image: none;
}
@media screen and (min-width: 1025px) {
  .top-reason__list:nth-child(6) {
    background-image: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top-reason__list {
    width: calc(33% - 0.5rem);
    margin-bottom: 2.4rem;
  }
  .top-reason__list:nth-child(4), .top-reason__list:nth-child(7) {
    background-image: none;
  }
  .top-reason__list:nth-child(n + 4):before {
    content: '';
    display: block;
    width: calc(100% - 1.1rem);
    height: 1px;
    position: absolute;
    top: -1.2rem;
    left: 1rem;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
  }
}
@media screen and (max-width: 768px) {
  .top-reason__list {
    width: calc(50% - 0.5rem);
    position: relative;
    margin-bottom: 2.4rem;
    padding-top: 0.4rem;
  }
  .top-reason__list:nth-child(odd) {
    background-image: none;
  }
  .top-reason__list:nth-child(n + 3):before {
    content: '';
    display: block;
    width: calc(100% - 1.1rem);
    height: 1px;
    position: absolute;
    top: -1.5rem;
    left: 1rem;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
  }
}
.top-reason__list-num {
  font-size: 5.6rem;
  font-weight: bold;
  color: #E7380D;
  font-family: 'Roboto';
  line-height: 1;
}
.top-reason__list-reason {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E7380D;
  font-family: 'Roboto';
}
.top-reason__list-thumb {
  margin-bottom: 1.7rem;
}
.top-reason__list-thumb._line2 {
  margin-bottom: 0.4rem;
}
.top-reason__list-ttl {
  color: #012E49;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: calc(26/18);
  text-align: center;
}
.top-reason .module-btn {
  max-width: 31.6rem;
  margin: 0 auto;
}
.top-option {
  max-width: 102.8rem;
  margin: 0 auto 8rem;
  padding: 0 3%;
}
@media screen and (max-width: 768px) {
  .top-option {
    width: 100%;
    padding: 0 2.3rem;
  }
}
.top-option__lead {
  font-size: 1.5rem;
  line-height: calc(28/15);
  max-width: 76.7rem;
  margin-bottom: 4.8rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top-option__lead {
    font-size: 1.4rem;
  }
}
.top-option__lists {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4.8rem 0;
  margin-bottom: 10.4rem;
}
@media screen and (max-width: 768px) {
  .top-option__lists {
    flex-direction: column;
    gap: 4rem 0;
    margin: 0 auto 6rem;
    max-width: 494px;
  }
}
.top-option__list {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .top-option__list {
    width: 100%;
  }
}
.top-option__list-txt {
  width: calc(100% - 7.5rem);
  margin-top: -4.2rem;
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 2.4rem 0 0;
}
@media screen and (max-width: 768px) {
  .top-option__list-txt {
    width: calc(100% - 1.5rem);
  }
}
.top-option__list-tag {
  background: #B4B4B4;
  border-radius: 0.2rem;
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  font-family: 'Roboto';
  display: inline-block;
  padding: 0.3rem 0.8rem 0.1rem;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.top-option__list-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .top-option__list-ttl {
    font-size: 1.5rem;
  }
}
.top-option__list-desc {
  font-size: 1.5rem;
  line-height: calc(28/15);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .top-option__list-desc {
    font-size: 1.4rem;
    line-height: calc(24/14);
    width: 100%;
  }
}
.top-option-btn {
  margin-top: 1.6rem;
}
.top-option-btn__link {
  margin-right: 2.4rem;
  font-size: 1.5rem;
  display: inline-block;
  min-width: 16.8rem;
  padding-right: 2.4rem;
  padding-bottom: 0.5rem;
  box-sizing: border-box;
  position: relative;
  border-bottom: 1px solid #C8C8C8;
  color: #000;
}
@media screen and (max-width: 768px) {
  .top-option-btn__link {
    font-size: 1.4rem;
  }
}
.top-option-btn__link:before {
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-bottom: 1px solid #E7380D;
  transition: 0.3s ease-in-out;
}
.top-option-btn__link:hover:before {
  width: 100%;
}
.top-option-btn__link:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/c-arrow-circle.svg) no-repeat;
  position: absolute;
  top: 0.4rem;
  right: 0;
}
.top-option__warranty {
  border: 1px solid #000;
  border-radius: 0.5rem;
  padding: 0 2.8rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-option__warranty {
    padding: 0 1rem 0 0;
  }
}
.top-option__warranty-ttl {
  padding: 1.4rem 1.8rem 1.5rem;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .top-option__warranty-ttl {
    font-size: 1.4rem;
    padding: 1.8rem 1.6rem 1.5rem 1rem;
  }
}
.top-option__warranty-ttl:before, .top-option__warranty-ttl:after {
  content: '';
  width: 1.6rem;
  transition: 0.2s ease-in-out;
  border-bottom: 2px solid #000;
  display: block;
  position: absolute;
}
.top-option__warranty-ttl:before {
  right: 0rem;
  top: calc(50%);
}
.top-option__warranty-ttl:after {
  right: 0rem;
  top: calc(50%);
  transform: rotate(90deg);
}
.top-option__warranty-ttl.opened:before {
  transform: rotate(90deg);
  opacity: 0;
}
.top-option__warranty-ttl.opened:after {
  transform: rotate(180deg);
}
.top-option__warranty-cont {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  display: none;
}
.top-option__warranty-cont a {
  display: flex;
}
.top-option__warranty-cont a img {
  width: 50%;
  border-bottom-left-radius: top;
}
.top-option__warranty-cont a:hover {
  opacity: 0.6;
}
.top-about__lists {
  display: flex;
  width: 102.8rem;
  margin: 0 auto 12.6rem;
}
@media screen and (max-width: 768px) {
  .top-about__lists {
    width: 100%;
    flex-direction: column;
    gap: 3.2rem 0;
    padding: 0 2.5rem;
    margin-bottom: 10.3rem;
  }
}
.top-about__list {
  position: relative;
  display: block;
  overflow: hidden;
}
.top-about__list img {
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .top-about__list img {
    width: 100%;
  }
}
.top-about__list:hover img {
  transform: scale(1.2);
}
.top-about__list:hover .top-about__txt:before {
  width: calc(100% - 3.4rem);
}
.top-about__txt {
  color: #000;
}
.top-about__txt:before {
  content: '';
  width: 0;
  position: absolute;
  border-bottom: 1px solid #E7380D;
  transition: 0.2s ease-in-out;
  left: 1.7rem;
  bottom: 0;
  display: block;
}
.top-about__ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  width: calc(100% - 6rem);
  background: #fff;
  font-size: 1.5rem;
  padding: 1.5rem 1.7rem 0.5rem 1.7rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-about__ttl {
    font-size: 1.4rem;
  }
}
.top-about__ttl:before {
  content: '';
  width: calc(100% - 3.4rem);
  position: absolute;
  border-bottom: 1px solid #C8C8C8;
  transition: 0.2s ease-in-out;
  left: 1.7rem;
  bottom: 0;
  display: block;
}
.top-about__ttl:after {
  content: '';
  display: inline-block;
  background: url("../img/common/c-arrow-circle.svg");
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  right: 1.7rem;
  top: calc(50% - 0.3rem);
  background-size: contain;
}
.top__sns {
  position: absolute;
  top: 45.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transition: 0.5s ease-in-out;
  left: 2.5rem;
  opacity: 0;
  justify-content: space-between;
  transform: translateX(-2.5rem);
  z-index: 10;
}
.top__sns.fadeinAnim {
  transform: translateX(0);
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top__sns {
    position: unset;
    width: 100%;
    flex-direction: row;
    gap: 1.6rem;
    justify-content: center;
    margin-bottom: 2.4rem;
  }
}
.top__sns-link {
  width: 3.2rem;
  height: 3.2rem;
  background: #fff;
  background-position: center center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.top__sns-link:hover {
  box-shadow: none;
  background: #012E49;
}
.top__sns-link:hover._twitter {
  background: #012E49 url(../img/common/ic_twitter_wh.svg) no-repeat center center;
}
.top__sns-link:hover._line {
  background: #012E49 url(../img/common/ft_line_wh.svg) no-repeat center center;
}
.top__sns-link:hover._fb {
  background: #012E49 url(../img/common/ic_fb_wh.svg) no-repeat center center;
}
.top__sns-link:hover._tiktok {
  background: #012E49 url(../img/common/ic_tiktok_wh.svg) no-repeat center center;
}
.top__sns-link:hover._insta {
  background: #012E49 url(../img/common/ic_insta_wh.svg) no-repeat center center;
}
.top__sns-link:hover._threads {
  background: #012E49 url(../img/common/ic_threads_wh.svg) no-repeat center center;
}
.top__sns-link:hover._tube {
  background: #012E49 url(../img/common/ic_tube_wh.svg) no-repeat center center;
  background-size: 60% auto;
}
.top__sns-link:hover img {
  opacity: 0;
}
/*----------*/
.case-intro {
  width: 94%;
  max-width: 102.8rem;
  margin: 0 auto 8rem;
}
.case-intro .flexBox {
  display: flex;
}
.case-intro .flexBox .case-introSet {
  width: 33.333%;
  position: relative;
  padding: 20.6% 0 4em;
}
.case-intro .flexBox .case-introSet + .case-introSet::before {
  content: '';
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #000 1px, transparent 1px);
  background-size: 1px 9px;
  background-repeat: repeat-y;
  background-position: left bottom;
  position: absolute;
  left: 0;
  bottom: 0;
}
.case-introSet .case-intro_title {
  font-size: 2rem;
  color: #012E49;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 5%;
}
.case-introSet .case-intro_textBox {
  margin: auto;
}
.case-introSet .case-intro_textBox .case-intro_desc {
  font-size: 1.5rem;
  line-height: calc(28/15);
  letter-spacing: .05em;
  width: 85%;
  margin: auto;
}
.case-introSet .case-intro_textBox .case-intro_desc.space {
  letter-spacing: -.03em;
}
.case-introSet .module-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  margin: auto;
}
.case-introSet .case-intro_thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.case-introSet .case-intro_thumb a {
  display: block;
  overflow: hidden;
  position: relative;
  padding: 56.25% 0 0;
}
.case-introSet .case-intro_thumb a img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.case-introSet .case-intro_thumb a:hover img {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .case-intro {
    width: 87%;
    margin: 0 auto 12%;
  }
  .case-intro .flexBox {
    display: block;
    border-bottom: solid 1px #C8C8C8;
  }
  .case-intro .flexBox .case-introSet {
    width: 100%;
    padding: 0;
    border-top: solid 1px #C8C8C8;
  }
  .case-intro .flexBox .case-introSet + .case-introSet::before {
    display: none;
  }
  .case-introSet .case-intro_title {
    font-size: 4.267vw;
    color: #012E49;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
    margin: 0;
    padding: 5% 0;
    position: relative;
  }
  .case-introSet .case-intro_title::before {
    content: '';
    width: 1.5em;
    height: 1.5em;
    background-image: url(../img/common/c-plus.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 2%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .case-introSet.accordion .case-intro_title::before {
    background-image: url(../img/common/c-minus.svg);
  }
  .case-introSet .case-intro_textBox {
    display: none;
    margin: 2% 0 8%;
  }
  .case-introSet .case-intro_textBox .case-intro_desc {
    font-size: 3.733vw;
    line-height: 1.71;
    width: 85%;
    margin: 0 0 3%;
  }
  .case-introSet .case-intro_textBox .case-intro_desc.space {
    letter-spacing: .05em;
  }
  .case-introSet .module-btn {
    position: relative;
    width: 85%;
    margin: 0;
  }
  .case-introSet .case-intro_thumb {
    position: relative;
    width: 85%;
    margin: 0 0 8%;
  }
}
/*--------------------*/
.case-article {
  width: 94%;
  margin: auto;
}
.case-article__search {
  max-width: 102.8rem;
  margin: 0 auto 4rem;
}
.case-article__search._voice {
  margin-bottom: 4.8rem;
}
.case-article__search + .case-article__search {
  margin-bottom: 4.8rem;
}
.case-article__search-ttl {
  font-weight: 500;
  font-size: 1.8rem;
  position: relative;
  margin: 0 0 2rem;
}
.case-article__search-ttl::before {
  content: '';
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.case-article__search-ttl span {
  position: relative;
  z-index: 5;
  display: inline-block;
  background-color: #fff;
  padding: 0 1em 0 1em;
  background-image: url(../img/common/icon_search.svg);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: .78em;
}
.case-article__search-name {
  display: block;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 5px;
  border: 1px solid #000;
  font-size: 1.3rem;
}
.case-article__search-name._radio {
  padding-left: 3.2rem;
}
.case-article__search-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.case-article .case_lead {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin: -1% 0 5%;
}
@media screen and (max-width: 768px) {
  .case-article {
    width: 90%;
    margin: 0 auto 3em;
  }
  .case-article__search {
    width: 100%;
    flex-direction: column;
    margin: 0 auto 3rem;
  }
  .case-article__search-ttl {
    font-size: 1.6rem;
    margin: 0 0 1.5rem;
  }
  .case-article__search-ttl span {
    padding: 0 .6em 0 1em;
  }
  .case-article__search-name {
    padding: 0.4rem .8rem;
    font-size: 1rem;
  }
  #search-listsWrap {
    position: relative;
    padding: 0 0 4em;
  }
  .search-listsWrap.accordion {
    padding: 0;
  }
  .search-listsWrap .search-listsMore {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    margin: 0 auto;
    border: solid 1px #E7380D;
    border-radius: 50px;
    text-align: center;
    color: #E7380D;
    font-size: 1.4rem;
    font-weight: 700;
    background: #fff;
  }
  .search-listsWrap.accordion .search-listsMore {
    display: none;
  }
  .search-listsWrap .search-listsMore::after {
    content: '';
    width: 90vw;
    height: 1px;
    background: #E7380D;
    position: absolute;
    z-index: -1;
    left: -28%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .search-listsWrap .search-listsMore span {
    display: inline-block;
    padding: .6em 1.5em .5em 0;
    background-image: url("../img/common/icon_bottom.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 1em auto;
  }
  .case-article__search-lists {
    border: none;
    width: 100%;
    padding: 0;
    gap: .8rem;
  }
  .search-listsWrap .case-article__search-lists {
    max-height: 11rem;
    position: relative;
    overflow: hidden;
    transition: all 1s;
  }
  .search-listsWrap.accordion .case-article__search-lists {
    max-height: 80vh;
  }
  .case-article .case_lead {
    font-size: 3.733vw;
    font-size: 1.5rem;
    margin: -1% 0 10%;
  }
}
.case-article__search-lists label {
  position: relative;
  display: block;
}
.case-article__search-lists input[type="checkbox"], .case-article__search-lists input[type="radio"] {
  display: none;
}
.case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name {
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  width: auto;
  background: #F0F0F0;
  border: 1px solid #F0F0F0;
}
.case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name + ._close, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name + ._close {
  position: absolute;
  display: block;
  right: -0.6rem;
  top: -0.6rem;
  background: #012E49;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
}
.case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name + ._close:before, .case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name + ._close:after, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name + ._close:before, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name + ._close:after {
  content: '';
  border-bottom: 0.1rem solid #fff;
  display: block;
  position: absolute;
  width: 0.8rem;
  top: 0.5rem;
  left: 0.2rem;
}
.case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name + ._close:before, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name + ._close:before {
  transform: rotate(-45deg);
}
.case-article__search-lists input[type="checkbox"]:checked + .case-article__search-name + ._close:after, .case-article__search-lists input[type="radio"]:checked + .case-article__search-name + ._close:after {
  transform: rotate(45deg);
}
.case-article__search-lists input[type="checkbox"]._ptorange + .case-article__search-name, .case-article__search-lists input[type="radio"]._ptorange + .case-article__search-name {
  padding-left: 3rem;
}
.case-article__search-lists input[type="checkbox"]._ptorange + .case-article__search-name:before, .case-article__search-lists input[type="radio"]._ptorange + .case-article__search-name:before {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 0.2rem;
  display: block;
  position: absolute;
  border: 1px solid #000;
  left: 1.2rem;
  top: calc(50% - 0.6rem);
}
.case-article__search-lists input[type="checkbox"]._ptorange:checked + .case-article__search-name, .case-article__search-lists input[type="radio"]._ptorange:checked + .case-article__search-name {
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  width: auto;
  background: #F0F0F0;
  border: 1px solid #F0F0F0;
}
.case-article__search-lists input[type="checkbox"]._ptorange:checked + .case-article__search-name:before, .case-article__search-lists input[type="radio"]._ptorange:checked + .case-article__search-name:before {
  background: #E7380D;
  border-color: #E7380D;
}
.case-article__search-lists ._close {
  display: none;
}
.case-article__result {
  max-width: 102.8rem;
  margin: -8rem auto 8rem;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .case-article__result {
    width: 100%;
  }
  .case-article__result .slick-prev:before, .case-article__result .slick-next:before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .case-article__result .slick-prev:before {
    left: 1.2rem;
    top: 0.9rem;
  }
  .case-article__result .slick-next:before {
    left: 0.6rem;
    top: 0.9rem;
  }
  .case-article__result .slick-prev {
    left: 2.2rem;
  }
  .case-article__result .slick-next {
    right: 2.2rem;
  }
  .case-article__search-lists input[type="checkbox"]._ptorange + .case-article__search-name, .case-article__search-lists input[type="radio"]._ptorange + .case-article__search-name {
    padding-left: 2.8rem;
  }
  .case-article__search-lists input[type="checkbox"]._ptorange + .case-article__search-name:before, .case-article__search-lists input[type="radio"]._ptorange + .case-article__search-name:before {
    left: 1rem;
  }
}
.case-article__result-slide {
  display: flex;
  gap: 4.8rem 4rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .case-article__result-slide {
    flex-direction: column;
    gap: 4rem;
  }
}
.case-article__result-sec {
  width: calc(33.3333% - 2.7rem);
}
@media screen and (max-width: 768px) {
  .case-article__result-sec {
    width: 100%;
  }
}
.case-article__result-thumb {
  margin-bottom: 1.6rem;
}
.case-article__result-thumb a {
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding: 61% 0 0;
}
.case-article__result-thumb img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto !important;
  aspect-ratio: 158/97;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all .4s;
}
.case-article__result-thumb a:hover img {
  transform: scale(1.1);
}
.case-article__result-catlists {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  gap: 1.2rem;
}
.case-article__result-catlists li {
  border: 1px solid #000;
  border-radius: 5px;
  padding: 0.4rem 0.7rem .2rem;
}
.case-article__result-desc {
  font-size: 1.5rem;
  line-height: calc(28/15);
  margin-bottom: 1.5rem;
  text-align: justify;
  min-height: 4em;
}
@media screen and (max-width: 768px) {
  .case-article__result-desc {
    font-size: 1.4rem;
    min-height: 0;
  }
}
.case-article__result-status {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding: 1.6rem 0 1rem;
  font-size: 1.3rem;
  color: #787878;
}
.case-article .slick-dots {
  bottom: -7.3rem;
}
@media screen and (max-width: 768px) {
  .case-article .slick-dots {
    bottom: -6.5rem;
  }
}
.voice__result {
  max-width: 102.8rem;
  width: 102.8rem;
  margin: -8rem auto 13.4rem;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .voice__result {
    width: 100%;
  }
  .voice__result .slick-prev:before, .voice__result .slick-next:before {
    width: 1.2rem;
    height: 1.2rem;
  }
  .voice__result .slick-prev:before {
    left: 1.2rem;
    top: 0.9rem;
  }
  .voice__result .slick-next:before {
    left: 0.6rem;
    top: 0.9rem;
  }
  .voice__result .slick-prev {
    left: 2.2rem;
  }
  .voice__result .slick-next {
    right: 2.2rem;
  }
}
.voice__result-slider {
  display: flex;
  gap: 4.8rem 4rem;
  flex-wrap: wrap;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .voice__result-slider {
    flex-direction: column;
  }
}
.voice__result-sec {
  width: calc(33.3333% - 2.7rem);
}
@media screen and (max-width: 768px) {
  .voice__result-sec {
    width: 100%;
    overflow: hidden;
    padding-bottom: 1rem;
  }
}
.voice__result-thumb {
  margin-bottom: 3.2rem;
  padding: 0 3rem;
}
.voice__result-thumb .slick-next, .voice__result-thumb .slick-prev {
  top: calc(50% - 1.2rem);
  width: 2.4rem;
  height: 2.4rem;
  background: #F0F0F0;
  border: none;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
}
.voice__result-thumb .slick-next:before, .voice__result-thumb .slick-prev:before {
  border-right-color: #000;
  border-bottom-color: #000;
  border-width: 0.1rem;
  width: 0.9rem;
  height: 0.9rem;
}
.voice__result-thumb .slick-next {
  right: 0;
}
.voice__result-thumb .slick-next:before {
  left: 0.7rem;
  top: 0.7rem;
}
.voice__result-thumb .slick-prev {
  left: 0;
}
.voice__result-thumb .slick-prev:before {
  left: 1rem;
  top: 0.7rem;
}
.voice__result-thumb .slick-dots {
  bottom: -1.6rem;
  left: 0;
}
.voice__result-thumb .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.8rem;
}
.voice__result-thumb .slick-dots li button {
  width: 0.8rem;
  height: 0.8rem;
}
.voice__result-thumb .slick-dots li button:before {
  width: 0.8rem;
  height: 0.8rem;
  top: 0;
}
.voice__result-thumb .slick-dots li.slick-active button:before {
  width: 0.8rem;
  height: 0.8rem;
  background: #012E49;
}
.voice__result-thumb img {
  aspect-ratio: 427/248;
  object-fit: cover;
}
.voice-remodal.remodal {
  padding-top: 9.7rem;
  padding-bottom: 9.7rem;
}
@media screen and (max-width: 768px) {
  .voice-remodal.remodal {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.voice-remodal__row {
  width: 71rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .voice-remodal__row {
    width: 100%;
    flex-direction: column;
  }
}
.voice-remodal__row-doc {
  width: 30.6rem;
}
@media screen and (max-width: 768px) {
  .voice-remodal__row-doc {
    width: 100%;
    margin-bottom: 3.2rem;
  }
}
.voice-remodal__row-txt {
  width: 36.4rem;
}
@media screen and (max-width: 768px) {
  .voice-remodal__row-txt {
    width: 100%;
  }
}
.voice-remodal__row-thumb {
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 768px) {
  .voice-remodal__row-thumb {
    margin-bottom: 4rem;
  }
}
.kiji-head {
  width: 102.8rem;
  margin: 0 auto 5.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.kiji-head._voice {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .kiji-head._voice {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .kiji-head {
    width: 100%;
    padding: 0 2.4rem;
    flex-direction: column;
    align-items: flex-start;
  }
}
.kiji-head__type {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .kiji-head__type {
    margin-bottom: 1.6rem;
  }
}
.kiji-head__type-ttl {
  font-weight: bold;
  margin-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .kiji-head__type-ttl {
    width: 7rem;
    border-right: 0.1rem solid #000;
    font-size: 1.4rem;
  }
}
.kiji-head__type ul {
  margin-bottom: 0;
  margin-right: 4.8rem;
}
.kiji-head__type li {
  padding: 0.8rem 1.2rem;
  margin-right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .kiji-head__type li {
    padding: 0.4rem 1.2rem;
  }
}
.kiji-head__type li:last-child {
  margin-right: 0;
}
.kiji-head__status {
  margin-right: 0;
  margin-left: auto;
  font-size: 1.3rem;
  color: #787878;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .kiji-head__status {
    margin-top: 0.8rem;
  }
}
.kiji-head__ttl {
  width: 100%;
  color: #012E49;
  font-weight: bold;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  font-size: 3.2rem;
  line-height: calc(48/32);
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: top;
}
@media screen and (max-width: 768px) {
  .kiji-head__ttl {
    padding-top: 4rem;
    margin-top: 3rem;
    font-size: 2.4rem;
    line-height: calc(40/24);
  }
}
.kiji-head__car {
  margin-top: 2.5rem;
  display: flex;
  gap: 0 6.4rem;
}
@media screen and (max-width: 768px) {
  .kiji-head__car {
    flex-direction: column;
  }
}
.kiji-head__car-sec {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  line-height: calc(28/15);
  font-weight: bold;
}
.kiji-head__car-ttl {
  margin-right: 0.8rem;
}
@media screen and (max-width: 768px) {
  .kiji-head__car-ttl {
    margin-right: 0;
    width: 5em;
  }
}
.kiji-head__car-name {
  color: #E7380D;
}
.kiji-cont {
  width: 85.4rem;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: calc(28/15);
  padding-bottom: 5.4rem;
}
@media screen and (max-width: 768px) {
  .kiji-cont {
    width: 100%;
    padding: 0 2.4rem 5.4rem;
  }
}
.kiji-cont p {
  padding: 0;
}
.kiji-cont a {
  color: #000;
  position: relative;
  border-bottom: 0.1rem solid #000;
}
.kiji-cont a:after {
  content: '';
  transition: 0.2s ease-in-out;
  width: 0;
  height: 0.1rem;
  background: #E7380D;
  position: absolute;
  bottom: -0.1rem;
  left: 0;
}
.kiji-cont a:hover:after {
  width: 100%;
}
.kiji-cta {
  display: flex;
  width: 102.8rem;
  margin: 0 auto 7.8rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .kiji-cta {
    flex-direction: column;
    width: 100%;
    padding: 0 2.4rem;
    gap: 3.2rem 0;
  }
}
.kiji-cta__link {
  border: 1px solid #012E49;
  background: #012E49;
  font-size: 1.8rem;
  border-radius: 0.5rem;
  text-align: center;
  color: #fff;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  width: calc(33.3333% - 1rem);
  padding: 2rem 0;
  line-height: calc(28/18);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .kiji-cta__link {
    width: 100%;
  }
}
.kiji-cta__link:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.kiji-cta__link:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/common/c-arrow-circle_bl.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.6rem;
  top: calc(50% - 0.8rem);
  display: block;
  z-index: 4;
}
.kiji-cta__link:hover {
  box-shadow: none;
  color: #012E49;
}
.kiji-cta__link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.kiji-cta__link:hover span {
  color: #012E49;
  position: relative;
  z-index: 3;
}
.kiji-cta__link:hover:after {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/common/c-arrow-circle_bl_hover.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.6rem;
  top: calc(50% - 0.8rem);
  display: block;
  z-index: 2;
}
.kiji-cta__link__txt {
  position: relative;
  z-index: 3;
  display: block;
  padding: 0.8rem 0;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}
.page-navi {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: top;
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 1028px;
  margin: 0 auto 8rem;
  padding-top: 4.8rem;
  justify-content: space-between;
  position: relative;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page-navi {
    width: calc(100% - 4.8rem);
    margin: 0 auto 6.8rem;
    flex-wrap: wrap;
    font-size: 1.4rem;
  }
}
.page-navi__prev, .page-navi__next {
  width: 12.6rem;
}
.page-navi__prev a, .page-navi__next a {
  color: #000;
  font-weight: bold;
  display: block;
  letter-spacing: 0.1rem;
  position: relative;
  border-bottom: 1px solid #C8C8C8;
  text-align: right;
}
.page-navi__prev a:before, .page-navi__next a:before {
  content: "";
  width: 0;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-bottom: 1px solid #E7380D;
  transition: 0.3s ease-in-out;
}
.page-navi__prev a:after, .page-navi__next a:after {
  content: '';
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(135deg);
  position: absolute;
  left: 0.5rem;
  top: calc(50% - 0.4rem);
  transition: 0.3s ease-in-out;
}
.page-navi__prev a:hover:before, .page-navi__next a:hover:before {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-navi__prev {
    order: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-navi__next {
    order: 1;
  }
}
.page-navi__next a {
  text-align: left;
}
.page-navi__next a:after {
  transform: rotate(-45deg);
  left: unset;
  right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .page-navi__back {
    order: 2;
    margin-top: 3.2rem;
    width: 100%;
  }
}
.page-navi__back a {
  position: relative;
  z-index: 3;
  background: #F0F0F0;
  display: block;
  padding: 0.8rem 0;
  font-weight: bold;
  width: 31.6rem;
  text-align: center;
  border-radius: 5rem;
  color: #000;
  font-size: 1.5rem;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .page-navi__back a {
    width: 100%;
  }
}
.page-navi__back a:after {
  content: '';
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(135deg);
  position: absolute;
  left: 2rem;
  top: calc(50% - 0.4rem);
  transition: 0.3s ease-in-out;
}
.page-navi__back a:hover {
  box-shadow: unset;
}
.voice-cont {
  width: 103rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-rows: max-content max-content;
  gap: 4.8rem 4rem;
  grid-auto-flow: row;
  grid-template-areas: "reason stage""feedback feedback";
}
@media screen and (max-width: 768px) {
  .voice-cont {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.voice-cont__ttl {
  border-left: 0.2rem solid #E7380D;
  background: #F0F0F0;
  padding: 1.2rem 1.8rem;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 3.2rem;
  color: #012E49;
}
.voice-cont__ttl span {
  font-size: 90%;
}
@media screen and (max-width: 768px) {
  .voice-cont__ttl {
    font-size: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .voice-cont {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    gap: 4rem 4rem;
    grid-template-areas: "reason ""stage""feedback";
  }
}
.voice-cont__reason {
  grid-area: reason;
}
.voice-cont__stage {
  grid-area: stage;
}
.voice-cont__stage-lists {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.3rem 0;
}
@media screen and (max-width: 768px) {
  .voice-cont__stage-lists {
    gap: 3.2rem 0;
    justify-content: flex-start;
  }
}
.voice-cont__stage-list {
  width: calc(33.333%);
  text-align: center;
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  background-position: right;
  color: #012E49;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .voice-cont__stage-list {
    width: 50%;
  }
  .voice-cont__stage-list:after {
    content: '';
    width: calc(100% - 1rem);
    height: 0.1rem;
    position: absolute;
    bottom: -1.6rem;
    left: 0;
    display: block;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: right;
  }
  .voice-cont__stage-list:nth-child(even) {
    background: none;
  }
  .voice-cont__stage-list:nth-child(even):after {
    right: 0;
    left: unset;
  }
}
.voice-cont__stage-list:nth-child(3), .voice-cont__stage-list:last-child {
  background: none;
}
@media screen and (max-width: 768px) {
  .voice-cont__stage-list:nth-child(3) {
    background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
    background-size: 1px 8px;
    background-repeat: repeat-y;
    background-position: right;
  }
}
.voice-cont__stage-list:last-child {
  width: 38%;
  margin-right: -5%;
}
@media screen and (max-width: 768px) {
  .voice-cont__stage-list:last-child {
    width: 50%;
    margin-right: 0;
  }
  .voice-cont__stage-list:last-child:after {
    content: none;
  }
}
.voice-cont__stage-num {
  font-size: 3.2rem;
  font-family: 'Roboto';
  line-height: 1;
}
.voice-cont__stage-star {
  letter-spacing: 0.2rem;
}
.voice-cont__feedback {
  grid-area: feedback;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  grid-template-rows: max-content max-content;
  gap: 2.4rem 4rem;
  grid-auto-flow: row;
  margin-bottom: 4.8rem;
  grid-template-areas: "ttl ttl""txt doc""image doc";
}
@media screen and (max-width: 768px) {
  .voice-cont__feedback {
    gap: 3.2rem 0rem;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "ttl""txt""image""doc";
  }
}
.voice-cont__feedback .voice-cont__ttl {
  grid-area: ttl;
  margin-bottom: 0.8rem;
}
.voice-cont__feedback-txt {
  grid-area: txt;
}
.voice-cont__feedback-image {
  grid-area: image;
}
.voice-cont__feedback-doc {
  grid-area: doc;
}
.pf-reason {
  max-width: 102.9rem;
  margin: -8rem auto 8rem;
  box-sizing: unset;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-reason {
    width: calc(97% - 150px);
    margin: -8rem 0 8rem;
    padding: 8rem 0 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .pf-reason {
    width: 100%;
    margin: -8rem auto 5rem;
  }
}
.pf-reason__row {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .pf-reason__row {
    flex-direction: column;
    padding: 0 2.4rem;
  }
}
.pf-reason__sec {
  padding: 0 1.4rem 0;
  width: 33.3%;
  position: relative;
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1024px) {
  .pf-reason__sec {
    width: 100%;
    padding: 0 0 2.4rem;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
    margin-bottom: 1.4rem;
  }
}
.pf-reason__sec:first-child {
  background: none;
}
.pf-reason__sec:nth-child(3n + 1) {
  background: none;
}
@media screen and (max-width: 1024px) {
  .pf-reason__sec:nth-child(3n + 1) {
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    background-position: bottom;
  }
}
.pf-reason__sec:nth-child(n + 7) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .pf-reason__sec:nth-child(n + 7) {
    margin-bottom: 1.4rem;
  }
}
.pf-reason__sec:nth-child(n + 4):before {
  content: '';
  display: block;
  width: calc(100% - 2.8rem);
  height: 1px;
  position: absolute;
  top: -3rem;
  left: 1.4rem;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 1024px) {
  .pf-reason__sec:nth-child(n + 4):before {
    content: none;
  }
}
.pf-reason__sec-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 2.6rem;
}
.pf-reason__sec-num {
  color: #E7380D;
  text-align: center;
}
.pf-reason__sec-num span {
  display: block;
  font-size: 5.6rem;
  line-height: 1;
  font-family: 'Roboto';
}
.pf-reason__sec-ttl {
  font-size: 1.5rem;
  color: #012E49;
  font-weight: bold;
  line-height: calc(24/15);
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pf-reason__sec-ttl {
    font-size: 1.4rem;
  }
}
.pf-intro {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-intro {
    max-width: calc(102.9rem + 150px);
    padding: 8rem 0 0 150px;
    margin: 0 3rem 8rem 0;
  }
}
.pf-intro__sec {
  max-width: 102.9rem;
  margin: -8rem auto 6rem;
  padding-top: 8rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__sec {
    width: 100%;
    padding: 8rem 2.4rem 0;
    margin-bottom: 3.5rem;
  }
}
.pf-intro__lead {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .pf-intro__lead {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .pf-intro__lead {
    font-size: 1.6rem;
  }
}
.pf-intro__desc {
  margin-bottom: 4.8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pf-intro__desc {
    font-size: 1.4rem;
    text-align: left;
  }
}
.pf-intro__image {
  display: flex;
  width: 111.5rem;
  justify-content: space-between;
  margin: 0 auto;
}
.pf-intro__image._ptrow2 {
  max-width: 95rem;
  margin-top: -1rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__image._ptrow2 {
    width: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .pf-intro__image {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .pf-intro__image, .pf-intro__image._ptrow2 {
    max-width: 620px;
    margin: auto;
    display: block;
  }
}
.pf-intro__slider {
  width: 620px;
}
.pf-intro__slider._ptrow2 {
  width: 620px;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider._ptrow2 {
    width: 100%;
  }
}
.pf-intro__slider._ptrow2 .slick-slide img {
  padding-top: 1rem;
}
.pf-intro__slider-num {
  color: #E7380D;
  text-align: center;
  font-weight: bold;
  margin-right: 4rem;
  width: 8.4rem;
  background: #fff;
  position: absolute;
  top: 0rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider-num {
    font-size: 1.4rem;
    width: 5.6rem;
  }
}
.pf-intro__slider-num span {
  display: block;
  font-size: 5.6rem;
  line-height: 1;
  font-family: 'Roboto';
}
@media screen and (max-width: 768px) {
  .pf-intro__slider-num span {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pf-intro__slider {
    width: 100%;
  }
}
.pf-intro__slider .slick-prev, .pf-intro__slider .slick-next {
  width: 3.2rem;
  height: 3.2rem;
  background: #F0F0F0;
  border: none;
  top: 14.7rem;
  z-index: 2;
}
.pf-intro__slider .slick-prev:after, .pf-intro__slider .slick-next:after {
  background: #012E49;
  border-color: #012E49;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-prev, .pf-intro__slider .slick-next {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.pf-intro__slider .slick-prev:before, .pf-intro__slider .slick-next:before {
  width: 1.2rem;
  height: 1.2rem;
  border-right-color: #000;
  border-bottom-color: #000;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-prev:before, .pf-intro__slider .slick-next:before {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.pf-intro__slider .slick-prev:hover, .pf-intro__slider .slick-next:hover {
  border: none;
}
.pf-intro__slider .slick-prev:hover:before, .pf-intro__slider .slick-next:hover:before {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-prev, .pf-intro__slider .slick-next {
    top: 21vw;
  }
}
.pf-intro__slider .slick-prev {
  left: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-prev {
    left: 0.8rem;
  }
}
.pf-intro__slider .slick-next {
  right: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-next {
    right: 0.8rem;
  }
}
.pf-intro__slider .slick-prev:before {
  left: 1.3rem;
  top: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-prev:before {
    left: 0.9rem;
    top: 0.7rem;
  }
}
.pf-intro__slider .slick-next:before {
  left: 0.7rem;
  top: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-next:before {
    left: 0.5rem;
    top: 0.7rem;
  }
}
.pf-intro__slider .slick-dots {
  bottom: unset;
  top: 32.5rem;
}
@media screen and (max-width: 768px) {
  .pf-intro__slider .slick-dots {
    bottom: unset;
    top: calc(44vw + 1rem);
  }
}
.pf-intro__slider .slick-dots li {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.8rem;
}
.pf-intro__slider .slick-dots li.slick-active button {
  width: 0.8rem;
  height: 0.8rem;
}
.pf-intro__slider .slick-dots li.slick-active button:before {
  width: 0.8rem;
  height: 0.8rem;
  background: #012E49;
}
.pf-intro__slider .slick-dots li button {
  width: 0.8rem;
  height: 0.8rem;
}
.pf-intro__slider .slick-dots li button:before {
  width: 0.8rem;
  height: 0.8rem;
  top: 0;
}
.pf-intro__slider-desc {
  margin-top: 5.2rem;
  text-align: center;
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .pf-intro__slider-desc {
    font-size: 1.4rem;
    margin-top: 4.5rem;
  }
}
.pf-intro__slider-desc span {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .pf-intro__slider-desc span {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.pf-intro__thumbs {
  width: calc(100% - 630px);
}
@media screen and (max-width: 1024px) {
  .pf-intro__thumbs {
    display: none !important;
  }
}
.pf-intro__thumbs._ptrow2 {
  width: calc(100% - 630px);
  margin-top: 1rem;
}
.pf-intro__thumbs._ptrow2 .slick-slide {
  width: calc(50% - 0.3rem) !important;
}
.pf-intro__thumbs .slick-track {
  transform: unset !important;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.pf-intro__thumbs .slick-slide {
  float: none !important;
  width: calc(33.3333% - 0.4rem) !important;
  background: #000;
  border: none;
  overflow: hidden;
}
@media screen and (max-width: 1100px) {
  .pf-intro__thumbs .slick-slide {
    width: calc(46.5% - 0.4rem) !important;
  }
}
@media screen and (max-width: 1024px) {
  .pf-intro__thumbs .slick-slide {
    margin: 0 0.2rem;
  }
}
.pf-intro__thumbs .slick-slide img {
  width: 100%;
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}
.pf-intro__thumbs .slick-slide:hover img {
  opacity: 1;
  transform: scale(1.25);
}
.pf-intro__thumbs .slick-slide.slick-current img {
  opacity: 1;
}
.pf-intro__thumbs .slick-track:before, .pf-intro__thumbs .slick-track:after {
  content: none !important;
}
.pf-points {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-points {
    max-width: calc(102.9rem + 150px);
    padding: 8rem 0 0 150px;
    margin: 0 3rem 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-points {
    margin-bottom: 7rem;
  }
}
.pf-points__ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-points__ttl {
    margin-bottom: 2rem;
    padding: 0 2.4rem;
  }
}
.pf-points__ttl._left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .pf-points__ttl._left {
    text-align: center;
  }
}
.pf-points__ttl._left .module-title__jp:before {
  left: calc(4.2rem);
}
@media screen and (max-width: 768px) {
  .pf-points__ttl._left .module-title__jp:before {
    left: calc(50%);
  }
}
.pf-points__ttl._left .module-title__jp:after {
  left: calc(0);
}
@media screen and (max-width: 768px) {
  .pf-points__ttl._left .module-title__jp:after {
    left: calc(50% - 2.4rem);
  }
}
.pf-points__ttl-en {
  font-size: 2.4rem;
  color: #E7380D;
  display: block;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.6rem;
}
.pf-points__ttl-en:before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  bottom: 0;
  left: calc(50%);
}
@media screen and (max-width: 768px) {
  .pf-points__ttl-en:before {
    height: 0.2rem;
    width: 2.4rem;
  }
}
.pf-points__ttl-en:after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  bottom: 0;
  left: calc(50% - 4.2rem);
}
@media screen and (max-width: 768px) {
  .pf-points__ttl-en:after {
    height: 0.2rem;
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
}
@media screen and (max-width: 768px) {
  .pf-points__ttl-en {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.pf-points__ttl-jp {
  font-size: 4rem;
  display: block;
  position: relative;
  padding-top: 2rem;
  line-height: calc(40/32);
}
@media screen and (max-width: 1024px) {
  .pf-points__ttl-jp {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .pf-points__ttl-jp {
    font-size: 2.8rem;
    padding-top: 1.6rem;
  }
}
.pf-points__ttl-fukidashi {
  position: relative;
  background: #012E49;
  border-radius: 5px;
  padding: 1.2rem 10px;
  text-align: center;
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 0rem;
  width: 42rem;
  line-height: calc(28/22);
  display: block;
}
@media screen and (max-width: 768px) {
  .pf-points__ttl-fukidashi {
    font-size: 1.6rem;
    letter-spacing: 0;
    width: 90%;
  }
}
.pf-points__ttl-fukidashi:after {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(0, 153, 255, 0);
  border-top-width: 12px;
  border-bottom-width: 10px;
  border-left-width: 0px;
  border-right-width: 16px;
  margin-left: -10px;
  border-top-color: #012E49;
  top: 100%;
  left: 50%;
}
.pf-points__sec {
  display: flex;
  max-width: 85.4rem;
  margin: 0 auto;
  padding: 4.8rem 0;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-position: bottom;
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 1024px) {
  .pf-points__sec {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pf-points__sec {
    width: calc(100% - 4.8rem);
    margin: 0 auto;
    padding: 1.4rem 0 2.4rem;
    flex-direction: column;
  }
}
.pf-points__sec-num {
  color: #E7380D;
  text-align: center;
  font-weight: bold;
  margin-right: 4rem;
}
@media screen and (max-width: 768px) {
  .pf-points__sec-num {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.pf-points__sec-num span {
  display: block;
  font-size: 5.6rem;
  line-height: 1;
  font-family: 'Roboto';
}
.pf-points__sec-lead {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .pf-points__sec-lead {
    font-size: 1.6rem;
    margin-bottom: 1.6rem;
  }
}
.pf-flow {
  max-width: 102.8rem;
  margin: -8rem auto 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-flow {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-flow {
    width: 100%;
    margin-bottom: 6rem;
  }
}
.pf-flow__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pf-flow__row {
    padding: 0 2.4rem;
    flex-direction: column;
  }
}
.pf-flow__row._first .pf-flow__sec {
  background: none;
}
.pf-flow__sec {
  width: calc(33.3333% - 2rem);
  padding-bottom: 2.4rem;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-position: top;
  background-size: 8px 1px;
  background-repeat: repeat-x;
  padding-top: 3.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pf-flow__sec {
    background: none;
    width: 100%;
    padding-top: 3.6rem;
    padding-bottom: 1rem;
  }
}
.pf-flow__sec:after {
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  left: calc(100%);
  top: 34%;
}
@media screen and (max-width: 768px) {
  .pf-flow__sec:after {
    transform: rotate(45deg);
    top: 100%;
    left: calc(50% - 1rem);
  }
}
.pf-flow__sec:last-child:after {
  content: none;
}
@media screen and (max-width: 768px) {
  .pf-flow__sec:last-child:after {
    content: '';
    width: 1.5rem;
    height: 1.5rem;
    border-right: 0.2rem solid #E7380D;
    border-bottom: 0.2rem solid #E7380D;
    border-top: 0.2rem solid transparent;
    border-left: 0.2rem solid transparent;
    display: block;
    position: absolute;
    transform: rotate(45deg);
    top: 100%;
    left: calc(50% - 1rem);
  }
}
.pf-flow__sec._sp-last:after {
  content: none;
}
@media screen and (max-width: 768px) {
  .pf-flow__sec-thumb img {
    width: 100%;
  }
}
.pf-flow__sec-ttl {
  font-size: 1.8rem;
  color: #012E49;
  font-weight: bold;
  text-align: center;
  padding: 1.3rem 0;
}
@media screen and (max-width: 768px) {
  .pf-flow__sec-ttl {
    font-size: 1.6rem;
    padding: 1.3rem 0 0.7rem;
  }
}
.pf-merit {
  max-width: 102.8rem;
  margin: -8rem auto 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-merit {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-merit {
    width: 100%;
  }
}
.pf-merit__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7rem 0;
}
@media screen and (max-width: 768px) {
  .pf-merit__row {
    flex-direction: column;
    padding: 0 2.4rem;
    gap: 4rem 0;
  }
}
.pf-merit__sec {
  width: calc(50% - 2rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .pf-merit__sec {
    width: 100%;
    max-width: 494px;
    margin: auto;
  }
}
.pf-merit__sec-num {
  color: #E7380D;
  text-align: center;
  font-weight: bold;
  margin-right: 4rem;
  width: 8.4rem;
  background: #fff;
  position: absolute;
  top: 0rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .pf-merit__sec-num {
    font-size: 1.4rem;
    width: 5.6rem;
  }
}
.pf-merit__sec-num span {
  display: block;
  font-size: 5.6rem;
  line-height: 0.8;
  font-family: 'Roboto';
}
@media screen and (max-width: 768px) {
  .pf-merit__sec-num span {
    font-size: 3.6rem;
  }
}
.pf-merit__sec-thumb {
  padding-top: 3.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .pf-merit__sec-thumb {
    padding-top: 2.4rem;
  }
}
.pf-merit__sec-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #012E49;
}
@media screen and (max-width: 768px) {
  .pf-merit__sec-ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.pf-type {
  max-width: 102.8rem;
  margin: -8rem auto 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-type {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -4rem 3rem 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-type {
    width: 100%;
  }
}
.pf-type__xpel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  line-height: calc(28/15);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .pf-type__xpel {
    flex-direction: column;
    text-align: center;
  }
}
.pf-type__xpel-logo {
  margin-right: 3.2rem;
}
@media screen and (max-width: 768px) {
  .pf-type__xpel-logo {
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .pf-type__xpel-lead {
    padding: 0 4rem;
    text-align: center;
  }
}
.pf-type__row {
  max-width: 88.6rem;
  margin: 0 auto 8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 7rem 0;
}
@media screen and (max-width: 768px) {
  .pf-type__row {
    width: 100%;
    flex-direction: column;
    padding: 0 2.4rem;
    margin-bottom: 7rem;
  }
}
.pf-type__sec {
  width: calc(50% - 2rem);
  position: relative;
}
@media screen and (max-width: 768px) {
  .pf-type__sec {
    width: 100%;
  }
}
.pf-type__sec:first-child:after {
  content: '';
  width: 0.1rem;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(-2rem);
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-position: right;
  background-size: 1px 8px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .pf-type__sec:first-child:after {
    content: none;
  }
}
.pf-type__sec-fukidashi {
  border-top: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding: 0.6rem 0;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .pf-type__sec-fukidashi {
    font-size: 1.6rem;
  }
}
.pf-type__sec-fukidashi:after {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-right: 0.1rem solid #000;
  border-bottom: 0.1rem solid #000;
  background: #fff;
  position: absolute;
  left: calc(50% - 0.9rem);
  top: calc(100% - 0.7rem);
  transform: rotate(45deg);
}
.pf-type__sec-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .pf-type__sec-ttl {
    font-size: 1.6rem;
  }
}
.pf-type__sec-jp {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-type__sec-jp {
    font-size: 1.4rem;
  }
}
.pf-type__sec-feature {
  padding: 0 0 0 14%;
  font-size: 1.5rem;
  line-height: calc(28/15);
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .pf-type__sec-feature {
    padding: 0 1rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.pf-type__sec-feature li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: #012E49;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem;
}
.pf-type__sec-image + .pf-type__sec-image {
  margin-top: 1.6rem;
}
.pf-parts {
  max-width: 102.8rem;
  margin: -8rem auto 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-parts {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 6rem 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-parts {
    width: 100%;
    margin-bottom: 7rem;
  }
  .pf-type__sec-image {
    margin: 0 auto;
    max-width: 423px;
  }
  .pf-type__sec-image + .pf-type__sec-image {
    margin: 1.6rem auto 0;
  }
}
.pf-parts__tab {
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.3rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 1024px) {
  .pf-parts__tab {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .pf-parts__tab {
    padding: 0 2.4rem;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 2rem;
  }
}
.pf-parts__tab li {
  position: relative;
  border-bottom: 0.1rem solid #C8C8C8;
  font-size: 1.5rem;
  padding-bottom: 0.4rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .pf-parts__tab li {
    font-size: 1.4rem;
  }
}
.pf-parts__tab li:before {
  width: 1.6rem;
  height: 1.6rem;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 1rem);
  background: url(../img/common/c-arrow-circle.svg) no-repeat;
  background-size: contain;
}
.pf-parts__tab li:hover {
  color: #E7380D;
}
.pf-parts__tab li:after {
  content: '';
  width: 0;
  transition: 0.3s ease;
  border-bottom: 0.1rem solid #E7380D;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}
.pf-parts__tab li:hover:after {
  width: 100%;
}
.pf-parts__cont {
  background: #F5F5F5;
  padding: 4.3rem 7.5rem 4.3rem 4.8rem;
}
@media screen and (max-width: 1024px) {
  .pf-parts__cont .pf-parts__sec-row {
    display: block;
  }
  .pf-parts__cont .pf-parts__sec-image {
    text-align: center;
    margin: 3% auto 0;
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .pf-parts__cont {
    padding: 2rem 1.2rem;
    margin: 0 2.4rem;
  }
}
.pf-parts__sec.hide {
  display: none;
}
.pf-parts__sec-row {
  display: grid;
  grid-template-columns: 32rem 1fr;
  gap: 0 7.7rem;
}
@media screen and (max-width: 768px) {
  .pf-parts__sec-row {
    display: block;
  }
}
.pf-parts__sec-name {
  font-size: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  color: #012E49;
  font-weight: bold;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-position: bottom;
  background-size: 8px 1px;
  background-repeat: repeat-x;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pf-parts__sec-name {
    padding-top: 0;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .pf-parts__sec-txt {
    margin-bottom: 1.6rem;
  }
}
.pf-price {
  margin: -8rem auto 8rem;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .pf-price {
    width: 100%;
    margin-bottom: 6.4rem;
  }
}
.pf-price__image {
  width: 96%;
  text-align: center;
  max-width: 671px;
  margin: 0 auto 2.5rem
}
@media screen and (max-width: 768px) {
  .pf-price__image {
    padding: 2rem 2.4rem 0;
  }
}
.pf-price__table {
  line-height: 1.5;
  width: 90%;
  max-width: 1240px;
  margin: 0 auto 150px;
  overflow: auto;
}
.pf-price__table + .pf-price__table {
  margin: -50px auto 150px;
}
.pf-price__table .js-scrollable {
  height: 60rem;
}
.pf-price__table table {
  text-align: center;
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-bottom: 0;
  position: relative;
  top: 0;
}
.pf-price__table table th {
  text-align: center;
  font-weight: 700;
  border: solid 1px #707070;
  pointer-events: none;
}
@media screen and (min-width: 1280px) {
  .pf-price__table {
    width: calc(90% - 40px);
    margin: 0 0 150px 150px;
  }
  .pf-price__table + .pf-price__table {
    margin: -50px 0 150px 150px;
  }
}
@media screen and (max-width: 768px) {
  .pf-price__table .js-scrollable {
    height: 70vh;
  }
  .pf-price__table {
    width: 90%;
    margin: 0 auto 10%;
  }
  .pf-price__table + .pf-price__table {
    margin: 0 auto 10%;
  }
  .pf-price__table table {
    min-width: 100rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .module-cta._price {
    width: 96.7%;
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: 0 3rem 6rem 0;
  }
  .module-cta._price .module-cta__bg {
    max-width: 1028px;
    width: calc(100% - 150px);
    right: 0;
    left: auto;
  }
  .module-cta._price .module-cta__sec {
    width: 85%;
  }
}
.pf-car {
  background: url("../img/protectionfilm/rental_bg.png") no-repeat center 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-car {
    max-width: 102.8rem;
    margin: 0 3rem 0 150px;
  }
}
@media screen and (max-width: 768px) {
  .pf-car {
    background: url("../img/protectionfilm/rental_bg_sp.png") no-repeat center 8rem;
    background-size: calc(100% - 4.8rem) auto;
  }
}
.pf-car__ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 3rem;
  padding-top: 33.2rem;
}
@media screen and (max-width: 768px) {
  .pf-car__ttl {
    margin-bottom: 2rem;
    padding-top: 45%;
  }
}
.pf-car__ttl._left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .pf-car__ttl._left {
    text-align: center;
  }
}
.pf-car__ttl._left .module-title__jp:before {
  left: calc(4.2rem);
}
@media screen and (max-width: 768px) {
  .pf-car__ttl._left .module-title__jp:before {
    left: calc(50%);
  }
}
.pf-car__ttl._left .module-title__jp:after {
  left: calc(0);
}
@media screen and (max-width: 768px) {
  .pf-car__ttl._left .module-title__jp:after {
    left: calc(50% - 2.4rem);
  }
}
.pf-car__ttl-en {
  font-size: 2rem;
  color: #E7380D;
  display: block;
  margin-bottom: 1.4rem;
}
@media screen and (max-width: 768px) {
  .pf-car__ttl-en {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.pf-car__ttl-jp {
  font-size: 2.4rem;
  display: block;
  position: relative;
  padding-top: 1.4rem;
  line-height: calc(40/32);
}
@media screen and (max-width: 768px) {
  .pf-car__ttl-jp {
    font-size: 2.4rem;
    padding-top: 1.6rem;
  }
}
.pf-car__ttl-jp:before {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: calc(50%);
}
@media screen and (max-width: 768px) {
  .pf-car__ttl-jp:before {
    height: 0.2rem;
    width: 2.4rem;
  }
}
.pf-car__ttl-jp:after {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: calc(50% - 3.2rem);
}
@media screen and (max-width: 768px) {
  .pf-car__ttl-jp:after {
    height: 0.2rem;
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
}
.pf-car__lead {
  width: 68rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 1024px) {
  .pf-car__lead {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pf-car__lead {
    padding: 0 2.4rem;
    margin-bottom: 4rem;
  }
}
.pf-car__row {
  max-width: 102.8rem;
  margin: 0 auto 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pf-car__row {
    width: 100%;
    flex-direction: column;
    padding: 0 2.4rem;
    margin-bottom: 6rem;
  }
}
.pf-car__sec {
  width: 20%;
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .pf-car__sec {
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    width: 100%;
  }
}
.pf-car__sec:first-child {
  background: none;
}
.pf-car__sec-num {
  font-size: 3.2rem;
  font-weight: bold;
  font-family: 'Roboto';
  text-align: center;
  display: block;
  line-height: 1;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .pf-car__sec-num {
    padding-top: 2.4rem;
    margin-bottom: 0.8rem;
  }
}
.pf-car__sec-desc {
  padding: 0 1.6rem 0 1.6rem;
  text-align: justify;
  font-size: 1.5rem;
  line-height: calc(28/15);
}
@media screen and (max-width: 768px) {
  .pf-car__sec-desc {
    text-align: center;
    padding: 0 0 1.6rem 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-delivery {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 0 0;
  }
}
.pf-delivery__lead {
  text-align: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .pf-delivery__lead {
    text-align: left;
    padding: 0 2.4rem;
    margin-bottom: 4rem;
  }
}
.pf-delivery__wrap {
  max-width: 102.8rem;
  margin: 0 auto 8rem;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap {
    width: 100%;
    padding: 0 2.4rem;
    margin-bottom: 6rem;
  }
}
.pf-delivery__wrap-sec {
  display: flex;
}
.pf-delivery__wrap-sec + .pf-delivery__wrap-sec {
  margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-sec + .pf-delivery__wrap-sec {
    margin-top: 0.6rem;
  }
}
.pf-delivery__wrap-sec:first-child .pf-delivery__wrap-num:before {
  content: none;
}
.pf-delivery__wrap-sec:last-child .pf-delivery__wrap-num:after {
  content: none;
}
.pf-delivery__wrap-num {
  width: 7rem;
  text-align: center;
  font-size: 2.8rem;
  font-family: 'Roboto';
  font-weight: bold;
  background: #012E49;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-num {
    font-size: 1.6rem;
    width: 3.2rem;
  }
}
.pf-delivery__wrap-num:before {
  content: '';
  background: #ffffff;
  height: calc(tan(60deg) * 8px / 2);
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 1px, 50% 100%, 0 1px);
  position: absolute;
  top: -0.1rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-num:before {
    height: calc(tan(60deg) * 5px / 2);
  }
}
.pf-delivery__wrap-num:after {
  content: '';
  background: #012E49;
  height: calc(tan(60deg) * 8px / 2);
  width: 100%;
  clip-path: polygon(0 0, 100% 0%, 100% 1px, 50% 100%, 0 1px);
  position: absolute;
  top: calc(100% - 0.1rem);
  left: 0;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-num:after {
    height: calc(tan(60deg) * 5px / 2);
  }
}
.pf-delivery__wrap-txt {
  width: calc(100% - 7rem);
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-txt {
    width: calc(100% - 3.2rem);
  }
}
.pf-delivery__wrap-txt p {
  padding: 1.8rem 2.4rem;
  background: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .pf-delivery__wrap-txt p {
    font-size: 1.4rem;
    padding: 1rem;
  }
}
.pf-delivery__wrap-txt p.pf-delivery__wrap-caution {
  background: #fff;
  font-size: 1.4rem;
  line-height: calc(24/14);
}
.pf-question {
  margin-bottom: 12.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1366px) {
  .pf-question {
    max-width: calc(102.8rem + 150px);
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .pf-question {
    margin-bottom: 7rem;
  }
}
.pf-question__lead {
  text-align: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .pf-question__lead {
    font-size: 1.4rem;
    padding: 0 2.4rem;
    text-align: left;
    margin-bottom: 4rem;
  }
}
.pf-question__sec {
  max-width: 102.8rem;
  margin: 0 auto 10%;
}
@media screen and (max-width: 768px) {
  .pf-question__sec {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.pf-question__list__item {
  border: 0.1rem solid #000;
  border-radius: 0.5rem;
  padding: 0 2.8rem 0;
}
.pf-question__list__item + .pf-question__list__item {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .pf-question__list__item {
    padding: 0 1.2rem 0;
  }
}
.pf-question__list__item-ttl {
  padding: 1.1rem 1.5rem 1.1rem 0;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .pf-question__list__item-ttl {
    font-size: 1.4rem;
  }
}
.pf-question__list__item-ttl span {
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-size: 2rem;
  color: #E7380D;
}
@media screen and (max-width: 768px) {
  .pf-question__list__item-ttl span {
    top: calc(50% - 1.4rem);
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pf-question__list__item-ttl {
    font-size: 1.4rem;
    padding: 1.8rem 3rem 1.5rem;
  }
}
.pf-question__list__item-ttl:before, .pf-question__list__item-ttl:after {
  content: '';
  width: 1.6rem;
  transition: 0.2s ease-in-out;
  border-bottom: 2px solid #000;
  display: block;
  position: absolute;
}
.pf-question__list__item-ttl:before {
  right: 0rem;
  top: calc(50%);
}
.pf-question__list__item-ttl:after {
  right: 0rem;
  top: calc(50%);
  transform: rotate(90deg);
}
.pf-question__list__item-ttl.opened:before {
  transform: rotate(90deg);
  opacity: 0;
}
.pf-question__list__item-ttl.opened:after {
  transform: rotate(180deg);
}
.pf-question__list__item-cont {
  border-top: 0.1rem solid #C8C8C8;
  font-size: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 4rem;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .pf-question__list__item-cont {
    font-size: 1.4rem;
    padding: 1.6rem 3rem;
  }
}
.pf-question__list__item-cont span {
  font-size: 2rem;
  color: #E7380D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 768px) {
  .pf-question__list__item-cont span {
    font-size: 1.8rem;
    top: 1.4rem;
  }
}
.cc-intro {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1160px) {
  .cc-intro {
    padding: 8rem 0 0 150px;
    margin: 0 3rem 3.2rem 0;
  }
}
.cc-intro__sec-feature {
  font-size: 1.5rem;
  line-height: calc(28/15);
  max-width: 85.4rem;
  margin: 0 auto 2.4rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__sec-feature {
    width: 100%;
    padding: 0 2.4rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.cc-intro__sec-feature li {
  text-indent: -1.5em;
  margin-left: 1.5em;
}
.cc-intro__sec-feature li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: #012E49;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem;
}
.cc-intro__lead {
  margin-bottom: 4rem;
  max-width: 85.4rem;
  margin: 0 auto 4rem;
  line-height: calc(28/15);
}
@media screen and (max-width: 768px) {
  .cc-intro__lead {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.cc-intro__pro {
  max-width: 85.4rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__pro {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.cc-intro__pro-image {
  background: #000;
  padding: 5.8rem 0;
  text-align: center;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__pro-image {
    padding: 3.2rem 1.8rem;
  }
}
.cc-intro__pro-txt {
  font-size: 1.3rem;
  line-height: calc(20/13);
}
.cc-intro__row {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-position: top;
  background-size: 8px 1px;
  background-repeat: repeat-x;
  max-width: 85.4rem;
  margin: 0 auto;
  padding: 4.8rem 0;
  display: flex;
  justify-content: space-between;
  gap: 0 6.2rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__row {
    width: calc(100% - 4.8rem);
    padding: 4rem 0;
    flex-direction: column;
  }
}
.cc-intro__row._ptreverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .cc-intro__row._ptreverse {
    flex-direction: column;
  }
}
.cc-intro__row-thumb {
  width: 24.6rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__row-thumb {
    width: 100%;
    margin-bottom: 3.2rem;
  }
  .cc-intro__row-thumb img {
    width: 100%;
  }
}
.cc-intro__row-txt {
  font-size: 1.5rem;
  line-height: calc(28/15);
  max-width: calc(100% - 30.8rem);
}
@media screen and (max-width: 768px) {
  .cc-intro__row-txt {
    max-width: 100%;
    font-size: 1.4rem;
  }
}
.cc-intro__row-txt .module-btn {
  width: 26rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__row-txt .module-btn {
    width: 100%;
  }
}
.cc-intro__row-name {
  font-size: 3.2rem;
  color: #E7380D;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .cc-intro__row-name {
    font-size: 1.8rem;
  }
}
.cc-intro__row-tag {
  line-height: 1;
}
.cc-intro__row-feature {
  font-size: 1.5rem;
  line-height: calc(28/15);
  margin: 0 auto 1.4rem;
}
@media screen and (max-width: 768px) {
  .cc-intro__row-feature {
    width: 100%;
    padding: 0 0 0 0rem;
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.cc-intro__row-feature li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: #012E49;
  border-radius: 50%;
  display: inline-block;
  margin-right: 1rem;
}
.cc-intro__row-desc {
  margin-bottom: 2.4rem;
}
.cc-question {
  margin-bottom: 8rem;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  .cc-question {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .cc-question {
    margin-bottom: 7rem;
  }
}
.cc-question__lead {
  text-align: center;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .cc-question__lead {
    font-size: 1.4rem;
    padding: 0 2.4rem;
    text-align: left;
    margin-bottom: 4rem;
  }
}
.cc-question__sec {
  max-width: 88.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cc-question__sec {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.cc-question__list__item {
  border: 0.1rem solid #000;
  border-radius: 0.5rem;
  padding: 0 2.8rem 0;
}
.cc-question__list__item + .cc-question__list__item {
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .cc-question__list__item {
    padding: 0 1.2rem 0;
  }
}
.cc-question__list__item-ttl {
  padding: 1.1rem 2rem 1.1rem 0;
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .cc-question__list__item-ttl {
    font-size: 1.4rem;
  }
}
.cc-question__list__item-ttl span {
  position: absolute;
  left: 0;
  top: 1.2rem;
  font-size: 2rem;
  color: #E7380D;
}
@media screen and (max-width: 768px) {
  .cc-question__list__item-ttl span {
    top: calc(50% - 1.4rem);
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  .cc-question__list__item-ttl {
    font-size: 1.4rem;
    padding: 1.8rem 3rem 1.5rem 0;
  }
}
.cc-question__list__item-ttl:before, .cc-question__list__item-ttl:after {
  content: '';
  width: 1.6rem;
  transition: 0.2s ease-in-out;
  border-bottom: 2px solid #000;
  display: block;
  position: absolute;
}
.cc-question__list__item-ttl:before {
  right: 0rem;
  top: calc(50%);
}
.cc-question__list__item-ttl:after {
  right: 0rem;
  top: calc(50%);
  transform: rotate(90deg);
}
.cc-question__list__item-ttl.opened:before {
  transform: rotate(90deg);
  opacity: 0;
}
.cc-question__list__item-ttl.opened:after {
  transform: rotate(180deg);
}
.cc-question__list__item-cont {
  border-top: 0.1rem solid #C8C8C8;
  font-size: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .cc-question__list__item-cont {
    font-size: 1.4rem;
    padding: 1.6rem 0rem;
  }
}
.cc-question__list__item-cont span {
  font-size: 2rem;
  color: #E7380D;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 1rem;
}
@media screen and (max-width: 768px) {
  .cc-question__list__item-cont span {
    font-size: 1.8rem;
    top: 1.4rem;
  }
}
.cc-tech__row {
  display: flex;
  gap: 0 4rem;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cc-tech__row {
    flex-direction: column;
  }
}
.cc-tech__row-desc {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .cc-tech__row-desc {
    width: 100%;
  }
}
.cc-tech__row-image {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .cc-tech__row-image {
    width: 100%;
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1160px) {
  .carcare-service {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 0 0;
  }
}
.carcare-service__row {
  max-width: 102.8rem;
  margin: 0 auto 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: max-content max-content max-content max-content;
  grid-auto-columns: 1fr;
  gap: 1.3rem 1.6rem;
  grid-auto-flow: row;
  grid-template-areas: "s01 s01 s02 s03""s01 s01 s05 s05""s04 s04 s05 s05""s06 s07 s08 s08";
}
@media screen and (max-width: 768px) {
  .carcare-service__row {
    width: 100%;
    padding: 0 2.5rem;
    gap: 2.4rem 0;
    grid-template-columns: 1fr;
    grid-template-areas: "s01""s02""s03""s04""s05""s06""s07""s08";
  }
}
.carcare-service__s01 {
  grid-area: s01;
  display: block;
  height: auto;
}
.carcare-service__s02 {
  grid-area: s02;
  display: block;
}
.carcare-service__s03 {
  grid-area: s03;
  display: block;
}
.carcare-service__s04 {
  grid-area: s04;
  display: block;
}
.carcare-service__s05 {
  grid-area: s05;
  display: block;
}
.carcare-service__s06 {
  grid-area: s06;
  display: block;
}
.carcare-service__s07 {
  grid-area: s07;
  display: block;
}
.carcare-service__s08 {
  grid-area: s08;
  display: block;
}
.carcare-service__btn {
  position: relative;
  border-bottom: 0.1rem solid #C8C8C8;
  font-size: 1.5rem;
  padding-bottom: 0.4rem;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width:1160px) {
  .carcare-service__btn {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  .carcare-service__btn {
    font-size: 1.4rem;
  }
}
.carcare-service__btn:before {
  width: 1.6rem;
  height: 1.6rem;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 1rem);
  background: url(../img/common/c-arrow-circle.svg) no-repeat;
  background-size: contain;
}
.carcare-service__btn:after {
  content: '';
  width: 0;
  transition: 0.3s ease;
  border-bottom: 0.1rem solid #E7380D;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}
.carcare-service__image {
  overflow: hidden;
  margin-bottom: 1.2rem;
}
.carcare-service__image img {
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .carcare-service__image img {
    width: 100%;
  }
}
.carcare-service__sec {
  font-weight: bold;
  cursor: pointer;
  color: #000;
}
.carcare-service__sec:hover .carcare-service__btn:after {
  width: 100%;
}
.carcare-service__sec:hover .carcare-service__image img {
  transform: scale(1.25);
}
.carcare-service__modal-ttl {
  font-size: 4rem;
  font-family: 'Roboto';
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .carcare-service__modal-ttl {
    font-size: 2.3rem;
    margin-bottom: 0;
  }
}
.carcare-service__modal-jp {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .carcare-service__modal-jp {
    font-size: 1.6rem;
    margin-bottom: 3.2rem;
  }
}
.carcare-service__modal-row {
  max-width: 84.8rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .carcare-service__modal-row {
    width: 100%;
    flex-direction: column;
    gap: 2.4rem 0;
    padding-bottom: 0rem;
  }
}
.carcare-service__modal-thumb {
  width: 35.7rem;
}
@media screen and (max-width: 768px) {
  .carcare-service__modal-thumb {
    width: 100%;
  }
}
.carcare-service__modal-txt {
  width: calc(100% - 42rem);
}
@media screen and (max-width: 768px) {
  .carcare-service__modal-txt {
    width: 100%;
  }
}
.carcare-service__modal-desc {
  margin-bottom: 2.4rem;
}
.carcare-service__modal .module-btn {
  width: 31.6rem;
}
@media screen and (max-width: 768px) {
  .carcare-service__modal .module-btn {
    width: 100%;
  }
}
._about {
  position: relative;
}
._about:before {
  content: '';
  width: 4rem;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  background: #012E49;
  display: block;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-anchor {
    padding: 0 0 0 150px;
    margin: 0 3rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  ._about:before {
    width: 1.2rem;
  }
}
.about-anchor__lists {
  max-width: 102.8rem;
  margin: 0 auto 7.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0 3.4rem;
}
@media screen and (max-width: 768px) {
  .about-anchor__lists {
    margin-bottom: 3.7rem;
    width: 100%;
    flex-wrap: wrap;
    padding: 0 2.4rem;
    gap: 1.6rem 2.9rem;
  }
}
.about-anchor__link {
  position: relative;
  border-bottom: 0.1rem solid #C8C8C8;
  font-size: 1.8rem;
  padding-bottom: 0.4rem;
  display: block;
  padding-right: 3.2rem;
  color: #000;
  font-weight: bold;
}
.about-anchor__list {
  margin: 0 0 2%;
}
@media screen and (max-width: 768px) {
  .about-anchor__link {
    font-size: 1.4rem;
  }
}
.about-anchor__link:before {
  width: 1.6rem;
  height: 1.6rem;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 1rem);
  background: url(../img/common/c-arrow-circle-down.svg) no-repeat;
  background-size: contain;
}
.about-anchor__link:hover {
  color: #E7380D;
}
.about-anchor__link:after {
  content: '';
  width: 0;
  transition: 0.3s ease;
  border-bottom: 0.1rem solid #E7380D;
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
}
.about-anchor__link:hover:after {
  width: 100%;
}
.about-intro {
  margin-bottom: 6.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-intro {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-intro {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.about-intro__ttl {
  font-size: 3.5rem;
  color: #012E49;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .about-intro__ttl {
    font-size: 2.8rem;
    margin-bottom: 4rem;
  }
}
.about-intro__txt {
  font-size: 1.8rem;
  line-height: calc(27/18);
  width: 67rem;
  margin: 0 auto 8rem;
}
.about-intro__txt p + p {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .about-intro__txt {
    width: 100%;
    font-size: 1.6rem;
    margin-bottom: 4.8rem;
  }
}
.about-intro-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .about-intro-title {
    margin-bottom: 2rem;
  }
}
.about-intro-title__en {
  font-size: 2rem;
  color: #E7380D;
  display: block;
  margin-bottom: 1rem;
  font-family: 'Roboto';
}
@media screen and (max-width: 768px) {
  .about-intro-title__en {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }
}
.about-intro-title__jp {
  font-size: 2.4rem;
  display: block;
  position: relative;
  padding-top: 1.6rem;
  line-height: calc(40/32);
}
@media screen and (max-width: 768px) {
  .about-intro-title__jp {
    font-size: 2.4rem;
    padding-top: 1.6rem;
  }
}
.about-intro-title__jp:before {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #012E49;
  display: block;
  top: 0;
  left: calc(50%);
}
@media screen and (max-width: 768px) {
  .about-intro-title__jp:before {
    height: 0.2rem;
    width: 2.4rem;
  }
}
.about-intro-title__jp:after {
  position: absolute;
  content: '';
  height: 0.2rem;
  width: 3.2rem;
  background: #E7380D;
  display: block;
  top: 0;
  left: calc(50% - 3.2rem);
}
@media screen and (max-width: 768px) {
  .about-intro-title__jp:after {
    height: 0.2rem;
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
}
.about-intro__row {
  display: flex;
  justify-content: space-between;
  max-width: 102.8rem;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .about-intro__row {
    width: 100%;
    flex-direction: column;
    gap: 3.2rem 0;
  }
}
.about-intro__row-image {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 500px) {
  .about-intro__row-image {
    width: 100%;
    max-width: 326px;
    margin: auto;
  }
}
.about-promise {
  max-width: 102.8rem;
  margin: -8rem auto 6rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-promise {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-promise {
    width: 100%;
    margin-bottom: 0;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.about-promise__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  gap: 0 4rem;
}
@media screen and (max-width: 1024px) {
  .about-promise__row {
    gap: 0;
  }
}
.about-promise__sec {
  width: calc(33.3333% - 2.7rem);
  margin-bottom: 4.8rem;
  position: relative;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .about-promise__sec {
    width: 100%;
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.about-promise__sec:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  height: 100%;
  width: 0.1rem;
  background-image: linear-gradient(to bottom, #000 2px, transparent 2px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 1024px) {
  .about-promise__sec:after {
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    width: 100%;
    height: 0.1rem;
    right: 0;
    top: 100%;
  }
}
.about-promise__sec:nth-child(3):after, .about-promise__sec:last-child:after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .about-promise__sec:nth-child(3):after, .about-promise__sec:last-child:after {
    content: '';
  }
}
@media screen and (max-width: 1024px) {
  .about-promise__sec:last-child:after {
    content: none;
  }
}
.about-promise__sec-ttl {
  color: #012E49;
  margin-bottom: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .about-promise__sec-ttl {
    font-size: 1.6rem;
  }
}
.about-promise__sec-desc {
  font-size: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .about-promise__sec-desc {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-tech {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-tech {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.about-tech__ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .about-tech__ttl {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}
.about-tech__txt {
  max-width: 85.3rem;
  margin: 0 auto 4.8rem;
}
@media screen and (max-width: 768px) {
  .about-tech__txt {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 4rem;
  }
}
.about-tech__row {
  padding-left: 4rem;
  max-width: 115.4rem;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 768px) {
  .about-tech__row {
    width: 100%;
    padding-left: 0;
    margin-bottom: 2rem;
  }
}
.about-tech__sec {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .about-tech__sec {
    flex-direction: column;
    padding-top: 3.2rem;
    background-image: linear-gradient(to right, #000 2px, transparent 2px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    max-width: 580px;
    margin: auto;
  }
}
.about-tech__sec-thumb {
  width: 58rem;
}
@media screen and (max-width: 1024px) {
  .about-tech__sec-thumb {
    width: 100%;
    margin-bottom: 2.4rem;
  }
}
.about-tech__sec-txt {
  width: 49.5rem;
  padding: 2rem 0 0rem 4rem;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
@media screen and (max-width: 1024px) {
  .about-tech__sec-txt {
    width: 100%;
    padding: 0;
    font-size: 1.4rem;
    background: none;
    padding-bottom: 2.4rem;
  }
}
.about-tech__sec-ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1024px) {
  .about-tech__sec-ttl {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.about-tech__sec:first-child {
  background: none;
}
.about-tech__sec:first-child .about-tech__sec-txt {
  background: none;
}
.about-experience {
  background: #F5F5F5;
  max-width: 102.8rem;
  margin: 0 auto 6.8rem;
  padding: 4.8rem 8.7rem;
}
@media screen and (max-width: 768px) {
  .about-experience {
    width: 100%;
    padding: 2.4rem 1.6rem 2rem;
  }
}
.about-experience__ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-experience__ttl {
    font-size: 1.6rem;
  }
}
.about-staff {
  max-width: 102.8rem;
  margin: -8rem auto 6.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-staff {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-staff {
    width: 100%;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.about-staff__ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #012E49;
  margin-bottom: 4rem;
  line-height: calc(32/20);
}
@media screen and (max-width: 768px) {
  .about-staff__ttl {
    font-size: 1.6rem;
    text-align: center;
  }
}
.about-staff__sec-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #012E49;
  line-height: calc(29/18);
  display: inline-block;
  background: #fff;
  margin-top: -8rem;
  padding: 3.8rem 0 2.4rem;
  min-width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .about-staff__sec-ttl {
    width: calc(100% - 4.2rem);
    margin-top: -2.4rem;
    padding: 2.4rem 0 2rem;
    font-size: 1.6rem;
  }
}
.about-staff__sec-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .about-staff__sec-row {
    flex-direction: column;
    margin-bottom: 4rem;
  }
}
.about-staff__sec-desc {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 768px) {
  .about-staff__sec-desc {
    width: 100%;
  }
}
.about-movie {
  text-align: center;
  margin-bottom: 7.8rem;
}
.about-movie__thumb {
  margin-bottom: 1.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-movie {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-movie__thumb {
    padding: 0 2.4rem;
  }
}
.about-movie__thumb video {
  max-width: 68rem;
}
@media screen and (max-width: 768px) {
  .about-movie__thumb video {
    width: 100%;
    height: auto;
  }
}
.about-movie__ttl {
  color: #012E49;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about-movie__ttl {
    font-size: 1.6rem;
  }
}
.about-stafflist {
  max-width: 102.8rem;
  margin: -8rem auto 6.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-stafflist {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
@media screen and (max-width: 768px) {
  .about-stafflist {
    width: 100%;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.about-stafflist__row {
  display: flex;
  flex-wrap: wrap;
  gap: 4.8rem 4rem;
}
.about-stafflist__sec {
  width: calc(33.3333% - 2.7rem);
}
.about-stafflist__sec:first-child {
  width: 68rem;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .about-stafflist__sec {
    width: 100%;
  }
  .about-stafflist__sec:first-child {
    width: 100%;
  }
}
.about-stafflist__sec-name {
  color: #012E49;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 1.4rem 0 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-stafflist__sec-name {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .about-stafflist__sec-thumb img {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .about-recruitinfo {
    padding: 8rem 0 0 150px;
    margin: -8rem 3rem 8rem 0;
  }
}
.about-recruitinfo table {
  max-width: 85.4rem;
  margin: 0 auto 4.8rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about-recruitinfo table {
    width: calc(100% - 4.8rem);
    display: block;
  }
  .about-recruitinfo table tr, .about-recruitinfo table th, .about-recruitinfo table tbody, .about-recruitinfo table td {
    display: block;
    width: 100%;
  }
}
.about-recruitinfo tr:nth-child(odd) {
  background: #F5F5F5;
}
.about-recruitinfo th {
  vertical-align: middle;
  font-size: 1.8rem;
  width: 16rem;
  color: #012E49;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-recruitinfo th {
    text-align: center;
    font-size: 1.6rem;
  }
}
.about-recruitinfo th:after {
  content: '';
  height: 1.8rem;
  width: 0.1rem;
  background: #012E49;
  display: block;
  position: absolute;
  right: 0;
  top: calc(50% - 0.9rem);
}
@media screen and (max-width: 768px) {
  .about-recruitinfo th:after {
    height: 0.1rem;
    width: 1.8rem;
    right: calc(50% - 0.9rem);
    top: calc(100% - 1.6rem);
  }
}
.about-recruitinfo th, .about-recruitinfo td {
  padding: 2rem 3.2rem;
}
@media screen and (max-width: 768px) {
  .about-recruitinfo th {
    padding: 2.4rem 1.6rem 2.9rem;
  }
}
.about-recruitinfo td {
  font-size: 1.5rem;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .about-recruitinfo td {
    padding: 0 1.6rem 2.4rem;
    text-align: center;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .about-recruitinfo__lists li {
    text-align: left;
    text-indent: -2rem;
    margin-left: 2rem;
  }
}
.about-recruitinfo__lists li + li {
  margin-top: 0.3rem;
}
.about-recruitinfo__lists li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  display: inline-block;
  border-radius: 50%;
  background: #012E49;
  margin-right: 0.8rem;
  box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.16);
}
.about-recruitinfo__btn {
  text-align: center;
  padding-bottom: 8rem;
}
.about-recruitinfo__btn span {
  position: relative;
  z-index: 2;
}
.about-recruitinfo__btn-link {
  color: #fff;
  width: 50.6rem;
  margin: 0 auto;
  font-weight: bold;
  border: 1px solid #E7380D;
  background: #E7380D;
  font-size: 2rem;
  border-radius: 4rem;
  text-align: center;
  padding: 1.2rem 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .about-recruitinfo__btn-link {
    width: 24rem;
    font-size: 1.5rem;
  }
}
.about-recruitinfo__btn-link:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.about-recruitinfo__btn-link:after {
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 0.6rem);
}
.about-recruitinfo__btn-link:hover {
  box-shadow: none;
  color: #E7380D;
}
.about-recruitinfo__btn-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.about-recruitinfo__btn-link:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  z-index: 3;
}
.contact-sec__ttl {
  margin: 0 auto 1rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-sec__ttl {
    width: 100%;
    margin-bottom: 0;
  }
}
.contact-sec__ttl-privacy {
  margin-bottom: 2.8rem;
}
.contact-sec__ttl-bg {
  display: block;
  color: #fff;
  font-size: 2.4rem;
  width: 94%;
  max-width: 102.8rem;
  margin: 0 auto;
  position: relative;
}
.contact-sec__ttl-bg:before {
  content: "";
  display: block;
  position: absolute;
  right: calc(100% - 1px);
  min-width: 100px;
  width: calc(100vw - 100%);
  background: #012E49;
  height: 100%;
  top: 0;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .contact-sec__ttl-bg {
    width: 100%;
    font-size: 1.6rem;
  }
}
.contact-sec__ttl-txt {
  max-width: 102.8rem;
  margin: 0 auto;
  display: inline-block;
  background: #012E49;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0.8rem 8rem 0.8rem 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact-sec__ttl-txt {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.contact-sec__table {
  width: 102.8rem;
  margin: 0 auto 7.2rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__table {
    width: calc(100% - 4.8rem);
    display: block;
  }
  .contact-sec__table tr, .contact-sec__table th, .contact-sec__table tbody, .contact-sec__table td {
    display: block;
    width: 100%;
  }
}
.contact-sec__th {
  padding: 3.2rem 0;
  width: 29.4rem;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  vertical-align: middle;
  text-align: left;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact-sec__th {
    width: 100%;
    padding-bottom: 0;
    font-size: 1.6rem;
    background: none;
  }
}
.contact-sec__require {
  color: #fff;
  font-size: 1.4rem;
  background: #E7380D;
  display: inline-block;
  padding: 0.6rem 1.2rem 0.4rem;
  border-radius: 0.5rem;
  line-height: 1;
  vertical-align: 0.2rem;
  margin-left: 0.8rem;
}
.contact-sec__td {
  padding: 3.2rem 0;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: bottom;
  vertical-align: middle;
  font-size: 1.6rem;
  /* Safari */
}
@media screen and (max-width: 768px) {
  .contact-sec__td {
    padding-top: 2.4rem;
    font-size: 1.4rem;
  }
}
.contact-sec__td input[type="text"], .contact-sec__td input[type="tel"], .contact-sec__td input[type="email"], .contact-sec__td input[type="number"], .contact-sec__td textarea, .contact-sec__td select {
  border: 0.1rem solid #C8C8C8;
  background: #f5f5f5;
  padding: 0.3rem;
  max-width: 100%;
}
.contact-sec__td input[type="text"].w100, .contact-sec__td input[type="tel"].w100, .contact-sec__td input[type="email"].w100, .contact-sec__td input[type="number"].w100, .contact-sec__td textarea.w100, .contact-sec__td select.w100 {
  width: 68rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__td input[type="text"].w100, .contact-sec__td input[type="tel"].w100, .contact-sec__td input[type="email"].w100, .contact-sec__td input[type="number"].w100, .contact-sec__td textarea.w100, .contact-sec__td select.w100 {
    width: 100%;
  }
}
.contact-sec__td input[type="text"].w274, .contact-sec__td input[type="tel"].w274, .contact-sec__td input[type="email"].w274, .contact-sec__td input[type="number"].w274, .contact-sec__td textarea.w274, .contact-sec__td select.w274 {
  width: 27.4rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__td input[type="text"].w274, .contact-sec__td input[type="tel"].w274, .contact-sec__td input[type="email"].w274, .contact-sec__td input[type="number"].w274, .contact-sec__td textarea.w274, .contact-sec__td select.w274 {
    width: calc(100% - 7em);
  }
}
.contact-sec__td input[type="text"]._address, .contact-sec__td input[type="tel"]._address, .contact-sec__td input[type="email"]._address, .contact-sec__td input[type="number"]._address, .contact-sec__td textarea._address, .contact-sec__td select._address {
  margin-bottom: 2rem;
}
.contact-sec__td textarea {
  height: 20rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__td textarea {
    height: 13rem;
  }
}
.contact-sec__td a {
  color: #1A0DAB;
  text-decoration: underline;
}
.contact-sec__td .horizontal-item {
  margin-left: 0;
}
.contact-sec__td input[type="radio"] {
  display: none;
}
.contact-sec__td .mwform-radio-field-text {
  margin-right: 40px;
  padding-left: 3.2rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-sec__td .mwform-radio-field-text {
    padding-left: 2.4rem;
    margin-right: 2rem;
  }
}
.contact-sec__td .mwform-radio-field-text::before {
  background: #F5F5F5;
  border: 1px solid #C8C8C8;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__td .mwform-radio-field-text::before {
    width: 2rem;
    height: 2rem;
  }
}
.contact-sec__td input[type="radio"]:checked + .mwform-radio-field-text::after {
  background-color: #E7380D;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 5px;
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 768px) {
  .contact-sec__td input[type="radio"]:checked + .mwform-radio-field-text::after {
    width: 1.2rem;
    height: 1.2rem;
    top: 3px;
    left: 4px;
  }
}
.contact-sec__td _::-webkit-full-page-media, .contact-sec__td _:future, .contact-sec__td :root .mwform-radio-field-text::before {
  top: -1px;
}
.contact-sec__td _::-webkit-full-page-media, .contact-sec__td _:future, .contact-sec__td :root input[type="radio"]:checked + .mwform-radio-field-text::after {
  top: 3px;
}
.contact-sec__td .error {
  font-weight: bold;
  margin-top: 1.4rem;
  color: #E7380D;
}
.contact-sec__txt1 {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 0.8rem;
  vertical-align: middle;
}
.contact-sec__txt2 {
  font-size: 1.6rem;
  display: inline-block;
  margin-right: 0.8rem;
  vertical-align: middle;
}
.contact-sec__name {
  margin-right: 5.6rem;
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__name {
    width: calc(100% - 1.5em - 0.8rem);
    margin-right: 0;
  }
}
.contact-sec__name2 {
  margin-right: 5.6rem;
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__name2 {
    width: calc(100% - 1.5em - 0.8rem);
    margin-right: 0;
    margin-top: 1.6rem;
  }
}
.contact-sec__name3 {
  margin-right: 5.6rem;
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__name3 {
    width: calc(100% - 2.7em - 0.8rem);
    margin-right: 0;
  }
}
.contact-sec__name4 {
  margin-right: 5.6rem;
  width: 16rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__name4 {
    width: calc(100% - 2.7em - 0.8rem);
    margin-right: 0;
    margin-top: 1.6rem;
  }
}
.contact-sec__maildesc {
  margin-top: 0.8rem;
  font-size: 1.3rem;
  line-height: calc(24/13);
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .contact-sec__maildesc {
    margin-top: 1.5rem;
  }
}
.contact-sec__pp {
  font-size: 1.6rem;
  padding-left: 1.5em;
  padding-top: 1rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__pp {
    font-size: 1.3rem;
  }
}
.contact-sec__doui {
  margin-right: 1rem;
}
.contact-sec__radiolist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 0;
}
.contact-sec__radiolist .mwform-radio-field-text {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .contact-sec__radiolist._vertical {
    grid-template-columns: 1fr;
  }
}
.contact-sec__btns {
  display: flex;
  gap: 0 4rem;
  justify-content: center;
  width: 85.4rem;
  margin: 0 auto 7.8rem;
}
@media screen and (max-width: 768px) {
  .contact-sec__btns {
    flex-direction: column-reverse;
    width: 100%;
    padding: 0 2.4rem;
    gap: 4rem 0;
  }
}
.contact-sec__backbtn {
  color: #fff;
  width: calc(50% - 2rem);
  margin: 0 auto;
  font-weight: bold;
  border: 1px solid #969696;
  background: #969696;
  font-size: 2rem;
  border-radius: 4rem;
  text-align: center;
  padding: 1.2rem 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-sec__backbtn {
    width: 100%;
    font-size: 1.5rem;
  }
}
.contact-sec__backbtn span {
  position: relative;
  z-index: 3;
}
.contact-sec__backbtn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.contact-sec__backbtn:after {
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(135deg);
  position: absolute;
  left: 2.5rem;
  top: calc(50% - 0.6rem);
}
.contact-sec__backbtn:hover {
  box-shadow: none;
  color: #969696;
}
.contact-sec__backbtn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.contact-sec__backbtn:hover:after {
  border-right: 0.2rem solid #969696;
  border-bottom: 0.2rem solid #969696;
  z-index: 3;
}
.contact-sec__sendbtn {
  color: #fff;
  width: calc(50% - 2rem);
  margin: 0 auto;
  font-weight: bold;
  border: 1px solid #E7380D;
  background: #E7380D;
  font-size: 2rem;
  border-radius: 4rem;
  text-align: center;
  padding: 1.2rem 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-sec__sendbtn {
    width: 100%;
    font-size: 1.5rem;
  }
}
.contact-sec__sendbtn span {
  position: relative;
  z-index: 3;
}
.contact-sec__sendbtn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.contact-sec__sendbtn:after {
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 0.6rem);
}
.contact-sec__sendbtn:hover {
  box-shadow: none;
  color: #E7380D;
}
.contact-sec__sendbtn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.contact-sec__sendbtn:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  z-index: 3;
}
.contact-sec__btn {
  color: #fff;
  width: 50.6rem;
  margin: 0 auto;
  font-weight: bold;
  border: 1px solid #E7380D;
  background: #E7380D;
  font-size: 2rem;
  border-radius: 4rem;
  text-align: center;
  padding: 0.8rem 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-sec__btn {
    width: 24rem;
    font-size: 1.5rem;
  }
}
.contact-sec__btn span {
  position: relative;
  z-index: 3;
}
.contact-sec__btn:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.contact-sec__btn:after {
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 0.6rem);
}
.contact-sec__btn:hover {
  box-shadow: none;
  color: #E7380D;
}
.contact-sec__btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.contact-sec__btn:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  z-index: 3;
}
.contact-thanks__ttl {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact-thanks__ttl {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-thanks__ttl._mailmagazine {
    font-size: 1.8rem;
  }
}
.contact-thanks__txt {
  font-size: 2.4rem;
  text-align: center;
  line-height: calc(39/24);
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  .contact-thanks__txt {
    font-size: 1.8rem;
    margin-bottom: 4rem;
  }
}
.contact-thanks__btn-link {
  color: #fff;
  width: 40.6rem;
  margin: 0 auto 8.8rem;
  font-weight: bold;
  border: 1px solid #E7380D;
  background: #E7380D;
  font-size: 2rem;
  border-radius: 4rem;
  text-align: center;
  padding: 1.2rem 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-thanks__btn-link {
    width: 32.5rem;
    font-size: 1.5rem;
  }
}
.contact-thanks__btn-link span {
  position: relative;
  z-index: 3;
}
.contact-thanks__btn-link:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.contact-thanks__btn-link:after {
  content: '';
  width: 1.3rem;
  height: 1.3rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(-45deg);
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 0.6rem);
}
.contact-thanks__btn-link:hover {
  box-shadow: none;
  color: #E7380D;
}
.contact-thanks__btn-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.contact-thanks__btn-link:hover:after {
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  z-index: 3;
}
.mw_wp_form .vertical-item + .vertical-item {
  margin-top: 0 !important;
}
.mw_wp_form_confirm .contact-sec__maildesc, .mw_wp_form_confirm .contact-sec__txt1, .mw_wp_form_confirm .contact-sec__pp {
  display: none;
}
.mw_wp_form_confirm .contact-sec__table {
  width: 85.4rem;
}
@media screen and (max-width: 768px) {
  .mw_wp_form_confirm .contact-sec__table {
    width: calc(100% - 4.8rem);
  }
}
/*プライバシーポリシー*/
.pp-lead {
  font-size: 1.8rem;
  line-height: calc(36/18);
  width: 94%;
  max-width: 102.8rem;
  margin: 0 auto 7.7rem;
}
@media screen and (max-width: 768px) {
  .pp-lead {
    width: 100%;
    padding: 0 2.4rem;
    margin-bottom: 6.2rem;
    font-size: 1.4rem;
  }
}
.pp-sec {
  margin-bottom: 6.4rem;
}
.pp-sec__ttl {
  width: 128rem;
  margin: 0 auto 3.2rem;
}
@media screen and (max-width: 768px) {
  .pp-sec__ttl {
    width: 100%;
  }
}
.pp-sec__ttl span {
  background: #012E49;
  border-radius: 0 0.5rem 0.5rem 0;
  display: inline-block;
  padding: 0.8rem 8rem 0.8rem 12.6rem;
  color: #fff;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .pp-sec__ttl span {
    padding-right: 2.6rem;
    padding-left: 2.4rem;
    font-size: 1.6rem;
  }
}
.pp-sec__lead {
  width: 94%;
  max-width: 102.8rem;
  margin: 0 auto 2.4rem;
}
@media screen and (max-width: 768px) {
  .pp-sec__lead {
    width: 100%;
    padding: 0 2.4rem;
    font-size: 1.4rem;
    margin-bottom: 1.6rem;
  }
}
.pp-sec__lists {
  width: 94%;
  max-width: 102.8rem;
  margin: 0 auto 2.4rem;
}
@media screen and (max-width: 768px) {
  .pp-sec__lists {
    width: 100%;
    padding: 0 2.4rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .pp-sec__lists li {
    text-indent: -1.8rem;
    margin-left: 1.8rem;
  }
}
.pp-sec__lists li + li {
  margin-top: 1rem;
}
.pp-sec__lists li:before {
  content: '';
  width: 1rem;
  height: 1rem;
  background: #012E49;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.8rem;
}
.pp-sec__sns {
  max-width: 102.8rem;
  margin: 0 auto;
}
.pp-sec__sns .footer__cta .footer__cta-link img{
	width: 1.1em;
	
}
@media screen and (max-width: 768px) {
  .pp-sec__sns {
    width: 100%;
    padding: 0 2.4rem;
  }
}
.pp-sec__sns .footer__cta {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .pp-sec__sns .footer__cta {
    padding-left: 0;
  }
}
.mailmagazine__btn {
  margin-bottom: 6.4rem;
}
@media screen and (max-width: 768px) {
  .mailmagazine__btn {
    padding: 0 2.4rem;
  }
}
.mailmagazine__btn-link {
  color: #000;
  width: 31.6rem;
  margin: 0 auto;
  font-weight: bold;
  background: #F0F0F0;
  font-size: 1.5rem;
  border-radius: 4rem;
  text-align: center;
  padding: 1rem 0 0.6rem;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mailmagazine__btn-link {
    width: 100%;
    font-size: 1.5rem;
  }
}
.mailmagazine__btn-link span {
  position: relative;
  z-index: 3;
}
.mailmagazine__btn-link:before {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #012E49;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.mailmagazine__btn-link:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.2rem solid #000;
  border-bottom: 0.2rem solid #000;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  display: block;
  transform: rotate(135deg);
  position: absolute;
  left: 2.5rem;
  top: calc(50% - 0.3rem);
}
.mailmagazine__btn-link:hover {
  box-shadow: none;
  color: #fff;
}
.mailmagazine__btn-link:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.mailmagazine__btn-link:hover:after {
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  z-index: 3;
}
.mailmagazine__caution {
  background: #F5F5F5 url("../img/contact/caution.svg") no-repeat;
  background-position: 4.8rem center;
  border-radius: 0.5rem;
  padding: 4.8rem 4.8rem 4.8rem 10.6rem;
  width: 85.4rem;
  margin: 0 auto 6.4rem;
}
@media screen and (max-width: 768px) {
  .mailmagazine__caution {
    margin-left: 2.4rem;
    margin-right: 2.4rem;
    width: calc(100% - 4.8rem);
    padding: 7.2rem 3.2rem 3.2rem 3.2rem;
    background-position: center 3.2rem;
  }
}
.mailmagazine__caution._mb0 {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mailmagazine__caution._mb0 {
    margin-left: 0;
    margin-right: 0;
    padding: 7.2rem 0rem 3.2rem 0rem;
    width: 100%;
  }
}
.mailmagazine__caution a {
  color: #1A0DAB;
  text-decoration: underline;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  height: 0;
  position: relative;
  overflow: hidden;
  padding: 56.5% 0 0;
}
.slick-vertical .slick-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: calc(100% + 3.5rem);
  display: block;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  background: #E7380D;
  border: 1px solid #E7380D;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
  opacity: .25;
}
.slick-prev:before, .slick-next:before {
  content: '';
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  z-index: 10;
}
.slick-prev {
  left: 25rem;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '';
  transform: rotate(135deg);
  left: 2rem;
  top: 1.6rem;
  position: absolute;
}
.slick-next {
  right: 25rem;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '';
  transform: rotate(-45deg);
  left: 1.2rem;
  top: 1.6rem;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: calc(100% + 4rem);
    display: block;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background: #E7380D;
    border: 1px solid #E7380D;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  }
}
.slick-prev:after, .slick-next:after {
  content: '';
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.slick-prev:hover, .slick-next:hover {
  box-shadow: none;
}
.slick-prev:hover:after, .slick-next:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
}
.slick-prev:hover:before, .slick-next:hover:before {
  border-right: 2px solid #E7380D;
  border-bottom: 2px solid #E7380D;
}
/* Dots */
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  vertical-align: middle;
  pointer-events: none;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 28px;
  padding: 0;
  cursor: pointer;
  pointer-events: auto;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 24px;
  height: 24px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
@media only screen and (max-width: 768px) {
  .slick-dots li {
    margin: 0 2rem;
    width: 2rem;
    height: 2rem;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
  background: #E7380D;
}
.slick-dots li button:before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #000;
  border-radius: 50%;
  content: '';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  width: 24px;
  height: 24px;
  opacity: 1;
  background: #E7380D;
  top: 0;
}
/*
 * add 202402
 * -------------------------------------------------------------------
 */
.inner {
  max-width: 1028px;
  width: 94%;
  margin: auto;
}
.inner.inner--small {
  max-width: 860px;
}
.case-article__search-lists .cat_link {
  border-radius: 5px;
  border: 1px solid #000;
  font-size: 1.3rem;
}
.case-article__search-lists .cat_link a {
  display: block;
  color: #000;
  padding: .6em 2.6em .6em .6em;
  transition: all .2s;
  position: relative;
}
.case-article__search-lists .cat_link a::before {
  content: '';
  width: .5385em;
  height: 1.07em;
  position: absolute;
  right: .8em;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../img/common/icon_arrow01.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
}
.case-article__search-lists .cat_link a:hover, .case-article__search-lists .cat_link.current a {
  background: #e7380d;
  color: #fff;
}
.case-article__search-lists .cat_link a:hover::before {
  background-image: url(../img/common/icon_arrow01--on.svg);
}
#factory01 .pf-intro__thumbs .slick-track {
  width: 100% !important;
  justify-content: flex-start;
}
#factory02 .pf-intro__thumbs .slick-track {
  width: 100% !important;
  justify-content: flex-start;
}
#factory02 .slick-slide .thumbnail {
  overflow: hidden;
  height: 0;
  padding: 52.5% 0 0;
  position: relative;
}
#factory02 .slick-slide .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: cover;
}
.pf-intro__slider-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #012E49;
  margin: 5.2rem 0 -3.5rem;
  letter-spacing: .05em;
}
.title_bg {
  width: 111.5rem;
  background: #F5F5F5;
  font-size: 2rem;
  font-weight: 700;
  border-left: solid 2px #E7380D;
  line-height: 1.8;
  padding: 1em 0 1em 22px;
  margin: 0 0 32px;
}
.section--archive .area_archive {
  margin: 0 0 10%;
}
.wp-pagenavi {
  margin: 3% auto 0;
}
.wp-pagenavi a, .wp-pagenavi span {
  margin: 0 .6rem;
  vertical-align: middle;
}
.wp-pagenavi a {
  color: #787878;
  width: 3rem;
  height: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  position: relative;
  font-size: 1.6rem;
  font-family: 'Roboto', sans-serif;
  display: inline-block;
  font-weight: 700;
}
.wp-pagenavi a.previouspostslink {
  margin-right: 6.8rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  background: #e7380d;
  color: #fff;
  border-radius: 50%;
  position: relative;
  text-indent: -99999px;
  border: 0.1rem solid #e7380d;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, .16);
  cursor: pointer;
}
.wp-pagenavi a.previouspostslink::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  left: 1.6rem;
  top: 1.3rem;
  display: block;
  transform: rotate(135deg);
  z-index: 2;
}
.wp-pagenavi a.nextpostslink {
  margin-left: 6.8rem;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  background: #e7380d;
  color: #fff;
  border-radius: 50%;
  position: relative;
  text-indent: -99999px;
  box-shadow: 0.3rem 0.3rem 0.3rem rgba(0, 0, 0, .16);
  border: 0.1rem solid #e7380d;
  cursor: pointer;
}
.wp-pagenavi a.nextpostslink::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  left: 0.8rem;
  top: 1.2rem;
  display: block;
  transform: rotate(-45deg);
  z-index: 2;
}
@media screen and (max-width: 1366px) {
  .title_bg {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
  .case-article__search-lists .cat_link {
    font-size: 1rem;
  }
  .case-article__search-lists .cat_link a {
    padding: .6rem 2rem .3em .8em;
    font-size: 1.2rem;
  }
  .case-article__search-lists .cat_link a:before {
    right: .5em;
  }
  .section--archive .area_archive {
    margin: 0 0 20%
  }
  .wp-pagenavi a, .wp-pagenavi span {
    margin: 0 .3rem;
  }
  .wp-pagenavi a.previouspostslink {
    margin-right: 1.5rem;
  }
  .wp-pagenavi a.nextpostslink {
    margin-left: 1.5rem;
  }
  .title_bg {
    font-size: 1.8rem;
    padding: .8em 0 .8em 22px;
    margin: 0 0 25px;
  }
}
/*
 * add 202402 NEWS
 * -------------------------------------------------------------------
 */
section.area_topNews {
  background: #F5F5F5;
  padding: 4rem 0;
  margin: 0 0 10rem;
}
section.area_topNews .newsFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.area_topNews .newsFlex .flexLeft {
  width: 240px;
}
section.area_topNews .newsFlex .flexRight {
  width: calc(100% - 240px);
}
section.area_topNews .module-title {
  margin: 0 0 2.4rem;
}
section.area_topNews .module-title__en {
  margin: 0 0 1.6rem;
}
section.area_topNews .module-title__jp {
  color: #012E49;
  font-size: 3.2rem;
  line-height: 1;
}
section.area_topNews .module-btn {
  max-width: 180px;
}
.list_newsSummary li + li {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left top;
}
.list_newsSummary a {
  display: block;
  height: 100%;
  padding: 2.4rem 8rem 2.4rem 0;
  color: inherit;
  position: relative;
}
.list_newsSummary .info {
  margin: 0 0 1.2rem;
  color: #787878;
  font-size: 1.3rem;
  line-height: 1;
}
.list_newsSummary .info span.time {
  display: inline-block;
  margin: 0 1.6rem 0 0;
  padding: .2rem 0 0;
}
.list_newsSummary .info span.category {
  display: inline-block;
  padding: .2rem 1.5rem 0 1.5rem;
  border-left: solid 1px #787878;
}
.list_newsSummary .title {
  color: #012E49;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0 0 1.2rem;
}
.list_newsSummary .text {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.866;
}
.linkParts {
  position: absolute;
  width: 3.2rem;
  height: 3.2rem;
  box-sizing: border-box;
  border-radius: 50%;
  border: solid 1px #E7380D;
  background: #fff;
  overflow: hidden;
}
.linkParts::before {
  content: '';
  position: absolute;
  right: 0;
  width: 0;
  height: 100%;
  background: #E7380D;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.linkParts::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.2rem solid #E7380D;
  border-bottom: 0.2rem solid #E7380D;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  left: 0.6rem;
  top: .95rem;
  display: block;
  transform: rotate(-45deg);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.list_newsSummary .linkParts {
  right: 1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
a:hover .linkParts::before {
  left: 0;
  width: 100%;
  right: auto;
}
a:hover .linkParts::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.list_category {
  display: flex;
  justify-content: center;
  background: #F0F0F0;
  padding: 3rem 0;
  border-radius: 8px;
  margin: 6rem 0;
}
.list_category > li a {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 0 0 1.5em;
  margin: 0 2.4rem;
  position: relative;
  color: #000;
}
.list_category > li a::before {
  content: '';
  width: 1.2rem;
  height: 1.2rem;
  border: solid 1px #000000;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .2s;
}
.list_category > li.active a::before, .list_category > li a:hover::before {
  background: #E7380D;
  border: solid 1px #E7380D;
}
@media screen and (max-width: 768px) {
  section.area_topNews {
    padding: 3.5rem 0 8rem;
    position: relative;
  }
  section.area_topNews .newsFlex {
    display: block;
  }
  section.area_topNews .newsFlex .flexLeft {
    width: 100%;
  }
  section.area_topNews .newsFlex .flexRight {
    width: 100%;
  }
  section.area_topNews .module-title {
    margin: 0 0 1.5rem;
  }
  section.area_topNews .module-btn {
    max-width: 240px;
  }
  .list_newsSummary a {
    padding: 2.4rem 4rem 2.4rem 0;
  }
  .list_newsSummary .title {
    font-size: 1.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .list_newsSummary .text {
    font-size: 1.4rem;
    line-height: 2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .list_newsSummary .linkParts {
    right: 0rem;
  }
  section.area_topNews .newsFlex .flexLeft .module-btn {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    margin: auto;
  }
  .list_category {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem 2.5rem;
    margin: 6rem 0;
  }
  .list_category > li {
    width: 33%;
    margin: 1rem 0;
  }
  .list_category > li a {
    margin: 0;
  }
  .list_category::after {
    display: block;
    content: '';
    width: 33%;
  }
}
@media screen and (max-width: 500px) {
  .list_category > li {
    width: 48%;
    margin: .65rem 2% .65rem 0;
  }
  .list_category::after {
    display: none;
  }
}
/*
 * add 202402 NEWS Single
 * -------------------------------------------------------------------
 */
.wp-editor {
  margin: 8rem auto 12rem;
}
.wp-editor .inner {
  max-width: 880px;
}
.wp-editor .news_info {
  margin: 0 0 1.6rem;
  color: #787878;
  line-height: 1;
  font-size: 1.3rem;
  font-weight: 500;
}
.wp-editor .news_info time {
  display: inline-block;
  margin: 0 1.6rem 0 0;
  padding: 0.2rem 0 0;
}
.wp-editor .news_info span.category {
  display: inline-block;
  padding: 0.2rem 1.5rem 0 1.5rem;
  border-left: solid 1px #787878;
}
/**/
#wp-editor .thumbnail {
  margin: 0 0 7rem;
  pointer-events: none;
}
#wp-editor h1 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  position: relative;
  padding: 0 0 2rem;
  margin: 0 0 1rem;
}
#wp-editor h1::before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  bottom: 0;
  left: 50%;
}
#wp-editor h1::after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  bottom: 0;
  left: calc(50% - 4.2rem);
}
#wp-editor h2 {
  font-size: 2rem;
  font-weight: 700;
  background: #F0F0F0;
  border-left: solid 3px #E7380D;
  padding: 1.6rem 2rem 1.4rem;
  margin: 0 0 1.5rem;
}
#wp-editor h3 {
  font-size: 2rem;
  font-weight: 700;
  padding: 0 0 1.5rem;
  position: relative;
  margin: 0 0 1.5rem;
}
#wp-editor h3::before {
  content: '';
  position: absolute;
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  bottom: 0;
  left: 0;
}
#wp-editor h3:after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  bottom: 0;
  left: 4.2rem;
}
#wp-editor h4 {
  font-size: 2rem;
  font-weight: 700;
  padding: .2em 0 0 1.4rem;
  border-left: 2px solid #E7380D;
  margin: 0 0 1.5rem;
}
#wp-editor h5 {
  font-size: 1.8rem;
  border-bottom: solid 1px #E7380D;
  padding: 0 0 .5rem;
  margin: 0 0 1.5rem;
}
#wp-editor h6 {
  font-size: 1.6rem;
  padding: 0 0 0 1.5rem;
  position: relative;
  margin: 0 0 1.5rem;
}
#wp-editor h6::before {
  content: '';
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #E7380D;
}
#wp-editor .contensWrap > h1, #wp-editor .contensWrap > h2, #wp-editor .contensWrap > h3, #wp-editor .contensWrap > h4, #wp-editor .contensWrap > h5, #wp-editor .contensWrap > h6 {
  margin: 5rem 0 1.5rem;
}
#wp-editor figure {
  margin: 0 0 1rem 0;
}
#wp-editor .contensWrap > figure {
  display: block;
  margin: 3rem 0;
}
#wp-editor img {
  max-width: 100%;
  height: auto;
}
#wp-editor hr {
  margin: 3rem 0;
}
#wp-editor em {
  display: inline;
  font-weight: 400;
  font-style: normal;
  background: linear-gradient(transparent 60%, #F5F57F 60%);
}
#wp-editor del {
  text-decoration: line-through;
}
#wp-editor blockquote {
  display: inline-block;
  padding: 0 1em;
  position: relative;
  margin: 0;
}
#wp-editor blockquote:before {
  content: '"';
  position: absolute;
  left: 0;
  top: 0;
}
#wp-editor blockquote:after {
  content: '"';
  position: absolute;
  right: 0;
  bottom: 0;
}
#wp-editor p a:not([class]) {
  font-weight: 700;
  display: inline;
  color: #1A0DAB;
  transition: all .2s;
  position: relative;
}
#wp-editor p a:not([class]):hover {}
#wp-editor p a:not([class])[target="_blank"] {
  padding: 0 2rem 0 0;
  background-image: url(../img/common/blank.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 1.4rem auto;
}
#wp-editor p a:not([class])::before, #wp-editor p a:not([class])::after {
  content: '';
  background: #1A0DAB;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
#wp-editor p a:not([class])::after {
  width: 0;
  transition: all .2s ease .1s;
}
#wp-editor p a:not([class]):hover::before {
  opacity: 0;
}
#wp-editor p a:not([class]):hover::after {
  width: 100%;
}
#wp-editor p {
  margin: 0 0 2rem 0;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: .05em;
}
#wp-editor .contensWrap > p {
  margin: 2rem 0;
}
#wp-editor ul {
  list-style: disc;
  padding: 0 0 0 1.5rem;
  margin: 2rem 0;
}
#wp-editor ol {
  list-style: decimal;
  padding: 0 0 0 1.5rem;
  margin: 2rem 0;
}
#wp-editor table {
  font-size: 1.4rem;
}
#wp-editor table th {
  background: #012E49;
  color: #fff;
  padding: 1.5rem;
  font-weight: 500;
  border: solid 1px #E6E6E6;
}
#wp-editor table td {
  font-weight: 500;
  padding: 1rem;
  border: solid 1px #E6E6E6;
  font-size: 94%;
}
#wp-editor table tfoot th, #wp-editor table tfoot td {
  background: #eee;
  color: #333;
}
.wp-block-flexible-table-block-table figcaption {
  color: #666;
  margin: .8rem 0;
}
#wp-editor .wp-block-columns.is-layout-flex {
  align-items: flex-start;
}
#wp-editor .wp-block-column {
  min-width: 30.9%;
  margin: 2rem 0;
}
#wp-editor .wp-block-video, #wp-editor .youtubeWrap, .wp-block-embed.is-type-video .wp-block-embed__wrapper {
  position: relative;
  overflow: hidden;
}
#wp-editor .wp-block-video video, #wp-editor .youtubeWrap iframe {
  width: 100%;
}
.wp-block-embed.is-type-video .wp-block-embed__wrapper {
  padding: 56.25% 0 0;
}
.wp-block-embed.is-type-video .wp-block-embed__wrapper iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#wp-editor dl {
  width: 100%;
  display: flex;
  margin: 3rem 0;
  font-size: 1.4rem;
}
#wp-editor dl + dl {
  margin: -3.1rem 0 3rem;
}
#wp-editor dt {
  background: #012E49;
  color: #fff;
  padding: 1.5rem;
  font-weight: 500;
  border: solid 1px #E6E6E6;
  box-sizing: border-box;
  width: 25.5%;
}
#wp-editor dd {
  font-weight: 500;
  padding: 1.5rem;
  border: solid 1px #E6E6E6;
  box-sizing: border-box;
  width: calc(100% - 25.5%);
  border-left: none;
}
#wp-editor .wp-block-image {
  text-align: center;
}
#wp-editor .wp-element-caption {
  font-size: 81.25%;
  font-weight: 700;
  margin: 1rem 0 0;
  color: #666;
  text-align: center;
}
#wp-editor .btn_more01 {
  position: relative;
  margin: 3rem 0;
}
#wp-editor .btn_more01 a {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  border-bottom: solid 1px #000000;
  padding: .5rem 0;
  position: relative;
  transition: all .2s;
}
#wp-editor .btn_more01 span.linkParts {
  position: absolute;
  right: -5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
#wp-editor .btn_more01 a:hover {
  color: #E7380D;
  border-color: #E7380D;
}
#wp-editor .btn_more02 {
  margin: 3rem 0;
}
#wp-editor .btn_more02 a {
  display: inline-block;
  background: #E7380D;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .16);
  position: relative;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  padding: 1.5rem 5rem 1.3rem 2rem;
  box-sizing: border-box;
  min-width: 220px;
  transition: all .4s;
  border: solid 1px #E7380D;
}
#wp-editor .btn_more02 a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #fff;
  transition: all .4s;
}
#wp-editor .btn_more02 a::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-right: 0.2rem solid #fff;
  border-bottom: 0.2rem solid #fff;
  border-top: 0.2rem solid transparent;
  border-left: 0.2rem solid transparent;
  position: absolute;
  display: block;
  transform: rotate(-45deg);
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
#wp-editor .btn_more02 span {
  position: relative;
  z-index: 5;
}
#wp-editor .btn_more02 a:hover {
  color: #E7380D;
}
#wp-editor .btn_more02 a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
#wp-editor .btn_more02 a:hover::after {
  border-right-color: #E7380D;
  border-bottom-color: #E7380D;
}
#wp-editor .btn_more02.middle a {
  min-width: 350px;
  text-align: center;
}
#wp-editor .btn_more02.large a {
  min-width: 530px;
  text-align: center;
}
/**/
#wp-editor .has-background {
  padding: .8rem 1.2rem .6rem 1.2rem;
}
#wp-editor code {
  display: block;
  background: #eee;
  padding: 5%;
  border-radius: 1em;
  margin: 3rem 0;
  word-break: break-all;
}
#wp-editor kbd {
  display: inline-block;
  margin: 0 0.2em;
  padding: 0.4em 0.6em;
  background-color: #e0e0e0;
  border-bottom: 3px solid #b4b4b4;
  border-radius: 3px;
  vertical-align: middle;
  font-size: 0.9em;
  line-height: 1.1;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
}
#wp-editor sup {
  vertical-align: super;
  font-size: 65%;
}
#wp-editor sub {
  display: inline-block;
  transform: translateY(.5rem);
}
#wp-editor s {
  text-decoration: line-through;
}
#wp-editor p.has-extra-small-font-size {
  font-size: 75%;
}
#wp-editor p.has-small-font-size {
  font-size: 87.5% !important;
}
#wp-editor p.has-normal-font-size {
  font-size: 100%;
}
#wp-editor p.has-large-font-size {
  font-size: 112.5% !important;
}
#wp-editor p.has-extra-large-font-size {
  font-size: 125%;
}
#wp-editor p.has-huge-font-size {
  font-size: 150%;
}
#wp-editor p.has-gigantic-font-size {
  font-size: 200%;
}
@media all and (max-width:768px) {
  .wp-editor {
    margin: 7rem auto 10rem;
  }
  .wp-editor .news_info {
    line-height: 1;
    font-size: 1.3rem;
    font-weight: 500;
  }
  .wp-editor .news_info time {
    display: inline-block;
    margin: 0 1.6rem 0 0;
    padding: 0.2rem 0 0;
  }
  .wp-editor .news_info span.category {
    display: inline-block;
    padding: 0.2rem 1.5rem 0 1.5rem;
    border-left: solid 1px #787878;
  }
  /**/
  #wp-editor .thumbnail {
    margin: 0 0 7rem;
    pointer-events: none;
  }
  #wp-editor h1 {
    font-size: 1.8rem;
  }
  #wp-editor h1::before {
    width: 2.4rem;
  }
  #wp-editor h1::after {
    width: 2.4rem;
    left: calc(50% - 2.4rem);
  }
  #wp-editor h2 {
    font-size: 1.8rem;
  }
  #wp-editor h3::before {
    width: 2.4rem;
  }
  #wp-editor h3:after {
    width: 2.4rem;
    left: 2.4rem;
  }
  #wp-editor h3 {
    font-size: 1.5rem;
    padding: 0 0 1rem;
  }
  #wp-editor h4 {
    font-size: 1.4rem;
  }
  #wp-editor h5 {
    font-size: 1.4rem;
  }
  #wp-editor p {
    font-size: 1.4rem;
  }
  #wp-editor table {
    font-size: 1.4rem;
  }
  #wp-editor .wp-block-columns.is-layout-flex {
    display: block;
  }
  #wp-editor .wp-block-column {
    margin: 3rem 0;
  }
  #wp-editor dl {
    display: block;
  }
  #wp-editor dl + dl {
    margin: 3rem 0;
  }
  #wp-editor dt {
    background: #012E49;
    color: #fff;
    padding: 1rem;
    font-weight: 500;
    border: solid 1px #E6E6E6;
    box-sizing: border-box;
    width: 100%;
    text-align: center;
  }
  #wp-editor dd {
    font-weight: 500;
    padding: 1rem;
    border: solid 1px #E6E6E6;
    box-sizing: border-box;
    width: 100%;
    border-left: none;
  }
  #wp-editor .btn_more02.middle a {
    min-width: 0;
    width: 75%;
  }
  #wp-editor .btn_more02.large a {
    min-width: 0;
    width: 100%;
  }
  .wp-block-embed.is-type-wp-embed {
    overflow-x: scroll;
    position: relative;
    padding: 3rem 0 0;
    font-size: 1.4rem;
  }
  .wp-block-embed.is-type-wp-embed::before {
    content: '→ スクロール';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
  }
}
/*
 * add 202402 BLOG
 * -------------------------------------------------------------------
 */
.list_blogSummary {
  display: flex;
  gap: 4.8rem 3rem;
  flex-wrap: wrap;
}
.list_blogSummary > li {
  width: calc(33.3333% - 2.066rem);
}
.list_blogSummary > li a {
  display: block;
  height: 100%;
}
.list_blogSummary > li .thumbnail {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .16);
  margin: 0 0 2rem;
  aspect-ratio: 322 / 169;
}
.list_blogSummary > li .thumbnail img {
  object-fit: cover;
  height: 100% !important;
  transition: all .4s;
}
.list_blogSummary > li a:hover .thumbnail img {
  transform: scale(1.1);
}
.list_blogSummary > li .info {
  color: #787878;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}
.list_blogSummary > li .info .time {
  display: inline-block;
  margin: 0 1em 0 0;
}
.list_blogSummary > li .info span.category {
  display: inline-block;
  padding: 0 1em;
  border-left: solid 1px #787878;
}
.list_blogSummary > li .title {
  font-size: 1.6rem;
  color: #000000;
  position: relative;
  padding: 1rem 5.5rem 1rem 0;
}
.list_blogSummary > li .title .linkParts {
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .16);
}
.list_bread {
  padding: 0 0 4rem;
  margin: 0 0 4rem;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.list_bread > li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.3rem;
  position: relative;
  margin: 0 1rem 0 0;
}
.list_bread > li + li::before {
  content: '';
  display: inline-block;
  margin: 0 1.4rem 0 0;
  width: .6em;
  height: .6em;
  box-sizing: border-box;
  border-top: solid 1px #000000;
  border-right: solid 1px #000000;
  transform-origin: center;
  transform: rotateZ(45deg);
}
.list_bread > li:not(.home) a {
  color: #1A0DAB;
  transition: all .2s;
  position: relative;
}
.list_bread > li:not(.home) a::before, .list_bread > li:not(.home) a::after {
  content: '';
  background: #1A0DAB;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.list_bread > li:not(.home) a::after {
  width: 0;
  transition: all .2s ease .1s;
}
.list_bread > li:not(.home) a:hover::before {
  opacity: 0;
}
.list_bread > li:not(.home) a:hover::after {
  width: 100%;
}
.list_bread > li.home a {
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  line-height: 2.4rem;
  background: url("../img/common/home.svg") no-repeat center;
  background-size: contain;
}
.list_bread > li.home a:hover {
  opacity: .6;
}
.section--archive .area_blog .blog_lead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 0 8rem;
}
.section--archive .area_blog .blog_lead .lead_text {
  width: calc(100% - 335px);
  font-size: 1.5rem;
  line-height: calc(28 / 15);
}
.section--archive .area_blog .blog_lead .lead_btn {
  width: 235px;
  text-align: center;
  border-radius: 2px;
  position: relative;
  background: #012E49;
  border: solid 1px #012E49;
}
.section--archive .area_blog .blog_lead .lead_btn::after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  background: #fff;
  transition: all .4s;
  pointer-events: none;
}
.section--archive .area_blog .blog_lead .lead_btn:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.section--archive .area_blog .blog_lead .lead_btn a {
  border-radius: 2px;
  display: block;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  box-sizing: border-box;
  padding: .8em 1em .8em 0;
  position: relative;
  z-index: 10;
  transition: all .4s;
}
.section--archive .area_blog .blog_lead .lead_btn a::before {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/common/arrow_bottom.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
  transition: all .4s;
}
.section--archive .area_blog .blog_lead .lead_btn:hover a {
  color: #012E49;
}
.section--archive .area_blog .blog_lead .lead_btn:hover a::before {
  background: url(../img/common/arrow_bottom--on.png) no-repeat;
  background-size: contain;
}
.list_blogCategory {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 2px #E7380D;
  margin: 0 0 4.8rem;
}
.list_blogCategory > li {
  width: 100%;
  text-align: center;
  position: relative;
}
.list_blogCategory > li + li {
  margin: 0 0 0 1%;
}
.list_blogCategory > li a {
  color: #000000;
  font-size: 1.4rem;
  line-height: 2;
  transition: all .2s;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  background: #F0F0F0;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  overflow: hidden;
}
.list_blogCategory > li a::after {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #E7380D;
  transition: all .4s;
}
.list_blogCategory > li:hover a::after {
  width: 100%;
  right: auto;
  left: 0;
}
.list_blogCategory > li a span {
  display: block;
  width: 100%;
  padding: .2rem 0 0;
  position: relative;
  z-index: 10;
}
.list_blogCategory > li.active a {
  background: #E7380D;
  color: #fff;
  font-weight: 700;
}
.list_blogCategory > li:hover a {
  color: #fff;
  font-weight: 700;
}
body.filter--on .pagenation {
  display: none;
}
.block_blogSingle .inner {
  display: flex;
  justify-content: space-between;
}
.block_blogSingle .single_contents {
  width: calc(100% - 370px);
}
.block_blogSingle .single_side {
  width: 290px;
}
.block_blogSingle .single_side .side_set {
  margin: 0 0 5.6rem;
}
.block_blogSingle .single_side .side_title {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: #012E49;
}
.block_blogSingle .single_side .side_title span {
  display: inline-block;
  padding: .6rem 0 .6rem 3rem;
  background-position: left center;
  background-size: 24px auto;
  background-repeat: no-repeat;
}
.block_blogSingle .single_side .side--category .side_title span {
  background-image: url("../img/blog/icon01.png");
}
.block_blogSingle .single_side .side--rank .side_title span {
  background-image: url("../img/blog/icon02.png");
}
.block_blogSingle .single_side .side--news .side_title span {
  background-image: url("../img/blog/icon03.png");
}
.block_blogSingle .single_side .side--osusume .side_title span {
  background-image: url("../img/blog/icon04.png");
}
.list_sideCategory li + li {
  margin: 1px 0 0;
}
.list_sideCategory li {
  background: #F0F0F0;
  position: relative;
}
.list_sideCategory li::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #012E49;
  transition: all .4s;
}
.list_sideCategory li:hover::before {
  width: 100%;
  right: auto;
  left: 0;
}
.list_sideCategory a {
  display: block;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 1rem 5rem .8rem 2rem;
  position: relative;
  z-index: 5;
  transition: all .4s;
}
.list_sideCategory a:hover {
  color: #fff;
}
.list_sideCategory a::before {
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/blog/arrow_right.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .16);
  border-radius: 50%;
}
/**/
.list_sideArticle li {
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.list_sideArticle li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2.4rem 0 2rem;
}
.list_sideArticle .thumbnail {
  width: 70px;
  overflow: hidden;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .16);
  border-radius: 4px;
  aspect-ratio: 72 / 38;
}
.list_sideArticle .thumbnail img {
  vertical-align: top;
  object-fit: cover;
  height: 100% !important;
  transition: all .2s;
}
.list_sideArticle .textBox {
  width: 200px;
}
.list_sideArticle .textBox .date {
  color: #787878;
  font-size: 1.2rem;
  margin: 0 0 .5rem;
  padding: 0 0 0 1.8rem;
  background: url("../img/blog/icon05.png") no-repeat left center;
  background-size: 13px auto;
}
.list_sideArticle .textBox .title {
  color: #000000;
  font-size: 1.3rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.list_sideArticle a:hover .thumbnail img {
  transform: scale(1.1);
}
/*----------*/
.block_blogSingle .single_contents .info {
  color: #787878;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1rem;
}
.block_blogSingle .single_contents .info .time {
  display: inline-block;
  margin: 0 1em 0 0;
}
.block_blogSingle .single_contents .info span.category {
  display: inline-block;
  padding: 0 1em;
  border-left: solid 1px #787878;
}
.block_blogSingle .single_contents h1.blogTitle {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 3rem;
}
.block_blogSingle .blog_sns {
  display: flex;
  margin: 0 0 2rem;
}
.block_blogSingle .blog_sns input[type="button"] {
  display: block;
  width: 240px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-align: center;
  border-radius: 50px;
  color: #1A0DAB;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 38px;
  border: none;
  cursor: pointer;
  background-color: #F0F0F0;
  background-image: url("../img/blog/icon06.png");
  background-size: 12px auto;
  background-repeat: no-repeat;
  background-position: right 2rem center;
  box-shadow: 3px 3px 3px 0 rgba(0, 0, 0, .16);
  transition: all .2s;
}
.block_blogSingle .blog_sns input[type="button"]:hover {
  background-color: #012E49;
  color: #fff;
  background-image: url("../img/blog/icon06--on.png");
}
.list_blogSns {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0 2.4rem;
}
.list_blogSns > li {
  margin: 0 1.6rem 0 0;
}
.list_blogSns a:hover {
  box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, .16);
}
.block_blogSingle .single_contents .thumbnail {
  margin: 6rem 0 2rem;
}
.block_blogSingle .single_contents .blog_lead {
  font-size: 1.6rem;
  line-height: 2;
}
.single_contents .area_editor {
  background: #F0F0F0;
  margin: 0 0 12rem;
  box-sizing: border-box;
  padding: 3.2rem;
}
.single_contents .area_editor .editor_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 0 0 1.6rem;
  margin: 0 0 3.2rem;
  position: relative;
}
.single_contents .area_editor .editor_title::before {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #012E49;
  display: block;
  bottom: 0;
  left: calc(50%);
}
.single_contents .area_editor .editor_title::after {
  position: absolute;
  content: '';
  height: 0.4rem;
  width: 4.2rem;
  background: #E7380D;
  display: block;
  bottom: 0;
  left: calc(50% - 4.2rem);
}
.single_contents .area_editor .editorFlex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.single_contents .area_editor .editorFlex .editor_thumbnail {
  width: 134px;
  height: 134px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 50%;
}
.single_contents .area_editor .editorFlex .editor_thumbnail img {
  vertical-align: top;
  object-fit: cover;
  height: 100% !important;
}
.single_contents .area_editor .editorFlex .editorText {
  width: calc(100% - 166px);
}
.single_contents .area_editor .editorFlex .editor_position {
  color: #525252;
  font-size: 1.3rem;
  margin: 0 0 1.5rem;
}
.single_contents .area_editor .editorFlex .editor_name {
  color: #012E49;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.single_contents .area_editor .editorFlex .editor_text {
  font-size: 1.3rem;
  line-height: 2;
}
.single_contents .example_set {
  background: #F0F0F0;
  outline: solid 2px #fff;
  outline-offset: -5px;
  border-radius: 4px;
  padding: 2rem;
  margin: 3rem 0;
}
.single_contents .example_set a {
  text-decoration: none;
  border: none !important;
  padding: 0 !important;
  background-image: none !important;
}
.single_contents .example_set img {
  display: block;
  margin: 0 auto 1rem;
}
.single_contents .example_set .example_title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  transition: all .2s;
}
.single_contents .example_set a:hover .example_title {
  color: #E7380D;
}
@media all and (max-width: 1024px) {
  .block_blogSingle .inner {
    display: block;
  }
  .block_blogSingle .single_contents {
    width: 100%;
  }
  .block_blogSingle .single_side {
    display: none;
  }
}
@media all and (max-width: 768px) {
  .case-article__search-ttl.long {
    margin-bottom: 2.4rem;
    width: auto;
  }
  .list_blogSummary > li {
    width: 46.5%;
  }
  .list_blogSummary > li .title {
    font-size: 1.4rem;
  }
  .list_bread {
    white-space: nowrap;
    overflow-x: scroll;
    padding: 0 0 2.4rem;
  }
  .section--archive .area_blog .blog_lead {
    display: block;
  }
  .section--archive .area_blog .blog_lead .lead_text {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2;
    margin: 0 0 2.4rem;
  }
  .section--archive .area_blog .blog_lead .lead_btn {
    width: 200px;
  }
  .section--archive .area_blog .blog_lead .lead_btn a {
    font-size: 1.4rem;
  }
  .list_blogCategory {
    display: flex;
    flex-wrap: wrap;
    border-bottom: none;
    margin: 0 0 1rem;
  }
  .list_blogCategory > li {
    width: 48%;
    text-align: center;
    border-bottom: solid 2px #E7380D;
    margin: 0 0 1.6rem;
    position: relative;
    overflow: visible;
  }
  .list_blogCategory > li + li {
    margin: 0 0 1.6rem;
  }
  .list_blogCategory > li a {
    font-size: 1.3rem;
    line-height: 1.4;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .list_blogCategory > li:nth-child(2n)::before {
    content: '';
    width: 20%;
    height: 2px;
    background: #E7380D;
    position: absolute;
    right: calc(100% - 2px);
    bottom: -2px;
  }
  .block_blogSingle .inner {
    display: block;
  }
  .block_blogSingle .single_contents {
    width: 100%;
    overflow: hidden;
  }
  /*----------*/
  .block_blogSingle .single_contents h1.blogTitle {
    font-size: 2.4rem;
  }
  .block_blogSingle .blog_sns {
    display: block;
    margin: 0 0 2rem;
  }
  .list_blogSns {
    width: 85%;
    margin: 2.4rem 0 0;
  }
  .list_blogSns > li {
    margin: 0 1.6rem 0 0;
  }
  .block_blogSingle .single_contents .thumbnail {
    margin: 4rem 0 2rem;
  }
  .block_blogSingle .single_contents .blog_lead {
    font-size: 1.4rem;
  }
  .single_contents .area_editor {
    margin: 0 0 7rem;
    padding: 3.2rem 1.6rem;
  }
  .single_contents .area_editor .editor_title {
    font-size: 1.6rem;
    padding: 0 0 1.6rem;
    margin: 0 0 2.4rem;
  }
  .single_contents .area_editor .editor_title::before {
    height: 0.2rem;
  }
  .single_contents .area_editor .editor_title::after {
    height: 0.2rem;
  }
  .single_contents .area_editor .editorFlex {
    display: block;
  }
  .single_contents .area_editor .editorFlex .editor_thumbnail {
    width: 134px;
    height: 134px;
    margin: 0 auto 2.4rem;
  }
  .single_contents .area_editor .editorFlex .editorText {
    width: 100%;
  }
  .single_contents .area_editor .editorFlex .editor_position {
    text-align: center;
  }
  .single_contents .area_editor .editorFlex .editor_name {
    text-align: center;
    font-size: 1.6rem;
  }
}
@media all and (max-width: 500px) {
  .list_blogSummary {
    display: block;
    gap: 0;
  }
  .list_blogSummary > li {
    width: 100%;
    margin: 0 0 3.2rem;
  }
  .list_blogSummary > li .title {
    font-size: 1.4rem;
  }
}
/*--------------------*/
#toc_container {
  margin: 0 0 7.2rem;
  background: #f0f0f0;
}
#toc_container .toc_title {
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1rem 0;
  background: #012E49;
  position: relative;
}
#toc_container .toc_title::before {
  content: '';
  width: 16px;
  height: 11px;
  background: url("../img/blog/icon07.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -7rem;
  right: 0;
}
#toc_container .toc_list {
  padding: 0 3.2rem 3.6rem;
}
#toc_container .toc_list li {
  list-style: none;
}
#toc_container .toc_list > li + li {
  margin: 1.5rem 0 0;
}
#toc_container .toc_list a {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000000 !important;
  border-bottom: solid 1px #C8C8C8 !important;
  padding: .1rem 2.2rem .1rem 0;
  background: url("../img/blog/anchor_bottom.png") no-repeat right .2rem center;
  background-size: 1.5rem auto;
  position: relative;
  margin: 0 0 0 3.5rem;
}
#toc_container .toc_list a::before {
  content: '';
  width: 0;
  height: 1px;
  background: #E7380D;
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 5;
  transition: all .4s;
}
#toc_container .toc_list a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
#toc_container .toc_number {
  font-weight: 700;
  display: inline-block;
  position: absolute;
  left: -3.5rem;
  top: .2rem;
}
#toc_container .toc_number::before {
  content: '0';
}
#toc_container .toc_number::after {
  content: '.';
}
#toc_container .toc_list ul {
  padding: 0 0 0 3rem;
  margin: 1rem 0 2rem;
}
#toc_container .toc_list ul li a {
  font-size: 1.4rem;
}
#toc_container .toc_list ul li + li {
  margin: 1rem 0 0;
}
#toc_container .toc_list ul li .toc_number::before {
  display: none;
}
@media all and (max-width: 768px) {
  #toc_container {
    margin: 0 0 6.6rem;
  }
  #toc_container .toc_title {
    font-size: 1.5rem;
    padding: .6rem 0 .4rem;
  }
  #toc_container .toc_title::before {
    bottom: .2rem;
  }
  #toc_container .toc_list {
    padding: 2rem 1.6rem 2.4rem;
  }
  #toc_container .toc_list a {
    font-size: 1.5rem;
    background-size: 1.3rem auto;
  }
  #toc_container .toc_list ul li a {
    font-size: 1.3rem;
  }
}
/*--------------------*/
.contents .area_frontBlog {
  margin: 0 0 8rem;
}
.contents .area_frontBlog .inner {
  padding: 0 0 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.contents .area_frontBlog .blog_info {
  background: #F5F5F5;
  display: flex;
  align-items: center;
  margin: 0 0 4.8rem;
}
.contents .area_frontBlog .blog_thumbnail {
  width: 42.3%;
}
.contents .area_frontBlog .blog_textBox {
  width: 57.7%;
  padding: 0 8.3rem;
  box-sizing: border-box;
}
.contents .area_frontBlog .module-title {
  margin: 0 0 2rem;
}
.contents .area_frontBlog .blog_lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.86;
  margin: 0 0 3.2rem;
}
.contents .area_frontBlog .module-btn {
  max-width: 260px;
}
@media all and (max-width: 1000px) {
  .contents .area_frontBlog .module-title .module-title__en {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .contents .area_frontBlog .module-title .module-title__jp {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
  }
  .contents .area_frontBlog .blog_lead {
    font-size: 1.4rem;
    margin: 0 0 2rem;
  }
  .contents .area_frontBlog .blog_textBox {
    padding: 0 4rem;
  }
  .contents .area_frontBlog .module-btn {
    margin: -3% auto 10%;
  }
}
@media all and (max-width: 768px) {
  .contents .area_frontBlog {
    margin: 0 0 5rem;
  }
  .contents .area_frontBlog .blog_info {
    background: none;
    display: block;
    margin: 0 0 1rem;
  }
  .contents .area_frontBlog .blog_thumbnail {
    width: 100%;
  }
  .contents .area_frontBlog .blog_textBox {
    position: relative;
    width: 90%;
    padding: 3rem 2.5rem 1.5rem;
    background: rgba(255, 255, 255, .9);
    border-radius: 5px;
    margin: -32vw auto 0;
  }
}
#search_default.none, #search-result-blog.none {
  display: none;
}
#area-1, #area-2 {
  overflow: hidden;
}
/**/
.module-description {
  margin: 6% auto 8%;
  line-height: 2;
  text-align: center;
  box-sizing: border-box;
  padding: 30px;
  border: 1px solid rgba(224, 224, 224, 1.00);
  background-color: rgba(237, 237, 237, 1.00);
  width: 92%;
}
.module-description > div {
  text-align: left;
  display: inline-block;
}
.parts_googleVoice {
  max-width: 1160px;
  margin: 0 auto 5%;
}
@media all and (max-width: 768px) {
  .module-description {
    margin: 8% auto 12%;
    text-align: left;
    padding: 3%;
    width: 100%;
    font-size: 87%;
  }
  .parts_googleVoice {
    margin: 0 auto 12%;
  }
}
/**/
.section--archive .title_bg, .case-article .title_bg {
  box-sizing: border-box;
  max-width: 1160px;
  width: 100%;
  margin: 60px auto 30px;
}
.ti-reviews-container-wrapper .ti-review-item:last-child {
  display: none;
}
.section--archive .wp-gr.wpac a.wp-google-name, .case-article .wp-gr.wpac a.wp-google-name {
  pointer-events: none !important;
  color: #000 !important;
}
@media all and (max-width: 768px) {
  .section--archive .title_bg, .case-article .title_bg {
    margin: 40px auto 20px;
    padding: .8rem 0 .8rem 1rem;
  }
}
/*--------------------*/
.top-mv::before {
  content: '';
  width: 134px;
  height: 0;
  padding: 134px 0 0;
  position: absolute;
  left: 24px;
  top: 24px;
  background: url(../img/top/icon_xpel.svg) no-repeat;
  background-size: contain;
  z-index: 5;
  pointer-events: none;
}
.top-mv::after {
  content: '';
  width: min(25.8vw, 312px);
  height: 0;
  padding: min(18.6vw, 225px) 0 0;
  position: absolute;
  left: max(2vw, -10px);
  top: min(17.5vw, 215px);
  background: url(../img/common/bnr2025.webp) no-repeat;
  background-size: contain;
  z-index: 5;
  pointer-events: none;
}
.under-mv.icon_xpel::after {
  content: '';
  width: 10.332vw;
  height: 0;
  padding: 10.332vw 0 0;
  position: absolute;
  left: calc(40px + 2%);
  top: 4.3%;
  background: url(../img/top/icon_xpel.svg) no-repeat;
  background-size: contain;
  z-index: 5;
  pointer-events: none;
}
@media all and (max-width: 768px) {
  .top-mv::before {
    width: 25.6%;
    padding: 25.6% 0 0;
    left: auto;
    right: 3.4%;
    top: 11%;
  }
  .top-mv::after {
    width: 45%;
    padding: 24% 0 0;
    left: auto;
    right: 2%;
    top: 28%;
    background: url(../img/common/bnr2025_sp.webp) no-repeat;
    background-size: contain;
    z-index: 5;
    pointer-events: none;
  }
  .under-mv.icon_xpel::after {
    width: 25.6%;
    padding: 25.6% 0 0;
    left: auto;
    right: 3.4%;
    top: 3.4%;
  }
}
/*table*/
table.protection01 {
  font-weight: 700;
}
.protection01 thead {
  position: sticky;
  top: -1px;
  left: 0;
  z-index: 10;
}
.protection01 thead th {
  color: #fff;
  height: 40px;
  padding: 0;
  box-sizing: border-box;
  border: solid 1px #707070;
  pointer-events: none;
}
.protection01 thead th:nth-child(1) {
  background: #9A4530;
  width: 2em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  border-right: none;
  position: sticky;
  left: 0;
  top: 0;
}
.protection01 thead th:nth-child(2) {
  background: #9A4530;
  padding: 0 2em 0 0;
  border-left: none;
  position: sticky;
  left: 2.4em;
  top: 0;
  width: 20%;
}
.protection01 thead th:nth-child(3) {
  background: #244667;
}
.protection01 thead th:nth-child(4) {
  background: #347E81;
}
.protection01 .row-2 {
  position: sticky;
  top: 38px;
  left: 0;
  z-index: 9;
  text-align: center;
  pointer-events: none;
  border-bottom: solid 1px #707070;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .2);
}
.protection01 .row-2 td:nth-child(2), .protection01 .row-2 td:nth-child(3), .protection01 .row-2 td:nth-child(4), .protection01 .row-2 td:nth-child(5) {
  background: #C1CFDD;
}
.protection01 .row-2 td:nth-child(6), .protection01 .row-2 td:nth-child(7), .protection01 .row-2 td:nth-child(8), .protection01 .row-2 td:nth-child(9) {
  background: #C2DCDE;
}
.protection01 tr.row-2 td {
  text-align: center !important;
}
.protection01 tr td {
  text-align: center;
  border: solid 1px #707070;
  vertical-align: middle;
}
.protection01 tr td.column-1 {
  position: sticky;
  left: 0;
  z-index: 8;
  background: #DDC2C2 !important;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  line-height: 1.5;
  pointer-events: none;
  width: 2.4em;
}
.protection01 tr td.column-1 span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: pre;
  display: block;
}
.protection01 tr td.column-1.js_even {
  background: #DEDBC1 !important;
}
.protection01 tr.row-2 td.column-1:nth-child(1) {
  background: #ddc2c2 !important;
  position: sticky;
  left: 0;
  top: 0;
}
.protection01 tr td.column-2 {
  position: sticky;
  top: 0;
  left: 2em;
  text-align: left;
  box-shadow: 5px 0 10px 0 rgba(0, 0, 0, .2);
}
.protection01 thead th:nth-child(2) {
  box-shadow: 5px 0 10px 0 rgba(0, 0, 0, .2);
}
@media all and (max-width: 768px) {
  table.protection01 {
    min-width: 900px;
    line-height: 1.5;
    font-size: 1rem;
  }
  .protection01 thead th:nth-child(2) {
    width: 13%;
  }
}
/**/
.pf-price__table .table_title {
  font-size: 150%;
  font-weight: 700;
  margin: 0 0 1%;
}
table[class*="ceramic"] {
  border-collapse: collapse;
  position: relative;
  min-width: 1100px;
}
table[class*="ceramic"] th {
  background: #E7380D;
  color: #fff;
}
table[class*="ceramic"] td {
  font-weight: 700;
  border: solid 1px #707070;
  line-height: 1.8;
  vertical-align: middle;
  text-align: center;
  background: #fff;
}
table[class*="ceramic"] td.column-1 {
  text-align: left;
}
table.ceramic01::after, table.ceramic02::after, table.ceramic04::after, table.ceramic05::after {
  content: '単位：円（税込）';
  position: absolute;
  right: 0;
  top: -2.5em;
  font-weight: 700;
}
.price_leadBox {
  max-width: 1280px;
  width: 86%;
  margin: 0 auto 50px;
}
.price_leadBox h2 {
  color: #012E49;
  font-size: 2rem;
  margin: 0 0 1em;
}
.price_leadBox p {
  font-size: 1.5rem;
  letter-spacing: .05em;
  width: 59%;
  line-height: 1.8667;
}
table.ceramic01 th:nth-child(1) {
  width: 30px;
  box-sizing: border-box;
  background: #e7380d !important;
}
table.ceramic01 .column-1 {
  pointer-events: none;
  background: #DDC2C2 !important;
  text-align: center !important;
  vertical-align: middle;
  line-height: 1.5;
  letter-spacing: .02em;
  width: 2.4em;
}
table.ceramic01 .column-1 span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: pre;
  display: block;
}
table.ceramic01 th:nth-child(2), table.ceramic02 th:nth-child(1), table.ceramic04 th:nth-child(1), table.ceramic05 th:nth-child(1) {
  width: 30%;
}
table.ceramic01 .column-1, table.ceramic01 .column-2, table.ceramic01 .column-3 {
  position: sticky;
  left: 0;
  z-index: 10;
}
table.ceramic01 .column-2 {
  left: 30px;
}
table.ceramic01 .column-3 {
  left: 195px;
}
table.ceramic02 .column-1, table.ceramic02 .column-2, table.ceramic03 .column-1, table.ceramic04 .column-1, table.ceramic05 .column-1 {
  position: sticky;
  left: 0;
  z-index: 10;
}
table.ceramic02 .column-2 {
  left: 165px;
}
table.ceramic03 th:nth-child(1) {
  width: 30px;
  box-sizing: border-box;
}
table.ceramic03 td:not(.column-1) {
  text-align: left !important;
  vertical-align: top !important;
}
table.ceramic03 .row-1 .column-1 {
  width: 2.4em;
}
table.ceramic03 .row-2 .column-1 {
  pointer-events: none;
  background: #DDC2C2;
  text-align: center !important;
  vertical-align: middle;
  line-height: 1.5;
  letter-spacing: .02em;
}
table.ceramic03 .row-2 .column-1 span {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: pre;
  display: block;
}
@media all and (max-width: 768px) {
  table[class*="ceramic"] {
    min-width: 750px;
  }
  table[class*="ceramic"] th, table[class*="ceramic"] td {
    font-size: 11px !important;
  }
  .pf-price__table .table_title {
    font-size: 115%;
    white-space: nowrap;
    margin: 0 0 2%;
  }
  .price_leadBox p {
    font-size: 1.4rem;
    width: 100%;
  }
  table.ceramic01 {
    min-width: 1100px;
  }
  table.ceramic01 th:nth-child(2) {
    width: 20%;
  }
  table.ceramic01 .column-3 {
    left: 140px;
  }
  table.ceramic02 th:nth-child(1), table.ceramic04 th:nth-child(1), table.ceramic05 th:nth-child(1) {
    width: 24%;
  }
  table.ceramic02 .column-2 {
    left: 95px;
  }
  table.ceramic03 {
    min-width: 1100px;
  }
  .price_leadBox {
    width: 90%;
  }
}
/**/
@media all and (max-width: 500px) {
  .wp-gr[data-layout=grid] .grw-content .grw-reviews {
    margin: 0 !important;
  }
  .wp-gr .grw-reviews .grw-review {
    width: 50% !important;
    flex: auto !important;
  }
  .wp-gr .grw-reviews .grw-review .wp-google-text {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}
/*セラミックコーティング 2025*/
.ceramic_bnr {
  position: absolute;
  z-index: 50;
  right: 0;
  bottom: 270px;
  width: 238px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, .25);
  border: solid 1px #fff;
  transition: opacity .4s;
}
.ceramic_bnr.none {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ceramic_bnr .close {
  position: absolute;
  z-index: 15;
  width: 14px;
  height: 14px;
  background: url(../img/common/close.svg) no-repeat;
  background-size: contain;
  left: -6px;
  top: -6px;
  cursor: pointer;
}
.ceramic_bnr a {
  display: block;
}
.ceramic_bnr .bnr_thumb {
  display: block;
  overflow: hidden;
  position: relative;
}
.ceramic_bnr .bnr_thumb img {
  transition: all .4s;
}
.ceramic_bnr .textBox {
  padding: .6em 1em .9em;
  display: block;
  letter-spacing: .05em;
  background: url(../img/common/c-arrow-circle-down.svg) no-repeat right 5% center;
  background-size: 1em;
}
.ceramic_bnr .textBox .bnr_title {
  display: block;
  color: #E7380D;
  font-weight: 700;
  line-height: 2;
}
.ceramic_bnr .textBox .bnr_text {
  font-size: 87.5%;
  line-height: 1.43;
  font-weight: 700;
  color: #000000;
  display: block;
}
.ceramic_bnr a:hover .bnr_thumb img {
  transform: scale(1.1);
}
/**/
.section_ceramicAbout {
  margin: 0 auto min(10%, 110px);
}
.section_ceramicAbout .under-intro__ttl {
  text-align: center;
  margin: 0 auto 1.2rem;
  letter-spacing: .05em;
}
.section_ceramicAbout .under-intro__txt {
  max-width: 853px;
  margin: 0 auto;
  letter-spacing: .05em;
}
.section_ceramicAbout .under-intro__txt + .under-intro__txt {
  margin: .7em auto 0;
}
.section_ceramicAbout .ceramicAboutFlex {
  margin: 3.7em 0 0;
  padding: 4.35em 0 0;
  background: url(../img/ceramic/select_arrow.svg) no-repeat center top;
  background-size: 56% auto;
  display: flex;
  justify-content: space-between;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAboutLeft {
  width: 48.055%;
  overflow: hidden;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAboutRight {
  width: 48.055%;
  overflow: hidden;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_name {
  text-align: center;
  font-size: 112.5%;
  font-weight: 700;
  color: #fff;
  padding: .36em 0;
  letter-spacing: .05em;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_name small {
  display: inline-block;
  vertical-align: middle;
  font-size: 77.78%;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAboutLeft .ceramicAbout_name {
  background: #012E49;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAboutRight .ceramicAbout_name {
  background: #E7380D;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_title {
  font-size: 112.5%;
  font-weight: 700;
  text-align: center;
  color: #000000;
  margin: 1.6em 0 .5em;
  min-height: 2.85em;
  display: flex;
  align-items: center;
  letter-spacing: .05em;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_title span {
  display: block;
  width: 100%;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_text {
  font-size: 93.75%;
  font-weight: 500;
  line-height: 1.8667;
  letter-spacing: .05em;
  text-align: justify;
}
.section_ceramicAbout .ceramicAboutFlex .ceramicAbout_text.text-att {
  font-size: 81.25%;
  padding: .2em 0 0 1em;
  text-indent: -1em;
}
.section_ceramicAbout .ceramicAbout_slideThumb {
  margin: 10px 0 0;
  width: calc(100% + 10px);
  transform: translateX(-5px);
}
.section_ceramicAbout .ceramicAbout_slideThumb .slide-content {
  margin: 0 5px;
  cursor: pointer;
  overflow: hidden;
}
.section_ceramicAbout .ceramicAbout_slideThumb .slide-content img {
  transition: all .4s;
  vertical-align: top;
}
.section_ceramicAbout .ceramicAbout_slideThumb .slide-content:hover img {
  transform: scale(1.1);
}
.ceramicAbout_slide .slick-next::before, .ceramicAbout_slide .slick-prev::before, .ceramicAbout_slide .slick-next::after, .ceramicAbout_slide .slick-prev::after {
  display: none;
}
.ceramicAbout_slide .slick-next {
  width: 32px;
  height: 32px;
  background: url(../img/common/c-arrow-circle_bl.svg) no-repeat;
  background-size: contain;
  right: 16px;
  top: 155px;
  border: none;
  z-index: 10;
  transition: opacity .3s;
}
.ceramicAbout_slide .slick-next:hover, .ceramicAbout_slide .slick-prev:hover {
  opacity: .7;
}
.ceramicAbout_slide .slick-prev {
  width: 32px;
  height: 32px;
  background: url(../img/common/c-arrow-circle_bl.svg) no-repeat;
  background-size: contain;
  left: 16px;
  top: 155px;
  border: none;
  transform: rotateZ(180deg);
  z-index: 10;
}
.ceramicAbout_slideThumb .slick-track {
  transform: none !important;
}
.ceramicAbout_slideThumb .slide-content {
  position: relative;
  overflow: hidden;
}
.ceramicAbout_slideThumb .slide-content::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .3);
  pointer-events: none;
  transition: opacity .3s;
}
.ceramicAbout_slideThumb .slide-content.slick-current::before {
  opacity: 0;
}
/**/
.section_ceramicSelect .coatingDetail_wrap {
  margin: 8.2% 0 6.2%;
}
.list_coatingDetail {
  display: flex;
  justify-content: space-between;
}
.list_coatingDetail > li {
  position: relative;
  padding: 44px 0 0;
}
.list_coatingDetail > li:nth-child(1) {
  width: 58.5%;
}
.list_coatingDetail > li:nth-child(2) {
  width: 41%;
}
.list_coatingDetail .detail_title {
  text-align: center;
  color: #fff;
  font-size: 112.5%;
  position: absolute;
  right: 0;
  top: 0;
  line-height: 2.22;
  width: 100%;
  box-sizing: border-box;
  border-radius: 4px 4px 0 0;
  letter-spacing: .05em;
}
.list_coatingDetail .detail_title::before {
  content: '';
  width: 13%;
  height: 0;
  padding: 29% 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
  right: 3.2%;
  bottom: -1.3em;
  z-index: 10;
}
.list_coatingDetail li.detail--type01 .detail_title::before {
  background-image: url("../img/ceramic/coating01.webp");
}
.list_coatingDetail li.detail--type02 .detail_title::before {
  background-image: url("../img/ceramic/coating02.webp");
}
.list_coatingDetail .detail_title small {
  font-size: 77.78%;
  display: inline-block;
  vertical-align: middle;
}
.list_coatingDetail li.detail--type01 .detail_title {
  background: #012E49;
  width: 70%;
}
.list_coatingDetail li.detail--type02 .detail_title {
  background: #E7380D;
}
.dl_coatingDetail {
  display: flex;
  justify-content: space-between;
  letter-spacing: .05em;
}
.dl_coatingDetail dt {
  background: #F5F5F5;
  width: 29%;
  box-sizing: border-box;
  padding: 1em 0;
  text-align: center;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
}
.dl_coatingDetail:not(:first-of-type) dt::before {
  content: '';
  position: absolute;
  left: 1em;
  top: 0;
  width: calc(100% - 2em);
  height: 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.dl_coatingDetail dt span {
  display: block;
  width: 100%;
}
.dl_coatingDetail dd {
  width: 70%;
  box-sizing: border-box;
  padding: 1.4em 1.4em 1.15em 1.4em;
  line-height: 1.75;
  position: relative;
  display: flex;
  align-items: center;
}
.dl_coatingDetail dd span {
  display: block;
  width: 100%;
}
.list_coatingDetail li.detail--type01 .dl_coatingDetail dd small {
  font-size: 85%;
  display: inline-block;
  vertical-align: middle;
}
.dl_coatingDetail:not(:first-of-type) dd::before {
  content: '';
  position: absolute;
  left: 1em;
  top: 0;
  width: calc(100% - 2em);
  height: 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.list_coatingDetail li.detail--type01 .dl_coatingDetail dd {
  background: #EAF7FF;
}
.list_coatingDetail li.detail--type02 .dl_coatingDetail dt {
  display: none;
}
.list_coatingDetail li.detail--type02 .dl_coatingDetail dd {
  background: #FFF6F4;
  width: 100%;
}
.list_coatingIcons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1% 0 2%;
}
.list_coatingIcons > li {
  width: 20%;
  text-align: center;
}
.list_coatingIcons > li figcaption {
  line-height: 1.375;
  min-height: 2.75em;
  margin: 0.5em 0 0;
}
/**/
.parts_ceramicPrice {
  margin: 0 auto min(9%, 105px);
}
.parts_ceramicPrice a {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  background: #012E49;
}
.parts_ceramicPrice .ceramicPrice_img {
  width: 50%;
  overflow: hidden;
}
.parts_ceramicPrice .ceramicPrice_img img {
  transition: all .3s;
}
.parts_ceramicPrice a:hover .ceramicPrice_img img {
  transform: scale(1.1);
}
.parts_ceramicPrice .textBox {
  width: 50%;
}
.parts_ceramicPrice .ceramicPrice_title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  letter-spacing: .05em;
}
.parts_ceramicPrice .ceramicPrice_title span.en {
  font-family: 'Roboto', sans-serif;
  font-size: 125%;
  display: block;
  padding: 0 0 0 .6em;
}
.parts_ceramicPrice .ceramicPrice_title span.jp {
  display: block;
  font-size: 150%;
  padding: .5em 0 0;
  margin: .5em 0 0;
  position: relative;
}
.parts_ceramicPrice .ceramicPrice_title span.jp::before {
  position: absolute;
  content: '';
  height: .1em;
  width: 1.4em;
  background: #fff;
  display: block;
  top: 0;
  left: calc(50%);
}
.parts_ceramicPrice .ceramicPrice_title span.jp::after {
  position: absolute;
  content: '';
  height: .1em;
  width: 1.4em;
  background: #e7380d;
  display: block;
  top: 0;
  left: calc(50% - 1.4em);
}
.parts_ceramicPrice .ceramicPrice_btn {
  max-width: 375px;
  width: 86%;
  margin: 5% auto 0;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
  position: relative;
  border: solid 1px #fff;
}
.parts_ceramicPrice .ceramicPrice_btn::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: #012E49;
  transition: all .4s;
}
.parts_ceramicPrice a:hover .ceramicPrice_btn::before {
  width: 100%;
  left: 0;
  right: auto;
}
.parts_ceramicPrice .ceramicPrice_btn span.link {
  display: block;
  color: #012E49;
  font-size: 125%;
  font-weight: 700;
  position: relative;
  padding: .6em 0;
  transition: all .3s;
}
.parts_ceramicPrice .ceramicPrice_btn span.link::before {
  content: '';
  width: 1.1em;
  height: 1.2em;
  background-image: url(../img/ceramic/icon_contents.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  left: 8%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.parts_ceramicPrice .ceramicPrice_btn span.link::after {
  content: '';
  width: 1.1em;
  height: 1.2em;
  background-image: url(../img/common/icon_arrow02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.parts_ceramicPrice .ceramicPrice_btn span.link span {
  position: relative;
  z-index: 10;
  letter-spacing: .05em;
}
.parts_ceramicPrice a:hover .ceramicPrice_btn span.link {
  color: #fff;
}
.parts_ceramicPrice a:hover .ceramicPrice_btn span.link::before {
  background-image: url(../img/ceramic/icon_contents--on.svg);
}
.parts_ceramicPrice a:hover .ceramicPrice_btn span.link::after {
  background-image: url(../img/common/icon_arrow02--on.svg);
}
/**/
.section_ceramicOperation {
  margin: 0 0 min(6%, 76px);
}
.section_ceramicOperation .ceramicOperation_leadBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFF6F4;
  flex-direction: row-reverse;
  margin: 4% auto 6%;
}
.section_ceramicOperation .ceramicOperation_leadBox .imgBox {
  width: 50%;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox {
  width: 50%;
  box-sizing: border-box;
  text-align: center;
  letter-spacing: .05em;
  line-height: 1.75;
  position: relative;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox span.moya {
  display: inline-block;
  position: relative;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox span.moya::before {
  content: '';
  width: 1em;
  height: 0;
  padding: 5% 0 0;
  background: url("../img/ceramic/icon_une.svg") no-repeat;
  background-size: contain;
  position: absolute;
  right: 1.6em;
  top: 0;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox .ex_text {
  font-size: 112.5%;
  font-weight: 700;
  line-height: 2.33;
  padding: 2em 0 0;
  position: relative;
  background: url(../img/common/icon_bottom.svg);
  background-size: 1.5em auto;
  background-position: center top 1em;
  background-repeat: no-repeat;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox .ex_text span {
  color: #E7380D;
}
.section_ceramicOperation .ceramicOperation_leadBox .textBox .second {
  padding: 0 8%;
  margin: -1% 0 0;
}
.section_ceramicOperation .ceramicOperation_set + .ceramicOperation_set {
  margin: 5.7% 0 0;
}
.section_ceramicOperation .ceramicOperation_set .set_title {
  font-size: 125%;
  font-weight: 700;
  background: #F5F5F5;
  border-left: solid 2px #E7380D;
  margin: 0 0 3.6%;
  padding: .9em 1em;
  letter-spacing: .05em;
}
.list_ceramicOperation {
  display: flex;
  justify-content: space-between;
  letter-spacing: .05em;
}
.list_ceramicOperation > li {
  width: 30.74%;
}
.list_ceramicOperation > li .ceramicOperation_name {
  text-align: center;
  color: #E7380D;
  font-size: 112.5%;
  font-weight: 700;
  margin: 0 0 3.5%;
}
.list_ceramicOperation > li .ceramicOperation_desc {
  margin: 5% 0 0;
  line-height: 2;
  text-align: justify;
}
.list_ceramicPreparation {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: -2.6% 0 0;
  letter-spacing: .05em;
}
.list_ceramicPreparation + .list_ceramicPreparation {
  margin: 0;
}
.list_ceramicPreparation + .list_ceramicPreparation > li::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #000 1px, transparent 1px);
  background-size: 9px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.list_ceramicPreparation > li {
  width: 30.74%;
  position: relative;
  padding: 3% 0 2.6%;
}
.list_ceramicPreparation > li + li::before {
  content: '';
  width: 5%;
  height: 0;
  padding: 10% 0 0;
  background: url(../img/common/icon_arrow03.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -9%;
  top: 34%;
  margin: auto;
}
.list_ceramicPreparation > li .ceramicPreparation_name {
  text-align: center;
  color: #012E49;
  font-weight: 700;
  font-size: 112.5%;
  margin: 3.5% 0 2%;
}
.list_ceramicPreparation > li .ceramicPreparation_desc {
  font-size: 93.75%;
  line-height: 1.8667;
  text-align: justify;
}
.list_ceramicPreparation > li .ceramicPreparation_desc.space {
  letter-spacing: .01em;
}
/**/
.section_ceramicStaff {
  margin: 0 0 min(11%, 135px);
}
.section_ceramicStaff .staffWrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 5.7% 0 5.5%;
  min-height: 340px;
}
.section_ceramicStaff .staffWrap .staffBox {
  width: 25.5%;
  text-align: justify;
  letter-spacing: .05em;
}
.section_ceramicStaff .staffWrap .staffImage {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 42.121%;
}
.section_ceramicStaff .staffWrap .staff_name {
  white-space: nowrap;
  text-indent: 150%;
  overflow: hidden;
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
  height: 0;
  padding: 6.5% 0 0;
  margin: 0 0 6%;
}
.section_ceramicStaff .staffWrap .staff_name.name01 {
  background-image: url("../img/ceramic/name01.svg");
}
.section_ceramicStaff .staffWrap .staff_name.name02 {
  background-image: url("../img/ceramic/name02.svg");
}
.section_ceramicStaff .staff_lead {
  color: #E7380D;
  font-size: 106.25%;
  font-weight: 700;
  margin: 0 0 2%;
}
.section_ceramicStaff .staff_text {
  font-size: 93.75%;
  line-height: 1.867;
}
/**/
.section_ceramicEquipment {
  margin: 0 0 min(13%, 165px);
}
.section_ceramicEquipment .scrollin {
  width: 94%;
  margin: auto;
}
.section_ceramicEquipment .ceramicEquipment_lead {
  font-size: 150%;
  font-weight: 700;
  text-align: center;
  margin: .7% 0;
  letter-spacing: .05em;
}
.section_ceramicEquipment .ceramicEquipment_text {
  font-size: 93.75%;
  max-width: 770px;
  width: 90%;
  line-height: 1.867;
  margin: 0 auto 3%;
  letter-spacing: .05em;
}
.section_ceramicEquipment .pf-intro__image {
  width: 108%;
}
.section_ceramicEquipment .pf-intro__thumbs .slick-track {
  width: 100% !important;
}
.section_ceramicEquipment .pf-intro__slider .slick-slide {
  height: auto !important;
}
.section_ceramicEquipment .pf-intro__slider .slick-list {
  overflow: visible;
}
.section_ceramicEquipment .pf-intro__sec .slick-cloned {
  display: none !important;
}
.section_ceramicEquipment .pf-intro__thumbs .slick-arrow {
  display: none !important;
}
/**/
.section_ceramicMenu {
  margin: 0 0 11.5%;
}
.section_ceramicMenu .inner {
  max-width: 1080px;
}
.list_ceramicMenu {
  display: flex;
  margin: 4.8% auto 2.2%;
  width: 98%;
}
.list_ceramicMenu > li {
  width: 25%;
  position: relative;
  box-sizing: border-box;
}
.list_ceramicMenu > li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-image: linear-gradient(to bottom, #000 1px, transparent 1px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
  background-position: left bottom;
}
.list_ceramicMenu > li img {
  display: block;
  width: 44%;
  margin: 0 auto 6%;
  vertical-align: top;
}
.list_ceramicMenu > li .ceramicMenu_name {
  text-align: center;
  color: #012E49;
  font-weight: 700;
  letter-spacing: .05em;
  margin: 0 0 .5em;
}
.list_ceramicMenu > li .ceramicMenu_desc {
  font-size: 87.5%;
  width: 89%;
  margin: auto;
  line-height: 1.714;
  letter-spacing: .05em;
  text-align: justify;
}
.section_ceramicMenu .ceramicMenu_image {
  transform: translateX(2%);
}
.pcRight section[id*="area"] {
  padding-top: 40px;
  margin-top: -40px;
}
@media screen and (max-width: 1280px) {
  .pcRight {
    width: calc(100% - 126px);
    margin: 0 0 0 auto;
  }
  .pcRight .inner {
    width: 98%;
    margin: 0;
  }
  .section_ceramicEquipment .pf-intro__image {
    width: 100%;
  }
  .pcRight section[id*="area"] {
    padding-top: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 1200px) {
  .pcRight {
    font-size: 1.3333vw;
  }
  .pcRight .module-title__jp {
    font-size: 228.6%;
    padding-top: 2.8%;
  }
  .section_ceramicEquipment .scrollin {
    width: 98%;
  }
  .list_coatingDetail > li {
    padding: 4.6% 0 0;
  }
  .list_coatingDetail .detail_title:before {
    width: 15%;
    height: 0;
    padding: 32% 0 0;
    right: 3%;
  }
  .section_ceramicStaff .staffWrap {
    min-height: 0;
  }
  .section_ceramicMenu .ceramicMenu_image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pcRight .inner {
    width: 87%;
    margin: auto;
  }
  .pcRight .module-title__jp {
    font-size: 228.6%;
  }
  .ceramic_bnr {
    position: relative;
    left: 0;
    bottom: 0;
    width: 87%;
    margin: 13% auto 12%;
    border: none;
  }
  .ceramic_bnr .close {
    display: none;
  }
  .ceramic_bnr a {
    display: flex;
  }
  .ceramic_bnr .bnr_thumb {
    width: 50%;
  }
  .ceramic_bnr .textBox {
    box-sizing: border-box;
    width: 50%;
    background: url(../img/common/c-arrow-circle-down.svg) no-repeat right 10% center;
    background-size: 1em;
    padding: .3em .75em;
  }
  .ceramic_bnr .textBox .bnr_title {
    font-size: 4.267vw;
    line-height: 2;
  }
  .ceramic_bnr .textBox .bnr_text {
    font-size: 3.733vw;
    line-height: 1.286;
  }
  /**/
  .under-anchor__lists .under-anchor__list.last {
    width: 100%;
  }
  .pcRight {
    font-size: 3.7334vw;
    width: 100%;
    margin: 0 0 0 auto;
  }
  .section_ceramicAbout {
    margin: 0 auto 17%;
  }
  .section_ceramicAbout .under-intro__ttl {
    margin: 7% auto 4%;
  }
  .section_ceramicAbout .under-intro__txt {
    line-height: 1.85;
  }
  .section_ceramicAbout .under-intro__txt + .under-intro__txt {
    margin: .2em auto 0;
  }
  .section_ceramicAbout .ceramicAboutFlex {
    margin: 3em 0 0;
    padding: 0;
    background: none;
    display: block;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAboutLeft {
    width: 100%;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAboutRight {
    width: 100%;
    margin: 10% 0 0;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_name {
    font-size: 114.3%;
    padding: .5em 0;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_name small {
    font-size: 87.5%;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_title {
    margin: 1.6em 0 .2em;
    min-height: 0;
    line-height: 1.75;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_title span {
    display: block;
    width: 100%;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_text {
    font-size: 100%;
  }
  .section_ceramicAbout .ceramicAboutFlex .ceramicAbout_text.text-att {
    font-size: 100%;
  }
  .section_ceramicAbout .ceramicAbout_slideThumb {
    display: none;
  }
  .ceramicAbout_slide .slick-next {
    width: 24px;
    height: 24px;
    right: 10px;
    top: 44%;
  }
  .ceramicAbout_slide .slick-prev {
    width: 24px;
    height: 24px;
    left: 10px;
    top: 44%;
  }
  .ceramicAbout_slide {
    margin: 0 0 42px;
  }
  .ceramicAbout_slide .slick-dots {
    bottom: -22px;
  }
  .ceramicAbout_slide .slick-dots li {
    width: .571em;
    height: .571em;
    margin: 0 .6em;
  }
  .ceramicAbout_slide .slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #C8C8C8;
    border-radius: 50%;
  }
  .ceramicAbout_slide .slick-dots li.slick-active button {
    background: #012E49;
  }
  .ceramicAbout_slide .slick-dots li button::before {
    display: none;
  }
  /**/
  .section_ceramicSelect .coatingDetail_wrap {
    margin: 11% 0 14%;
  }
  .list_coatingDetail {
    display: block;
  }
  .list_coatingDetail > li {
    position: relative;
    padding: 18.5% 0 0;
  }
  .list_coatingDetail > li:nth-child(1) {
    width: 100%;
  }
  .list_coatingDetail > li:nth-child(2) {
    width: 100%;
  }
  .list_coatingDetail .detail_title {
    line-height: 1.25;
    width: 100%;
    padding: .6em 2% .2em 0;
  }
  .list_coatingDetail .detail_title::before {
    content: '';
    width: 17%;
    height: 0;
    padding: 37% 0 0;
    right: 3%;
    bottom: -13%;
  }
  .list_coatingDetail .detail_title small {
    font-size: 87.5%;
    display: block;
    line-height: 1.8;
  }
  .list_coatingDetail li.detail--type01 .detail_title {
    width: 69%;
  }
  .list_coatingDetail li.detail--type02 {
    margin: 14% 0 0;
  }
  .list_coatingDetail li.detail--type02 .detail_title {
    width: 68%;
  }
  .dl_coatingDetail dt {
    width: 30%;
    padding: 0;
  }
  .dl_coatingDetail:not(:first-of-type) dt::before {
    content: '';
    position: absolute;
    left: 1em;
    top: 0;
    width: calc(100% - 2em);
    height: 1px;
    background-image: linear-gradient(to right, #000 1px, transparent 1px);
    background-size: 8px 1px;
    background-repeat: repeat-x;
  }
  .dl_coatingDetail dd {
    width: 69%;
    padding: .965em 1.2em .965em 1em;
    line-height: 1.43;
  }
  .list_coatingDetail li.detail--type02 .dl_coatingDetail dd {
    width: 68%;
  }
  .list_coatingDetail li.detail--type01 .dl_coatingDetail dd small {
    display: block;
    font-size: 100%;
    padding: 0 0 0 1em;
    text-indent: -1em;
  }
  .list_coatingDetail li.detail--type02 .dl_coatingDetail dt {
    display: flex;
  }
  .list_coatingIcons {
    width: 85%;
    margin: auto;
    flex-wrap: wrap;
  }
  .list_coatingIcons > li {
    width: 45%;
    margin: 2% 0;
  }
  .list_coatingIcons > li figcaption {
    min-height: 0;
  }
  /**/
  .parts_ceramicPrice {
    margin: 0 auto 14.5%;
  }
  .parts_ceramicPrice a {
    display: block;
  }
  .parts_ceramicPrice .ceramicPrice_img {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 0;
    padding: 47% 0 0;
  }
  .parts_ceramicPrice .ceramicPrice_img img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  .parts_ceramicPrice .textBox {
    width: 100%;
    padding: 9% 0 12%;
  }
  .parts_ceramicPrice .ceramicPrice_title span.en {
    font-size: 114.3%;
  }
  .parts_ceramicPrice .ceramicPrice_title span.jp {
    font-size: 128.6%;
  }
  .parts_ceramicPrice .ceramicPrice_btn {
    margin: 6% auto 0;
  }
  .parts_ceramicPrice .ceramicPrice_btn::before {
    content: '';
    width: 0;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background: #012E49;
    transition: all .4s;
  }
  .parts_ceramicPrice .ceramicPrice_btn:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  .parts_ceramicPrice .ceramicPrice_btn a {
    display: block;
    color: #012E49;
    font-size: 125%;
    font-weight: 700;
    position: relative;
    padding: .6em 0;
    transition: all .3s;
  }
  .parts_ceramicPrice .ceramicPrice_btn a::before {
    content: '';
    width: 1.1em;
    height: 1.2em;
    background-image: url(../img/ceramic/icon_contents.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 10;
    left: 10%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  .parts_ceramicPrice .ceramicPrice_btn a::after {
    content: '';
    width: 1.1em;
    height: 1.2em;
    background-image: url(../img/common/icon_arrow02.svg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    z-index: 10;
    right: 4%;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all .3s;
  }
  .parts_ceramicPrice .ceramicPrice_btn a span {
    position: relative;
    z-index: 10;
  }
  .parts_ceramicPrice .ceramicPrice_btn a:hover {
    color: #fff;
  }
  .parts_ceramicPrice .ceramicPrice_btn a:hover::before {
    background-image: url(../img/ceramic/icon_contents--on.svg);
  }
  .parts_ceramicPrice .ceramicPrice_btn a:hover::after {
    background-image: url(../img/common/icon_arrow02--on.svg);
  }
  /**/
  .section_ceramicOperation {
    margin: 0 0 24.5%;
  }
  .section_ceramicOperation .ceramicOperation_leadBox {
    display: block;
    margin: 8% auto 12%;
  }
  .section_ceramicOperation .ceramicOperation_leadBox .imgBox {
    width: 100%;
  }
  .section_ceramicOperation .ceramicOperation_leadBox .textBox {
    width: 100%;
    padding: 15% 4% 10%;
  }
  .section_ceramicOperation .ceramicOperation_leadBox .textBox span.moya::before {
    width: 1.5em;
    height: 0;
    right: .5em;
    padding: 9% 0 0;
    top: -2em;
  }
  .section_ceramicOperation .ceramicOperation_leadBox .textBox .ex_text {
    font-size: 100%;
    line-height: 2;
    padding: 2.5em 0 0;
  }
  .section_ceramicOperation .ceramicOperation_set + .ceramicOperation_set {
    margin: 10.5% 0 0;
  }
  .section_ceramicOperation .ceramicOperation_set .set_title {
    font-size: 114.3%;
    margin: 0 0 8.2%;
    padding: .8em;
  }
  .list_ceramicOperation {
    display: block;
  }
  .list_ceramicOperation > li {
    width: 100%;
  }
  .list_ceramicOperation > li + li {
    margin: 7.3% 0 0;
  }
  .list_ceramicOperation > li .ceramicOperation_name {
    font-size: 114.3%;
    margin: 0 0 3%;
  }
  .list_ceramicOperation > li .ceramicOperation_thumb {
    overflow: hidden;
    position: relative;
    height: 0;
    padding: 55.175% 0 0;
  }
  .list_ceramicOperation > li .ceramicOperation_thumb img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
  }
  .list_ceramicOperation > li .ceramicOperation_desc {
    margin: 3% 0 0;
    line-height: 1.86;
  }
  .list_ceramicPreparation {
    display: block;
    position: relative;
    margin: -.05% 0 0;
  }
  .list_ceramicPreparation + .list_ceramicPreparation {
    margin: 0;
    padding: 14% 0 0;
  }
  .list_ceramicPreparation + .list_ceramicPreparation::before {
    content: '';
    width: 9%;
    height: 0;
    padding: 5% 0 0;
    background: url(../img/common/icon_bottom.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 2%;
    margin: auto;
  }
  .list_ceramicPreparation + .list_ceramicPreparation > li::after {
    display: none;
  }
  .list_ceramicPreparation > li {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .list_ceramicPreparation > li + li {
    padding: 13.1% 0 0;
  }
  .list_ceramicPreparation > li + li::before {
    content: '';
    width: 9%;
    height: 0;
    padding: 5% 0 0;
    background: url(../img/common/icon_bottom.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: 0;
    right: 0;
    top: 5%;
    margin: auto;
  }
  .list_ceramicPreparation > li .ceramicPreparation_thumb {
    overflow: hidden;
    position: relative;
    height: 0;
    padding: 41.7% 0 0;
  }
  .list_ceramicPreparation > li .ceramicPreparation_thumb img {
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center 5%;
    width: 100%;
    height: 100%;
  }
  .list_ceramicPreparation > li .ceramicPreparation_desc {
    font-size: 100%;
    line-height: 1.714;
  }
  /**/
  .section_ceramicStaff {
    margin: 0 0 25%;
  }
  .section_ceramicStaff .staffWrap {
    display: block;
    margin: 9% 0 5.5%;
    min-height: 0;
  }
  .section_ceramicStaff .staffWrap .staffBox {
    width: 100%;
  }
  .section_ceramicStaff .staffWrap .staffBox + .staffBox {
    margin: 8% 0 0;
  }
  .section_ceramicStaff .staffWrap .staffImage {
    position: relative;
    width: 100%;
    margin: 9% 0 0;
    overflow: hidden;
    height: 0;
    padding: 64% 0 0;
  }
  .section_ceramicStaff .staffWrap .staffImage img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .section_ceramicStaff .staffWrap .staff_name {
    padding: 4.6% 0 0;
    margin: 0 0 3%;
  }
  .section_ceramicStaff .staff_lead {
    font-size: 114.3%;
    margin: 0;
  }
  .section_ceramicStaff .staff_text {
    font-size: 100%;
    line-height: 1.867;
    letter-spacing: .05em;
  }
  /**/
  .section_ceramicEquipment {
    margin: 0 0 20%;
  }
  .section_ceramicEquipment .pf-intro__sec {
    padding: 0;
    margin: 0;
  }
  .section_ceramicEquipment .scrollin {
    width: 88%;
    margin: auto;
  }
  .section_ceramicEquipment .ceramicEquipment_lead {
    font-size: 135%;
    margin: 0 0 3%;
  }
  .section_ceramicEquipment .ceramicEquipment_text {
    font-size: 100%;
    width: 100%;
    margin: 0 auto 6%;
  }
  .section_ceramicEquipment .pf-intro__image {
    width: 100%;
  }
  .section_ceramicEquipment .pf-intro__slider-title {
    margin: 1.8em 0 0;
  }
  .section_ceramicEquipment .pf-intro__thumbs .slick-track {
    width: 100% !important;
  }
  .section_ceramicEquipment .pf-intro__slider .slick-slide {
    height: auto !important;
  }
  .section_ceramicEquipment .pf-intro__slider .slick-list {
    overflow: hidden;
  }
  .section_ceramicEquipment .pf-intro__sec .slick-cloned {
    display: none !important;
  }
  .section_ceramicEquipment .pf-intro__thumbs .slick-arrow {
    display: none !important;
  }
  /**/
  .section_ceramicMenu {
    margin: 0 0 30%;
  }
  .pcRight .section_ceramicMenu .inner {
    width: 90%;
  }
  .list_ceramicMenu {
    display: block;
    margin: 6.5% 0 20%;
    width: 100%;
    transform: translateX(0);
    overflow: hidden;
  }
  .list_ceramicMenu > li {
    width: 100%;
  }
  .list_ceramicMenu > li + li {
    margin: 7% 0 0;
  }
  .list_ceramicMenu > li figure {
    position: relative;
  }
  .list_ceramicMenu > li + li::before {
    display: none;
  }
  .list_ceramicMenu > li img {
    width: 34%;
    position: absolute;
    left: -3%;
    top: 6%;
  }
  .list_ceramicMenu > li figcaption {
    padding: 0 0 0 26%;
  }
  .list_ceramicMenu > li .ceramicMenu_name {
    text-align: left;
    font-size: 114.3%;
    margin: 0 0 1%;
  }
  .list_ceramicMenu > li .ceramicMenu_desc {
    font-size: 100%;
    margin: 0;
    width: 100%;
    line-height: 1.86;
  }
  .section_ceramicMenu .ceramicMenu_image {
    width: 97%;
  }
  .list_ceramicMenu_image {
    margin: 10% auto 0;
    width: 97%;
  }
  .list_ceramicMenu_image > li {
    background: #F5F5F5;
    position: relative;
    padding: 5% 9%;
  }
  .list_ceramicMenu_image > li::before {
    content: '';
    width: 8%;
    height: 0;
    padding: 8% 0 0;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 6%;
    top: 6%;
  }
  .list_ceramicMenu_image > li:nth-child(1)::before {
    background-image: url("../img/ceramic/no1.webp");
  }
  .list_ceramicMenu_image > li:nth-child(2)::before {
    background-image: url("../img/ceramic/no2.webp");
  }
  .list_ceramicMenu_image > li:nth-child(3)::before {
    background-image: url("../img/ceramic/no3.webp");
  }
  .list_ceramicMenu_image > li:nth-child(4)::before {
    background-image: url("../img/ceramic/no4.webp");
  }
  .list_ceramicMenu_image > li + li {
    margin: 1.5% 0 0;
  }
  .list_ceramicMenu_image > li .thumb {
    width: 45%;
    margin: auto;
  }
  .list_ceramicMenu_image > li:nth-child(1) .thumb {
    width: 83%;
  }
  .list_ceramicMenu_image > li .name {
    text-align: center;
    color: #012E49;
    font-size: 114.3%;
    font-weight: 700;
    margin: 1% 0 2%;
  }
  .list_ceramicMenu_image > li .text {
    line-height: 1.714;
    text-align: center;
  }
}
/**/
.contents .area_caseSummary {
  margin: -8rem 0 12rem;
}
.contents .area_caseSummary .module-btn.btn--long {
  max-width: 320px;
  margin: 8rem auto 0;
  background: #e7380d;
  border-radius: 5rem;
}
.contents .area_caseSummary .module-btn.btn--long::before {
  background: #fff;
}
.contents .area_caseSummary .module-btn.btn--long a.module-btn__link {
  color: #fff;
  padding: 1.2rem 0;
}
.contents .area_caseSummary .module-btn.btn--long:hover a.module-btn__link {
  color: #e7380d;
}
.contents .area_caseSummary .module-btn.btn--long a.module-btn__link::after {
  border-right-color: #fff;
  border-bottom-color: #fff;
}
.contents .area_caseSummary .module-btn.btn--long:hover a.module-btn__link::after {
  border-right-color: #e7380d;
  border-bottom-color: #e7380d;
}
@media screen and (max-width: 768px) {
  .contents .area_caseSummary {
    margin: 0rem 0 10rem;
    padding-top: 0;
  }
  .contents .area_caseSummary .module-btn.btn--long {
    max-width: 420px;
    margin: 6rem auto 0;
  }
}
.parts_googleVoice .wp-gr .grw-header {
  width: 100% !important;
  margin: 0 auto 1em !important;
}
/*----------*/
.icon_bnrAchievements {
  position: relative;
}
.icon_bnrAchievements::after {
  content: '';
  width: 280px;
  height: 0;
  padding: 145px 0 0;
  box-sizing: border-box;
  background: url(../img/common/bnr2025Under.webp) no-repeat;
  background-size: contain;
  position: absolute;
  left: 180px;
  top: 20px;
}
.under-mv__bg.icon_bnrAchievements::after {
  width: 21%;
  padding: 11% 0 0;
  left: 15%;
  top: 4.3%;
}
@media screen and (max-width: 768px) {
  .icon_bnrAchievements::after {
    width: 45%;
    height: 0;
    padding: 40% 0 0;
    left: auto;
    right: 3.4%;
    top: 37%;
  }
  .under-mv__bg.icon_bnrAchievements::after {
    width: 45%;
    padding: 24% 0 0;
    left: auto;
    right: 3.4%;
    top: 24%;
  }
}
/*202506*/
.under-mv .kakaku_anchor {
  position: absolute;
  right: 3%;
  bottom: 6%;
  width: 9.383%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, .25);
}
.under-mv .kakaku_anchor a {
  transition: all .2s;
  position: relative;
  display: block;
}
.under-mv .kakaku_anchor span.on {
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  transform: translateX(100%);
  transition: all .4s;
}
.under-mv .kakaku_anchor span.btn {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/common/kakau_btn--on.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateX(-100%);
  transition: all .4s;
}
.under-mv .kakaku_anchor a:hover span.on {
  transform: translateX(0%);
  -webkit-animation: .4s ease 0s 1 kakaku01;
  animation: .4s ease 0s 1 kakaku01;
}
.under-mv .kakaku_anchor a:hover span.btn {
  transform: translateX(0%);
  -webkit-animation: .4s ease 0s 1 kakaku02;
  animation: .4s ease 0s 1 kakaku02;
}
@-webkit-keyframes kakaku01 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0)
  }
}
@-webkit-keyframes kakaku02 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0)
  }
}
@keyframes kakaku01 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0)
  }
}
@keyframes kakaku02 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0)
  }
}
.concierge_service {
  padding: 2.5em 0 0;
}
.concierge_service .concierge_fukidashi {
  text-align: center;
  font-size: 125%;
  line-height: 1.4;
  color: #fff;
  font-weight: 700;
  margin: 0 0 .7em;
}
.concierge_service .concierge_fukidashi span {
  display: inline-block;
  background: #012D4A;
  border-radius: 4px;
  position: relative;
  letter-spacing: .05em;
  padding: .3em .715em;
}
.concierge_service .concierge_fukidashi span::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #012d4a;
  border-right: 0;
  position: absolute;
  top: calc(100% - 8px);
  left: 0;
  right: 8px;
  margin: auto;
}
.concierge_service .module-title.var--concierge .module-title__jp {
  color: #E7380D;
}
.concierge_service .module-title.var--concierge .module-title__jp small {
  display: inline-block;
  vertical-align: middle;
  color: #000;
}
.concierge_service .concierge_lead {
  text-align: center;
  font-size: 93.75%;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .03em;
  margin: 0 0 2.5em;
}
.concierge_service .conciergeWrap {
  max-width: 1028px;
  margin: 0 auto 6.6em;
  box-sizing: border-box;
}
.concierge_service .conciergeWrap .title_bg {
  padding: .7em 0 .7em 22px;
  width: 100%;
  box-sizing: border-box;
}
.concierge_service .conciergeSet {
  padding: 2.8em 4.1em;
  position: relative;
  border: solid 6px #EBEBEB;
}
.concierge_service .conciergeSet + .conciergeSet {
  border-top: none;
  padding: calc(2.8em + 6px) 4em 2.8em;
}
.concierge_service .conciergeSet + .conciergeSet::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #ebebeb;
  border-bottom: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  pointer-events: none;
}
.concierge_service .conciergeSet.active + .conciergeSet::before {
  border-top-color: #E7380D;
}
.concierge_service .conciergeSet + .conciergeSet::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 17px solid transparent;
  border-left: 17px solid transparent;
  border-top: 18px solid #fff;
  border-bottom: 0;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -6px;
  margin: auto;
  pointer-events: none;
}
.concierge_service .conciergeSet.active {
  border-color: #E7380D;
}
.concierge_service .conciergeSet .set_lead {
  font-size: 93.75%;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .03em;
  margin: 0 0 2em;
}
.list_conciergeDetail > li {
  display: flex;
  align-items: center;
  position: relative;
}
.list_conciergeDetail > li + li {
  margin: 1em 0 0;
  padding: 1em 0 0;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 9px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
.list_conciergeDetail > li .conciergeDetail_imageBox {
  width: 320px;
}
.list_conciergeDetail > li .conciergeDetail_textBox {
  width: calc(100% - 320px);
  box-sizing: border-box;
  padding: 0 0 0 2.5em;
}
.list_conciergeDetail > li .conciergeDetail_title {
  color: #012D4A;
  font-size: 112.5%;
  font-weight: 700;
  margin: 0 0 .5em;
}
.list_conciergeDetail > li .conciergeDetail_title strong {
  background: linear-gradient(transparent 70%, #FFE434 70%);
  padding: .2em 0;
}
.list_conciergeDetail > li .conciergeDetail_text {
  font-weight: 500;
  line-height: 1.6;
  padding: 0 0 0 1.5em;
  letter-spacing: .03em;
  margin: .3em 0 0;
}
.list_check > li {
  padding: 0 0 0 1.5em;
  background: url(../img/common/icon_check.svg) no-repeat;
  background-position: left top .4em;
  background-size: 1.1em auto;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .03em;
}
.list_check > li + li {
  margin: .25em 0 0;
}
.list_check > li small {
  display: block;
  font-size: 87.5%;
  font-weight: 500;
  padding: 0 0 0 1em;
  text-indent: -1.1em;
}
.under-mv__bg.pricePage {
  height: auto;
}
@media screen and (max-width: 768px) {
  .under-mv .kakaku_anchor {
    right: 4%;
    bottom: 21%;
    width: 32%;
  }
  .kakakuSticky {
    margin: 3.4em 0 0;
  }
  .kakakuSticky .under-anchor {
    margin: 0 2.4rem;
    padding: 2rem 1.3rem;
  }
  .kakakuSticky .under-anchor .under-anchor__lists {
    display: block;
  }
  .kakakuSticky .under-anchor .under-anchor__lists > li {
    width: 100%;
  }
  .kakakuSticky .under-anchor .under-anchor__lists > li + li {
    margin: 1em 0 0;
  }
  .concierge_service {
    padding: 2.5em 0 0;
  }
  .concierge_service .concierge_fukidashi {
    font-size: 87.5%;
    line-height: 2;
    margin: 0 0 1.7em;
  }
  .concierge_service .concierge_fukidashi span {
    padding: .15em .715em;
  }
  .concierge_service .module-title.var--concierge {
    text-align: center;
  }
  .concierge_service .module-title.var--concierge .module-title__jp {
    font-size: 3rem;
  }
  .concierge_service .module-title.var--concierge .module-title__jp small {
    display: block;
    font-size: 58%;
    margin: 2% 0 8%;
  }
  .concierge_service .concierge_lead {
    text-align: left;
    font-size: 87.5%;
    line-height: 1.85;
    letter-spacing: .05em;
    margin: 0 auto 2.5em;
    width: 87%;
  }
  .concierge_service .conciergeWrap {
    margin: 0 auto 3.5em;
  }
  .concierge_service .conciergeWrap .title_bg {
    padding: .7em 0 .4em 1em;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .concierge_service .conciergeWrap .title_bg small {
    display: block;
  }
  .concierge_service .conciergeSet {
    padding: 2.4em 1.2em 2.2em;
  }
  .concierge_service .conciergeSet + .conciergeSet {
    border-top: none;
    padding: calc(3.2em + 6px) 1.2em 2.2em;
  }
  .concierge_service .conciergeSet .set_lead {
    font-size: 87.5%;
  }
  .list_conciergeDetail > li {
    display: block;
  }
  .list_conciergeDetail > li + li {
    margin: 1.5em 0 0;
    padding: 1.5em 0 0;
  }
  .list_conciergeDetail > li .conciergeDetail_imageBox {
    width: 100%;
    margin: 0 auto 6%;
  }
  .list_conciergeDetail > li .conciergeDetail_textBox {
    width: 100%;
    padding: 0;
  }
  .list_conciergeDetail > li .conciergeDetail_title {
    font-size: 100%;
    margin: 0 0 .6em;
  }
  .list_conciergeDetail > li .conciergeDetail_text {
    font-size: 87.5%;
  }
  .list_check > li {
    font-size: 87.5%;
    line-height: 1.6;
  }
  .list_check > li + li {
    margin: .25em 0 0;
  }
  .list_check > li small {
    display: block;
    font-size: 87.5%;
    font-weight: 500;
    padding: 0 0 0 1em;
    text-indent: -1.1em;
  }
}
/*202507*/
.youtube-article {
  margin: 0 auto 5em;
}
.youtube-article .youtube_lead {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: .03em;
  line-height: 1.8;
  margin: 0 0 3.2em;
}
.youtube-article .youtube_frame {
  max-width: 800px;
  height: 0;
  padding: 44% 0 0;
  margin: 0 auto 4em;
  position: relative;
  overflow: hidden;
  display: none;
}
.youtube-article .youtube_frame.active {
  display: block;
}
.youtube-article .youtube_frame iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.list_youtubeRss {
  display: flex;
  justify-content: space-between;
  gap: 1em 0;
  flex-wrap: wrap;
}
.list_youtubeRss > li {
  width: 30.7393%;
  cursor: pointer;
}
.list_youtubeRss > li .youtube_thumb {
  overflow: hidden;
  margin: 0 0 1em;
    position: relative;
    height: 0;
    padding: 56.25% 0 0;
}
.list_youtubeRss > li .youtube_thumb img {
    position: absolute;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  transition: all .4s;
}
.list_youtubeRss > li:hover .youtube_thumb img {
  transform: scale(1.05);
}
.list_youtubeRss > li .youtube_text {
  font-size: 1.5rem;
  letter-spacing: .03em;
  line-height: 1.6;
}
.youtube-article .module-btn {
  max-width: 396px;
  margin: 1em auto 0;
}
.youtube-article .module-btn a {
  font-size: 1.6rem;
  font-weight: 700;
}
.moreWrap .btn_moreWrap {
  display: none;
}
#factory03 .pf-intro__thumbs .slick-track {
  width: 100% !important;
  justify-content: flex-start;
}
#factory03 .slick-slide .thumbnail {
  overflow: hidden;
  height: 0;
  padding: 52.5% 0 0;
  position: relative;
}
#factory03 .slick-slide .thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .youtube-article {
    margin: 0 auto 3.5em;
  }
  .youtube-article .youtube_lead {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.7143;
    margin: 0 0 1.8em;
  }
  .youtube-article .youtube_frame {
    padding: 56.25% 0 0;
    margin: 0 auto 4em;
  }
  .list_youtubeRss {
    display: block;
    margin: 0 auto 3em;
  }
  .list_youtubeRss > li {
    width: 100%;
  }
  .list_youtubeRss > li + li {
    margin: 1.5em auto 0;
  }
  .youtube-article .module-btn a {
    font-size: 1.6rem;
    font-weight: 700;
  }
  .moreWrap {
    overflow: hidden;
    position: relative;
    transition: all .8s ease;
  }
  .moreWrap.active {
    height: auto !important;
    max-height: 1000vw !important;
    margin: 0 !important;
  }
  .moreWrap.height01 {
    height: 530vw;
  }
  .moreWrap.height02 {
    height: 330vw;
  }
  .moreWrap.height03 {
    height: 470vw;
  }
  .moreWrap .btn_moreWrap {
    display: block;
    padding: 2em 0;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    text-align: center;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 60%);
  }
  .moreWrap .btn_moreWrap span {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    border-bottom: solid 1px #012D4A;
    padding: 0 1em 0 0;
    position: relative;
  }
}