@charset "UTF-8";
:root {
  --themeColor:#014ba2;
  --themeColor-lt:#fcf1ed;
  --pointColor:#ac8839;
  --linkColor:#1badc3;
  --bgColor:#f7f7f7;
  --fontColor: #000;
  --w:1100px;
  --side: calc((100% - (var(--w))) / 2);
  --widthXL:1200px;
  --widthLG:980px;
  --widthTab:768px;
  --font-go-base: "Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
  --font-mi-base: "Hiragino Mincho ProN", "Yu Mincho","YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-jost: 'Jost', var(--font-go-base);
  --font-roboto: 'Roboto Condensed', var(--font-go-base);
}

html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, select, main, address, span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 140%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  box-sizing: border-box;
}

a, span, details, summary {
  box-sizing: border-box;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  backface-visibility: hidden;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-size: 0.875rem;
  color: var(--fontColor);
  font-family: var(--font-go-base);
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "halt";
}

@media (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s;
}
a img {
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  a:active img {
    opacity: 0.8;
  }
}

p {
  line-height: 190%;
}
p + p {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  p a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  p a:active {
    color: var(--linkColor);
  }
}

ol {
  padding-left: 1.25rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  appearance: none;
  padding: 12px 10px;
  border: 1px solid #dedede;
  border-radius: 4px;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding-block: 8px;
    font-size: 1rem;
  }
}

select {
  height: 40px;
  padding: 8px 10px;
  border: 1px solid #b7b7b7;
  background: #fff;
  border-radius: 4px;
  color: var(--fontColor);
}
@media (max-width: 767px) {
  select {
    font-size: 1rem;
  }
}

textarea {
  width: 100%;
  height: 200px;
}

.btn-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 215px;
  height: 40px;
  padding: 0 30px;
  border: 1px solid #fff;
  color: #fff;
}
@media (hover: hover) {
  .btn-simple:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  color: var(--fontColor);
}
.btn-more-sub {
  font-size: 0.75rem;
  font-family: var(--font-roboto);
}
.btn-more::after {
  content: "";
  display: inline-block;
  width: 68px;
  height: 42px;
  background: url(../img/common/icon-arrow-circle.png) no-repeat center/contain;
  margin-left: 10px;
  transition: all 0.3s;
}
@media (hover: hover) {
  .btn-more:hover::after {
    transform: translateX(5px);
  }
}
.btn-more.is-white {
  color: #fff;
}
.btn-more.is-white::after {
  background-image: url(../img/common/icon-arrow-circle-white.png);
}

.btn-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 30px;
  height: 25px;
  font-size: 0.75rem;
  background: #000;
  color: #fff;
  font-family: var(--font-roboto);
}
@media (hover: hover) {
  .btn-s:hover {
    background: var(--themeColor);
  }
}

.btn-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-radius: 40px;
  height: 70px;
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(rgb(1, 75, 162) 0%, rgb(1, 75, 162) 50%, #08458c 50%);
  font-family: var(--font-roboto);
}
@media (max-width: 767px) {
  .btn-round {
    height: 55px;
    padding: 0 30px;
    font-size: 0.875rem;
  }
}
.btn-round.is-green {
  background: linear-gradient(#0fb5b3 0%, #0fb5b3 50%, #049f9d 50%);
}
@media (hover: hover) {
  .btn-round:hover {
    opacity: 0.8;
  }
}
.btn-round.is-low {
  height: 50px;
}

.btn-big {
  appearance: none;
  border: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 60px;
  border-radius: 5px;
  width: 425px;
  max-width: 90%;
  height: 73px;
  font-size: 1.125rem;
  color: #fff;
  background: #3a3b3b;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .btn-big {
    height: 50px;
    padding: 0 40px;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .btn-big:hover {
    opacity: 0.8;
  }
}
.btn-big::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  right: 20px;
  background: url(../img/common/icon-arrow-square.png) center center/contain;
}

.col {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 767px) {
  .col {
    display: block;
  }
}
@media (max-width: 767px) {
  .col.is-sp-flex {
    display: flex;
  }
}
.col.is-oneline {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.col-contents {
  width: 100%;
}
@media (max-width: 767px) {
  .col-contents {
    max-width: 100%;
  }
  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }
}
.is-oneline .col-contents {
  margin-bottom: 0;
}
.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}
@media (max-width: 767px) {
  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-2 .col-contents {
  max-width: 48%;
}
.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}
.is-2 .col-contents:nth-child(n+3) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-2 .col-contents:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-3 .col-contents {
  max-width: 32%;
}
.is-3 .col-contents:not(:nth-child(3n+1)) {
  margin-left: calc(2% - 1px);
}
.is-3 .col-contents:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-3 .col-contents:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-4 .col-contents {
  max-width: 23%;
}
.is-4 .col-contents:not(:nth-child(4n+1)) {
  margin-left: calc(2.6% - 1px);
}
.is-4 .col-contents:nth-child(n+5) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-4 .col-contents:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.col-contents-title {
  margin-bottom: 5px;
}
.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}
@media (max-width: 767px) {
  .flImgContents-img {
    max-width: 100%;
  }
}
.flImgContents-img.is-s {
  max-width: 200px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-s {
    max-width: 100%;
  }
}
.flImgContents-img.is-ss {
  max-width: 100px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}
.flImgContents-img.is-l {
  max-width: 47%;
}
@media (max-width: 767px) {
  .flImgContents-img.is-l {
    max-width: 100%;
  }
}
.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }
}
.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }
}

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.list-normal > li::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: var(--themeColor);
}

.list-number {
  padding: 0 0 0 25px;
}
.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}
.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .size-30 {
    width: 70%;
  }
}

.size-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .size-60 {
    width: 100%;
  }
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-1 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.section-1:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: 40px;
  margin-bottom: 70px;
}
.section-2:first-child {
  margin-top: 0;
}

.section-3 {
  margin-top: 40px;
  margin-bottom: 100px;
}
.section-3:first-child {
  margin-top: 0;
}

.section-center {
  max-width: var(--w);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-1 {
  border-collapse: collapse;
}
.table-1 th, .table-1 td {
  padding: 10px 13px;
}
@media (max-width: 767px) {
  .table-1 th, .table-1 td {
    font-size: 0.875rem;
  }
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle tr {
    margin-bottom: 20px;
  }
  .table-1.is-sideTitle th {
    padding: 0;
    font-size: 0.8125rem;
  }
  .table-1.is-sideTitle td {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .is-sideTitle tr {
    display: block;
  }
  .is-sideTitle th, .is-sideTitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .is-sideTitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }
}

.wfix {
  table-layout: fixed;
}

@media (max-width: 767px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-right: -5vw;
    padding-right: 5vw;
  }
}

.title-bold {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.title-l.is-right {
  text-align: right;
}
.title-l-main {
  position: relative;
  display: block;
  font-size: 3.5rem;
  font-family: var(--font-jost);
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 18px;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 979px) {
  .title-l-main {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .title-l-main {
    font-size: 9.6vw;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
}
.title-l-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #000;
}
.is-right .title-l-main::after {
  left: auto;
  right: 0;
}
.is-white .title-l-main {
  color: #fff;
}
.is-white .title-l-main::after {
  background: #fff;
}
.is-blue .title-l-main {
  color: var(--themeColor);
}
.is-blue .title-l-main::after {
  background: var(--themeColor);
}
.title-l-sub {
  font-size: 1.125rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .title-l-sub {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .title-l-sub {
    font-size: 3vw;
  }
}

.title-m-main {
  display: block;
  font-size: 2.5rem;
  font-family: var(--font-jost);
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .title-m-main {
    font-size: 1.875rem;
  }
}
.title-m-sub {
  font-size: 1rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .title-m-sub {
    font-size: 0.875rem;
  }
}

.title-bg {
  margin-bottom: 30px;
  padding: 12px 20px;
  font-weight: bold;
  background: #d4e3ee;
}

@media (min-width: 768px) {
  .contentsInner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contentsInner {
    max-width: 90%;
  }
}
.contentsInner {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .contentsInner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    padding: 50px 0;
  }
}

.pageView {
  height: 300px;
}
@media (max-width: 767px) {
  .pageView {
    height: 150px;
  }
}
.pageView img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadCrumb {
  border-bottom: 1px solid #ccc;
  padding: 10px 5%;
}
@media (max-width: 767px) {
  .breadCrumb {
    padding: 4px 2%;
  }
}
.breadCrumb-ul {
  display: flex;
  align-items: center;
  justify-content: end;
}
.breadCrumb-ul-li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.75rem;
  padding: 5px 0;
}
@media (max-width: 767px) {
  .breadCrumb-ul-li {
    font-size: 2.4vw;
  }
}
.breadCrumb-ul-li a {
  display: block;
  color: var(--themeColor);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) {
  .breadCrumb-ul-li a:hover {
    opacity: 0.8;
  }
}
.breadCrumb-ul-li + .breadCrumb-ul-li {
  margin-left: 5px;
}
.breadCrumb-ul-li + .breadCrumb-ul-li::before {
  content: ">";
  margin-right: 5px;
  color: #666;
}

.pageNavi {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin-bottom: 60px;
}
.pageNavi-ul {
  display: flex;
}
@media (min-width: 768px) {
  .pageNavi-ul {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .pageNavi-ul {
    max-width: 90%;
  }
}
.pageNavi-ul-li {
  height: 80px;
  width: 100%;
}
.pageNavi-ul-li + .pageNavi-ul-li {
  border-left: 1px dotted #ccc;
}
.pageNavi-ul-li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fontColor);
  height: 100%;
  font-weight: bold;
}
@media (hover: hover) {
  .pageNavi-ul-li a:hover {
    background: #f4f4f4;
  }
}
.pageNavi-ul-li a::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: calc(50% - 4px);
  bottom: 15px;
  width: 8px;
  height: 6px;
  background: var(--themeColor);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.pageAnc {
  border-bottom: 1px solid #ccc;
}
.pageAnc ul {
  display: flex;
  flex-wrap: wrap;
}
.pageAnc ul li {
  font-weight: bold;
  margin-right: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .pageAnc ul li {
    margin-left: 0px;
  }
}
.pageAnc ul li a {
  position: relative;
  display: flex;
  padding: 15px 15px 15px 35px;
  color: var(--fontColor);
}
@media (min-width: 768px) and (max-width: 979px) {
  .pageAnc ul li a {
    padding-inline: 15px;
  }
}
@media (max-width: 767px) {
  .pageAnc ul li a {
    padding-block: 10px;
  }
}
.pageAnc ul li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 15px;
  top: calc(50% - 3px);
  margin-left: auto;
  width: 8px;
  height: 6px;
  background: var(--themeColor);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media (min-width: 768px) and (max-width: 979px) {
  .pageAnc ul li a::before {
    left: 0;
  }
}
@media (hover: hover) {
  .pageAnc ul li a:hover {
    color: var(--linkColor);
  }
}

.footer {
  background: rgba(219, 219, 219, 0.299);
  border-radius: 60px 60px 0 0;
}
@media (max-width: 767px) {
  .footer {
    border-radius: 20px 20px 0 0;
  }
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  padding: 80px 5%;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .footer-inner {
    gap: 0 20%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footer-inner {
    gap: 0 5%;
  }
}
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    padding: 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footer-l {
    width: 50%;
    gap: 3%;
  }
}
.footer-logo {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-logo {
    width: 80%;
    margin-bottom: 20px;
    margin-inline: auto;
  }
}
.footer-address {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .footer-address {
    justify-content: center;
    margin-inline: auto;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.footer-address address {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .footer-address address {
    font-size: 0.75rem;
  }
}
@media (max-width: 767px) {
  .footer-contact {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.footer-contact-tel {
  display: flex;
  align-items: center;
  color: var(--fontColor);
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .footer-contact-tel {
    pointer-events: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footer-contact-tel {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10px;
  }
}
.footer-contact-tel .num {
  font-size: 1.875rem;
  font-family: var(--font-roboto);
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer-contact-tel .num {
    font-size: 1.625rem;
  }
}
.footer-contact-tel .uketuke {
  margin-left: 10px;
  font-size: 0.8125rem;
  display: block;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .footer-contact-tel .uketuke {
    font-size: 0.75rem;
    margin-top: 5px;
  }
}
.footer-contact-form {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: var(--fontColor);
}
@media (hover: hover) {
  .footer-contact-form:hover {
    opacity: 0.6;
  }
}
.footer-contact-form-text {
  font-weight: bold;
}
.footer-contact-form-en {
  font-size: 0.875rem;
  font-family: var(--font-roboto);
}
.footer-contact-form-en::after {
  content: "";
  display: inline-block;
  width: 73px;
  height: 10px;
  margin-left: 10px;
  background: url(../img/common/icon-arrow.png) no-repeat center/contain;
}
.footer-r {
  flex: 1;
}

@media (min-width: 768px) {
  .footerNavi {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .footerNavi {
    margin-top: 60px;
  }
}
.footerNavi-ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 60px;
}
@media (min-width: 1200px) {
  .footerNavi-ul {
    gap: 60px 10%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footerNavi-ul {
    gap: 30px 40px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-ul {
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    display: block;
    align-items: center;
    gap: 30px;
    width: 100%;
  }
}
.footerNavi-ul-li {
  font-weight: bold;
  font-size: 1.125rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .footerNavi-ul-li {
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul-li + .footerNavi-ul-li {
    display: inline-block;
    margin-top: 40px;
  }
}
.footerNavi-ul-li a {
  display: block;
  color: #000;
}
@media (hover: hover) {
  .footerNavi-ul-li a:hover {
    opacity: 0.7;
  }
}
.footerNavi-ul-li > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footerNavi-ul-li > a::after {
  content: "";
  flex: 1;
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #000;
}

.footerSubnavi {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 40px;
  margin-top: 10px;
}
.footerSubnavi-li {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerSubnavi-li {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .footerSubnavi-li {
    font-size: 0.875rem;
  }
}
.footerSubnavi a {
  padding-block: 5px;
}
.footerSubnavi a::before {
  content: "-";
  display: inline-block;
  margin-right: 5px;
}

.footerCopy {
  display: block;
  text-align: right;
  padding: 30px 0;
  font-size: 12px;
  border-top: 1px solid #ccc;
  width: 90%;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .footerCopy {
    padding-right: 10px;
    font-size: 0.625rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 125px;
  z-index: 3;
  transition: all 0.3s;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header {
    height: 90px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  padding: 40px 3% 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  .header-inner {
    padding: 20px 3% 0;
  }
}
@media (max-width: 767px) {
  .header-inner {
    height: 100%;
    padding: 10px 3% 10px;
  }
}
.header-logo {
  width: 500px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .header-logo {
    width: 30vw;
    height: fit-content;
  }
}
@media (max-width: 767px) {
  .header-logo {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .header-logo a {
    height: 100%;
  }
}
.header-logo img {
  width: 100%;
}
@media (max-width: 767px) {
  .header-logo img {
    display: block;
    height: 100%;
    width: auto;
  }
}
.header-navi {
  flex: 1;
}
.is-scroll .header {
  background-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gNavi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: 50px;
}
@media (max-width: 767px) {
  .gNavi {
    position: fixed;
    left: 100%;
    top: 0;
    display: block;
    width: min(70%, 300px);
    height: 100vh;
    margin: 0;
    padding: 60px 0;
    background: linear-gradient(-20deg, #054b9b 70%, rgba(4, 131, 200, 0.9098039216));
    transition: all 0.8s cubic-bezier(0.78, 0.01, 0.18, 1);
    transform: translateX(0);
    z-index: 5;
    overflow-y: scroll;
  }
}
.dwMenu-active .gNavi {
  transform: translateX(-100%);
}
.gNavi-ul {
  display: flex;
}
@media (min-width: 1200px) {
  .gNavi-ul {
    gap: 1vw;
  }
}
@media (max-width: 767px) {
  .gNavi-ul {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .gNavi-ul-li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2470588235);
  }
}
.gNavi-ul-li a {
  display: block;
  padding: 20px 25px;
  color: #fff;
  text-align: center;
}
@media (min-width: 980px) and (max-width: 1199px) {
  .gNavi-ul-li a {
    padding: 15px 15px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi-ul-li a {
    padding: 10px 10px;
  }
}
@media (max-width: 767px) {
  .gNavi-ul-li a {
    text-align: left;
  }
}
.gNavi-ul-li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.gNavi-ul-li-ja {
  font-size: 1rem;
  font-weight: bold;
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi-ul-li-ja {
    font-size: 0.75rem;
  }
}
.gNavi-ul-li-en {
  font-size: 0.75rem;
  display: block;
  font-family: var(--font-jost);
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNavi-ul-li-en {
    font-size: 0.625rem;
  }
}
.gNavi-contact {
  padding: 20px;
}
@media (max-width: 767px) {
  .gNavi-contact {
    margin-top: 40px;
  }
}
.gNavi-contact .btn-simple {
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gNavi-contact .btn-simple {
    min-width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gNavi-contact .btn-simple {
    padding-inline: 15px;
    font-size: 0.75rem;
  }
}

.filter {
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 3;
}
.dwMenu-active .filter {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.dwMenu {
  appearance: none;
  padding: 0;
  background: none;
  border: none;
  position: fixed;
  top: 14px;
  right: 20px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 7;
}
@media (min-width: 768px) {
  .dwMenu {
    display: none;
  }
}
@media (max-width: 767px) {
  .dwMenu {
    transform: scale(0.9);
  }
}
.dwMenu-hamburger {
  position: relative;
  display: block;
  outline: none;
  border: none;
}
.dwMenu-hamburger span {
  position: absolute;
  left: 0;
  width: 35px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  transition: all 0.4s;
}
.dwMenu-active .dwMenu-hamburger span {
  background-color: #fff;
}
.dwMenu-hamburger span:nth-of-type(1) {
  top: 0;
  animation: menu-bar01 0.75s forwards;
}
.dwMenu-hamburger span:nth-of-type(2) {
  top: 11.5px;
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.dwMenu-hamburger span:nth-of-type(3) {
  top: 24px;
  animation: menu-bar02 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(1) {
  animation: active-menu-bar01 0.75s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(2) {
  opacity: 0;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(3) {
  animation: active-menu-bar03 0.75s forwards;
}
.dwMenu-text {
  display: block;
  margin-top: 27px;
  text-align: center;
  font-size: 0.9rem;
  transform: scale(0.8);
  transform-origin: left;
  padding-left: 1px;
  transition: all 0.4s;
  color: #fff;
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(12px) rotate(45deg);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-12px) rotate(-45deg);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(12px) rotate(0);
  }
  100% {
    transform: translateY(12px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-12px) rotate(0);
  }
  100% {
    transform: translateY(-12px) rotate(-45deg);
  }
}
.wpArticle {
  word-break: break-all;
  font-size: 0.9375rem;
}
.wpArticle p {
  margin-bottom: 20px;
}
.wpArticle p a {
  text-decoration: underline;
}
.wpArticle em {
  font-style: italic;
  color: initial;
}
.wpArticle ol {
  margin: 10px 20px;
  padding: 0;
}
.wpArticle ul {
  margin: 10px 20px;
  list-style-type: disc;
  list-style-position: outside;
  list-style-image: none;
}
.wpArticle ul li {
  list-style: unset;
}
.wpArticle blockquote p {
  font-size: 1.125rem;
}
.wpArticle h1 {
  margin: 50px 40px;
  padding: 10px 15px;
  background: #eef1f3;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .wpArticle h1 {
    margin-bottom: 30px;
  }
}
.wpArticle h2 {
  margin: 50px auto 30px;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 40px;
  background: var(--themeColor);
  color: #fff;
}
@media (max-width: 767px) {
  .wpArticle h2 {
    font-size: 1rem;
  }
}
.wpArticle h3 {
  margin: 50px auto 20px;
  padding: 5px 0 5px 10px;
  border-bottom: 1px solid #ccc;
  border-left: 5px solid var(--themeColor);
  font-size: 1rem;
  font-weight: bold;
}
.wpArticle h4 {
  margin: 50px auto 5px;
  font-size: 1rem;
  font-weight: bold;
}
.wpArticle img {
  height: auto;
}
@media (max-width: 767px) {
  .wpArticle img {
    display: block;
    margin: 10px auto;
  }
}
.wpArticle table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.wpArticle table thead {
  border-bottom-width: 1px;
}
.wpArticle table tfoot {
  border-top-width: 1px;
}
.wpArticle table a {
  text-decoration: underline;
}
.wpArticle table th,
.wpArticle table td {
  padding: 10px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .wpArticle table th,
  .wpArticle table td {
    font-size: 0.8125rem;
  }
}
.wpArticle table th {
  background: #eee;
}
.wpArticle .wp-block-button__link {
  font-size: 0.875rem;
}
.wpArticle .more-link {
  color: var(--linkColor);
}
.wpArticle .wp-caption {
  max-width: 100%;
}
.wpArticle .wp-block-pullquote,
.wpArticle .wp-block-quote {
  background: var(--bgColor);
  padding: 30px;
  text-align: left;
}
.wpArticle .wp-block-pullquote p,
.wpArticle .wp-block-quote p {
  font-size: 0.875rem;
}
.wpArticle .wp-block-pullquote cite,
.wpArticle .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: #999;
}
.wpArticle .wp-block-columns {
  gap: 30px;
}
.wpArticle .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpArticle .wp-block-gallery img {
  margin: 0;
}
.wpArticle .wp-block-image .alignright {
  float: right;
  margin: 0 0 20px 30px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .alignleft {
  float: left;
  margin: 0 30px 20px 0;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .aligncenter {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-media-text {
    display: block;
  }
  .wpArticle .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}
.wpArticle .wp-block-list li {
  margin-bottom: 5px;
}
.wpArticle .wp-block-group.has-background {
  margin-bottom: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-group.has-background {
    padding: 20px 5%;
  }
}
.wpArticle .wp-block-group.has-background p:last-child {
  margin-bottom: 0;
}
.wpArticle .border img {
  border: 1px solid #ccc;
}

.pagination {
  margin: 70px 0;
}
.pagination-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.pagination-box li {
  font-size: 1rem;
}
.pagination-box li:not(.page-of) {
  display: flex;
  box-align: center;
  align-items: center;
  justify-content: center;
  background: var(--themeColor);
  width: 40px;
  height: 40px;
  margin: 0 5px 5px 0;
  color: #fff;
  border: 1px solid var(--themeColor);
}
@media (max-width: 767px) {
  .pagination-box li:not(.page-of) {
    width: 30px;
    height: 30px;
  }
}
.pagination-box li.page-of {
  margin-right: 10px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .pagination-box li.page-of {
    padding-top: 7px;
  }
}
.pagination-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--themeColor);
}
@media (hover: hover) {
  .pagination-box li a:hover {
    background: #f8f3e3;
  }
}

.mv {
  position: relative;
}
@media (max-width: 767px) {
  .mv {
    height: 80vh;
  }
}
.mv-img {
  height: 100%;
}
@media (max-width: 767px) {
  .mv-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.mv-on {
  position: absolute;
  color: #fff;
}
@media (min-width: 768px) {
  .mv-on {
    bottom: 80px;
    right: 3%;
  }
}
@media (max-width: 767px) {
  .mv-on {
    top: 70%;
    left: 3%;
  }
}
.mv-on-text {
  text-align: right;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
@media (max-width: 767px) {
  .mv-on-text {
    text-align: left;
  }
}
.mv-on-text-ja {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1.5vw;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mv-on-text-ja {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .mv-on-text-ja {
    font-size: 4.5vw;
  }
}
.mv-on-text-ja::before, .mv-on-text-ja::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .mv-on-text-ja::before, .mv-on-text-ja::after {
    margin-right: 3%;
    width: 20px;
  }
}
.mv-on-text-en {
  font-size: 3.1vw;
  font-weight: 500;
  font-family: var(--font-jost);
}
@media (min-width: 768px) and (max-width: 979px) {
  .mv-on-text-en {
    font-size: 1.875rem;
  }
}
@media (max-width: 767px) {
  .mv-on-text-en {
    font-size: 8vw;
  }
}

.topBusiness {
  background: url(../img/top/bg-business.webp) no-repeat center top/cover;
  padding: 80px 0;
  color: #fff;
}
@media (max-width: 767px) {
  .topBusiness {
    padding: 20px 0;
    background-image: url(../img/top/bg-business-sp.webp);
    background-size: 100%;
    background-color: #035cc1;
  }
}
.topBusiness-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-inline: 5%;
}
@media (max-width: 767px) {
  .topBusiness-heading {
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topBusiness-heading-text {
  width: 60%;
  font-weight: bold;
}
@media (max-width: 767px) {
  .topBusiness-heading-text {
    width: 100%;
    font-size: 0.8125rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .topBusiness-heading-text p {
    line-height: 1.6;
  }
}
.topBusiness-heading-text-btn {
  margin-top: 30px;
  text-align: right;
}
.topBusiness-btn {
  text-align: center;
  padding: 40px 0 10px;
}

.topBusinessPanels {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-inline: 5%;
}
@media (max-width: 767px) {
  .topBusinessPanels {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    grid-template-columns: 1fr;
    max-width: 90%;
  }
}
.topBusinessPanels-item {
  padding-block: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 768px) {
  .topBusinessPanels-item:nth-child(odd) {
    padding-right: 10%;
  }
  .topBusinessPanels-item:nth-child(even) {
    padding-left: 10%;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 767px) {
  .topBusinessPanels-item {
    padding-block: 20px;
  }
}
.topBusinessPanels-item-title {
  margin-bottom: 10px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .topBusinessPanels-item-title {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}
.topBusinessPanels-item-lead {
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .topBusinessPanels-item-lead {
    font-size: 0.8125rem;
    font-weight: bold;
  }
}
.topBusinessPanels-item-img img {
  width: 100%;
}

.topCompany {
  position: relative;
  display: flex;
  gap: 5%;
  z-index: 1;
}
@media (max-width: 767px) {
  .topCompany {
    flex-direction: column;
  }
}
.topCompany-img {
  width: 582px;
  max-width: 50%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .topCompany-img {
    max-width: 90%;
    width: 100%;
    order: 2;
    gap: 0;
    margin-inline: auto;
  }
}
.topCompany-desc {
  flex: 1;
  padding: 80px var(--side) 80px 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topCompany-desc {
    padding: 40px 3% 40px 0;
  }
}
@media (max-width: 767px) {
  .topCompany-desc {
    padding: 40px 5%;
  }
}
.topCompany-desc .title-l {
  margin-bottom: 40px;
}
.topCompany-desc-text {
  font-weight: bold;
  font-size: 1rem;
  font-weight: bold;
}
.topCompany-desc-btn {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .topCompany-desc-btn {
    margin-bottom: -100px;
    margin-right: 70px;
  }
}

.topRecruit {
  position: relative;
  padding-top: 1px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .topRecruit {
    margin-top: 80px;
    padding-bottom: 20px;
  }
}
.topRecruit::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 94%;
  background-color: #ffe200;
  margin-bottom: 40px;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .topRecruit::before {
    top: 3em;
    width: 100%;
    height: calc(100% - 2em);
    border-radius: 0;
  }
}
.topRecruit-inner {
  position: relative;
}
.topRecruit-heading {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  margin-top: -4vw;
  padding-left: calc(var(--side));
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topRecruit-heading {
    padding-left: 3%;
  }
}
@media (max-width: 767px) {
  .topRecruit-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: -40px;
  }
}
.topRecruit-heading .title-l {
  order: 2;
}
@media (max-width: 767px) {
  .topRecruit-heading .title-l {
    padding-left: 5%;
  }
}
.topRecruit-heading-img {
  width: 70%;
  border-radius: 0 0 0 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .topRecruit-heading-img {
    width: 100%;
    border-radius: 0;
  }
}
.topRecruit-heading-img img {
  width: 100%;
}
.topRecruit-desc {
  display: grid;
  margin-top: 80px;
  grid-template: "lead text" auto "btn text" 1fr/40% 1fr;
  max-width: 90%;
  padding-left: calc(var(--side));
  gap: 0 3%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topRecruit-desc {
    padding-left: 5%;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .topRecruit-desc {
    grid-template: "lead" auto "text" auto "btn" auto/1fr;
    gap: 20px;
    margin-top: 20px;
    padding-left: 5%;
  }
}
.topRecruit-desc-lead {
  grid-area: lead;
  line-height: 1.8;
  font-size: min(23px, 1.6vw);
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topRecruit-desc-lead {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .topRecruit-desc-lead {
    font-weight: bold;
    font-size: 4vw;
    margin-bottom: 10px;
  }
}
.topRecruit-desc-btn {
  grid-area: btn;
}
@media (max-width: 767px) {
  .topRecruit-desc-btn {
    text-align: center;
  }
}
.topRecruit-desc-text {
  grid-area: text;
  font-weight: bold;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .topRecruit-desc-text {
    margin-bottom: 10px;
  }
}

.topNews {
  padding-block: 80px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .topNews {
    padding-block: 40px;
  }
}
@media (max-width: 767px) {
  .topNews {
    padding-block: 40px;
  }
}
@media (min-width: 768px) {
  .topNews-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .topNews-inner {
    max-width: 90%;
  }
}
.topNews-inner {
  display: grid;
  grid-template: "title main" auto "btn main" auto/30% auto;
}
@media (max-width: 767px) {
  .topNews-inner {
    grid-template: "title" auto "main" auto "btn" auto/1fr;
    gap: 20px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topNews .title-l {
  grid-area: title;
}
.topNews-btn {
  grid-area: btn;
}
@media (max-width: 767px) {
  .topNews-btn {
    text-align: center;
  }
}
.topNews-main {
  grid-area: main;
}
@media (max-width: 767px) {
  .topNews-main {
    margin-top: 20px;
  }
}

.newsSection {
  display: block;
  border-bottom: 1px solid #ccc;
  padding-bottom: 40px;
  color: var(--fontColor);
}
@media (max-width: 767px) {
  .newsSection {
    padding-bottom: 20px;
  }
}
.newsSection + .newsSection {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .newsSection + .newsSection {
    padding-top: 20px;
  }
}
.newsSection-time {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-jost);
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .newsSection-time {
    margin-bottom: 0;
  }
}
.newsSection-title {
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .newsSection-title {
    margin-bottom: 10px;
  }
}
.newsSection-text {
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .newsSection-text {
    font-size: 0.75rem;
  }
  .newsSection-text p {
    line-height: 1.6;
  }
}
.newsSection-text .more {
  text-underline-offset: 3px;
  text-decoration: underline;
  color: var(--themeColor);
}

.businessSummary {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .businessSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .businessSummary {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .businessSummary {
    padding: 50px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.businessSummary-desc {
  display: flex;
  margin-top: 70px;
  gap: 8%;
}
@media (max-width: 979px) {
  .businessSummary-desc {
    flex-direction: column;
    margin-top: 40px;
    gap: 24px;
  }
}
.businessSummary-desc-lead {
  font-size: 1.875rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .businessSummary-desc-lead {
    font-size: 1.375rem;
  }
}
.businessSummary-desc-text {
  flex: 1;
  font-weight: bold;
  font-size: 0.9375rem;
}

.priceUketori {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .priceUketori {
    padding-bottom: 50px;
    margin-bottom: 40px;
  }
}
.priceUketori::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 80px);
  background: #ebf4fa;
  opacity: 0;
}
.priceUketori:nth-child(even)::before {
  opacity: 1;
}
.priceUketori-inner {
  position: relative;
}
@media (min-width: 768px) {
  .priceUketori-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .priceUketori-inner {
    max-width: 90%;
  }
}
.priceUketori-inner {
  z-index: 1;
}
.priceUketori-imgs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
}
@media (max-width: 767px) {
  .priceUketori-imgs {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.priceUketori-imgs-img:nth-child(1) {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .priceUketori-imgs-img:nth-child(1) {
    grid-column: auto;
  }
}
.priceUketori-imgs-img img {
  width: 100%;
}
.priceUketori-desc {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media (max-width: 979px) {
  .priceUketori-desc {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .priceUketori-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (min-width: 768px) {
  .is-reverse .priceUketori-desc {
    flex-direction: row-reverse;
  }
}
.priceUketori-desc-title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .priceUketori-desc-title {
    margin-bottom: 0;
  }
}
.priceUketori-desc-title-main {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
  font-size: 2.25rem;
  color: var(--themeColor);
  font-weight: bold;
}
@media (max-width: 767px) {
  .priceUketori-desc-title-main {
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.625rem;
  }
}
.priceUketori-desc-title-main::before {
  content: "";
  display: inline-block;
  width: 65px;
  height: 55px;
  margin-top: -10px;
  background: url(../img/common/logo-mark.png) no-repeat center/contain;
}
@media (max-width: 767px) {
  .priceUketori-desc-title-main::before {
    width: 48px;
    height: 40px;
    margin-top: -6px;
  }
}
.priceUketori-desc-title-lead {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .priceUketori-desc-title-lead {
    font-size: 1rem;
  }
}
.priceUketori-desc-text {
  width: 50%;
}
@media (max-width: 979px) {
  .priceUketori-desc-text {
    width: 100%;
  }
}

.companySect-wrap {
  margin-top: 80px;
}

.companySummary {
  margin-block: 80px;
  background: url(../img/company/bg-summary.webp) no-repeat center/cover;
  height: 450px;
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  overflow: hidden;
  padding: 40px 20px;
}
@media (max-width: 767px) {
  .companySummary {
    text-align: left;
    height: auto;
    padding-block: 80px;
  }
}
.companySummary-lead {
  margin-bottom: 40px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .companySummary-lead {
    text-align: center;
  }
}
.companySummary-text {
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .companySummary-text {
    font-size: 0.8125rem;
  }
}

.companySect {
  display: flex;
  gap: 5%;
}
@media (max-width: 979px) {
  .companySect {
    flex-direction: column;
    gap: 24px;
  }
}
.companySect + .companySect {
  margin-top: 100px;
}
@media (max-width: 979px) {
  .companySect + .companySect {
    margin-top: 60px;
  }
}
.companySect .title-m {
  width: 20%;
}
@media (max-width: 979px) {
  .companySect .title-m {
    width: 100%;
  }
}
.companySect-desc {
  flex: 1;
}
.companySect-desc .name {
  font-weight: bold;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .companySect-desc .name {
    margin-top: 30px;
  }
}
.companySect-desc .prename {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .companySect-desc .prename {
    gap: 8px;
  }
}
.companySect-desc .prename-role {
  font-weight: bold;
}
.companySect-desc .prename-sign {
  width: 50%;
}

.aboutusList {
  margin-bottom: 20px;
}
.aboutusList-item {
  display: flex;
  background: #eaf2f6;
  border-radius: 5px;
  padding: 8px 25px;
}
@media (max-width: 767px) {
  .aboutusList-item {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }
}
.aboutusList-item + .aboutusList-item {
  margin-top: 10px;
}
.aboutusList-item dt {
  width: 100px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .aboutusList-item dt {
    width: auto;
  }
}
.aboutusList-item dd {
  flex: 1;
}

.companyMap {
  height: 425px;
}
@media (max-width: 767px) {
  .companyMap {
    height: 300px;
  }
}
.companyMap iframe {
  width: 100%;
  height: 100%;
}

.organizationImg {
  background: #eaf2f6;
  padding: 50px;
  border-radius: 10px;
  text-align: center;
}
@media (max-width: 767px) {
  .organizationImg {
    padding: 20px 10px;
  }
}

.ourOffices {
  border-bottom: 1px solid #ccc;
}
.ourOffices-sect {
  display: flex;
  border-top: 1px solid #ccc;
  padding: 25px 20px;
}
@media (max-width: 767px) {
  .ourOffices-sect {
    flex-direction: column;
    gap: 10px;
    padding: 20px 0;
  }
}
.ourOffices-sect-title {
  width: 180px;
  font-weight: bold;
}

.recruitVisual {
  position: relative;
}
.recruitVisual-img img {
  width: 100%;
}
.recruitVisual-on {
  position: relative;
  height: fit-content;
  width: fit-content;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.recruitVisual-on-main {
  position: relative;
  font-family: var(--font-jost);
  font-size: 5.625rem;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}
@media (max-width: 767px) {
  .recruitVisual-on-main {
    font-size: 12vw;
  }
}
.recruitVisual-on-main::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
  background: #fff;
  margin-top: 20px;
}
.recruitVisual-on-sub {
  display: block;
  margin-top: 20px;
  font-size: 1.8125rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
@media (max-width: 767px) {
  .recruitVisual-on-sub {
    font-size: 5.5vw;
  }
}

.recruitCta {
  padding: 35px;
  display: flex;
  justify-content: center;
  gap: 5%;
  background: #ebf4fa;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 767px) {
  .recruitCta {
    flex-direction: column;
    align-items: center;
    padding: 20px 5%;
    gap: 10px;
  }
}
.recruitCta .btn-round {
  width: 400px;
  max-width: 100%;
}

.recruitSummary {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .recruitSummary {
    align-items: normal;
  }
}
@media (max-width: 767px) {
  .recruitSummary {
    flex-direction: column;
  }
}
.recruitSummary-img {
  width: 50%;
}
@media (max-width: 767px) {
  .recruitSummary-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.recruitSummary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recruitSummary-desc {
  flex: 1;
  padding: 0 60px 0 60px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .recruitSummary-desc {
    padding: 30px 4%;
  }
}
@media (max-width: 767px) {
  .recruitSummary-desc {
    padding: 0 5% 30px;
  }
}
.recruitSummary-desc-title {
  font-size: 1.625rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recruitSummary-desc-title {
    font-size: 1.9vw;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .recruitSummary-desc-title {
    font-size: 4.4vw;
    margin-bottom: 20px;
  }
}
.recruitSummary-desc-text {
  line-height: 1.8;
  font-weight: bold;
}
@media (min-width: 768px) {
  .recruitSummary-desc-text {
    font-size: 1rem;
  }
}

.suji {
  background: #0065b8;
  color: #fff;
  padding: 20px 0 0;
}
@media (min-width: 768px) {
  .suji-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .suji-inner {
    max-width: 90%;
  }
}
.suji-title {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-style: italic;
  gap: 30px;
  margin-bottom: 30px;
  font-size: 1.9375rem;
}
@media (max-width: 767px) {
  .suji-title {
    font-size: 5vw;
    gap: 5vw;
    margin-bottom: 20px;
    justify-content: center;
  }
}
.suji-title .text-l {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  .suji-title .text-l {
    font-size: 8vw;
  }
}
.suji-title::before {
  content: "";
  display: inline-block;
  width: 143px;
  height: 126px;
  background: url(../img/common/logo-mark-white.png) no-repeat center/contain;
  opacity: 0.2;
}
@media (min-width: 768px) and (max-width: 979px) {
  .suji-title::before {
    width: 10vw;
  }
}
@media (max-width: 767px) {
  .suji-title::before {
    width: 20vw;
    height: 20vw;
  }
}

.sujiPanels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .sujiPanels {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sujiPanels-item {
  border-top: 1px solid rgba(255, 255, 255, 0.6823529412);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.sujiPanels-item:nth-child(3n+1) {
  border-left: none;
}
@media (min-width: 768px) {
  .sujiPanels-item:last-child {
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .sujiPanels-item:last-child {
    padding-bottom: 20px;
  }
}
.sujiPanels-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.2);
}
.sujiPanels-item-img {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .sujiPanels-item-img {
    padding: 20px 5%;
  }
}
@media (max-width: 767px) {
  .sujiPanels-item-img {
    padding: 0 5%;
  }
}

.recOurBuz {
  position: relative;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .recOurBuz {
    padding-bottom: 40px;
  }
}
.recOurBuz-imgs {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .recOurBuz-imgs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.recOurBuz-imgs img {
  width: 100%;
}
.recOurBuz-on {
  position: absolute;
  top: 40%;
  left: 0;
  color: #fff;
  padding-inline: 5%;
  display: flex;
  justify-content: center;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 979px) {
  .recOurBuz-on {
    top: 20%;
  }
}
@media (max-width: 767px) {
  .recOurBuz-on {
    top: 20%;
    flex-direction: column;
    padding: 0 8%;
  }
}
.recOurBuz-on .title-l {
  white-space: nowrap;
  width: 50%;
}
@media (max-width: 767px) {
  .recOurBuz-on .title-l {
    width: 100%;
  }
}
.recOurBuz-on-text {
  width: 55%;
}
@media (max-width: 767px) {
  .recOurBuz-on-text {
    width: 100%;
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .jobDescArea {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .jobDescArea {
    max-width: 90%;
  }
}
.jobDescArea {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .jobDescArea {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    padding: 50px 0;
  }
}
.jobDescArea .title-l {
  margin-bottom: 60px;
}
.jobDescArea .pageAnc {
  margin-bottom: 140px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .jobDescArea .pageAnc {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  .jobDescArea .pageAnc {
    margin-bottom: 60px;
  }
}

.jobSect {
  display: flex;
}
@media (min-width: 768px) {
  .jobSect {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .jobSect {
    max-width: 90%;
  }
}
@media (max-width: 979px) {
  .jobSect {
    flex-direction: column;
    max-width: 100%;
  }
}
.jobSect + .jobSect {
  margin-top: 120px;
}
.jobSect-title {
  font-size: 1.5rem;
  font-weight: bold;
  width: 270px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .jobSect-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .jobSect-title {
    width: 100%;
    font-size: 5.6vw;
    margin-bottom: 30px;
  }
}
.jobSect-main {
  flex: 1;
}
.jobSect-main-btn {
  margin: 80px auto 0;
  text-align: center;
}
@media (max-width: 767px) {
  .jobSect-main-btn {
    margin: 50px auto 0;
  }
}
.jobSect-main-btn .btn-round {
  width: 280px;
}

.jobMainSect + .jobMainSect {
  margin-top: 100px;
}
.jobMainSect-dl {
  padding-left: 20px;
}
.jobMainSect-dl-item {
  display: flex;
}
.jobMainSect-dl-item + .jobMainSect-dl-item {
  margin-top: 20px;
}
.jobMainSect-dl-item dt {
  width: 120px;
}
@media (max-width: 767px) {
  .jobMainSect-dl-item dt {
    width: 100px;
  }
}
.jobMainSect-dl-item dd {
  flex: 1;
}

.contactContents {
  position: relative;
  background: #f2f5f7;
  border-radius: 40px;
  margin-bottom: 120px;
  padding: 80px 10%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactContents {
    padding: 60px 3%;
  }
}
@media (max-width: 767px) {
  .contactContents {
    padding: 40px 5%;
  }
}
.contactContents-require {
  position: absolute;
  right: 30px;
  top: -0.8em;
  background: #dd2d2d;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  font-weight: bold;
}

.contactLead {
  margin-block: 60px;
}
.contactLead a {
  text-decoration: underline;
  color: var(--linkColor);
  text-underline-offset: 4px;
}

.contactTable {
  margin-bottom: 40px;
}
.contactTable th {
  width: 25%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable th {
    padding: 15px;
    width: 30%;
  }
}
@media (max-width: 767px) {
  .contactTable th {
    width: 100%;
  }
}
.contactTable .titleicon {
  float: left;
  display: block;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .contactTable .titleicon {
    line-height: 1.2;
  }
}
.contactTable .titleicon.is-hissu {
  background: #c93030;
}
.contactTable .titleicon.is-nini {
  background: #3077c9;
}
.contactTable-jusho-yubinmark {
  margin-right: 5px;
}
.contactTable-jusho-yubincode {
  max-width: 130px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contactTable-jusho-input {
    margin-top: 10px;
  }
}
.contactTable input, .contactTable textarea {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .contactTable input, .contactTable textarea {
    font-size: 1rem;
  }
}
.contactTable .checkboxWrap {
  display: flex;
  flex-wrap: wrap;
}
.contactTable .checkboxWrap label {
  width: 25%;
  display: inline-block;
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .contactTable .checkboxWrap label {
    width: 46%;
    margin: 15px 0 0;
  }
}
.contactTable .checkboxWrap input[type=checkbox], .contactTable .checkboxWrap input[type=radio] {
  margin-right: 5px;
}
.contactTable .radioWrap label {
  display: inline-block;
  margin: 0 30px 0 0;
}
.contactTable .radioWrap input[type=checkbox], .contactTable .radioWrap input[type=radio] {
  margin-right: 5px;
}

.contactBtns {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
}
.contactBtns .wpcf7-spinner {
  position: absolute;
  bottom: calc(100% + 10px);
  left: calc(50% - 40px);
}

.contactPrivacy {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 40px;
}
.contactPrivacy a {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .contactPrivacy {
    font-size: 0.875rem;
  }
}

.privacyPolicy {
  display: flex;
  gap: 0 6%;
}
@media (max-width: 979px) {
  .privacyPolicy {
    flex-direction: column;
    gap: 0;
  }
}
.privacyPolicy + .privacyPolicy {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .privacyPolicy + .privacyPolicy {
    border-top: 1px solid #ccc;
    padding-top: 40px;
  }
}
.privacyPolicy-title {
  font-size: 1.4375rem;
  font-weight: bold;
  margin-bottom: 30px;
  min-width: 260px;
}
@media (max-width: 767px) {
  .privacyPolicy-title {
    min-width: none;
    font-size: 5.6vw;
    margin-bottom: 20px;
  }
}
.privacyPolicy-cont {
  flex: 1;
  font-size: 0.8125rem;
}
.privacyPolicy-cont p {
  word-break: break-all;
}

#container .wpcf7-response-output {
  padding: 20px;
  border: 2px solid #f2f2f2;
  position: fixed;
  top: 10px;
  left: 5%;
  width: 90%;
  z-index: 10;
  background: #cf1414;
  color: #fff;
  text-align: center;
  animation: hideMsg 4s forwards;
}

@keyframes hideMsg {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.newsArticles {
  margin-block: 80px;
}

.newsDetail-heading {
  margin-bottom: 30px;
}
.newsDetail-heading-time {
  display: block;
  text-align: right;
}
@media (max-width: 767px) {
  .newsDetail-heading-time {
    margin-bottom: 10px;
    font-size: 0.75rem;
  }
}
.newsDetail-title {
  margin-bottom: 40px;
  font-size: 1.75rem;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .newsDetail-title {
    font-size: 3vw;
  }
}
@media (max-width: 767px) {
  .newsDetail-title {
    font-size: 5vw;
    margin-bottom: 20px;
  }
}
