@charset "UTF-8";
:root {
  --black: 38,38,38;
  --hover_black: 120,120,120;
  --hover_white: 210,210,210;
  --red: 255,0,0;
  --border: rgba(var(--black),.6);
  --contents_width: 1100px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1160px;
  --sidebar_width: 250px;
  --header_height_sp: 50px;
  --header_height_pc: 100px;
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, a, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  word-break: break-all;
}
body {
  -webkit-text-size-adjust: 100%;
}
article, aside, details, figcaption, figure,
main, footer, header, menu, nav, section {
  display: block;
}
h1, h2, h3, h4, h5, h6 {
  word-break: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
ul:not([class]),
ol:not([class]) {
  padding-left: 1.25em;
}
ul[class],
ol[class] {
  list-style: none;
}
span {
  font-weight: inherit;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}
a {
  color: inherit;
}
@media all and (min-width: 768px) {
  a:hover {
    text-decoration: none;
  }
}
a[class] {
  text-decoration: none;
}
ins {
  background-color: #ff9;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
address {
  font-style: normal;
}
table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgb(var(--border));
  margin: 1em 0;
  padding: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
iframe {
  max-width: 100%;
}
/* form
================================================== */
input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
  display: block;
  width: 100%;
  max-width: 100%;
  font-family: inherit;
  outline: none;
  border: 1px solid;
  border-radius: 0;
  background: none;
}
@media all and (max-width: 767px) {
  input[type=text], input[type=email], input[type=tel], textarea, button, select, option {
    font-size: 1.6rem;
  }
}
input[type=text], input[type=email], input[type=tel], textarea, button {
  appearance: none;
  outline: none;
}
input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
textarea {
  resize: vertical;
}
button {
  cursor: pointer;
}
/* 02_base
================================================ */
html {
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header_height_sp);
}
@media all and (min-width: 768px) {
  html {
    scroll-padding-top: var(--header_height_pc);
  }
}
body {
  min-width: 375px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2.14;
  font-weight: 300;
  overflow: hidden;
  background: url(../img/common/bg_main01.png) repeat left top/200px;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    line-height: 2.57;
  }
}
.l-wrapper {
  position: relative;
}
@media all and (min-width: 768px) {
  .l-container.is-col2 {
    display: grid;
    grid-template-columns: var(--sidebar_width) auto;
    gap: 0 20px;
    width: var(--contents_width);
    margin: 0 auto;
  }
  .l-container.is-col2 .l-contents {
    flex: 1;
  }
  .l-container.is-col2 .l-sidebar {
    order: -1;
    flex-basis: var(--sidebar_width);
  }
}
/* sp <--> tb ~ pc
-------------------------------------- */
.u-media-query {
  display: none;
  font-family: "sp";
}
@media all and (min-width: 768px) {
  .u-media-query {
    font-family: "tb";
  }
}
@media all and (min-width: 1160px) {
  .u-media-query {
    font-family: "pc";
  }
}
@media all and (max-width: 767px) {
  .u-view-pc {
    display: none !important;
  }
}
@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}
/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}
/* link
-------------------------------------- */
a.u-alpha {
  display: block;
  text-decoration: none;
}
@media all and (min-width: 768px) {
  a.u-alpha {
    transition: all 0.3s ease;
  }
  a.u-alpha:hover {
    opacity: 0.7;
  }
}
a.u-zoom {
  display: block;
  text-decoration: none;
}
a.u-zoom .u-zoom__img {
  display: block;
}
a.u-zoom .u-zoom__img-wrap {
  display: block;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  a.u-zoom .u-zoom__img {
    transition: all 0.3s ease;
  }
  a.u-zoom:hover .u-zoom__img {
    transform: scale(1.1);
  }
}
/* layout
-------------------------------------- */
.u-inner {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
@media all and (min-width: 768px) {
  .u-inner {
    width: 100%;
    max-width: var(--contents_width);
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
/* .c-archive01
================================================== */
.c-archive01__item {
  padding-bottom: 20px;
}
.c-archive01__item:last-child {
  border-bottom: none;
}
.c-archive01__thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.c-archive01__info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.c-archive01__info-date {
  font-size: 14px;
  margin-right: 10px;
}
.c-archive01__info-category {
  font-size: 13px;
  background-color: #604b26;
  color: #fff;
  padding: 2px 20px;
  border-radius: 20px;
}
.c-archive01__title {
  font-size: 1.8rem;
  margin-top: 10px;
  line-height: 1.66;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.c-archive01__title::after {
  content: "…";
  position: absolute;
  right: 0;
  bottom: 0;
}
@media all and (min-width: 768px) {
  .c-archive01__list {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
  }
  .c-archive01__item {
    width: calc(33.333333% - 33.333333px);
  }
}
/* .c-btn01
================================================== */
.c-btn01 {
  margin: 40px auto 0;
  padding: 0;
  border: none;
  appearance: none;
}
.c-btn01__link {
  font-weight: 500;
  min-height: 80px;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgb(var(--black));
  color: #fff;
  position: relative;
  padding: 10px 50px;
  border-radius: 40px;
}
.c-btn01__link::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.c-btn01__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    max-width: 350px;
  }
  .c-btn01__link {
    transition: all 0.3s ease;
  }
  .c-btn01__link::after {
    transition: all 0.3s ease;
  }
  .c-btn01__link:hover {
    background-color: rgb(var(--hover_black));
  }
  .c-btn01__link:hover::after {
    right: 0;
  }
}
@media all and (max-width: 767px) {
  .c-btn01__link {
    font-size: 1.6rem;
    min-height: 70px;
    padding: 10px 35px;
  }
  .c-btn01__link::before {
    right: 30px;
    width: 18px;
    height: 18px;
  }
  .c-btn01__link::after {
    right: 40px;
    width: 25px;
  }
}
.c-btn01.is-white .c-btn01__link {
  background-color: #fff;
  color: rgb(var(--black));
}
.c-btn01.is-white .c-btn01__link::before {
  border-color: rgb(var(--black));
}
.c-btn01.is-white .c-btn01__link::after {
  background-color: rgb(var(--black));
}
.c-btn01.is-white .c-btn01__link:hover {
  background-color: rgb(var(--hover_white));
}
/*  .c-faq01
================================================== */
.c-faq01__ico {
  position: absolute;
  top: 14px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 30px;
  height: 30px;
  text-align: center;
  background: #ffffff;
  color: rgb(var(--black));
  font-weight: 700;
  border-radius: 50%;
}
.c-faq01__head {
  position: relative;
  padding: 15px 15px 15px 50px;
  background: rgb(var(--black));
  color: #fff;
}
.c-faq01__head[class*=toggle] {
  padding-right: 50px;
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before, .c-faq01__head[class*=toggle]::after {
  position: absolute;
  top: 50%;
  right: 15px;
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin-top: -1px;
  background: #fff;
  transition: all 0.3s ease;
}
.c-faq01__head[class*=toggle]::before {
  transform: rotate(-90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  transform: rotate(0);
}
.c-faq01__txt {
  position: relative;
  padding: 15px 15px 15px 50px;
}
.c-faq01__txt .c-faq01__ico {
  background: rgb(var(--black));
  color: #ffffff;
}
/* .c-form
================================================== */
input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 70px;
  padding: 5px 10px;
  font-size: 1.6rem;
  background-color: #fff;
  border: none;
  appearance: none;
  font-family: inherit;
}
textarea.c-form-parts {
  height: 220px;
  resize: vertical;
}
select.c-form-parts {
  width: 300px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
}
.c-form-parts-list {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
}
.c-form-parts-list .c-form-parts {
  margin-right: 20px;
}
.c-form-parts-list.is-flex-enb {
  justify-content: flex-end;
}
/* .c-form
================================================== */
.c-form {
  max-width: 900px;
  margin: auto;
}
.c-form th, .c-form td {
  border-style: solid;
  border-width: 0;
}
.c-form th {
  padding: 0 15px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 400;
}
@media all and (max-width: 767px) {
  .c-form table, .c-form thead, .c-form tbody, .c-form tr, .c-form th, .c-form td {
    display: block;
  }
  .c-form th {
    border-bottom: 0;
  }
  .c-form tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form th, .c-form td {
    padding: 10px 0;
  }
  .c-form th {
    width: 250px;
    padding-right: 20px;
    box-sizing: border-box;
  }
}
.c-form-lead {
  text-align: center;
  margin-bottom: 80px;
}
.c-form-lead .c-form-label {
  float: none;
}
/* .c-form-label
================================================== */
.c-form-label {
  float: right;
  color: #00a081;
}
/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 1.3rem;
}
td .c-form-note {
  margin-top: 10px;
}
/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  flex-wrap: wrap;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  max-width: 100px;
  flex-basis: 100px;
}
/* 確認画面
================================================ */
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.is-confirm .c-form-postcode .c-form-postcode__input {
  max-width: none;
  flex-basis: 0;
}
/* .c-form-item
================================================== */
.c-form-item {
  display: flex;
}
.c-form-item + .c-form-item {
  margin-top: 10px;
}
.c-form-item-list {
  display: flex;
}
.c-form-item-list .c-form-item + .c-form-item {
  margin-top: 0;
  margin-left: 14px;
}
.c-form-item__prefix {
  min-width: 20px;
  margin-right: 10px;
  padding-top: 5px;
}
.c-form-item__suffix {
  min-width: 20px;
  margin-left: 10px;
  padding-top: 5px;
}
.c-form-item__input {
  flex: 1;
}
.c-form-item .c-form-item__input [name*=year] {
  width: 80px;
}
.c-form-item .c-form-item__input [name*=month] {
  width: 64px;
}
.c-form-item .c-form-item__input [name*=day] {
  width: 64px;
}
@media all and (max-width: 374px) {
  .c-form-item .c-form-item__input [name*=year] {
    width: 58px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 50px;
    padding: 5px;
    background-position: right 8px top 50%;
  }
}
@media all and (min-width: 1160px) {
  .c-form-item {
    display: inline-flex;
  }
  .c-form-item + .c-form-item {
    margin: 0 0 0 20px;
  }
  .c-form-item__input {
    width: 200px;
  }
  .c-form-item-list .c-form-item__input {
    width: auto;
  }
  .c-form-item .c-form-item__input [name*=year] {
    width: 82px;
  }
  .c-form-item .c-form-item__input [name*=month] {
    width: 62px;
  }
  .c-form-item .c-form-item__input [name*=day] {
    width: 62px;
  }
}
/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-item .c-form-item__prefix,
.mw_wp_form_confirm .c-form-item .c-form-item__suffix,
.is-confirm .c-form-item .c-form-item__prefix,
.is-confirm .c-form-item .c-form-item__suffix {
  min-width: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-item .c-form-item__input,
.is-confirm .c-form-item .c-form-item__input {
  width: auto;
}
/* .c-form-address
================================================== */
.c-form-address {
  margin-top: 15px;
}
/* .c-form-agreement
================================================== */
.c-form-agreement {
  margin-top: 70px;
  text-align: center;
}
/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.c-form-btn {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 60px;
  padding: 5px 10px;
  font-size: 1.6rem;
  border: 0;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .c-form-btn {
    width: 300px;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
}
/* .c-form
================================================ */
.c-form .c-radio {
  display: block;
}
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .c-radio input {
  display: none;
}
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .c-radio .c-radio__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
  border-radius: 50%;
}
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 4px;
  left: 1px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: rgb(var(--black));
}
@media all and (min-width: 768px) {
  .c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .c-radio input:checked + .c-radio__text::after {
    top: 6px;
  }
}
.c-radio-list {
  display: flex;
  flex-wrap: wrap;
}
.c-radio-list .c-radio {
  display: inline-block;
  margin-right: 20px;
}
.c-radio-list .c-radio + .c-radio {
  margin-top: 0;
}
/* .c-form
================================================ */
.c-form .c-checkbox {
  display: block;
}
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .c-checkbox input {
  display: none;
}
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .c-checkbox .c-checkbox__text::before {
  box-sizing: border-box;
  position: absolute;
  top: 3px;
  left: 0;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid;
}
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
  position: absolute;
  top: 7px;
  left: 5px;
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  border-style: solid;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
}
@media all and (min-width: 768px) {
  .c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }
  .c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 9px;
  }
}
.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}
/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}
/* .c-head01
================================================== */
.c-head01 {
  margin-bottom: 70px;
  line-height: 1.5;
  text-align: center;
}
.c-head01__main {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  font-weight: 400;
}
.c-head01__sub {
  font-weight: 400;
  font-size: 9rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}
@media all and (max-width: 767px) {
  .c-head01 {
    margin-bottom: 40px;
  }
  .c-head01__main {
    font-size: 1.4rem;
  }
  .c-head01__sub {
    font-size: 4rem;
  }
}
/* .c-head02
================================================== */
.c-head02 {
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-feature-settings: "palt";
}
.c-head02__sub {
  font-weight: 400;
  font-size: 1.8rem;
  font-feature-settings: "palt";
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 3.5rem;
    margin-bottom: 30px;
  }
  .c-head02__sub {
    font-size: 2rem;
  }
}
/* .c-head03
================================================== */
.c-head03 {
  font-size: 2.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  padding-left: 5px;
  margin-bottom: 20px;
}
/* .c-pager01
================================================== */
.c-pager01 {
  margin-top: 53px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.c-pager01 .screen-reader-text {
  display: none;
}
.c-pager01 .nav-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.c-pager01 > li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
}
.c-pager01 .page-numbers {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 2px;
  text-align: center;
  text-decoration: none;
  color: rgb(var(--black));
  font-weight: bold;
  border-radius: 50%;
  background-color: #fff;
}
.c-pager01 .page-numbers.current {
  background-color: rgb(var(--black));
  color: #fff;
  border-color: rgb(var(--black));
}
.c-pager01 .page-numbers.prev, .c-pager01 .page-numbers.next {
  width: 100%;
  text-indent: -9999px;
  position: relative;
}
.c-pager01 .page-numbers.prev::before, .c-pager01 .page-numbers.next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -6px;
  width: 7px;
  height: 7px;
  border-top: 1px solid rgb(var(--black));
  border-right: 1px solid rgb(var(--black));
}
.c-pager01 .page-numbers.prev::before {
  transform: rotate(-135deg);
}
.c-pager01 .page-numbers.next::before {
  transform: rotate(45deg);
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin-top: 80px;
  }
  .c-pager01 > li {
    width: 50px;
    height: 50px;
  }
  .c-pager01 .page-numbers {
    padding-top: 8px;
  }
}
/* .l-breadcrumb
================================================ */
.l-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-breadcrumb-list__item {
  display: inline-block;
  vertical-align: top;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item {
  margin-left: 5px;
}
.l-breadcrumb-list__item + .l-breadcrumb-list__item:before {
  content: ">";
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .l-breadcrumb-list {
    white-space: nowrap;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
  }
  .l-breadcrumb-list::-webkit-scrollbar {
    display: none;
  }
}
/* .l-footer__contact
================================================== */
.l-footer__contact {
  margin-top: -30px;
  background: url(../img/common/bg_contact01_pc.png) repeat center top/cover;
  color: #fff;
  text-align: center;
  position: relative;
}
.l-footer__contact-inner {
  padding: 110px 0 105px;
}
/* .l-footer
================================================== */
.l-footer {
  position: relative;
}
.l-footer__inner {
  padding-top: 70px;
  padding-bottom: 70px;
}
.l-footer__logo {
  display: block;
  width: 290px;
  margin-bottom: 25px;
}
.l-footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 2.1;
}
.l-footer__info-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.l-footer__nav {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  width: 445px;
  gap: 70px;
}
.l-footer__cr {
  max-width: 1100px;
  margin: 60px auto 0;
  color: #999;
}
@media all and (max-width: 767px) {
  .l-footer__inner {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .l-footer__logo {
    width: 228px;
    margin-bottom: 25px;
  }
  .l-footer__cr {
    margin-top: 20px;
  }
}
/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
.l-header__inner {
  padding: 0 0 0 20px;
}
.l-header__contact-link {
  background-color: rgb(var(--black));
  color: #fff;
  display: block;
  border-radius: 25px;
  padding: 10px 20px;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
  }
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 0 40px;
  }
  .l-header__contact {
    width: 160px;
  }
  .l-header__contact-link {
    transition: all 0.3s ease;
  }
  .l-header__contact-link:hover {
    background-color: rgb(var(--hover_black));
  }
}
/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: var(--header_height_sp);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 10px;
}
.l-header-info__logo {
  width: 150px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: var(--header_height_pc);
  }
  .l-header-info__logo {
    width: 270px;
  }
}
/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--header_height_sp);
  height: var(--header_height_sp);
  border: none;
  cursor: pointer;
}
.l-nav-btn__line {
  position: absolute;
  right: 20px;
  width: 26px;
  height: 2px;
  content: "";
  background: rgb(var(--black));
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 20px;
}
.l-nav-btn__line:nth-child(2) {
  top: 29px;
}
.l-nav-btn__line:nth-child(3) {
  top: 38px;
}
.l-nav-btn.is-open .l-nav-btn__line {
  background: #fff;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 29px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  opacity: 0;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(3) {
  top: 29px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  font-size: 1rem;
  line-height: 1.2;
  text-align: center;
}
/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - var(--header_height_sp));
  min-width: 320px;
  padding: 60px 0;
  box-sizing: border-box;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
@media all and (max-width: 767px) {
  .l-nav {
    overflow: auto;
    transform: translateX(120%);
    transition: all 0.3s ease;
    background: url(../img/common/bg_spmenu01.png) repeat center/cover;
    color: #fff;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    position: static;
    width: auto;
    min-width: auto;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
/* .l-nav-list
================================================== */
@media all and (max-width: 767px) {
  .l-nav-list {
    padding: 10px;
    display: grid;
    gap: 10px;
  }
  .l-nav-list__item {
    font-size: 1.4rem;
  }
  .l-nav-list__item-link {
    display: block;
    text-align: left;
    padding: 20px 10px;
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #4d4d4d;
  }
}
@media all and (min-width: 768px) {
  .l-nav-list {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
    min-height: var(--header_height_pc);
  }
  .l-nav-list__item-link {
    display: block;
    padding: 20px;
    position: relative;
  }
  .l-nav-list__item-link::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgb(var(--black));
    transition: all 0.3s ease;
    opacity: 0;
  }
  .l-nav-list__item-link:hover::before {
    top: 10px;
    opacity: 1;
  }
}
/* .l-nav-overlay
================================================ */
.l-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
}
@media all and (min-width: 768px) {
  .l-nav-overlay {
    display: none !important;
  }
}
/* .l-main-img HOME
================================================ */
.l-main-img {
  background: url("../img/home/bg_mainimg01_sp.png") no-repeat center top/cover;
}
.l-main-img__inner {
  position: relative;
  height: 728px;
}
.l-main-img__copy {
  color: #fff;
  text-align: center;
  position: absolute;
  top: 312px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  letter-spacing: 0.4em;
  line-height: 1.6;
  font-weight: 400;
}
.l-main-img__img {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 450px;
  height: 660px;
}
.l-main-img__scroll {
  position: absolute;
  left: 10px;
  top: 285px;
  z-index: 1;
}
.l-main-img__scroll-link {
  display: block;
  padding-top: 100px;
  position: relative;
}
.l-main-img__scroll-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background-color: rgb(var(--black));
  animation: scroll 2.5s ease-in-out infinite;
}
@keyframes scroll {
  0% {
    height: 0px;
  }
  100% {
    height: 80px;
  }
}
@media all and (min-width: 768px) {
  .l-main-img {
    background: url("../img/home/bg_mainimg01_pc.png") no-repeat left 42% top -114px/1690px;
  }
  .l-main-img__scroll {
    left: 20px;
  }
  .l-main-img__img {
    width: 1212px;
    height: 741px;
    top: 70px;
  }
  .l-main-img__copy {
    top: 384px;
    font-size: 3.8rem;
  }
}
@media (min-width: 1290px) {
  .l-main-img__scroll {
    top: 613px;
  }
}
/* .l-sub-img
================================================ */
.l-sub-img {
  text-align: center;
}
.l-sub-img__inner {
  padding-top: 150px;
  padding-bottom: 100px;
}
.l-sub-img .c-head01 {
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  .l-sub-img__inner {
    padding-top: 100px;
  }
}
/* .l-sidebar
================================================== */
.js-c-anime-elem[data-anime=fadein-up] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-up].is-animated {
  opacity: 1;
  transform: translateY(0);
}
.js-c-anime-elem[data-anime=fadein-left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-left].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime=fadein-right] {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease;
}
.js-c-anime-elem[data-anime=fadein-right].is-animated {
  opacity: 1;
  transform: translateX(0);
}
.js-c-anime-elem[data-anime-delay="0.1"] {
  transition-delay: 0.1s;
}
.js-c-anime-elem[data-anime-delay="0.2"] {
  transition-delay: 0.2s;
}
.js-c-anime-elem[data-anime-delay="0.3"] {
  transition-delay: 0.3s;
}
.js-c-anime-elem[data-anime-delay="0.4"] {
  transition-delay: 0.4s;
}
.js-c-anime-elem[data-anime-delay="0.5"] {
  transition-delay: 0.5s;
}
.js-c-anime-elem[data-anime-delay="0.6"] {
  transition-delay: 0.6s;
}
.js-c-anime-elem[data-anime-delay="0.7"] {
  transition-delay: 0.7s;
}
.js-c-anime-elem[data-anime-delay="0.8"] {
  transition-delay: 0.8s;
}
.js-c-anime-elem[data-anime-delay="0.9"] {
  transition-delay: 0.9s;
}
.js-c-anime-elem[data-anime-delay="1"] {
  transition-delay: 1s;
}
.js-c-anime-elem[data-anime-delay="1.1"] {
  transition-delay: 1.1s;
}
.js-c-anime-elem[data-anime-delay="1.2"] {
  transition-delay: 1.2s;
}
.js-c-anime-elem[data-anime-delay="1.3"] {
  transition-delay: 1.3s;
}
.js-c-anime-elem[data-anime-delay="1.4"] {
  transition-delay: 1.4s;
}
.js-c-anime-elem[data-anime-delay="1.5"] {
  transition-delay: 1.5s;
}
.js-c-anime-elem[data-anime-delay="1.6"] {
  transition-delay: 1.6s;
}
.js-c-anime-elem[data-anime-delay="1.7"] {
  transition-delay: 1.7s;
}
.js-c-anime-elem[data-anime-delay="1.8"] {
  transition-delay: 1.8s;
}
.js-c-anime-elem[data-anime-delay="1.9"] {
  transition-delay: 1.9s;
}
.js-c-anime-elem[data-anime-delay="2"] {
  transition-delay: 2s;
}
.js-c-switch-tab {
  cursor: pointer;
}
.js-c-switch-content {
  display: none;
}
.js-c-switch-content.is-active {
  display: block;
}
.js-c-toggle-trigger {
  cursor: pointer;
}
.js-c-toggle-content {
  display: none;
}
#company .l-sub-img__inner {
  padding-bottom: 0;
}
/* .company-outline
================================================ */
.company-outline {
  background: url(../img/company/bg_company01_pc.png) no-repeat center top 27px/cover;
}
.company-outline__inner {
  padding-top: 185px;
  padding-bottom: 150px;
}
.company-outline__table-area {
  max-width: 900px;
  margin: auto;
  position: relative;
}
.company-outline__table-area::before, .company-outline__table-area::after {
  content: "";
  position: absolute;
}
.company-outline__table-area::before {
  left: 629px;
  top: -364px;
  width: 612px;
  height: 730px;
  background: url(../img/company/img_outline01.png) no-repeat center/contain;
}
.company-outline__table-area::after {
  bottom: -175px;
  right: 906px;
  width: 302px;
  height: 360px;
  background: url(../img/company/img_outline02.png) no-repeat center/contain;
}
.company-outline__table-area tr {
  border-top: 1px solid #ccc;
}
.company-outline__table-area tr:last-child {
  border-bottom: 1px solid #ccc;
}
.company-outline__table-area th {
  width: 155px !important;
  padding: 30px 10px;
  text-align: left;
  font-weight: 300;
}
.company-outline__table-area td {
  width: calc(100% - 155px);
  padding: 30px 0;
  line-height: 1.8;
}
.company-outline__table-area td p + p {
  margin-top: 2em;
}
@media all and (max-width: 767px) {
  .company-outline {
    background: url(../img/company/bg_company01_sp.png) no-repeat center top 20px/cover;
  }
  .company-outline__inner {
    padding-top: 125px;
    padding-bottom: 90px;
  }
  .company-outline__table-area::before {
    right: -55px;
    left: auto;
    top: -170px;
    width: 210px;
    height: 241px;
  }
  .company-outline__table-area::after {
    right: -60px;
    bottom: -120px;
    width: 190px;
    height: 206px;
    transform: scaleX(-1);
  }
  .company-outline__table {
    display: block;
    width: 100%;
  }
  .company-outline__table tbody, .company-outline__table tr, .company-outline__table th, .company-outline__table td {
    display: block;
    width: 100%;
    line-height: 1.4;
  }
  .company-outline__table th {
    padding: 22px 0 6px;
  }
  .company-outline__table td {
    padding: 5px 0 22px;
  }
}
#contact .l-sub-img__inner {
  padding-bottom: 0;
}
/* .contact-form
================================================ */
.contact-form {
  background: url(../img/contact/bg_contact01_pc.png) no-repeat center top/cover;
}
.contact-form__inner {
  padding-top: 150px;
  padding-bottom: 150px;
  font-weight: 400;
}
.contact-form__table {
  position: relative;
}
.contact-form__table::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 207px;
  height: 205px;
  background: url(../img/contact/img_form01.png) no-repeat center/contain;
}
/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
/* .home-about
================================================== */
.home-about__inner {
  padding-top: 170px;
  padding-bottom: 210px;
}
.home-about__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.home-about__image {
  width: 50%;
}
.home-about__text {
  width: 50%;
  max-width: 470px;
}
.home-about__title {
  text-align: left;
  margin-bottom: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
.home-about__btn {
  margin: 40px 0 0;
}
@media all and (max-width: 767px) {
  .home-about__inner {
    padding-top: 52px;
    padding-bottom: 238px;
  }
  .home-about__content {
    display: block;
  }
  .home-about__image {
    width: 100%;
    max-width: initial;
    margin-top: 45px;
  }
  .home-about__text {
    width: 100%;
    max-width: initial;
  }
  .home-about__title {
    font-size: 2rem;
    line-height: 1.8;
    margin-bottom: 35px;
  }
}
/* .home-service
================================================== */
.home-service {
  position: relative;
}
.home-service::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 0;
  width: 380px;
  height: 370px;
  background: url("../img/home/img_tree01.png") no-repeat center/contain;
  z-index: -1;
}
.home-service__inner {
  padding-top: 60px;
  padding-bottom: 112px;
  max-width: 1410px;
}
.home-service__title {
  text-align: left;
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-service__btn {
  margin: 40px 0 0;
}
@media all and (min-width: 768px) {
  .home-service__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
  }
  .home-service__item + .home-service__item {
    margin-top: 80px;
  }
  .home-service__item:nth-child(even) .home-service__image {
    order: 1;
  }
  .home-service__item:nth-child(even) .home-service__text {
    justify-content: flex-end;
    padding-left: 0;
    padding-right: 90px;
  }
  .home-service__text {
    display: flex;
    align-items: center;
    padding-left: 90px;
  }
  .home-service__text-inner {
    max-width: 450px;
  }
}
@media all and (max-width: 767px) {
  .home-service::before {
    top: -30px;
    width: 225px;
    height: 218px;
  }
  .home-service__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .home-service__content {
    margin-top: 50px;
  }
  .home-service__item {
    display: grid;
    gap: 45px;
  }
  .home-service__item:nth-child(even) .home-service__image {
    margin-right: -20px;
    margin-left: auto;
  }
  .home-service__item + .home-service__item {
    margin-top: 80px;
  }
  .home-service__image {
    width: calc(100% + 20px);
    margin-left: -20px;
  }
  .home-service__text {
    width: 100%;
  }
  .home-service__title {
    margin-bottom: 15px;
  }
}
/* .home-news
================================================== */
.home-news {
  background-color: #e2d8be;
}
.home-news__inner {
  padding-top: 110px;
  padding-bottom: 110px;
}
#news .l-sub-img {
  background: url(../img/news/bg_news_head01_pc.png) no-repeat center bottom/cover;
  position: relative;
}
#news .l-sub-img::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: -60px;
  width: 1353px;
  height: 318px;
  background: url(../img/news/img_news01.png) no-repeat center bottom/contain;
  z-index: 1;
}
/* .news-archive
================================================== */
.news-archive__inner {
  padding-top: 80px;
  padding-bottom: 150px;
  position: relative;
}
.news-archive__inner::before {
  content: "";
  position: absolute;
  right: -200px;
  bottom: 20px;
  width: 345px;
  height: 318px;
  background: url(../img/news/img_news02.png) no-repeat center bottom/contain;
  z-index: 1;
}
/* .news-single
================================================== */
.news-single__inner {
  padding-top: 80px;
  padding-bottom: 110px;
}
.news-single__article {
  width: 900px;
  margin: auto;
}
.news-single__category {
  color: #fff;
  background-color: #604b26;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 1.3rem;
  margin-left: 10px;
}
.news-single__title {
  font-size: 2rem;
  font-weight: 500;
  padding-bottom: 10px;
}
.news-single__content {
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid #e2d8be;
  border-bottom: 1px solid #e2d8be;
}
.news-single__content p {
  margin-bottom: 20px;
}
.news-single__content img {
  margin-top: 30px;
  margin-bottom: 30px;
}
.news-single__content h2, .news-single__content h3 {
  margin-bottom: 20px;
}
.news-single__content h2 {
  font-size: 1.8rem;
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 2px solid #e2d8be;
}
.news-single__content h3 {
  font-size: 1.6rem;
  padding-left: 12px;
  border-left: 5px solid #e2d8be;
  line-height: 1.7;
  margin-top: 30px;
  margin-bottom: 15px;
}
.news-single__content h4 {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #604b26;
}
.news-single__content ul, .news-single__content ol {
  margin-top: 25px;
  margin-bottom: 25px;
}
#privacy-policy .l-sub-img__inner {
  padding-bottom: 0;
  font-weight: 400;
}
/* .policy-content
================================================ */
.policy-content {
  background: url(../img/policy/bg_policy01_pc.png) no-repeat center top/cover;
}
.policy-content__inner {
  padding-top: 160px;
  padding-bottom: 145px;
  position: relative;
  max-width: 1000px;
}
.policy-content__inner::before {
  content: "";
  position: absolute;
  top: -185px;
  left: -264px;
  width: 416px;
  height: 340px;
  background: url(../img/policy/img_policy01.png) no-repeat center/contain;
}
.policy-content__inner::after {
  content: "";
  position: absolute;
  bottom: 410px;
  right: -100px;
  width: 237px;
  height: 234px;
  background: url(../img/policy/img_policy02.png) no-repeat center/contain;
}
.policy-content h3 {
  margin-top: 80px;
  font-weight: 300;
}
.policy-content__list {
  padding-left: 1em;
  text-indent: -1em;
}