﻿@charset "UTF-8";
/* area.css */
/* ---------- setting ---------- ---------- */
body {
  font-family: "Oswald", "IBM Plex Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #000;
}

main {
  display: block;
}
@media screen and (min-width: 810px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 809px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

html {
  scroll-behavior: auto !important;
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

body.is-hide-entry ._btns {
  display: none;
}
body.is-hide-entry .block-common-entry {
  display: none;
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after,
.area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-btn-close:after,
  .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-btn-close:after,
  .area-modal ._modal-btn-close:before {
    background: #000;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 810px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 809px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html,
body {
  width: 100%;
  height: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
blockquote,
pre,
a,
div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 810px) and (min-width: 1281px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media print, screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 810px) {
  .area-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 810px) and (max-width: 1280px) {
  .area-inner {
    margin: 0 40px;
  }
}
@media print, screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 810px) {
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 810px) and (max-width: 1280px) {
  .block-inner {
    margin: 0 40px;
  }
}
@media print, screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 1601px) {
  .block-inner1600 {
    margin: 0 auto;
    max-width: 1600px;
  }
}
@media screen and (min-width: 810px) and (min-width: 1281px) and (min-width: 1600px) and (max-width: 1280px) {
  .block-inner1600 {
    margin: 0;
  }
}
@media print, screen and (min-width: 810px) and (min-width: 1281px) {
  .block-common-recruit {
    padding: 100px 0 160px 0;
    background-image: url(../images/bg.png);
    position: relative;
  }
  .block-common-recruit ._row-header {
    color: #fff;
  }
  .block-common-recruit ._row-header ._en {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-recruit ._row-header h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }
  .block-common-recruit ._row-body {
    margin-top: 60px;
  }
  .block-common-recruit ._items {
    display: flex;
    gap: 30px;
  }
  .block-common-recruit ._items li {
    flex: 1;
  }
  .mod-btn-A {
    display: block;
    padding: 50px 50px 50px 20px;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.2s;
    background-color: #fff;
  }
  .mod-btn-A:hover {
    opacity: 0.8;
  }
  .mod-btn-A:hover span:before {
    transform: translate(5px, -50%) rotate(-45deg);
  }
  .mod-btn-A span {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
  }
  .mod-btn-A span:before {
    position: absolute;
    top: 50%;
    right: -40px;
    display: block;
    content: "";
    height: 16px;
    width: 16px;
    border: 1.5px solid #000;
    border-left-width: 0;
    border-top-width: 0;
    transition-duration: 0.2s;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .block-common-entry .mod-btn-entry {
    padding: 50px 0 60px 0;
    background-color: #f15a24;
    position: relative;
    color: #fff;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .block-common-entry .mod-btn-entry:hover {
    background-color: #002e67;
  }
  .block-common-entry .mod-btn-entry ._en {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-entry .mod-btn-entry h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }
  .area-footer {
    padding: 50px 0;
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    background-color: #fff;
  }
  .area-footer ._link {
    display: flex;
    justify-content: center;
  }
  .area-footer ._link li + li {
    border-left: 1px solid #000;
  }
  .area-footer ._link a {
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-footer ._link a:hover {
    color: #00a0e6;
  }
  .area-footer small {
    padding: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 810px) {
  .area-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 810px) and (max-width: 1280px) {
  .area-inner {
    margin: 0 3.0769230769vw;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 810px) {
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 810px) and (max-width: 1280px) {
  .block-inner {
    margin: 0 3.0769230769vw;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 1601px) {
  .block-inner1600 {
    margin: 0 auto;
    max-width: 1600px;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) and (min-width: 1600px) and (max-width: 1280px) {
  .block-inner1600 {
    margin: 0;
  }
}
@media screen and (min-width: 810px) and (max-width: 1280px) {
  .block-common-recruit {
    padding: 7.6923076923vw 0 12.3076923077vw 0;
    background-image: url(../images/bg.png);
    position: relative;
  }
  .block-common-recruit ._row-header {
    color: #fff;
  }
  .block-common-recruit ._row-header ._en {
    text-align: center;
    font-size: 6.1538461538vw;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-recruit ._row-header h2 {
    margin-top: 0.7692307692vw;
    text-align: center;
    font-size: 1.2307692308vw;
    line-height: 1.8;
  }
  .block-common-recruit ._row-body {
    margin-top: 4.6153846154vw;
  }
  .block-common-recruit ._items {
    display: flex;
    gap: 2.3076923077vw;
  }
  .block-common-recruit ._items li {
    flex: 1;
  }
  .mod-btn-A {
    display: block;
    padding: 3.8461538462vw 3.8461538462vw 3.8461538462vw 1.5384615385vw;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.2s;
    background-color: #fff;
  }
  .mod-btn-A:hover {
    opacity: 0.8;
  }
  .mod-btn-A:hover span:before {
    transform: translate(0.3846153846vw, -50%) rotate(-45deg);
  }
  .mod-btn-A span {
    display: inline-block;
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
  }
  .mod-btn-A span:before {
    position: absolute;
    top: 50%;
    right: -3.0769230769vw;
    display: block;
    content: "";
    height: 1.2307692308vw;
    width: 1.2307692308vw;
    border: 0.1153846154vw solid #000;
    border-left-width: 0;
    border-top-width: 0;
    transition-duration: 0.2s;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .block-common-entry .mod-btn-entry {
    padding: 3.8461538462vw 0 4.6153846154vw 0;
    background-color: #f15a24;
    position: relative;
    color: #fff;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .block-common-entry .mod-btn-entry:hover {
    background-color: #002e67;
  }
  .block-common-entry .mod-btn-entry ._en {
    text-align: center;
    font-size: 6.1538461538vw;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-entry .mod-btn-entry h2 {
    margin-top: 0.7692307692vw;
    text-align: center;
    font-size: 1.2307692308vw;
    line-height: 1.8;
  }
  .area-footer {
    padding: 3.8461538462vw 0;
    text-align: center;
    display: flex;
    gap: 1.5384615385vw;
    flex-direction: column;
    background-color: #fff;
  }
  .area-footer ._link {
    display: flex;
    justify-content: center;
  }
  .area-footer ._link li + li {
    border-left: 1px solid #000;
  }
  .area-footer ._link a {
    display: inline-block;
    padding: 0 1.5384615385vw;
    font-size: 1.2307692308vw;
    line-height: 1;
    color: #000;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-footer ._link a:hover {
    color: #00a0e6;
  }
  .area-footer small {
    padding: 0.7692307692vw;
    font-size: 0.9230769231vw;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 809px) {
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
  .block-common-recruit {
    padding: 19.2307692308vw 0 20.5128205128vw 0;
    background-image: url(../images/bg.png);
    position: relative;
  }
  .block-common-recruit ._row-header {
    color: #fff;
  }
  .block-common-recruit ._row-header ._en {
    text-align: center;
    font-size: 11.5384615385vw;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-recruit ._row-header h2 {
    text-align: center;
    font-size: 3.3333333333vw;
    line-height: 1.8;
  }
  .block-common-recruit ._row-body {
    margin-top: 5.1282051282vw;
  }
  .block-common-recruit ._items {
    display: flex;
    width: 70vw;
    margin: 0 auto;
    gap: 2.5641025641vw;
    flex-direction: column;
  }
  .mod-btn-A {
    display: block;
    padding: 7.6923076923vw 3.8461538462vw 7.6923076923vw 2.5641025641vw;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.2s;
    background-color: #fff;
  }
  .mod-btn-A span {
    display: inline-block;
    font-size: 4.6153846154vw;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
  }
  .mod-btn-A span:before {
    position: absolute;
    top: 50%;
    right: -5.1282051282vw;
    display: block;
    content: "";
    height: 2.0512820513vw;
    width: 2.0512820513vw;
    border: 0.2564102564vw solid #000;
    border-left-width: 0;
    border-top-width: 0;
    transition-duration: 0.2s;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .block-common-entry .mod-btn-entry {
    padding: 6.4102564103vw 0 5.1282051282vw 0;
    background-color: #f15a24;
    position: relative;
    color: #fff;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .block-common-entry .mod-btn-entry ._en {
    text-align: center;
    font-size: 11.5384615385vw;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-entry .mod-btn-entry h2 {
    text-align: center;
    font-size: 3.3333333333vw;
    line-height: 1.8;
  }
  .area-footer {
    background-color: #fff;
    padding: 10.2564102564vw 0;
    text-align: center;
    display: flex;
    gap: 2.5641025641vw;
    flex-direction: column;
  }
  .area-footer ._link {
    display: flex;
    gap: 2.5641025641vw;
    flex-direction: column;
  }
  .area-footer ._link a {
    display: inline-block;
    padding: 0 2.5641025641vw;
    font-size: 3.3333333333vw;
    line-height: 1;
    color: #000;
    letter-spacing: 0.1em;
  }
  .area-footer small {
    padding: 3.8461538462vw;
    font-size: 2.8205128205vw;
    letter-spacing: 0.05em;
  }
}
@media print, screen and (min-width: 1024px) and (min-width: 1281px) {
  .area-header {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 84px;
    z-index: 100;
    border-radius: 35px;
    transition-duration: 0.2s;
  }
  .area-header img {
    width: 100%;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.js-gmenu-active.js-hide-menu .area-header {
    background: none;
  }
  body.js-gmenu-active .area-header {
    box-shadow: none;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 25px;
    left: 13px;
    width: 410px;
    height: 38px;
  }
  .area-header ._logo span {
    display: none;
  }
  .area-header ._logo a {
    position: absolute;
    inset: 0 0 0 0;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
    background: url(../images/header/logo.svg) left top no-repeat;
    background-size: contain;
  }
  body.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia .area-header ._logo a {
    background-image: url(../images/header/logo_wh2.svg);
  }
  body.page-door-pedia.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off .area-header ._logo a {
    background-image: url(../images/header/logo.svg);
  }
  .area-header ._logo a:hover {
    opacity: 0.8;
  }
  .area-header ._site {
    position: absolute;
    top: 27px;
    left: 445px;
    font-size: 26px;
    font-weight: bold;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
  body.js-gmenu-active .area-header ._site {
    color: #fff;
  }
  .area-header ._btns {
    position: absolute;
    top: 15px;
    right: 95px;
    display: flex;
  }
  .area-header ._gmenu {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .mod-header-gmenu {
    width: 52px;
    height: 52px;
    background-color: #f15a24;
    border-radius: 20px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-header-gmenu:hover {
    background-color: #002e67;
  }
  body.js-gmenu-active .mod-header-gmenu:hover {
    background-color: #fff;
  }
  body.js-gmenu-active .mod-header-gmenu:hover span {
    background-color: #002e67;
  }
  .mod-header-gmenu span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 2px;
  }
  .mod-header-gmenu span:nth-child(1) {
    top: 16px;
    left: 17px;
    right: 17px;
  }
  .mod-header-gmenu span:nth-child(2) {
    top: 26px;
    left: 10px;
    right: 10px;
  }
  .mod-header-gmenu span:nth-child(3) {
    top: 36px;
    left: 17px;
    right: 17px;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(1) {
    position: absolute;
    top: 26px;
    transform: rotate(45deg);
    left: 12px;
    right: 12px;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(3) {
    position: absolute;
    top: 26px;
    transform: rotate(-45deg);
    left: 12px;
    right: 12px;
  }
  .mod-header-btn-entry {
    width: 178px;
    height: 52px;
    color: #fff;
    background-color: #f15a24;
    font-size: 24px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  body.js-gmenu-active .mod-header-btn-entry:hover {
    background-color: #fff;
    color: #ffd700;
  }
  .mod-header-btn-entry:hover {
    background-color: #ffd700;
  }
  .mod-header-btn-entry a {
    color: #fff;
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    inset: 0 0 0 0;
    background-color: #1e90ff;
    color: #fff;
    padding: 70px 0 40px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu ._inner {
    width: 1200px;
    padding-left: 20px;
  }
  .mod-sitelinks-set {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .mod-sitelinks-set {
    opacity: 1;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    justify-content: space-between;
  }
  .mod-sitelinks-set ._cols ._col {
    flex: 1;
  }
  .mod-sitelinks-title {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 5px;
    background-color: #fff;
    color: #002e67;
  }
  .mod-sitelinks-title a {
    color: #002e67;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-title a:hover {
    opacity: 0.8;
  }
  .mod-sitelinks-list {
    margin: 16px 0 50px 0;
    display: flex;
    gap: 18px;
    flex-direction: column;
  }
  .mod-sitelinks-list a {
    display: block;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.375;
    color: #fff;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:hover {
    opacity: 0.8;
    color: #fff;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1280px) {
  .area-header {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 84px;
    z-index: 100;
    border-radius: 35px;
    transition-duration: 0.2s;
  }
  .area-header img {
    width: 100%;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.js-gmenu-active.js-hide-menu .area-header {
    background: none;
  }
  body.js-gmenu-active .area-header {
    box-shadow: none;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    /* width: 410px; */ /* 変更前 */
    width: 240px; /* 変更後 */
    height: 25px; /* 高さを幅に合わせて調整 */
    top: 31px; /* 垂直位置を微調整 */
  }
  .area-header ._site {
    top: 33px; /* ロゴに合わせて位置を微調整 */
    left: 270px; /* ロゴに合わせて位置を微調整 */
    font-size: 20px; /* 文字サイズを微調整 */
  }
  .area-header ._logo span {
    display: none;
  }
  .area-header ._logo a {
    position: absolute;
    inset: 0 0 0 0;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
    background: url(../images/header/logo.svg) left top no-repeat;
    background-size: contain;
  }
  body.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia .area-header ._logo a {
    background-image: url(../images/header/logo_wh2.svg);
  }
  body.page-door-pedia.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off .area-header ._logo a {
    background-image: url(../images/header/logo.svg);
  }
  .area-header ._logo a:hover {
    opacity: 0.8;
  }
  .area-header ._site {
    position: absolute;
    top: 27px;
    left: 445px;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  body.js-gmenu-active .area-header ._site {
    color: #fff;
  }
  .area-header ._btns {
    position: absolute;
    top: 15px;
    right: 95px;
    display: flex;
  }
  .area-header ._gmenu {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .mod-header-gmenu {
    width: 52px;
    height: 52px;
    background-color: #f15a24;
    border-radius: 20px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-header-gmenu:hover {
    background-color: #002e67;
  }
  body.js-gmenu-active .mod-header-gmenu:hover {
    background-color: #fff;
  }
  body.js-gmenu-active .mod-header-gmenu:hover span {
    background-color: #002e67;
  }
  .mod-header-gmenu span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 2px;
  }
  .mod-header-gmenu span:nth-child(1) {
    top: 16px;
    left: 17px;
    right: 17px;
  }
  .mod-header-gmenu span:nth-child(2) {
    top: 26px;
    left: 10px;
    right: 10px;
  }
  .mod-header-gmenu span:nth-child(3) {
    top: 36px;
    left: 17px;
    right: 17px;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(1) {
    position: absolute;
    top: 26px;
    transform: rotate(45deg);
    left: 12px;
    right: 12px;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(3) {
    position: absolute;
    top: 26px;
    transform: rotate(-45deg);
    left: 12px;
    right: 12px;
  }
  .mod-header-btn-entry {
    width: 178px;
    height: 52px;
    color: #fff;
    background-color: #f15a24;
    font-size: 24px;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.04em;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  body.js-gmenu-active .mod-header-btn-entry:hover {
    background-color: #fff;
    color: #ffd700;
  }
  .mod-header-btn-entry:hover {
    background-color: #ffd700;
  }
  .mod-header-btn-entry a {
    color: #fff;
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    inset: 0 0 0 0;
    background-color: #1e90ff;
    color: #fff;
    padding: 70px 0 40px 0;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu ._inner {
    width: 1200px;
    padding-left: 20px;
  }
  .mod-sitelinks-set {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .mod-sitelinks-set {
    opacity: 1;
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    justify-content: space-between;
  }
  .mod-sitelinks-set ._cols ._col {
    flex: 1;
  }
  .mod-sitelinks-title {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 5px;
    background-color: #fff;
    color: #002e67;
  }
  .mod-sitelinks-title a {
    color: #002e67;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-title a:hover {
    opacity: 0.8;
  }
  .mod-sitelinks-list {
    margin: 16px 0 50px 0;
    display: flex;
    gap: 18px;
    flex-direction: column;
  }
  .mod-sitelinks-list a {
    display: block;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 1.375;
    color: #fff;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:hover {
    opacity: 0.8;
    color: #fff;
  }
}
@media screen and (max-width: 1023px) {
  .area-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 7.0512820513vw;
    z-index: 100;
    transition-duration: 0.2s;
  }
  .area-header img {
    width: 100%;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  body.js-gmenu-active.js-hide-menu .area-header {
    background: none;
  }
  body.js-gmenu-active .area-header {
    box-shadow: none;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 3.8461538462vw;
    left: 2.5641025641vw;
    width: 53.8461538462vw;
    height: 4.8717948718vw;
  }
  .area-header ._logo span {
    display: none;
  }
  .area-header ._logo a {
    position: absolute;
    inset: 0 0 0 0;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
    background: url(../images/header/logo.svg) left top no-repeat;
    background-size: contain;
  }
  body.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia .area-header ._logo a {
    background-image: url(../images/header/logo_wh2.svg);
  }
  body.page-door-pedia.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off.js-gmenu-active .area-header ._logo a {
    background-image: url(../images/header/logo_wh.svg);
  }
  body.page-door-pedia.js-pedia-logo-off .area-header ._logo a {
    background-image: url(../images/header/logo.svg);
  }
  .area-header ._site {
    position: absolute;
    top: 8.9743589744vw;
    left: 16.6666666667vw;
    font-size: 3.0769230769vw;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  body.js-gmenu-active .area-header ._site {
    color: #fff;
  }
  .area-header ._btns {
    position: absolute;
    top: 3.8461538462vw;
    right: 14.1025641026vw;
    display: flex;
  }
  .area-header ._gmenu {
    position: absolute;
    top: 3.8461538462vw;
    right: 3.8461538462vw;
  }
  .mod-header-gmenu {
    width: 7.6923076923vw;
    height: 7.6923076923vw;
    background-color: #f15a24;
    border-radius: 2.5641025641vw;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-header-gmenu span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 0.2564102564vw;
  }
  .mod-header-gmenu span:nth-child(1) {
    top: 2.4358974359vw;
    left: 2.5641025641vw;
    right: 2.5641025641vw;
  }
  .mod-header-gmenu span:nth-child(2) {
    top: 3.7179487179vw;
    left: 1.5384615385vw;
    right: 1.5384615385vw;
  }
  .mod-header-gmenu span:nth-child(3) {
    top: 5.1282051282vw;
    left: 2.5641025641vw;
    right: 2.5641025641vw;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(1) {
    position: absolute;
    top: 3.7179487179vw;
    transform: rotate(45deg);
    left: 1.7948717949vw;
    right: 1.7948717949vw;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-header-gmenu span:nth-child(3) {
    position: absolute;
    top: 3.7179487179vw;
    transform: rotate(-45deg);
    left: 1.7948717949vw;
    right: 1.7948717949vw;
  }
  .mod-header-btn-entry {
    width: 22.8205128205vw;
    height: 7.6923076923vw;
    color: #fff;
    background-color: #f15a24;
    font-size: 3.5897435897vw;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    border-radius: 2.5641025641vw;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-header-btn-entry a {
    color: #fff;
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -25.641025641vw);
    inset: 0 0 0 0;
    background-color: #1e90ff;
    color: #fff;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu ._inner {
    position: absolute;
    top: 15.3846153846vw;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 7.6923076923vw 7.6923076923vw 7.6923076923vw;
    overflow-y: scroll;
  }
  .mod-head-gmanu-btn {
    position: relative;
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    background: #888;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmanu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 0.2564102564vw;
    left: 3.8461538462vw;
    right: 3.8461538462vw;
  }
  .mod-head-gmanu-btn span:nth-child(1) {
    top: 5.1282051282vw;
  }
  .mod-head-gmanu-btn span:nth-child(2) {
    top: 7.6923076923vw;
  }
  .mod-head-gmanu-btn span:nth-child(3) {
    top: 10.2564102564vw;
  }
  body.js-gmenu-active .mod-head-gmanu-btn span:nth-child(1) {
    position: absolute;
    top: 7.6923076923vw;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-head-gmanu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-head-gmanu-btn span:nth-child(3) {
    position: absolute;
    top: 7.6923076923vw;
    transform: rotate(-45deg);
  }
  .mod-head-gmanu-btn2 {
    position: relative;
    width: 15.3846153846vw;
    height: 15.3846153846vw;
    background: #888;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmanu-btn2:after {
    content: "Menu";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2.0512820513vw;
    text-align: center;
    font-size: 2.8205128205vw;
    line-height: 1;
    font-weight: bold;
    color: #fff;
  }
  .mod-head-gmanu-btn2 span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 0.2564102564vw;
    left: 3.8461538462vw;
    right: 3.8461538462vw;
  }
  .mod-head-gmanu-btn2 span:nth-child(1) {
    top: 4.1025641026vw;
  }
  .mod-head-gmanu-btn2 span:nth-child(2) {
    top: 5.8974358974vw;
  }
  .mod-head-gmanu-btn2 span:nth-child(3) {
    top: 7.6923076923vw;
  }
  body.js-gmenu-active .mod-head-gmanu-btn2 span:nth-child(1) {
    position: absolute;
    top: 5.8974358974vw;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-head-gmanu-btn2 span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-head-gmanu-btn2 span:nth-child(3) {
    position: absolute;
    top: 5.8974358974vw;
    transform: rotate(-45deg);
  }
  .mod-sitelinks-set {
    opacity: 0;
    transition-duration: 0.4s;
    transition-delay: 0.4s;
  }
  body.js-gmenu-active .mod-sitelinks-set {
    opacity: 1;
  }
  .mod-sitelinks-set ._cols {
    margin-top: 7.6923076923vw;
    display: flex;
    gap: 7.6923076923vw;
    flex-direction: column;
  }
  .mod-sitelinks-set ._col {
    display: flex;
    gap: 7.6923076923vw;
    flex-direction: column;
  }
  .mod-sitelinks-set ._toggle ._link {
    display: none;
  }
  .mod-sitelinks-title {
    position: relative;
    display: block;
    font-size: 3.5897435897vw;
    letter-spacing: 0.05em;
    font-weight: bold;
    padding: 2.0512820513vw;
    background-color: #fff;
    color: #002e67;
  }
  .mod-sitelinks-title a {
    color: #002e67;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-title .mod-toggle-icon {
    position: absolute;
    top: 2.3076923077vw;
    right: 2.3076923077vw;
  }
  .mod-sitelinks-list {
    margin: 3.0769230769vw 0 0 0;
  }
  .mod-sitelinks-list li + li {
    margin-top: 4.6153846154vw;
  }
  .mod-sitelinks-list a {
    display: block;
    position: relative;
    font-size: 3.5897435897vw;
    letter-spacing: 0.05em;
    line-height: 1.375;
    color: #fff;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:before {
    position: absolute;
    top: 50%;
    right: 3.0769230769vw;
    display: block;
    content: "";
    height: 1.7948717949vw;
    width: 1.7948717949vw;
    border: 0.5128205128vw solid #fff;
    border-left-width: 0;
    border-top-width: 0;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .mod-toggle-icon {
    position: relative;
    width: 3.0769230769vw;
    height: 3.0769230769vw;
    border-radius: 50%;
  }
  .mod-toggle-icon:after,
  .mod-toggle-icon:before {
    content: "";
    position: absolute;
    background: #000;
  }
  .mod-toggle-icon:after {
    top: calc(50% - 0.2564102564vw);
    left: 0;
    width: 3.0769230769vw;
    height: 0.5128205128vw;
  }
  .mod-toggle-icon:before {
    left: calc(50% - 0.2564102564vw);
    top: 0;
    width: 0.5128205128vw;
    height: 3.0769230769vw;
  }
  .is-open .mod-toggle-icon:before {
    display: none;
  }
}

/* ヒーロービデオ用のスタイルを追加 */
.block-index-mv .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
}

@media screen and (max-width: 809px) {
  .block-index-mv {
    height: 100svh;
  }
}
/* ... (その他のスタイルは変更なし) ... */

/* メディアクエリの重複を修正 */
@media screen and (min-width: 1281px) {
  /* PC (大) 用のスタイル */
  .area-inner,
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
  .block-inner1600 {
    margin: 0 auto;
    max-width: 1600px;
  }
  .block-common-mv ._texts {
    left: max(0px, calc(50% - 600px));
  }
  /* ... (他のPC大スタイル) ... */
}

@media screen and (min-width: 810px) and (max-width: 1280px) {
  /* PC (中) / Tablet 用のスタイル */
  .area-inner,
  .block-inner {
    margin: 0 3.0769230769vw;
  }
  .block-inner1600 {
    margin: 0;
  }
  .block-common-mv ._texts {
    left: 40px;
  }
  /* ... (他の中サイズスタイル) ... */
}

@media screen and (max-width: 809px) {
  /* SP 用のスタイル */
  /* ... (SPスタイル) ... */
}

/* 4. メニュー変更のための修正 */
@media screen and (max-width: 809px) {
  .u-pc-tab {
    display: none !important;
  }
}
@media screen and (min-width: 810px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (min-width: 810px) {
  .area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
  }
  .area-header ._logo,
  .area-header ._site,
  .area-header ._btns {
    position: static;
    transform: none;
  }
  .area-header ._logo {
    /* width: 410px; */ /* 変更前 */
    width: 280px; /* 変更後 */
    height: 30px; /* 高さを幅に合わせて調整 */
    top: 29px; /* 垂直位置を微調整 */
  }
  .area-header ._site {
    top: 31px; /* ロゴに合わせて位置を微調整 */
    left: 310px; /* ロゴに合わせて位置を微調整 */
  }
  .area-header-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
  }
  .area-header-nav a {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .area-header-nav a:hover {
    color: #00a0e6;
  }
  body.js-gmenu-active .area-header-nav a {
    color: #fff; /* SPメニュー表示時にヘッダーが透明になる場合を想定 */
  }
  body.page-door-pedia:not(.js-pedia-logo-off) .area-header-nav a {
    color: #fff;
  }
  .area-modal-menu {
    display: none !important;
  }
}

/* 追加変更 */
/* ---------- setting ---------- ---------- */
body {
  font-family: "Oswald", "IBM Plex Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  color: #000;
}

main {
  display: block;
}
@media screen and (min-width: 810px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 809px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

/* ヒーロービデオ用のスタイル */
.block-index-mv .hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: -1;
}
@media screen and (max-width: 809px) {
  .block-index-mv {
    height: 100svh;
  }
}

/* ページトップボタン */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after,
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  width: 12px;
  height: 1px;
  background: #fff;
}
.btn-pagetop:after {
  left: 10px;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  right: 10px;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

body.is-hide-entry ._btns,
body.is-hide-entry .block-common-entry {
  display: none;
}

/* モーダル */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after,
.area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-btn-close:after {
  transform: rotate(-45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}

/* ... (モーダルの中身のスタイルは省略) ... */

/* リセットCSS */
html,
body {
  width: 100%;
  height: 100%;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
blockquote,
pre,
a,
div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}
img {
  border: 0;
  vertical-align: bottom;
}
a {
  text-decoration: none;
}

/* PC(大) 1281px以上 */
@media screen and (min-width: 1281px) {
  .area-wrapper {
    overflow: hidden;
  }
  .area-inner,
  .block-inner {
    margin: 0 auto;
    max-width: 1200px;
  }
  .block-inner1600 {
    margin: 0 auto;
    max-width: 1600px;
  }
  .block-common-recruit {
    padding: 100px 0 160px 0;
    background-image: url(../images/bg.png);
    position: relative;
  }
  .block-common-recruit ._row-header {
    color: #fff;
  }
  .block-common-recruit ._row-header ._en {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-recruit ._row-header h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }
  .block-common-recruit ._row-body {
    margin-top: 60px;
  }
  .block-common-recruit ._items {
    display: flex;
    gap: 30px;
  }
  .block-common-recruit ._items li {
    flex: 1;
  }
  .mod-btn-A {
    display: block;
    padding: 50px 50px 50px 20px;
    text-align: center;
    cursor: pointer;
    transition-duration: 0.2s;
    background-color: #fff;
  }
  .mod-btn-A:hover {
    opacity: 0.8;
  }
  .mod-btn-A:hover span:before {
    transform: translate(5px, -50%) rotate(-45deg);
  }
  .mod-btn-A span {
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #000;
    position: relative;
  }
  .mod-btn-A span:before {
    position: absolute;
    top: 50%;
    right: -40px;
    display: block;
    content: "";
    height: 16px;
    width: 16px;
    border: 1.5px solid #000;
    border-left-width: 0;
    border-top-width: 0;
    transition-duration: 0.2s;
    transform: translate(0, -50%) rotate(-45deg);
  }
  .block-common-entry .mod-btn-entry {
    padding: 50px 0 60px 0;
    background-color: #f15a24;
    position: relative;
    color: #fff;
    display: block;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .block-common-entry .mod-btn-entry:hover {
    background-color: #002e67;
  }
  .block-common-entry .mod-btn-entry ._en {
    text-align: center;
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 0.05em;
  }
  .block-common-entry .mod-btn-entry h2 {
    margin-top: 10px;
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
  }
  .area-footer {
    padding: 50px 0;
    text-align: center;
    display: flex;
    gap: 20px;
    flex-direction: column;
    background-color: #fff;
  }
  .area-footer ._link {
    display: flex;
    justify-content: center;
  }
  .area-footer ._link li + li {
    border-left: 1px solid #000;
  }
  .area-footer ._link a {
    display: inline-block;
    padding: 0 20px;
    font-size: 16px;
    line-height: 1;
    color: #000;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-footer ._link a:hover {
    color: #00a0e6;
  }
  .area-footer small {
    padding: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .area-header {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 84px;
    z-index: 100;
    border-radius: 35px;
    transition-duration: 0.2s;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  .area-header ._logo {
    width: 280px;
    width: 189px;
    height: 30px;
    top: 29px;
  }
  .area-header ._site {
    top: 31px;
    left: 310px;
    font-size: 22px;
    font-size: 14px;
  }
}

/* PC(中)/Tablet (810px - 1280px) */
@media screen and (min-width: 810px) and (max-width: 1280px) {
  /* ... (utility.cssに移動すべきvw単位のスタイルは省略) ... */
  .area-wrapper {
    overflow: hidden;
  }
  .area-inner,
  .block-inner {
    margin: 0 3.0769230769vw;
  }
  .block-inner1600 {
    margin: 0;
  }
  /* ... (その他のPC中サイズスタイルは省略) ... */

  .area-header {
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    height: 84px;
    z-index: 100;
    border-radius: 35px;
    transition-duration: 0.2s;
  }
  body.page-index.js-index-main-start .area-header {
    visibility: visible;
    z-index: 100;
    opacity: 1;
  }
  .area-header ._logo {
    width: 240px;
    height: 25px;
    top: 31px;
  }
  .area-header ._site {
    top: 33px;
    left: 270px;
    font-size: 20px;
  }
}

/* SP (max-width: 809px) */
@media screen and (max-width: 809px) {
  /* ... (utility.cssに移動すべきvw単位のスタイルは省略) ... */
  .area-wrapper {
    overflow: hidden;
  }
  .area-inner {
    position: relative;
  }
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
  /* ... (その他のSPスタイルは省略) ... */
  .area-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 7.0512820513vw;
    z-index: 100;
    transition-duration: 0.2s;
  }
  .area-header ._logo {
    position: absolute;
    top: 3.8461538462vw;
    left: 2.5641025641vw;
    width: 53.8461538462vw;
    height: 4.8717948718vw;
  }
  .area-header ._site {
    position: absolute;
    top: 8.9743589744vw;
    left: 16.6666666667vw;
    left: 8.7vw;
    font-size: 3.0769230769vw;
    font-size: 0.55rem;
    font-size: 1rem;
    font-weight: bold;
    font-weight: 300;
    letter-spacing: 0.02em;
  }
}

/* PC/Tablet共通ヘッダースタイル */
@media screen and (min-width: 810px) {
  .area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .area-header ._logo,
  .area-header ._site,
  .area-header ._btns,
  .area-header ._gmenu {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
  }
  .area-header ._logo a {
    position: static;
    display: block;
    height: 100%;
  }
  .area-header ._site {
    margin-right: auto;
  }
  .area-header-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
  }
  .area-header-nav a {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .area-header-nav a:hover {
    color: #00a0e6;
  }
  .mod-header-gmenu {
    display: none;
  } /* PCではハンバーガーメニューを非表示 */
}

/* SP用メニューの表示/非表示 */
@media screen and (max-width: 809px) {
  .u-pc-tab {
    display: none !important;
  }
}
@media screen and (min-width: 810px) {
  .u-sp {
    display: none !important;
  }
}

/* 共通ロゴスタイル */
.area-header ._logo a {
  background: url(../img/common/header_logo.svg) left top no-repeat;
  background-size: contain;
  display: block;
  width: 100%;
  height: 100%;
}
.area-header ._logo span {
  display: none;
}
body.js-gmenu-active .area-header ._logo a {
  background-image: url(../img/common/header_logo_wh.svg);
}
body.page-door-pedia .area-header ._logo a {
  background-image: url(../images/header/logo_wh2.svg);
}
body.page-door-pedia.js-gmenu-active .area-header ._logo a {
  background-image: url(../images/header/logo_wh.svg);
}
body.page-door-pedia.js-pedia-logo-off .area-header ._logo a {
  background-image: url(../images/header/logo.svg);
}

/* メニュー用 */
/* area.css */

/* ... 既存のスタイル ... */

/* ▼ PC/Tablet共通ヘッダースタイルにサブメニュー用CSSを追加 */
@media screen and (min-width: 810px) {
  .area-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 30px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  .area-header ._logo,
  .area-header ._site,
  .area-header ._btns,
  .area-header ._gmenu {
    position: static;
    transform: none;
    top: auto;
    left: auto;
    right: auto;
  }
  .area-header ._logo a {
    position: static;
    display: block;
    height: 100%;
  }
  .area-header ._site {
    margin-right: auto;
  }

  /* --- メインメニューのスタイル --- */
  .area-header-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 25px;
  }
  .area-header-nav a {
    color: #000;
    font-weight: bold;
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.2s;
  }
  .area-header-nav a:hover {
    color: #00a0e6;
  }

  /* --- ここからサブメニュー用のスタイルを追加 --- */

  /* サブメニューを持つ項目の親(li)のスタイル */
  .area-header-nav .has-submenu {
    position: relative; /* サブメニューの位置の基準点にする */
  }

  /* サブメニュー(ul)の基本スタイル */
  .area-header-nav .submenu {
    position: absolute;
    top: 100%; /* 親メニューの真下に配置 */
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px; /* 親メニューとの隙間 */
    list-style: none;
    display: block; /* Flexboxコンテキストをリセット */
    width: 260px; /* サブメニューの幅 */
    z-index: 101; /* ヘッダーより手前に */

    /* 初期状態は非表示 */
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s, margin-top 0.2s;
  }

  /* サブメニューの各項目(li)のスタイル */
  .area-header-nav .submenu li {
    width: 100%;
  }

  /* サブメニューのリンク(a)のスタイル */
  .area-header-nav .submenu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap; /* テキストが折り返さないように */
    color: #333;
    font-weight: normal;
  }

  .area-header-nav .submenu a:hover {
    background-color: #f5f5f5;
    color: #00a0e6;
  }

  /* ホバー時にサブメニューを表示 */
  .area-header-nav .has-submenu:hover > .submenu {
    visibility: visible;
    opacity: 1;
    margin-top: 5px; /* ホバー時に少し上に移動するアニメーション */
  }

  /* サブメニューを持つ項目の矢印アイコン */
  .area-header-nav .has-submenu > a {
    position: relative;
    padding-right: 15px;
  }

  .area-header-nav .has-submenu > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 0 1.5px 1.5px 0;
    border-color: #888;
    transform: rotate(45deg);
    transition: transform 0.2s;
  }

  .area-header-nav .has-submenu:hover > a::after {
    transform: rotate(225deg); /* ホバー時に矢印を上向きに */
    margin-top: 0;
  }

  /* --- サブメニュー用のスタイルここまで --- */

  .mod-header-gmenu {
    display: none;
  } /* PCではハンバーガーメニューを非表示 */
}

/* footer */

/* */
.u-text-grayscale-100 {
  color: #f8f8ff;
}
.u-bg-grayscale-900 {
  background-color: #192f60;
}
:root {
  --mh--easing: ease;
  --mh--duration: 0.3s;
  --mh--duration2: 0.6s;
}
.l-footer {
  position: relative;
}
.l-footer__inner {
  padding: 20px 30px 5px;
}
@media (min-width: 768px) {
  .l-footer {
    border-radius: 15px 15px 0 0;
  }
  .l-footer__inner {
    padding: 40px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.l-footer-tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 335px;
  max-width: 100%;
  min-height: 88px;
  margin: 0 auto 32px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
}
.l-footer-tel__txt span.is-bar {
  margin: 0 0.5em;
}
@media (min-width: 768px) {
  .l-footer-tel {
    order: 2;
    width: 420px;
    min-height: 123px;
    margin: 0 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.4);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-tel {
    pointer-events: none;
    pointer-events: auto;
  }
}

.l-footer-tel .l-footer-tel__num {
  font-size: 2rem;
}
.l-footer-sitemap {
  display: grid;
  gap: 25px 0;
  gap: 5px 0;
  margin-bottom: 27px;
}
@media (min-width: 768px) {
  .l-footer-tel .l-footer-tel__num {
    font-size: 2.5rem;
  }
  .l-footer-sitemap {
    gap: 14px 0;
    gap: 3px 0;
    margin-right: 66px;
    margin-bottom: 30px;
  }
  .l-footer-sitemap__wrap {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 2rem;
  }
}

.l-footer-sitemap__in {
  color: #fff;
  font-size: 1.15rem;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-sitemap__in {
    transition: color var(--mh--duration) var(--mh--easing);
    color: #fff;
  }
  .l-footer-sitemap__in:hover {
    color: rgb(255, 153, 0);
  }
}
.l-footer-other__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0 0;
}
.l-footer-other__btn-in {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid;
  border-radius: 9999px;
  background: #fff;
  min-height: 32px;
  padding: 0 35px 0 15px;
  color: var(--mh--color--grayscale-900);
}
.l-footer-other__btn-in span.is-ico {
  content: "";
  display: inline-block;
  width: 10px;
  height: 11px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 11"><g fill="currentColor"><path d="M9 3.5v6H3v1h7v-7z"/><path d="M7 .5H0v7h7zm-1 6H1v-5h5z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 11"><g fill="currentColor"><path d="M9 3.5v6H3v1h7v-7z"/><path d="M7 .5H0v7h7zm-1 6H1v-5h5z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .l-footer-other {
    order: 3;
    width: 100%;
  }
  .l-footer-other__btn {
    font-size: 1.4rem;
  }
}
.l-footer-bottom {
  margin-top: 40px;
}
.l-footer-bottom__logo {
  position: relative;
  z-index: 1;
  width: 105px;
}
.l-footer-bottom__logo-link {
  display: grid;
  gap: 10px 0;
  transition: opacity var(--mh--duration) var(--mh--easing);
}
.l-footer-bottom__logo-link img {
  justify-self: center;
  /*
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(178deg) brightness(104%) contrast(101%);
  */
}
.l-footer-bottom__txt {
  margin-top: 15px;
}
.l-footer-bottom__privacy {
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 30px;
}
.l-footer-bottom__cr {
  font-size: 4.4rem;
}
.l-footer-bottom__cr small {
  letter-spacing: 0.05em !important;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .l-footer-bottom__cr {
    margin-right: -21px;
    margin-left: -21px;
  }
}
@media (min-width: 768px) {
  .l-footer-bottom {
    width: 100%;
    order: 4;
    margin-top: 284px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .l-footer-bottom__logo {
    width: -moz-fit-content;
    width: fit-content;
  }
  .l-footer-bottom__logo-link {
    align-items: end;
    grid-template-columns: repeat(2, 105px);
    grid-template-columns: repeat(2, 150px);
    gap: 0 20px;
  }
  .l-footer-bottom__privacy {
    margin: 20px auto 0 0;
  }
  .l-footer-bottom__cr {
    font-size: 8rem;
  }
  .l-footer-bottom__cr small {
    letter-spacing: 0.05em !important;
    font-size: 2.55rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-bottom__logo-link {
    transition: opacity var(--mh--duration) var(--mh--easing);
  }
  .l-footer-bottom__logo-link:hover {
    opacity: 0.7;
  }
  .l-footer-bottom__privacy-in {
    transition: color var(--mh--duration) var(--mh--easing);
  }
  .l-footer-bottom__privacy-in:hover {
    color: var(--mh--color--primary-500);
  }
}
.l-footer-cv {
  position: fixed;
  bottom: 50%;
  right: 0;
  transform: translateY(50%);
  z-index: 10;
}
.l-footer-cv__in {
  position: relative;
  display: inline-block;
  padding: 17px 6px 33px;
  color: #fff;
  writing-mode: vertical-lr;
  min-width: 36px;
}
.l-footer-cv__in:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--mh--color--primary-500);
  border-radius: 20px 0 0 20px;
  box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.15);
  transition: all var(--mh--duration) var(--mh--easing);
}
.l-footer-cv__in span.is-txt {
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}
.l-footer-cv__in span.is-ico {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}
.l-footer-cv__in span.is-ico:after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 11px;
  background-color: currentColor;
  color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 11"><g fill="currentColor"><path d="M9 3.5v6H3v1h7v-7z"/><path d="M7 .5H0v7h7zm-1 6H1v-5h5z"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 11"><g fill="currentColor"><path d="M9 3.5v6H3v1h7v-7z"/><path d="M7 .5H0v7h7zm-1 6H1v-5h5z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: all var(--mh--duration) var(--mh--easing);
}
@media (min-width: 768px) {
  .l-footer-cv {
    right: 40px;
    bottom: 145px;
    transform: translateY(0);
  }
  .l-footer-cv__in {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 140px;
    height: 140px;
    padding: 20px;
    writing-mode: unset;
  }
  .l-footer-cv__in:before {
    border-radius: 50%;
  }
  .l-footer-cv__in span.is-txt {
    font-size: 1.6rem;
  }
  .l-footer-cv__in span.is-ico {
    right: -10px;
    bottom: 0;
    left: auto;
    width: 35px;
    height: 35px;
    background: #f47500;
    border-radius: 50%;
    color: #fff;
    transition: all var(--mh--duration) var(--mh--easing);
  }
  .l-footer-cv__in span.is-ico:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footer-cv__in:hover:before {
    transform: scale(1.06);
  }
}

.font-small-for-tablet .area-header ._logo {
  width: 146px;
}

.font-small-for-tablet .area-header ._site {
  font-size: 13px;
}

/* ---------------------------------- */
/* --- お知らせセクション--- */
/* ---------------------------------- */

.front-news-section {
  padding: 80px 20px;
  /*background-color: #f7f7f7;  セクション全体の背景色 */
}

.front-news-container {
  display: flex;
  gap: 30px; /* カラム間の隙間 */
  max-width: 1200px;
  margin: 0 auto;
}

/* 左右カラム共通スタイル */
.news-column {
  flex: 1;
  min-width: 0; /* flexアイテムの縮小問題を回避 */
  background-color: #fff; /* ★カラムの背景を白に */
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.news-column-header {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.news-column-title {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Oswald", "IBM Plex Sans JP", sans-serif;
  color: #e60012; /* 赤色 */
  margin: 0;
  line-height: 1;
}

.news-column-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 8px 0 0 0;
}

.news-list-wrapper {
  flex-grow: 1; /* コンテンツが少なくても「もっと見る」ボタンが一番下に来るように */
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.news-list li {
  border-bottom: 1px dotted #ccc;
}
.news-list li:last-child {
  border-bottom: none;
}

.news-item-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  text-decoration: none;
  color: #333;
  transition: background-color 0.2s;
}
.news-item-link:hover {
  opacity: 0.7;
}

.news-item-content {
  flex: 1;
  min-width: 0;
}

.news-date {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 6px;
  display: block;
}

.news-title {
  font-size: 1.05em;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  /* 1行で省略形にするスタイル */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-arrow-icon {
  color: #e60012;
  margin-left: 20px;
  flex-shrink: 0;
}
.news-arrow-icon svg {
  width: 24px;
  height: 24px;
}

/* 「もっと見る」ボタン */
.news-more-link-wrapper {
  text-align: right;
  margin-top: 20px;
}
.news-more-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: #333;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 50px;
  transition: opacity 0.3s;
}
.news-more-link:hover {
  opacity: 0.8;
}

/* 会員向けお知らせの注意書き */
.member-news-note {
  font-size: 0.85em;
  color: #888;
  text-align: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #ccc;
}

/* --- レスポンシブ対応 (900px以下で縦並び) --- */
@media (max-width: 900px) {
  .front-news-section {
    padding: 40px 20px;
  }
  .front-news-container {
    flex-direction: column;
  }
  .news-column {
    padding: 25px;
  }
}
