@charset "UTF-8";
/*
Theme Name: オリジナルテーマ
Theme URI:
Description: オリジナルテーマ01
Version: 1.0
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: #222222;
}
a:hover {
  opacity: 0.9;
  transition: 0.3s;
}

p, a, span, strong {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  p, a, span, strong {
    font-size: 14px;
  }
}

.sp {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
img {
  max-width: 100%;
}

.w5 {
  width: 5%;
}

.w10 {
  width: 10%;
}

.w15 {
  width: 15%;
}

.w20 {
  width: 20%;
}

.w25 {
  width: 25%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w40 {
  width: 40%;
}

.w45 {
  width: 45%;
}

.w50 {
  width: 50%;
}

.w55 {
  width: 55%;
}

.w60 {
  width: 60%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.w75 {
  width: 75%;
}

.w80 {
  width: 80%;
}

.w85 {
  width: 85%;
}

.w90 {
  width: 90%;
}

.w95 {
  width: 95%;
}

.w100 {
  width: 100%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright {
  float: right;
  margin-left: 1.5em;
}

.alignleft {
  float: left;
  margin-right: 1.5em;
}

#wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 20px 20px 0px;
  display: flex;
  justify-content: space-between;
  flex-flow: column-reverse;
}

.btn {
  display: flex;
  max-width: 360px;
  background-color: #F77D03;
  padding: 13px 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  border-radius: 25px;
  background: linear-gradient(90deg, #F77D03 0%, #FFA700 50%);
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.16);
  margin: 0 auto;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .btn {
    font-size: 14px;
  }
}
.btn::after {
  content: "";
  border: 0;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  display: inline-block;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}

.breadcrumb {
  margin-bottom: 30px !important;
  background-color: #f4f4f4;
  padding: 4px 20px 5px 20px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb ul {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb ul li {
  display: inline;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li {
    font-size: 12px;
  }
}
.breadcrumb ul li a {
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .breadcrumb ul li a {
    font-size: 12px;
  }
}
.breadcrumb ul li + li:before {
  content: ">";
  margin: 0 5px 0 8px;
}

header {
  position: fixed;
  padding: 0 50px;
  width: calc(100% - 100px);
  z-index: 10;
  top: 0;
  display: flex;
  height: 90px;
  align-items: center;
  justify-content: space-between;
  background-color: white;
}
@media screen and (max-width: 1300px) {
  header {
    padding: 0 30px;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 0;
    width: calc(100% - 55px);
    height: 55px;
  }
}

@media screen and (max-width: 768px) {
  header {
    padding: 0;
    width: calc(100% - 55px);
    height: 55px;
  }
}

header .hdrContent {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  header .hdrContent {
    margin-bottom: 0;
    height: 100%;
    padding-left: 10px;
    gap: 5px;
  }
}
header .hdrContent .logoImg {
  display: flex;
  max-width: 500px;
  height: max-content;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .logoImg {
    max-width: 200px;
  }
}
header .hdrContent .hdrNav {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrNav {
    gap: 15px;
  }
}
header .hdrContent .hdrNav #nav_global {
  display: flex;
  align-items: center;
}
header .hdrContent .hdrBtn {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn {
    gap: 10px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn {
    gap: 0;
    height: 100%;
  }
}
header .hdrContent .hdrBtn .telBtn {
  color: #F77D03;
  display: flex;
  flex-flow: column;
  gap: 4px;
  position: relative;
  padding: 0 20px 0 50px;
  line-height: 1;
  height: 60px;
  justify-content: center;
  align-items: baseline;
  border: 2px solid #F77D03;
  border-radius: 100px;
  width: 145px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn {
    width: 120px;
    padding: 0 10px 0 40px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn {
    height: 55px;
    width: 55px;
    padding: 0;
    border-radius: 0;
    border: 0;
  }
}
header .hdrContent .hdrBtn .telBtn p {
  font-size: 22px;
  margin-bottom: 2px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn p {
    display: none;
  }
}
header .hdrContent .hdrBtn .telBtn img {
  width: 25px;
  position: absolute;
  left: 20px;
  margin: auto;
  top: 17px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn img {
    left: 12px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn img {
    position: unset;
  }
}
header .hdrContent .hdrBtn .telBtn span {
  font-size: 10px;
}
@media screen and (max-width: 1300px) {
  header .hdrContent .hdrBtn .telBtn span {
    font-size: 8px;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .telBtn span {
    display: none;
  }
}
header .hdrContent .hdrBtn .contactBtn {
  width: max-content;
  background-image: unset;
  gap: 0;
  flex-flow: column;
  position: relative;
  top: 10px;
  height: 100px;
  border-radius: 0 0px 20px 20px;
  justify-content: center;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #F77D03 0%, #FFA700 50%);
  margin-top: 0;
  padding: 5px 10px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn {
    font-size: 11px;
    text-align: center;
    width: 55px;
    padding: 0;
    line-height: 1.3;
    height: 55px;
    border-radius: 0;
    top: 0;
    box-shadow: unset;
  }
}
header .hdrContent .hdrBtn .contactBtn::after {
  content: unset;
}
header .hdrContent .hdrBtn .contactBtn strong {
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn strong {
    display: none;
  }
}
header .hdrContent .hdrBtn .contactBtn span {
  font-size: 10px;
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn span {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header .hdrContent .hdrBtn .contactBtn img {
    width: 30px;
  }
}
header .gNav .nav_child {
  display: none;
}
@media screen and (min-width: 768px) {
  header .gNav .nav_child {
    margin-top: 7px;
    position: absolute;
    max-width: 220px;
  }
  header .gNav .nav_child li a {
    padding: 10px 20px;
    color: white;
    background-color: #464646;
    display: block;
    font-size: 15px;
  }
}
header .gNav ul {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1300px) {
  header .gNav ul {
    gap: 15px;
    width: max-content;
  }
}
header .gNav ul li a {
  position: relative;
  font-size: 15px;
}
header .gNav ul li a::after {
  /*アンダーラインのスタイル*/
  position: absolute;
  content: "";
  display: block;
  height: 3px;
  background-color: #F77D03;
  bottom: -15px;
  left: 0;
  /*幅を0に設定*/
  width: 0;
  /*アニメーションの速度設定*/
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header .gNav ul li a:hover::after {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  header .gNav ul li a::after {
    content: unset;
  }
}
@media screen and (max-width: 1300px) {
  header .gNav ul li a {
    font-size: 13px;
  }
}
header .gNav ul li a.current {
  position: relative;
}
header .gNav ul li a.current::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  height: 2px;
  background-color: #00053A;
}
header .gNav ul li .btn_parent {
  cursor: pointer;
}
@media screen and (max-width: 1000px) {
  header {
    /* グローバルナビゲーション(SP)  */
  }
  header .gNav ul {
    display: unset;
  }
  header .gNav ul li a.current {
    position: unset;
  }
  header .gNav ul li a.current::after {
    content: unset;
  }
  header #nav_global {
    position: relative;
    z-index: 1001;
  }
  header #nav_global dt {
    position: fixed;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 10px;
    color: white;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #F77D03;
  }
  header #nav_global dt #btn_navcon {
    position: absolute;
    z-index: 1001;
    top: 17px;
    right: 12px;
    width: 30px;
    cursor: pointer;
  }
  header #nav_global dt ul {
    width: auto;
    height: 23px;
    list-style: none;
    margin: 0 auto 6px;
  }
  header #nav_global dt ul li {
    width: auto;
    height: 3px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background-color: white;
    margin: 0 0 6px;
  }
  header #nav_global dt.is_active {
    width: 380px;
    height: 100vh;
    border-radius: 0;
  }
  header #nav_global dt.is_active li:nth-child(2) {
    opacity: 0;
  }
  header #nav_global dt.is_active li {
    -webkit-transform: translatey(8px) rotate(45deg);
    transform: translatey(8px) rotate(45deg);
  }
  header #nav_global dt.is_active li:nth-child(3) {
    -webkit-transform: translatey(-10px) rotate(-45deg);
    transform: translatey(-10px) rotate(-45deg);
  }
  header #nav_global dd {
    position: fixed;
    top: 95px;
    right: -380px;
    width: 380px;
    height: 100vh;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    opacity: 0;
    overflow: visible;
    font-family: YakuHanJP, "Noto Sans Bold", sans-serif;
    letter-spacing: 0.1em;
    color: white;
  }
  header #nav_global dd ul {
    position: relative;
    z-index: 1001;
    width: auto;
    list-style: none;
  }
  header #nav_global dd ul li {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border-bottom: 1px solid white;
    font-size: 15px;
  }
  header #nav_global dd ul li a, header #nav_global dd ul li span {
    display: block;
    width: auto;
    cursor: pointer;
    padding: 22px;
    color: white;
  }
  header #nav_global dd ul a.is_current, header #nav_global dd ul a:hover, header #nav_global dd ul span.is_current, header #nav_global dd ul span:hover {
    background-color: #F77D03;
    mix-blend-mode: multiply;
  }
  header #nav_global dd ul a:after, header #nav_global dd ul span:after {
    float: right;
    font-family: FontAwesome;
    font-weight: bold;
  }
  header #nav_global dd ul span:after {
    content: "\f107";
  }
  header #nav_global dd .btn_parent {
    cursor: pointer;
  }
  header #nav_global dd .btn_parent.is_open_2 {
    color: white;
    background-color: #F77D03;
  }
  header #nav_global dd .btn_parent.is_open_2:after {
    content: "\f106";
  }
  header #nav_global dd ul.nav_child {
    display: none;
    width: auto;
    background-color: #88c848;
  }
  header #nav_global dd ul.nav_child li {
    border-top: 1px solid #ddd;
    border-bottom: none;
  }
  header #nav_global dd ul.nav_child a {
    padding: 15px 42px 15px 50px;
  }
  header #nav_global dd > ul:first-child {
    padding-bottom: 100px;
  }
  header #nav_global dd.is_open {
    right: 0;
    opacity: 1;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  header #nav_global dd.is_open::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.9) !important;
    height: 60px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed {
    height: 55px;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent {
    margin-bottom: 0px;
  }
  header.is-fixed .hdrContent .logoImg {
    max-width: 430px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  header.is-fixed .hdrContent .logoImg {
    position: unset;
  }
}
@media screen and (min-width: 768px) {
  header.is-fixed .hdrContent .hdrBtn .telBtn {
    gap: 0px;
    height: 40px;
  }
  header.is-fixed .hdrContent .hdrBtn .telBtn img {
    top: 7px;
  }
  header.is-fixed .gNav ul li a, header.is-fixed .gNav ul li span {
    font-size: 13px;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  header.is-fixed .gNav ul li a.current::after, header.is-fixed .gNav ul li span.current::after {
    bottom: -2px;
  }
}
@media screen and (max-width: 1000px) {
  header.is-fixed {
    background-color: rgba(255, 255, 255, 0.9);
  }
}
header.is-fixed .hdrBtn .contactBtn {
  top: 25px;
}
@media screen and (max-width: 1000px) {
  header.is-fixed .hdrBtn .contactBtn {
    top: 0px;
  }
}

/* トップへ戻るボタン */
#page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  font-weight: bold;
  padding: 5px;
  text-align: center;
  background: #F77D03;
  color: #fff;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  font-size: 11px;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 50;
}
#page_top img {
  width: 20px;
}
#page_top:hover {
  background: #009d9d;
}

.sidebar a {
  color: #222222;
}

/* 20250402 */
/*.fv-content {
  display: flex;
  max-width: 1600px;
  margin: 0 auto;
  gap: 30px;
  justify-content: space-between;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .fv-content {
    flex-flow: column;
    padding: 0;
  }
}
.fv-content .copy-news {
  margin-top: 90px;
  display: flex;
  flex-flow: column;
  height: calc(100vh - 140px);
  justify-content: space-around;
  gap: 150px;
  max-width: 50%;
  min-width: 50%;
}
@media screen and (max-width: 1000px) {
  .fv-content .copy-news {
    margin-top: 55px;
    height: calc(100vh - 100px);
  }
}
.fv-content .catchCopy {
  position: relative;
  padding: 0;
  width: 130%;
  top: 60px;
}
@media screen and (max-width: 767px) {
  .fv-content .catchCopy {
    position: absolute;
    bottom: 110px;
    top: unset;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    display: flex !important;
    justify-content: center;
  }
}
.fv-content .catchCopy::before {
  content: "";
  position: absolute;
  width: 74vw;
  height: 740px;
  background-color: #FFF1DE;
  border-radius: 50%;
  top: -460px;
  left: -160px;
  z-index: -1;
  max-width: 900px;
}
@media screen and (min-width: 1300px) {
  .fv-content .catchCopy::before {
    max-width: 1090px;
    left: -190px;
    top: -440px;
  }
}
@media screen and (max-width: 1000px) {
  .fv-content .catchCopy::before {
    width: 90vw;
    left: -210px;
    top: -510px;
  }
}
@media screen and (max-width: 767px) {
  .fv-content .catchCopy::before {
    content: unset;
  }
}
.fv-content .catchCopy .catchCopy-list {
  display: flex;
  flex-flow: column;
  align-items: baseline;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  .fv-content .catchCopy .catchCopy-list {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .fv-content .catchCopy .catchCopy-list {
    align-items: center;
  }
}
.fv-content .catchCopy .catchCopy-list p {
  font-family: "Noto Serif JP", sans-serif;
  display: inline-block;
  background-color: white;
  padding: 15px;
  font-size: clamp(1.563rem, -0.652rem + 4.62vw, 2.813rem);
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fv-content .catchCopy .catchCopy-list p {
    padding: 10px;
    font-size: clamp(0.938rem, 0.266rem + 3.36vw, 1.875rem);
  }
}
.fv-content .catchCopy .catchCopy-list p span {
  font-size: clamp(2.063rem, -0.152rem + 4.62vw, 3.313rem);
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  .fv-content .catchCopy .catchCopy-list p span {
    font-size: clamp(1.25rem, 0.355rem + 4.47vw, 2.5rem);
  }
}
.fv-content .news {
  display: flex;
  gap: 20px;
  flex-flow: column;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv-content .news {
    flex-flow: column;
    gap: 20px;
    width: calc(100% - 40px);
    padding: 0 20px;
  }
}
.fv-content .news .section-header {
  margin-bottom: 0;
  padding: 0;
  font-size: 25px;
}
.fv-content .news .news-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fv-content .news .news-title .btn {
  background-color: transparent;
  color: #333333;
  padding: 0;
  padding-right: 60px;
  font-size: 15px;
  margin: 0;
  border-radius: 0;
  background: unset;
  box-shadow: unset;
}
.fv-content .news .news-title .btn::after {
  content: unset;
}
.fv-content .news .news-title .btn::before {
  content: "";
  position: absolute;
  background-image: url(./images/common/read-more.svg);
  width: 46px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}
.fv-content .news .news-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv-content .news .news-content {
    margin-top: 20px;
  }
}
.fv-content .news .news-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dotted #707070;
  padding: 10px 5px;
}
@media screen and (max-width: 1000px) {
  .fv-content .news .news-content ul li {
    align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
  .fv-content .news .news-content ul li {
    flex-flow: column;
    gap: 5px;
  }
}
.fv-content .news .news-content ul li .news-date {
  font-size: 15px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  .fv-content .news .news-content ul li .news-date {
    font-size: 13px;
  }
}
.fv-content .news .news-content ul li .news-cate {
  font-size: 14px;
  min-width: 80px;
  color: #F77D03;
  border: 1px solid #F77D03;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
  .fv-content .news .news-content ul li .news-cate {
    font-size: 12px;
  }
}

.fv-content .mainVisual {
  position: relative;
  margin-top: 90px;
  padding: 0;
  height: calc(100vh - 140px);
  z-index: -1;
  min-height: 630px;
}
.fv-content .mainVisual {
  position: relative;
  margin-top: 90px;
  padding: 0;
  height: 100vh;
  z-index: -1;
  min-height: 630px;
}

@media screen and (max-width: 1000px) {
  .fv-content .mainVisual {
    margin-top: 55px;
  }
}
@media screen and (max-width: 767px) {
  .fv-content .mainVisual {
    height: 90vw;
    min-height: 360px;
  }
}
.fv-content .mainVisual .mainVisual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
@media screen and (max-width: 767px) {
  .fv-content .mainVisual .mainVisual-img {
    max-width: 100%;
  }
}*/

/* 20250402 */
.mainVisual {
  position: relative;
  margin-top: 90px;
  /*padding: 0 50px;*/
  padding: 0px;
  height: 91vh;
}
@media screen and (max-width: 1300px) {
  .mainVisual {
  /*padding: 0 30px;*/
  padding: 0px;
  }
}
@media screen and (max-width: 1000px) {
  .mainVisual {
  height: 55vw;
  /*padding: 0 0 0 30px;*/
  padding: 0px;
  margin-top: 55px;
  }
}
.mainVisual .mainVisual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}
.mainVisual .catchCopy {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  display: flex;
  flex-flow: column;
  align-items: start;
  justify-content: center;
  gap: 15px;
  margin: 0 50px;
}
@media screen and (max-width: 767px) {
  .mainVisual .catchCopy {
    margin: 0 20px;
  top: 0px;
  left: 10px;
  }
}
.mainVisual .catchCopy p {
  font-size: 45px;
  font-weight: 400;
  letter-spacing: 5px;
  line-height: 70px;
  color: #ffffff;
  text-shadow: 2px 2px 5px #1e1e1e;
  text-align: left;
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy p {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  line-height: 30px;
  color: #ffffff;
  text-shadow: 2px 2px 5px #1e1e1e;
  text-align: left;
  }
}
.mainVisual .catchCopy .catchCopy-list {
  display: flex;
  gap: 15px;
  flex-flow: column;
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy .catchCopy-list {
    gap: 5px;
  }
}
.mainVisual .catchCopy .catchCopy-list span {
  background-color: #DFA874;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(7.5rem, -1.25rem + 17.5vw, 11.875rem);
  padding: 5px 10px;
  text-align: center;
  border-radius: 5px;
  font-size: clamp(0.813rem, -0.063rem + 1.75vw, 1.25rem);
}
@media screen and (max-width: 500px) {
  .mainVisual .catchCopy .catchCopy-list span {
    width: calc(100% - 20px);
  }
}

/* 20250402 */
.news {
  display: flex;
  gap: 20px;
  flex-flow: column;
  padding: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
.news {
    flex-flow: column;
    gap: 20px;
    width: calc(100% - 60px);
    padding: 0 20px;
  }
}
.news .section-header {
  margin-bottom: 0;
  padding: 0;
  font-size: 25px;
}
@media screen and (max-width: 767px) {
.news h2.section-header {
  margin-bottom: 0;
  padding: 0;
  font-size: 30px;
}
}
.news .news-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news .news-title .btn {
  background-color: transparent;
  color: #333333;
  padding: 0;
  padding-right: 60px;
  font-size: 15px;
  margin: 0;
  border-radius: 0;
  background: unset;
  box-shadow: unset;
}
@media screen and (max-width: 767px) {
.news .news-title .btn {
  background-color: transparent;
  color: #333333;
  padding: 0;
  padding-right: 60px;
  font-size: 15px;
  margin: 0px 0px -25px 0px;
  border-radius: 0;
  background: unset;
  box-shadow: unset;
}
}
.news .news-title .btn::after {
  content: unset;
}
.news .news-title .btn::before {
  content: "";
  position: absolute;
  background-image: url(./images/common/read-more.svg);
  width: 46px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  right: 0;
}
.news .news-content {
  width: 100%;
}
@media screen and (max-width: 767px) {
.news .news-content {
    margin-top: 20px;
  }
}
.news .news-content ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px dotted #707070;
  padding: 10px 5px;
}
@media screen and (max-width: 1000px) {
.news .news-content ul li {
    align-items: baseline;
  }
}
@media screen and (max-width: 767px) {
.news .news-content ul li {
    flex-flow: column;
    gap: 5px;
  }
}
.news .news-content ul li .news-date {
  font-size: 15px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
.news .news-content ul li .news-date {
    font-size: 13px;
  }
}
.news .news-content ul li .news-cate {
  font-size: 14px;
  min-width: 80px;
  color: #F77D03;
  border: 1px solid #F77D03;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
}
@media screen and (max-width: 1000px) {
.news .news-content ul li .news-cate {
    font-size: 12px;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 30px 0;
}
.container .section-header {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  padding: 0px 0 35px;
  margin-bottom: 50px;
  letter-spacing: 1px;
}
@media screen and (max-width: 1000px) {
  .container .section-header {
    font-size: 35px;
    padding: 0px 0 25px;
  }
}
.container .section-header:before {
  position: absolute;
  content: attr(data-en);
  left: 3px;
  font-size: 20px;
  color: #F77D03;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 1000px) {
  .container .section-header:before {
    font-size: 15px;
  }
}
.container .section-header span {
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  .container .section-header span {
    font-size: 35px;
  }
}

.service {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 70px;
  position: relative;
  background-color: #EFF3F9;
  padding: 70px 0;
}
.service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(./images/top/bg-service.jpg);
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.service .section-header {
  text-align: center;
  color: #333333;
  margin-bottom: 40px;
}
.service .section-header::before {
  right: 0;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  .service .section-header {
    margin-bottom: 10px;
    font-size: 30px;
  }
}
.service .service-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 30px 0;
}
@media screen and (max-width: 1000px) {
  .service .service-content {
    padding: 33px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .service .service-content {
    padding: 40px 30px 0;
  }
}
@media screen and (max-width: 500px) {
  .service .service-content {
    padding: 33px 30px 0;
  }
}
.service .service-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  .service .service-content ul {
    gap: 30px;
  }
}
.service .service-content ul li {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  width: calc(33.3333333333% - 35px);
  border-radius: 10px;
  overflow: hidden;
  background-color: white;
}
@media screen and (max-width: 1000px) {
  .service .service-content ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  .service .service-content ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  .service .service-content ul li {
    width: 100%;
  }
}
.service .service-content ul li div a .service-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  .service .service-content ul li div a .service-img {
    height: 150px;
  }
}
.service .service-content ul li div a .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service .service-content .service-item {
  padding: 25px 20px;
}
@media screen and (max-width: 1000px) {
  .service .service-content .service-item {
    padding: 20px 15px;
  }
}
.service .service-content .service-item .service-title {
  font-size: 17px;
  margin-bottom: 5px;
  color: #F77D03;
}
.service .service-content .service-item .service-text {
  font-size: 14px;
}

.solutions {
  position: relative;
  max-width: 100%;
  margin: 70px auto 0;
  padding: 0 0px 70px;
}
@media screen and (max-width: 500px) {
  .solutions {
    padding: 0 20px 0px;
  }
}
.solutions .section-header {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .solutions .section-header {
    font-size: 30px;
  }
}
.solutions .solutions-item {
  margin-top: 70px;
  /* 前へ次への矢印カスタマイズ */
  /* 前への矢印カスタマイズ */
  /* 次への矢印カスタマイズ */
  /* 画像サイズ調整 */
}
.solutions .solutions-item ul li {
  background-color: white;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.solutions .solutions-item ul li .solutions-img {
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .solutions .solutions-item ul li .solutions-img {
    height: 250px;
  }
}
.solutions .solutions-item ul li .solutions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solutions .solutions-item ul li .solutions-wrap {
  padding: 25px 20px;
  min-height: 120px;
}
@media screen and (max-width: 767px) {
  .solutions .solutions-item ul li .solutions-wrap {
    min-height: unset;
  }
}
.solutions .solutions-item ul li .solutions-wrap .solutions-title {
  font-size: 17px;
  margin-bottom: 5px;
  height: 50px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  .solutions .solutions-item ul li .solutions-wrap .solutions-title {
    height: auto;
  }
}
.solutions .solutions-item ul li .solutions-wrap .solutions-text {
  font-size: 14px;
}
.solutions .solutions-item .swiper-button-prev,
.solutions .solutions-item .swiper-button-next {
  height: 50px;
  width: 50px;
  margin-top: -90px;
}
.solutions .solutions-item .swiper-button-prev::after,
.solutions .solutions-item .swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}
.solutions .solutions-item .swiper-button-prev::after {
  background-image: url(./images/top/slide-prev.svg);
}
.solutions .solutions-item .swiper-button-next::after {
  background-image: url(./images/top/slide-next.svg);
}
.solutions .solutions-item .swiper-slide img {
  height: auto;
  width: 100%;
}

.office {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin-top: 70px;
}
.office .office-content {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #F77D03 0%, #FFA700 50%);
  justify-content: flex-end;
}
@media screen and (max-width: 1000px) {
  .office .office-content {
    flex-flow: column-reverse;
  }
}
.office .office-content img {
  max-width: 52vw;
  width: 100%;
  object-fit: cover;
  height: 560px;
}
@media screen and (max-width: 1000px) {
  .office .office-content img {
    max-width: 100%;
    height: 60vw;
  }
}
.office .office-content .office-item {
  padding: 40px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  height: max-content;
  gap: 40px;
  max-width: 500px;
}
@media screen and (max-width: 1000px) {
  .office .office-content .office-item {
    max-width: 100%;
  }
}
.office .office-content .office-item .office-header .section-header {
  margin: 0;
  color: white;
  padding: 0px 0 30px;
}
@media screen and (max-width: 767px) {
  .office .office-content .office-item .office-header .section-header {
    font-size: 30px;
  }
}
.office .office-content .office-item .office-header .section-header::before {
  top: unset;
  bottom: 0;
  color: white;
}
.office .office-content .office-item p {
  color: white;
}
.office .btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  width: calc(100% - 40px);
  max-width: 100%;
  background: transparent;
  box-shadow: unset;
  margin-top: 0;
}
@media screen and (max-width: 1000px) {
  .office .btn {
    margin-top: 0;
  }
}

.column {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  margin-top: 70px;
}
.column .column-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0px 20px 50px;
}
.column .column-content .column-header .section-header {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .column .column-content .column-header .section-header {
    font-size: 30px;
  }
}
.column .column-content .column-header .section-header::before {
  top: unset;
  bottom: 0;
}
.column .column-content .column-item {
  margin-top: 50px;
}
.column .column-content .column-item ul {
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .column .column-content .column-item ul {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .column .column-content .column-item ul {
    flex-flow: column;
  }
}
.column .column-content .column-item ul li {
  border: 1px solid #F77D03;
  padding: 20px 20px;
  background-color: white;
  border-radius: 0 30px 0;
  max-width: 400px;
}
@media screen and (max-width: 1000px) {
  .column .column-content .column-item ul li {
    padding: 15px;
    max-width: 100%;
  }
}
.column .column-content .column-item ul li div {
  display: flex;
  gap: 10px;
  flex-flow: column;
}
.column .column-content .column-item ul li .column-title {
  position: relative;
  font-weight: 700;
  color: #F77D03;
  font-size: 16px;
}
.column .column-content .column-item ul li .column-date {
  color: #959595;
}
.column .column-content .column-item ul li .column-text {
  margin-top: 10px;
  font-size: 15px;
}
.column .column-content .column-item ul li .column-btn {
  display: flex;
  margin-top: 10px;
  align-items: end;
}
.column .column-content .column-item ul li .column-btn img {
  width: 40px;
}

.page-content,
.archive-content,
.single-content {
  margin-top: 95px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1000px) {
  .page-content,
  .archive-content,
  .single-content {
    margin-top: 55px;
    padding-bottom: 0px;
  }
}
.page-content .page-head,
.archive-content .page-head,
.single-content .page-head {
  position: relative;
  width: 100%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .page-content .page-head,
  .archive-content .page-head,
  .single-content .page-head {
    height: 200px;
  }
}
.page-content .page-head::after,
.archive-content .page-head::after,
.single-content .page-head::after {
  content: "";
  background-color: #F77D03;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-content .page-head img,
.archive-content .page-head img,
.single-content .page-head img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.page-content .page-head h1,
.archive-content .page-head h1,
.single-content .page-head h1 {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  z-index: 5;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .page-content .page-head h1,
  .archive-content .page-head h1,
  .single-content .page-head h1 {
    font-size: 25px;
  }
}
.page-content main,
.archive-content main,
.single-content main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: white;
}
.page-content main h2,
.archive-content main h2,
.single-content main h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  background-color: #F77D03;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .page-content main h2,
  .archive-content main h2,
  .single-content main h2 {
    font-size: 19px;
  }
}
.page-content main h3,
.archive-content main h3,
.single-content main h3 {
  padding-left: 30px;
  position: relative;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-content main h3,
  .archive-content main h3,
  .single-content main h3 {
    font-size: 19px;
  }
}
.page-content main h3::before,
.archive-content main h3::before,
.single-content main h3::before {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  width: 20px;
  left: 0;
  height: 10px;
  border-top: solid 5px #F77D03;
}
.page-content main h4,
.archive-content main h4,
.single-content main h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  .page-content main h4,
  .archive-content main h4,
  .single-content main h4 {
    font-size: 16px;
  }
}
.page-content main h5,
.archive-content main h5,
.single-content main h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main h5,
  .archive-content main h5,
  .single-content main h5 {
    font-size: 15px;
  }
}
.page-content main h6,
.archive-content main h6,
.single-content main h6 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: #777777;
}
@media screen and (max-width: 767px) {
  .page-content main h6,
  .archive-content main h6,
  .single-content main h6 {
    font-size: 12px;
  }
}
.page-content main p,
.archive-content main p,
.single-content main p {
  margin-bottom: 15px;
  word-break: break-word;
}
.page-content main ul, .page-content main ol,
.archive-content main ul,
.archive-content main ol,
.single-content main ul,
.single-content main ol {
  margin-bottom: 15px;
}
.page-content main table,
.archive-content main table,
.single-content main table {
  width: 100%;
  margin-bottom: 70px;
  background-color: white;
}
.page-content main table tr:last-child,
.archive-content main table tr:last-child,
.single-content main table tr:last-child {
  border-bottom: solid 1px #ccc;
}
.page-content main table tr:nth-child(odd) td,
.archive-content main table tr:nth-child(odd) td,
.single-content main table tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
.page-content main table th, .page-content main table td,
.archive-content main table th,
.archive-content main table td,
.single-content main table th,
.single-content main table td {
  vertical-align: middle;
}
.page-content main table th,
.archive-content main table th,
.single-content main table th {
  background: #e8e8e8;
  text-align: center;
  font-weight: bold;
  color: #3e3a39;
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-content main table th,
  .archive-content main table th,
  .single-content main table th {
    padding: 8px;
  }
}
.page-content main table td,
.archive-content main table td,
.single-content main table td {
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .page-content main table td,
  .archive-content main table td,
  .single-content main table td {
    padding: 8px;
    font-size: 13px;
  }
}
.page-content main .table2,
.archive-content main .table2,
.single-content main .table2 {
  margin-bottom: 50px;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .page-content main .table2,
  .archive-content main .table2,
  .single-content main .table2 {
    width: 100%;
  }
}
.page-content main .table2 tr:last-child,
.archive-content main .table2 tr:last-child,
.single-content main .table2 tr:last-child {
  border-bottom: solid 1px #ccc;
}
.page-content main .table2 tr:nth-child(odd) td,
.archive-content main .table2 tr:nth-child(odd) td,
.single-content main .table2 tr:nth-child(odd) td {
  background-color: #f7f7f7;
}
@media screen and (max-width: 767px) {
  .page-content main .table2 th, .page-content main .table2 td,
  .archive-content main .table2 th,
  .archive-content main .table2 td,
  .single-content main .table2 th,
  .single-content main .table2 td {
    display: block;
    width: 100% !important;
    border-bottom: none !important;
    word-break: break-word;
  }
}
.page-content main .table2 th,
.archive-content main .table2 th,
.single-content main .table2 th {
  background: #e8e8e8;
  width: 25%;
  text-align: center;
  font-weight: bold;
  color: #3e3a39;
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .table2 td,
.archive-content main .table2 td,
.single-content main .table2 td {
  padding: 15px;
  border: solid 1px #dadada;
  box-sizing: border-box;
}
.page-content main .row,
.archive-content main .row,
.single-content main .row {
  display: flex;
  gap: 50px;
}
.page-content main .page-number,
.archive-content main .page-number,
.single-content main .page-number {
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number,
  .archive-content main .page-number,
  .single-content main .page-number {
    margin-top: 50px;
    gap: 5px;
  }
}
.page-content main .page-number .page-numbers,
.archive-content main .page-number .page-numbers,
.single-content main .page-number .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F77D03;
  color: #F77D03;
  font-size: 14px;
  margin-bottom: 0;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-content main .page-number .page-numbers,
  .archive-content main .page-number .page-numbers,
  .single-content main .page-number .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 12px;
  }
}
.page-content main .page-number .page-numbers.current,
.archive-content main .page-number .page-numbers.current,
.single-content main .page-number .page-numbers.current {
  background-color: #F77D03;
  color: white;
}

#service {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#service main {
  background-color: #f7f7f7;
}
#service .section-header {
  text-align: center;
  color: #F77D03;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#service .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #F77D03;
  right: 0;
  bottom: -35px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #service .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#service .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #F77D03;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #service .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #service .section-header {
    font-size: 30px;
  }
}
#service .service-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #service .service-content {
    margin-top: 110px;
  }
}
#service .service-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
@media screen and (max-width: 1000px) {
  #service .service-content ul {
    gap: 30px;
  }
}
#service .service-content ul li {
  width: calc(33.3333333333% - 35px);
}
@media screen and (max-width: 1000px) {
  #service .service-content ul li {
    width: calc(33.3333333333% - 20px);
  }
}
@media screen and (max-width: 767px) {
  #service .service-content ul li {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 500px) {
  #service .service-content ul li {
    width: 100%;
  }
}
#service .service-content ul li div a .service-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #service .service-content ul li div a .service-img {
    height: 150px;
  }
}
#service .service-content ul li div a .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service .service-content .service-item {
  position: relative;
  background-color: white;
  padding: 25px 20px;
}
@media screen and (max-width: 1000px) {
  #service .service-content .service-item {
    padding: 20px 15px;
  }
}
#service .service-content .service-item .service-title {
  font-size: 17px;
  margin-bottom: 5px;
}
#service .service-content .service-item .service-text {
  font-size: 14px;
}

#solutions {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#solutions main {
  background-color: #f7f7f7;
}
#solutions .section-header {
  text-align: center;
  color: #F77D03;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#solutions .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #F77D03;
  right: 0;
  bottom: -35px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #solutions .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#solutions .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #F77D03;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #solutions .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #solutions .section-header {
    font-size: 30px;
  }
}
#solutions .solutions-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #solutions .solutions-content {
    margin-top: 110px;
  }
}
#solutions .solutions-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
#solutions .solutions-content ul li {
  width: 100%;
}
#solutions .solutions-content ul li div a .solutions-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #solutions .solutions-content ul li div a .solutions-img {
    height: 150px;
  }
}
#solutions .solutions-content ul li div a .solutions-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#solutions .solutions-content .solutions-number {
  font-size: 30px;
  color: #F77D03;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #solutions .solutions-content .solutions-number {
    font-size: 23px;
  }
}
#solutions .solutions-content .solutions-item {
  position: relative;
  background-color: white;
  padding: 30px;
}
#solutions .solutions-content .solutions-item h3 {
  font-size: 19px;
}
#solutions .solutions-content .solutions-item p {
  margin: 0;
}
#solutions .solutions-content .solutions-item .solutions-q {
  margin-bottom: 40px;
}

#faq {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#faq main {
  background-color: #f7f7f7;
}
#faq .section-header {
  text-align: center;
  color: #F77D03;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#faq .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #F77D03;
  right: 0;
  bottom: -35px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #faq .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#faq .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #F77D03;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #faq .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #faq .section-header {
    font-size: 30px;
  }
}
#faq .faq-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #faq .faq-content {
    margin-top: 110px;
  }
}
#faq .faq-content ul {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}
#faq .faq-content ul li {
  width: 100%;
}
#faq .faq-content ul li h3 {
  padding: 0;
  padding-bottom: 15px;
  color: #F77D03;
  border-bottom: 1px solid #F77D03;
}
#faq .faq-content ul li h3::before {
  content: unset;
}
#faq .faq-content ul li a .faq-img {
  width: 100%;
  height: 250px;
}
@media screen and (max-width: 1000px) {
  #faq .faq-content ul li a .faq-img {
    height: 150px;
  }
}
#faq .faq-content ul li a .faq-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#faq .faq-content .faq-item {
  position: relative;
  background-color: white;
  padding: 30px;
}
#faq .faq-content .faq-item h3 {
  font-size: 19px;
}
#faq .faq-content .faq-item p {
  margin: 0;
}

#pricelist {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: #f7f7f7;
}
#pricelist main {
  background-color: #f7f7f7;
}
#pricelist .section-header {
  text-align: center;
  color: #F77D03;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 0;
}
#pricelist .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #F77D03;
  right: 0;
  bottom: -35px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #pricelist .section-header::before {
    font-size: 15px;
    bottom: -30px;
  }
}
#pricelist .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #F77D03;
  top: 100px;
}
@media screen and (max-width: 767px) {
  #pricelist .section-header::after {
    top: 85px;
  }
}
@media screen and (max-width: 767px) {
  #pricelist .section-header {
    font-size: 30px;
  }
}
#pricelist .pricelist-content {
  padding: 0;
  margin-top: 130px;
}
@media screen and (max-width: 767px) {
  #pricelist .pricelist-content {
    margin-top: 110px;
  }
}

#column .column-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#column .column-content li .column-date {
  font-size: 15px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #column .column-content li .column-date {
    font-size: 13px;
  }
}
#column .column-content li a {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
#column .column-content li a .column-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#column .column-content li a .column-text {
  margin-bottom: 0;
}

#office {
  max-width: 100%;
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  background-color: rgba(194, 215, 219, 0.2);
}
#office main {
  background-color: transparent;
}
#office .section-header {
  text-align: center;
  color: #F77D03;
  background-color: transparent;
  font-size: 40px;
  position: relative;
  padding: 30px 0 40px 0;
}
#office .section-header::before {
  position: absolute;
  content: attr(data-en);
  left: 0;
  font-size: 20px;
  color: #F77D03;
  right: 0;
  top: 0;
  color: #F77D03;
}
#office .section-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1px;
  height: 30px;
  background-color: #F77D03;
  bottom: 0px;
}
@media screen and (max-width: 767px) {
  #office .section-header {
    font-size: 30px;
  }
}
#office .office-content {
  padding: 0;
  margin-top: 50px;
}
#office .office-content .office-about {
  display: flex;
  align-items: flex-end;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  #office .office-content .office-about {
    flex-flow: column;
  }
}
#office .office-content .office-about .office-img {
  min-width: 700px;
  height: 450px;
}
@media screen and (max-width: 1000px) {
  #office .office-content .office-about .office-img {
    min-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  #office .office-content .office-about .office-img {
    min-width: 100%;
    height: 310px;
  }
}
#office .office-content .office-about .office-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#office .office-content .office-about p {
  background-color: #F77D03;
  color: white;
  margin: 0;
  margin-left: -100px;
  margin-bottom: 30px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  #office .office-content .office-about p {
    margin: 0px;
    padding: 20px;
  }
}
#office .office-content iframe {
  width: 100%;
  height: 300px;
}
#office .breadcrumb {
  background-color: white;
}

/* 20250402 */
#news .news-content li {
  margin-bottom: 30px;
  padding: 0px 10px 30px 10px;
  border-bottom: 1px solid #d5d5d5;
}
#news .news-content li .news-date {
  font-size: 15px;
  color: #F77D03;
}
@media screen and (max-width: 767px) {
  #news .news-content li .news-date {
    font-size: 13px;
  }
}
#news .news-content li a {
  display: flex;
  flex-flow: column;
  gap: 5px;
}
#news .news-content li a .news-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}
#news .news-content li a .news-text {
  margin-bottom: 0;
}

#contact .required {
  background-color: #c70000;
  color: white;
  font-size: 10px;
  margin-left: 8px;
  padding: 2px 8px 3px 8px;
  border-radius: 50px;
  position: relative;
  top: -3px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #contact .required {
    display: block;
    width: fit-content;
    position: unset;
    margin: 5px auto 0;
    padding: 2px 7px;
  }
}
#contact .privacy-scrollBox {
  height: 200px;
  overflow-y: scroll;
  padding: 10px;
  width: calc(100% - 20px);
  border: 1px solid #d5d5d5;
}
#contact .mb0 {
  margin-bottom: 0;
}
#contact table {
  width: 100%;
}
#contact table th {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  #contact table th {
    width: 70px;
    padding: 10px 5px;
  }
}
#contact input, #contact textarea {
  padding: 6px 10px;
  outline: unset;
  border: 1px solid #dfdfdf;
  border-radius: 5px;
}
#contact textarea {
  width: calc(100% - 20px);
}
#contact input {
  margin: 0px 2px 10px 2px;
}
#contact input:last-child {
  margin-bottom: 0;
}
#contact .privacy-check input {
  margin: 0px 5px 0px 0px;
}
#contact .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
#contact .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #F77D03;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}
#contact .submit-btn .send_btn2 {
  display: none;
}

.mw_wp_form_confirm .required {
  display: none;
}
.mw_wp_form_confirm .submit-btn {
  margin: 0 auto;
  display: flex;
  margin-top: 40px;
  gap: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.mw_wp_form_confirm .submit-btn input {
  margin: 0;
  width: 200px;
  background-color: #F77D03;
  border: 0;
  color: white;
  cursor: pointer;
  font-weight: 700;
  border-radius: 100px;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 5px;
  display: flex;
  justify-content: center;
}

.mw_wp_form_complete .btm-txt {
  text-align: center;
  line-height: 2.5;
}

.banner {
  width: 100%;
  background-color: #F77D03;
}
.banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.banner .banner-content ul {
  display: flex;
  gap: 30px;
  flex-flow: wrap;
}
@media screen and (max-width: 500px) {
  .banner .banner-content ul {
    flex-flow: column;
  }
}
.banner .banner-content ul li {
  width: calc(50% - 20px);
  background-color: white;
}
@media screen and (max-width: 500px) {
  .banner .banner-content ul li {
    width: 100%;
  }
}
.banner .banner-content ul li a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  padding-right: 50px;
}
@media screen and (max-width: 1000px) {
  .banner .banner-content ul li a {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a {
    flex-flow: column;
    padding: 0;
    align-items: baseline;
    gap: 0;
  }
}
.banner .banner-content ul li a img {
  object-fit: cover;
  width: 230px;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .banner .banner-content ul li a img {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a img {
    width: 100%;
    height: 150px;
  }
}
.banner .banner-content ul li a p {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a p {
    padding: 15px 15px 30px 15px;
  }
}
.banner .banner-content ul li a .footer-banner-title {
  color: #F77D03;
  font-weight: 700;
  font-size: 17px;
}
.banner .banner-content ul li a .arrow {
  display: inline-block;
  vertical-align: middle;
  color: #F77D03;
  line-height: 1;
  position: absolute;
  width: 30px;
  height: 1px;
  background: currentColor;
  position: absolute;
  right: 10px;
}
.banner .banner-content ul li a .arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .banner .banner-content ul li a .arrow {
    bottom: 20px;
    right: 10px;
  }
}

.contact {
  text-align: center;
  padding-top: 100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #F2F2F2;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 50px 20px;
  }
}
.contact .contact-content {
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact .contact-header .section-header {
    font-size: 30px;
  }
}
.contact .contact-header p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .contact .contact-header p br {
    display: none;
  }
}
.contact .contact-item {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 1000px) {
  .contact .contact-item {
    flex-flow: column;
    gap: 30px;
  }
}
.contact .contact-item .contactBtn, .contact .contact-item .telBtn {
  height: 80px;
  width: calc(50% - 40px);
  max-width: unset;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  margin: 0;
}
@media screen and (max-width: 1000px) {
  .contact .contact-item .contactBtn, .contact .contact-item .telBtn {
    width: calc(100% - 40px);
    height: 50px;
  }
}
.contact .contact-item .telBtn {
  border: 1px solid #F77D03;
  color: #F77D03;
}
.contact .contact-item .telBtn div {
  text-align: left;
}
.contact .contact-item .telBtn p {
  font-size: 40px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .telBtn p {
    font-size: 28px;
  }
}
.contact .contact-item .telBtn span {
  font-size: 13px;
}
.contact .contact-item .telBtn img {
  width: 40px;
  margin-right: 20px;
  margin-top: 0px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .telBtn img {
    width: 30px;
    margin-right: 12px;
  }
}
.contact .contact-item .contactBtn {
  background-color: white;
  color: white;
  border: 0;
}
.contact .contact-item .contactBtn::after {
  content: unset;
}
.contact .contact-item .contactBtn span {
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .contactBtn span {
    font-size: 25px;
  }
}
.contact .contact-item .contactBtn img {
  width: 40px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .contact .contact-item .contactBtn img {
    width: 30px;
    margin-right: 10px;
  }
}

footer .ftrContent {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px 50px;
  text-align: center;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .ftrContent {
    flex-flow: column;
  }
}
footer .ftrContent > div {
  text-align: left;
}
footer .ftrContent .logoImg {
  display: inline-block;
  margin-bottom: 20px;
  max-width: 500px;
}
@media screen and (max-width: 767px) {
  footer .ftrContent .logoImg {
    max-width: 210px;
  }
}
footer .ftrContent p span {
  display: block;
  margin-bottom: 10px;
}
footer .ftrContent nav {
  display: flex;
  gap: 5px 20px;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  gap: 60px;
  border-left: 2px solid #F77D03;
  padding-left: 70px;
}
@media screen and (max-width: 1000px) {
  footer .ftrContent nav {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  footer .ftrContent nav {
    border-left: 0;
    padding-left: 0px;
  }
}
@media screen and (max-width: 500px) {
  footer .ftrContent nav {
    flex-flow: column;
    align-items: baseline;
    width: 100%;
    gap: 20px;
  }
}
footer .ftrContent nav ul {
  display: flex;
  flex-flow: column;
  align-items: baseline;
  gap: 20px;
}
footer .ftrContent nav ul li {
  position: relative;
  padding-left: 20px;
  display: flex;
}
footer .ftrContent nav ul li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #F77D03;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
footer .ftrContent nav ul li a {
  font-size: 15px;
}
footer .copyright {
  padding: 10px 0;
  background: #F77D03;
  color: #fff;
}
footer .copyright p {
  text-align: center;
}/*# sourceMappingURL=style.css.map */

.page-content main table {
  table-layout: fixed; /* 必須 */
  word-break: break-word;
}
.page-content main table:not(.table2) th {
  width: 25%;
}
/* ────────────────────────────────
   ヘッダーロゴ：1.3倍サイズ・切れずに美しく
──────────────────────────────── */
header .hdrContent {
  height: 100%;
}

header .hdrContent .logoImg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  max-width: 364px;             /* 280px × 1.3 = 約364px */
  padding-right: 13px;
}

header .hdrContent .logoImg img {
  display: block;
  height: auto;
  max-height: 91px;             /* 70px × 1.3 = 約91px */
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* スクロール後（固定ヘッダー） */
header.is-fixed .hdrContent .logoImg {
  max-width: 312px;             /* 240px × 1.3 = 約312px */
}
header.is-fixed .hdrContent .logoImg img {
  max-height: 72px;             /* 55px × 1.3 = 約72px */
}

/* スマホ表示時（1000px以下） */
@media (max-width: 1000px) {
  header .hdrContent .logoImg {
    max-width: 260px;           /* 200px × 1.3 = 約260px */
    padding-right: 6px;
  }

  header .hdrContent .logoImg img {
    max-height: 65px;           /* 50px × 1.3 = 約65px */
  }
}


/* ────────────────────────────────
   フッターロゴサイズ調整（PC〜タブレット用）
──────────────────────────────── */
footer .logoImg img {
  width: auto;
  height: auto;
  max-width: 280px;     /* ← PC・タブレットでの最大幅（調整OK） */
  max-height: 40px;     /* ← 高さ制限をかけて縦に大きすぎないように */
  object-fit: contain;
  display: block;
}
@media screen and (max-width: 1024px) {
  footer .logoImg img {
    max-width: 220px;
    max-height: 35px;
  }
}


@media screen and (max-width: 767px) {
  .responsive-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: separate;
  }

  .responsive-table table,
  .responsive-table tbody,
  .responsive-table tr,
  .responsive-table td,
  .responsive-table th {
    white-space: normal !important;
    word-break: break-word !important;
  }

  .responsive-table td[rowspan],
  .responsive-table th[rowspan] {
    width: 120px !important;
    min-width: 100px !important;
  }

  .responsive-table th,
  .responsive-table td {
    font-size: 14px;
    padding: 0.5em;
  }
}
