@charset "UTF-8";

* {
  box-sizing: border-box;
}

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%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  cursor: pointer;
}

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

main {
  display: block;
}

select::-ms-expand {
  display: none;
}

textarea {
  width: 100%;
  max-width: 100%;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

textarea:focus {
  outline: 0;
}

input {
  border: none;
  background: none;
  -webkit-appearance: none;
  border-radius: 0;
  box-shadow: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

input:focus {
  outline: 0;
}

select {
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  background: none;
}

select:focus {
  outline: 0;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

body.is-active {
  overflow: hidden;
}

.l-header {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
}
.l-header img {
  vertical-align: middle;
}
.l-header__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 50px;
  padding-inline: 16px 8px;
}
@media (min-width: 1201px) {
  .l-header__inner {
    height: 105px;
    padding-inline: 24px;
  }
}
.l-header__logo {
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}
@media (min-width: 1201px) {
  .l-header__logo {
    -ms-flex-preferred-size: 348px;
        flex-basis: 348px;
  }
}
.l-header__sp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
@media (min-width: 1201px) {
  .l-header__sp {
    display: none;
  }
}
.l-header__contact {
  padding-inline: 8px;
}
.l-header__hamburger-menu {
  position: relative;
  padding: 8px 6px;
  width: 40px;
  height: 32px;
}
.l-header__hamburger-menu > span {
  position: absolute;
  left: 8px;
  width: 24px;
  height: 2px;
  background-color: #ea3323;
  transition: 0.3s;
}
.l-header__hamburger-menu > span:first-child {
  top: 8px;
}
.l-header__hamburger-menu > span:nth-child(2) {
  top: 16px;
}
.l-header__hamburger-menu > span:last-child {
  top: 24px;
}
.l-header__hamburger-menu.is-active > span:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 50%;
}
.l-header__hamburger-menu.is-active > span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger-menu.is-active > span:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 50%;
}
.l-header__global-nav {
  display: contents;
}
@media (min-width: 1201px) {
  .l-header__global-nav {
    display: block;
  }
}
.l-header__menu {
  display: none;
  position: fixed;
  top: 50px;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fafafa;
  padding: 40px 20px 60px;
  font-weight: 700;
}
@media (min-width: 1201px) {
  .l-header__menu {
    position: static;
    background-color: #fff;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 30px;
  }
}
.l-header__menu.is-active {
  display: block;
  overflow-y: scroll;
}
.l-header__menu a {
  display: block;
  transition: 0.3s color;
}
.l-header__menu a:visited {
  color: unset;
}
@media (min-width: 811px) {
  .l-header__menu a:hover {
    color: #ea3323;
  }
  .l-header__menu a:hover .icon::before {
    background-color: #ea3323;
  }
}
.l-header__menu > li {
  padding-block: 25px;
  border-bottom: solid 1px #cecece;
}
@media (min-width: 1201px) {
  .l-header__menu > li {
    border-bottom: none;
  }
}
.l-header__menu > li:has(ul) {
  padding-block: 30px;
}
@media (min-width: 1201px) {
  .l-header__menu > li:has(ul) {
    padding-block: 40px;
  }
}
.l-header__menu > li:has(ul) > a {
  margin-bottom: 32px;
}
@media (min-width: 1201px) {
  .l-header__menu > li:has(ul) > a {
    margin-bottom: 0;
  }
}
@media (min-width: 1201px) {
  .l-header__menu > li.bg-red > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    color: #fff;
    background-color: #ea3323;
    width: 200px;
    height: 50px;
    transition: 0.3s;
  }
  .l-header__menu > li.bg-red > a:hover {
    color: #ea3323;
    background-color: #fff;
    border: solid 1px #ea3323;
  }
}
.l-header__menu-wrap {
  display: contents;
}
@media (min-width: 1201px) {
  .l-header__menu-wrap {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #fafafa;
  }
}
.l-header__menu-sub {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  padding-left: 16px;
  border-left: solid 1px #cecece;
}
@media (min-width: 1201px) {
  .l-header__menu-sub {
    display: -ms-flexbox;
    display: flex;
    padding: 40px 20px;
    border: 0;
    width: 100%;
    max-width: 1320px;
    margin-inline: auto;
    gap: 20px;
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub img {
    margin-bottom: 24px;
  }
}
.l-header__menu-sub > li:not(:last-child) {
  margin-bottom: 24px;
}
@media (min-width: 1201px) {
  .l-header__menu-sub > li {
    margin-bottom: 0;
  }
  .l-header__menu-sub > li::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(to right, #ea3323 50px, #cecece 50px);
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .icon::before {
    content: "";
    display: inline-block;
    vertical-align: text-bottom;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background-color: #101c39;
    transition: 0.3s background-color;
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .icon01::before {
    -webkit-mask-image: url("../own_images/common/menu_icon02.svg");
            mask-image: url("../own_images/common/menu_icon02.svg");
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .icon02::before {
    -webkit-mask-image: url("../own_images/common/menu_icon01.svg");
            mask-image: url("../own_images/common/menu_icon01.svg");
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .icon03::before {
    -webkit-mask-image: url("../own_images/common/menu_icon03.svg");
            mask-image: url("../own_images/common/menu_icon03.svg");
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .icon04::before {
    -webkit-mask-image: url("../own_images/common/menu_icon04.svg");
            mask-image: url("../own_images/common/menu_icon04.svg");
  }
}
@media (min-width: 1201px) {
  .l-header__menu-sub .arrow {
    font-size: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 20px;
    position: relative;
    display: block;
  }
  .l-header__menu-sub .arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 21px;
    height: 4px;
    background-image: url("../own_images/common/icon_arrow.svg");
  }
}

.l-footer__body {
  background-color: #fafafa;
  padding-block: 40px;
}
@media (min-width: 1025px) {
  .l-footer__body {
    padding-block: 80px 70px;
  }
}
@media (min-width: 1025px) {
  .l-footer__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    gap: 40px;
  }
}
.l-footer__address {
  margin-bottom: 48px;
}
@media (min-width: 1025px) {
  .l-footer__address {
    max-width: 348px;
    margin-bottom: 0;
  }
}
.l-footer__address > img {
  margin-bottom: 10px;
}
.l-footer__address > p + p {
  margin-top: 14px;
}
.l-footer__menu {
  font-weight: 700;
}
@media (min-width: 1025px) {
  .l-footer__menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-height: 178px;
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
    margin-right: 112px;
  }
}
.l-footer__menu a {
  display: block;
  transition: 0.3s color;
}
@media (min-width: 811px) {
  .l-footer__menu a:hover {
    color: #ea3323;
  }
}
.l-footer__menu > li:not(:last-child) {
  margin-bottom: 16px;
}
.l-footer__menu > li:first-child {
  margin-bottom: 32px;
}
.l-footer__menu > li:has(ul) > a {
  margin-bottom: 16px;
}
.l-footer__menu-sub {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (min-width: 1025px) {
  .l-footer__menu-sub {
    margin-bottom: 0;
  }
}
.l-footer__menu-sub > li:not(:last-child) {
  margin-bottom: 16px;
}
.l-footer__copy {
  background-color: #ebebeb;
  padding-block: 10px;
}
@media (min-width: 1025px) {
  .l-footer__copy {
    padding-block: 8px;
  }
}
.l-footer__copy p {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  gap: 10px;
}
@media (min-width: 1025px) {
  .l-footer__copy p {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }
}
@media (min-width: 1025px) {
  .l-footer__copy a {
    transition: 0.3s all;
  }
}
@media (min-width: 1025px) and (min-width: 811px) {
  .l-footer__copy a:hover {
    color: #ea3323;
  }
}

.l-container {
  max-width: 1320px;
  padding-inline: 20px;
  margin-inline: auto;
}

.pc {
  display: block;
}
@media (max-width: 811px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 811px) {
  .sp {
    display: block;
  }
}

.hd-pc {
  display: block;
}
@media (max-width: 1201px) {
  .hd-pc {
    display: none;
  }
}

.hd-sp {
  display: none;
}
@media (max-width: 1201px) {
  .hd-sp {
    display: block;
  }
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.u-text-blue {
  color: #050fae;
}

body {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  line-height: 1.2;
  color: #101c39;
  font-family: "Noto Sans JP", serif;
}

a {
  color: #101c39;
}
a:visited {
  color: #ea3323;
}

.u-hidden-pc {
  display: block;
}
@media (min-width: 811px) {
  .u-hidden-pc {
    display: none;
  }
}

.l-key-visual {
  position: relative;
  margin-top: 5px;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-key-visual {
    height: 100%;
    aspect-ratio: 1920/980;
  }
}
@media (min-width: 811px) {
  .l-key-visual {
    height: 100%;
    aspect-ratio: 1920/980;
  }
}
@media (min-width: 1201px) {
  .l-key-visual {
    margin-top: 80px;
  }
}

.l-key-visual-slide {
  position: relative;
}
.l-key-visual-slide::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 28, 57, 0.4);
}
.l-key-visual-slide__item img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
}
@media (min-width: 768px) {
  .l-key-visual-slide__item img {
    height: 100%;
  }
}

.l-key-visual-catch01 {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  color: #fff;
}
@media (min-width: 811px) {
  .l-key-visual-catch01 {
    top: 50%;
  }
}
.l-key-visual-catch01__sub {
  margin-bottom: 6px;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
@media (min-width: 811px) {
  .l-key-visual-catch01__sub {
    margin-bottom: 25px;
    font-size: 32px;
    font-size: 2rem;
  }
}
.l-key-visual-catch01__main {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}
@media (min-width: 811px) {
  .l-key-visual-catch01__main {
    font-size: 42px;
    font-size: 2.625rem;
    line-height: 1.2;
  }
}
@media (min-width: 1100px) {
  .l-key-visual-catch01__main {
    font-size: 56px;
    font-size: 3.5rem;
  }
}
.l-key-visual-catch01__image {
  margin-bottom: 15px;
}
@media (min-width: 811px) {
  .l-key-visual-catch01__image {
    margin-bottom: 20px;
  }
}

.p-top-heading01 {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #cecece;
}
@media (min-width: 811px) {
  .p-top-heading01 {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }
}
.p-top-heading01__image {
  margin: 0 auto 18px;
  max-width: 168px;
}
.p-top-heading01__image img {
  width: 100%;
  height: 100%;
}
@media (min-width: 811px) {
  .p-top-heading01__image {
    margin: 0 auto 38px;
    max-width: 290px;
  }
}
.p-top-heading01__main {
  margin-bottom: 6px;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-heading01__main {
    margin-bottom: 18px;
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.p-top-heading01__sub {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-heading01__sub {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}

.p-top-heading02 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1.2;
  color: #050fae;
}
@media (min-width: 811px) {
  .p-top-heading02 {
    margin-bottom: 60px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.1875;
  }
}
.p-top-heading02:before, .p-top-heading02:after {
  content: "";
  height: 1px;
  -ms-flex-positive: 1;
      flex-grow: 1;
  background-color: #cecece;
}
.p-top-heading02:before {
  margin-right: 1.285rem;
}
@media (min-width: 811px) {
  .p-top-heading02:before {
    margin-right: 4.25rem;
  }
}
.p-top-heading02:after {
  margin-left: 1.285rem;
}
@media (min-width: 811px) {
  .p-top-heading02:after {
    margin-left: 4.25rem;
  }
}

.p-top-heading03 {
  margin-bottom: 30px;
}
.p-top-heading03--order {
  -ms-flex-order: 1;
      order: 1;
}
@media (min-width: 811px) {
  .p-top-heading03 {
    margin-bottom: 60px;
  }
}
.p-top-heading03__main {
  margin-bottom: 10px;
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-heading03__main {
    margin-bottom: 15px;
    font-size: 48px;
    font-size: 3rem;
  }
}
.p-top-heading03__sub {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 811px) {
  .p-top-heading03__sub {
    font-size: 16px;
    font-size: 1rem;
  }
}

.p-top-inner01 {
  margin: 0 auto;
  max-width: calc(1280px + 40px);
  padding: 0 20px;
}

.p-top-section01 {
  padding: 40px 0;
}
@media (min-width: 811px) {
  .p-top-section01 {
    padding: 60px 0 80px;
  }
}

.p-top-block01 {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .p-top-block01 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: start;
        align-items: flex-start;
    margin-bottom: 60px;
  }
}
.p-top-block01__item:first-child {
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .p-top-block01__item:first-child {
    margin-bottom: 0;
  }
}
.p-top-block01__title {
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  border: 1px solid #cecece;
  padding: 10px;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-block01__title {
    margin-bottom: 30px;
    padding: 14px 15px 16px 15px;
    font-size: 32px;
    font-size: 2rem;
  }
}
.p-top-block01__image img {
  width: 100%;
}
.p-top-block01__arrow-wrap {
  margin: 0 auto 20px;
  padding: 0 10px;
  width: 200px;
  height: 75px;
}
@media (min-width: 811px) {
  .p-top-block01__arrow-wrap {
    margin-top: 15%;
    width: 170px;
    height: 144px;
  }
}
.p-top-block01__arrow {
  text-align: center;
  background-image: url(../own_images/top/top_bgimg01_sp.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media (min-width: 811px) {
  .p-top-block01__arrow {
    position: relative;
    text-align: left;
    background-image: url(../own_images/top/top_bgimg01_pc.svg);
  }
}
.p-top-block01__arrow-text {
  padding: 12px 0 0;
  font-size: 14px !important;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 811px) {
  .p-top-block01__arrow-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 8px;
    padding: 0;
    font-size: clamp(0.875rem, calc(0.321rem + 1.0929vw), 1.25rem);
  }
}
@media (min-width: 1100px) {
  .p-top-block01__arrow-text {
    left: 15px;
  }
}

.p-top-button01 {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 60px;
  background-image: url(../own_images/top/top_button01_sp.jpg);
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 811px) {
  .p-top-button01 {
    min-height: 120px;
    background-image: url(../own_images/top/top_button01_pc.jpg);
    background-size: cover;
    transition: 0.3s all;
  }
  .p-top-button01:hover {
    opacity: 0.7;
  }
}
.p-top-button01__inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: end;
  max-width: 450px;
  margin: 0 auto;
  padding: 9px 8px 7px;
}
@media (min-width: 811px) {
  .p-top-button01__inner {
    max-width: 1080px;
    padding: 42px 20px 40px;
  }
}
.p-top-button01__text {
  position: relative;
  font-size: 13px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
@media (min-width: 811px) {
  .p-top-button01__text {
    padding-right: 45px;
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.1875;
  }
}
.p-top-button01__text::after {
  display: block;
  position: absolute;
  content: "";
  top: 12px;
  right: 4px;
  width: 40px;
  height: 5px;
  background-image: url(../own_images/top/top_arrow01.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 811px) {
  .p-top-button01__text::after {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-size: 100%;
  }
}

.p-top-section02 {
  padding: 45px 0 0;
}
@media (min-width: 811px) {
  .p-top-section02 {
    padding: 65px 0 0;
  }
}

@media (min-width: 811px) {
  .p-top-list01 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 20px;
  }
}
.p-top-list01:first-of-type {
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .p-top-list01:first-of-type {
    margin-bottom: 60px;
  }
}
.p-top-list01__item {
  position: relative;
  padding-bottom: 16px;
  border-bottom: 1px solid #cecece;
}
.p-top-list01__item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (min-width: 811px) {
  .p-top-list01__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.p-top-list01__item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: inherit;
  border-bottom: 1px solid #ea3323;
}
@media (min-width: 811px) {
  .p-top-list01__item {
    width: calc(100% / 4 - (20px / 4));
  }
}
@media (min-width: 811px) {
  .p-top-list01__item a:hover .p-top-list01__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-top-list01__item a:hover .p-top-list01__title-main {
    color: #ea3323;
  }
  .p-top-list01__item a:hover .p-top-list01__title-main::before {
    background-color: #ea3323;
  }
  .p-top-list01__item a:visited .p-top-list01__title-main::before {
    background-color: #ea3323;
  }
  .p-top-list01__item a:hover .p-top-list01__title-sub {
    color: #ea3323;
  }
}
.p-top-list01__image {
  margin-bottom: 20px;
  overflow: hidden;
  aspect-ratio: 335 / 220;
}
@media (min-width: 811px) {
  .p-top-list01__image {
    aspect-ratio: 305 / 220;
    margin-bottom: 18px;
  }
}
.p-top-list01__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 811px) {
  .p-top-list01__image img {
    -webkit-transform: scale(1);
            transform: scale(1);
    transition: 0.5s ease-in-out;
  }
}
@media (min-width: 811px) {
  .p-top-list01__title {
    transition: 0.3s all;
  }
}
.p-top-list01__title-sub {
  margin-bottom: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-list01__title-sub {
    transition: 0.3s all;
  }
}
.p-top-list01__title-main {
  position: relative;
  padding-left: 25px;
  padding-right: 0.8em;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-list01__title-main {
    transition: 0.3s all;
  }
}
.p-top-list01__title-main::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 4px;
  background-image: url(../own_images/top/top_arrow02.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.p-top-list01__title-main::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-mask-size: 20px;
          mask-size: 20px;
  background-color: #101c39;
}
H3.p-top-list01__title-main{
  font-size: 1em !important ;
  padding-left: 2em !important ;
}
H3.p-top-list01__title-main::before{
  margin-left: 0.3em;
}
@media (min-width: 811px) {
  .p-top-list01__title-main::before {
    top: 2px;
    transition: 0.3s all;
  }
}
.p-top-list01__title-main--01::before {
  -webkit-mask-image: url(../own_images/top/top_icon02.svg);
          mask-image: url(../own_images/top/top_icon02.svg);
}
.p-top-list01__title-main--02::before {
  -webkit-mask-image: url(../own_images/top/top_icon01.svg);
          mask-image: url(../own_images/top/top_icon01.svg);
}
.p-top-list01__title-main--03::before {
  -webkit-mask-image: url(../own_images/top/top_icon03.svg);
          mask-image: url(../own_images/top/top_icon03.svg);
}
.p-top-list01__title-main--04::before {
  -webkit-mask-image: url(../own_images/top/top_icon04.svg);
          mask-image: url(../own_images/top/top_icon04.svg);
}
.p-top-list01__title-main--05::before {
  -webkit-mask-image: url(../own_images/top/top_icon05.svg);
          mask-image: url(../own_images/top/top_icon05.svg);
}
.p-top-list01__title-main--06::before {
  -webkit-mask-image: url(../own_images/top/top_icon06.svg);
          mask-image: url(../own_images/top/top_icon06.svg);
}
.p-top-list01__title-main--07::before {
  -webkit-mask-image: url(../own_images/top/top_icon07.svg);
          mask-image: url(../own_images/top/top_icon07.svg);
}
.p-top-list01__title-main--08::before {
  -webkit-mask-image: url(../own_images/top/top_icon08.svg);
          mask-image: url(../own_images/top/top_icon08.svg);
}
.p-top-list01__title-main--small {
  padding-left: 16px;
}
@media (min-width: 811px) {
  .p-top-list01__title-main--small {
    padding-left: 25px;
  }
}
.p-top-list01__title-main--small::before {
  width: 14px;
  height: 14px;
  -webkit-mask-size: 14px;
          mask-size: 14px;
}
@media (min-width: 811px) {
  .p-top-list01__title-main--small::before {
    width: 20px;
    height: 20px;
    -webkit-mask-size: 20px;
            mask-size: 20px;
  }
}
.p-top-list01--2column-sp {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 30px 15px;
}
@media (min-width: 811px) {
  .p-top-list01--2column-sp {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
  }
}
.p-top-list01--2column-sp > li {
  width: calc(50% - 7.5px);
}
@media (min-width: 811px) {
  .p-top-list01--2column-sp > li {
    width: calc(100% / 4 - (20px / 4));
  }
}
.p-top-list01--2column-sp .p-top-list01__item {
  margin-bottom: 0;
  padding-bottom: 8px;
}
@media (min-width: 811px) {
  .p-top-list01--2column-sp .p-top-list01__item {
    padding-bottom: 16px;
  }
}
.p-top-list01--2column-sp .p-top-list01__image {
  margin-bottom: 8px;
}
@media (min-width: 811px) {
  .p-top-list01--2column-sp .p-top-list01__image {
    margin-bottom: 18px;
  }
}
.p-top-list01--2column-sp .p-top-list01__title-main {
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 811px) {
  .p-top-list01--2column-sp .p-top-list01__title-main {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.p-top-section03 {
  padding: 40px 0;
  background-color: #fafafa;
}
@media (min-width: 811px) {
  .p-top-section03 {
    padding: 80px 0;
  }
}

.p-top-news-list {
  -ms-flex-order: 2;
      order: 2;
  margin-bottom: 30px;
}
@media (min-width: 811px) {
  .p-top-news-list {
    width: calc(100% - (220px + 70px));
  }
}
.p-top-news-list__list {
  padding: 20px 0 26px;
  border-bottom: 1px solid #cecece;
}
.p-top-news-list__list:first-of-type {
  border-top: 1px solid #cecece;
}
@media (min-width: 811px) {
  .p-top-news-list__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -ms-flex-pack: start;
        justify-content: start;
    -ms-flex-align: center;
        align-items: center;
    gap: 20px;
    padding: 30px 0 36px;
  }
}
@media (min-width: 811px) {
  .p-top-news-list__list a {
    position: relative;
    transition: 0.3s all;
  }
  .p-top-news-list__list a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background-color: #ea3323;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all;
  }
  .p-top-news-list__list a:hover {
    color: #ea3323;
  }
  .p-top-news-list__list a:hover::before {
    opacity: 1;
    visibility: visible;
  }
}
.p-top-news-list__meta {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
      justify-content: start;
  -ms-flex-align: center;
      align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
@media (min-width: 811px) {
  .p-top-news-list__meta {
    margin-bottom: 0;
  }
}
.p-top-news-list__time {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-top-news-list__title {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.8px;
}

.p-top-news-category__item {
  text-align: center;
  padding: 4px 22px;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  background-color: #ebebeb;
}
@media (min-width: 811px) {
  .p-top-news-category__item {
    white-space: nowrap;
  }
}
.p-top-news-category__item:not(:last-of-type) {
  margin-right: 5px;
}

.p-top-news-button {
  position: relative;
  display: block;
  border-bottom: 1px solid #cecece;
  max-width: 220px;
  padding-bottom: 15px;
  font-weight: 700;
  line-height: 1.1875;
  font-size: 16px;
  font-size: 1rem;
  -ms-flex-order: 3;
      order: 3;
}
.p-top-news-button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50px;
  height: inherit;
  border-bottom: 1px solid #ea3323;
}
.p-top-news-button__text {
  position: relative;
  display: block;
  transition: 0.3s all;
}
.p-top-news-button__text::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 20px;
  height: 4px;
  background-image: url(../own_images/top/top_arrow02.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 811px) {
  .p-top-news-button__text:hover {
    color: #ea3323;
  }
}

.p-top-section03-inner {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
@media (min-width: 811px) {
  .p-top-section03-inner {
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    gap: 70px;
  }
}

.p-top-section03-box01 {
  display: contents;
}
@media (min-width: 811px) {
  .p-top-section03-box01 {
    display: block;
  }
}

.p-top-section04 {
  padding: 40px 0;
}
@media (min-width: 811px) {
  .p-top-section04 {
    padding: 80px 0;
  }
}
@media (min-width: 811px) {
  .p-top-section04__heading {
    margin-bottom: 0;
  }
}

@media (min-width: 811px) {
  .p-top-section04-inner01 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 60px;
    margin-bottom: 18px;
  }
}

.p-top-address01 {
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 811px) {
  .p-top-address01 {
    margin-bottom: 0;
  }
}
.p-top-address01__address {
  display: block;
  margin-bottom: 12px;
}
@media (min-width: 811px) {
  .p-top-address01__tel {
    pointer-events: none;
  }
}

.target_iframe {
  position: relative;
  aspect-ratio: 335/240;
}
@media (min-width: 811px) {
  .target_iframe {
    aspect-ratio: 1280/380;
  }
}
.target_iframe::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #fff;
  pointer-events: none;
}
.target_iframe::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-image: url(../own_images/top/top_loader01.gif);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}
.target_iframe.is-loaded::before {
  transition: 0.3s ease;
  transition-property: opacity;
  transition-delay: 1s;
  opacity: 0;
}
.target_iframe.is-loaded::after {
  transition: 0.3s ease;
  transition-property: opacity;
  transition-delay: 1s;
  opacity: 0;
}
.target_iframe iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
