@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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,
button,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1em;
  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;
  word-wrap: break-word;
}

ol,
ul {
  list-style: none;
  padding: 0px;
  margin: 0;
}

blockquote,
q {
  quotes: none;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: auto;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

video {
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}

svg {
  height: auto;
}

/*==========　基本設定　==========*/
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.5;
  width: 100%;
  background-color: #F5F5F5;
}

.body_wrap {
  overflow: hidden;
  margin-top: var(--headerHeight);
}
@media screen and (max-width: 1279px) {
  .body_wrap {
    margin-top: 9.765625vw;
  }
}
@media screen and (max-width: 959px) {
  .body_wrap {
    margin-top: var(--headerHeight);
  }
}

.container {
  width: 100%;
  max-width: calc(1280px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner {
  width: 100%;
  max-width: calc(1040px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents {
  width: 100%;
  max-width: calc(960px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.inner_contents_02 {
  width: 100%;
  max-width: calc(920px + var(--paddingLR) * 2);
  padding-left: var(--paddingLR);
  padding-right: var(--paddingLR);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 959px) {
  .container:has(.inner), .container:has(.inner_contents),
.inner:has(.inner),
.inner:has(.inner_contents) {
    padding-left: calc(var(--paddingLR) / 2);
    padding-right: calc(var(--paddingLR) / 2);
  }
  .container .inner,
.container .inner_contents,
.inner .inner_contents {
    padding-left: calc(var(--paddingLR) / 2);
    padding-right: calc(var(--paddingLR) / 2);
  }
  .container .inner .inner_contents,
.container .inner_contents .inner_contents,
.inner .inner_contents .inner_contents {
    padding-left: 0;
    padding-right: 0;
  }
  .conteinr .inner_contents_02,
.inner .inner_contents_02,
.inner_contents .inner_contents_02 {
    padding-left: 0;
    padding-right: 0;
  }
}
.anchor {
  padding-top: var(--headerHeight);
  margin-top: calc(var(--headerHeight) * -1);
}

a:not([class]) {
  color: var(--color_green);
  text-decoration: underline;
}

@media screen and (min-width: 960px) {
  a:not([class^=btn_]) {
    transition: opacity 0.5s;
  }
  a:not([class^=btn_]):hover {
    opacity: 0.5;
  }
}

/*========== レイアウト用 ==========*/
.padding_section {
  padding-top: var(--paddingSection);
  padding-bottom: var(--paddingSection);
}

.margin_section {
  margin-top: var(--paddingSection);
  margin-bottom: var(--paddingSection);
}
.margin_section:first-child {
  margin-top: 0;
}
.margin_section:last-child {
  margin-bottom: 0;
}

.relative_box {
  position: relative;
}

.absolute_box {
  position: absolute;
}

.position_left {
  top: 0;
  left: 0;
}

.position_right {
  top: 0;
  right: 0;
}

/*==========
フォント
==========*/
.fw_mid {
  font-weight: 500;
}

.fw_bold {
  font-weight: 700;
}

.fw_black {
  font-weight: 900;
}

.fs_12 {
  font-size: 0.75rem;
}
@media screen and (max-width: 959px) {
  .fs_12 {
    font-size: 1rem;
  }
}

.fs_13 {
  font-size: 0.8125rem;
}
@media screen and (max-width: 959px) {
  .fs_13 {
    font-size: 1rem;
  }
}

.fs_14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .fs_14 {
    font-size: 1rem;
  }
}

.fs_15 {
  font-size: 0.9375rem;
}
@media screen and (max-width: 959px) {
  .fs_15 {
    font-size: 1rem;
  }
}

.fs_16 {
  font-size: 1rem;
}

.fs_17 {
  font-size: 1.0625rem;
}
@media screen and (max-width: 959px) {
  .fs_17 {
    font-size: 1rem;
  }
}

.fs_18 {
  font-size: 1.125rem;
}
@media screen and (max-width: 959px) {
  .fs_18 {
    font-size: 1rem;
  }
}

.fs_19 {
  font-size: 1.1875rem;
}
@media screen and (max-width: 959px) {
  .fs_19 {
    font-size: 1.125rem;
  }
}

.fs_20 {
  font-size: 1.25rem;
}
@media screen and (max-width: 959px) {
  .fs_20 {
    font-size: 1.125rem;
  }
}

.fs_21 {
  font-size: 1.3125rem;
}
@media screen and (max-width: 959px) {
  .fs_21 {
    font-size: 1.125rem;
  }
}

.fs_22 {
  font-size: 1.375rem;
}
@media screen and (max-width: 959px) {
  .fs_22 {
    font-size: 1.125rem;
  }
}

.fs_24 {
  font-size: 1.5rem;
}
@media screen and (max-width: 959px) {
  .fs_24 {
    font-size: 1.25rem;
  }
}

.fs_26 {
  font-size: 1.625rem;
}
@media screen and (max-width: 959px) {
  .fs_26 {
    font-size: 1.25rem;
  }
}

.fs_28 {
  font-size: 1.75rem;
}
@media screen and (max-width: 959px) {
  .fs_28 {
    font-size: 1.25rem;
  }
}

.fs_30 {
  font-size: 1.875rem;
}
@media screen and (max-width: 959px) {
  .fs_30 {
    font-size: 1.25rem;
  }
}

.fs_32 {
  font-size: 2rem;
}
@media screen and (max-width: 959px) {
  .fs_32 {
    font-size: 1.5rem;
  }
}

.fs_34 {
  font-size: 2.125rem;
}
@media screen and (max-width: 959px) {
  .fs_34 {
    font-size: 1.5rem;
  }
}

.fs_36 {
  font-size: 2.25rem;
}
@media screen and (max-width: 959px) {
  .fs_36 {
    font-size: 1.5rem;
  }
}

.fs_40 {
  font-size: 2.5rem;
}
@media screen and (max-width: 959px) {
  .fs_40 {
    font-size: 1.5rem;
  }
}

/*==========
汎用クラス
==========*/
.ib {
  display: inline-block;
}

.text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
  -moz-text-align-last: left;
       text-align-last: left;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

.text_center {
  text-align: center;
}

.block_center {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 960px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 959px) {
  .pc_only {
    display: none !important;
  }
}

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

/*==========
余白指定
==========*/
.mt_1em {
  margin-top: 1em;
}

.mt_2em {
  margin-top: 2em;
}

.mt_08 {
  margin-top: 8px;
}

.mt_16 {
  margin-top: 16px;
}

.mt_24 {
  margin-top: 24px;
}

.mt_32 {
  margin-top: 32px;
}

.mt_40 {
  margin-top: 40px;
}

.mt_56 {
  margin-top: 56px;
}
@media screen and (max-width: 959px) {
  .mt_56 {
    margin-top: 40px;
  }
}

.mt_64 {
  margin-top: 64px;
}
@media screen and (max-width: 959px) {
  .mt_64 {
    margin-top: 40px;
  }
}

.mt_80 {
  margin-top: 80px;
}
@media screen and (max-width: 959px) {
  .mt_80 {
    margin-top: 40px;
  }
}

.mt_120 {
  margin-top: 120px;
}
@media screen and (max-width: 959px) {
  .mt_120 {
    margin-top: 80px;
  }
}

.mt_160 {
  margin-top: 160px;
}
@media screen and (max-width: 959px) {
  .mt_160 {
    margin-top: 80px;
  }
}

.mb_1em {
  margin-bottom: 1em;
}

.mb_2em {
  margin-bottom: 2em;
}

.mb_08 {
  margin-bottom: 8px;
}

.mb_16 {
  margin-bottom: 16px;
}

.mb_24 {
  margin-bottom: 24px;
}

.mb_32 {
  margin-bottom: 32px;
}

.mb_40 {
  margin-bottom: 40px;
}

.mb_56 {
  margin-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .mb_56 {
    margin-bottom: 40px;
  }
}

.mb_64 {
  margin-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .mb_64 {
    margin-bottom: 40px;
  }
}

.mb_80 {
  margin-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .mb_80 {
    margin-bottom: 40px;
  }
}

.mb_120 {
  margin-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .mb_120 {
    margin-bottom: 80px;
  }
}

.mb_160 {
  margin-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .mb_160 {
    margin-bottom: 80px;
  }
}

.pt_1em {
  padding-top: 1em;
}

.pt_2em {
  padding-top: 2em;
}

.pt_08 {
  padding-top: 8px;
}

.pt_16 {
  padding-top: 16px;
}

.pt_24 {
  padding-top: 24px;
}

.pt_32 {
  padding-top: 32px;
}

.pt_40 {
  padding-top: 40px;
}

.pt_56 {
  padding-top: 56px;
}
@media screen and (max-width: 959px) {
  .pt_56 {
    padding-top: 40px;
  }
}

.pt_64 {
  padding-top: 64px;
}
@media screen and (max-width: 959px) {
  .pt_64 {
    padding-top: 40px;
  }
}

.pt_80 {
  padding-top: 80px;
}
@media screen and (max-width: 959px) {
  .pt_80 {
    padding-top: 40px;
  }
}

.pt_120 {
  padding-top: 120px;
}
@media screen and (max-width: 959px) {
  .pt_120 {
    padding-top: 80px;
  }
}

.pt_160 {
  padding-top: 160px;
}
@media screen and (max-width: 959px) {
  .pt_160 {
    padding-top: 80px;
  }
}

.pb_1em {
  padding-bottom: 1em;
}

.pb_2em {
  padding-bottom: 2em;
}

.pb_08 {
  padding-bottom: 8px;
}

.pb_16 {
  padding-bottom: 16px;
}

.pb_24 {
  padding-bottom: 24px;
}

.pb_32 {
  padding-bottom: 32px;
}

.pb_40 {
  padding-bottom: 40px;
}

.pb_56 {
  padding-bottom: 56px;
}
@media screen and (max-width: 959px) {
  .pb_56 {
    padding-bottom: 40px;
  }
}

.pb_64 {
  padding-bottom: 64px;
}
@media screen and (max-width: 959px) {
  .pb_64 {
    padding-bottom: 40px;
  }
}

.pb_80 {
  padding-bottom: 80px;
}
@media screen and (max-width: 959px) {
  .pb_80 {
    padding-bottom: 40px;
  }
}

.pb_120 {
  padding-bottom: 120px;
}
@media screen and (max-width: 959px) {
  .pb_120 {
    padding-bottom: 80px;
  }
}

.pb_160 {
  padding-bottom: 160px;
}
@media screen and (max-width: 959px) {
  .pb_160 {
    padding-bottom: 80px;
  }
}

.trigger .fx_fadeIn, .trigger.fx_fadeIn {
  -webkit-animation-name: fx_fadeIn;
          animation-name: fx_fadeIn;
}
.trigger .fx_fadeUp, .trigger.fx_fadeUp {
  -webkit-animation-name: fx_fadeUp;
          animation-name: fx_fadeUp;
}
.trigger .fx_slideLeft, .trigger.fx_slideLeft {
  -webkit-animation-name: fx_slideLeft;
          animation-name: fx_slideLeft;
}
.trigger .fx_slideRight, .trigger.fx_slideRight {
  -webkit-animation-name: fx_slideRight;
          animation-name: fx_slideRight;
}

.fx_fadeIn {
  opacity: 0;
  will-change: opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fx_fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fx_fadeUp {
  opacity: 0;
  transform: translateY(40px);
  will-change: transform, opacity;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fx_fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fx_slideLeft {
  will-change: transform, opacity;
  transform: translateX(-40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fx_slideRight {
  will-change: transform, opacity;
  transform: translateX(40px);
  opacity: 0;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fx_slideRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
:root {
  --headerHeight: 125px;
  --paddingSection: 64px;
  --paddingLR: 20px;
  --color_green: #2A837C;
  --color_green_bg: #D8EEEB;
  --color_green_hover: #246E68;
  --color_blue: #1C60A2;
  --color_blue_bg: #3B78B4;
  --color_blue_hover: #163a5e;
  --color_lightblue: #2978C7;
  --color_lightblue_bg: #EFF4F9;
  --color_lightblue_hover: #215588;
  --color_orange: #D54101;
  --color_orange_bg: #813A1C;
  --color_orange_hover: #813A1C;
  --color_red: #CF000E;
  --color_gray_bg: #F5F5F5;
  --color_border: #BEBEBE;
  --border_radius: 20px;
}
@media screen and (max-width: 959px) {
  :root {
    --headerHeight: 64px;
    --paddingSection: 40px;
    --border_radius: 10px;
  }
}

/*========== 汎用オブジェクト ==========*/
.skip_link {
  display: block;
  padding: 1em;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 5px #333;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  background-color: #fff;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 30000;
}
.skip_link:focus {
  top: 0;
}
@media screen and (min-width: 960px) {
  .skip_link:not([class^=btn_]):hover {
    opacity: 1;
  }
}

/*==========
汎用デザイン
==========*/
.text + .text, .text + p:not([class]),
p:not([class]) + .text,
p:not([class]) + p:not([class]) {
  margin-top: 1rem;
}
@media screen and (max-width: 959px) {
  .text,
p:not([class]) {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 959px) {
  .aside {
    font-size: 0.875rem;
  }
}

.text_green {
  color: var(--color_green);
}

.text_blue {
  color: var(--color_blue);
}

.text_lightblue {
  color: var(--color_lightblue);
}

.text_orange {
  color: var(--color_orange);
}

.text_red {
  color: var(--color_red);
}

.bg_white {
  background-color: #fff;
}

.asterisk {
  position: relative;
  padding-left: 1em;
}
.asterisk::before {
  content: "※";
  position: absolute;
  left: 0;
}

.layout_search {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875em;
  position: relative;
}
.layout_search input[type=text] {
  font: inherit;
  max-width: 220px;
  padding: 0.32em 2.5em 0.32em 1.25em;
  border-radius: 100px;
  background-color: var(--color_gray_bg);
  border: 1px solid var(--color_green);
}
.layout_search input[type=text]::-moz-placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.layout_search input[type=text]::placeholder {
  color: rgba(51, 51, 51, 0.6);
}
.layout_search button {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  z-index: 10;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 959px) {
  .layout_search input[type=text] {
    background-color: #fff;
  }
}

.layout_links.list_search .title {
  color: inherit;
}

#float_banner_event {
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  position: fixed;
  z-index: 98;
  right: calc(-0.25em - 4px);
  top: 50%;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-align: center;
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  transform: translate(100%, -50%);
  transition: transform 0.5s;
}
#float_banner_event a {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 16em;
  padding: 2em 1em 2em 0.75em;
  background-color: var(--color_green);
  border-radius: 10px 0 0 10px;
  border: 4px solid #fff;
}
@media screen and (min-width: 960px) {
  #float_banner_event a {
    transition: background-color 0.5s;
  }
  #float_banner_event a:hover {
    background-color: var(--color_green_hover);
    opacity: 1;
  }
}
#float_banner_event.view {
  transform: translate(0%, -50%);
}
@media screen and (max-width: 959px) {
  #float_banner_event {
    top: 75%;
  }
}

.layout_category {
  font-size: 0.8125em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}
.layout_category > * {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color_lightblue);
  color: #fff;
  padding: 0.25em 1em;
  border-radius: 5px;
}
.layout_category > *:not([style]) {
  border: 1px solid var(--color_red);
  background-color: #fff;
  color: var(--color_red);
}
@media screen and (max-width: 959px) {
  .layout_category {
    font-size: 0.75rem;
  }
}

.layout_career_index {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.layout_career_index > *:not(:has(a)),
.layout_career_index a {
  border-radius: 10px;
  background-color: #fff;
  display: block;
  overflow: hidden;
  height: 100%;
}
.layout_career_index a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .layout_career_index a img {
    transition: transform 0.5s;
  }
  .layout_career_index a:hover img {
    transform: scale(1.025);
  }
}
.layout_career_index .thumb {
  overflow: hidden;
  aspect-ratio: 410/200;
}
.layout_career_index .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_career_index .text_area {
  padding: 1.25rem;
  position: relative;
}
.layout_career_index .text_area .area {
  position: absolute;
  left: 0;
  top: -1.75em;
  background-color: var(--color_lightblue);
  color: #fff;
  padding: 0.5em 1.5em;
  border-radius: 0 5px 5px 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.layout_career_index .text_area .title {
  font-weight: 700;
  margin-bottom: 0.625rem;
}
.layout_career_index .text_area .text {
  font-size: 0.875rem;
}
@media screen and (max-width: 639px) {
  .layout_career_index {
    grid-template-columns: 1fr;
  }
  .layout_career_index .text_area {
    padding: var(--paddingLR);
  }
  .layout_career_index .text_area .area {
    font-size: 0.75rem;
  }
  .layout_career_index .text_area .title {
    font-size: 0.875rem;
  }
  .layout_career_index .text_area .text {
    font-size: 0.8125rem;
  }
}

.layout_career:not(:first-child) {
  margin-top: 2.5rem;
}
.layout_career > *:not(:has(a)),
.layout_career a {
  background-color: var(--color_gray_bg);
  border-radius: var(--border_radius);
  padding: 1.875rem 2.5rem;
  display: flex;
  gap: 1.875rem;
}
.layout_career a {
  color: inherit;
  text-decoration: none;
  position: relative;
}
.layout_career a::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-green.svg") no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1em;
}
@media screen and (min-width: 960px) {
  .layout_career a img {
    transition: transform 0.5s;
  }
  .layout_career a:hover img {
    transform: scale(1.025);
  }
}
.layout_career .thumb {
  width: 42.7%;
  flex-shrink: 0;
  aspect-ratio: 410/200;
  border-radius: 10px;
  overflow: hidden;
}
.layout_career .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_career .layout_category > * {
  background-color: #2978C7;
  border: none;
  color: #fff;
}
.layout_career .title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color_green);
  margin-top: 1rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media screen and (max-width: 959px) {
  .layout_career:not(:first-child) {
    margin-top: 1.5rem;
  }
  .layout_career > *:not(:has(a)),
.layout_career a {
    flex-direction: column;
    padding: calc(var(--paddingLR) / 2);
    gap: 1rem;
  }
  .layout_career a::after {
    display: none;
  }
  .layout_career a .text {
    padding-right: 0.5rem;
    position: relative;
  }
  .layout_career a .text::after {
    content: "";
    width: 0.75em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow-green.svg") no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .layout_career .thumb {
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .layout_career .title {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }
}

.layout_meister_report {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.25rem;
}
.layout_meister_report > *:not(:has(a)),
.layout_meister_report a {
  padding: 1rem;
  border-radius: 10px;
  background-color: var(--color_gray_bg);
  display: block;
  overflow: hidden;
  height: 100%;
}
.layout_meister_report a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .layout_meister_report a img {
    transition: transform 0.5s;
  }
  .layout_meister_report a:hover img {
    transform: scale(1.05);
  }
}
.layout_meister_report .row_date {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.layout_meister_report .row_date time {
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}
.layout_meister_report .row_title .title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color_green);
  line-height: 1.25;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
}
.layout_meister_report .row_text {
  display: flex;
  gap: 1.25rem;
}
.layout_meister_report .thumb {
  width: 32%;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 120/80;
}
.layout_meister_report .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_meister_report .text_area {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 700;
}
.layout_meister_report .text_area .label {
  color: var(--color_green);
}
.layout_meister_report .layout_category > * {
  background-color: #2978C7;
  border: none;
  color: #fff;
}
.layout_meister_report .school > * {
  background-color: #C3E1F5;
  border: none;
  color: inherit;
  border-radius: 100px;
}
@media screen and (max-width: 639px) {
  .layout_meister_report {
    grid-template-columns: 1fr;
  }
  .layout_meister_report .row_date time {
    font-size: 0.9375rem;
  }
  .layout_meister_report .row_text {
    gap: 0.625rem;
  }
  .layout_meister_report .text_area {
    font-size: 0.8125rem;
  }
  .layout_meister_report .text_area p:not([class]) {
    font-size: 1em;
  }
}

.layout_meister_case {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.layout_meister_case > *:not(:has(a)),
.layout_meister_case a {
  padding: 1rem;
  border-radius: 10px;
  background-color: var(--color_gray_bg);
  display: block;
  overflow: hidden;
  height: 100%;
}
.layout_meister_case a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 960px) {
  .layout_meister_case a img {
    transition: transform 0.5s;
  }
  .layout_meister_case a:hover img {
    transform: scale(1.05);
  }
}
.layout_meister_case .thumb {
  border-radius: var(--border_radius);
  overflow: hidden;
  aspect-ratio: 265/200;
}
.layout_meister_case .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.layout_meister_case .layout_category {
  margin-top: 1rem;
}
.layout_meister_case .layout_category > * {
  background-color: #2978C7;
  border: none;
  color: #fff;
}
.layout_meister_case .title {
  margin-top: 0.625rem;
  font-weight: 700;
  color: var(--color_lightblue);
}
.layout_meister_case .row_name {
  display: flex;
  gap: 1em;
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: 0.625rem;
}
@media screen and (max-width: 639px) {
  .layout_meister_case {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .layout_meister_case > *:not(:has(a)),
.layout_meister_case a {
    padding: 0.5rem;
    border-radius: 5px;
  }
  .layout_meister_case .thumb {
    border-radius: 5px;
  }
  .layout_meister_case .layout_category {
    margin-top: 0.5rem;
  }
  .layout_meister_case .title {
    font-size: 0.875rem;
    line-height: 1.25;
  }
  .layout_meister_case .row_name {
    flex-direction: column;
    gap: 0.125em;
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.layout_news a {
  color: inherit;
  text-decoration: none;
}
.layout_news a[target=_blank] .title {
  text-decoration: none;
}
.layout_news > * {
  border-bottom: 1px dashed var(--color_green);
}
.layout_news > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.layout_news .row_date {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}
.layout_news time {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
.layout_news .icon_new {
  font-family: "Roboto", sans-serif;
  color: var(--color_red);
  font-weight: 500;
}
.layout_news .title {
  color: var(--color_green);
  font-weight: 500;
}
.layout_news .row_title {
  padding-bottom: 1.5rem;
}
.layout_news .layout_category {
  margin-top: -0.325em;
}
.layout_news .layout_category > * {
  border-radius: 100px;
  padding-top: 0.05em;
  padding-bottom: 0.05em;
}
@media screen and (max-width: 959px) {
  .layout_news > *:not(:last-child) {
    margin-bottom: 0.75rem;
  }
  .layout_news .row_date {
    gap: 0.5rem;
    margin-bottom: 0.125em;
  }
  .layout_news time {
    font-size: 0.9375rem;
  }
  .layout_news .icon_new {
    font-size: 0.875rem;
  }
  .layout_news .title {
    font-size: 0.875rem;
  }
  .layout_news .row_title {
    padding-bottom: 0.75rem;
  }
}

.js_scrollable .scroll-hint-icon {
  top: 5rem;
}

/*==========
フォーム部品
==========*/
.layout_company_search {
  background-color: var(--color_blue_bg);
  color: #fff;
  border-radius: var(--border_radius);
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.layout_company_search::after {
  content: "";
  width: 8.125%;
  aspect-ratio: 104/189;
  background: center/contain url("../img/index/index_company_deco.svg") no-repeat;
  position: absolute;
  top: -11%;
  left: 3%;
}
.layout_company_search .title_main {
  font-size: clamp(1rem, 1.625vw, 1.625rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
}
.layout_company_search .title_main .big {
  font-size: 1.23076em;
}
.layout_company_search .input_area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.layout_company_search .row_input {
  flex-grow: 1;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.layout_company_search .row_input.text_input {
  width: 100%;
  max-width: 500px;
}
.layout_company_search .row_input select {
  width: 100%;
}
.layout_company_search .title {
  font-weight: 700;
  min-width: 6.625rem;
  text-align: right;
  border: 2px solid #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding: 0.5em;
  border-radius: 5px;
  margin-right: 0.625rem;
}
.layout_company_search .label_wrap {
  margin: 0.3125rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}
.layout_company_search .label_wrap label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
}
.layout_company_search .btn_wrap {
  min-width: 17%;
  margin-top: 1rem;
  justify-content: flex-end;
  gap: 1.25rem;
}
.layout_company_search .btn_wrap > * {
  flex: 1;
}
.layout_company_search input[type=checkbox] {
  border: none;
}
.layout_company_search input[type=checkbox]::after {
  border-color: var(--color_blue);
}
.layout_company_search input[type=radio] {
  border: none;
}
.layout_company_search input[type=radio]::after {
  background-color: var(--color_blue);
}
.layout_company_search input[type=text] {
  border: none;
  font-size: 0.875rem;
  max-width: 400px;
}
.layout_company_search select {
  font-size: 0.875rem;
}
@media screen and (max-width: 959px) {
  .layout_company_search {
    padding-top: var(--paddingLR);
    padding-bottom: var(--paddingLR);
  }
  .layout_company_search::after {
    width: 4rem;
    top: -2rem;
    left: -1rem;
  }
  .layout_company_search .row_input {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.875rem;
  }
  .layout_company_search .title {
    text-align: left;
    width: 100%;
    border: none;
    border-bottom: 2px solid #fff;
    border-radius: 0;
  }
  .layout_company_search .btn_wrap {
    width: 100%;
    align-items: center;
  }
  .layout_company_search .btn_wrap > * {
    flex: 0 1 auto;
    width: 100%;
  }
}

label:has(input[type=checkbox], input[type=radio]) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 500;
}
label input[type=checkbox],
label input[type=radio] {
  flex-shrink: 0;
}

input[type=checkbox] {
  position: relative;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--color_border);
  background-color: #fff;
  width: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 5px;
  cursor: pointer;
}
input[type=checkbox]::after {
  display: block;
  position: absolute;
  content: "";
  width: 60%;
  height: 25%;
  border-bottom: 3px solid;
  border-left: 3px solid;
  transform: rotate(-45deg);
  top: 22%;
  left: 10%;
  display: none;
  border-color: #333333;
}
input[type=checkbox]:checked::after {
  display: block;
}

input[type=radio] {
  position: relative;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--color_border);
  background-color: #fff;
  width: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 100px;
  cursor: pointer;
}
input[type=radio]::after {
  display: block;
  position: absolute;
  content: "";
  width: 62%;
  aspect-ratio: 1/1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  background-color: #333333;
  border-radius: 100px;
  z-index: 1;
}
input[type=radio]:checked::after {
  display: block;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 5px;
  padding: 0.929em 1.5rem 0.929em 0.625rem;
  font: inherit;
  line-height: 1;
  font-weight: 500;
  background: right 0.5em center/0.75em auto url("../img/common/icon_arrow-under-blue.svg") no-repeat #fff;
}
select:focus {
  border: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=url] {
  width: 100%;
  border: 1px solid var(--color_border);
  background-color: #fff;
  border-radius: 5px;
  padding: 0.625rem 1em;
  font: inherit;
  line-height: 1;
  font-weight: 500;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=url]::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=url]::placeholder {
  color: rgba(51, 51, 51, 0.5);
}
input[type=text].short,
input[type=tel].short,
input[type=email].short,
input[type=number].short,
input[type=url].short {
  width: 8em;
  max-width: 8em;
}
@media screen and (max-width: 959px) {
  input[type=text].short,
input[type=tel].short,
input[type=email].short,
input[type=number].short,
input[type=url].short {
    width: 6em;
    max-width: 6em;
  }
}

textarea {
  width: 100%;
  resize: vertical;
  border: 1px solid var(--color_border);
  background-color: #fff;
  border-radius: 5px;
  padding: 0.625rem 1em;
  font: inherit;
  line-height: 1.75;
  font-weight: 500;
}
textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}
textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.btn_reset {
  background-color: var(--color_blue_bg);
  border: 2px solid #fff;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  max-width: 220px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (min-width: 960px) {
  .btn_reset {
    transition: background-color 0.5s;
  }
  .btn_reset:hover {
    background-color: var(--color_lightblue_hover);
  }
}

.btn_search {
  background-color: #fff;
  border: 2px solid #fff;
  color: var(--color_blue_bg);
  border-radius: 100px;
  font-weight: 700;
  max-width: 220px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  cursor: pointer;
}
.btn_search::before {
  content: "";
  width: 1.25em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_search-blue.svg") no-repeat;
  display: block;
  margin-bottom: -0.125em;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .btn_search {
    transition: background-color 0.5s;
  }
  .btn_search:hover {
    background-color: #D3E5F6;
  }
}

/*==========
リスト
==========*/
.list_icon > * {
  display: flex;
}
.list_icon > * > *:first-child {
  min-width: 2em;
  flex-shrink: 0;
}
.list_icon > *:not(:last-child) {
  margin-bottom: 0.5em;
}

.list_dots > * {
  position: relative;
  padding-left: 1em;
}
.list_dots > *::before {
  content: "・";
  position: absolute;
  left: 0;
}
@media screen and (max-width: 959px) {
  .list_dots {
    font-size: 0.875rem;
  }
}

.list_circle[data-color=green] {
  --color_bg: var(--color_green);
}
.list_circle > * {
  position: relative;
  padding-left: 1em;
}
.list_circle > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.list_circle > *::before {
  content: "";
  width: 0.5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.825em;
  transform: translateY(-50%);
  background-color: var(--color_bg);
}
@media screen and (max-width: 959px) {
  .list_circle {
    font-size: 0.875rem;
  }
}

.list_step {
  counter-reset: step;
}
.list_step > * {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.list_step > *:not(:last-child) {
  margin-bottom: 0.4rem;
}
.list_step > *::before {
  counter-increment: step;
  content: "Step" counter(step);
  font-weight: 700;
  font-size: 0.9375rem;
  background-color: var(--color_lightblue);
  color: #fff;
  border-radius: 100px;
  padding: 0.25em 1em 0.3em;
  margin-top: 0.125em;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  flex-shrink: 0;
}

/*==========
ボタン
==========*/
.btn_01 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: 68px;
  font-size: clamp(1.125rem, 1.25vw, 1.25rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0.125em 2.25em;
  background-color: var(--color_bg);
  border: 2px solid var(--color_border);
  color: var(--color);
  border-radius: 100px;
  text-align: center;
  position: relative;
}
.btn_01[data-color=green] {
  --color: #fff;
  --color_hover: var(--color_green_hover);
  --color_bg: var(--color_green);
  --color_border: var(--color_green);
}
.btn_01[data-color=blue] {
  --color: #fff;
  --color_hover: var(--color_blue_hover);
  --color_bg: var(--color_blue);
  --color_border: var(--color_blue);
}
.btn_01[data-color=orange] {
  --color: #fff;
  --color_hover: var(--color_orange_hover);
  --color_bg: var(--color_orange);
  --color_border: var(--color_orange);
}
.btn_01[data-color^=white_] {
  --color_bg: #fff;
  max-width: 620px;
  height: 80px;
  font-size: clamp(1.125rem, 1.375vw, 1.375rem);
}
.btn_01[data-color=white_green] {
  --color: var(--color_green);
  --color_hover: var(--color_green);
  --color_border: var(--color_green);
}
.btn_01[data-color=white_green]::after {
  background-image: url("../img/common/icon_arrow-green.svg");
}
.btn_01[data-color=white_lightblue] {
  --color: var(--color_lightblue);
  --color_hover: var(--color_lightblue);
  --color_border: var(--color_lightblue);
}
.btn_01[data-color=white_lightblue]::after {
  background-image: url("../img/common/icon_arrow-lightblue.svg");
}
.btn_01[data-color=white_orange] {
  --color: var(--color_orange);
  --color_hover: var(--color_orange);
  --color_border: var(--color_orange);
}
.btn_01[data-color=white_orange]::after {
  background-image: url("../img/common/icon_arrow-orange.svg");
}
.btn_01::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .btn_01 {
    transition: background-color 0.5s, border-color 0.5s, color 0.5s;
  }
  .btn_01:hover {
    background-color: var(--color_hover);
    border-color: var(--color_hover);
    opacity: 1;
  }
  .btn_01:hover[data-color^=white_] {
    color: #fff;
  }
  .btn_01:hover[data-color^=white_]::after {
    background-image: url("../img/common/icon_arrow-white.svg");
  }
}
@media screen and (max-width: 959px) {
  .btn_01 {
    font-size: 0.9375rem;
    height: 56px;
  }
  .btn_01::after {
    right: 0.75em;
  }
  .btn_01[data-color^=white_] {
    font-size: 0.875rem;
    max-width: 400px;
    height: 56px;
  }
}

.btn_02 {
  color: var(--color);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  gap: 0.5em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.25em;
}
.btn_02[data-color=green] {
  --color: var(--color_green);
}
.btn_02[data-color=green]::before {
  background-image: url("../img/common/icon_arrow-circle-green.svg");
}
.btn_02[data-color=blue] {
  --color: var(--color_blue);
}
.btn_02[data-color=blue]::before {
  background-image: url("../img/common/icon_arrow-circle-blue.svg");
}
.btn_02::before {
  content: "";
  width: 1.325em;
  aspect-ratio: 1/1;
  margin-top: 0.0625em;
  background: center/contain url("../img/common/icon_arrow-circle-green.svg") no-repeat;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
  .btn_02::before {
    transition: transform 0.5s;
  }
  .btn_02::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--color);
    transition: width 0.5s;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .btn_02:hover::before {
    transform: rotate(-360deg);
  }
  .btn_02:hover::after {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .btn_02 {
    font-size: 1rem;
  }
  .btn_02::before {
    margin-top: 0.125em;
  }
}

.btn_03 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 620px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  line-height: 1.25;
  font-weight: 700;
  padding: 0.125em 1.5em;
  background-color: var(--color_bg);
  border: 2px solid var(--color_border);
  color: var(--color);
  border-radius: 10px;
  text-align: center;
  position: relative;
}
.btn_03[data-color=green] {
  --color: #fff;
  --color_hover: var(--color_green_hover);
  --color_bg: var(--color_green);
  --color_border: var(--color_green);
}
.btn_03[data-color=blue] {
  --color: #fff;
  --color_hover: var(--color_blue_hover);
  --color_bg: var(--color_blue);
  --color_border: var(--color_blue);
}
.btn_03[data-color=orange] {
  --color: #fff;
  --color_hover: var(--color_orange_hover);
  --color_bg: var(--color_orange);
  --color_border: var(--color_orange);
}
.btn_03[data-color^=white_] {
  --color_bg: #fff;
  max-width: 620px;
  height: 80px;
  font-size: clamp(1.125rem, 1.375vw, 1.375rem);
}
.btn_03[data-color=white_green] {
  --color: var(--color_green);
  --color_hover: var(--color_green);
  --color_border: var(--color_green);
}
.btn_03[data-color=white_green]::after {
  background-image: url("../img/common/icon_arrow-green.svg");
}
.btn_03[data-color=white_lightblue] {
  --color: var(--color_lightblue);
  --color_hover: var(--color_lightblue);
  --color_border: var(--color_lightblue);
}
.btn_03[data-color=white_lightblue]::after {
  background-image: url("../img/common/icon_arrow-lightblue.svg");
}
.btn_03::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.btn_03 .big {
  font-size: 1.22222em;
}
@media screen and (min-width: 960px) {
  .btn_03 {
    transition: background-color 0.5s, border-color 0.5s, color 0.5s;
  }
  .btn_03:hover {
    background-color: var(--color_hover);
    border-color: var(--color_hover);
    opacity: 1;
  }
  .btn_03:hover[data-color^=white_] {
    color: #fff;
  }
  .btn_03:hover[data-color^=white_]::after {
    background-image: url("../img/common/icon_arrow-white.svg");
  }
}
@media screen and (max-width: 959px) {
  .btn_03 {
    font-size: 0.75rem;
    height: 56px;
  }
  .btn_03::after {
    right: 0.75em;
  }
  .btn_03[data-color^=white_] {
    font-size: 0.875rem;
    max-width: 400px;
    height: 56px;
  }
}

.btn_contact {
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.btn_contact::before {
  content: "";
  width: 1.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../../img/common/icon_mail-green.svg") no-repeat;
  flex-shrink: 0;
  margin-top: 0.0625em;
}
.btn_contact[data-color=green] {
  color: var(--color_green);
}
.btn_contact[data-color=green]::before {
  background-image: url("../img/common/icon_mail-green.svg");
}
.btn_contact[data-color=white] {
  color: #fff;
}
.btn_contact[data-color=white]::before {
  background-image: url("../img/common/icon_mail-white.svg");
}
@media screen and (min-width: 960px) {
  .btn_contact {
    transition: opacity 0.5s;
  }
  .btn_contact:hover {
    opacity: 0.5;
  }
}

main a[target=_blank]:not(:has(img), .no_icon, [class^=btn_]),
.layout_news [target=_blank] .title,
.link_blank {
  color: var(--color_green);
  text-decoration: underline;
}
main a[target=_blank]:not(:has(img), .no_icon, [class^=btn_])::after,
.layout_news [target=_blank] .title::after,
.link_blank::after {
  content: "";
  width: 0.875em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_blank-green.svg") no-repeat;
  display: inline-block;
  margin-left: 0.5em;
  margin-bottom: 0.125em;
  vertical-align: middle;
}

main a:not(.no_icon)[href*=".docx"], main a:not(.no_icon)[href*=".doc"], main a:not(.no_icon)[href*=".xlsx"], main a:not(.no_icon)[href*=".xls"], main a:not(.no_icon)[href*=".pdf"] {
  background-position: bottom 0.25em right;
  background-size: 1.25em 1.25em;
  background-repeat: no-repeat;
  padding-right: 1.75em;
}
main a:not(.no_icon)[href*=".docx"], main a:not(.no_icon)[href*=".doc"] {
  background-image: url("../img/common/icon_word.svg");
}
main a:not(.no_icon)[href*=".xlsx"], main a:not(.no_icon)[href*=".xls"] {
  background-image: url("../img/common/icon_excel.svg");
}
main a:not(.no_icon)[href*=".pdf"] {
  background-image: url("../img/common/icon_pdf.svg");
}

/*==========
ヘッダー
==========*/
#header {
  font-size: clamp(0.75rem, 1.25vw, 1rem);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  width: 100%;
}
#header::after {
  content: "";
  pointer-events: none;
  width: 100%;
  min-width: 1920px;
  aspect-ratio: 1920/196;
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: center/contain url("../img/common/header_bg.svg") no-repeat;
  filter: drop-shadow(0 3px 6px rgba(0, 55, 51, 0.1));
  z-index: -1;
}
@media screen and (min-width: 1920px) {
  #header::after {
    transform: translate(-50%, calc(-63% + 125px));
  }
}
@media screen and (max-width: 1599px) {
  #header::after {
    height: 12.25em;
  }
}
#header .flex {
  padding-top: 10px;
  display: flex;
  height: 100%;
}
#header .menu_area {
  margin-left: auto;
}
#header .logo {
  width: 14em;
  height: 100%;
  padding-bottom: 1.5625em;
}
#header .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .btn_contact {
  font-size: 0.875em;
}
#header .row_upper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25em;
}
#header .row_lower {
  margin-top: 1.75rem;
}
#header .label_wrap {
  display: flex;
  gap: 4px;
  margin-top: -8px;
  margin-bottom: -8px;
}
#header #hamburger_btn {
  display: none;
}

.btn_header_01 {
  background-color: var(--color_bg);
  font-size: 1em;
  font-weight: 500;
  color: var(--color_text);
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.25em 2em;
  border-radius: 100px;
  height: 2em;
  position: relative;
}
.btn_header_01[data-color=orange] {
  --color_text: #fff;
  --color_bg: var(--color_orange);
  --color_hover: var(--color_orange_hover);
}
.btn_header_01[data-color=white_green] {
  --color_text: var(--color_green);
  --color_bg: #fff;
  --color_hover: var(--color_green_hover);
}
.btn_header_01[data-color=white_green]::after {
  background-image: url("../img/common/icon_arrow-green.svg");
}
@media screen and (min-width: 960px) {
  .btn_header_01[data-color=white_green] {
    transition: opacity 0.5s;
  }
  .btn_header_01[data-color=white_green]:hover {
    background-color: var(--color_bg);
    opacity: 0.5;
  }
}
.btn_header_01::after {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  position: absolute;
  top: 50%;
  right: 0.625em;
  transform: translateY(-50%);
}
@media screen and (min-width: 960px) {
  .btn_header_01 {
    transition: background-color 0.5s;
  }
  .btn_header_01:hover {
    background-color: var(--color_hover);
  }
}

.btn_header_02 {
  margin-top: -6px;
  min-width: 10.625em;
  padding: calc(0.5em + 4px) 0.75em 0.5em;
  color: #fff;
  font-weight: 500;
  line-height: 1.125;
  border-radius: 0 0 10px 10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.btn_header_02 .small {
  font-size: 0.8125em;
}
.btn_header_02 .x-small {
  font-size: 0.75em;
}
.btn_header_02 .row {
  display: block;
}
.btn_header_02 .row + .row {
  margin-right: -1em;
}
.btn_header_02::after {
  content: "";
  width: 0.75em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-circle-white.svg") no-repeat;
  display: block;
  margin-top: 0.325em;
  margin-bottom: auto;
  margin-left: 0.5em;
  flex-shrink: 0;
}
.btn_header_02[data-color=lightblue] {
  background-color: var(--color_lightblue);
}
.btn_header_02[data-color=blue] {
  background-color: var(--color_blue);
}
.btn_header_02[data-color=green] {
  background-color: var(--color_green);
}
@media screen and (min-width: 960px) {
  .btn_header_02 {
    transition: transform 0.5s;
    -webkit-backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
  }
  .btn_header_02:hover {
    transform: translateY(4px);
  }
}
@media screen and (max-width: 959px) {
  .btn_header_02 {
    border-radius: 5px;
    font-size: 0.9375rem;
    padding: 0.75em 0.25em;
    margin-top: 0;
  }
  .btn_header_02::after {
    display: none;
  }
  .btn_header_02 .small {
    font-size: 0.8125em;
  }
  .btn_header_02 .x-small {
    font-size: 0.6875em;
  }
  .btn_header_02 .row + .row {
    margin-right: 0;
  }
}

@media screen and (min-width: 960px) {
  .menu_header {
    margin-top: 1.25em;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    font-size: 0.9375em;
    line-height: 1.25;
    font-weight: 700;
  }
  .menu_header > * {
    border-right: 1px dashed var(--color_border);
  }
  .menu_header > *:first-of-type {
    border-left: 1px dashed var(--color_border);
  }
  .menu_header > * a {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 1.25em;
    color: inherit;
    text-decoration: none;
  }
}
/*==========
ハンバーガーメニュー
==========*/
@media screen and (max-width: 959px) {
  #header {
    font-size: 1rem;
    height: var(--headerHeight);
    /*==========
    ハンバーガーメニュー
    ==========*/
    /*== ボタン ==*/
    /*== オープン ==*/
  }
  #header::after {
    height: calc(var(--headerHeight) + 4em);
  }
  #header .container,
#header .inner {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
  #header .flex {
    align-items: center;
    padding-top: 6px;
  }
  #header .logo {
    width: 9em;
    padding-bottom: 0;
  }
  #header .btn_contact {
    font-size: 0.875rem;
  }
  #header .menu_area {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: scroll;
    background-color: var(--color_gray_bg);
    z-index: -1;
    padding: calc(var(--headerHeight) + var(--paddingSection)) var(--paddingLR) var(--paddingSection);
    transition: -webkit-clip-path 0.5s;
    transition: clip-path 0.5s;
    transition: clip-path 0.5s, -webkit-clip-path 0.5s;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
            clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #header .menu_area::-webkit-scrollbar {
    display: none;
  }
  #header .label_wrap {
    margin-top: 1rem;
    margin-bottom: 0;
    width: 100%;
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
  }
  #header .btn_header_02 {
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    flex: 1;
  }
  #header .row_upper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #header .row_upper .btn_header_01 {
    order: -1;
    margin-top: 2rem;
    width: 100%;
    max-width: 255px;
    height: 40px;
    justify-content: center;
  }
  #header .row_upper .layout_search {
    width: 100%;
    max-width: 255px;
    order: 1;
  }
  #header .row_upper .layout_search input[type=text] {
    width: 100%;
    max-width: 255px;
    height: 40px;
  }
  #header .row_lower {
    margin-top: 0;
    order: -1;
  }
  #header #hamburger_btn {
    display: block;
    background-color: var(--color_green);
    height: 42px;
    aspect-ratio: 1/1;
    margin-left: auto;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  #header #hamburger_btn .btn_wrap {
    width: 65%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    gap: 5px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    z-index: 30;
  }
  #header #hamburger_btn span {
    transform-origin: center;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
  }
  #header #hamburger_btn span:nth-of-type(3) {
    width: 75%;
    margin-right: auto;
  }
  #header.open {
    background-color: #fff;
  }
  #header.open .menu_area {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  #header.open #hamburger_btn .btn_wrap {
    gap: 0;
  }
  #header.open #hamburger_btn span {
    margin-bottom: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-bottom: -4px;
  }
  #header.open #hamburger_btn span:nth-of-type(2) {
    opacity: 0;
  }
  #header.open #hamburger_btn span:nth-of-type(3) {
    transform: rotate(-45deg);
    width: 100%;
  }
  .menu_header {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color_green);
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
  }
  .menu_header > *:not(:has(a)),
.menu_header a {
    display: block;
    padding: 1rem 0.625rem;
    border-bottom: 1px dashed var(--color_green);
  }
  .menu_header a {
    color: inherit;
    text-decoration: none;
  }
  .menu_header br {
    display: none;
  }
  .menu_header_sp {
    margin-top: 0.625rem;
    text-align: center;
    font-size: 0.8125rem;
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color_green);
    font-weight: 500;
    display: flex;
    flex-wrap: wrap;
  }
  .menu_header_sp > * {
    width: 50%;
    max-width: 50%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1px;
    margin-right: -1px;
  }
  .menu_header_sp > *:not(:has(a)),
.menu_header_sp a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0.625rem 0;
    border: 1px solid var(--color_green);
  }
  .menu_header_sp > *:not(:has(a)).icon_home,
.menu_header_sp a.icon_home {
    font-size: 0.875rem;
    font-weight: 700;
    gap: 0.5em;
  }
  .menu_header_sp > *:not(:has(a)).icon_home::before,
.menu_header_sp a.icon_home::before {
    content: "";
    width: 1em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_home-green.svg") no-repeat;
    flex-shrink: 0;
  }
  .menu_header_sp a {
    color: inherit;
    text-decoration: none;
  }
}
@media screen and (max-width: 426px) {
  #header::after {
    height: calc(var(--headerHeight) + 2.5em);
    background-image: url("../img/common/header_bg-sp.svg");
  }
}
/*==========
フッター
==========*/
#footer {
  overflow: hidden;
  background-color: var(--color_green);
  color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
}
#footer a:not([class^=btn_]) {
  color: inherit;
  text-decoration: none;
}
#footer .flex {
  display: flex;
  gap: 2.5rem 1rem;
}
#footer .flex > * {
  flex: 1;
}
#footer .logo {
  width: 17.421vw;
  max-width: 223px;
  margin-bottom: 0.625rem;
}
#footer .operation {
  font-weight: 700;
  margin-bottom: 0.625rem;
}
#footer .row_tel {
  display: flex;
  gap: 0 1.5rem;
}
#footer .tel {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
#footer .tel::before {
  content: "";
  width: 1.5em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_tell-white.svg") no-repeat;
  margin-top: -0.125em;
  flex-shrink: 0;
}
#footer .time {
  margin-top: 1.25em;
  display: flex;
}
#footer .time > *:first-child {
  flex-shrink: 0;
}
#footer .aside {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
}
#footer .aside a {
  text-decoration: underline;
}
#footer .menu_area {
  display: flex;
  flex-direction: column;
}
#footer .row_upper {
  display: flex;
  justify-content: flex-end;
  padding-right: 1.25rem;
  gap: 0.625rem;
}
#footer .row_lower {
  margin-top: 1.5rem;
}
#footer .label_wrap {
  margin-top: -2.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
  margin-bottom: 4rem;
}
#footer .label_wrap .btn_header_02 {
  background-color: #fff;
}
#footer .label_wrap .btn_header_02[data-color=lightblue] {
  color: var(--color_lightblue);
}
#footer .label_wrap .btn_header_02[data-color=lightblue]::after {
  background-image: url("../img/common/icon_arrow-circle-lightblue.svg");
}
#footer .label_wrap .btn_header_02[data-color=blue] {
  color: var(--color_blue);
}
#footer .label_wrap .btn_header_02[data-color=blue]::after {
  background-image: url("../img/common/icon_arrow-circle-blue.svg");
}
#footer .label_wrap .btn_header_02[data-color=green] {
  color: var(--color_green);
}
#footer .label_wrap .btn_header_02[data-color=green]::after {
  background-image: url("../img/common/icon_arrow-circle-green.svg");
}
#footer .btn_header_01 {
  font-size: 0.875rem;
  margin-top: auto;
  margin-bottom: auto;
}
@media screen and (max-width: 959px) {
  #footer .flex {
    flex-direction: column;
  }
  #footer .logo {
    width: 100%;
    max-width: 144px;
  }
  #footer .operation,
#footer .address,
#footer .row_tel {
    font-size: 0.875rem;
  }
  #footer .row_tel {
    flex-direction: column;
    margin-top: 1rem;
  }
  #footer .time {
    margin-top: 0.5rem;
  }
  #footer .aside {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
  }
  #footer .aside a {
    text-decoration: underline;
  }
  #footer .row_upper {
    padding-right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
  }
  #footer .row_lower {
    margin-top: 1.5rem;
  }
  #footer .label_wrap {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  #footer .copyrights {
    order: 10;
    margin-top: 1.5rem;
  }
}

.menu_footer {
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 2.5rem;
  display: grid;
  gap: 0.75em 2.5em;
  grid-template-columns: repeat(3, -webkit-max-content);
  grid-template-columns: repeat(3, max-content);
}
@media screen and (max-width: 959px) {
  .menu_footer {
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .menu_footer > * a {
    display: flex;
    align-items: center;
    gap: 0.5em;
  }
  .menu_footer > * a::before {
    content: "";
    width: 0.625em;
    aspect-ratio: 1/1;
    background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  }
}

.menu_footer_sub {
  display: flex;
  gap: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.menu_footer_sub > * {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.menu_footer_sub > *::before {
  content: "";
  width: 0.625em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_arrow-white.svg") no-repeat;
  flex-shrink: 0;
}
.menu_footer_sub > *.icon_home::before, .menu_footer_sub > *:has(.icon_home)::before {
  width: 1em;
  background-image: url("../img/common/icon_home-white.svg");
}
@media screen and (max-width: 959px) {
  .menu_footer_sub {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}

/*==========
コピーライト
==========*/
.copyrights {
  font-size: 0.8125rem;
  font-weight: 500;
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 959px) {
  .copyrights {
    font-size: 0.75rem;
    margin-right: auto;
  }
}

/*==========
PageToTop
==========*/