@charset "UTF-8";
/* ================================
  common.css
===================================== */
/* -----------------------------------------
- root ( var )
----------------------------------------- */
:root {
  /* font-family */
  --font-family: "Noto Sans JP", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --udp-gothic: "BIZ UDPGothic", sans-serif;

  /* color */
  --txt: #000;
  --blue: #143980;
  --red: #E83828;
  --gray: #505050;

  /* font-weight */
  --normal: 400;
  --regular: 400;
  --medium: 500;
  --semibold: 600;
  --bold: 700;
}

/* font-size clamp - min-width: 1100px */
:root {
  --clamp_14px: clamp(13px, 1.273vw, 14px);
  --clamp_16px: clamp(14px, 1.455vw, 16px);
  --clamp_18px: clamp(15px, 1.636vw, 18px);
  --clamp_20px: clamp(16px, 1.818vw, 20px);
  --clamp_22px: clamp(20px, 2vw, 22px);
  --clamp_24px: clamp(22px, 2.182vw, 24px);
  --clamp_26px: clamp(24px, 2.364vw, 26px);
  --clamp_28px: clamp(26px, 2.545vw, 28px);
  --clamp_30px: clamp(27px, 2.727vw, 30px);
  --clamp_32px: clamp(24px, 2.909vw, 32px);
  --clamp_36px: clamp(32px, 3.273vw, 36px);
  --clamp_40px: clamp(34px, 3.633vw, 40px);
  --clamp_64px: clamp(60px, 5.818vw, 64px);
  --clamp_100px: clamp(70px, 9.083vw, 100px);
}
@media screen and (max-width: 768px) {
:root {
  /* font-size clamp w375px */
  --clamp_12px: clamp(11px, 3.2vw, 12px);
  --clamp_14px: clamp(13px, 3.733vw, 14px);
  --clamp_16px: clamp(13px, 4.267vw, 16px);
  --clamp_17px: clamp(15px, 4.533vw, 17px);
  --clamp_18px: clamp(16px, 4.8vw, 18px);
  --clamp_20px: clamp(18px, 5.333vw, 20px);
  --clamp_22px: clamp(19px, 5.867vw, 22px);
  --clamp_24px: clamp(22px, 6.4vw, 24px);
  --clamp_26px: clamp(24px, 6.933vw, 26px);
  --clamp_28px: clamp(26px, 7.467vw, 28px);
  --clamp_30px: clamp(28px, 8vw, 30px);
  --clamp_32px: clamp(30px, 8.533vw, 32px);
  --clamp_36px: clamp(34px, 9.6vw, 36px);
  }
}

/* color */
.color-txt {
  color: var(--txt);
}
.color-purple {
  color: var(--purple);
}
.color-blue {
  color: var(--blue);
}
.color-ltg_blue {
  color: var(--ltg_blue);
}
/* .txt (font-family) */
.txt-nts {
  font-family: var(--noto-sans);
}
.txt-barlow {
  font-family: var(--barlow);
}
.txt-spr {
  font-family: var(--shippori);
}
.txt-uts {
  font-family: var(--utsukushi);
}
/* font-weight */
.fw-regular {
  font-weight: var(--regular);
}
.fw-medium {
  font-weight: var(--medium);
}
.fw-semibold {
  font-weight: var(--semibold);
}
.fw-bold {
  font-weight: var(--bold);
}
/* vertical */
.txt-vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* --------------------------------
  outline
------------------------------------- */
body {
  color: var(--txt);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  text-align: left;
  background: #fff;
  animation: is-fadeIn ease .5s;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}
.no-scroll {
  overflow: hidden;
}
.main {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.contents {
  transition: .5s;
}

/* .inner_xxx */
.inner_w1366 {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1280 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1080 {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1024 {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1000 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w960 {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w800 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  transition: .5s;
}
.inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  transition: .5s;
}
@media screen and (max-width: 1366px) {
  .inner_w1366 {
    max-width: 100%;
  }
}
@media screen and (max-width: 1280px) {
  .inner_w1280 {
    max-width: 96%;
  }
}
@media screen and (max-width: 1080px) {
  .inner_w1080 {
    max-width: 96%;
  }
}
@media screen and (max-width: 1024px) {
  .inner_w1024 {
    max-width: 96%;
  }
}
@media screen and (max-width: 1000px) {
  .inner_w1000 {
    max-width: 96%;
  }
}
@media screen and (max-width: 960px) {
  .inner_w960 {
    max-width: 96%;
  }
}
@media screen and (max-width: 800px) {
  .inner_w800 {
    max-width: 96%;
  }
}
@media screen and (max-width: 768px) {
  .inner,
  .inner_w1366 {
    max-width: 100%;
  }
   .inner_w1280,
   .inner_w1080 {
    max-width: 92%;
  }
  .inner_w1024,
  .inner_w1000,
  .inner_w960,
  .inner_w800 {
    max-width: 87.2%;/*327px*/
  }
}

/* --------------------------------
.pc-only / .sp-only
------------------------------------- */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
span.pc-only {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  span.pc-only {
    display: none;
  }
}

/* -----------------------------------------
- animation
----------------------------------------- */
.is-fadeIn {
  animation: is-fadeIn ease .5s;
}
@keyframes is-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.is-fadeOut {
  animation: is-fadeOut ease .5s;
}
@keyframes is-fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes is-rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

.is-slideDown {
  animation: is-slideDown 0.5s forwards;
}
@keyframes is-slideDown {
  from {
    opacity: 1;
    margin-top: 0;
  }
  to {
    opacity: 0;
    margin-top: -100px;
  }
}

.is-slideUp {
  animation: is-slideUp 0.5s forwards;
}
@keyframes is-slideUp {
  from {
    opacity: 0;
    margin-top: -100px;
  }
  to {
    opacity: 1;
    margin-top: 0;
  }
}

/* -----------------------------------
- .u-fade-in
--------------------------------------*/
.u-fade-in {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: .25s;
}
.u-fade-in.active {
  opacity: 1;
}
.u-fade-in+.u-fade-in:nth-child(n+2) {
  transition-delay: .5s;
}
.u-fade-in+.u-fade-in:nth-child(n+3) {
  transition-delay: .75s;
}
.u-fade-in+.u-fade-in:nth-child(n+4) {
  transition-delay: 1s;
}

/* .fv-fade-in
--------------------------------------*/
.fv-fade-in {
  opacity: 0;
  transition: opacity 1s;
  transition-delay: .25s;
}
.fv-fade-in.active {
  opacity: 1;
}
.fv-fade-in+:nth-child(n+2) {
  transition-delay: .75s;
  transition-timing-function: ease-in;
}
.fv-fade-in+:nth-child(n+3) {
  transition-delay: 1.25s;
  transition-timing-function: ease-in;
}
.fv-fade-in+:nth-child(n+4) {
  transition-delay: 2.5s;
  transition-timing-function: ease-in;
}

/* .u-fade-up
-------------------------- */
.u-fade-up {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 120px);
  transition: transform 1s, opacity 1s;
  transition-delay: .3s;
}
.u-fade-up.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.u-fade-up+:nth-child(n+2) {
  transition-delay: .4s;
}
.u-fade-up+:nth-child(n+3) {
  transition-delay: .5s;
}
.u-fade-up+:nth-child(n+4) {
  transition-delay: .6s;
}
.u-fade-up+:nth-child(n+5) {
  transition-delay: .7s;
}

/* --------------------------------
  .eft-
------------------------------------- */
.eft-txtlink_underline {
  display: inline-block;
  background-image: linear-gradient(90deg, #E73828, #E73828);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 2px;
  padding-bottom: 6px;
  transition: background-size .4s;
}
.eft-txtlink_underline_a:hover .eft-txtlink_underline {
  background-size: 100% 2px;
}

/* .eft-text_01 */
.eft-text_01 {
  overflow: hidden;
}
.eft-text_01 .char {
  display: inline-block;
  transform: translateY(var(--y, 110%));
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.04s * var(--char-index));
}
.eft-text_01.is-active {
  --y: 0;
}

/* .eft-text_02 */
.eft-text_02 {}
.eft-text_02 .char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}
.eft-text_02.is-active {
  --opacity: 1;
}


/* --------------------------------
scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: var(--gray);
  border-radius: 4px;
}
.no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no_scrollbar::-webkit-scrollbar {
  display: none;
}

/* --------------------------------
  common---
------------------------------------- */
.mb_1em {
  margin-bottom: 1em;
}
.mb_0 {
  margin-bottom: 0;
}
.mb-10 {
  margin-bottom: -10px;
}
p.txt {
  display: inline-block;
  color: var(--txt);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  word-break: break-word;
}

.none {
  display: none!important;
}
.sec {
  position: relative;
}
.flex {
  display: flex;
}
.red {
  color: var(--red);
}
.dot {
  color: #cbcbcb;
  margin-right: .25em;
}
.nowrap {
  white-space: nowrap;
}
.kome {
  font-size: 8px;
  vertical-align: text-top;
}
section {
  margin: 0 auto;
}
.whitespace {
  width: .5em;
  height: .5em;
}
a {
  color: var(--txt);
  text-decoration: none;
  word-break: break-word;
}
@media screen and (min-width: 768px) {
  a {
    transition: .25s;
  }
  a:hover {
    opacity: .8;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headline);
}
ul,
ul li,
ol,
ol li {
  list-style: none;
  color: var(--txt);
  font-size: 16px;
}
dt,
dd {
  color: var(--txt);
  font-size: 16px;
}
dd {
  font-weight: var(--normal);
}
img {
  flex-shrink: 0;
  object-fit: contain;
}
figure {}
figcaption {
  display: inline-block;
  color: var(--txt);
  font-weight: var(--normal);
  word-break: break-word;
}
iframe {
  border: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  ul,
  ul li,
  ol,
  ol li {
    font-size: 14px;
  }
  dt,
  dd {
    font-size: 14px;
  }
}

/* .c-contact_form form
------------------------------------- */
.c-contact_form form select {
  background: #fff;
}
.c-contact_form form select:invalid {
  color: #999;
}
.c-contact_form form select option {
  color: #000;
}
.c-contact_form form select option:first-child {
  color: #999;
}
.c-contact_form form select:focus {
  outline: 1px solid #ccc;
}

/* heading
------------------------------------- */
.sec-heading {
  font-size: var(--clamp_32px);
  line-height: 1.625;
  text-align: center;
  color: #000;
}
.sec-heading_a {
  position: absolute;
  top: 0;
  z-index: 9;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-family: var(--utsukushi);
  font-weight: var(--regular);
  font-size: 50px;
  line-height: 1;
  letter-spacing: .13em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .sec-heading {
    font-size: var(--clamp_32px);
    line-height: 1.625;
    text-align: center;
    color: #000;
  }
  .sec-heading_a {
    position: absolute;
    top: 0;
    z-index: 9;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: var(--utsukushi);
    font-weight: var(--regular);
    font-size: 50px;
    line-height: 1;
    letter-spacing: .13em;
    white-space: nowrap;
  }
}

/* --------------------------------
  common--- class
===================================== */
/* .txt */
.txt_box .p-txt {
  display: block;
  margin-bottom: 1.5em;
  line-height: 1.75;
}
.txt {
  font-weight: var(--regular);
  font-size: 16px;
  letter-spacing: normal;
  line-height: 1.75;
  text-align: left;
}
.txt_small {
  font-size: 12px;
}
.txt_right {
  width: 100%;
  text-align: right;
}
.txt_center {
  width: 100%;
  text-align: center;
}
.txt_link {
  text-decoration: underline;
}
.txt_link:hover {
  text-decoration: underline;
}
.txt_indent_1em {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .txt_box .p-txt {
    display: block;
    margin-bottom: 1.5em;
    line-height: 1.75;
  }
  .txt {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: normal;
    line-height: 1.6;
    text-align: left;
  }
  .txt_small {
    font-size: 12px;
  }
  .txt_right {
    width: 100%;
    text-align: right;
  }
  .txt_center {
    width: 100%;
    text-align: center;
  }
  .txt_link {
    text-decoration: underline;
  }
  .txt_link:hover {
    text-decoration: underline;
  }
  .txt_indent_1em {
    padding-left: 1em;
    text-indent: -1em;
  }
  p.txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
  }
  .note {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
  }
}

/* .c- (common / class)
------------------------------------- */
.c-absolute {
  position: absolute;
}
.c-multiline-ellipsis {
  display: -webkit-box!important;
  position: relative;
  -webkit-box-orient: vertical!important;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {}

/* --------------------------------
  .p- (parts)
===================================== */
/* .p-link_txt-btn
------------------------------------- */
.p-link_txt-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 296px;
  height: 48px;
  font-weight: 700;
  font-size: clamp(14px, 1.455vw, 16px);
  background-color: #fff;
  border: 1px solid #E83828;
  border-radius: 24px;
  transition: .25s;
}
.p-link_txt-btn::after {
  position: absolute;
  right: 46px;
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
  background-size: contain;
}
.p-link_txt-btn:not(.-pdf):hover {
  background-color: #fff;
  color: #E83828;
  opacity: 1;
}
.p-link_txt-btn.-pdf {
  display: flex;
  justify-content: flex-start;
  max-width: 339px;
  padding-left: 22px;
  font-size: 16px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-link_txt-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    max-width: 238px;
    height: 43px;
    padding-left: 84px;
    font-weight: 700;
    font-size: clamp(14px, 1.455vw, 16px);
    background-position: center right 42px;
    background-color: #fff;
    border: 1px solid #E83828;
    border-radius: 24px;
    transition: .25s;
  }
  .p-link_txt-btn:not(.-pdf):hover {
    background-color: #fff;
    opacity: 1;
  }
  .p-link_txt-btn.-pdf {
    max-width: 289px;
    height: 48px;
    padding-left: 10px;
    font-size: 14px;
    background-color: #fff;
  }
}


/* .p-link_stroke-btn
----------------------------------------- */
.p-link_stroke-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 296px;
  height: 48px;
  font-weight: 700;
  font-size: clamp(14px, 1.455vw, 16px);
  background-color: #fff;
  border: 1px solid #E83828;
  border-radius: 24px;
  transition: .25s;
}
/* .p-link_stroke-ico */
.p-link_stroke-ico {
  position: absolute;
  right: 46px;
}
.p-link_stroke-ico .ico-svgbox {
  position: relative;
  width: 26px;
  height: 26px;
}
.p-link_stroke-btn:hover .ico-circle {
  stroke-dasharray: 377 377;
}
.p-link_stroke-ico .ico-circle {
  display: block;
  width: 26px;
  height: 26px;
  margin-left: auto;
  margin-right: 16%;
}
.p-link_stroke-ico .ico-base {
  fill: transparent;
  stroke: #000;
}
.p-link_stroke-ico .ico-outer {
  position: absolute;
  z-index: 1;
  fill: transparent;
  stroke-width: 1.5;
  stroke-dasharray: 377;
  stroke-dashoffset: 377;
  transition: 1s;
}
.p-link_stroke-btn:hover {
  color: #E15555;
}
.p-link_stroke-btn:hover .ico-outer {
  stroke: #E15555;
  stroke-dashoffset: 0;
}
.p-link_stroke-btn:not(:hover) .ico-outer {
  stroke: #E15555;
  stroke-dashoffset: 377;
}
/* .ico-triangle */
.p-link_stroke-btn:not(:hover) .ico-triangle {
  animation: triangle-in .2s ease forwards;
  transform: translate(0,0);
}
.p-link_stroke-btn:hover .ico-triangle {
  animation: triangle-out .2s ease forwards;
  fill: #E15555;
  stroke: #E15555;
}
@media screen and (max-width: 1290px) {
  .p-link_stroke-btn {
    justify-content: flex-start;
    padding-left: 2vw;
  }
  /* .p-link_stroke-ico */
  .p-link_stroke-btn .p-link_stroke-ico {
    position: absolute;
    right: 46px;
  }
}
@keyframes triangle-out {
  0% {
    transform: translate(0,0);
  }
  25% {
    transform: translate(110%,0);
    opacity: 0;
  }
  50% {
    transform: translate(-110%,0);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
}
@keyframes triangle-in {
  0% {
    transform: translate(0,0);
  }
  25% {
    transform: translate(110%,0);
    opacity: 0;
  }
  50% {
    transform: translate(-110%,0);
    opacity: 0;
  }
  100% {
    transform: translate(0,0);
  }
}

/* .-ls_black */
.-ls_black circle,
.-ls_black .ico-outer,
.-ls_black .ico-triangle {
  stroke: #000;
}
.-ls_black .ico-triangle {
  fill: #000;
}

/* .p-link_stroke
----------------------------------------- */
.p-link_stroke {
  position: relative;
}
/* 26px */
.p-link_stroke .p-link_stroke-ico .ico-svgbox {
  position: relative;
  width: 26px;
  height: 26px;
}
.p-link_stroke .p-link_stroke-ico .ico-circle {
  width: 26px;
  height: 26px;
}

/* .sec__topics-home .sec__heading_box.-link */
.sec__result-home .sec__heading_box.-link .p-link_stroke-ico {
  position: relative;
  right: -10px;
  bottom: -1px;
}
/* .sec__topics-home .sec__heading_box.-link */
.sec__topics-home .sec__heading_box.-link .p-link_stroke-ico {
  position: relative;
  right: -10px;
  bottom: -1px;
}
/* .service__navlist .list__heading */
.service__navlist .list__heading .p-link_stroke-ico {
  position: relative;
  right: -10px;
}
/* .l-page-nav .l-page__navlist */
.l-page-nav .l-page__navlist .p-link_stroke .p-link_stroke-ico {
  position:absolute;
  right: 0;
}
/* .subnav__item -- 23px */
.subnav__item .p-link_stroke .p-link_stroke-ico {
  position:absolute;
  right: 28px;
}
.subnav__item .p-link_stroke .p-link_stroke-ico .ico-svgbox {
  position: relative;
  width: 23px;
  height: 23px;
}
.subnav__item .p-link_stroke .p-link_stroke-ico .ico-circle {
  width: 23px;
  height: 23px;
}
/* hover */
.p-link_stroke:hover {
  color: #E15555;
}
.p-link_stroke:hover .ico-outer {
  stroke: #E15555;
  stroke-dashoffset: 0;
}
.p-link_stroke:not(:hover) .ico-outer {
  stroke: #E15555;
  stroke-dashoffset: 377;
}
/* .ico-triangle */
.p-link_stroke:not(:hover) .ico-triangle {
  animation: triangle-in .2s ease forwards;
  transform: translate(0,0);
}
.p-link_stroke:hover .ico-triangle {
  animation: triangle-out .2s ease forwards;
  fill: #E15555;
  stroke: #E15555;
}
@media screen and (max-width: 768px) {
  .subnav__item .p-link_stroke-ico {
    display: none;
  }
}




/* .p-link_contact-btn
----------------------------------------- */
.p-link_contact-btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  padding-left: 80px;
  width: 432px;
  height: 72px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 24px;
  border-radius: 38px;
  box-shadow: 0 4px 0 0 rgba(0,0,0,1);
  align-items: center;
}
/* red */
.p-link_contact-btn.-red {
  color: #fff;
  background-color: #e83828;
}
.p-link_contact-btn.-red .ico_linkbtn_circle {
  position: absolute;
  top: 18px;
  right: 68px;
  width: 26px;
  height: 26px;
  margin-left: 28px;
  margin-top: 4px;
  background: url(../img/common/ico/ico_linkbtn_circle_white.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-link_contact-btn.-red:hover {
  color: #e83828;
  background-color: #fff;
  opacity: 1;
}
.p-link_contact-btn.-red:hover .ico_linkbtn_circle {
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
/* white */
.p-link_contact-btn.-white {
  color: #000;
  background-color: #fff;
}
.p-link_contact-btn.-white .ico_linkbtn_circle {
  width: 26px;
  height: 26px;
  margin-left: 28px;
  margin-top: 4px;
  background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.p-link_contact-btn.-white:hover {
  color: #e83828;
  background-color: #fff;
  opacity: 1;
}
.p-link_contact-btn.-white:hover .ico_linkbtn_circle {
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-link_contact-btn {
    display: flex;
    justify-content: flex-start;
    padding-left: 55px;
    width: 100%;
    max-width: 328px;
    height: 54px;
    font-size: 18px;
  }
  .p-link_contact-btn.-red .ico_linkbtn_circle {
    position: absolute;
    top: 9px;
    right: 40px;
    width: 26px;
    height: 26px;
    margin-left: 22px;
    margin-top: 4px;
    background: url(../img/common/ico/ico_linkbtn_circle_white.svg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .p-link_contact-btn.-white {
    color: #000;
    background-color: #fff;
  }
  .p-link_contact-btn.-white .ico_linkbtn_circle {
    width: 26px;
    height: 26px;
    margin-left: 28px;
    margin-top: 4px;
    background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}


/* .p-link_txt
----------------------------------------- */
.p-link_txt {
  display: flex;
  align-items: center;
  margin-right: 1.4vw;
  font-weight: 700;
  font-size: 20px;
  color: #444;
  transition: .25s;
}
.p-link_txt::after {
  content: "";
  display: flex;
  width: 26px;
  height: 26px;
  margin-left: 24px;
  background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
  background-size: 26px;
  background-position: center right;
  transition: background .25s;
}
.p-link_txt:hover {
  color: #E83828;
}
.p-link_txt:hover::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  margin-left: 24px;
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .p-link_txt {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%,0);
    display: flex;
    align-items: center;
    margin: 0 auto;
    font-size: 16px;
  }
  .p-link_txt::after {
    content: "";
    display: flex;
    width: 26px;
    height: 26px;
    margin-left: 24px;
    background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
    background-size: 26px;
    background-position: center right;
    transition: background .25s;
  }
  .p-link_txt:hover {
    color: #E83828;
  }
  .p-link_txt:hover::after {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    margin-left: 24px;
    background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
    opacity: 1;
  }
}

/* .p-result-list
----------------------------------------- */
.p-result-list {}
.p-result-list .result__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 0 auto 60px;
}
.p-result-list .result__list .list__item {
  position: relative;
  width: calc(100%/4 - 24px);
  min-height: 389px;
  box-shadow: 0 2px 6px 4px rgb(0 0 0 / 0.10);
  background: #fff;
}
.p-result-list .result__list .list__item >a {
  display: block;
  height: 100%;
  padding: 18px;
}
.p-result-list .result__list .imgbox img {
  display: block;
  width: 100%;
  height: 192px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 16px;
  background: #fff;
}
.p-result-list .result__list .date {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  color: #e83828;
}
.p-result-list .result__list .title {
  display: block;
  height: 4.2em;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #000;
  -webkit-line-clamp: 3;
}
.p-result-list .cat__list {
  position: relative;
  display: flex;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 5px 7px;
}
.p-result-list .cat__list .cat__item {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 5px 10px;
  color: #fff;
  font-size: 13px;
  background-color: #e83828;
  border-radius: 4px;
}
.p-result-list .result__list .btmtxt {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-weight: 400;
  font-size: 12px;
  color: #505050;
}
@media screen and (max-width: 768px) {
  .p-result-list {}
  .p-result-list .result__list {
    align-items: center;
    flex-direction: column;
    gap: 10px 0;
    margin: 0 auto;
  }
  .p-result-list .result__list .list__item {
    width: 100%;
    min-height: 133px;
  }
  .p-result-list .result__list .list__item >a {
    display: flex;
    align-content: space-between;
    height: 100%;
    gap: 0 2%;
    padding: 12px;
  }
  .p-result-list .result__list .imgbox img {
    display: block;
    width: 100%;
    height: 82px;
    aspect-ratio: 113 / 82;
    margin: 0 10p 16px;
  }
  .p-result-list .result__list .imgbox {
    width: 113px;
    height: 82px;
  }
  .p-result-list .result__list .txtbox {
    width: 60%;
  }
  .p-result-list .result__list .date {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .02em;
    color: #e83828;
  }
  .p-result-list .result__list .title {
    display: block;
    height: auto;
    margin-bottom: 10px;
    font-size: 12px;
  }
  .p-result-list .cat__list {
    position: relative;
    display: flex;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 5px 7px;
    position: absolute;
    left: 10px;
    bottom: -12px;
    top: unset;
  }
  .p-result-list .cat__list .cat__item {
    padding: 4px 8px;
    font-size: 10px;
  }
  .p-result-list .result__list .btmtxt {
    position: absolute;
    bottom: 14px;
    right: 12px;
    font-size: 10px;
  }
}

/* .p-topics-list
----------------------------------------- */
.p-topics-list {}
.p-topics-list .topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 auto 40px;
}
.p-topics-list .topics__list .list__item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 8px;
  background: #fff;
}
.p-topics-list .topics__list li a {
  position: relative;
  z-index: 9;
  display: flex;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 0;
  color: #555;
}
.p-topics-list .topics__list .imgbox {
  flex-shrink: 0;
  width: 144px;
  height: 94px;
  background: #fff;
}
.p-topics-list .topics__list .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.p-topics-list .topics__list .txtbox {
  width: 100%;
  padding: 0 0 0 36px;
}
.p-topics-list .cat_flex {
  display: flex;
  align-items: flex-start;
  margin: 6px 0;
  gap: 10px;
}
.p-topics-list .cat__list {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.p-topics-list .cat__list .cat__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  color: #fff;
  font-size: 12px;
  background: #6a88c0;
  border-radius: 4px;
}
.p-topics-list .cat__list .cat__item.-knowledge {
  background: #F2A24E;
}
.p-topics-list .cat__list .cat__item.-news {
  background: #6A88C0;
}
.p-topics-list .cat__list .cat__item.-times {
  background: #B4CE66;
}
.p-topics-list .topics__list .date {
  flex-shrink: 0;
  display: flex;
  font-weight: 500;
  font-size: 12px;
  color: #e73828;
}
.p-topics-list .topics__list .title_flex {
  display: flex;
  align-items: baseline;
  width: calc(100% - 16px);
}
.p-topics-list .topics__list .title {
  display: inline-block;
  width: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}
.p-topics-list .topics__list .btmtxt {
  flex-shrink: 0;
  margin-left: auto;
  font-weight: 400;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-topics-list {}
  .p-topics-list .topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0 auto 40px;
  }
  .p-topics-list .topics__list .list__item {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 0 8px;
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
  }
  .p-topics-list .topics__list li a {
    position: relative;
    z-index: 9;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 10px 0 20px;
    color: #555;
  }
  .p-topics-list .topics__list .imgbox {
    flex-shrink: 0;
    width: 113px;
    height: 74px;
    background: #fff;
  }
  .p-topics-list .topics__list .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .p-topics-list .topics__list .txtbox {
    width: 100%;
    padding: 0 0 0 4%;
  }
  .p-topics-list .cat_flex {
    display: flex;
    align-items: center;
    margin: 6px 0 10px;
    gap: 14px;
    flex-direction: row;
  }
  .p-topics-list .cat__list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
  }
  .p-topics-list .cat__list .cat__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    color: #fff;
    font-size: 12px;
    background: #6a88c0;
    border-radius: 4px;
  }
  .p-topics-list .cat__list .cat__item.-knowledge {
    background: #F2A24E;
  }
  .p-topics-list .cat__list .cat__item.-news {
    background: #6A88C0;
  }
  .p-topics-list .cat__list .cat__item.-times {
    background: #B4CE66;
  }
  .p-topics-list .topics__list .date {
    flex-shrink: 0;
    display: flex;
    font-weight: 500;
    font-size: 12px;
    color: #e73828;
  }
  .p-topics-list .topics__list .post__date {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0 6px;
    margin: auto 0;
    font-weight: 500;
    font-size: 12px;
  }
  .p-topics-list .topics__list .posting {
    margin-bottom: 5px;
  }
  .p-topics-list .topics__list .posting::before {
    display: none;
  }
  .p-topics-list .topics__list .update::before {
    display: none;
  }
  .p-topics-list .topics__list .title_flex {
    display: flex;
    align-items: baseline;
    width: calc(100% - 16px);
    flex-direction: column;
  }
  .p-topics-list .topics__list .title {
    display: inline-block;
    width: auto;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 4;
  }
  .p-topics-list .topics__list .btmtxt {
    flex-shrink: 0;
    margin-left: 0;
    margin-right: auto;
    font-weight: 400;
    font-size: 14px;
  }
  .p-topics-list .topics__list .btmtxt.eft-txtlink_underline {
    display: inline-block;
    background-image: linear-gradient(90deg, #E73828, #E73828);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 100% 1px;
    padding-bottom: 6px;
    transition: background-size .4s;
  }
}

/* .p-downloads-list
----------------------------------------- */
.p-downloads-list {
  max-width: 1018px;
  margin: 0 auto;
}
.p-downloads-list .downloads__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 27px;
  margin: 0 auto 60px;
}
.p-downloads-list .downloads__list .list__item {
  position: relative;
  width: calc(100%/3 - 18px);
  min-height: 401px;
  border:1px solid #d9d9d9;
  border-radius: 8px;
  background: #fff;
}
.p-downloads-list .downloads__list .list__item >a {
  position: relative;
  display: block;
  height: 100%;
  padding: 27px 29px;
}
.p-downloads-list .downloads__list .imgbox img {
  display: block;
  width: 100%;
  height: 149px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 20px;
  background: #fff;
  box-shadow: 0 0 8px 0 rgba(0,0,0,.15);
}
.p-downloads-list .downloads__list .date {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  color: #e83828;
}
.p-downloads-list .downloads__list .title {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #000;
  -webkit-line-clamp: 1;
}
.p-downloads-list .downloads__list .txt {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  -webkit-line-clamp: 3;
}
.p-downloads-list .downloads__list .link_txt-dl {
  position: relative;
  position: absolute;
  bottom: 30px;
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 16px;
  color: #e73828;
}
.p-downloads-list .downloads__list .link_txt-dl::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  display: block;
  width: calc(100% + 14px);
  height: 1px;
  background: #e73828;
}
.p-downloads-list .downloads__list .link_txt-dl::after {
  content: "";
  position: relative;
  bottom: -5px;
  right: -12px;
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/ico/ico_dl.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .p-downloads-list {
    max-width: 1018px;
    margin: 0 auto;
  }
  .p-downloads-list .downloads__list {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px 27px;
    margin: 0 auto 60px;
    flex-direction: column;
    align-items: center;
  }
  .p-downloads-list .downloads__list .list__item {
    position: relative;
    width: 100%;
    min-height: auto;
    border:1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
  }
  .p-downloads-list .downloads__list .list__item >a {
    position: relative;
    display: block;
    height: 100%;
    padding: 20px 20px;
  }
  .p-downloads-list .downloads__list .imgbox img {
    margin: 0 0 5px;
    width: 128px;
    height: 72px;
    box-shadow: 0px 0px 8px 0 rgb(0 0 0 / 0.15);
    object-fit: cover;
  }
  .p-downloads-list .downloads__list .date {
    position: absolute;
    top: 20px;
    left: 156px;
    margin-bottom: 4px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: normal;
  }
  .p-downloads-list .downloads__list .title {
    position: absolute;
    top: 38px;
    left: 156px;
    font-weight: 600;
    font-size: 14px;
    -webkit-line-clamp: 3;
  }
  .p-downloads-list .downloads__list .txt {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.8;
    -webkit-line-clamp: 2;
  }
  .p-downloads-list .downloads__list .link_txt-dl {
    position: relative;
    bottom: 0;
    margin-top: 14px;
    font-weight: 700;
    font-size: 14px;
    color: #e73828;
  }
  .p-downloads-list .downloads__list .link_txt-dl::before {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    display: block;
    width: calc(100% + 14px);
    height: 1px;
    background: #e73828;
  }
  .p-downloads-list .downloads__list .link_txt-dl::after {
    content: "";
    position: relative;
    bottom: -4px;
    right: -6px;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../img/common/ico/ico_dl.svg) no-repeat;
    background-size: contain;
  }
}

/* .p-post__date
----------------------------------------- */
.p-post__date {
  display: flex;
  align-items: center;
  gap: 0 21px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 12px;
}
.p-post__date .posting {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #e73828;
}
.p-post__date .posting::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  margin-top: 3px;
  background: url(../img/common/ico/ico_posting.svg) no-repeat;
  background-size: contain;
}
.p-post__date .update {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #7c7c7c;
}
.p-post__date .update::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  background: url(../img/common/ico/ico_update.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .p-post__date {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 2px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-post__date {
    display: flex;
    gap: 0 6px;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 10px;
  }
  .p-post__date .posting {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #e73828;
  }
  .p-post__date .posting::before {
    flex-shrink: 0;
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 2px;
    margin-top: 3px;
    background: url(../img/common/ico/ico_posting.svg) no-repeat;
    background-size: contain;
  }
  .p-post__date .update {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #7c7c7c;
  }
  .p-post__date .update::before {
    flex-shrink: 0;
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 2px;
    background: url(../img/common/ico/ico_update.svg) no-repeat;
    background-size: contain;
  }
  .p-post__date .update {
    white-space: nowrap;
  }
}












/* --------------------------------
  .header
------------------------------------- */
.header {
  position: fixed;
  top: 0;
  z-index: 999;
  display: block;
  width: 100%;
  height: 88px;
  background: #fff;
  transition: .3s;
  box-shadow: 0px 4px 6px 0 rgba(0,0,0,.1);
}
.header .inner {
  width: 100%;
  max-width: 96.6666%;
}
.header .top__heading a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 7px 0;
  width: 218px;
  margin: 17px .5vw;
}
.header .top__heading img {
  width: 100%;
}
.header .heading__txt {
  font-size: 11px;
  letter-spacing: .03em;
}
.header .menu {
  display: flex;
  justify-content: space-between;
}
.header .navlist {
  display: flex;
  align-items: center;
  height: 88px;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
.header .nav__items {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 88px;
  font-size: var(--clamp_14px);
  letter-spacing: .07em;
}
.header .nav__items:not(.-tel) {
  cursor: pointer;
}
.header .nav__items.subnav_on {
  padding: 0 1.23vw;
}
.header .nav__items >a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 .78vw;
}
.header .nav__items >a:hover {
  color: #E73828;
}
.header .nav__items.-tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 5px;
  padding: 0 0 0 1.23vw;
}
.header .nav__items.-contact {
  margin-left: 1vw;
}
.header .nav__items.-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 148px;
  height: 42px;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background-image: linear-gradient(to bottom, #ff8113, #e73828);
  border-radius: 40px;
  tarnsition: .3s;
}
.header .nav__items.-contact a:hover {
  opacity: 1;
  color: #E15555;
  background-image: url(../img/common/btn_contact_hv_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) {
  .header .nav__items.current {
    position: relative;
  }
  .header .nav__items.current:not(.-contact)::before {
    content: "";
    position: absolute;
    bottom: 24%;
    left: 50%;
    transform: translate(-50%,0);
    display: block;
    width: 78%;
    height: 2px;
    background: #E73828;
  }
  .header-menu_btn {
    display: none;
  }
  .header .nav__items .sp-only {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 70px;
    box-shadow: 0px 4px 4px 0 rgba(0,0,0,.1);
  }
  .header .inner {
    width: 100%;
    max-width: 96.6666%;
  }
  .header .top__heading a {
    gap: 7px 0;
    width: 220px;
    margin: 7px 6px;
  }
  .header .top__heading img {
    width: 184px;
  }
  .header .heading__txt {
    font-size: 10px;
    letter-spacing: normal;
  }
  .header .menu {
    display: flex;
    justify-content: space-between;
  }
  /* .header-nav__box */
  .header-nav__box {
    display: none;
  }
  .header-nav__box.open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 70px 0;
    background: #fff;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header-nav__box.open::-webkit-scrollbar {
    display: none;
  }
  .header .navlist {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px 0 10px;
    height: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
  .header .nav__items {
    position: relative;
    z-index: 99;
    display: block;
    align-items: center;
    width: 81%;
    height: auto;
    margin: 0 auto;
    padding: 16px 0;
    font-family: var(--udp-gothic);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: normal;
  }
  .header .nav__items:not(.-tel) {
    cursor: pointer;
    border-top: 1px solid #d9d9d9;
  }
  .header .nav__items:first-child {
    border-top: 0;
  }
  .header .nav__items.subnav_on {
    padding: 0;
  }
  .header .nav__items.subnav_on .tgl_txt {
    display: block;
    padding: 16px 0;
  }
  .header .nav__items.subnav_on .tgl_btn {
    position: absolute;
    right: 0;
    top: 20px;
    z-index: -1;
    width: 16px;
    height: 16px;
    background: url(../img/common/ico/ico_plus.svg) no-repeat;
    background-size: contain;
    background-position: center;
    transition: .3s;
  }
  .header .nav__items.subnav_on .tgl_btn.active {
    background: url(../img/common/ico/ico_minus.svg) no-repeat;
    background-size: contain;
    background-position: center;
  }
  .header .nav__items >a {
    display: flex;
    align-items: center;
    width: calc(100% - 60px);
    height: 100%;
    padding: 0;
  }
  .header .nav__items .pc-only {
    display: none!important;
  }
  .header .nav__items.-tel {
    display: none;
  }
  .header .nav__items.-contact {
    margin: 14px auto 0;
    border: 0;
  }
  .header .nav__items.-contact a {
    margin: 0 auto;
   }
  .header-nav__box .btn_close {
    width: fit-content;
    margin: 0 auto;
  }
}

/* .header .subnav__box
----------------------------------------- */
.header .subnav__box {
  position: absolute;
  top: 111px;
  cursor: auto;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}
.header .subnav__box.subnav__box_03 {
  position: fixed;
  right: 0;
}
.header .subnav__box.active {
  opacity: 1;
  visibility: visible;
}
.header .subnav__box .subnav__flex {
  display: flex;
  width: 746px;
  padding: 23px 10px 23px 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px 0 rgba(0,0,0,.15);
}
.subnav__heading {
  padding: 4px 24px;
  font-family: var(--udp-gothic);
  font-weight: 700;
  font-size: 20px;
  color: #000;
  flex-shrink: 0;
}
.subnav__heading .en {
  display: block;
  margin-bottom: 12px;
  font-family: var(--noto-sans);
  font-weight: 700;
  font-size: 12px;
  color: #e73828;
}
.header .subnav__box .subnav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 25px;
  padding: 0 10px 0 20px;
  border-left: 1px solid #e7e7e7;
}
.header .subnav__list .subnav__item {
  width: calc(100%/2 - 8px);
  max-width: 270px;
  font-family: var(--udp-gothic);
  font-weight: 700;
  font-size: 16px;
  color: #000;
}
.header .subnav__list .subnav__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.header .subnav__list .subnav__item img {
  width: 270px;
  height: 110px;
  object-fit: cover;
  margin-bottom: 10px;
}
.header .subnav__list .subnav__txt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/*
.header .subnav__list .subnav__txt::after {
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 28px;
  background: url(../img/common/ico/ico_linkbtn_circle_gray.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.header .subnav__list a:hover .subnav__txt::after {
  content: "";
  width: 23px;
  height: 23px;
  margin-right: 28px;
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
*/
@media screen and (min-width: 769px) {
  .header .menu_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header .subnav__box {
    position: relative;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    display: none;
  }
  .header .subnav__box.active {
    position: relative;
    left: 0;
    opacity: 1;
    visibility: visible;
    display: block;
  }
  .header .subnav__box .subnav__flex {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 6px 0 26px;
    padding: 0;
    background-color: #fff;
    border-radius: 0;
    box-shadow: unset;
  }
  .subnav__heading {
    display: none;
  }
  .subnav__heading .en {
    display: none;
  }
  .header .subnav__box .subnav__list {
    gap: 17px 0;
    padding: 0;
    border-left: 0;
    flex-direction: column;
  }
  .header .subnav__list .subnav__item {
    width: 100%;
    max-width: 100%;
    font-weight: 400;
    font-size: 14px;
  }
  .header .subnav__list .subnav__item a {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .header .subnav__list .subnav__item img {
    display: none;
  }
  .header .subnav__list .subnav__txt {
    display: flex;
    justify-content: space-between;
  }
  .header .subnav__list .subnav__txt::after {
    display: none;
  }
  .header .subnav__list a:hover .subnav__txt::after {
    display: none;
  }
  .header-menu_btn {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 70px;
    height: 70px;
    color: #000;
    cursor: pointer;
    z-index: 9999;
  }
  .header-menu_btn .menu_txt {
    display: block;
    margin: 10px auto;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
  }
  .header-menu_btn .menu_ham {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%,0);
    display: block;
    margin: 0 auto;
    width: 40px;
    height: 21px;
  }
  .header-menu_btn .menu_ham span {
    position: absolute;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
  }
  .header-menu_btn .menu_ham,
  .header-menu_btn .menu_ham span {
    transition: .3s;
  }
  .header-menu_btn .menu_ham.close {
    top: 10px;
    width: 36px;
  }
  .header-menu_btn .menu_ham span:nth-of-type(1) {
    top: 0;
  }
  .header-menu_btn .menu_ham span:nth-of-type(2) {
    top: 10px;
  }
  .header-menu_btn .menu_ham span:nth-of-type(3) {
    bottom: 0;
  }
  .header-menu_btn .menu_ham.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
    transform: translateY(13px) rotate(-45deg);
  }
  .header-menu_btn .menu_ham.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7.5px) rotate(45deg);
    transform: translateY(-7.5px) rotate(45deg);
  }
  .header-menu_btn .menu_ham.active span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
    -webkit-animation: bar02 .8s forwards;
    animation: bar02 .8s forwards;
  }
  @-webkit-keyframes bar02 {
    100% {
      height: 0;
    }
  }
  @keyframes bar02 {
    100% {
      height: 0;
    }
  }
}

/* -----------------------------------------
  .pagetop
----------------------------------------- */
.pagetop-box {
  position: relative;
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
}
.pagetop-box .pagetop {
  display: none;
  position: absolute;
  right: 190px;
  z-index: 9;
}
.pagetop-box .pagetop a {
  position: fixed;
  bottom: 40px;
  display: block;
  width: 85px;
  height: 85px;
  text-align: center;
  background-image: url(../img/common/pagetop.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transition: bottom ease-in-out 1.25s;
}
.pagetop-box .pagetop.btm a {
  bottom: 365px;
}
@media screen and (max-width: 1024px) {
  .pagetop-box {
    width: 100%;
    max-width: 100%;
  }
  .pagetop-box .pagetop {
    right: 95px;
  }
  .pagetop-box .pagetop a {
    bottom: 90px;
    width: 85px;
    height: 85px;
  }
  .pagetop-box .pagetop.btm a {
    bottom: 365px;
  }
}

/* --------------------------------
  .p-fixed_banner
------------------------------------- */
.p-fixed_banner {
  position: fixed;
  bottom: 11.2%;
  right: -8px;
  z-index: 9;
  width: 307px;
}
@media screen and (max-width: 768px) {
  .p-fixed_banner {
    bottom: 2%;
    right: 0;
    width: 246px;
  }
}

/* --------------------------------
  .p-fixed_contact_btn
------------------------------------- */
@media screen and (min-width: 769px) {
  .p-fixed_contact_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-fixed_contact_btn {
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 99;
    width: 95.7333%;
    max-width: 359px;
    height: 38px;
    margin: 0 auto;
    border-radius: 40px;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }
  .p-fixed_contact_btn.active {
    opacity: 1;
    visibility: visible;
  }
  .p-fixed_contact_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 30px;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    background: #FF8113;
    background: linear-gradient(90deg, rgba(255, 129, 19, 1) 0%, rgba(231, 56, 40, 1) 100%);
    box-shadow: 0px 4px 10px 0 rgba(0,0,0,.2);
    border-radius: 40px;
  }
}


/* --------------------------------
  .c-cta
------------------------------------- */
.c-cta {
  padding: 70px 0 120px;
  background: url(../img/common/cta_bg.png) no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.c-cta .cta__title {
  margin: 0 auto 40px;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.c-cta .cta__btn_flex {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 7.5vw;
}
.c-cta .cta__btn_flex .cta__btn {
  display: flex;
  width: 432px;
  height: 72px;
  font-weight: 700;
  font-size: 24px;
  border-radius: 38px;
  box-shadow: 0 4px 0 0 rgba(0,0,0,1);
  align-items: center;
  justify-content: center;
}
/* red */
.c-cta .cta__btn_flex .cta__btn.-red {
  color: #fff;
  background-color: #e83828;
}
.c-cta .cta__btn_flex .cta__btn.-red .ico_linkbtn_circle {
  width: 26px;
  height: 26px;
  margin-left: 28px;
  background: url(../img/common/ico/ico_linkbtn_circle_white.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.c-cta .cta__btn_flex .cta__btn.-red:hover {
  color: #e83828;
  background-color: #fff;
  opacity: 1;
}
.c-cta .cta__btn_flex .cta__btn.-red:hover .ico_linkbtn_circle {
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
/* white */
.c-cta .cta__btn_flex .cta__btn.-white {
  color: #000;
  background-color: #fff;
}
.c-cta .cta__btn_flex .cta__btn.-white .ico_linkbtn_circle {
  width: 26px;
  height: 26px;
  margin-left: 28px;
  background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
  background-size: cover;
  background-position: center;
}
.c-cta .cta__btn_flex .cta__btn.-white:hover {
  color: #e83828;
  background-color: #fff;
  opacity: 1;
}
.c-cta .cta__btn_flex .cta__btn.-white:hover .ico_linkbtn_circle {
  background: url(../img/common/ico/ico_linkbtn_circle_red.svg) no-repeat;
  background-size: cover;
  background-position: center;
}

.c-cta .cta__btn_flex .btn__txt {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: #fff;
}
.c-cta .cta__btn_box .cta_slash {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  align-items: center;
}
.c-cta .cta__btn_box .cta_slash::before {
  content: "";
  display: flex;
  width: 18px;
  height: 42px;
  margin-right: 20px;
  background: url(../img/common/cta_slash_left.svg);
}
.c-cta .cta__btn_box .cta_slash::after {
  content: "";
  display: flex;
  width: 18px;
  height: 42px;
  margin-left: 20px;
  background: url(../img/common/cta_slash_right.svg);
}
@media screen and (max-width: 768px) {
  .c-cta {
    padding: 82px 0 92px;
    background: url(../img/common/cta_bg_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
  }
  .c-cta .cta__title {
    margin: 0 auto 28px;
    font-weight: 400;
    font-size: 20px;
  }
  .c-cta .cta__btn_flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14vw 0;
    flex-direction: column;
  }
  .c-cta .cta__btn_flex .cta__btn {
    display: flex;
    width: 328px;
    max-width: 328px;
    height: 54px;
    font-size: 18px;
  }
  .c-cta .cta__btn_flex .cta__btn.-red .ico_linkbtn_circle {
    width: 26px;
    height: 26px;
    margin-left: 38px;
    background: url(../img/common/ico/ico_linkbtn_circle_white.svg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .c-cta .cta__btn_flex .cta__btn.-white {
    color: #000;
    background-color: #fff;
  }
  .c-cta .cta__btn_flex .cta__btn.-white .ico_linkbtn_circle {
    width: 26px;
    height: 26px;
    margin-left: 28px;
    background: url(../img/common/ico/ico_linkbtn_circle.svg) no-repeat;
    background-size: cover;
    background-position: center;
  }
  .c-cta .cta__btn_flex .btn__txt {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
  }
  .c-cta .cta__btn_box .cta_slash {
    display: flex;
    justify-content: center;
    margin: 0 auto 10px;
    align-items: center;
  }
  .c-cta .cta__btn_box .cta_slash::before {
    content: "";
    display: flex;
    width: 18px;
    height: 42px;
    margin-right: 20px;
    background: url(../img/common/cta_slash_left.svg);
  }
  .c-cta .cta__btn_box .cta_slash::after {
    content: "";
    display: flex;
    width: 18px;
    height: 42px;
    margin-left: 20px;
    background: url(../img/common/cta_slash_right.svg);
  }
}
@media screen and (max-width: 320px) {
  .c-cta .cta__btn_flex .cta__btn {
    width: 100%;
    font-size: 16px;
  }
}


/* --------------------------------
  .footer
------------------------------------- */
.footer {
  padding: 34px 0 0;
  background: #eee;
}
.footer-nav_box .inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer_flex {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 20px);
  margin: 0 auto 20px;
}
/* .footer-company */
.footer-company {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 30px;
  color: #000;
}
.footer-company .logo {
  width: 218px;
  margin-left: -20px;
  margin-bottom: 30px;
}
.footer-company .name {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 20px;
}
.footer-company .address {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
/* .footer-nav */
.footer-nav {
  display: flex;
  width: 62.5%;
  margin: 16px 0;
}
.footer-nav .footer-navlist {
  width: calc(100%/3);
}
.footer-nav .footer-navlist li {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .07em;
  line-height: 1.8;
}
.footer-nav .footer-navlist li .strong {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 16px;
  line-height: 2;
}
.footer-nav .footer-navlist li a {
  position: relative;
}
.footer-nav .footer-navlist li a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width .4s;
}
.footer-nav .footer-navlist li a:hover::before {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 100%;
}
.footer-nav .footer-navlist:first-child {
  width: 240px;
}
.footer-nav .footer-navlist:nth-child(2) {
  width: 195px;
}
.footer-nav .footer-navlist:last-child {
  width: 182px;
}
.footer .copyright-box {
  padding: 20px;
  background: #fff;
}
.footer .copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }
  .footer-nav_box .inner {
    max-width: 100%;
  }
  .footer_flex {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: calc(100% - 20px);
    margin: 0 auto 26px;
  }
  /* .footer-company */
  .footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 17px;
  }
  .footer-company .logo {
    width: 218px;
    margin-left: 0;
    margin-bottom: 20px;
  }
  .footer-company .name {
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 20px;
  }
  .footer-company .address {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
  }
  /* .footer-nav */
  .footer-nav {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    margin: 6px auto;
    padding-left: 5%;
  }
  .footer-nav .footer-navlist {
    width: 100%;
  }
  .footer-nav .footer-navlist li {
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .07em;
    line-height: 1.8;
  }
  .footer-nav .footer-navlist li .strong {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 16px;
    line-height: 2;
  }
  .footer-nav .footer-navlist:first-child {
    width: 90%;
    margin-bottom: 10px;
  }
  .footer-nav .footer-navlist:nth-child(2) {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin-bottom: 10px;

  }
   .footer-nav .footer-navlist .right_place {
    position: absolute;
    top: 0;
    right: 14%;
  }
  .footer-nav .footer-navlist:last-child {
    width: 90%;
  }
  .footer .copyright-box {
    padding: 20px 10px 70px;
  }
  .footer .copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    color: #000;
  }
}

/* --------------------------------
  add
------------------------------------- */
@media screen and (max-width: 768px) {}
