@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*10px*/
/*12px*/
/*14px*/
/*15x*/
/*17px*/
/*20px*/
/*26px*/
/*28px*/
/*32px*/
/*42px*/
/* == boxsizing == */
*,
:hover,
:before,
:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.65;
  word-wrap: break-word;
  letter-spacing: 0.03em;
}

#main {
  min-height: calc(100vh - 190px - 175px);
}

b,
strong {
  font-weight: 700;
}

/* table */
table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  text-align: left;
}

button,
input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

input[type=password] {
  cursor: text;
}

button[disabled],
input[disabled] {
  cursor: default;
}

/* css for print */
@media print {
  body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "sans-serif";
  }
  section {
    display: block;
  }
  pre code {
    page-break-after: always;
  }
  p a,
  code,
  pre {
    word-wrap: break-word;
  }
  pre a[href]:after {
    content: "";
  }
  pre abbr[title]:after {
    content: "";
  }
  pre .ir a:after,
  pre a[href^="javascript:"]:after,
  pre a[href^="#"]:after {
    content: "";
  }
  .no_print {
    display: none;
  }
}
/* == default == */
/* sub & sup */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* animation */
a,
a:link,
a:visited,
a:before,
a:after,
a img,
input[type=submit]:not(.submitBtn),
button:not([class*=MuiButton]) {
  transition-delay: 0s;
  transition-duration: 0.25s;
  transition-property: opacity, border, background, color, width, height, font-size, padding;
  transition-timing-function: ease-in-out;
}

a {
  color: #997326;
  text-decoration: none;
}
a:hover {
  opacity: 1;
  text-decoration: underline;
}
a img:hover {
  opacity: 0.7;
}

a[target=_blank].external_link {
  padding-right: 20px;
  position: relative;
}
a[target=_blank].external_link:after {
  content: "";
  display: block;
  width: 12px;
  height: 9px;
  background: url(/images/common/ico_browser.png) center/contain no-repeat;
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
}

input {
  font-size: 100%;
}
input [type=text] {
  padding: 0.375em 1em;
}

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

textarea {
  max-width: 100%;
  min-height: 2em;
  min-width: 5em;
  width: 100%;
}

button {
  font-size: 100%;
}

ul li,
ol li {
  margin: 0 0 5px;
  padding: 0;
}

p {
  margin: 0 0 1em;
  padding: 0;
}

dl {
  display: grid;
  grid-template-columns: auto 1fr;
  flex-wrap: wrap;
  width: 100%;
}
dl dt {
  margin: 0;
  padding-bottom: 20px;
  text-align: right;
  white-space: nowrap;
}
dl dd {
  margin: 0;
  padding-bottom: 20px;
}
dl.program dt {
  padding-right: 1em;
  text-align: left;
}

/* table */
table {
  border: none;
  border-bottom: 1px solid #aaa;
  border-collapse: collapse;
  border-right: 1px solid #aaa;
  border-spacing: 0;
  margin: 0 0 2em;
  max-width: 100%;
}

table tr th,
table tr td {
  background-color: #fff;
  border-left: 1px solid #aaa;
  border-top: 1px solid #aaa;
  font-weight: 400;
  padding: 0.75em 1em;
  vertical-align: middle;
}

table tr th.empty,
table tr td.empty {
  border: none;
}

table tr th {
  vertical-align: top;
}

table tr td > p:last-child {
  margin-bottom: 0;
}
table tr td ul {
  margin: 0;
  padding-left: 2em;
}

table.full {
  width: 100%;
}

table.table_basic > tbody > tr > th {
  background-color: #f0eadf;
}
table.table_line {
  border-bottom: none;
  border-right: none;
}
table.table_line > tbody > tr {
  display: flex;
  gap: 40px;
}
table.table_line > tbody > tr:first-child th {
  border-top: 1px solid #aaa;
}
table.table_line > tbody > tr:first-child td {
  border-top: 1px solid #ddd;
}
table.table_line > tbody > tr > th,
table.table_line > tbody > tr > td {
  padding: 25px 0;
  border-top: none;
  border-left: none;
}
table.table_line > tbody > tr > th {
  min-width: 160px;
  border-bottom: 1px solid #aaa;
}
table.table_line > tbody > tr > td {
  width: 100%;
  border-bottom: 1px solid #ddd;
}
table.no_line {
  margin: 0;
  border: none;
}
table.no_line > tbody > tr > th,
table.no_line > tbody > tr > td {
  padding: 0;
  border: none;
}
table.no_line > tbody > tr > th {
  padding-right: 1em;
}
table.no_line.no_padding > tbody > tr > th {
  padding-right: 0;
}

/* base */
.pc_area {
  display: block;
}

.sp_area {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 2em 0 1em;
  font-weight: 400;
  line-height: 1.65;
}

h1 {
  font-size: 4.2rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  margin: 70px 0 20px;
  padding-top: 23px;
  font-size: 2.1rem;
  font-weight: 500;
  position: relative;
}
h3:before {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  top: 0;
  left: 0;
}

h4 {
  padding-left: 20px;
  font-size: 1.9rem;
  font-weight: 500;
  position: relative;
}
h4:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  top: calc((1.65em - 8px) / 2);
  left: 0;
}

h5 {
  font-size: 1.7rem;
  font-weight: 500;
}

h6 {
  font-size: 1.6rem;
  font-weight: 500;
}

hr {
  margin: 30px 0;
}

.width_920 {
  max-width: 920px;
  margin: 0 auto;
}
.width_720 {
  max-width: 720px;
  margin: 0 auto;
}
.width_520 {
  max-width: 520px;
  margin: 0 auto;
}

.color_gray {
  color: #808080;
}
.color_red {
  color: #e50012;
}
.color_blue {
  color: #009fe8;
}

.link_btn a,
a.link_btn {
  display: inline-block;
  min-width: 200px;
  padding: 15.125px 44px 15.125px 21px;
  color: #fff;
  border-radius: 3px;
  background-color: #555;
  text-decoration: none;
  position: relative;
  transition: ease-in-out 0.3s;
}
.link_btn a:after,
a.link_btn:after {
  content: "";
  display: block;
  width: 11.5px;
  height: 7px;
  background: url(/images/common/img_arrow.png) center/cover no-repeat;
  position: absolute;
  top: calc(50% - 3.5px);
  right: 21px;
  transition: ease-in-out 0.25s;
}
.link_btn a:hover,
a.link_btn:hover {
  background-color: #757575;
  opacity: 1;
}
.link_btn a:hover:after,
a.link_btn:hover:after {
  right: 16px;
}

.link_btn.external a:after,
a.link_btn.external:after {
  width: 12px;
  height: 9px;
  background-image: url(/images/common/ico_browser.png);
}
.link_btn.external a:hover:after,
a.link_btn.external:hover:after {
  right: 21px;
}

.link_btn.full a,
a.link_btn.full {
  display: block;
  width: 100%;
}

a.link_inpage,
.link_inpage a {
  display: inline-block;
  padding: 5px 25px 5px 0;
  color: #555;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  transition: ease-in-out 0.3s;
}
a.link_inpage:after,
.link_inpage a:after {
  content: "";
  display: block;
  width: 11.5px;
  height: 7px;
  background: url(/images/common/img_arrow.png) center/cover no-repeat;
  transform: rotate(90deg);
  position: absolute;
  top: calc(50% - 3.5px);
  right: 7px;
  transition: ease-in-out 0.25s;
}
a.link_inpage:hover,
.link_inpage a:hover {
  text-decoration: underline;
  opacity: 1;
}
a.link_inpage:hover:after,
.link_inpage a:hover:after {
  top: calc(50% - 0.5px);
}

ul.link_inpage {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.align_left {
  text-align: left;
}
.align_center {
  text-align: center;
}
.align_right {
  text-align: right;
}

.txt_medium {
  font-weight: 500;
}
.txt_semibold {
  font-weight: 600;
}
.txt_bold {
  font-weight: 700;
}
.txt_sm {
  font-size: 1.4rem;
}
.txt_xsm {
  font-size: 1.2rem;
}
.txt_md {
  font-size: 1.7rem;
}
.txt_lg {
  font-size: 2rem;
}
.txt_xl {
  font-size: 2.4rem;
}
.txt_title {
  font-size: 1.8rem;
  font-weight: 500;
}

.box_color {
  padding: 50px;
  background-color: #f0eadf;
}
.box_color p:last-child {
  margin-bottom: 0;
}
.box_border {
  padding: 50px;
  border: 1px solid #f0eadf;
}
.box_border p:last-child {
  margin-bottom: 0;
}

.note {
  font-size: 1.3rem;
  color: #808080;
}

/* layout */
.l-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.l-inner > h2:first-child,
.l-inner > * > h2:first-child {
  margin-top: 0;
}

.p-1Column,
.p-2Column {
  margin-top: 90px;
}

.p-1Column #main,
.p-2Column .content_area {
  padding: 70px 0 0;
}

.p-2Column .content_area {
  display: flex;
  flex-direction: row-reverse;
  gap: 30px clamp(40px, 4vw, 80px);
}
.p-2Column .content_area .main_area {
  width: 100%;
  max-width: 920px;
}
.p-2Column .content_area .side_area {
  width: 200px;
}

.page_title {
  display: flex;
  align-items: center;
  min-height: 175px;
  padding: 30px 0 60px;
  position: relative;
}
.page_title:after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(/images/common/img_pagetitle_border.jpg) center/cover no-repeat;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.page_title h1 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  font-family: "Jost", sans-serif;
  transition: all 0.3s;
}
.page_title h1 span {
  margin-left: 28px;
  font-size: 1.6rem;
}
.page_title.detail {
  min-height: 90px;
  padding: 30px 0;
  background: url(/images/common/img_pagetitle_bg.jpg) center/cover no-repeat;
}
.page_title.detail:after {
  display: none;
}
.page_title.detail h1 {
  color: #fff;
  font-size: 2.4rem;
}

@media screen and (max-width: 1000px) {
  .page_title h1 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 768px) {
  .pc_area {
    display: none;
  }
  .sp_area {
    display: block;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    margin: 40px 0 15px;
    padding: 18px 0 0;
    font-size: 1.9rem;
  }
  h3:before {
    width: 40px;
  }
  h4 {
    font-size: 1.7rem;
  }
  h5 {
    font-size: 1.6rem;
  }
  h6 {
    font-size: 1.6rem;
  }
  .l-inner {
    padding: 0 max(30px, 5%);
  }
  .p-1Column,
  .p-2Column {
    margin-top: 60px;
  }
  .p-1Column #main,
  .p-2Column .content_area {
    padding: 40px 0 0;
  }
  .p-2Column .content_area {
    flex-direction: column-reverse;
  }
  .p-2Column .content_area .side_area {
    width: 100%;
  }
  .page_title {
    padding: 45px 0;
  }
  .page_title:after {
    height: 15px;
  }
  .page_title h1 {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 30px;
    font-size: 2.8rem;
  }
  .page_title h1 span {
    margin-top: 1em;
    margin-left: 0;
  }
  table:not(.not_block) {
    display: block;
  }
  table:not(.not_block) > thead {
    display: block;
  }
  table:not(.not_block) > tbody {
    display: block;
  }
  table:not(.not_block) > tbody > tr {
    display: block;
  }
  table:not(.not_block) > tbody > tr > th,
  table:not(.not_block) > tbody > tr > td {
    display: block;
  }
  table:not(.not_block) > tbody > tr > th {
    display: block;
    width: auto;
  }
  table:not(.not_block) > tbody > tr > th[style*=width] {
    width: auto !important;
  }
  table:not(.not_block) > tfoot {
    display: block;
  }
  table.not_block > tbody > tr > th {
    white-space: nowrap;
  }
  table.table_line > tbody > tr {
    flex-direction: column;
    gap: 0;
  }
  table.table_line > tbody > tr:first-child td {
    border-top: none;
  }
  table.table_line > tbody > tr > th,
  table.table_line > tbody > tr > td {
    border-color: #aaa;
  }
  table.table_line > tbody > tr > th {
    padding: 20px 0 10px;
    min-width: auto;
    font-weight: 500;
    border-bottom: none;
  }
  table.table_line > tbody > tr > td {
    padding: 0 0 20px;
  }
  .box_color {
    padding: 25px;
  }
  .box_border {
    padding: 25px;
  }
}
/* margin & padding */
.mt_0 {
  margin-top: 0px;
}

.mb_0 {
  margin-bottom: 0px;
}

.mr_0 {
  margin-right: 0px;
}

.ml_0 {
  margin-left: 0px;
}

.my_0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.pt_0 {
  padding-top: 0px;
}

.pb_0 {
  padding-bottom: 0px;
}

.pr_0 {
  padding-right: 0px;
}

.pl_0 {
  padding-left: 0px;
}

.py_0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.mt_10 {
  margin-top: 10px;
}

.mb_10 {
  margin-bottom: 10px;
}

.mr_10 {
  margin-right: 10px;
}

.ml_10 {
  margin-left: 10px;
}

.my_10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pt_10 {
  padding-top: 10px;
}

.pb_10 {
  padding-bottom: 10px;
}

.pr_10 {
  padding-right: 10px;
}

.pl_10 {
  padding-left: 10px;
}

.py_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.mt_20 {
  margin-top: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}

.mr_20 {
  margin-right: 20px;
}

.ml_20 {
  margin-left: 20px;
}

.my_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.pt_20 {
  padding-top: 20px;
}

.pb_20 {
  padding-bottom: 20px;
}

.pr_20 {
  padding-right: 20px;
}

.pl_20 {
  padding-left: 20px;
}

.py_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.mt_30 {
  margin-top: 30px;
}

.mb_30 {
  margin-bottom: 30px;
}

.mr_30 {
  margin-right: 30px;
}

.ml_30 {
  margin-left: 30px;
}

.my_30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.pt_30 {
  padding-top: 30px;
}

.pb_30 {
  padding-bottom: 30px;
}

.pr_30 {
  padding-right: 30px;
}

.pl_30 {
  padding-left: 30px;
}

.py_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mt_40 {
  margin-top: 40px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mr_40 {
  margin-right: 40px;
}

.ml_40 {
  margin-left: 40px;
}

.my_40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.pt_40 {
  padding-top: 40px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pr_40 {
  padding-right: 40px;
}

.pl_40 {
  padding-left: 40px;
}

.py_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mt_50 {
  margin-top: 50px;
}

.mb_50 {
  margin-bottom: 50px;
}

.mr_50 {
  margin-right: 50px;
}

.ml_50 {
  margin-left: 50px;
}

.my_50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.pt_50 {
  padding-top: 50px;
}

.pb_50 {
  padding-bottom: 50px;
}

.pr_50 {
  padding-right: 50px;
}

.pl_50 {
  padding-left: 50px;
}

.py_50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

#header {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
#header.show {
  opacity: 1;
  visibility: visible !important;
}

.l-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 90px;
  padding: 15px clamp(10px, 2vw, 20px) 15px clamp(10px, 2vw, 40px);
  border-bottom: 1px solid #aaa;
  background-color: #fff;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
}
.l-header.is-fixed {
  background: #fff;
}
.l-header .left {
  min-width: 100px;
}
.l-header .left .logo {
  width: 90px;
  margin: 0;
}
.l-header .left .logo a:hover {
  opacity: 0.7;
}
.l-header .left .logo .logo_white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.l-header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
}
.l-header .right .global_nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-header .right .global_nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 clamp(15px, 1.5vw, 25px);
  text-decoration: none;
}
.l-header .right .global_nav > ul > li {
  margin: 0;
  position: relative;
}
.l-header .right .global_nav > ul > li:hover > ul, .l-header .right .global_nav > ul > li:focus-within > ul {
  opacity: 1;
  visibility: visible;
}
.l-header .right .global_nav > ul > li.has-sub {
  padding-right: 15px;
  position: relative;
}
.l-header .right .global_nav > ul > li.has-sub .toggle_btn {
  width: 10px;
  height: 10px;
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  transition: ease-in-out 0.3s;
}
.l-header .right .global_nav > ul > li.has-sub .toggle_btn:before, .l-header .right .global_nav > ul > li.has-sub .toggle_btn:after {
  content: "";
  width: 1px;
  height: 7px;
  background-color: #999;
  transform-origin: 50% calc(100% - 0.5px);
  position: absolute;
  top: calc(50% - 3.5px);
  right: 4px;
}
.l-header .right .global_nav > ul > li.has-sub .toggle_btn:before {
  transform: rotate(27.5deg);
}
.l-header .right .global_nav > ul > li.has-sub .toggle_btn:after {
  transform: rotate(-27.5deg);
}
.l-header .right .global_nav > ul > li:hover.has-sub .toggle_btn {
  top: calc(50% - 1px);
}
.l-header .right .global_nav > ul > li > a {
  display: block;
  padding: 1em 0;
  color: #333;
  white-space: nowrap;
  opacity: 1;
}
.l-header .right .global_nav > ul > li > ul {
  min-width: 200px;
  padding: 1em;
  background-color: rgba(238, 238, 238, 0.85);
  border-radius: 3px;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out 0.3s;
}
.l-header .right .global_nav > ul > li > ul li a {
  color: #333;
}
.l-header .right .head_contact {
  margin-left: 30px;
}
.l-header.is-kvscrolled {
  border-bottom: 1px solid #aaa;
}
.l-header.is-kvscrolled .right .global_nav a {
  color: #333;
}

body.p-index .l-header {
  border-bottom: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent);
}
body.p-index .l-header .left .logo .logo_default {
  opacity: 0;
}
body.p-index .l-header .left .logo .logo_white {
  opacity: 1;
}
body.p-index .l-header.is-kvscrolled {
  border-bottom: 1px solid #aaa;
  background: #fff;
  transition: 0.25s;
}
body.p-index .l-header.is-kvscrolled .left .logo .logo_default {
  opacity: 1;
}
body.p-index .l-header.is-kvscrolled .left .logo .logo_white {
  opacity: 0;
}
body.p-index .l-header.is-kvscrolled .right .global_nav > ul > li > a {
  color: #333;
}
body.p-index .l-header.is-kvscrolled .right .global_nav > ul > li.has-sub .toggle_btn:before, body.p-index .l-header.is-kvscrolled .right .global_nav > ul > li.has-sub .toggle_btn:after {
  background-color: #999;
}
body.p-index .l-header .left .logo {
  height: 33px;
  position: relative;
}
body.p-index .l-header .left .logo .logo_default {
  opacity: 0;
  transition: opacity 0.25s ease, display 0.25s ease;
  transition-behavior: allow-discrete;
}
body.p-index .l-header .left .logo .logo_white {
  position: absolute;
  top: 0;
  left: 0;
}
body.p-index .l-header .right .global_nav > ul > li > a {
  color: #fff;
}
body.p-index .l-header .right .global_nav > ul > li.has-sub .toggle_btn:before, body.p-index .l-header .right .global_nav > ul > li.has-sub .toggle_btn:after {
  background-color: #fff;
}

@media screen and (max-width: 1000px) {
  .l-header .left .logo {
    width: 75px;
  }
  .l-header .right .global_nav ul {
    gap: 0 11px;
  }
  .l-header .right .global_nav ul li a {
    font-size: 1.3rem;
  }
  .l-header .right .head_contact {
    margin-left: 10px;
  }
  .l-header .right .head_contact .link_btn {
    min-width: auto;
    padding: 10px 35px 10px 10px;
    font-size: 1.2rem;
  }
  .l-header .right .head_contact .link_btn:after {
    right: 15px;
  }
  .l-header .right .head_contact .link_btn:hover:after {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 60px;
    padding: 5px 10px;
  }
  .l-header .left .logo {
    width: 75px;
  }
  .l-header .left .logo img {
    display: block;
  }
  .l-header .left .logo img.logo_white {
    display: none;
  }
  .l-header .right {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 3% 75px;
    background-color: #eee;
  }
  .l-header .right.burger_item {
    position: absolute;
    top: 60px;
    left: 0;
    height: calc(100dvh - 60px);
    overflow-y: auto;
    z-index: 100;
  }
  .l-header .right .global_nav {
    width: 100%;
    margin-bottom: 40px;
  }
  .l-header .right .global_nav > ul {
    display: block;
  }
  .l-header .right .global_nav > ul > li {
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  .l-header .right .global_nav > ul > li.has-sub {
    padding-right: 0;
  }
  .l-header .right .global_nav > ul > li.has-sub:hover .toggle_btn {
    top: calc(50% - 5px);
  }
  .l-header .right .global_nav > ul > li.has-sub > a {
    padding-right: 15px;
    position: relative;
  }
  .l-header .right .global_nav > ul > li.has-sub > a.is-open .toggle_btn {
    transform: rotate(180deg);
  }
  .l-header .right .global_nav > ul > li.has-sub .toggle_btn:before, .l-header .right .global_nav > ul > li.has-sub .toggle_btn:after {
    background-color: #555;
  }
  .l-header .right .global_nav > ul > li > a {
    display: inline-block;
    padding: 14px 0;
    color: #333;
    font-size: 1.7rem;
    text-align: center;
  }
  .l-header .right .global_nav > ul > li > ul {
    display: none;
    padding: 5px 0;
    visibility: visible;
    position: static;
    opacity: 1;
    transition: none;
  }
  .l-header .right .global_nav > ul > li > ul > li a {
    font-size: 1.6rem;
  }
  .l-header .right .global_nav > ul > li > ul > li > ul > li {
    margin-bottom: 15px;
  }
  .l-header .right.burger_item.is-open {
    display: block;
  }
  .l-header .right .head_contact {
    margin: 0;
    text-align: center;
  }
  .l-header .right .head_contact .link_btn {
    min-width: 200px;
    padding: 15.125px 44px 15.125px 21px;
    font-size: 1.5rem;
  }
  body.burger-open {
    height: 100vh;
    overflow: hidden;
  }
  body.burger-open .l-header {
    border-bottom: none;
    background: #eee !important;
  }
  body.burger-open .l-header .left .logo .logo_default {
    display: block;
    opacity: 1;
  }
  @starting-style {
    body.burger-open .l-header .left .logo .logo_default {
      opacity: 0;
    }
  }
  body.burger-open .l-header .left .logo .logo_white {
    display: none;
  }
  body.burger-open .l-header .right .global_nav > ul > li > a {
    color: #333;
  }
  body.burger-open .l-header .right .global_nav > ul > li > a .toggle_btn:before, body.burger-open .l-header .right .global_nav > ul > li > a .toggle_btn:after {
    background-color: #555 !important;
  }
  body.p-index .l-header .left .logo .logo_white {
    display: block;
    opacity: 1;
  }
  body.p-index .l-header #burger_motion p span {
    background-color: transparent;
  }
  body.p-index .l-header #burger_motion p span:before, body.p-index .l-header #burger_motion p span:after {
    transition: ease-in-out 0.25s;
  }
  body.p-index .l-header #burger_motion.is-open p span {
    background-color: transparent;
  }
  body.p-index .l-header.is-kvscrolled #burger_motion p span:before, body.p-index .l-header.is-kvscrolled #burger_motion p span:after {
    transition: ease-in-out 0.25s;
  }
  body.p-index .l-header.is-kvscrolled #burger_motion.is-open p span {
    background-color: transparent;
  }
  body.p-index.burger-open .l-header .left .logo .logo_white {
    display: none;
  }
  #burger_motion {
    display: block;
    position: absolute;
    top: 0;
    right: 10px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    transform-origin: bottom left;
    z-index: 1;
  }
  #burger_motion p {
    position: relative;
    width: 100%;
    height: 40px;
    margin: 10px 0;
    padding: 20px 0;
    border-radius: 3px;
    background-color: #555;
    transform-origin: bottom left;
  }
  #burger_motion p:hover {
    cursor: pointer;
  }
  #burger_motion p span {
    position: absolute;
    top: calc(50% - 1px);
    right: calc(50% - 9px);
    width: 18px;
    height: 1px;
  }
  #burger_motion p span:before, #burger_motion p span:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100vh;
    background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
    transition-delay: 0s;
    transition-timing-function: ease-in-out;
    transition-duration: 0.3s;
    transition-property: margin, transform;
  }
  #burger_motion p span:before {
    margin-top: -3px;
  }
  #burger_motion p span:after {
    margin-top: 3px;
  }
  #burger_motion.is-open p {
    background-color: #aaa;
  }
  #burger_motion.is-open p span:before {
    margin-top: 0;
    background: #fff;
    transform: rotate(30deg);
  }
  #burger_motion.is-open p span:after {
    margin-top: 0;
    background: #fff;
    transform: rotate(-30deg);
  }
}
.l-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  margin-top: 120px;
  padding: 30px 0 30px clamp(10px, 1vw, 40px);
  color: #fff;
  background-color: #808080;
  position: relative;
}
.l-footer .left {
  display: flex;
  align-items: center;
  flex: 1 0 auto;
}
.l-footer .left .foot_logo {
  flex-shrink: 0;
  width: 7vw;
  max-width: 60px;
  margin-right: clamp(20px, 1.5vw, 60px);
}
.l-footer .left .cogmo_icon {
  width: 4vw;
  max-width: 52px;
  margin-right: clamp(10px, 1vw, 17px);
}
.l-footer .left .cogmo_link {
  margin-right: 19px;
}
.l-footer .left .cogmo_link a {
  padding-right: 19px;
  color: #fff;
  position: relative;
}
.l-footer .left .cogmo_link a:after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: calc(50% - 15px);
  right: 0;
}
.l-footer .right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: clamp(120px, 11vw, 160px);
}
.l-footer .right .foot_link ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  gap: 0 clamp(10px, 1vw, 20px);
  list-style: none;
  text-decoration: none;
}
.l-footer .right .foot_link ul li {
  margin: 0;
}
.l-footer .right .foot_link ul li a {
  color: #fff;
  white-space: nowrap;
}
.l-footer .right .copyright {
  padding-right: clamp(20px, 2vw, 30px);
  font-size: 1.2rem;
  font-family: "Jost", sans-serif;
  position: relative;
}
.l-footer .right .copyright:after {
  content: "";
  display: block;
  width: 1px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: calc(50% - 50px);
  right: 0;
}
.l-footer .right .copyright p {
  margin-bottom: 0;
}
.l-footer .right .pagetop {
  height: fit-content;
  position: fixed;
  bottom: 30px;
  right: clamp(15px, 1.5vw, 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity ease-in-out 0.3s;
}
.l-footer .right .pagetop a {
  padding-right: 18px;
  color: #808080;
  font-size: 1.4rem;
  font-family: "Jost", sans-serif;
  transition: ease-in-out 0.5s;
}
.l-footer .right .pagetop a .arrow {
  display: inline-block;
  width: 11px;
  height: 11px;
  position: relative;
}
.l-footer .right .pagetop a .arrow:before, .l-footer .right .pagetop a .arrow:after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #808080;
  transform-origin: 50% 0.5px;
  position: absolute;
  top: 0;
  right: -8px;
  transition: ease-in-out 0.3s;
}
.l-footer .right .pagetop a .arrow:before {
  transform: rotate(27.5deg);
}
.l-footer .right .pagetop a .arrow:after {
  transform: rotate(-27.5deg);
}
.l-footer .right .pagetop a:hover .arrow:before, .l-footer .right .pagetop a:hover .arrow:after {
  top: -5px;
}
.l-footer .right .pagetop.in {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.l-footer .right .pagetop.fix {
  bottom: 37px;
}
.l-footer .right .pagetop.fix a {
  color: #fff;
}
.l-footer .right .pagetop.fix a .arrow:before, .l-footer .right .pagetop.fix a .arrow:after {
  background-color: #fff;
}

.p-index .l-footer {
  margin-top: 0;
}

@media screen and (max-width: 1000px) {
  .l-footer {
    flex-direction: column;
    height: auto;
    padding: 50px 30px;
  }
  .l-footer .left {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .l-footer .left .foot_logo {
    width: 100%;
    max-width: 100%;
    margin: 0 0 15px;
  }
  .l-footer .left .foot_logo img {
    width: 90px;
  }
  .l-footer .left .cogmo_icon {
    width: 65px;
    max-width: 100%;
  }
  .l-footer .left .cogmo_icon img {
    width: 65px;
  }
  .l-footer .left .cogmo_link {
    margin-right: 0;
  }
  .l-footer .left .cogmo_link a {
    padding-right: 0;
  }
  .l-footer .left .cogmo_link a:after {
    display: none;
  }
  .l-footer .right {
    flex-direction: column;
    margin: 2em 0 0;
  }
  .l-footer .right .foot_link ul {
    gap: 20px;
  }
  .l-footer .right .copyright {
    margin-top: 20px;
    padding-right: 0;
  }
  .l-footer .right .copyright:after {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    flex-direction: column;
    margin-top: 80px;
    padding: 70px 0 50px;
  }
  .l-footer .left {
    width: 100%;
    flex-direction: column;
    padding: 50px 30px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .l-footer .left .foot_logo {
    margin: 0 0 37px;
  }
  .l-footer .left .foot_logo .foot_link ul {
    flex-direction: column;
  }
  .l-footer .left .cogmo_icon {
    margin: 0 0 5px;
  }
  .l-footer .right .foot_link ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .l-footer .right .pagetop {
    bottom: 20px;
  }
  .l-footer .right .pagetop.in {
    bottom: 20px;
  }
  .l-footer .right .pagetop.fix {
    position: absolute;
    top: 22px;
    right: 50%;
    transform: translateX(50%);
  }
}
.index_kv {
  width: 100%;
  position: relative;
}
.index_kv img {
  width: 100%;
  height: auto;
}
.index_kv .copy_area {
  color: #fff;
  position: absolute;
  top: 30%;
  left: 8vw;
}
.index_kv .copy_area p {
  margin-bottom: 0;
}
.index_kv .copy_area .sub {
  margin-bottom: 10%;
  font-size: clamp(13px, 1.3vw, 1.7rem);
  font-family: "Jost", sans-serif;
}
.index_kv .copy_area .copy {
  font-size: clamp(20px, 2vw, 4rem);
  font-weight: 500;
}
.index_kv .cogmo_search {
  position: absolute;
  bottom: 10%;
  left: 8vw;
}
.index_kv .cogmo_search .cgm-snackbar {
  display: none;
}
.index_kv .cogmo_search .cgm-search-form {
  margin: 0;
}
.index_kv .cogmo_search .cgm-search-form-area {
  padding: clamp(15px, 1.5vw, 30px) 25px clamp(15px, 1.5vw, 30px) 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-inner.cgm-form1 {
  padding: 0;
  max-width: 720px;
  grid-template-columns: 1fr 60px;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-button.cgm-form1 {
  width: 60px;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap {
  border: none;
  border-radius: 0;
  background: transparent;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area {
  width: clamp(300px, 40vw, 565px);
  margin-right: 30px;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area textarea {
  padding: 0 15px 0 20px;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area:before {
  width: 1px;
  height: 40px;
  background-color: #aaa;
  background-image: none;
  left: 0;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-clear-input-button {
  display: none;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-button-area button {
  text-indent: -200px;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: relative;
  cursor: pointer;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-button-area button:before {
  width: 11.5px;
  height: 7px;
  margin: 0;
  background: url(/images/common/img_arrow_white.png) center/cover no-repeat;
  position: absolute;
  top: calc(50% - 3.5px);
  right: calc(50% - 5.75px);
  transition: ease-in-out 0.3s;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-button-area button:hover {
  opacity: 0.7;
}
.index_kv .cogmo_search .cgm-search-form-area .cgm-search-button-area button:hover:before {
  right: calc(50% - 10.75px);
}
.index_kv .scroll_down {
  position: absolute;
  right: 4vw;
  bottom: 30px;
}
.index_kv .scroll_down a {
  color: #fff;
  text-decoration: none;
  position: relative;
}
.index_kv .scroll_down a:after {
  content: "";
  display: block;
}
.index_kv .scroll_down a .arrow {
  display: inline-block;
  width: 11px;
  height: 11px;
  position: relative;
}
.index_kv .scroll_down a .arrow:before, .index_kv .scroll_down a .arrow:after {
  content: "";
  width: 1px;
  height: 13px;
  background-color: #fff;
  transform-origin: 50% calc(100% - 0.5px);
  position: absolute;
  top: 0;
  right: -8px;
  transition: ease-in-out 0.3s;
}
.index_kv .scroll_down a .arrow:before {
  transform: rotate(27.5deg);
}
.index_kv .scroll_down a .arrow:after {
  transform: rotate(-27.5deg);
}
.index_kv .scroll_down a:hover {
  text-decoration: underline;
}
.index_kv .scroll_down a:hover .arrow:before, .index_kv .scroll_down a:hover .arrow:after {
  top: 5px;
}

@media screen and (max-width: 768px) {
  .index_kv .copy_area {
    top: 27%;
  }
  .index_kv .copy_area .sub {
    margin-bottom: 6%;
    font-size: 1.5rem;
  }
  .index_kv .copy_area .copy {
    font-size: 3rem;
  }
  .index_kv .cogmo_search {
    width: calc(100% - 60px);
    left: max(30px, 5%);
    bottom: 13%;
  }
  .index_kv .cogmo_search .cgm-search-form-area {
    display: flex;
    align-items: center;
    height: 80px;
    padding: 12px 15px 12px 20px;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-form-group {
    width: 100%;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area {
    width: calc(100% - 45px);
    margin-right: 20px;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area:before {
    height: 50px;
    left: 0;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area textarea {
    padding: 0 15px 0 15px;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-inner.cgm-form1 {
    display: flex;
    align-items: center;
    width: 100%;
    grid-template-columns: none;
  }
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-button.cgm-form1 {
    width: 45px;
  }
  .index_kv .scroll_down {
    display: none;
  }
}
@media (max-width: 640px) {
  .cgm-search-button-area {
    width: 45px;
    margin: 0;
  }
}
@media (max-width: 450px) {
  .index_kv .cogmo_search .cgm-search-form-area .cgm-search-input-wrap .cgm-search-input-area textarea {
    height: 60px;
  }
}
#kv_copy span {
  display: inline-block;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease-out;
}
.char.show {
  opacity: 1;
}

.index_heading {
  flex-shrink: 0;
  color: #333;
  font-size: 2.8rem;
  font-family: "Jost", sans-serif;
}
.index_heading h2 {
  margin: 0 0 1em;
  line-height: 1.25;
}

@media screen and (max-width: 768px) {
  .index_heading h2 {
    margin-bottom: 1em;
  }
}
.index_news {
  padding: 80px 0;
  background-color: #fff;
}
.index_news .index_news_layout {
  display: grid;
  grid-template-columns: 210px repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0 75px;
}
.index_news .index_news_layout .index_heading {
  grid-area: 1/1/2/2;
}
.index_news .index_news_layout .index_heading h2 {
  margin: 0 0 35px;
  font-size: 2.8rem;
}
.index_news .index_news_layout .link_btn {
  grid-area: 2/1/3/2;
}
.index_news .index_news_layout .index_news_area {
  grid-area: 1/2/3/4;
}

@media screen and (max-width: 768px) {
  .index_news {
    padding: 50px 0 70px;
  }
  .index_news .index_news_layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .index_news .index_news_layout .index_heading {
    order: 1;
    grid-area: auto;
  }
  .index_news .index_news_layout .index_heading h2 {
    margin-bottom: 25px;
    font-size: 2.4rem;
  }
  .index_news .index_news_layout .link_btn {
    order: 3;
    grid-area: auto;
    text-align: center;
  }
  .index_news .index_news_layout .index_news_area {
    order: 2;
    grid-area: auto;
    margin-bottom: 30px;
  }
}
.index_description {
  padding: 110px 0 125px;
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  background: url(/images/index/bg_business.jpg) center/cover no-repeat;
}
.index_description .index_heading h2 {
  color: #fff;
  font-size: 4.2rem;
}
.index_description p {
  margin-bottom: 0;
  line-height: 2.25;
}

@media screen and (max-width: 768px) {
  .index_description {
    padding: 50px 0;
    font-size: 1.5rem;
  }
  .index_description p {
    line-height: 2;
    text-align: left;
  }
  .index_description p:first-of-type {
    margin-bottom: 1.5em;
  }
  .index_description .index_heading h2 {
    font-size: 3.2rem;
  }
}
.index_business {
  padding: 100px 0 0;
  text-align: center;
}
.index_business .anim-heading .char {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transition-delay: calc(0.02s * var(--char-index));
}
.index_business .anim-heading.is-active .char {
  opacity: 1;
}
.index_business h4 {
  margin: 0 0 1em;
  padding: 0;
  font-size: 3rem;
}
.index_business h4:before {
  display: none;
}

.business_heading {
  margin: 120px 0 60px;
  padding-bottom: 20px;
  font-size: 2.8rem;
  text-align: center;
  position: relative;
}
.business_heading:after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  bottom: 0;
  left: calc(50% - 60px);
}
.business_heading h3 {
  margin: 0;
  line-height: 1.25;
}
.business_heading h3:before {
  display: none;
}
.business_heading:first-of-type {
  margin-top: 0;
}

.business_knowledge {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 30px clamp(40px, 5vw, 90px);
  flex-wrap: wrap;
  margin: 0 0 5em;
  padding: 0;
  list-style: none;
}
.business_knowledge h4 {
  margin-top: 0;
  padding: 0;
  font-size: 2.4rem;
  text-align: center;
}
.business_knowledge h4:before {
  display: none;
}
.business_knowledge li p {
  margin-bottom: 0;
  text-align: left;
}

.business_products {
  margin-bottom: 80px;
  text-align: center;
}
.business_products .logo_cogmo {
  margin-bottom: 55px;
}
.business_products > p {
  margin-bottom: 0;
}

.business_icon {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business_services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(45px, 5vw, 90px);
  margin: 0 0 140px;
  padding: 0;
  list-style: none;
}
.business_services li {
  display: flex;
  flex-direction: column;
  flex: 0 1 auto;
  flex-basis: calc((100% - 90px) / 3);
  min-width: calc((100% - 180px) / 3);
  max-width: calc((100% - 10vw) / 3);
}
.business_services li .service_logo {
  margin-bottom: 30px;
  text-align: center;
}
.business_services li h4 {
  margin: 0 0 20px;
  padding: 0;
  font-size: 2rem;
  text-align: center;
}
.business_services li h4:before {
  display: none;
}
.business_services li h4 + p {
  margin-bottom: 30px;
  text-align: left;
}
.business_services li .link_btn {
  margin-top: auto;
  text-align: center;
}
.business_services li:nth-last-child(2) {
  grid-column-start: 3;
}
.business_services li:last-child {
  grid-column-end: 4;
}

@media screen and (max-width: 768px) {
  .index_business {
    padding: 50px 0 0;
  }
  .index_business > p {
    text-align: left;
  }
  .index_business h4 {
    font-size: 2.4rem;
  }
  .business_heading {
    margin: 70px 0 30px;
    text-align: center;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .business_heading span.char {
    display: inline;
  }
  .business_heading h3 {
    font-size: 2.4rem;
  }
  .business_knowledge {
    grid-template-columns: 1fr;
  }
  .business_knowledge h4 {
    font-size: 2.1rem;
  }
  .business_icon {
    grid-template-columns: repeat(2, 1fr);
  }
  .business_products .logo_cogmo {
    width: 120px;
    margin: 15px auto 35px;
  }
  .business_products > p {
    text-align: left;
  }
  .business_services {
    flex-direction: column;
    gap: 55px;
    margin-bottom: 50px;
  }
  .business_services li {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .business_services li .service_logo {
    max-width: 130px;
    margin: 0 auto 25px;
  }
  .business_services li h4 + p {
    margin-bottom: 1em;
  }
}
.index_technology {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
  color: #fff;
  font-size: 2.1rem;
  font-family: "Jost", sans-serif;
  text-align: center;
  background: url(/images/index/bg_technology.jpg) center/cover no-repeat;
}
.index_technology p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .index_technology {
    padding: 1em 30px;
    background-image: url(/images/index/bg_technology_sp.jpg);
  }
  .index_technology p {
    font-size: 1.9rem;
  }
}
.index_case {
  padding: 170px 0 150px;
  background: linear-gradient(180deg, #fff 60%, #e0d5bf 60%);
}
.index_case .index_case_layout {
  display: flex;
  align-items: center;
  gap: 20px clamp(60px, 7vw, 170px);
  margin-bottom: 70px;
}
.index_case .index_case_layout .index_heading h2 {
  margin: 0;
  font-size: 4.2rem;
}
.index_case .index_case_layout .index_heading + p {
  margin-bottom: 0;
}
.index_case .case_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}
.index_case .case_list li {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 400px;
  margin-bottom: 0;
  background-color: #fff;
}
.index_case .case_list li:last-child .cont:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  top: 0;
  right: 0;
}
.index_case .case_list li .cont {
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(15px, 1.5vw, 20px) clamp(20px, 2vw, 40px) clamp(20px, 2vw, 40px);
  border-bottom: 1px solid #ddd;
  position: relative;
}
.index_case .case_list li .cont:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
  position: absolute;
  top: 0;
  left: 0;
}
.index_case .case_list li .cont .title_logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.index_case .case_list li .cont .title_logo .title {
  flex-shrink: 0;
  font-size: 1.7rem;
  font-weight: 500;
}
.index_case .case_list li .cont .title_logo .case_logo {
  width: 120px;
}
.index_case .case_list li .cont > p {
  margin-bottom: 30px;
}
.index_case .case_list li .cont .link_btn {
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .index_case .case_list li .cont .link_btn a {
    min-width: auto;
  }
}
@media screen and (max-width: 768px) {
  .index_case {
    padding: 70px 0 80px;
    background: linear-gradient(180deg, #fff calc(100% - 200px), #e0d5bf 200px);
  }
  .index_case .index_case_layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .index_case .index_case_layout .index_heading h2 {
    font-size: 3.2rem;
  }
  .index_case .case_list {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .index_case .case_list li {
    margin: 0 auto;
  }
  .index_case .case_list li:last-child .cont:after {
    display: none;
  }
  .index_case .case_list li .cont {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
  .index_case .case_list li .cont:before {
    display: none;
  }
}
.index_aboutus {
  padding: 140px 0 180px;
  background-color: #f5f5f5;
}
.index_aboutus .index_about_layout {
  display: flex;
  flex-wrap: wrap;
  gap: 45px clamp(40px, 4vw, 80px);
  margin-bottom: 70px;
}
.index_aboutus .index_about_layout .index_heading h2 {
  margin: 0;
  font-size: 4.2rem;
}
.index_aboutus .index_about_layout .txt {
  flex: 1 1 auto;
}
.index_aboutus .index_about_layout .txt p {
  max-width: 600px;
  margin: 0 auto 0;
}
.index_aboutus .index_about_layout .about_link_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.index_aboutus .index_about_layout .about_link_list li {
  margin: 0;
  text-align: center;
}
.index_aboutus .index_about_layout .about_link_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 200px;
  padding: 35px 1em;
  background-color: #fff;
  border-right: 1px solid #ddd;
}
.index_aboutus .index_about_layout .about_link_list li a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.index_aboutus .index_about_layout .about_link_list li a .ico {
  margin-bottom: 20px;
}
.index_aboutus .index_about_layout .about_link_list li a .title {
  display: flex;
  align-items: center;
  min-height: 3em;
  color: #333;
  font-weight: 500;
}
.index_aboutus .index_about_layout .about_link_list li:last-child a {
  border-right: none;
}

@media screen and (max-width: 1000px) {
  .index_aboutus {
    padding: 70px 0;
  }
  .index_aboutus .index_about_layout {
    flex-direction: column;
  }
  .index_aboutus .index_about_layout .txt p {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .index_aboutus {
    padding: 70px 0;
  }
  .index_aboutus .index_about_layout {
    gap: 20px;
    margin-bottom: 0;
  }
  .index_aboutus .index_about_layout .index_heading {
    order: 1;
  }
  .index_aboutus .index_about_layout .index_heading h2 {
    font-size: 3.2rem;
  }
  .index_aboutus .index_about_layout .txt {
    order: 2;
    margin-bottom: 20px;
  }
  .index_aboutus .index_about_layout .link_btn {
    order: 4;
    text-align: center;
  }
  .index_aboutus .index_about_layout .about_link_list {
    order: 3;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .index_aboutus .index_about_layout .about_link_list li a {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    min-height: 90px;
    padding: 15px 24px;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
  .index_aboutus .index_about_layout .about_link_list li a .ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 15px 0 0;
  }
  .index_aboutus .index_about_layout .about_link_list li a .title {
    margin-bottom: 0;
    text-align: left;
  }
}
.news_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news_list li {
  display: flex;
  gap: 2px 20px;
  margin-bottom: 15px;
}
.news_list li .date {
  flex-shrink: 0;
  padding-top: 3px;
  color: #808080;
  font-size: 1.4rem;
}
.news_list li .title a {
  color: #333;
  font-size: 1.6rem;
}

.news_category {
  border-top: 1px solid #999;
  padding: 25px 0 0;
}
.news_category ul {
  margin: 0 0 0 10px;
  padding: 0;
  list-style: none;
}
.news_category ul li {
  margin-bottom: 12px;
}
.news_category ul li.current a {
  position: relative;
}
.news_category ul li.current a:before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  top: calc(50% - 5px);
  left: 0;
}
.news_category ul li a {
  padding-left: 20px;
  color: #333;
  position: relative;
}

.news_detail h2 {
  margin: 0 0 30px;
}
.news_detail .date {
  margin-bottom: 40px;
  color: #808080;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .news_category {
    width: 100%;
    padding: 0;
    border-top: none;
    position: relative;
  }
  .news_category #year-select {
    width: 100%;
    padding: 0 0 10px 30px;
    color: #333;
    font-size: 1.7rem;
    font-family: "Noto Sans JP", sans-serif;
    letter-spacing: 0.03em;
    border: none;
    border-bottom: 1px solid #aaa;
    background: url("/images/common/ico_arrow_select.png") no-repeat top 10px right 12px;
    background-size: 11px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    pointer-events: auto;
  }
  .news_category:before {
    content: "";
    display: block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .news_heading_sp {
    margin-bottom: 32px;
    padding: 0 0 10px 10px;
    border-bottom: 1px solid #aaa;
  }
  .news_heading_sp h2 {
    margin: 0;
    padding-left: 20px;
    font-size: 1.7rem;
    position: relative;
  }
  .news_heading_sp h2 .arrow {
    width: 11px;
    height: 11px;
    position: absolute;
    top: calc(50% - 5px);
    right: 0;
    transition: ease-in-out 0.3s;
  }
  .news_list li {
    flex-direction: column;
  }
  .news_list li .date {
    padding-top: 0;
  }
  .news_detail h2 {
    font-size: 2.4rem;
  }
  .news_detail h3 {
    margin: 50px 0 20px;
  }
}
.heading_lead {
  margin-bottom: 90px;
}

.btn_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 40px;
  width: calc(100% - 160px);
  margin: 70px auto 0;
  padding: 0;
  list-style: none;
}
.btn_list li {
  margin-bottom: 0;
}
.btn_list.col2 li {
  width: calc((100% - 40px) / 2);
}
.btn_list.col3 li {
  width: calc((100% - 80px) / 3);
}
.btn_list.col4 li {
  width: calc((100% - 120px) / 4);
}

@media screen and (max-width: 1000px) {
  .heading_lead {
    flex-direction: column;
  }
  .heading_lead h2 {
    min-width: auto;
  }
  .btn_list {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .heading_lead {
    margin-bottom: 30px;
  }
  .btn_list {
    flex-direction: column;
    gap: 10px;
  }
  .btn_list.col2 li, .btn_list.col3 li, .btn_list.col4 li {
    width: 100%;
  }
}
.lead {
  margin-bottom: 80px;
}

.history_area {
  padding-bottom: 50px;
  position: relative;
}
.history_area:before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 70px);
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  top: 50px;
  left: 155px;
  z-index: 1;
}
.history_area:after {
  content: "現在";
  display: block;
  position: absolute;
  left: 140px;
  bottom: -10px;
}
.history_area .item {
  display: flex;
  padding: 30px 40px 30px 30px;
}
.history_area .item:nth-child(odd) {
  background-color: #f5f5f5;
}
.history_area .item .date {
  flex-shrink: 0;
  min-width: 160px;
  padding-right: 67px;
  font-weight: 300;
  font-family: "Jost", sans-serif;
  text-align: right;
  line-height: 1.25;
  position: relative;
}
.history_area .item .date:after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #555;
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 2;
}
.history_area .item .date p {
  margin: 0;
  font-size: 2.6rem;
}
.history_area .item .date p span {
  font-size: 2.2rem;
  position: relative;
}
.history_area .item .date p span:before {
  content: ".";
  display: inline-block;
}
.history_area .item .txt p {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  .lead {
    margin-bottom: 40px;
  }
  .history_area {
    padding-bottom: 30px;
  }
  .history_area:before {
    height: calc(100% - 60px);
    top: 30px;
    left: 24px;
  }
  .history_area:after {
    left: 10px;
    bottom: 0;
  }
  .history_area .item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 20px 40px;
  }
  .history_area .item .date {
    margin-bottom: 4px;
    padding: 0;
    min-width: auto;
  }
  .history_area .item .date:after {
    top: 10px;
    left: -20px;
    right: inherit;
  }
  .history_area .item .date p {
    font-size: 2.2rem;
  }
  .history_area .item .date p span {
    font-size: 1.6rem;
  }
}
.contact_area {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact_area > * {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.contact_area > * .txt {
  max-width: calc(100% - 320px);
}
.contact_area > * .link_btn {
  min-width: 320px;
}
.contact_area.page_bottom {
  margin-top: 100px;
}

.contact_form .hbspt-form h2 {
  margin: 0 0 1em;
}
.contact_form .hbspt-form fieldset {
  width: 100%;
  max-width: 100%;
}
.contact_form .hbspt-form fieldset.form-columns-1 .hs-input {
  width: 100%;
}
.contact_form .hbspt-form fieldset.form-columns-2 {
  display: flex;
  gap: 0 5%;
}
.contact_form .hbspt-form fieldset.form-columns-2 .hs-form-field {
  width: 50%;
}
.contact_form .hbspt-form fieldset.form-columns-2 .hs-form-field .hs-input {
  width: 100%;
}
.contact_form .hbspt-form fieldset .hs-form-field {
  margin-bottom: 1.2em;
}
.contact_form .hbspt-form fieldset .hs-form-field label > span {
  display: inline-block;
  font-weight: 500;
  margin: 0 0 5px;
}
.contact_form .hbspt-form fieldset .form_heading {
  display: inline-block;
  font-weight: 500;
  margin: 0 0 5px;
}
.contact_form .hbspt-form fieldset .hs-input {
  display: inline-block;
  width: 100%;
  height: 40px;
  padding: 9px 10px;
  font-weight: 400;
  color: #000;
  border-radius: 3px;
  border: 1px solid #aaa;
  background-color: #f5f5f5;
}
.contact_form .hbspt-form fieldset .hs-input.error {
  border-color: #555;
}
.contact_form .hbspt-form fieldset textarea {
  min-height: 200px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
}
.contact_form .hbspt-form fieldset input,
.contact_form .hbspt-form fieldset input:focus-visible,
.contact_form .hbspt-form fieldset textarea:focus,
.contact_form .hbspt-form fieldset textarea:focus-visible {
  outline: none;
  border: 1px solid #997326;
}
.contact_form .hbspt-form .inputs-list {
  margin: 0;
  padding: 0;
}
.contact_form .hbspt-form .inputs-list > li {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  padding-top: 0;
}
.contact_form .hbspt-form .inputs-list > li > label {
  float: none;
  width: auto;
  padding: 0;
  font-size: 1.5rem;
  line-height: 18px;
  white-space: normal;
  font-weight: normal;
}
.contact_form .hbspt-form .inputs-list > li > label span {
  font-weight: 400;
  cursor: pointer;
}
.contact_form .hbspt-form .inputs-list > li .hs-input[type=checkbox],
.contact_form .hbspt-form .inputs-list > li .hs-input[type=radio] {
  cursor: pointer;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 5px 3px 0px;
  line-height: normal;
  border: none;
}
.contact_form .hbspt-form .hs-error-msgs > li .hs-error-msg {
  color: #e50012;
  font-size: 1.3rem;
}
.contact_form .hbspt-form .hs-form-required {
  color: #e50012;
}
.contact_form .hbspt-form .hs_submit {
  margin-top: 30px;
  text-align: center;
}
.contact_form .hbspt-form .hs_submit .hs-button {
  display: inline-block;
  min-width: 200px;
  margin: 0;
  padding: 15.125px 21px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  border-radius: 3px;
  border: none;
  position: relative;
  transition: ease-in-out 0.3s;
  cursor: pointer;
}
.contact_form .hbspt-form .hs_submit .hs-button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 1000px) {
  .contact_area > * {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact_area > * .txt {
    max-width: 100%;
  }
  .contact_area > * .link_btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .contact_area > * .link_btn {
    min-width: auto;
  }
  .contact_area.page_bottom {
    margin-top: 50px;
  }
  .contact_form .hbspt-form fieldset.form-columns-2 {
    flex-direction: column;
  }
  .contact_form .hbspt-form fieldset.form-columns-2 .hs-form-field {
    width: 100%;
  }
  .contact_form .hbspt-form fieldset.form-columns-2 .input {
    margin-right: 0;
  }
  .contact_form .hbspt-form fieldset .hs-fieldtype-text .hs-input {
    width: 100% !important;
  }
}
.recruit_page h4.title {
  margin: 1.5em 0 0.5em;
  padding: 0;
  font-size: 1.7rem;
  font-weight: 700;
}
.recruit_page h4.title:before {
  content: "*";
  display: inline;
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
}
.recruit_page h4.title:first-of-type:before {
  color: #7daab2;
}
.recruit_page h4.title:nth-of-type(2):before {
  color: #cc8f70;
}
.recruit_page h4.title:nth-of-type(3):before {
  color: #e5c495;
}
.recruit_page table td ul li {
  margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
  .recruit_philosophy h4.title {
    font-size: 1.6rem;
  }
}
.cgm-search-button:focus {
  outline: 2px solid #333;
}

.cgm-search-button[disabled] {
  opacity: 0.8;
}
.cgm-search-button[disabled]:hover {
  opacity: 0.8 !important;
}
.cgm-search-button[disabled]:hover:before {
  right: calc(50% - 5.75px) !important;
}

.search_results_area .cgm-search-form-area {
  margin-bottom: 70px;
  padding: 30px 50px;
  background-color: #f0eadf;
}
.search_results_area .cgm-search-form {
  margin: 0;
}
.search_results_area .cgm-search-input-wrap {
  border: none;
  border-radius: 0;
}
.search_results_area .cgm-search-input-area:before {
  filter: brightness(0) saturate(100%) invert(49%) sepia(3%) saturate(17%) hue-rotate(322deg) brightness(93%) contrast(93%);
}
.search_results_area .cgm-search-button {
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
}
.search_results_area .cgm-search-inner {
  max-width: 1280px;
  padding: 0;
}
.search_results_area .cgm-search-result-url {
  color: #997326;
}
.search_results_area .cgm-search-result-body em {
  color: #997326;
}
.search_results_area .cgm-search-result-item {
  padding-top: 50px;
  padding-bottom: 50px;
}
.search_results_area .cgm-fetch-more-button-area button {
  display: inline-block;
  min-width: 200px;
  padding: 15.125px 44px 15.125px 21px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  border-radius: 3px;
  background-color: #555;
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: ease-in-out 0.3s;
}
.search_results_area .cgm-fetch-more-button-area button:after, .search_results_area .cgm-fetch-more-button-area button:before {
  content: "";
  display: block;
  width: 11px;
  height: 1px;
  background: linear-gradient(135deg, #7daab2, #cc8f70, #e5c495);
  position: absolute;
  top: 50%;
  right: 21px;
  transition: ease-in-out 0.25s;
}
.search_results_area .cgm-fetch-more-button-area button:before {
  transform: rotate(90deg);
}
.search_results_area .cgm-fetch-more-button-area button:hover {
  background-color: #757575;
  opacity: 1;
}

@media screen and (max-width: 1000px) {
  .search_results_area .cgm-search-form-area {
    padding: 20px 30px;
  }
  .search_results_area .cgm-search-form-group {
    width: 100%;
  }
  .search_results_area .cgm-search-button {
    width: 100px;
    border-radius: 0;
  }
}
@media screen and (max-width: 640px) {
  .search_results_area .cgm-search-form-area {
    margin-bottom: 30px;
    padding: 20px;
  }
  .search_results_area .cgm-search-form-group {
    margin-bottom: 10px;
  }
  .search_results_area .cgm-search-input-area {
    padding-right: 44px;
  }
  .search_results_area .cgm-search-input-area textarea {
    min-height: 60px;
    padding: 10px 45px 10px 44px;
    font-size: 1.5rem;
  }
  .search_results_area .cgm-search-input-area textarea::placeholder {
    font-size: 1.4rem;
  }
  .search_results_area .cgm-search-button-area {
    width: 100px;
    margin: 0 auto;
  }
  .search_results_area .cgm-search-button {
    min-height: 50px;
  }
  .search_results_area .cgm-search-result-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}