/***********************************************************
2025.4リニューアル用のCSS
***********************************************************/

/* 変数*/
:root {
  --vw: 0.0661vw; /* 1px = 0.0661vw */
  --brown: #192140;
  --rubik: "Rubik", sans-serif;
}

/**********************************************************
既存style.cssの上書き用CSS-START
***********************************************************/
html {
  scroll-padding-top: 114px;
  scroll-behavior: smooth;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
img,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
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 {
  font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial,
    "Hiragino Sans", Meiryo, sans-serif;
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

a {
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

.orange02 {
  color: #d11111 !important;
}

.title01 {
  font-size: calc(24 / 16 * 1em);
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  display: block;
  margin-bottom: 32px;
  color: #192140;
}

.title01:before {
  display: none;
}

#wrap {
  padding-top: 106px;
  max-width: 1512px;
  margin-inline: auto;
}

@media (max-width: 1080px) {
  html {
    scroll-padding-top: 87px;
  }
  #wrap {
    padding-top: 78px;
  }
}

body#body {
  letter-spacing: 0;
}

.section01 {
  padding-top: 40px;
  padding-bottom: 80px;
}

.section02 {
  padding-bottom: 97px;
}

.section01.gray_bg {
  width: calc(100% + 50vw * 2);
  translate: -50vw 0;
  padding-inline: calc(50vw + 20px);
}

.news_container .box1200 {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.news_title .box1200 {
  padding-inline: 20px;
}

@media (max-width: 768px) {
  .news_title .box1200 {
    padding-inline: 30px;
  }
}

.title01 {
  font-size: calc(24 / 16 * 1em);
  font-weight: 400;
  line-height: 1.75;
  position: relative;
  display: block;
  margin-bottom: 48px;
  color: #192140;
}

/**********************************************************
既存style.cssの上書き用CSS-END
***********************************************************/

/**********************************************************
共通パーツ-START
***********************************************************/

.noto {
  font-family: "Noto Sans JP", "YuGothic", "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial,
    "Hiragino Sans", Meiryo, sans-serif;
}

.rubik {
  font-family: "Rubik", "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Helvetica Neue", Arial,
    "Hiragino Sans", Meiryo, sans-serif;
}

.red {
  color: #ff5436 !important;
}

.brown {
  color: #192140 !important;
}

.skyblue {
  color: #729fc4;
}

/* 固定背景 */

.bg_fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: url(./images/bg_img.svg) no-repeat center center / cover #e8edf4;
}

/* メインビジュアルのスクロールバーアニメーション */

@keyframes scroll {
  0% {
    top: -90px;
  }
  20% {
    top: -90px;
  }
  30% {
    top: calc(100% - 80px);
  }
  90% {
    top: calc(100% - 80px);
  }
  100% {
    top: calc(100% + 90px);
  }
}

.mv_scroll {
  position: absolute;
  right: 17px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  gap: 16px;
  bottom: 24px;
}

.scroll_bar {
  display: inline-block;
  width: 1px;
  height: 80px;
  position: relative;
  overflow: hidden;
}

.scroll_bar::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  translate: -50%;
  width: 1px;
  height: 80px;
  background-color: #353535;
  animation: scroll 3s linear infinite;
}

.scroll_text {
  display: inline-block;
  color: #353535;
  font-size: calc(14 / 16 * 1em);
  position: relative;
  writing-mode: vertical-lr;
}

@media (max-width: 1080px) {
  .mv_scroll {
    position: absolute;
    right: 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    gap: 16px;
    bottom: 25px;
  }

  .scroll_bar {
    display: inline-block;
    width: 1px;
    height: 80px;
    position: relative;
    overflow: hidden;
  }

  .scroll_bar::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 50%;
    translate: -50%;
    width: 1px;
    height: 80px;
    background-color: #353535;
    animation: scroll 3s linear infinite;
  }

  .scroll_text {
    display: inline-block;
    color: #353535;
    font-size: calc(12 / 16 * 1em);
    position: relative;
    writing-mode: vertical-lr;
  }
}

/* 各セクションのタイトル */

.section_title {
  font-size: 2em;
}

.section_title h2 {
  font-weight: 300;
}

.section_title h3 {
  font-weight: 300;
}

/* VIEW ALLのリンク */

a.view_all {
  font-size: 0.875em;
  color: #fff;
  display: inline-block;
  line-height: calc(28 / 14);
  padding-inline: 12px 25px;
  border-radius: 30px;
  background-color: #192140;
  text-decoration: none;
  position: relative;
  font-family: var(--rubik);
  white-space: nowrap;
  transition: color 0.3s, background-color 0.3s;
  outline: 1px solid #192140;
  outline-offset: -1px;
}

@media (hover: hover) and (pointer: fine) {
  a.view_all:hover {
    background-color: #fff;
    color: #192140;
    opacity: 1;
  }
}

.news_slide_wrapper .view_all {
  position: absolute;
  bottom: 0px;
  right: -17px;
  translate: 0 50%;
  line-height: calc(28 / 14);
}

.view_all::after {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -60%;
  width: 7px;
  height: 8px;
  content: "";
  background: url(./images/arrow.svg) no-repeat center center / cover;
  transition: background-image 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  a.view_all:hover::after {
    background-image: url(./images/arrow_brown.svg);
  }
}

@media (max-width: 1080px) {
  a.view_all {
    font-size: calc(12 / 16 * 1em);
    line-height: calc(21 / 12);
    padding-block: 3.5px;
  }

  .news_slide_wrapper .view_all {
    position: absolute;
    bottom: 0px;
    right: -17px;
    translate: 0 50%;
    line-height: calc(21 / 12);
  }

  .news_slide_wrapper .view_all {
    right: -8px;
    translate: 0 20px;
  }

  .view_all::after {
    position: absolute;
    top: 50%;
    right: 11px;
    translate: 0 -50%;
    width: 7px;
    height: 8px;
    content: "";
    background: url(./images/arrow.svg) no-repeat center center / contain;
  }
}

/* VIEW MOREのリンク */

a.view_more {
  border-radius: 30px;
  padding: 12px 61px 12px 24px;
  line-height: calc(28 / 16);
  background-color: #192140;
  text-decoration: none;
  color: #fff;
  position: relative;
  border: 1px solid #192140;
  transition: background-color 0.5s, color 0.5s;
  white-space: nowrap;
}

a.view_more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  width: 7px;
  height: 8px;
  background: url(./images/arrow.svg) no-repeat center center / contain;
  transition: background-image 0.5s;
}

@media (hover: hover) and (pointer: fine) {
  a.view_more:hover {
    background-color: #fff;
    color: #192140;
    opacity: 1;
  }
  a.view_more:hover::after {
    background-image: url(./images/arrow_brown.svg);
  }
}

@media (max-width: 1080px) {
  a.view_more {
    line-height: calc(21 / 12);
    font-size: calc(12 / 16 * 1em);
  }
}

@media (max-width: 1080px) {
  .section_title {
    font-size: calc(24 / 16 * 1em);
    line-height: 1.5;
    font-weight: 300;
  }
}

/**********************************************************
共通パーツ-END
***********************************************************/
/**********************************************************
ヘッダー-START
***********************************************************/
header.header {
  width: 100%;
  position: relative;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
}
.header_inner {
  width: 100%;
  justify-content: flex-start;
  position: relative;
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: 32px min(48px, calc(48 * var(--vw)));
}
.header_logo {
  width: fit-content;
  padding-right: min(24px, calc(24 * var(--vw)));
  margin-right: min(24px, calc(24 * var(--vw)));
  position: relative;
  flex-shrink: 0;
}

.header_logo::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 42.5px;
  translate: 0 -50%;
  background-color: #acacac;
}

.header_logo img {
  width: min(226px, calc(226 * var(--vw)));
}

.header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  translate: 0 -3px;
}

.header_nav_list {
  gap: min(33px, calc(33 * var(--vw)));
  display: flex;
  align-items: center;
  font-size: calc(14 / 16 * 1em);
}
.header_nav .header_nav_list_item {
  margin-left: 0;
}
.header_nav .header_nav_list_item a {
  display: block;
  font-size: min(14px, calc(14 * var(--vw)));
  color: #333;
  font-weight: 400;
  text-decoration: none;
}

.header_contact {
  text-align: right;
  margin-left: auto;
  padding-left: min(16px, 1.058vw);
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 4px;
}

.header_contact p {
}
.header_contact p:first-child a {
  background: #d11111;
}

.header_contact p a {
  padding: 8px 8px 6px;
  display: block;
  background: #d11111;
  color: #fff;
  font-size: 0.875em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  width: 160px;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
  outline: 1px solid #d11111;
  outline-offset: -1px;
}

@media (hover: hover) and (pointer: fine) {
  .header_contact p a:hover {
    background: #fff;
    color: #d11111;
    opacity: 1;
  }
}

/* ヘッダーのタブレット表示 */

@media (min-width: 1024.1px) {
  .main_menu_sp {
    display: none;
  }
}

@media (max-width: 1024px) {
  header.header {
    width: 100%;
  }
  .header_inner {
    padding: 24px 16px 17px;
  }
  .header_logo {
    padding-top: 0;
  }

  .header_logo::after {
    display: none;
  }

  .header_logo img {
    width: 205px;
  }

  .header_menu {
    display: none;
  }

  .sp-menu__box {
    position: fixed;
    top: 35px;
    right: 16px;
    display: flex;
    height: 16px;
    width: 24px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }

  .sp-menu__box span,
  .sp-menu__box span:before,
  .sp-menu__box span:after {
    content: "";
    display: block;
    height: 1px;
    scale: 1 1.1;
    width: 25px;
    border-radius: 1px;
    background: #251714;
    position: absolute;
    transition: transform 0.3s;
  }
  .sp-menu__box span:before {
    bottom: 7.5px;
  }
  .sp-menu__box span:after {
    top: 7.5px;
  }
  #sp-menu__check {
    display: none;
  }
  #sp-menu__check:checked ~ .sp-menu__box span {
    background: transparent;
  }
  #sp-menu__check:checked ~ .sp-menu__box span::before {
    bottom: 0;
    transform: rotate(30deg);
    background: #fff;
  }
  #sp-menu__check:checked ~ .sp-menu__box span::after {
    top: 0;
    transform: rotate(-30deg);
    background: #fff;
  }
  #sp-menu__check:checked ~ .sp-menu__content {
    left: 0;
  }

  .sp_menu_logo {
    width: 205px;
    height: 38px;
    margin-left: 16px;
  }
  .sp-menu__content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background: #000;
    transition: all 0.3s;
    padding-top: 24px;
  }

  .header_contact {
    margin-top: 32px;
    justify-content: center;
    gap: 9px;
    padding-left: 0;
  }

  .header_contact p {
  }

  .header_contact p:first-child a {
    background: #d11111;
  }

  .header_contact p a {
    padding-top: 6px;
    padding-bottom: 7px;
    display: block;
    background: #d11111;
    color: #fff;
    font-size: 0.875em;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    width: 158px;
    border-radius: 8px;
  }

  .sp-menu__list {
    padding: 48px 31px;
  }

  .sp-menu__link {
    display: block;
    width: 100%;
    font-size: calc(20 / 16 * 1em);
    line-height: calc(24 / 20);
    box-sizing: border-box;
    color: #ffffff !important;
    font-weight: bold;
    text-decoration: none !important;
    padding: 0;
    margin-bottom: 32px;
    font-weight: 400;
  }
}

/**********************************************************
ヘッダー-END
***********************************************************/

/**********************************************************
フッター-START
***********************************************************/

.footer {
  background: #000;
  color: #fff;
  position: relative;
  padding-top: 224px;
  padding-bottom: 65px;
}

.footer a {
  text-decoration: none;
  color: inherit;
}

.footer_top {
  display: flex;
  justify-content: center;
  background: url("./images/footer_top_bg.webp") no-repeat center center / cover;
  position: absolute;
  padding-block: 32px;
  max-width: 1272px;
  width: calc(1272 / 1512 * 100%);
  top: 0;
  left: 50%;
  translate: -50% -50%;
}

.footer_top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(25, 33, 64, 0.85) 0%,
    rgba(25, 33, 64, 0.85) 100%
  );
}

.footer_top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 1px;
  height: calc(100% - 32px * 2);
  background-color: #fff;
}

.footer_top_item {
  position: relative;
  text-align: center;
  padding-block: 29px;
  padding-inline: 8px;
  width: 50%;
}

.footer_top_head {
  font-size: calc(28 / 16 * 1em);
  line-height: 1.5;
}

.footer_top_text {
  margin-top: 16px;
  line-height: 1.75;
}

a.footer_view_all {
  margin-top: 32px;
  display: block;
  width: fit-content;
  background-color: #fff;
  margin-inline: auto;
  padding: 11px 64px 9px 24px;
  transition: color 0.5s, background-color 0.5s;
  font-size: 1em;
  white-space: nowrap;
}

a.footer_view_all::after {
  background-image: url("./images/arrow_brown.svg");
  right: 24px;
  translate: 0 -50%;
}

a.footer_recruit {
  margin-top: 32px;
  display: block;
  width: fit-content;
  background-color: #fff;
  margin-inline: auto;
  padding: 11px 74px 9px 26px;
  transition: background-color 0.5s;
  font-size: 1em;
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  a.footer_view_all:hover {
    background-color: #d11111;
    color: #fff !important;
    opacity: 1;
  }
  a.footer_recruit:hover {
    background-color: #d11111;
    color: #fff !important;
    opacity: 1;
  }
  a.footer_view_all:hover::after {
    background-image: url("./images/arrow.svg");
  }
  a.footer_recruit:hover::after {
    background-image: url("./images/link_icon--white.svg");
  }
}

a.footer_recruit::after {
  background-image: url("./images/link_icon_brown.svg");
  width: 16px;
  height: 16px;
  right: 24px;
}

.footer_middle {
  display: flex;
  margin-inline: auto;
  align-items: center;
  padding-left: min(120px, calc(120 * var(--vw)));
  padding-right: min(120px, calc(120 * var(--vw)));
}

.footer_logo {
  width: 236px;
  height: 40px;
}

.footer_middle_links {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 4px;
}

.footer_middle_link {
  width: 160px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #d11111;
  font-size: calc(14 / 16 * 1em);
  border-radius: 8px;
  outline: 1px solid #d11111;
  outline-offset: -1px;
  transition: background-color 0.3s, color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .footer_middle_link:hover {
    background-color: #fff;
    color: #d11111;
    opacity: 1;
  }
}

.footer_bottom {
  display: flex;
  margin-inline: auto;
  align-items: flex-start;
  padding-left: min(130px, calc(130 * var(--vw)));
  padding-right: min(120px, calc(120 * var(--vw)));
  margin-top: 32px;
  justify-content: space-between;
  font-size: calc(14 / 16 * 1em);
}

.footer_address {
  line-height: calc(24 / 14);
}

.footer_copyright {
  margin-top: 61px;
}

.footer_bottom_right {
  flex-shrink: 0;
  margin-top: -5px;
}

.footer_nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: min(32.5px, calc(32.5 * var(--vw)));
}

.footer_bottom_links {
  display: flex;
  justify-content: flex-end;
  margin-top: 33px;
  gap: 16px;
  line-height: calc(24 / 14);
}

footer .footer_bottom_link {
  padding-left: 18px;
  position: relative;
  transition: color 0.3s;
  color: #729fc4;
}

.footer_bottom_link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  translate: 0 -50%;
  width: 10px;
  height: 10px;
  background-color: #729fc4;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transition: background-color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .footer_bottom_link:hover {
    color: #fff !important;
    opacity: 1;
  }

  .footer_bottom_link:hover::before {
    background-color: #fff;
  }
}

.footer_privacy {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-top: 27px;
}

/* フッターのタブレット表示 */

@media (max-width: 1024px) {
  .footer {
    padding-bottom: 32px;
    padding-inline: calc(120 / 1512 * 100%);
  }

  .footer_top_item {
    padding-block: 24px;
    padding-inline: 32px;
    width: 100%;
  }

  .footer_top_head {
    font-size: calc(20 / 16 * 1em);
    line-height: 1.75;
  }

  .footer_top_text {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
  }

  .footer_middle {
    padding-inline: 0;
  }

  .footer_bottom {
    flex-direction: column-reverse;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 32px;
    font-size: calc(14 / 16 * 1em);
  }

  .footer_bottom_left {
    width: 100%;
  }

  .footer_address {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
    margin-top: 48px;
  }

  .footer_copyright {
    margin-top: 32px;
    text-align: center;
    font-weight: 400;
  }

  .footer_bottom_right {
    margin-left: 7px;
  }

  .footer_nav {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 16px;
  }

  .footer_nav_item {
    width: calc(100% * 1 / 4);
    line-height: calc(17 / 14);
  }

  .footer_bottom_links {
    flex-direction: column;
    margin-top: 24px;
    gap: 8px;
  }

  .footer_privacy {
    margin-left: 0;
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding-top: 0;
    padding-bottom: 32px;
    padding-inline: 0;
  }

  .footer_top {
    flex-direction: column;
    position: relative;
    padding-block: 24px 25px;
    width: 100%;
    top: 0;
    left: 0;
    translate: 0;
    background-image: url("./images/footer_top_sp.webp");
  }

  .footer_top::after {
    top: calc(50% - 14px);
    left: 50%;
    translate: -50% -50%;
    width: calc(100% - 24px * 2);
    height: 1px;
  }

  .footer_top_item {
    padding-block: 24px;
    padding-inline: 32px;
    width: 100%;
  }

  .footer_top_head {
    font-size: calc(20 / 16 * 1em);
    line-height: 1.75;
  }

  .footer_top_text {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
  }

  a.footer_view_all {
    font-size: 12px;
    margin-top: 33px;
    padding: 11px 63px 11px 24px;
  }
  a.footer_recruit {
    font-size: 12px;
    padding: 11px 72px 11px 24px;
    margin-top: 35px;
  }
  .footer_middle {
    flex-direction: column;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    margin-top: 48px;
  }

  .footer_middle_links {
    margin-top: 48px;
    margin-left: 0;
    gap: 8px;
  }

  .footer_bottom {
    flex-direction: column-reverse;
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 32px;
    font-size: calc(14 / 16 * 1em);
  }

  .footer_bottom_left {
    width: 100%;
  }

  .footer_address {
    font-size: 14px;
    line-height: calc(24 / 14);
    margin-top: 41px;
  }

  .footer_copyright {
    margin-top: 32px;
    text-align: center;
    font-weight: 400;
  }

  .footer_bottom_right {
    margin-left: 7px;
  }

  .footer_nav {
    flex-wrap: wrap;
    align-items: center;
    column-gap: 0;
    row-gap: 15px;
    margin-top: 4px;
  }

  .footer_nav_item {
    width: 50%;
    line-height: calc(17 / 14);
  }

  .footer_bottom_links {
    flex-direction: column;
    margin-top: 24px;
    gap: 8px;
  }

  .footer_privacy {
    margin-left: 0;
    margin-top: 15px;
  }
}

/**********************************************************
フッター-END
***********************************************************/
/**********************************************************
TOPページ-ニュースセクションのスライド-START
***********************************************************/

.main_slide {
  min-height: 875px;
  margin-bottom: 0;
}

.mv__list {
  position: relative;
  width: 100%;
  height: 100%;
}

.mv__item {
  position: absolute;
  width: 794.58px;
  height: 521.44px;
  transform: translate(-50%, -50%);
  transform-origin: center center;
}
@media (max-width: 768px) {
  .mv__item {
    width: 332.53px;
    height: 218.22px;
  }
}

/* news_slide */
.news_slide_wrapper {
  background-color: #fff;
  width: 558px;
  padding: 16px 24px 24px 24px;
  box-sizing: border-box;
  border-radius: 8px;
  position: absolute;
  top: 0;
  right: 48px;
  z-index: 10;
}

.news_slide_wrapper a {
  text-decoration: none;
}

.news_slide .swiper-slide {
  position: relative;
}
.news_slide .swiper-slide a {
  color: inherit;
}

.news_time.small {
  font-size: calc(14 / 16 * 1em);
}

.news_time .divider {
  margin-inline: 1px;
}
.news_slide .news_head {
  line-height: calc(24 / 16);
  margin-top: 12px;
  position: relative;
  padding-right: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_slide .swiper-slide::before {
  content: "";
  position: absolute;
  right: 0;
  top: 55%;
  translate: 0 -50%;
  transform-origin: bottom right;
  height: 13px;
  width: 34px;
  background: url("./images/news_arrow.svg") no-repeat center center / contain;
}

.mv_slide {
  position: absolute;
  bottom: 70px;
  left: calc(120 / 1512 * 100%);
  width: 620px;
}

.mv_slide .mv_slide_txt h2 {
  font-size: calc(42 / 16 * 1em);
  line-height: 1.5;
}
.mv_slide .mv_slide_txt h3 {
  font-size: calc(18 / 16 * 1em);
  line-height: 1.75;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .main_slide {
    min-height: 766px;
    margin-bottom: 0;
    position: relative;
  }
  .news_slide_wrapper {
    width: calc(100% - 16px * 2);
    padding: 16px;
    right: auto;
    left: 50%;
    translate: -50%;
    top: 0px;
  }

  .news_slide_wrapper a {
    text-decoration: none;
  }

  .news_slide .swiper-slide {
    min-width: 0;
  }

  .news_slide .swiper-slide a {
    color: inherit;
  }

  .news_time.small {
    font-size: calc(12 / 16 * 1em);
    line-height: calc(14 / 12);
  }

  .news_slide .news_head {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
    padding-right: 32px;
    margin-top: 6px;
    display: block;
    width: 100%;
    min-width: 0;
  }
  .news_slide .swiper-slide::before {
    right: -2px;
    top: 50%;
    translate: 0 -50%;
    transform-origin: bottom right;
    height: 3px;
    width: 16px;
    background-image: url("./images/news_arrow_sp.svg");
    scale: 1.5;
  }

  .mv_slide {
    position: absolute;
    bottom: 72px;
    left: 16px;
    width: 320px;
  }

  .mv_slide .mv_slide_txt h2 {
    font-size: calc(24 / 16 * 1em);
    line-height: 1.75;
  }
  .mv_slide .mv_slide_txt h3 {
    font-size: calc(16 / 16 * 1em);
    line-height: 1.75;
    margin-top: 16px;
  }
}

/**********************************************************
TOPページ-ニュースセクションのスライド-END
***********************************************************/
/**********************************************************
TOPページ-ABOUTセクション-START
***********************************************************/

/* ABOUTセクション */

.top_about {
  margin-top: 100px;
  padding-top: 59px;
  max-width: 1512px;
  margin-inline: auto;
  margin-bottom: 150px;
  width: 100%;
  position: relative;
}

.top_about_img {
  position: absolute;
}

.top_about_img_01 {
  width: calc(322 / 1512 * 100%);
  top: 0;
  left: 0;
  margin-left: calc(986 / 1512 * 100%);
  aspect-ratio: 322 / 189;
  filter: blur(10px);
  translate: 0 100px;
}

.top_about_img_02 {
  width: calc(464 / 1512 * 100%);
  bottom: 262px;
  left: 0;
  aspect-ratio: 464 / 272;
  z-index: 2;
  translate: 0 400px;
}

.top_about_img_03 {
  width: calc(232 / 1512 * 100%);
  top: 287px;
  left: 0;
  margin-left: calc(1191 / 1512 * 100%);
  aspect-ratio: 232 / 136;
  translate: 0 150px;
}

.top_about_img_04 {
  width: calc(270 / 1512 * 100%);
  bottom: 150px;
  right: 0;
  margin-right: calc(860 / 1512 * 100%);
  aspect-ratio: 235 / 138;
  filter: blur(8.518518447875977px);
  translate: 0 350px;
}

.top_about_contents {
  padding-bottom: 46px;
  box-sizing: border-box;
  width: 100%;
}

.top_about_title {
  position: absolute;
  left: 0;
  top: 59px;
  margin-left: calc(120 / 1512 * 100%);
  line-height: 1.5;
  font-weight: 300;
}

.top_about_text {
  width: min(544px, calc(544 * var(--vw)));
  margin-left: calc(403 / 1512 * 100%);
  margin-top: 0;
}

.top_about_text + .top_about_text {
  margin-left: calc(551 / 1512 * 100%);
  margin-top: 48px;
}

.top_about_text + .top_about_text + .top_about_text {
  margin-left: calc(699 / 1512 * 100%);
}

.top_about_text + .top_about_text + .top_about_text + .top_about_text {
  margin-left: calc(847 / 1512 * 100%);
}

.top_about_text h3 {
  font-size: calc(28 / 16 * 1em);
  line-height: 1.5;
  color: #333;
}

.top_about_text p {
  line-height: calc(28 / 16);
  margin-top: 16px;
  color: #333;
}

.top_about_view_more {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: calc(119 / 1512 * 100%);
  font-family: var(--rubik);
}

@media (max-width: 1024px) {
  .top_about {
    margin-top: 32px;
    padding-top: 82px;
    padding-bottom: 122px;
    margin-bottom: 120px;
  }

  .top_about_contents {
    padding-left: min(120px, calc(120 / 1512 * 100%));
    padding-right: min(160px, calc(160 / 1512 * 100%));
  }
  .top_about_img_01 {
    width: 160px;
    top: -6px;
    left: auto;
    right: 58px;
    aspect-ratio: 322 / 189;
    translate: 0 50px;
  }

  .top_about_img_02 {
    width: 164px;
    bottom: 55px;
    left: 0;
    translate: 0 50px;
  }

  .top_about_img_03 {
    width: 102px;
    top: 69px;
    left: auto;
    right: 16px;
    translate: 0 150px;
  }

  .top_about_img_04 {
    width: 130px;
    bottom: 0;
    right: auto;
    left: 100px;
    filter: blur(4.1796746253967285px);
    translate: 0 150px;
  }

  .top_about_title {
    position: relative;
    left: 0;
    top: 0;
    margin-left: 0;
  }

  .top_about_text {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    font-size: 20px;
    margin-top: 32px;
  }

  .top_about_text:first-of-type p {
    font-size: 14px;
  }

  .top_about_text + .top_about_text {
    margin-left: 0;
    margin-top: 31px;
  }

  .top_about_text + .top_about_text + .top_about_text {
    margin-left: 0;
  }

  .top_about_text + .top_about_text + .top_about_text + .top_about_text {
    margin-left: 0;
  }

  .top_about_text h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-top: 0;
    color: #333;
  }

  .top_about_text p {
    font-size: 14px;
    line-height: calc(28 / 16);
    margin-top: 8px;
    color: #333;
  }
}

@media (max-width: 768px) {
  .top_about_contents {
    padding-inline: 16px;
    padding-bottom: 32px;
  }

  .top_about_view_more {
    margin-right: 16px;
  }
}

/**********************************************************
TOPページ-ABOUTセクション-END
***********************************************************/

/**********************************************************
SERVICEセクション-START※下層ページ共通
***********************************************************/

.service_section {
  max-width: 1512px;
  padding-left: min(120px, calc(120 / 1512 * 100%));
  padding-right: min(160px, calc(160 / 1512 * 100%));
  margin-inline: auto;
}

.service_section a {
  text-decoration: none;
  color: inherit;
}

.service_section_items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: calc(110 / (560 * 2 + 112) * 100%);
  margin-top: 36px;
}

a.service_section_item {
  position: relative;
  overflow: visible;
}

.service_section_item:nth-child(2n) {
  margin-top: 80px;
}

.service_section_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 5px;
  background-color: #192140;
  transition: left 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a.service_section_item:hover {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  a.service_section_item:hover .service_section_border {
    left: calc(100% - 120px);
  }
}

.service_section_num {
  position: absolute;
  top: 50px;
  right: 0;
  translate: 50%;
  rotate: 90deg;
  font-size: calc(52 / 16 * 1em);
  line-height: 1;
  transition: top 0.3s;
  font-weight: 300;
}

@media (hover: hover) and (pointer: fine) {
  a.service_section_item:hover .service_section_num {
    top: 72px;
  }
}

.service_section_img {
  width: 100%;
  aspect-ratio: 560 / 365;
  border: 48px solid #fff;
  overflow: hidden;
}

.service_section_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a.service_section_item:hover .service_section_img img {
    scale: 1.1;
  }
}

.service_section_text {
  margin-top: 24px;
}

.service_section_text h3 {
  font-size: calc(28 / 16 * 1em);
  line-height: 1.5;
}

.service_section_text p {
  margin-top: 16px;
  font-size: 1em;
  line-height: calc(32 / 18);
}

a.service_view_more {
  color: #fff;
  translate: 20px;
  margin-inline: auto;
  display: block;
  width: fit-content;
  margin-top: 73px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .service_section_border {
    width: 70px;
    height: 3px;
  }

  @media (hover: hover) and (pointer: fine) {
    a.service_section_item:hover .service_section_border {
      left: calc(100% - 70px);
    }
  }

  .service_section_num {
    top: 28px;
    right: 0;
    font-size: calc(32 / 16 * 1em);
  }

  .service_section_img {
    width: 100%;
    border: 24px solid #fff;
  }
}

@media (max-width: 768px) {
  .service_section {
    margin-top: 60px;
    padding-inline: 16px 16px;
    margin-inline: auto;
    padding-bottom: 49px;
  }

  .service_section_title.lower {
    margin-bottom: 32px;
    margin-top: -27px;
  }

  .service_section_items {
    grid-template-columns: 1fr;
    margin-top: 32px;
    row-gap: 34px;
  }

  .service_section_item:nth-child(2n) {
    margin-top: 0;
  }

  .service_section_num {
    top: 28px;
    right: 26px;
    font-size: calc(32 / 16 * 1em);
    font-weight: 300;
  }

  @media (hover: hover) and (pointer: fine) {
    a.service_section_item:hover .service_section_num {
      top: 42px;
    }
    a.service_section_item:hover .service_section_border {
      left: calc(100% - 70px - 26px);
    }
  }

  .service_section_img {
    width: calc(100% - 26px);
  }

  .service_section_text {
    margin-top: 16px;
  }

  .service_section_text h3 {
    font-size: calc(20 / 16 * 1em);
    line-height: 1.75;
  }

  .service_section_text p {
    margin-top: 8px;
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
  }

  a.service_view_more {
    margin-top: 30px;
    translate: 0;
  }
}

/**********************************************************
ABOUTセクション-END
***********************************************************/

/**********************************************************
TOPページ：投資体験のセクション-START
***********************************************************/

.top_experiment {
  margin-top: 133px;
  width: 786px;
  margin-inline: auto;
  padding-top: 27px;
  height: 365px;
  overflow: hidden;
  margin-bottom: 320px;
}

.top_experiment_container {
  display: flex;
  align-items: flex-start;
  padding-left: 49px;
  background-color: #14a7a3;
  transition: background-color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .top_experiment_container:hover {
    background-color: #ffed1a;
  }
}

.top_experiment_left {
  width: 222px;
  height: 456px;
  position: relative;
  overflow: hidden;
  background: url("./images/experiment_border.webp") no-repeat center center /
    contain;
  translate: 0 -27px;
  transition: translate 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .top_experiment_container:hover .top_experiment_left {
    translate: 0 24px;
  }
}

.top_experiment_movie {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 203px;
  height: 440px;
  overflow: hidden;
  border-radius: 60px;
}

.top_experiment_movie video {
  translate: 0 -20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top_experiment_right {
  flex: 1;
  padding-left: 47px;
  padding-right: 38px;
  padding-top: 32px;
}

.top_experiment_title {
  color: #ffed1a;
  font-size: calc(20 / 16 * 1em);
  line-height: 1.75;
  font-weight: 700;
  transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .top_experiment_container:hover .top_experiment_title {
    color: #14a7a3;
  }
}

.top_experiment_text {
  margin-top: 16px;
  font-size: calc(14 / 16 * 1em);
  line-height: calc(24 / 14);
  color: #fff;
  transition: color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .top_experiment_container:hover .top_experiment_text {
    color: #000;
  }
}

a.top_experiment_link {
  display: block;
  width: fit-content;
  margin-top: 16px;
  padding: 12px 72px 12px 24px;
  border-radius: 30px;
  background-color: #ffed1a;
  text-decoration: none;
  color: #14a7a3;
  line-height: calc(28 / 16);
  border: 1px solid #14a7a3;
  position: relative;
  transition: color 0.3s, background-color 0.3s;
  white-space: nowrap;
}

a.top_experiment_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  background: url("./images/link_icon.svg") no-repeat center center / contain;
}

@media (max-width: 768px) {
  .top_experiment {
    margin-top: 0;
    width: calc(100% - 23px * 2);
    padding-top: 29px;
    height: fit-content;
    overflow: visible;
    margin-bottom: 48px;
  }

  .top_experiment_container {
    flex-direction: column;
    padding-left: 0;
    padding-bottom: 22px;
  }
  .top_experiment_left {
    width: 222px;
    height: 456px;
    translate: 0 -30px;
    margin-inline: auto;
    width: 156px;
    height: 321px;
    clip-path: inset(0 0 67px 0);
    transition: clip-path 0.3s, translate 0.3s;
  }

  @media (hover: hover) and (pointer: fine) {
    .top_experiment_container:hover .top_experiment_left {
      translate: 0 24px;
      clip-path: inset(0 0 91px 0);
    }
  }

  .top_experiment_movie {
    width: 143px;
    height: 310px;
    border-radius: 30px;
  }

  .top_experiment_movie video {
    translate: 0 -12px;
  }

  .top_experiment_right {
    padding-inline: 24px;
    padding-top: 0;
    margin-top: -70px;
  }

  .top_experiment_title {
    font-size: 1em;
  }

  .top_experiment_text {
    margin-top: 8px;
  }

  a.top_experiment_link {
    margin-top: 24px;
    font-size: calc(12 / 16 * 1em);
    line-height: calc(21 / 12);
    margin-inline: auto;
  }
}

/**********************************************************
TOP投資体験のセクション-END
***********************************************************/

/**********************************************************
下層ページ共通-START
***********************************************************/

/* 既存のサービス関連ページタブの非表示 */
.management_list {
  display: none;
}

.lower_container {
  max-width: 1272px;
  margin-inline: auto;
  padding-inline: 40px;
  box-sizing: content-box;
  padding-bottom: 189px;
}

.lower_container h3 {
  color: #192140;
}
.low_visual {
  padding-top: 74px;
  padding-bottom: 20px;
}

.low_visual h2 {
  font-weight: 300;
  font-size: calc(80 / 16 * 1em);
  text-transform: uppercase;
}

.low_visual h2.rubik {
  font-weight: 300;
}

.low_visual .sub-title {
  font-size: calc(26 / 16 * 1em);
  display: flex;
  justify-content: flex-start;
  font-weight: 300;
}

.low_visual h2.title_small {
  font-size: calc(56 / 16 * 1em);
  font-weight: 400;
  letter-spacing: 0;
}

.title_count {
  color: #192140;
  font-size: calc(14 / 16 * 1em);
  line-height: 1.5;
  position: relative;
  font-weight: 300;
}

.title_count::after {
  height: 1px;
  width: calc(100% - 23px);
  background-color: #729fc4;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
.box1200 {
  max-width: 1272px;
  padding-inline: 0;
}

.box1080 {
  padding-inline: 42px;
}

.box1020 {
  max-width: none;
  padding-inline: 0;
}

.big04 {
  font-size: calc(28 / 16 * 1em);
  font-weight: 400;
}

.big {
  font-weight: 500;
  font-size: calc(18 / 16 * 1em);
}

.mb20 {
  margin-bottom: 20px;
}

h4.mb20 {
  margin-bottom: 16px;
}

.mb60 {
  margin-bottom: 80px !important;
}

.mb40 {
  margin-bottom: 40px;
}
p.mb20 {
  margin-bottom: 0;
  font-size: 1em;
  line-height: calc(24 / 14);
}

p.mb40 {
  font-size: 1em;
  margin-bottom: 48px;
}

.crumb {
  margin-top: 152px;
  text-transform: uppercase;
}
.crumb a {
  color: #192140;
  text-decoration: none;
}

.crumb ul li {
  font-size: calc(14 / 16 * 1em);
}
.crumb ul li:after {
  content: "";
  display: inline-block;
  margin-inline: 15px;
  width: 5px;
  height: 8px;
  background: url("./images/crumb_arrow.svg") no-repeat center center / contain;
  translate: 0 -2px;
}

.low_flex {
  display: flex;
  justify-content: space-between;
  gap: calc(142 / 1272 * 100%);
  margin-top: -7px;
}

.low_flex h3 {
  flex-shrink: 0;
}

.low_flex_right {
  max-width: 624px;
}

.low_flex .list01_left {
  width: 100%;
}

.low_flex .list01_right {
  width: 100%;
  margin-top: 36px;
}
@media (max-width: 1080px) {
  .low_flex {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .lower_container {
    padding-top: 10px;
    padding-bottom: 80px;
    padding-inline: 16px;
  }
  .low_visual {
    padding-top: 19px;
    padding-bottom: 32px;
  }

  .low_visual .sub-title {
    font-size: 1em;
    display: flex;
    justify-content: flex-start;
  }

  .low_visual h2 {
    font-size: calc(40 / 16 * 1em);
    line-height: 1.5;
    margin-top: 11px;
  }

  .low_visual h2.title_small {
    font-size: calc(40 / 16 * 1em);
    line-height: 1.5;
  }

  .section01 {
    padding-top: 0;
    padding-bottom: 80px;
  }

  .section02 {
    padding-bottom: 64px;
  }

  .box1080 {
    padding-inline: 0;
  }

  .title01 {
    font-size: calc(18 / 16 * 1em);
    margin-bottom: 32px;
  }
  .big04 {
    font-size: calc(20 / 16 * 1em);
  }

  .big {
    font-size: 1em;
  }

  .mb20 {
    margin-bottom: 0;
  }

  p.mb20 {
    margin-bottom: 0;
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
  }

  .mb40 {
    margin-bottom: 32px;
  }

  p.mb40 {
    margin-bottom: 32px;
    font-size: calc(14 / 16 * 1em);
  }

  .mb60 {
    margin-bottom: 32px !important;
  }
  .crumb {
    display: none;
  }
  .crumb a {
    color: #192140;
    text-decoration: none;
  }

  .crumb ul li:after {
    content: ">";
    margin-inline: 8px;
  }

  .low_flex .list01_left {
    margin-bottom: 0;
  }

  .low_flex .list01_right {
    margin-top: 24px;
    margin-bottom: -48px;
  }
}

/**********************************************************
下層ページ共通-END
***********************************************************/

/**********************************************************
SERVICEページ-START
***********************************************************/
.service_section.lower {
  padding-left: 0;
  padding-right: 40px;
  max-width: none;
}

.service_section.padding0 {
  padding-inline: 0;
  margin-top: 0;
}

@media (max-width: 768px) {
  .service_section.lower {
    margin-top: 0;
    padding-bottom: 0;
    padding-inline: 0;
  }

  .service_section.padding0 {
    padding-bottom: 0;
  }
  .service_section.lower .low_visual h2 {
    font-size: calc(40 / 16 * 1em);
  }

  .service_section_items.lower {
    margin-top: 0;
  }
}
/**********************************************************
SERVICEページ-END
***********************************************************/
/**********************************************************
プロパティマネジメントページ-START
***********************************************************/

.management_box02 {
  margin-bottom: 55px;
}

.management_box02 dt {
  background-color: #fff;
  font-weight: 400;
  padding-block: 10px;
}

.management_box02 dd {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.3);
  padding: 16px calc(52 / 294 * 100%);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .management_box02 dd {
    padding: 16px calc(32 / 294 * 100%);
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .management_box02 {
    max-width: 294px;
    margin-inline: auto;
    margin-bottom: 24px;
  }

  .management_box02:first-child {
    margin-top: -2px;
  }
  .management_box02 dt {
    background-color: #fff;
    font-size: calc(18 / 16 * 1em);
    padding: 8px 52px;
  }

  .management_box02 dd {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.3);
    padding: 16px 55px;
  }
}
/**********************************************************
プロパティマネジメントページ-END
***********************************************************/
/**********************************************************
エネルギー事業ページ-START
***********************************************************/
.energy_feature {
  margin-top: 37px;
}

.energy_feature_items {
  display: flex;
  justify-content: space-between;
}

.energy_feature_item {
  width: calc(400 / 1272 * 100%);
  border: 1px solid #fff;
}

.energy_feature_head {
  padding: 16px 8px;
  text-align: center;
  background: #fff;
}

.energy_feature_icon {
  width: 41px;
  margin-top: 4px;
}

.energy_feature_item_title {
  margin-top: 4px;
  font-size: calc(20 / 16 * 1em);
  line-height: 1.75;
}

.energy_feature_text {
  padding: 16px 24px;
  line-height: 1.75;
  background-color: rgba(255, 255, 255, 0.3);
}

.energy_results {
  padding-bottom: 120px;
}
.energy_results_text {
  padding-top: 3px;
  max-width: 620px;
  line-height: 1.75;
}

.energy_results_items {
  display: flex;
  margin-top: 32px;
  gap: calc(36 / 1272 * 100%);
  justify-content: center;
}

.energy_results_item {
  padding: 24px;
  background-color: #fff;
}

.energy_results_img {
  width: 100%;
  aspect-ratio: 352 / 240;
  height: auto;
}

h3.energy_results_title {
  color: #000;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 14px;
  font-size: calc(20 / 16 * 1em);
}

.energy_results_lists {
  margin-top: 16px;
}

.energy_results_list {
  display: flex;
  justify-content: space-between;
  line-height: 1.75;
}

.energy_results_list dd {
  width: 72px;
}

.energy_bottom {
  height: auto;
  width: 100%;
  aspect-ratio: 1272 / 800;
  padding: calc(64 / 1272 * 100%) 64px 64px;
  margin-bottom: 150px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #e5ded4 0%, #e9e2d8 50%, #e3dbd0 100%);
}

.energy_bottom::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/energy_bottom_img.webp") no-repeat center center /
    cover;
}

.energy_bottom_title {
  font-size: calc(28 / 16 * 1em);
  line-height: 1.75;
  position: relative;
}

.energy_bottom_text {
  margin-top: 16px;
  line-height: 1.75;
  position: relative;
}
@media (max-width: 1024px) {
  .energy_bottom {
    padding-top: 16px;
  }
}

@media (max-width: 768px) {
  .energy_feature {
    margin-top: -16px;
  }

  .energy_feature_items {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .energy_feature_item {
    width: 100%;
  }

  .energy_feature_item {
    max-width: 358px;
  }

  .energy_feature_item:last-of-type .energy_feature_head {
    padding-top: 15px;
  }
  .energy_feature_item:last-of-type .energy_feature_icon {
    width: 49px;
    margin-top: 0px;
  }

  .energy_feature_head {
    padding-top: 20px;
  }

  .energy_feature_icon {
    margin-top: 2px;
  }

  .energy_feature_item_title {
    margin-top: 5px;
    font-size: calc(18 / 16 * 1em);
  }

  .energy_feature_text {
    font-size: calc(14 / 16 * 1em);
  }

  .energy_results {
    padding-bottom: 42px;
  }
  .energy_results_text {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
    margin-top: -3px;
  }

  .energy_results_items {
    flex-direction: column;
    margin-top: 24px;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
  }

  .energy_results_item {
    max-width: 358px;
    padding: 16px;
  }

  h3.energy_results_title {
    margin-top: 8px;
    font-size: calc(18 / 16 * 1em);
    padding-inline: 8px;
  }
  .energy_results_lists {
    margin-top: 16px;
    font-size: calc(14 / 16 * 1em);
    padding-inline: 8px 4px;
  }

  .energy_results_list dd {
    width: 67px;
  }

  .energy_bottom {
    aspect-ratio: auto;
    padding-inline: 0;
    padding-top: calc(225 / 358 * 100%);
    padding-bottom: 0;
    margin-bottom: 90px;
    background: transparent;
  }

  .energy_bottom::before {
    width: 100%;
    aspect-ratio: 358 / 225;
    height: auto;
    background: url("./images/energy_bottom_sp.webp") no-repeat center center /
      cover;
  }

  .energy_bottom_title {
    font-size: calc(20 / 16 * 1em);
    margin-top: 41px;
  }

  .energy_bottom_text {
    font-size: calc(14 / 16 * 1em);
    margin-top: 8px;
    line-height: calc(24 / 14);
  }
}

/**********************************************************
エネルギー事業ページ-END
***********************************************************/
/**********************************************************
お問い合わせ-START
***********************************************************/
.section05 {
  padding-top: 35px;
  padding-bottom: 0;
}
.section05 h2 {
  font-size: calc(28 / 16 * 1em);
  margin-bottom: 12px;
}

.section05 p {
  margin-bottom: 62px;
}

.contact_list {
  margin-bottom: 0;
  width: calc(560 / 1272 * 100%);
  padding: 48px;
  position: relative;
}

.contact_list_border {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 5px;
  background-color: #192140;
  transition: left 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .contact_list:hover .contact_list_border {
    left: calc(100% - 120px);
  }
}

.contact_list_num {
  position: absolute;
  top: 0;
  right: 0;
  translate: 50%;
  rotate: 90deg;
  font-size: calc(52 / 16 * 1em);
  line-height: 1;
  transition: top 0.3s;
  font-weight: 300;
}

@media (hover: hover) and (pointer: fine) {
  .contact_list:hover .contact_list_num {
    top: 24px;
  }
}

.contact_list h3 {
  font-size: calc(24 / 16 * 1em);
  line-height: 1.75;
  margin-bottom: 48px;
}

.contact_list:not(:nth-child(2n)) {
  margin-bottom: 80px;
}
.contact_list:nth-child(2n) {
  margin-top: 80px;
  margin-right: 38px;
}

.contact_list:last-child {
  margin-bottom: 0;
}

p.button01 {
  margin-bottom: 0;
}

.button01 a {
  background: #fff;
  border-radius: 30px;
  line-height: 1.75;
  padding-top: 12px;
  padding-left: 24px;
  padding-bottom: 12px;
  text-align: left;
  font-weight: 400;
  max-width: 360px;
  margin-inline: auto;
  display: block;
  position: relative;
  color: #192140;
  outline: 1px solid #192140;
  outline-offset: -1px;
  transition: background-color 0.3s, color 0.3s;
}

.button01 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  translate: 0 -50%;
  width: 7px;
  height: 8px;
  background: url("./images/arrow_brown.svg") no-repeat center center / contain;
}

@media (hover: hover) and (pointer: fine) {
  .button01 a:hover {
    background-color: #192140;
    color: #fff;
    opacity: 1;
  }
  .button01 a:hover:after {
    background-image: url("./images/arrow.svg");
  }
}

@media (max-width: 1130px) {
  .contact_list {
    padding: 24px;
  }
  .button01 a {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 16);
    padding-top: 9px;
    padding-inline: 0;
    padding-bottom: 8px;
    text-align: center;
    font-weight: 400;
    max-width: 300px;
    min-width: auto;
    margin-inline: auto;
    display: block;
    position: relative;
  }
  .button01 a:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .section05 {
    padding-bottom: 0;
    padding-top: 0;
  }
  .section05 h2 {
    font-size: calc(20 / 16 * 1em);
    margin-bottom: 0px;
  }

  .section05 p {
    font-size: calc(14 / 16 * 1em);
    margin-bottom: 27px;
  }

  .mb40 {
  }
  .contact_list {
    margin-bottom: 32px;
    width: calc(100% - 26px);
    padding: 24px;
    min-height: 217px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .contact_list_border {
    position: absolute;
    width: 70px;
    height: 3px;
  }

  .contact_list_num {
    top: 28px;
    font-size: calc(32 / 16 * 1em);
    font-weight: 300;
  }

  @media (hover: hover) and (pointer: fine) {
    .contact_list:hover .contact_list_border {
      left: calc(100% - 70px);
    }
    .contact_list:hover .contact_list_num {
      top: 48px;
    }
  }

  .contact_list h3 {
    font-size: calc(20 / 16 * 1em);
    margin-bottom: 24px;
  }

  .contact_list:not(:nth-child(2n)) {
    margin-bottom: 32px;
  }
  .contact_list:nth-child(2n) {
    margin-top: 0;
    margin-right: 0;
  }

  .contact_list:last-child {
    margin-bottom: 0;
  }

  p.button01 {
    padding: 0;
    font-size: 1em;
    margin-bottom: 0;
    width: 100%;
  }
  .button01 a {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 16);
    padding-top: 9px;
    padding-inline: 0;
    padding-bottom: 8px;
    text-align: center;
    font-weight: 400;
    max-width: 360px;
    margin-inline: auto;
    display: block;
    position: relative;
  }
}

/**********************************************************
お問い合わせ-END
***********************************************************/

/**********************************************************
お問い合わせフォーム-START
***********************************************************/

.section05 p.bold {
  font-weight: 500;
  color: #d11111;
  font-size: calc(18 / 16 * 1em);
  line-height: calc(32 / 18);
}

.section05 .box1020 {
  max-width: 864px;
  margin-top: 4px;
}

.section05 p.bold a {
  color: #d11111;
}
.section05 .center01 {
  text-align: left;
  margin-bottom: 26px;
}

.section05 .bold {
  font-weight: 400;
  margin-bottom: 15px;
  margin-top: 65px;
}

.section05 .big02 {
  font-weight: 400;
  color: #192140;
  font-size: calc(28 / 16 * 1em);
  line-height: 1.75;
}

.contact dl {
  padding-top: 22px;
  padding-bottom: 0px;
}

.contact dl dt {
  margin-bottom: 14px;
}
.contact dl dt label {
  font-weight: 400;
  line-height: 1.75;
}

.contact dl dt .must {
  color: #f0c4c4;
  font-weight: 400;
  background-color: #d11111;
  padding: 5px 8px 6px;
  margin-left: 17px;
  font-size: calc(12 / 16 * 1em);
  line-height: 1;
  translate: 0 -3px;
}

.contact dl dd input {
  background-color: #fff;
  padding-block: 15px;
}

.contact dl dd textarea {
  height: 320px;
  background-color: #fff;
}

.contact input[type="submit"].button01 {
  background-color: #192140;
  background-image: url("./images/arrow.svg");
  background-position: right 24px center;
  background-repeat: no-repeat;
  background-size: 7px 8px;
  border-radius: 30px;
  min-width: 232px;
  padding: 12px 24px;
  height: 52px;
  text-align: left;
  font-size: 1em;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 1.75;
  outline: 1px solid #192140;
  outline-offset: -1px;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  .contact input[type="submit"].button01:hover {
    background-color: #fff;
    color: #192140;
    background-image: url("./images/arrow_brown.svg");
    opacity: 1;
  }
}

.contact_back input[type="submit"] {
  display: block;
  width: fit-content;
  margin-inline: auto;
  text-decoration: none;
  margin-top: -10px;
  background-color: transparent;
  color: #192140;
  font-size: 1em;
  font-weight: 400;
}

@media (max-width: 768px) {
  .section05 .big02 {
    font-size: calc(20 / 16 * 1em);
    line-height: 1.75;
    margin-top: -3px;
  }
  .section05 p.bold {
    margin-top: 32px;
    font-size: 1em;
    line-height: 1.75;
  }

  .section05 .center01.mb20 {
    text-align: left;
    margin-bottom: 31px;
  }

  .contact {
    margin-top: -22px;
  }

  .contact dl {
    padding-top: 18px;
    padding-bottom: 0px;
  }

  .contact dl:last-of-type {
    margin-bottom: 38px;
  }

  .contact dl dd input {
    background-color: #fff;
    padding-block: 10px;
  }
  .contact dl dt label {
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
  }

  .contact dl dt .must {
    color: #f0c4c4;
    font-weight: 400;
    background-color: #d11111;
    padding: 6px 10px 7px;
    margin-left: 16px;
  }

  .contact dl dd textarea {
    height: 240px;
    background-color: #fff;
  }

  .contact input[type="submit"].button01 {
    background-position: right 24px center;
    min-width: 192px;
    margin-inline: auto;
    width: 192px;
    padding: 8px 24px;
    height: 40px;
    font-size: calc(14 / 16 * 1em);
    line-height: calc(24 / 14);
    margin-bottom: 40px;
  }

  .contact_back input[type="submit"] {
    font-size: calc(14 / 16 * 1em);
  }
}
/**********************************************************
お問い合わせフォーム-END
***********************************************************/
/**********************************************************
アバウトページ-START
***********************************************************/
.about-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-page-head__content {
  display: flex;
  gap: 32px;
}
.about-page-head .about-page-head__link {
  position: relative;
  color: #192140;
  text-decoration: none;
}
.about-page-head__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 13px;
  border-right: 1px solid #192140;
  border-bottom: 1px solid #192140;
  transform: rotate(45deg);
  margin-left: 10px;
  margin-bottom: 3px;
}
.ceo-box {
  background-color: #fff;
  display: flex;
  gap: 32px;
  padding: 64px 64px 0 64px;
}
.ceo-box__image {
  flex: 1;
  display: flex;
  align-items: flex-end;
}
.ceo-box__image-source {
  vertical-align: bottom;
}
.ceo-box__content {
  padding-bottom: 64px;
  width: 56%;
}
.ceo-box__title {
  font-size: 28px;
  line-height: 1.75;
}
.ceo-box__texts {
  margin-top: 24px;
}
.ceo-box__texts .ceo-box__text:not(:first-child) {
  margin-top: 1.75em;
}
.ceo-box__text {
  line-height: 1.75;
}
.ceo-box__sign {
  margin-top: 24px;
  text-align: right;
}
.about-page-section.section02 {
  margin-top: 35px;
}
.about-content-flex {
  display: flex;
  gap: 20px;
}
.section-header {
  flex: 1;
}
.section-number {
  font-family: var(--rubik);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
}
.section-title {
  font-size: 24px;
  line-height: 1.75;
}
.about-content-flex__content {
  width: 72.88%;
}
.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-top: -8px;
}
.company-table tr {
}
.company-table th {
  background-color: #fff;
  padding: 9px 10px;
  text-align: center;
  border: 1px solid #fff;
  vertical-align: middle;
  width: 25.9%;
  line-height: 1.75;
  color: #2a2f45;
}
.company-table td {
  line-height: 1.75;
  padding: 15px 24px;
  border: 1px solid #fff;
  width: 74.1%;
  background-color: #ffffff4d;
}
.company-table td ul li {
  position: relative;
  margin-left: 1em;
}
.company-table td ul li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #252525;
  left: -10px;
  top: 14px;
}
.company-table .contact-info {
  display: flex;
  gap: 32px;
}
.company-table .contact-label {
  flex: 0 0 210px;
}
.company-table .contact-value {
  flex: 1;
}
.about-page-section.section03 {
  padding-top: 16px;
  padding-bottom: 78px;
}
.access-info {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.access-text {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 24px;
  color: #000;
  max-width: 90%;
}
.access-address {
}
.access-transport {
}
.access-map {
  width: 100%;
  height: 100%;
  position: relative;
  aspect-ratio: 927 / 540;
}
.access-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* History Section */
.about-page-section.section04 {
  padding-bottom: 0;
}
.history-timeline {
  position: relative;
  margin-left: 30px;
}
.history-year {
  position: relative;
  font-family: var(--rubik);
  font-size: 32px;
  font-weight: 300;
  color: #192140;
  margin-bottom: 8px;
  line-height: 1.5;
}
.history-year::before {
  position: absolute;
  content: "";
  width: calc(100% - 108px);
  right: 0;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #729fc4;
}
.history-items {
  margin-bottom: 48px;
}
.history-items:last-child {
  margin-bottom: 0;
}
.history-item {
  display: flex;
  gap: 38px;
  margin-bottom: 16px;
}
.history-item:last-child {
  margin-bottom: 0;
}
.history-date {
  flex: 0 0 70px;
  font-size: 18px;
  color: #192140;
  font-weight: 300;
  font-family: var(--rubik);
  line-height: 1.5;
  margin-top: 2px;
}
.history-content {
  flex: 1;
  line-height: 1.75;
}
@media (max-width: 768px) {
  .about-page-head {
  }
  .about-page-head__content {
    display: none;
  }
  .about-page-head .about-page-head__link {
  }
  .about-page-head__link::after {
  }
  .ceo-box {
    padding: 16px 24px 24px;
    gap: 16px;
    flex-direction: column;
  }
  .ceo-box__image {
    justify-content: center;
  }
  .ceo-box__image-source {
  }
  .ceo-box__content {
    padding-bottom: 0;
    width: 100%;
  }
  .ceo-box__title {
    font-size: 20px;
  }
  .ceo-box__texts {
    margin-top: 16px;
  }
  .ceo-box__texts .ceo-box__text:not(:first-child) {
  }
  .ceo-box__text {
    font-size: 14px;
  }
  .ceo-box__sign {
    margin-top: 16px;
    font-size: 14px;
  }
  .about-page-section.section02 {
    margin-top: -15px;
    padding-bottom: 36px;
  }
  .about-content-flex {
    flex-direction: column;
    gap: 16px;
  }
  .section-header {
  }
  .section-number {
  }
  .section-title {
    font-size: 18px;
  }
  .about-content-flex__content {
    width: 100%;
  }
  .company-table {
  }
  .company-table tbody {
    display: grid;
    gap: 8px;
  }
  .company-table th,
  .company-table td,
  .company-table tr {
    display: block;
  }
  .company-table tr {
  }
  .company-table th {
    padding: 7px 16px;
    width: 100%;
    font-size: 14px;
    text-align: left;
  }
  .company-table td {
    padding: 7px 16px;
    width: 100%;
    font-size: 14px;
  }
  .company-table td ul li {
    margin-left: 1.4em;
  }
  .company-table td ul li::before {
    top: 12px;
  }
  .company-table .contact-info {
    flex-direction: column;
    gap: 0;
    margin-bottom: 1.7em;
  }
  .company-table .contact-info:last-child {
    margin-bottom: 0;
  }
  .company-table .contact-label {
    width: 100%;
    flex: auto;
  }
  .company-table .contact-value {
  }
  .about-page-section.section03 {
    padding-bottom: 25px;
  }
  .access-info {
    gap: 16px;
  }
  .access-text {
    margin-top: 16px;
  }
  .access-address {
  }
  .access-transport {
  }
  .access-map {
    aspect-ratio: 358 / 584;
  }
  .access-map iframe {
  }
  /* History Section */
  .about-page-section.section04 {
  }
  .history-timeline {
    margin-left: 0;
  }
  .history-year {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .history-year::before {
    width: calc(100% - 56px);
  }
  .history-items {
    margin-bottom: 16px;
  }
  .history-items:last-child {
  }
  .history-item {
    flex-direction: column;
    gap: 8px;
  }
  .history-item:last-child {
  }
  .history-date {
    flex: auto;
    font-size: 16px;
    margin-top: 0;
  }
  .history-content {
    font-size: 14px;
  }
}

.footer_bottom_links_privacy {
  display: flex;
  gap: 20px;
}

.scale {
  margin-left: 0;
}

@media (max-width: 767px) {
	.footer_bottom_links_privacy {
    flex-direction: column;
    gap: 0px;
  }

  .scale {
    margin-top: 0;
    order:1;
  }

  .scale02 {
    order: 2;
  }

  .footer_bottom_links_privacy {
    margin-top: 20px;
  }

  .footer_privacy {
    margin-top: 0;
  }


}


@media (max-width: 767px) {
  .page-id-1906 .title_small {
    font-size: 32px !important;
  }
	
  .policy-list li ,.fz14{
    font-size: 14px;
  }

  .policy-list  {
    margin-bottom: 20px;
  }

  h2 {
    margin-bottom: 8px;
  }
}

.mwform-checkbox-field-text 
{
  color: #353535;
  font-size:16px;

  line-height: 28px; /* 175% */
}

.mwform-checkbox-field-text a {
  color: #192140;
  text-decoration: none;
  position: relative;
}

.mwform-checkbox-field-text a:after {
  position: absolute;
  content: "";
  background: url(./images/Vector.webp) no-repeat center center / cover;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: -17px;
  
}


.mwform-checkbox-field label {
  display: flex;
  align-items: center;
  column-gap: 16px;
}

input[type="checkbox"] {
  appearance: none;
  position: relative;
  width: 17px;
  height: 17px;
  background-color: #ffffff;
  cursor: pointer;
}

input[type="checkbox"]:checked {
  background-color: #192140;
}


input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 4.5px;
  left: 3px;
  width: 11px;
  height: 4px;
  border-bottom: 1.6px solid #ffffff;
  border-left: 1.6px solid #ffffff;
  transform: rotate(-45deg);
}


.checbox_list {
  align-items: center;
  position: relative;
  display: inline-block;
}

.checbox_list .must 
{
  display: flex;
  width: 25px;
  height: 5px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #F0C4C4;
  font-family: "Noto Sans JP Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  background: #D11111;
  position: absolute;
  top: 27px;
  right: -57px;
  }


  @media (max-width: 767px) {
    .mwform-checkbox-field-text {
      font-size: 14px;
      line-height: 1.5;
    }
	
    input[type="checkbox"] {
      width: 12px;
      height: 12px;
    }

    input[type="checkbox"]:checked::after  {
      top: 4px;
      left: 1.5px;
      width: 9px;
      height: 3px;
    }

    .checbox_list .must  {
      gap: 3px;
    }

    .mwform-checkbox-field label {
      column-gap: 16px;
    }

    .checbox_list .must  {
      top: 32px;
      right: -62px;

    }

    .mwform-checkbox-field-text a:after {
      width: 10px;
      height: 10px;
      right: -14px;

    }

  }