@charset "UTF-8";
main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

p:not([class]) {
  margin-bottom: 1rem;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

ol:not([class]), ul:not([class]), dl:not([class]) {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol:not([class]) ol, ul:not([class]) ul, ol:not([class]) ul, ul:not([class]) ol {
  margin-bottom: 0;
}

ul[role=list],
ol[role=list] {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

dd:not([class]) {
  margin-bottom: 0.5rem;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  color: var(--color--base-black);
  background-color: transparent;
  text-decoration: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  text-underline-offset: 0.1em;
  color: var(--color--base-black);
  word-break: break-all;
  text-decoration: underline;
}
a:not([class]):hover {
  text-decoration: none;
  opacity: 0.8;
  color: var(--color--accent1);
}

a:not([class]):not([href]),
a:not([class]):not([href]):hover,
a:not([class]):not([href]):focus {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: 700;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  vertical-align: middle;
  border-style: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: auto;
}

img,
embed,
object,
iframe {
  vertical-align: bottom;
}

img,
picture {
  max-width: 100%;
  display: block;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

select::-ms-expand {
  display: none;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px; /* 1 */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

summary[class]::-webkit-details-marker {
  display: none;
}

[contenteditable] {
  outline: none;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.display_none {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.text_wrap {
  white-space: normal;
}

.text_nowrap {
  white-space: nowrap;
}

.text_break {
  word-wrap: break-word;
  word-break: break-word;
}

.text_left {
  text-align: left;
}

.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.d_block {
  display: block;
}

.d_flex {
  display: flex;
  flex-wrap: wrap;
}

.d_inline_block {
  display: inline-block;
}

.justify_content_start {
  justify-content: flex-start;
}

.justify_content_center {
  justify-content: center;
}

.justify_content_end {
  justify-content: flex-end;
}

.justify_content_between {
  justify-content: space-between;
}

.align_items_start {
  align-items: flex-start;
}

.align_items_center {
  align-items: center;
}

.align_items_end {
  align-items: flex-end;
}

.text_decoration_none {
  text-decoration: none;
}

.text_decoration_underline {
  text-decoration: underline;
}

.border_style_dotted {
  border-style: dotted;
}

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

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

.pointer_event_none {
  pointer-events: none;
}

/* アニメーション設定 1*/
.scr-target {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

.scr-target.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1s, opacity 1s;
}

/* reset */
:root {
  --line-height--base-125: 1.25;
  --line-height--base-155: 1.55;
  --line-height--base-175: 1.75;
  --line-height--base-185: 1.85;
  --line-height--base-200: 2.00;
  --line-height--base-225: 2.25;
  --line-height--base-250: 2.50;
  --letter-spacing--base-04: 0.04em;
  --letter-spacing--base-08: 0.08em;
  --letter-spacing--base-10: 0.10em;
  --letter-spacing--base-16: 0.16em;
  --letter-spacing--base-20: 0.20em;
  --letter-spacing--base-32: 0.32em;
  --font-family--barlow: "Barlow";
  --inner-sp-width: 760px;
  --container-sp-width: 792px;
  --inner-mini-width: 860px;
  --container-mini-width: 940px;
  --inner-max-width: 960px;
  --container-max-width: 1040px;
  --inner-header-width: 1200px;
  --container-header-width: 1280px;
  --container-sp-space: 16px;
  --container-pc-space: 40px;
  --color--base-black: #6a3906;
  --color--base-white: #FFFFFF;
  --color--base1: #fbcf00;
  --color--base2: #007130;
  --color--base3: #fef3bf;
  --color--accent1: #f2aa00;
  --color--accent2: #ee3535;
  --color--accent3: #eeeeee;
  --color--accent4: #dcdcdc;
  --color--accent5: #e9e9e2;
  --color--accent6: #ebf4ef;
  --color--accent7: #d9e9e2;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -moz-tab-size: 4;
  tab-size: 4;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 939.8px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media screen and (min-width: 940px) {
  html {
    scroll-padding-top: 80px;
  }
}

html:focus-within {
  scroll-behavior: auto;
}

body {
  text-rendering: optimizeSpeed;
  text-align: left;
  overflow-x: hidden;
  /* set */
  background-color: var(--color--base-white);
  color: var(--color--base-black);
  letter-spacing: var(--letter-spacing--base-04);
  line-height: var(--line-height--base-185);
  margin: 0;
  font-weight: 400;
  font-size: 1rem;
}
@media screen and (max-width: 939.8px) {
  body {
    padding-top: 80px;
  }
}
@media screen and (min-width: 940px) {
  body {
    padding-top: 80px;
  }
}

/* contents_container */
@media screen and (max-width: 939.8px) {
  .contents_container {
    margin: 0 auto;
    padding: 0 var(--container-sp-space);
    max-width: var(--container-sp-width);
  }
}
@media screen and (min-width: 940px) {
  .contents_container {
    margin: 0 auto;
    padding: 0 var(--container-pc-space);
    max-width: var(--container-max-width);
  }
}

.section_title-wrap .section_title {
  position: relative;
  padding-top: 30px;
  font-weight: 700;
  line-height: 1.25;
}
@media screen and (max-width: 939.8px) {
  .section_title-wrap .section_title {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 940px) {
  .section_title-wrap .section_title {
    font-size: 2.625rem;
  }
}
.section_title-wrap .section_title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 4px;
  display: inline-block;
  background-color: var(--color--base2);
}
@media screen and (max-width: 939.8px) {
  .section_title-wrap .section_note {
    margin-top: 20px;
  }
}
@media screen and (min-width: 940px) {
  .section_title-wrap .section_note {
    margin-top: 30px;
  }
}

.section_button-wrap {
  display: flex;
  justify-content: center;
}
.section_button-wrap .section_button,
.section_button-wrap .section_button_back {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: var(--color--base2);
  color: var(--color--base-white);
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
  padding: 15px 20px;
  min-width: 300px;
  transition: all 0.3s;
}
@media screen and (max-width: 939.8px) {
  .section_button-wrap .section_button,
  .section_button-wrap .section_button_back {
    min-height: 50px;
  }
}
@media screen and (min-width: 940px) {
  .section_button-wrap .section_button,
  .section_button-wrap .section_button_back {
    min-height: 60px;
  }
}
.section_button-wrap .section_button:hover,
.section_button-wrap .section_button_back:hover {
  transform: translateX(6px);
  opacity: 0.8;
}
.section_button-wrap .section_button:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 1.5em;
}
.section_button-wrap .section_button_back:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(225deg);
  position: absolute;
  top: calc(50% - 3px);
  left: 1.5em;
}

.page_title-wrap {
  background-color: var(--color--base1);
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 939.8px) {
  .page_title-wrap {
    min-height: 130px;
  }
}
@media screen and (min-width: 940px) {
  .page_title-wrap {
    min-height: 190px;
  }
}
.page_title-wrap .page_title_inner {
  width: 100%;
}
@media screen and (max-width: 939.8px) {
  .page_title-wrap .page_title_inner {
    margin: 0 auto;
    padding: 0 var(--container-sp-space);
    max-width: var(--container-sp-width);
  }
}
@media screen and (min-width: 940px) {
  .page_title-wrap .page_title_inner {
    margin: 0 auto;
    padding: 0 var(--container-pc-space);
    max-width: var(--container-max-width);
  }
}
.page_title-wrap .page_title {
  display: flex;
  font-weight: 700;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 939.8px) {
  .page_title-wrap .page_title {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 940px) {
  .page_title-wrap .page_title {
    font-size: 2.375rem;
  }
}

/* pagination-wrap */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 939.8px) {
  .pagination-wrap {
    flex-wrap: wrap;
    gap: 20px 10px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 940px) {
  .pagination-wrap {
    margin-top: 60px;
  }
}
.pagination-wrap .pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 939.8px) {
  .pagination-wrap .pagination {
    gap: 10px 10px;
    width: 100%;
    order: 2;
  }
}
@media screen and (min-width: 940px) {
  .pagination-wrap .pagination {
    gap: 15px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.pagination-wrap .pagination .pagination_number {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color--base2);
  border: 2px solid var(--color--base2);
  background-color: var(--color--base-white);
  line-height: 1;
  padding: 5px 10px;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 939.8px) {
  .pagination-wrap .pagination .pagination_number {
    border-radius: 5px;
    font-size: 0.875rem;
    min-height: 36px;
    min-width: 36px;
  }
}
@media screen and (min-width: 940px) {
  .pagination-wrap .pagination .pagination_number {
    border-radius: 5px;
    font-size: 1rem;
    min-height: 42px;
    min-width: 42px;
  }
}
.pagination-wrap .pagination .pagination_number.is_current, .pagination-wrap .pagination .pagination_number:not(.is_current):hover {
  border-color: var(--color--base2);
  background-color: var(--color--base2);
  color: var(--color--base-white);
}
@media screen and (max-width: 939.8px) {
  .pagination-wrap .pagination_link {
    order: 1;
    width: calc(50% - 10px);
    max-width: 120px;
  }
}
.pagination-wrap .pagination_prev,
.pagination-wrap .pagination_next {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color--base2);
  border: 2px solid var(--color--base2);
  background-color: var(--color--base-white);
  font-size: 1rem;
  transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 939.8px) {
  .pagination-wrap .pagination_prev,
  .pagination-wrap .pagination_next {
    width: 100%;
    height: 36px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 940px) {
  .pagination-wrap .pagination_prev,
  .pagination-wrap .pagination_next {
    height: 42px;
    border-radius: 5px;
  }
}
.pagination-wrap .pagination_prev.is_current, .pagination-wrap .pagination_prev:not(.is_current):hover,
.pagination-wrap .pagination_next.is_current,
.pagination-wrap .pagination_next:not(.is_current):hover {
  border-color: var(--color--base2);
  background-color: var(--color--base2);
  color: var(--color--base-white);
}
.pagination-wrap .pagination_prev {
  padding: 5px 10px 5px 5px;
}
.pagination-wrap .pagination_prev i {
  font-size: 18px;
}
.pagination-wrap .pagination_prev:hover {
  background-color: var(--color--base-white);
}
.pagination-wrap .pagination_next {
  padding: 5px 5px 5px 10px;
}
.pagination-wrap .pagination_next i {
  font-size: 18px;
}
.pagination-wrap .pagination_next:hover {
  background-color: var(--color--base-white);
}

.pagenation {
  padding: 0;
  display: flex;
  justify-content: center;
}
.pagenation li {
  list-style: none;
  border: 1px solid var(--color--base2);
  border-radius: 5px;
  margin: 0 5px;
  line-height: 1;
}
.pagenation li .number {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--color--base2);
  padding: 0.8em 1em;
  display: flex;
}
.pagenation li .number:hover {
  color: var(--color--base-white);
  background-color: var(--color--base2);
  transition: all 0.3s;
}
.pagenation li .number i {
  font-size: 18px;
}
.pagenation li .number.current {
  color: var(--color--base-white);
  background-color: var(--color--base2);
  padding: 0.8em 1em;
}
.pagenation li .action {
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: var(--color--base2);
  padding: 0.8em 0.4em 0.8em 1em;
  display: flex;
}
.pagenation li .action:hover {
  color: var(--color--base-white);
  background-color: var(--color--base2);
  transition: all 0.3s;
}
.pagenation li .action i {
  font-size: 18px;
}

.item_tag {
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
  border-radius: 20px;
  padding: 6px 10px;
  border: 1px solid var(--color--accent1);
  background-color: var(--color--accent1);
  color: var(--color--base-white);
  transition: all 0.3s;
}
.item_tag.is_current, .item_tag:hover {
  background-color: var(--color--base-white);
  color: var(--color--accent1);
}

.blog_item .blog_image-wrap {
  display: block;
}
@media screen and (max-width: 939.8px) {
  .blog_item .blog_image-wrap {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 940px) {
  .blog_item .blog_image-wrap {
    margin-bottom: 20px;
  }
}
.blog_item .blog_image-wrap:hover {
  opacity: 0.8;
}
.blog_item .blog_image-wrap .blog_image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.14);
}
.blog_item .blog_image-wrap .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 294/190;
}
.blog_item .item_info-wrap {
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 939.8px) {
  .blog_item .item_info-wrap {
    margin: 0 0 10px;
  }
}
@media screen and (min-width: 940px) {
  .blog_item .item_info-wrap {
    margin: 0 0 15px;
  }
}
.blog_item .item_info-wrap .item_time {
  font-weight: 400;
}
.blog_item .item_title-wrap .item_title {
  line-height: 1.55;
  font-weight: 700;
}
@media screen and (max-width: 939.8px) {
  .blog_item .item_title-wrap .item_title {
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 940px) {
  .blog_item .item_title-wrap .item_title {
    font-size: 1.25rem;
  }
}
.blog_item .item_title-wrap:hover {
  color: var(--color--accent1);
}

/**
==============================
layout_header
==============================
*/
#header_sp_nav_toggle {
  display: none;
}

.header_sp_nav {
  display: none;
}
.header_sp_nav .header_sp_nav_bg {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.16);
}
.header_sp_nav .nav_inner {
  opacity: 0;
  overflow-y: auto;
  overscroll-behavior-y: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  max-width: 400px;
  width: 100%;
  height: 100dvh;
  box-shadow: 0 6px 15px 0 rgba(0, 0, 0, 0.2);
  background: #fff;
}
.header_sp_nav .nav_container {
  padding: 20px var(--container-sp-space) 120px;
}
@media screen and (max-width: 939.8px) {
  .header_sp_nav .nav_container {
    min-height: calc(100% + 1px);
  }
}
.header_sp_nav .sp_nav_button-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_sp_nav .sp_nav_button-wrap .sp_nav_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.header_sp_nav .sp_nav_button-wrap .sp_nav_button i {
  color: var(--color--base2);
  font-size: 1.75rem;
  padding: 0;
}
.header_sp_nav .sp_nav_item-wrap {
  padding: 0 40px;
  margin: 0;
  list-style: none;
}
.header_sp_nav .sp_nav_item-wrap li {
  padding: 15px 0;
}
.header_sp_nav .sp_nav_item-wrap .sp_nav_item {
  font-weight: 700;
}
.header_sp_nav .sp_nav_item-wrap .sp_nav_item:hover {
  color: var(--color--base2);
}
.header_sp_nav .sp_nav_item-wrap .is_active > .sp_nav_item,
.header_sp_nav .sp_nav_item-wrap .is_active.sp_nav_item {
  color: var(--color--base2);
}
.header_sp_nav .sp_nav_item-wrap .nav_contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  color: var(--color--base-white);
  background-color: var(--color--base2);
  max-width: 100%;
  min-height: 50px;
  border-radius: 40px;
  padding: 10px 15px;
  transition: 0.3s;
}
.header_sp_nav .sp_nav_item-wrap .nav_contact_button:hover {
  transform: translateY(-6px);
}

#header_sp_nav_toggle:checked ~ .header_sp_nav {
  display: block;
}
#header_sp_nav_toggle:checked ~ .header_sp_nav .nav_inner {
  opacity: 1;
  transition: opacity 0.3s;
  animation: open-menu 0.3s forwards;
}
@keyframes open-menu {
  0% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}

.layout_header {
  position: fixed;
  z-index: 3000;
  top: 0;
  width: 100%;
  background-color: var(--color--base-white);
}
@media screen and (max-width: 1279.8px) {
  .layout_header .header_container {
    margin: 0 auto;
    padding: 20px var(--container-sp-space) 20px;
  }
}
@media screen and (min-width: 1280px) {
  .layout_header .header_container {
    margin: 0 auto;
    padding: 25px var(--container-pc-space) 20px;
    max-width: var(--container-header-width);
  }
}
.layout_header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.layout_header .header_logo-wrap .header_logo {
  max-width: 210px;
}
@media screen and (min-width: 1280px) {
  .layout_header .sp_nav_button-wrap {
    display: none;
  }
}
.layout_header .sp_nav_button-wrap .sp_nav_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.layout_header .sp_nav_button-wrap .sp_nav_button i {
  color: var(--color--base2);
  font-size: 1.75rem;
  padding: 0;
}
@media screen and (max-width: 1279.8px) {
  .layout_header .pc_nav {
    display: none;
  }
}
.layout_header .pc_nav .pc_nav_item-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}
.layout_header .pc_nav .pc_nav_item {
  display: inline-block;
  line-height: 1;
  padding: 5px 5px;
  letter-spacing: 0;
  font-size: 0;
}
.layout_header .pc_nav .pc_nav_item:hover span {
  color: var(--color--base2);
  animation-name: popAnime;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
}
.layout_header .pc_nav .pc_nav_item span {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(1) {
  animation-delay: 0s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(2) {
  animation-delay: 0.1s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(3) {
  animation-delay: 0.2s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(4) {
  animation-delay: 0.3s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(5) {
  animation-delay: 0.4s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(6) {
  animation-delay: 0.5s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(7) {
  animation-delay: 0.6s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(8) {
  animation-delay: 0.7s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(9) {
  animation-delay: 0.8s;
}
.layout_header .pc_nav .pc_nav_item span:nth-child(10) {
  animation-delay: 0.9s;
}
.layout_header .pc_nav .nav_contact_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  color: var(--color--base-white);
  background-color: var(--color--base2);
  max-width: 150px;
  min-height: 40px;
  border-radius: 40px;
  padding: 10px 15px;
  transition: 0.3s;
  min-width: 150px;
}
.layout_header .pc_nav .nav_contact_button:hover {
  transform: translateY(-6px);
}
.layout_header .pc_nav .is_active > .pc_nav_item,
.layout_header .pc_nav .is_active.pc_nav_item {
  color: var(--color--base2);
}

@keyframes popAnime {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
/**
==============================
layout_footer_contact
==============================
*/
@media screen and (max-width: 939.8px) {
  .layout_footer_contact {
    padding: 50px 0 50px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact {
    padding: 100px 0 100px;
  }
}
.layout_footer_contact .recruit_area-wrap {
  margin: 0 auto;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .recruit_area-wrap {
    padding: 0 var(--container-sp-space);
    max-width: var(--container-sp-width);
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .recruit_area-wrap {
    margin: 0 auto;
    padding: 0 var(--container-pc-space);
    max-width: var(--container-max-width);
  }
}
.layout_footer_contact .recruit_area-wrap .recruit_area {
  background-image: image-set(url("../image/common/bg/bg09.jpg.webp") type("image/webp"), url("../image/common/bg/bg09.jpg") type("image/jpeg"));
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 40px;
  display: grid;
  align-content: center;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .recruit_area-wrap .recruit_area {
    padding: 40px 10px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .recruit_area-wrap .recruit_area {
    padding: 40px 40px;
    min-height: 380px;
  }
}
.layout_footer_contact .recruit_area-wrap .recruit_area:hover {
  opacity: 0.8;
}
.layout_footer_contact .recruit_area-wrap .recruit_area_text1 {
  color: var(--color--base-white);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.25;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .recruit_area-wrap .recruit_area_text1 {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .recruit_area-wrap .recruit_area_text1 {
    font-size: 2.625rem;
  }
}
.layout_footer_contact .recruit_area-wrap .recruit_area_text2 {
  margin-bottom: 20px;
  text-align: center;
  color: var(--color--base-white);
  font-weight: 400;
}
.layout_footer_contact .recruit_area-wrap .recruit_button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.layout_footer_contact .recruit_area-wrap .recruit_button-wrap .recruit_button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.25;
  font-weight: 700;
  background-color: var(--color--base1);
  transition: all 0.3s;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .recruit_area-wrap .recruit_button-wrap .recruit_button {
    border-radius: 30px;
    padding: 20px 20px;
    min-width: 300px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .recruit_area-wrap .recruit_button-wrap .recruit_button {
    border-radius: 30px;
    padding: 20px 30px;
    min-width: 300px;
  }
}
.layout_footer_contact .recruit_area-wrap .recruit_button-wrap .recruit_button:hover {
  transform: translateX(6px);
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap {
    margin: 50px auto 0;
    padding: 0 var(--container-sp-space);
    max-width: var(--container-sp-width);
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap {
    margin: 100px auto 0;
    padding: 0 var(--container-pc-space);
    max-width: var(--container-max-width);
  }
}
.layout_footer_contact .contact_area-wrap .contact_area {
  display: grid;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .contact_area {
    gap: 30px;
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .contact_area {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
.layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 4px solid var(--color--accent1);
  border-radius: 50px;
  text-decoration: none;
  background-color: var(--color--base-white);
  text-align: center;
  transition: all 0.3s;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color--accent1);
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button {
    height: 80px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button {
    height: 100px;
    font-size: 1.5rem;
  }
}
.layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:before {
  position: relative;
  content: "";
  display: inline-block;
  background-position: 50%;
  background-size: 45px;
  background-repeat: no-repeat;
  border-radius: 50px;
  background-image: url("../image/common/icon/icon_heart.webp");
  background-color: var(--color--accent1);
  left: -1px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:before {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:before {
    width: 100px;
    height: 100px;
  }
}
.layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:after {
  position: relative;
  content: "";
  display: inline-block;
  right: -1px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:after {
    width: 40px;
    height: 80px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:after {
    width: 50px;
    height: 100px;
  }
}
.layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button span {
  flex: 1;
}
.layout_footer_contact .contact_area-wrap .supporters_button-wrap .supporters_button:hover {
  transform: translateY(-6px);
}
.layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 4px solid var(--color--base2);
  border-radius: 50px;
  text-decoration: none;
  background-color: var(--color--base-white);
  text-align: center;
  transition: all 0.3s;
  line-height: 1.25;
  font-weight: 700;
  color: var(--color--base2);
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button {
    height: 80px;
    font-size: 1.125rem;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button {
    height: 100px;
    font-size: 1.5rem;
  }
}
.layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:before {
  position: relative;
  content: "";
  display: inline-block;
  background-position: 50%;
  background-size: 45px;
  background-repeat: no-repeat;
  border-radius: 50px;
  background-image: url("../image/common/icon/icon_mail.webp");
  background-color: var(--color--base2);
  left: -1px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:before {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:before {
    width: 100px;
    height: 100px;
  }
}
.layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:after {
  position: relative;
  content: "";
  display: inline-block;
  right: -1px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:after {
    width: 40px;
    height: 80px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:after {
    width: 50px;
    height: 100px;
  }
}
.layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button span {
  flex: 1;
}
.layout_footer_contact .contact_area-wrap .contact_button-wrap .contact_button:hover {
  transform: translateY(-6px);
}

/**
==============================
layout_footer
==============================
*/
.layout_footer {
  overflow: hidden;
  position: relative;
  background-color: var(--color--base1);
  background-image: image-set(url("../image/common/bg/bg00.jpg.webp") type("image/webp"), url("../image/common/bg/bg00.jpg") type("image/jpeg"));
  background-repeat: repeat;
  background-position: top center;
}
@media screen and (max-width: 939.8px) {
  .layout_footer {
    padding: 40px 0 15px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer {
    padding: 70px 0 15px;
  }
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_inner {
    margin: 0 auto 50px;
    padding: 0 var(--container-sp-space);
    max-width: var(--container-sp-width);
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_inner {
    margin: 0 auto 90px;
    padding: 0 var(--container-pc-space);
    max-width: var(--container-max-width);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left {
    display: grid;
  }
}
.layout_footer .footer_left .footer_logo-wrap {
  display: inline-block;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left .footer_logo-wrap {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_left .footer_logo-wrap {
    margin-bottom: 35px;
  }
}
.layout_footer .footer_left .footer_address-wrap {
  margin-bottom: 20px;
}
.layout_footer .footer_left .footer_address-wrap .footer_address {
  font-weight: 700;
  line-height: 1.25;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left .footer_address-wrap .footer_address {
    font-size: 0.875rem;
    flex-direction: column;
    text-align: center;
  }
}
.layout_footer .footer_left .footer_info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left .footer_info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_left .footer_info {
    align-items: center;
  }
}
.layout_footer .footer_left .footer_info .info_tel {
  font-family: var(--font-family--barlow), sans-serif;
  text-align: center;
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-block;
  background-color: var(--color--base-white);
  line-height: 1;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left .footer_info .info_tel {
    border-radius: 20px;
    padding: 10px 20px;
    min-width: 200px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_left .footer_info .info_tel {
    border-radius: 30px;
    padding: 20px 30px;
  }
}
.layout_footer .footer_left .footer_info .info_tel:hover {
  text-decoration: underline;
}
.layout_footer .footer_left .footer_info .info_fax {
  font-family: var(--font-family--barlow), sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_left .footer_info .info_fax {
    text-align: center;
  }
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_right {
    display: none;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_right .footer_links-wrap {
    max-width: 400px;
    margin-left: auto;
    margin-bottom: 40px;
  }
}
.layout_footer .footer_right .footer_links-wrap .footer_links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.layout_footer .footer_right .footer_links-wrap .link_text {
  display: inline-block;
  text-align: center;
  font-weight: 700;
  line-height: 1.55;
}
.layout_footer .footer_right .footer_links-wrap .link_text:hover {
  opacity: 0.8;
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_right .recruit_button-wrap {
    max-width: 400px;
    margin-left: auto;
  }
}
.layout_footer .footer_right .recruit_button-wrap .recruit_button {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color--base2);
  color: var(--color--base-white);
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
  padding: 15px 20px;
  min-height: 60px;
}
.layout_footer .footer_right .recruit_button-wrap .recruit_button:hover {
  text-decoration: underline;
}
.layout_footer .copyright {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 300;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .copyright {
    margin-bottom: 50px;
  }
}
.layout_footer .footer_bg_area .bg01 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: image-set(url("../image/common/bg/bg01.png.webp") type("image/webp"), url("../image/common/bg/bg01.png") type("image/png"));
  position: absolute;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_bg_area .bg01 {
    width: 43px;
    height: 54px;
    right: calc((100vw - 260px) / 2 - 40px);
    top: 100px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_bg_area .bg01 {
    width: 87px;
    height: 108px;
    right: calc((100vw - 1100px) / 2 - 100px);
    top: 60px;
  }
}
.layout_footer .footer_bg_area .bg02 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: image-set(url("../image/common/bg/bg02.png.webp") type("image/webp"), url("../image/common/bg/bg02.png") type("image/png"));
  position: absolute;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_bg_area .bg02 {
    width: 46px;
    height: 45px;
    left: calc((100vw - 260px) / 2 - 40px);
    bottom: 140px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_bg_area .bg02 {
    width: 93px;
    height: 91px;
    left: calc((100vw - 1100px) / 2 - 100px);
    bottom: 50px;
  }
}
.layout_footer .footer_bg_area .bg03 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: image-set(url("../image/common/bg/bg03.png.webp") type("image/webp"), url("../image/common/bg/bg03.png") type("image/png"));
  position: absolute;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_bg_area .bg03 {
    width: 61px;
    height: 51px;
    right: calc((100vw - 260px) / 2 - 50px);
    bottom: 130px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_bg_area .bg03 {
    width: 123px;
    height: 102px;
    right: calc((100vw - 1100px) / 2 - 110px);
    bottom: 40px;
  }
}
.layout_footer .footer_bg_area .bg04 {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: image-set(url("../image/common/bg/bg04.png.webp") type("image/webp"), url("../image/common/bg/bg04.png") type("image/png"));
  position: absolute;
}
@media screen and (max-width: 939.8px) {
  .layout_footer .footer_bg_area .bg04 {
    width: 28px;
    height: 35px;
    left: calc((100vw - 260px) / 2 - 30px);
    top: 120px;
  }
}
@media screen and (min-width: 940px) {
  .layout_footer .footer_bg_area .bg04 {
    width: 57px;
    height: 71px;
    left: calc((100vw - 1100px) / 2 - 90px);
    top: 70px;
  }
}

/**
==============================
follow_button
==============================
*/
@media screen and (max-width: 939.8px) {
  .follow_button_pc {
    display: none;
  }
}
@media screen and (min-width: 940px) {
  .follow_button_pc {
    font-size: 14px;
    letter-spacing: normal;
    z-index: 9000;
    position: fixed;
    right: 0;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.follow_button_pc .button .entry {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color--accent1);
  width: 60px;
  writing-mode: vertical-rl;
  border-radius: 15px 0 0 15px;
  font-size: 1.25rem;
  padding: 20px 0;
}
.follow_button_pc .button .entry:hover {
  opacity: 0.8;
}
.follow_button_pc .button .entry img {
  width: 22px;
  margin-right: 0;
  margin-bottom: 6px;
}

@media screen and (max-width: 939.8px) {
  .follow_button_sp {
    width: 100%;
    font-size: 14px;
    letter-spacing: normal;
    z-index: 9000;
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
  }
}
@media screen and (min-width: 940px) {
  .follow_button_sp {
    display: none;
  }
}
.follow_button_sp .button {
  width: 100%;
}
.follow_button_sp .button .entry {
  width: 100%;
  height: 45px;
  display: grid;
  justify-content: center;
  align-content: center;
  gap: 5px;
  text-align: center;
  background-color: var(--color--base2);
  color: var(--color--base-white);
  font-weight: 700;
}
.follow_button_sp .button .entry:hover {
  opacity: 0.8;
}

/*# sourceMappingURL=main.css.map */
