@charset "UTF-8";
:root {
  --red01: 199,20,41;
  --brown01: 68,43,43;
  --brown02: 152,139,139;
  --gray01: 197,197,197;
  --border: 243,245,245;
  --border02: 219,219,219;
  --bg01: 243,245,245;
  --black: var(--brown01);
  --g01: radial-gradient(circle at 30%, rgba(199,20,41,1) 0%, rgba(204,113,110,1) 100%);
  --g02: linear-gradient(135deg, rgba(170,234,255,1) 0%, rgba(173,234,210,1) 35%, rgba(178,233,179,1) 60%, rgba(226,233,178,1) 100%);
  --g03: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.1) 100%);
  --contents_width: 1120px;
  --body_padding_side: 60px;
  --contents_width_with_padding: 1180px;
  --sidebar_width: 250px;
}

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;
}

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;
}

sup {
  vertical-align: text-top;
  font-size: 0.75em;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.75em;
}

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 {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input[type=radio], input[type=checkbox] {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}

select {
  color: inherit;
}

textarea {
  resize: vertical;
}

button {
  color: inherit;
  font-weight: normal;
  cursor: pointer;
}

/* 02_base
================================================ */
@media all and (max-width: 767px) {
  body#home {
    padding-top: 75px;
  }
}
@media all and (min-width: 768px) {
  body#home {
    padding-top: 106px;
  }
}

body {
  min-width: 320px;
  padding-top: 55px;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
  color: rgb(var(--black));
  font-size: 1.4rem;
  line-height: 1.9;
  letter-spacing: 0.06em;
}
@media all and (min-width: 768px) {
  body {
    min-width: var(--contents_width_with_padding);
    padding-top: 98px;
    font-size: 1.6rem;
  }
}

body.is-medical {
  position: relative;
}

body.is-over-hidden {
  overflow: hidden;
}

.l-wrapper {
  position: relative;
  padding-top: 27px;
}
@media all and (min-width: 768px) {
  .l-wrapper {
    padding-top: 38px;
  }
}

.l-container {
  position: relative;
}
.l-container::after {
  content: "";
  display: block;
  width: 130px;
  height: 71px;
  background: url(../img/common/obj_item02.png) no-repeat left/cover;
  position: absolute;
  top: -80px;
  right: 0;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-container {
    overflow: hidden;
  }
  .l-container::after {
    width: 580px;
    height: 179px;
    top: 0;
  }
  .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);
  }
}

#home .l-container::before, #home .l-container::after {
  content: none;
}

/* 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: 1180px) {
  .u-media-query {
    font-family: "pc";
  }
}

@media all and (max-width: 1179px) {
  .u-view-pc {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-tb {
    display: none !important;
  }
}
@media all and (min-width: 1180px) {
  .u-view-tb {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .u-view-sp {
    display: none !important;
  }
}

@media all and (min-width: 1180px) {
  .u-view-under-tb {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .u-view-upper-tb {
    display: none !important;
  }
}

/* overflow
-------------------------------------- */
.u-overflow-wrap {
  overflow: auto;
}
.u-overflow-wrap .u-overflow-sec {
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .u-overflow-wrap .u-overflow-sec {
    min-width: var(--contents_width_with_padding);
  }
}

/* text
-------------------------------------- */
.u-uppercase {
  text-transform: uppercase;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.u-en {
  font-family: "Poppins", sans-serif;
}

.u-mincho {
  font-family: "Shippori Mincho", serif;
}

/* 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: 30px;
  padding-right: 30px;
}
@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;
  }
}
@media all and (min-width: 1380px ) {
  .u-inner.is-large {
    max-width: 1400px;
  }
}

/* u-hover
-------------------------------------- */
@media all and (min-width: 768px) {
  .u-hover {
    position: relative;
    z-index: -1;
    overflow: hidden;
  }
  .u-hover::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 1px;
    border-radius: 50%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: rgba(204, 113, 110, 0.5);
    transform: scale(0);
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease;
    transition-duration: 0.5s;
  }
  .u-hover:hover::before {
    transform: scale(1570);
    opacity: 1;
    transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }
  .u-hover.is-small:hover::before {
    transform: scale(785);
  }
}

/*  .c-archive01
================================================== */
.c-archive01__item {
  border-bottom: 1px solid rgb(var(--border02));
}
.c-archive01__item-in {
  display: block;
  padding: 22px 0;
}
.c-archive01__item-meta {
  display: flex;
  align-items: center;
}
.c-archive01__item-date {
  margin: 0 10px 0 0;
  font-size: 1.1rem;
  color: rgb(var(--brown02));
}
.c-archive01__item-cat {
  display: flex;
  align-items: center;
  margin-left: -5px;
}
.c-archive01__item-cat-item {
  color: rgb(var(--brown02));
  background: rgb(var(--border));
  font-size: 1.2rem;
  padding: 2px 15px;
  margin-left: 5px;
}
.c-archive01__item-head {
  font-size: 1.3rem;
  margin-top: 13px;
  overflow: hidden;
  display: -webkit-box;
  max-height: 2.92em;
  line-height: 1.46;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.c-archive01__item-between {
  display: flex;
  align-items: center;
}
.c-archive01__item-between .c-archive01__item-date {
  margin: 0;
}
.c-archive01__item-between .c-archive01__item-date:last-of-type::before {
  content: "~";
  display: inline-block;
  margin-right: 0.5em;
}
.c-archive01__item-between.is-active .c-archive01__item-date {
  color: rgb(var(--brown01));
}
.c-archive01__item-label {
  margin-left: auto;
  margin-right: auto;
  color: rgb(var(--brown02));
  font-size: 1.3rem;
  display: inline-block;
  border: 1px solid rgb(var(--brown02));
  padding: 4px 25px;
}
.c-archive01__item-label.is-active {
  color: rgb(var(--red01));
  border-color: rgb(var(--red01));
}
.c-archive01__note {
  text-align: center;
  margin: 30px 0;
}
@media all and (min-width: 768px) {
  .c-archive01__item {
    display: block;
  }
  .c-archive01__item-in {
    padding: 28px 0;
    display: flex;
    align-items: center;
    position: relative;
  }
  .c-archive01__item-in:hover .c-archive01__item-date,
.c-archive01__item-in:hover .c-archive01__item-cat-item,
.c-archive01__item-in:hover .c-archive01__item-head {
    color: rgb(var(--red01)) !important;
  }
  .c-archive01__item-meta {
    flex-shrink: 0;
    min-width: 360px;
  }
  .c-archive01__item-head {
    max-height: 1.46em;
    -webkit-line-clamp: 1;
    font-size: 1.6rem;
    margin-top: 0;
    margin-left: 20px;
  }
  .c-archive01__item-date {
    font-size: 1.4rem;
  }
  .c-archive01__item-cat-item {
    font-size: 1.3rem;
    padding: 5px 31px;
  }
  .c-archive01__item-label {
    margin-left: auto;
    margin-right: auto;
  }
  .c-archive01__note {
    margin: 60px 0;
  }
}

/*  .c-archive02
================================================== */
.c-archive02 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.c-archive02__item-in {
  position: relative;
}
.c-archive02__item-cats {
  margin-top: 10px !important;
}
.c-archive02__item-img {
  position: relative;
  width: 100%;
}
.c-archive02__item-img::before {
  content: "";
  display: block;
  padding-top: 66.755%;
}
.c-archive02__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.c-archive02__item-meta {
  margin-top: 10px;
}
.c-archive02__item-head {
  font-size: 1.6rem;
  margin-top: 10px;
  overflow: hidden;
  display: -webkit-box;
  max-height: 2.92em;
  line-height: 1.46;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
@media all and (min-width: 768px) {
  .c-archive02 {
    grid-template-columns: repeat(3, 1fr);
    gap: 81px 40px;
  }
  .c-archive02__makers {
    margin-top: 0;
  }
  .c-archive02__item-head {
    font-size: 1.8rem;
  }
}

/* .c-btn01
===================================*/
.c-btn01__link {
  text-align: center;
  display: block;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown01));
  border-radius: 61px;
  padding: 20px 1em;
  line-height: 1.1;
  position: relative;
}
.c-btn01__link-txt {
  font-weight: 500;
}
.c-btn01__link-ico {
  width: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media all and (min-width: 768px) {
  .c-btn01 {
    text-align: center;
  }
  .c-btn01__link {
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: inline-block;
    padding: 28px 74px;
  }
  .c-btn01__link:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
  .c-btn01__link-txt {
    white-space: nowrap;
  }
  .c-btn01__link-ico {
    width: 14px;
    right: 30px;
  }
}

/* .c-btn02
===================================*/
.c-btn02__link {
  display: block;
  box-sizing: border-box;
  min-height: 60px;
  border-radius: 61px;
  border: 1px solid rgb(var(--brown01));
  text-align: center;
  padding: 20px;
}
.c-btn02__link-txt {
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-btn02__link-ico {
  width: 12px;
  float: right;
}
@media all and (min-width: 768px) {
  .c-btn02__link {
    min-height: 80px;
    transition: all 0.3s ease;
  }
  .c-btn02__link:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
}

/* .c-btn03
===================================*/
.c-btn03 {
  text-align: center;
}
.c-btn03__link-ico {
  width: 35px;
  margin-right: 14px;
}
@media all and (min-width: 768px) {
  .c-btn03__link-ico {
    width: 45px;
    margin-right: 17px;
  }
}

/* .c-cat01
===================================*/
.c-cat01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -6px;
  margin-top: -11px;
}
.c-cat01__item {
  margin-left: 6px;
  margin-top: 6px;
}
.c-cat01__item-in {
  border-radius: 28px;
  border: 1px solid rgb(var(--red01));
  display: block;
  font-size: 1.1rem;
  color: rgb(var(--red01));
  padding: 4px 12px;
}
.c-cat01__item-in::after {
  display: inline-block;
  width: 12px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-left: 10px;
  transform: translateY(-2px);
}
@media all and (min-width: 768px) {
  .c-cat01 {
    margin-left: -8px;
    margin-top: -16px;
  }
  .c-cat01__item {
    margin-left: 8px;
    margin-top: 8px;
  }
  .c-cat01__item-in {
    transition: all 0.3s ease;
    font-size: 1.6rem;
    padding: 6px 26px;
  }
  .c-cat01__item-in:hover {
    background: rgb(var(--red01));
    color: #fff;
  }
}

/* .c-cat02
===================================*/
.c-cat02 {
  display: flex;
  align-items: center;
}
.c-cat02__item {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  padding: 4px 15px;
  border-radius: 13px;
  background: rgb(var(--gray01));
}
@media all and (min-width: 768px) {
  .c-cat02__item {
    font-size: 1.2rem;
    padding: 6px 15px;
  }
}

/* .c-cat03
===================================*/
.c-cat03 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -10px;
  margin-left: -10px;
}
.c-cat03__item {
  margin-top: 10px;
  margin-left: 10px;
  line-height: 1;
  font-size: 1.2rem;
  color: rgb(var(--brown02));
}
.c-cat03__item::before {
  content: "#";
  display: inline-block;
}
.c-cat03__item + .c-cat03__item {
  margin-left: 0.5em;
}
.c-cat03__item-in {
  display: inline-block !important;
}
/* .c-cat04
===================================*/
.c-cat04 {
  margin-top: -10px;
  margin-left: -10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-cat04__item {
  color: rgb(var(--brown02));
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-left: 10px;
  margin-top: 10px;
  font-size: 1.4rem;
}

/* .c-color-black
================================================== */
.c-color-black {
  color: rgb(var(--black));
}

/* .c-color-blue
================================================== */
.c-color-blue {
  color: blue;
}

/* .c-color-red
================================================== */
.c-color-red {
  color: rgb(var(--red01));
}

/* .c-contact01
===================================*/
.c-contact01 {
  background: url(../img/home/bg_contact01_sp.png) no-repeat top center/cover;
  -webkit-backdrop-filter: opacity(75%);
  backdrop-filter: opacity(75%);
  position: relative;
  border-radius: 4px;
  z-index: 0;
}
.c-contact01::before {
  border-radius: 4px;
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g02);
  z-index: -1;
  mix-blend-mode: lighten;
  background-size: 400% 400%;
  -webkit-animation: bggradient2 10s ease infinite;
  animation: bggradient2 10s ease infinite;
}
.c-contact01__inner {
  padding-top: 69px;
  padding-bottom: 120px;
  position: relative;
}
.c-contact01__inner::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: rgb(var(--brown02));
  position: relative;
  left: 50%;
  transform: translate(-50%, -14px);
}
.c-contact01__inner::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--brown02));
  position: absolute;
  left: 50%;
  top: 55px;
  transform: translateX(-50%);
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.c-contact01__head {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.c-contact01__lead {
  margin-top: 34px;
}
.c-contact01__btn {
  margin-top: 46px;
}
.c-contact01__btn-link {
  text-align: center;
  display: block;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown01));
  border-radius: 61px;
  padding: 29px 1em;
  line-height: 1.1;
  position: relative;
}
.c-contact01__btn-txt {
  font-weight: 500;
  color: rgb(var(--brown01));
}
@media all and (min-width: 768px) {
  .c-contact01 {
    background: url(../img/home/bg_contact01_pc.png) no-repeat top center/cover;
    width: 94.8%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1820px;
    border-radius: 8px;
  }
  .c-contact01::before {
    border-radius: 8px;
    background-size: 400% 400%;
  }
  .c-contact01__inner {
    padding-top: 25px;
    padding-bottom: 180px;
  }
  .c-contact01__inner::before {
    height: 100px;
  }
  .c-contact01__inner::after {
    top: 0;
    width: 13px;
    height: 13px;
    -webkit-animation-name: scrollPC;
    animation-name: scrollPC;
  }
  .c-contact01__head {
    max-width: 490px;
  }
  .c-contact01__lead {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 46px;
  }
  .c-contact01__btn {
    margin-top: 66px;
  }
  .c-contact01__btn-link {
    transition: all 0.3s ease;
    box-sizing: border-box;
    display: inline-block;
    padding: 47px 116px;
  }
  .c-contact01__btn-link:hover {
    background: rgba(255, 255, 255, 0.7);
  }
  .c-contact01__btn-txt {
    font-size: 2rem;
  }
}

@-webkit-keyframes bggradient2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes bggradient2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 55px);
  }
}
@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 55px);
  }
}
@-webkit-keyframes scrollPC {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 100px);
  }
}
@keyframes scrollPC {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 100px);
  }
}
/* .c-custom01
===================================*/
.c-single-content .c-custom01 p:not([class]) {
  margin: 0;
}
.c-single-content .c-custom01 .c-custom01__repeat > * + * {
  margin-top: 1em;
}
.c-single-content .c-custom01 .c-custom01__repeat + .c-custom01__repeat {
  margin-top: 30px;
}
.c-single-content .c-custom01 .c-custom01__head::before {
  background: rgb(var(--red01));
}
.c-single-content .c-custom01 .c-custom01__list {
  background: rgb(var(--bg01));
  padding: 25px 20px;
}
.c-single-content .c-custom01 .c-custom01__item {
  letter-spacing: 0.08em;
  line-height: 2;
  color: #000;
}
.c-single-content .c-custom01 .c-custom01__item::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgb(var(--red01));
  border-radius: 50%;
  margin-right: 5px;
  transform: translateY(-3px);
}
.c-single-content .c-custom01 .c-custom01__item + li {
  margin-top: 1em;
}
.c-single-content .c-custom01 .c-custom01__set {
  margin-top: 30px;
}
.c-single-content .c-custom01 .c-custom01__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 25px;
}
.c-single-content .c-custom01 .c-custom01__card-img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: contain;
  object-fit: contain;
}
.c-single-content .c-custom01 .c-custom01__card-head {
  margin: 20px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-single-content .c-custom01 .c-custom01__card-txt {
  margin-top: 15px;
}
.c-single-content .c-custom01 .c-custom01__youtube {
  position: relative;
  width: 100%;
}
.c-single-content .c-custom01 .c-custom01__youtube::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.c-single-content .c-custom01 .c-custom01__youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.c-single-content .c-custom01 .c-custom01__table-wrap {
  overflow-x: auto;
  width: 100%;
}
.c-single-content .c-custom01 .c-custom01__table {
  white-space: nowrap;
  width: auto;
}
.c-single-content .c-custom01 .c-custom01__table.is-first-col-head tbody td:first-of-type {
  background: rgb(var(--bg01));
  text-align: center;
}
.c-single-content .c-custom01 .c-custom01__table.is-center td {
  text-align: center;
}
.c-single-content .c-custom01 .c-custom01__table.is-right td {
  text-align: right;
}
.c-single-content .c-custom01 .c-custom01__table tr + tr {
  margin-top: 10px;
}
.c-single-content .c-custom01 .c-custom01__table th, .c-single-content .c-custom01 .c-custom01__table td {
  vertical-align: middle;
  border: 1px solid rgb(var(--border02));
  padding: 13px 1em;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.c-single-content .c-custom01 .c-custom01__table th {
  background: rgb(var(--bg01));
  text-align: center;
}
.c-single-content .c-custom01 .c-custom01__table td {
  background: #fff;
  text-align: left;
}
.c-single-content .c-custom01__pdf {
  display: block;
}
.c-single-content .c-custom01__pdf + .c-custom01__pdf {
  margin-top: 6px;
}
.c-single-content .c-custom01__pdf-in {
  text-decoration: none;
  display: inline-block;
  font-size: 1.1rem;
  border: 1px solid rgb(var(--brown01));
  border-radius: 28px;
  padding: 5px 16px;
}
.c-single-content .c-custom01__pdf-in::after {
  display: inline-block;
  width: 11.5px;
  height: 13.776px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.5 13.776"><path d="M.774,11.115V.774H6.11V4.1H9.726V12H.774ZM0,0V12.776H10.5V3.238L7.262,0Z" transform="translate(0.5 0.5)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-width="1"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.5 13.776"><path d="M.774,11.115V.774H6.11V4.1H9.726V12H.774ZM0,0V12.776H10.5V3.238L7.262,0Z" transform="translate(0.5 0.5)" fill="currentColor" stroke="rgba(0,0,0,0)" stroke-width="1"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-left: 10px;
}
.c-single-content .c-custom01 .c-custom01__imgtext-text {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .c-single-content .c-custom01 .c-custom01__table.is-column {
    width: 100%;
  }
  .c-single-content .c-custom01 .c-custom01__table.is-column tr, .c-single-content .c-custom01 .c-custom01__table.is-column th, .c-single-content .c-custom01 .c-custom01__table.is-column td {
    display: block;
  }
}
@media all and (min-width: 768px) {
  .c-single-content .c-custom01 .c-custom01__repeat + .c-custom01__repeat {
    margin-top: 65px;
  }
  .c-single-content .c-custom01 .c-custom01__list {
    padding: 30px;
  }
  .c-single-content .c-custom01 .c-custom01__item::before {
    margin-right: 8px;
  }
  .c-single-content .c-custom01 .c-custom01__set-head {
    margin-bottom: 25px;
  }
  .c-single-content .c-custom01 .c-custom01__cards {
    grid-template-columns: 1fr 1fr;
    gap: 39px;
  }
  .c-single-content .c-custom01 .c-custom01__card-head {
    font-size: 2rem;
    margin-top: 25px;
  }
  .c-single-content .c-custom01 .c-custom01__youtube {
    width: 88.888%;
    margin-left: auto;
    margin-right: auto;
  }
  .c-single-content .c-custom01 .c-custom01__table {
    width: 100%;
    white-space: initial;
  }
  .c-single-content .c-custom01 .c-custom01__table td {
    padding-top: 17px;
    padding-bottom: 17px;
  }
  .c-single-content .c-custom01 .c-custom01__pdfs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -15px;
    padding-left: -10px;
  }
  .c-single-content .c-custom01 .c-custom01__pdf {
    margin-top: 15px;
    margin-left: 10px;
  }
  .c-single-content .c-custom01 .c-custom01__pdf-in {
    font-size: 1.5rem;
    padding-left: 33px;
    padding-right: 33px;
    transition: all 0.3s ease;
  }
  .c-single-content .c-custom01 .c-custom01__pdf-in:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
  .c-single-content .c-custom01 .c-custom01__img {
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext-text {
    margin-top: 0;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext.is-sm {
    grid-template-columns: 1fr 2.333fr;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext.is-md {
    grid-template-columns: 1fr 1.5fr;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext.is-ct {
    grid-template-columns: 1fr 1fr;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext.is-smr {
    grid-template-columns: 2.333fr 1fr;
  }
  .c-single-content .c-custom01 .c-custom01__imgtext.is-mdr {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* .c-faq01
===================================*/
.c-faq01 {
  box-sizing: border-box;
  padding: 25px 20px 10px;
  border: 1px solid rgb(var(--border02));
}
.c-faq01 + .c-faq01 {
  margin-top: 15px;
}
.c-faq01__ico {
  position: absolute;
  top: 5px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 35px;
  height: 35px;
  text-align: center;
  background: rgb(var(--brown01));
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 500;
}
.c-faq01__head {
  position: relative;
  padding-left: 50px;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-bottom: 16px;
}
.c-faq01__head[class*=toggle] {
  padding-right: 50px;
  cursor: pointer;
}
.c-faq01__head[class*=toggle]::before {
  transition: all 0.3s ease;
  display: inline-block;
  width: 12px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 40%;
  right: 15px;
  transform: rotate(90deg);
}
.c-faq01__head[class*=toggle].is-active::before {
  transform: rotate(-90deg);
}
.c-faq01__txt {
  position: relative;
  padding: 16px 0 27px 50px;
  border-top: 1px solid rgb(var(--border02));
}
.c-faq01__txt .c-faq01__ico {
  top: 13px;
  background: rgb(var(--red01));
  color: #ffffff;
}
@media all and (min-width: 768px) {
  .c-faq01 {
    padding-top: 38px;
  }
  .c-faq01 + .c-faq01 {
    margin-top: 20px;
  }
  .c-faq01__head {
    font-size: 2rem;
    padding-bottom: 28px;
    padding-left: 61px;
  }
  .c-faq01__head[class*=toggle]::before {
    top: 15%;
  }
  .c-faq01__ico {
    width: 45px;
    height: 45px;
    top: -8px;
  }
  .c-faq01__txt {
    padding-left: 61px;
    padding-top: 23px;
  }
}

/* .c-form
================================================== */
.c-form {
  background: #fff;
  padding: 50px 15px;
  box-sizing: border-box;
}
@media all and (min-width: 768px) {
  .c-form {
    padding: 82px 95px 100px;
  }
}

input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
  border: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 60px;
  padding: 5px 10px;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background: rgb(var(--bg01));
}
@media all and (min-width: 768px) {
  input.c-form-parts, select.c-form-parts, textarea.c-form-parts, button.c-form-parts {
    height: 66px;
    padding: 20px;
  }
}

textarea.c-form-parts {
  height: 200px;
  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.is-default
================================================== */
.c-form.is-default tr + tr {
  margin-top: 35px;
}
.c-form.is-default th {
  font-weight: 500;
  text-align: left;
  font-size: 1.6rem;
}
.c-form.is-default td {
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  .c-form.is-default table, .c-form.is-default thead, .c-form.is-default tbody, .c-form.is-default tr, .c-form.is-default th, .c-form.is-default td {
    display: block;
  }
  .c-form.is-default th {
    border-bottom: 0;
  }
  .c-form.is-default tr + tr th {
    border-top: 0;
  }
}
@media all and (min-width: 768px) {
  .c-form.is-default tr:first-of-type th, .c-form.is-default tr:first-of-type td {
    padding-top: 0;
  }
  .c-form.is-default tr:last-of-type th, .c-form.is-default tr:last-of-type td {
    padding-bottom: 0;
  }
  .c-form.is-default th, .c-form.is-default td {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .c-form.is-default th {
    width: 240px;
    padding-right: 38px;
    vertical-align: middle;
  }
}

/* .c-form-label
================================================== */
.c-form-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 25px;
  margin-left: 15px;
  background: rgb(var(--bg01));
  color: #988b8b;
  font-size: 1.3rem;
}
.c-form-label.is-required {
  background: #fae9e9;
  color: rgb(var(--red01));
}
@media all and (min-width: 768px) {
  .c-form-label {
    float: right;
  }
}

/* .c-form-note
================================================== */
.c-form-note {
  display: block;
  font-weight: 400;
  color: white;
  font-size: 1.3rem;
}

td .c-form-note {
  margin-top: 10px;
}

.mw_wp_form_confirm .c-form-note {
  display: none;
}

/* .c-form-postcode
================================================== */
.c-form-postcode {
  display: flex;
  align-items: center;
}
.c-form-postcode__prefix {
  max-width: 26px;
  flex-basis: 26px;
  padding-top: 5px;
}
.c-form-postcode__input {
  width: 100%;
  flex: 1;
}

/* 確認画面
================================================ */
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__prefix,
.is-confirm .c-form-postcode .c-form-postcode__prefix {
  max-width: none;
  flex-basis: 0;
  padding-top: 0;
}
.mw_wp_form_confirm .c-form-postcode .c-form-postcode__input,
.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: 1180px) {
  .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: 30px;
  text-align: center;
}
.c-form-agreement__link {
  color: rgb(var(--red01));
  text-decoration: underline !important;
}
@media all and (min-width: 768px) {
  .c-form-agreement {
    margin-top: 50px;
  }
}

.mw_wp_form_confirm .c-form-agreement {
  display: none;
}

/* .c-form-btn
================================================== */
.c-form-area-btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-area-btn {
    margin-top: 80px;
    display: flex;
    justify-content: center;
  }
}

.c-form-btn {
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown01));
  border-radius: 61px;
  padding: 20px 1em;
  line-height: 1.1;
  position: relative;
  letter-spacing: 0.1em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  cursor: pointer;
}
.c-form-btn + .c-form-btn {
  margin-top: 10px;
}
.c-form-btn.is-back {
  background: rgb(var(--brown01));
  color: #fff;
}
@media all and (min-width: 768px) {
  .c-form-btn {
    transition: all 0.3s ease;
    max-width: 250px;
    padding: 28px 74px;
    font-size: 2rem;
  }
  .c-form-btn + .c-form-btn {
    margin-top: 0;
    margin-left: 20px;
  }
  .c-form-btn:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
  .c-form-btn:hover.is-back {
    background: #fff;
    color: rgb(var(--brown01));
  }
}

/* .c-form .mwform-radio-field
================================================ */
.c-form .mwform-radio-field,
.c-form .c-radio {
  display: block;
}
.c-form .mwform-radio-field + .mwform-radio-field,
.c-form .mwform-radio-field + .c-radio,
.c-form .c-radio + .mwform-radio-field,
.c-form .c-radio + .c-radio {
  margin-top: 10px;
}
.c-form .mwform-radio-field label,
.c-form .c-radio label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-radio-field label.is-inert,
.c-form .c-radio label.is-inert {
  pointer-events: none !important;
}
.c-form .mwform-radio-field label.is-inert .mwform-radio-field-text,
.c-form .c-radio label.is-inert .mwform-radio-field-text {
  color: rgb(var(--border02)) !important;
}
.c-form .mwform-radio-field input,
.c-form .c-radio input {
  display: none;
}
.c-form .mwform-radio-field .mwform-radio-field-text,
.c-form .mwform-radio-field .c-radio__text,
.c-form .c-radio .mwform-radio-field-text,
.c-form .c-radio .c-radio__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-radio-field .mwform-radio-field-text::before,
.c-form .mwform-radio-field .c-radio__text::before,
.c-form .c-radio .mwform-radio-field-text::before,
.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: 2px solid #dbdbdb;
  border-radius: 50%;
  background: rgb(var(--bg01));
}
.c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after,
.c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
  box-sizing: border-box;
  position: absolute;
  top: 8px;
  left: 5px;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgb(var(--red01));
}
@media all and (min-width: 768px) {
  .c-form .mwform-radio-field + .mwform-radio-field, .c-form .mwform-radio-field .c-radio, .c-form .c-radio + .mwform-radio-field, .c-form .c-radio .c-radio {
    margin: 0 0 0 30px;
  }
  .c-form .mwform-radio-field .mwform-radio-field-text::before, .c-form .mwform-radio-field .c-radio__text::before, .c-form .c-radio .mwform-radio-field-text::before, .c-form .c-radio .c-radio__text::before {
    top: 5px;
  }
  .c-form .mwform-radio-field input:checked + .mwform-radio-field-text::after,
.c-form .mwform-radio-field input:checked + .c-radio__text::after, .c-form .c-radio input:checked + .mwform-radio-field-text::after,
.c-form .c-radio input:checked + .c-radio__text::after {
    top: 10px;
  }
}

.c-radio-list {
  display: flex;
  flex-direction: column;
}
@media all and (min-width: 768px) {
  .c-radio-list {
    flex-direction: row;
  }
}

/* .c-form .mwform-checkbox-field
================================================ */
.c-form .mwform-checkbox-field,
.c-form .c-checkbox {
  display: block;
}
.c-form .mwform-checkbox-field + .mwform-checkbox-field,
.c-form .mwform-checkbox-field + .c-checkbox,
.c-form .c-checkbox + .mwform-checkbox-field,
.c-form .c-checkbox + .c-checkbox {
  margin-top: 10px;
}
.c-form .mwform-checkbox-field label,
.c-form .c-checkbox label {
  display: block;
  cursor: pointer;
}
.c-form .mwform-checkbox-field input,
.c-form .c-checkbox input {
  display: none;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text,
.c-form .mwform-checkbox-field .c-checkbox__text,
.c-form .c-checkbox .mwform-checkbox-field-text,
.c-form .c-checkbox .c-checkbox__text {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  vertical-align: top;
}
.c-form .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.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 .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.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 .mwform-checkbox-field .mwform-checkbox-field-text::before,
.c-form .mwform-checkbox-field .c-checkbox__text::before,
.c-form .c-checkbox .mwform-checkbox-field-text::before,
.c-form .c-checkbox .c-checkbox__text::before {
    top: 5px;
  }
  .c-form .mwform-checkbox-field input:checked + .mwform-checkbox-field-text::after,
.c-form .mwform-checkbox-field input:checked + .c-checkbox__text::after,
.c-form .c-checkbox input:checked + .mwform-checkbox-field-text::after,
.c-form .c-checkbox input:checked + .c-checkbox__text::after {
    top: 9px;
  }
}

.c-checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
.c-checkbox-list .mwform-checkbox-field,
.c-checkbox-list .c-checkbox {
  display: inline-block;
  margin-right: 20px;
}
.c-checkbox-list .mwform-checkbox-field + .mwform-checkbox-field, .c-checkbox-list .mwform-checkbox-field + .c-checkbox,
.c-checkbox-list .c-checkbox + .mwform-checkbox-field,
.c-checkbox-list .c-checkbox + .c-checkbox {
  margin-top: 0;
}

/* .mw_wp_form リセット
================================================ */
.mw_wp_form .c-form .horizontal-item + .horizontal-item {
  margin-left: 0;
}

/* .c-form-thanks
================================================ */
.c-form-thanks__txt {
  margin-bottom: 10px;
}
.c-form-thanks__txt + .c-form-thanks__txt {
  margin-top: 2em;
}
.c-form-thanks__btn {
  margin-top: 30px;
}
@media all and (min-width: 768px) {
  .c-form-thanks__txt {
    text-align: center;
  }
  .c-form-thanks__btn {
    margin-top: 50px;
  }
}

/* .c-head01
===================================*/
.c-head01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-head01__ico {
  max-width: 60px;
}
.c-head01__head {
  margin-top: 12px;
}
.c-head01__head-txt {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.c-head01__head-ico {
  width: 12px;
}
@media all and (min-width: 768px) {
  .c-head01 {
    flex-direction: row;
    justify-content: flex-start;
  }
  .c-head01__ico {
    max-width: 88px;
  }
  .c-head01__head {
    margin-top: 0;
    transition: all 0.3s ease;
  }
  .c-head01__head-txt {
    font-size: 3rem;
    margin-left: 20px;
  }
  .c-head01__head-ico {
    width: 15px;
    margin-left: 25px;
    transform: translateY(-9px);
  }
}

/* .c-head02
===================================*/
.c-head02 {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.125;
}
@media all and (min-width: 768px) {
  .c-head02 {
    font-size: 4.2rem;
  }
}

/* .c-head03.is-white
===================================*/
.c-head03.is-white {
  color: #fff;
}
.c-head03.is-white::after {
  background: #fff;
}

/* .c-head03
===================================*/
.c-head03 {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 40px;
  text-align: center;
}
.c-head03::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: rgb(var(--red01));
  margin: 20px auto 0;
}
@media all and (min-width: 768px) {
  .c-head03 {
    font-size: 3.6rem;
    margin-bottom: 60px;
  }
}

/* .c-head04
===================================*/
.c-head04 {
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.95;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(var(--red01));
  margin-bottom: 20px;
}
@media all and (min-width: 768px) {
  .c-head04 {
    font-size: 3rem;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}

/* .c-head05
===================================*/
.c-head05 {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-left: 2px solid rgb(var(--red01));
  padding-left: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media all and (min-width: 768px) {
  .c-head05 {
    font-size: 2.6rem;
    margin-bottom: 44px;
  }
}

/* .c-head06
===================================*/
.c-head06 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.c-head06::before {
  content: "ー";
  display: inline-block;
  color: rgb(var(--red01));
  margin-right: 10px;
}
@media all and (min-width: 768px) {
  .c-head06 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

/* .c-ico
================================================== */
.c-ico {
  display: inline-block;
  vertical-align: middle;
}
.c-ico svg {
  transition: all 0.3s ease;
}

/* .c-link01
===================================*/
.c-link01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 5px;
}
.c-link01__item-in {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown01));
  height: 51px;
  position: relative;
  background: #fff;
  padding: 0 2em;
}
.c-link01__item-txt {
  font-size: 1.3rem;
  line-height: 1.38;
  text-align: center;
}
.c-link01__item-ico {
  width: 9px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%) rotate(90deg);
}
@media all and (min-width: 768px) {
  .c-link01 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 13px;
  }
  .c-link01__item-in {
    transition: all 0.3s ease;
    height: 80px;
  }
  .c-link01__item-in:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
  .c-link01__item-txt {
    font-size: 1.6rem;
  }
  .c-link01__item-ico {
    width: 12px;
    right: 21px;
  }
}

/* .c-medical-modal01
===================================*/
.c-medical-modal01-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #707070;
  opacity: 0.6;
  z-index: 1;
}

.c-medical-modal01-overlay.is-hide {
  display: none;
}

.c-medical-modal01 {
  box-sizing: border-box;
  position: absolute;
  top: 50svh;
  left: 50svw;
  translate: -50% -50%;
  z-index: 2;
  width: calc(100% - 60px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #f3f5f5;
  padding: 40px 20px;
}
.c-medical-modal01__close {
  display: block;
  width: 50px;
  height: 50px;
  background: url(../img/medical/ico_close01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  translate: 40% -50%;
  z-index: 3;
  cursor: pointer;
}
@media all and (min-width: 768px) {
  .c-medical-modal01 {
    padding: 40px 30px;
    max-width: 1120px;
    translate: -50% 0;
    top: 150px;
    left: 50%;
  }
  .c-medical-modal01__txt {
    text-align: center;
  }
}
@media all and (min-width: 1380px ) {
  .c-medical-modal01 {
    padding: 80px 60px;
  }
}

.c-medical-modal01.is-hide {
  display: none;
}

.c-medical-modal01-box {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 20px;
}
.c-medical-modal01-box__head {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 20px;
}
.c-medical-modal01-box__btns {
  display: grid;
  gap: 15px;
}
.c-medical-modal01-box__btn {
  display: block;
  padding: 19px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  width: 100%;
  border-radius: 60px;
  border: 1px solid #442b2b;
  position: relative;
}
.c-medical-modal01-box__btn-txt {
  font-size: 1.4rem;
}
.c-medical-modal01-box__btn-ico {
  width: 12px;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  display: grid;
}
.c-medical-modal01-box__btn:hover {
  background: #442b2b;
  color: #fff;
}
@media all and (min-width: 768px) {
  .c-medical-modal01-box {
    margin-top: 40px;
  }
  .c-medical-modal01-box__head {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .c-medical-modal01-box__btns {
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  .c-medical-modal01-box__btn {
    display: inline-block;
    width: 350px;
    height: 80px;
    padding: 30px;
  }
}
@media all and (min-width: 1380px ) {
  .c-medical-modal01-box {
    padding: 50px 50px 60px;
  }
}

/* .c-pager01
===================================*/
.c-pager01 {
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 30px -5px -10px;
}
.c-pager01 li {
  margin: 0 5px 10px;
}
.c-pager01 li a, .c-pager01 li span {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  line-height: 1;
  border: 1px solid rgb(var(--black));
  text-decoration: none;
  font-size: 1.2rem;
}
.c-pager01 li.pages, .c-pager01 li.first, .c-pager01 li.extend, .c-pager01 li.last {
  margin: 0;
  padding: 0;
  font-size: 0;
  width: 0;
  height: 0;
  border: none;
}
.c-pager01 li.pages span, .c-pager01 li.pages a, .c-pager01 li.first span, .c-pager01 li.first a, .c-pager01 li.extend span, .c-pager01 li.extend a, .c-pager01 li.last span, .c-pager01 li.last a {
  font-size: 0;
  width: 0;
  height: 0;
  border: none;
  margin: 0;
  padding: 0;
}
.c-pager01 li.current span {
  color: #fff;
  background: rgb(var(--red01));
  border-color: rgb(var(--red01));
}
.c-pager01 li.previous a, .c-pager01 li.next a {
  border: none;
  font-size: 0;
}
.c-pager01 li.previous a::before, .c-pager01 li.next a::before {
  display: inline-block;
  width: 12px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
}
.c-pager01 li.previous a {
  justify-content: flex-start;
}
.c-pager01 li.previous a::before {
  transform: rotate(180deg);
}
.c-pager01 li.next a {
  justify-content: flex-end;
}
@media all and (min-width: 768px) {
  .c-pager01 {
    margin-top: 80px;
  }
  .c-pager01 li a, .c-pager01 li span {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
  }
  .c-pager01 li a {
    transition: all 0.3s ease;
  }
  .c-pager01 li a:hover {
    text-decoration: none;
    border-color: rgb(var(--red01));
    background-color: rgb(var(--red01));
    color: #fff;
  }
  .c-pager01 li.previous a, .c-pager01 li.next a {
    justify-content: center;
  }
  .c-pager01 li.previous {
    margin-right: 25px;
  }
  .c-pager01 li.next {
    margin-left: 25px;
  }
}

/*  .c-pager02
================================================== */
.c-pager02 {
  box-sizing: content-box;
  position: relative;
  overflow: hidden;
  line-height: 1;
  margin: 0 30px;
  padding-top: 40px;
}
.c-pager02 a {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  font-weight: 500;
}
.c-pager02__prev, .c-pager02__next {
  width: calc(50% - 10px);
}
.c-pager02__prev {
  position: absolute;
  left: 0;
}
.c-pager02__prev a {
  justify-content: flex-start;
}
.c-pager02__prev a::before {
  display: inline-block;
  width: 12px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  transform: rotate(180deg);
  margin-right: 10px;
}
.c-pager02__next {
  position: absolute;
  right: 0;
}
.c-pager02__next a {
  justify-content: flex-end;
}
.c-pager02__next a::after {
  display: inline-block;
  width: 12px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-left: 10px;
}
.c-pager02__all {
  padding-top: 47px;
}
.c-pager02__all a {
  justify-content: center;
  position: relative;
}
.c-pager02__all a::before {
  display: inline-block;
  width: 45px;
  height: 45px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g id="グループ_86777" data-name="グループ 86777" transform="translate(-477)"><g id="楕円形_832" data-name="楕円形 832" transform="translate(477)" fill="none" stroke="currentColor" stroke-width="1"><circle cx="22.5" cy="22.5" r="22.5" stroke="none"/><circle cx="22.5" cy="22.5" r="22" fill="none"/></g><g id="グループ_86687" data-name="グループ 86687" transform="translate(-270 -3246)"><circle id="楕円形_576" data-name="楕円形 576" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3262)" fill="currentColor"/><circle id="楕円形_577" data-name="楕円形 577" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3262)" fill="currentColor"/><circle id="楕円形_578" data-name="楕円形 578" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3262)" fill="currentColor"/><circle id="楕円形_579" data-name="楕円形 579" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3267)" fill="currentColor"/><circle id="楕円形_580" data-name="楕円形 580" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3267)" fill="currentColor"/><circle id="楕円形_581" data-name="楕円形 581" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3267)" fill="currentColor"/><circle id="楕円形_582" data-name="楕円形 582" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3272)" fill="currentColor"/><circle id="楕円形_583" data-name="楕円形 583" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3272)" fill="currentColor"/><circle id="楕円形_584" data-name="楕円形 584" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3272)" fill="currentColor"/></g></g></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 45 45"><g id="グループ_86777" data-name="グループ 86777" transform="translate(-477)"><g id="楕円形_832" data-name="楕円形 832" transform="translate(477)" fill="none" stroke="currentColor" stroke-width="1"><circle cx="22.5" cy="22.5" r="22.5" stroke="none"/><circle cx="22.5" cy="22.5" r="22" fill="none"/></g><g id="グループ_86687" data-name="グループ 86687" transform="translate(-270 -3246)"><circle id="楕円形_576" data-name="楕円形 576" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3262)" fill="currentColor"/><circle id="楕円形_577" data-name="楕円形 577" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3262)" fill="currentColor"/><circle id="楕円形_578" data-name="楕円形 578" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3262)" fill="currentColor"/><circle id="楕円形_579" data-name="楕円形 579" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3267)" fill="currentColor"/><circle id="楕円形_580" data-name="楕円形 580" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3267)" fill="currentColor"/><circle id="楕円形_581" data-name="楕円形 581" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3267)" fill="currentColor"/><circle id="楕円形_582" data-name="楕円形 582" cx="1.5" cy="1.5" r="1.5" transform="translate(763 3272)" fill="currentColor"/><circle id="楕円形_583" data-name="楕円形 583" cx="1.5" cy="1.5" r="1.5" transform="translate(768 3272)" fill="currentColor"/><circle id="楕円形_584" data-name="楕円形 584" cx="1.5" cy="1.5" r="1.5" transform="translate(773 3272)" fill="currentColor"/></g></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-right: 26px;
}
@media all and (max-width: 767px) {
  .c-pager02__prev, .c-pager02__next {
    top: 30px;
  }
}
@media all and (min-width: 768px) {
  .c-pager02 {
    margin: 0;
    height: 45px;
  }
  .c-pager02 a {
    transition: all 0.3s ease;
  }
  .c-pager02 a:hover {
    opacity: 0.7;
  }
  .c-pager02__all {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -15%);
    padding-top: 0;
  }
  .c-pager02__all a {
    display: inline-block;
  }
}

/* .c-relation01
===================================*/
.c-relation01__inner {
  padding-top: 30px;
  padding-bottom: 80px;
}
.c-relation01__btn {
  margin-top: 30px;
}
.c-relation01__btn.is-back .c-btn01__link-ico {
  right: unset;
  left: 30px;
  top: 40%;
  transform: rotate(180deg);
}
@media all and (min-width: 768px) {
  .c-relation01__inner {
    padding-top: 60px;
    padding-bottom: 130px;
  }
  .c-relation01__btn {
    margin: 65px 0 0;
  }
  .c-relation01__btn .c-btn01__link {
    width: 350px;
  }
}

/* .c-search01
===================================*/
.c-search01 {
  background: rgb(var(--bg01));
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.c-search01__select {
  padding: 15px 24px 15px 20px;
  padding-right: 24px;
  background: no-repeat right 15px top 50%/8px;
  background-color: #fff;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAOCAYAAAAmL5yKAAAAzUlEQVQokZ2RsQ3CMBBFfxxaS9RXMQIlJSV0pKTMCIyQDWACYAM2wBvACFRXW3IDHTrJRlZiRyZXnHLWfz+n+xURnQEsMK26GYArgPsE3DCzUdJkmGDQSVN+aP+EL/7HqKU556zWeg5gVQBbAHth4g3CSrbA4MTMrzDU4cM599ZafwBsRmABW9GGh6qvIKIHgGXGoGHmW/ygEqJDBjZ9OGngrzsQ5oxTG6TEEtszJfwdMS4fq9xn7ZPZxocr2UDq6GGJrSTeYRHRblQA4Av4tkvSJ5wq3wAAAABJRU5ErkJggg==");
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 1.6rem;
  border: none;
  overflow: hidden;
}
@media all and (min-width: 768px) {
  .c-search01 {
    padding: 60px;
    grid-template-columns: 1fr 1fr;
    gap: 101px;
  }
  .c-search01__select {
    height: 55px;
  }
}

/* .c-single01.is-medical
================================================ */
.c-single01.is-medical {
  border: none;
  padding-top: 0;
}
.c-single01.is-medical .c-single01__meta {
  flex-wrap: wrap;
}
.c-single01.is-medical .c-single01__date {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .c-single01.is-medical .c-single01__date {
    width: auto;
    margin-top: 0;
    margin-left: auto;
  }
}

/* .c-single01.is-products
================================================ */
.c-single01.is-products {
  border: none;
  padding-top: 0;
}
.c-single01.is-products .c-single01__meta {
  flex-wrap: wrap;
}
.c-single01.is-products .c-single01__date {
  display: block;
  width: 100%;
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .c-single01.is-products .c-single01__date {
    width: auto;
    margin-top: 0;
    margin-left: auto;
  }
}

/* .c-single01.is-products
================================================ */
.c-single01.is-topics {
  border: none;
  padding-top: 0;
}

/* .c-single01
================================================ */
.c-single01 {
  box-sizing: border-box;
  border-top: 1px solid rgb(var(--brown02));
  border-bottom: 1px solid rgb(var(--brown02));
  padding: 50px 30px;
}
.c-single01__date {
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 8px;
}
.c-single01__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-single01__makers {
  margin-left: -2px;
}
.c-single01__makers .c-cat04__item {
  font-size: 1.2rem;
}
.c-single01__between {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.c-single01__between-end {
  margin-left: 0.5em;
}
.c-single01__between-end::before {
  content: "~";
  display: inline-block;
  margin-right: 0.5em;
}
.c-single01__label {
  font-size: 1.2rem;
  color: rgb(var(--gray01));
  padding: 2px 15px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--gray01));
  margin-right: 20px;
}
.c-single01__label.is-active {
  color: rgb(var(--red01));
  border-color: rgb(var(--red01));
}
.c-single01__head {
  margin-top: 10px;
  font-size: 2.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .c-single01 {
    padding: 94px 100px;
    border: 1px solid rgb(var(--brown02));
  }
  .c-single01__label {
    font-size: 1.3rem;
    padding: 6px 25px;
  }
  .c-single01__head {
    margin-top: 25px;
    font-size: 3rem;
  }
}

/* .c-single-content
================================================== */
.c-single-content {
  margin-top: 30px;
  display: flow-root;
}
.c-single-content *:first-child {
  margin-top: 0;
}
.c-single-content *:last-child {
  margin-bottom: 0;
}
.c-single-content p {
  margin: 20px 0;
}
.c-single-content a {
  text-decoration: underline;
}
.c-single-content strong {
  font-weight: 700;
}
.c-single-content ul, .c-single-content ol {
  margin: 30px 0;
}
.c-single-content li::marker {
  color: rgb(var(--red01));
}
.c-single-content ol {
  padding-left: 2em;
}
.c-single-content ol li {
  list-style: decimal-leading-zero;
}
.c-single-content ol li::marker {
  font-weight: 700;
}
.c-single-content blockquote {
  margin: 40px 0;
  background: #f3f5f5;
  padding: 74px 15px 40px;
  position: relative;
}
.c-single-content blockquote::before {
  content: "";
  display: block;
  width: 41px;
  height: 34px;
  background: url(../img/common/ico_back01.png) no-repeat center/contain;
  position: absolute;
  top: 25px;
  left: 20px;
}
.c-single-content h2 {
  margin: 30px 0 20px 0;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.35;
  padding-left: 12px;
  position: relative;
}
.c-single-content h2::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 100%;
  background: rgb(var(--brown01));
  position: absolute;
  top: 0;
  left: 0;
}
.c-single-content h3 {
  margin: 30px 0 20px 0;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.333;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(var(--brown01));
}
.c-single-content img.alignleft, .c-single-content img.alignright, .c-single-content img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .c-single-content {
    margin-top: 40px;
  }
  .c-single-content a:hover {
    text-decoration: none;
  }
  .c-single-content img.alignleft {
    float: left;
    margin-right: 30px;
    margin-top: 0;
  }
  .c-single-content img.alignright {
    float: right;
    margin-left: 30px;
    margin-top: 0;
  }
  .c-single-content img.aligncenter {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .c-single-content h2 {
    font-size: 2.6rem;
    padding-left: 20px;
    margin: 50px 0 30px;
  }
  .c-single-content h3 {
    font-size: 2.2rem;
    margin: 45px 0 30px;
  }
  .c-single-content ul, .c-single-content ol {
    margin: 40px 0;
  }
  .c-single-content blockquote {
    margin: 50px 0 60px;
    padding: 30px 30px 26px 101px;
  }
  .c-single-content blockquote::before {
    width: 54px;
    height: 46px;
    top: 35px;
    left: 22px;
  }
}

/*  .c-table01
================================================== */
.c-table01 tr {
  border-top: 1px solid #dbdbdb;
}
.c-table01 tr:last-of-type {
  border-bottom: 1px solid #dbdbdb;
}
.c-table01 th {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: 16px;
}
.c-table01 td {
  padding-top: 8px;
  padding-bottom: 20px;
}
.c-table01__btn {
  display: block;
}
.c-table01__btn-in {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 31px;
  text-align: center;
  border: 1px solid rgb(var(--brown01));
  box-sizing: border-box;
  border-radius: 28px;
  font-size: 1.1rem;
}
.c-table01__btn-in::after {
  display: inline-block;
  width: 9px;
  height: 6px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 8"><path d="M0,0,3.74,4,0,8,12,4Z" transform="translate(0 0)" fill="currentColor"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-left: 8px;
}
.c-table01 ul {
  list-style: none;
  padding: 0;
}
.c-table01 li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-table01 li::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgb(var(--red01));
  margin-right: 10px;
  transform: translateY(-3px);
}
@media all and (max-width: 767px) {
  .c-table01 tr, .c-table01 th, .c-table01 td {
    display: block;
  }
}
@media all and (min-width: 768px) {
  .c-table01 li::before {
    width: 4px;
    height: 4px;
    margin-right: 1em;
  }
  .c-table01 th {
    font-size: 1.8rem;
    width: 230px;
    padding: 30px 0;
  }
  .c-table01 td {
    padding: 30px 0;
    position: relative;
  }
  .c-table01__btn {
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .c-table01__btn-in {
    transition: all 0.3s ease;
    width: 200px;
    height: 42px;
    font-size: 1.5rem;
  }
  .c-table01__btn-in:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
}

/*  .c-table02
================================================== */
.c-table02 tr {
  position: relative;
}
.c-table02 tr::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgb(var(--red01));
  border-radius: 50%;
  position: absolute;
  top: 29px;
  left: 0;
}
.c-table02 tr::after {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background: url(../img/english/ico_line01.png) no-repeat center/cover;
  position: absolute;
  top: 29px;
  left: 4px;
}
.c-table02 th {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px 0 0 25px;
  position: relative;
  letter-spacing: 0.1em;
  color: rgb(var(--brown02));
}
.c-table02 td {
  padding: 10px 0 15px 25px;
}
.c-table02 tr, .c-table02 th, .c-table02 td {
  display: block;
}
.c-table02__img {
  text-align: center;
  margin-top: 23px;
  display: block;
}
.c-table02__img-txt {
  display: block;
  color: rgb(var(--brown02));
  margin-top: 10px;
  text-align: right;
}
@media all and (min-width: 768px) {
  .c-table02 tr {
    display: grid;
    grid-template-columns: 130px 1fr;
    margin-bottom: 30px;
    gap: 40px;
  }
  .c-table02 tr::before {
    width: 14px;
    height: 14px;
    top: 10px;
    left: 130px;
  }
  .c-table02 tr::after {
    height: 140%;
    width: 3px;
    top: 29px;
    left: 135px;
  }
  .c-table02 tr:last-child::after {
    content: none;
  }
  .c-table02 th, .c-table02 td {
    padding: 0;
  }
  .c-table02 th {
    font-size: 1.6rem;
    color: rgb(var(--brown02));
  }
  .c-table02 td {
    margin-top: 0;
    padding-left: 0;
  }
}

/*  .c-table03
================================================== */
.c-table03 tr {
  position: relative;
}
.c-table03 tr::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgb(var(--red01));
  border-radius: 50%;
  position: absolute;
  top: 29px;
  left: 0;
}
.c-table03 tr::after {
  content: "";
  width: 2px;
  height: 100%;
  display: block;
  background: url(../img/english/ico_line01.png) no-repeat center/cover;
  position: absolute;
  top: 29px;
  left: 4px;
}
.c-table03 th {
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  padding: 15px 0 0 25px;
  position: relative;
  letter-spacing: 0.1em;
  color: rgb(var(--brown02));
}
.c-table03 td {
  padding: 10px 0 15px 25px;
}
.c-table03 tr, .c-table03 th, .c-table03 td {
  display: block;
}
.c-table03__img {
  text-align: center;
  margin-top: 23px;
  display: block;
}
.c-table03__img-txt {
  display: block;
  color: rgb(var(--brown02));
  margin-top: 10px;
  text-align: right;
}
@media all and (min-width: 768px) {
  .c-table03 {
    padding-left: 45px;
  }
  .c-table03 tr {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  .c-table03 tr::before {
    width: 14px;
    height: 14px;
    top: 20px;
    left: -35px;
  }
  .c-table03 tr::after {
    height: 140%;
    width: 3px;
    top: 29px;
    left: -29px;
  }
  .c-table03 tr:last-child::after {
    height: 80%;
  }
  .c-table03 th, .c-table03 td {
    padding: 0;
  }
  .c-table03 th {
    font-size: 2.5rem;
    color: rgb(var(--brown01));
  }
  .c-table03 td {
    margin-top: 0;
    padding-left: 74px;
  }
}

/* .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;
}
.l-breadcrumb-list__txt {
  font-size: 1.3rem;
}
@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;
  }
}
@media all and (min-width: 768px) {
  .l-breadcrumb-list {
    padding-top: 50px;
  }
}

/* .l-footer
================================================ */
.l-footer {
  position: relative;
  text-align: center;
}
.l-footer__logo {
  padding-top: 70px;
}
.l-footer__logo-link {
  width: 230px;
  margin: auto;
}
.l-footer__link {
  margin: 30px 0;
}
.l-footer__cr {
  font-size: 1rem;
  color: rgb(var(--gray01));
}
@media all and (min-width: 768px) {
  .l-footer {
    text-align: left;
  }
  .l-footer__inner {
    padding-top: 38px;
    padding: 38px 30px 0;
    max-width: 1460px;
  }
  .l-footer__logo {
    padding-top: 0;
    padding-bottom: 51px;
  }
  .l-footer__map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-right: 20px;
    border-right: 1px solid rgb(var(--border02));
  }
  .l-footer__map-item {
    position: relative;
  }
  .l-footer__map-item::before {
    display: inline-block;
    width: 16px;
    height: 21px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 21"><defs><clipPath id="clip-path"><rect width="16" height="21" fill="currentColor"/></clipPath></defs><g transform="translate(0 0.004)"><g transform="translate(0 -0.004)" clip-path="url(%23clip-path)"><path d="M7.939,0A7.964,7.964,0,0,0,0,7.984c0,5.481,5.505,11.573,7.512,13.29a.657.657,0,0,0,.855,0c2.007-1.717,7.512-7.809,7.512-13.29A7.964,7.964,0,0,0,7.939,0m0,13.036a4.8,4.8,0,1,1,4.772-4.8,4.787,4.787,0,0,1-4.772,4.8" transform="translate(0 0.004)" fill="currentColor"/></g></g></svg>');
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 21"><defs><clipPath id="clip-path"><rect width="16" height="21" fill="currentColor"/></clipPath></defs><g transform="translate(0 0.004)"><g transform="translate(0 -0.004)" clip-path="url(%23clip-path)"><path d="M7.939,0A7.964,7.964,0,0,0,0,7.984c0,5.481,5.505,11.573,7.512,13.29a.657.657,0,0,0,.855,0c2.007-1.717,7.512-7.809,7.512-13.29A7.964,7.964,0,0,0,7.939,0m0,13.036a4.8,4.8,0,1,1,4.772-4.8,4.787,4.787,0,0,1-4.772,4.8" transform="translate(0 0.004)" fill="currentColor"/></g></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    transition: all 0.3s ease;
    color: rgb(var(--brown02));
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(calc(-120% - 2px), 0);
  }
  .l-footer__map-txt {
    font-size: 1.5rem;
    line-height: 1.466;
  }
  .l-footer__map-txt strong {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .l-footer__navs {
    display: flex;
    align-items: flex-start;
    padding-left: 24px;
  }
  .l-footer__nav {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 20px;
  }
  .l-footer__nav > * + * {
    margin-left: 40px;
  }
  .l-footer__nav-item-link {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
  }
  .l-footer__nav-item-link:hover {
    color: rgb(var(--brown02));
  }
  .l-footer__child-item {
    margin-top: 4px;
    font-size: 1.5rem;
    color: rgb(var(--brown02));
    transition: all 0.3s ease;
  }
  .l-footer__child-item::before {
    display: inline-block;
    width: 8px;
    height: 4px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.828 6.414"><path d="M-13643-13739.6l4,4,4-4" transform="translate(13644.414 13741.015)" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>');
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.828 6.414"><path d="M-13643-13739.6l4,4,4-4" transform="translate(13644.414 13741.015)" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    transition: all 0.3s ease;
    transform: rotate(-90deg);
    margin-right: 6px;
  }
  .l-footer__child-item:hover {
    color: rgb(var(--brown01));
  }
  .l-footer__child-item-in[target=_blank]::after {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    transition: all 0.3s ease;
    margin-left: 9px;
    color: rgb(var(--brown02));
    transform: translateY(-3px);
  }
  .l-footer__cr {
    font-size: 1.3rem;
    margin-left: 50px;
  }
}
@media all and (min-width: 1380px ) {
  .l-footer__map {
    padding-right: 6.75%;
  }
  .l-footer__nav {
    padding-left: 5%;
  }
  .l-footer__nav > * + * {
    margin-left: 70px;
  }
}

@media all and (max-width: 767px) {
  .l-footer.is-no-contact .l-footer__inner {
    border-top: 1px solid rgb(var(--border));
  }
}

/* .l-footer-sub
================================================ */
.l-footer-sub {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media all and (max-width: 767px) {
  .l-footer-sub {
    border-top: 1px solid rgb(var(--border));
  }
}
@media all and (min-width: 768px) {
  .l-footer-sub {
    padding-top: 41px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .l-footer-sub__txt {
    color: rgb(var(--brown02));
  }
  .l-footer-sub__txt-in {
    transition: all 0.3s ease;
    font-size: 1.4rem;
  }
  .l-footer-sub__txt-in:hover {
    color: rgb(var(--brown01));
  }
}

/* .l-footer-page-top
================================================ */
.l-footer-page-top {
  position: absolute;
  bottom: 238px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.l-footer-page-top__link {
  box-sizing: border-box;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16);
  border-radius: 50%;
}
.l-footer-page-top__ico {
  width: 12px;
  color: rgb(var(--red01));
  transform: rotate(-90deg);
}
@media all and (min-width: 768px) {
  .l-footer-page-top {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    right: 0;
    bottom: 60px;
    z-index: 10;
    width: 80px;
    height: 80px;
    margin-left: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
    transform: translateX(-75px);
    margin-top: -40px;
    transition: opacity 0.3s ease;
  }
  .l-footer-page-top__link {
    width: 100%;
    height: 100%;
  }
  .l-footer-page-top__ico {
    width: 16px;
  }
  .l-footer-page-top__txt {
    white-space: nowrap;
    font-size: 1.2rem;
    color: rgb(var(--brown02));
    text-align: center;
    display: block;
    margin-top: 6px;
  }
  .l-footer-page-top.is-shown {
    opacity: 1;
    visibility: visible;
    overflow: visible;
  }
  .l-footer-page-top__link {
    width: 100%;
    height: 100%;
  }
}

/* .l-header
================================================ */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  z-index: 2000;
}
.l-header::before {
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.79);
  z-index: -1;
}
@media all and (min-width: 768px) {
  .l-header {
    min-width: var(--contents_width_with_padding);
    display: flex;
    align-items: center;
  }
}

/* .l-header-info
================================================== */
.l-header-info {
  position: relative;
  z-index: 3;
  height: 55px;
  display: flex;
  align-items: center;
}
.l-header-info__logo {
  box-sizing: border-box;
  width: 120px;
  padding-left: 15px;
}
.l-header-info__logo-link {
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.l-header-info__logo-svg {
  width: 120px;
}
@media all and (min-width: 768px) {
  .l-header-info {
    height: 98px;
  }
  .l-header-info__logo {
    box-sizing: content-box;
    width: 100%;
  }
  .l-header-info__logo-svg {
    width: 292px;
  }
  .l-header-info__btn-contact {
    margin: 0;
  }
}
@media all and (min-width: 1380px ) {
  .l-header-info__logo {
    padding: 11px 0 0 78px;
  }
}

/* .l-header-lang
================================================== */
.l-header-lang {
  display: flex;
  align-items: center;
  background: rgb(var(--bg01));
  border-radius: 22px;
  margin-left: auto;
  margin-right: 83px;
}
.l-header-lang__item.is-active .l-header-lang__item-in {
  background: rgb(var(--red01));
  color: #fff;
}
.l-header-lang__item-in {
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 4px 13px;
  border-radius: 22px;
  letter-spacing: 0.1em;
}
@media all and (min-width: 768px) {
  .l-header-lang {
    margin: 0 0 0 30px;
  }
  .l-header-lang__item-in {
    transition: all 0.3s ease;
    font-size: 1.6rem;
    padding: 5px 24px;
    white-space: nowrap;
  }
  .l-header-lang__item-in:hover {
    color: rgb(var(--red01));
  }
}
@media all and (min-width: 1380px ) {
  .l-header-lang {
    margin: 0 0 0 40px;
  }
}

/* .l-header-btn
================================================ */
.l-header-btn {
  margin-top: 44px;
}
.l-header-btn__link {
  width: 100%;
  height: 72px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: var(--g01);
  border-radius: 36px;
  color: #fff;
}
.l-header-btn__link-ico {
  width: 22px;
  margin-right: 20px;
  transform: translateY(4px);
}
.l-header-btn__link-txt {
  font-size: 1.6rem;
  font-weight: 500;
}
@media all and (min-width: 768px) {
  .l-header-btn {
    margin: 0 0 0 30px;
  }
  .l-header-btn__link {
    transition: all 0.3s ease;
    width: 224px;
    height: 98px;
    border-radius: 0;
    border-bottom-left-radius: 8px;
  }
  .l-header-btn__link-ico {
    width: 30px;
  }
}
@media all and (min-width: 1380px ) {
  .l-header-btn {
    margin: 0 0 0 40px;
  }
  .l-header-btn__link {
    width: 233px;
  }
}

/* .l-nav-btn
================================================== */
.l-nav-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 55px;
  background: var(--g01);
  cursor: pointer;
  border: none;
  box-sizing: border-box;
}
.l-nav-btn__line {
  position: absolute;
  left: 20px;
  width: 28px;
  height: 1px;
  content: "";
  background: #fff;
  transition: all 0.3s ease;
}
.l-nav-btn__line:nth-child(1) {
  top: 20px;
}
.l-nav-btn__line:nth-child(2) {
  top: 26px;
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(1) {
  top: 20px;
  transform: rotate(-45deg);
}
.l-nav-btn.is-open .l-nav-btn__line:nth-child(2) {
  top: 20px;
  transform: rotate(45deg);
}
.l-nav-btn__txt {
  position: absolute;
  left: 0;
  bottom: 9px;
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  color: #fff;
}

/* .l-nav
================================================ */
.l-nav {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 2;
  width: 100%;
  max-height: calc(100vh - 70px);
  min-width: 320px;
  padding: 136px 30px 50px;
  background: #fff;
  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;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav.is-open {
    transform: translateX(0);
  }
}
@media all and (min-width: 768px) {
  .l-nav {
    background: transparent;
    position: static;
    min-width: auto;
    padding: 0;
    width: auto;
    margin-left: auto;
  }
}

/* .l-nav-list
================================================== */
.l-nav-list__item-parent, .l-nav-list__item-link {
  display: block;
  padding: 16px 20px;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  border-bottom: 1px solid rgb(var(--border));
}
.l-nav-list__item-parent::after {
  display: inline-block;
  width: 16px;
  height: 8px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.828 6.414"><path d="M-13643-13739.6l4,4,4-4" transform="translate(13644.414 13741.015)" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10.828 6.414"><path d="M-13643-13739.6l4,4,4-4" transform="translate(13644.414 13741.015)" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  color: rgb(var(--red01));
  float: right;
}
.l-nav-list__child-item-link {
  display: block;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 5px 2em;
}
.l-nav-list__child-item-link[target=_blank]::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  margin-left: 9px;
  color: rgb(var(--brown02));
  transform: translateY(-3px);
}
@media all and (min-width: 768px) {
  .l-nav-list {
    display: flex;
    align-items: center;
    width: auto;
  }
  .l-nav-list__item + .l-nav-list__item {
    margin-left: 30px;
  }
  .l-nav-list__item + .l-nav-list__item .l-nav-list__item-parent {
    border-top: none;
  }
  .l-nav-list__item-link, .l-nav-list__item-parent {
    padding: 0;
    border-bottom: none;
    position: relative;
  }
  .l-nav-list__item-link::before, .l-nav-list__item-parent::before {
    content: "";
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    background: rgb(var(--red01));
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.3s ease;
  }
  .l-nav-list__item-link:hover, .l-nav-list__item-parent:hover {
    color: rgb(var(--red01));
  }
  .l-nav-list__item-link:hover::before, .l-nav-list__item-parent:hover::before {
    transform: scaleX(1);
  }
  .l-nav-list__item-link {
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
  .l-nav-list__item-link[target=_blank]::after {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    transition: all 0.3s ease;
    margin-left: 9px;
    color: rgb(var(--brown02));
    transform: translateY(-3px);
  }
  .l-nav-list__item-parent {
    padding: 0;
  }
  .l-nav-list__item-parent::after {
    float: none;
    margin-left: 10px;
  }
  .l-nav-list__child-wrap {
    position: absolute;
    width: 100%;
    top: 96px;
    left: 0;
  }
  .l-nav-list__child-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.79);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: -1;
  }
  .l-nav-list__child {
    padding-top: 100px;
    padding-bottom: 100px;
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
  .l-nav-list__child-item-img {
    border-radius: 8px;
  }
  .l-nav-list__child-item-img img {
    width: 100%;
    aspect-ratio: 340/153;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .l-nav-list__child-item-link {
    background: none;
    color: rgb(var(--black));
    padding: 0;
    border: none;
  }
  .l-nav-list__child-item-txt {
    display: block;
    text-align: center;
    letter-spacing: 0.1em;
    margin-top: 20px;
  }
}
@media all and (min-width: 1380px ) {
  .l-nav-list__item + .l-nav-list__item {
    margin-left: 46px;
  }
}

/* .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-ie-attention
================================================ */
.l-ie-attention {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  font-weight: 700;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}
.l-ie-attention__txt {
  font-size: 3rem;
  margin-bottom: 18px;
}
.l-ie-attention__note {
  color: #989898;
}
.l-ie-attention__note .l-ie-attention__note-link {
  display: inline-block;
}
.l-ie-attention__note-link {
  font-size: 1.8rem;
  border-bottom: 1px solid;
  position: relative;
  margin-right: 25px;
  display: inline-block;
}
.l-ie-attention__note-link::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 13px;
  width: 11px;
  height: 11px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Cg%20id%3D%22link%22%20transform%3D%22translate(0.5%200.5)%22%3E%20%3Crect%20id%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2_23829%22%20data-name%3D%22%E9%95%B7%E6%96%B9%E5%BD%A2%2023829%22%20width%3D%228%22%20height%3D%228%22%20transform%3D%22translate(3)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_4323%22%20data-name%3D%22%E3%83%91%E3%82%B9%204323%22%20d%3D%22M688%2C718.025h-6v-6%22%20transform%3D%22translate(-682%20-707.025)%22%20fill%3D%22none%22%20stroke%3D%22%23989898%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center/100%;
}

/* .l-main-img HOME
================================================ */
.l-main-img__inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}
@media all and (min-width: 768px) {
  .l-main-img__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 1920px;
    padding: 0 50px;
    margin: 0 auto;
    max-height: 600px;
  }
}
@media all and (min-width: 1180px) {
  .l-main-img__inner {
    max-height: 900px;
  }
}
@media screen and (min-width: 1700px) {
  .l-main-img__inner {
    width: 94.7916666667vw;
  }
}

/* .l-sub-img
================================================ */
.l-sub-img {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}
.l-sub-img__obj01 {
  position: absolute;
  z-index: -2;
  width: 138px;
  height: 289px;
  background: url(../img/common/obj_item01.png) no-repeat right/cover;
  left: -15px;
}
.l-sub-img__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 240px;
}
.l-sub-img__head {
  font-size: 2.2rem;
  font-weight: 500;
}
.l-sub-img__head.is-white {
  color: #fff;
}
.l-sub-img__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.l-sub-img__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 8px;
}
@media all and (max-width: 767px) {
  .l-sub-img__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media all and (min-width: 768px) {
  .l-sub-img {
    margin-left: auto;
    margin-right: auto;
    width: 94.8%;
    max-width: 1820px;
  }
  .l-sub-img__obj01 {
    width: 528px;
    height: 585px;
    top: 92px;
    left: 0;
    transform: translateX(-50%);
  }
  .l-sub-img__inner {
    height: 26.0416vw;
    max-height: 500px;
  }
  .l-sub-img__head {
    font-size: 4.2rem;
  }
}

.l-sub-img.is-services .l-sub-img__inner {
  height: 534px;
}
.l-sub-img.is-services .l-sub-img__head {
  font-size: 3rem;
  color: #fff;
  margin-top: auto;
  margin-bottom: 79px;
}
.l-sub-img.is-services .l-sub-img__obj01 {
  bottom: 0;
  transform: translateY(50%);
}
@media all and (min-width: 768px) {
  .l-sub-img.is-services .l-sub-img__inner {
    height: 44.375vw;
    max-height: 852px;
  }
  .l-sub-img.is-services .l-sub-img__head {
    margin-bottom: auto;
    font-size: 4.2rem;
  }
  .l-sub-img.is-services .l-sub-img__obj01 {
    transform: translate(-50%, 50%);
  }
}

/* .l-main-img-main HOME
================================================ */
.l-main-img-main {
  border-radius: 8px;
  max-height: 500px;
}
.l-main-img-main a {
  height: 100%;
}
.l-main-img-main img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 500px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media all and (max-width: 767px) {
  .l-main-img-main {
    padding-bottom: 50px !important;
  }
}
@media all and (min-width: 768px) {
  .l-main-img-main {
    max-height: unset;
    max-width: 1360px;
    width: 74.35%;
  }
  .l-main-img-main img {
    max-height: unset;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

/* .l-main-img-sub HOME
================================================ */
.l-main-img-sub {
  margin-top: 0;
  height: 125px;
}
.l-main-img-sub img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}
@media all and (min-width: 768px) {
  .l-main-img-sub {
    margin-top: 0;
    width: 23.076%;
    max-width: 420px;
    height: 500px;
  }
  .l-main-img-sub img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
@media all and (min-width: 1180px) {
  .l-main-img-sub img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

/* .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-exclusive-toggle {
  cursor: pointer;
}

.js-c-exclusive-content {
  display: none;
}

.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;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: flex;
  align-items: center;
  position: absolute;
  left: 15px;
  bottom: 43px;
}
.slick-dots li + li {
  margin-left: 6px;
}
.slick-dots li.slick-active button {
  background: #fff;
}
.slick-dots button {
  font-size: 0;
  border: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}
@media all and (min-width: 768px) {
  .slick-dots {
    left: 96px;
    bottom: 69px;
  }
  .slick-dots button {
    width: 11px;
    height: 11px;
  }
}

.l-main-img-sub .slick-slide {
  transform: scale(0.8) translateX(10%);
}
.l-main-img-sub .slick-slide + .slick-slide {
  margin-top: -8%;
}
.l-main-img-sub .slick-current {
  transform: scale(1);
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  width: var(--swiper-centered-offset-after);
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.l-main-img-sub .swiper-slide {
  opacity: 0.4;
}
.l-main-img-sub .swiper-slide.active {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .l-main-img-sub .swiper-slide {
    transform: scale(0.9) translateX(5%);
  }
  .l-main-img-sub .swiper-slide.active {
    transform: scale(1);
  }
}

.l-main-img-main .swiper-slide, .l-main-img-main .swiper-slide-duplicate {
  transition-property: all !important;
  visibility: hidden;
  opacity: 0;
}
.l-main-img-main .swiper-slide[class*=-active] {
  visibility: visible;
  opacity: 1;
}

.swiper-pagination {
  position: absolute;
  bottom: 15px !important;
  pointer-events: none;
}
.swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  background: #988b8b;
  opacity: 0.5;
}
.swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .swiper-pagination {
    left: unset !important;
    right: 3% !important;
    bottom: 2% !important;
    width: auto !important;
    display: flex;
    flex-direction: column-reverse;
  }
  .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 10px 0 !important;
  }
}
@media all and (min-width: 1380px ) {
  .swiper-pagination {
    bottom: 5% !important;
  }
}

.swiper-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.16);
}
@media all and (max-width: 767px) {
  .swiper-button.swiper-button-prev {
    transform: rotate(-90deg);
  }
  .swiper-button.swiper-button-next {
    transform: rotate(90deg);
  }
}
@media all and (min-width: 768px) {
  .swiper-button {
    width: 60px;
    height: 60px;
  }
  .swiper-button.swiper-button-prev {
    top: 0;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .swiper-button.swiper-button-next {
    top: unset;
    right: unset;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

.swiper-button-prev::after, .swiper-button-next::after {
  content: none;
}

/* .about-links
================================================ */
.about-links__inner {
  padding-top: 40px;
  padding-bottom: 30px;
}
.about-links__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 5px;
}
.about-links__item-in {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown01));
  height: 51px;
  position: relative;
}
.about-links__item-txt {
  font-size: 1.3rem;
}
.about-links__item-ico {
  width: 9px;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%) rotate(90deg);
}
@media all and (min-width: 768px) {
  .about-links__inner {
    padding-top: 26px;
    padding-bottom: 60px;
  }
  .about-links__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 11px;
  }
  .about-links__item-in {
    transition: all 0.3s ease;
    height: 80px;
  }
  .about-links__item-in:hover {
    background: rgb(var(--brown01));
    color: #fff;
  }
  .about-links__item-txt {
    font-size: 1.6rem;
  }
  .about-links__item-ico {
    width: 12px;
    right: 21px;
  }
}

/* .about-rinen
================================================ */
.about-rinen__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-rinen__lead {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.about-rinen__txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .about-rinen__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-rinen__lead {
    font-size: 2.6rem;
  }
  .about-rinen__txt {
    margin-top: 30px;
    text-align: center;
  }
}

/* .about-mission
================================================ */
.about-mission__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-mission__set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-mission__set-img img {
  border-radius: 8px;
}
.about-mission__set-head {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.about-mission__set-txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .about-mission__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-mission__set {
    grid-template-columns: 57.85% auto;
    gap: 101px;
    align-items: center;
  }
  .about-mission__set-head {
    font-size: 2.6rem;
  }
  .about-mission__set-txt {
    margin-top: 30px;
  }
}

/* .about-vison
================================================ */
.about-vison__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
.about-vison__set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.about-vison__set-img img {
  border-radius: 8px;
}
.about-vison__set-head {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
}
.about-vison__set-txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .about-vison__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about-vison__set {
    grid-template-columns: auto 57.85%;
    gap: 101px;
    align-items: center;
  }
  .about-vison__set-head {
    font-size: 2.6rem;
  }
  .about-vison__set-txt {
    margin-top: 30px;
  }
}

/* .about-value
================================================ */
.about-value__inner {
  padding-top: 30px;
}
.about-value__set {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
}
.about-value__set-img img {
  width: 100%;
  border-radius: 10px;
}
.about-value__set-head {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  color: #C71429;
}
.about-value__set-txt {
  margin-top: 20px;
}
.about-value__copy {
  padding: 70px 0;
  background: url(../img/about/bg_value01_sp.jpg) no-repeat top center/cover;
}
.about-value__copy-txt {
  font-size: 1.6rem;
  text-align: center;
  font-weight: 500;
  line-height: 2;
}
@media all and (min-width: 768px) {
  .about-value__inner {
    padding-top: 120px;
    padding-bottom: 0;
  }
  .about-value__set {
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
    margin-top: 50px;
  }
  .about-value__set-head {
    font-size: 2.6rem;
  }
  .about-value__set-txt {
    margin-top: 30px;
  }
  .about-value__copy {
    padding: 140px 0;
    max-width: calc(100% - 100px);
    margin: 0 auto;
    background: url(../img/about/bg_value01_pc.jpg) no-repeat top center/cover;
  }
  .about-value__copy-txt {
    font-size: 2.6rem;
  }
}

/* .about-outline
================================================ */
.about-outline__inner {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media all and (min-width: 768px) {
  .about-outline__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* .about-access
================================================ */
.about-access__inner {
  padding: 30px 30px 60px;
}
.about-access__map iframe {
  width: 100%;
  aspect-ratio: 1;
}
.about-access__txt {
  font-size: 1.3rem;
  color: rgb(var(--brown02));
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .about-access__inner {
    padding: 60px 0 120px;
    max-width: 1820px;
    width: 94.8%;
    margin-left: auto;
    margin-right: auto;
  }
  .about-access__map iframe {
    aspect-ratio: 2.935;
  }
  .about-access__txt {
    font-size: 1.6rem;
    text-align: right;
    margin-top: 21px;
  }
}

/* .about-offices
================================================ */
.about-offices {
  background: rgb(var(--bg01));
}
.about-offices__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .about-offices__inner {
    padding-top: 120px;
  }
}

/* .about-relation
================================================ */
.about-relation {
  background: rgb(var(--bg01));
}
.about-relation__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .about-relation__inner {
    padding-bottom: 120px;
  }
}

/* .about-history
================================================ */
.about-history {
  position: relative;
}
.about-history::before {
  content: "";
  display: block;
  width: 257px;
  height: 286px;
  background: url(../img/common/obj_item01.png) no-repeat left/cover;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.about-history__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .about-history::before {
    width: 526px;
    height: 585px;
  }
  .about-history__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
  .about-history__set {
    display: flex;
    align-items: flex-start;
  }
  .about-history__table {
    box-sizing: border-box;
    border: 1px solid rgb(var(--border02));
    padding: 80px 110px;
    flex: 1;
  }
  .about-history__table tr {
    align-items: center;
  }
  .about-history__table td {
    margin-left: 0;
  }
  .about-history__list {
    width: 460px;
    flex-shrink: 0;
    margin-left: 100px;
  }
  .about-history__item + .about-history__item {
    margin-top: 80px;
  }
  .about-history__item-txt {
    display: block;
    text-align: right;
    color: rgb(var(--brown02));
    font-size: 1.3rem;
    margin-top: 10px;
  }
}

/* .about-msg
================================================ */
.about-msg {
  background: url(../img/about/bg_msg01_sp.png) no-repeat top center/cover;
  color: #fff;
  overflow: hidden;
}
.about-msg__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
.about-msg__set-lead {
  font-size: 1.8rem;
  font-weight: 500;
}
.about-msg__set-txt {
  margin-top: 25px;
}
.about-msg__set-txt + .about-msg__set-txt {
  margin-top: 1.5em;
}
.about-msg__set-president {
  border-top: 1px solid rgba(219, 219, 219, 0.3);
  margin-top: 38px;
  padding-top: 25px;
  font-size: 1.2rem;
  text-align: right;
  font-weight: 500;
}
.about-msg__set-name {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: right;
}
@media all and (min-width: 768px) {
  .about-msg {
    background: url(../img/about/bg_msg01_pc.png) no-repeat center/cover;
  }
  .about-msg__inner {
    padding-top: 120px;
    padding-bottom: 120px;
    margin-bottom: 100px;
  }
  .about-msg__set {
    display: flex;
    align-items: flex-start;
  }
  .about-msg__set-img {
    flex-shrink: 0;
    max-width: 510px;
    margin-right: 73px;
  }
  .about-msg__set-textarea {
    flex: 1;
  }
  .about-msg__set-lead {
    font-size: 2.6rem;
  }
  .about-msg__set-president {
    margin-top: 30px;
    padding-top: 31px;
    font-size: 1.3rem;
  }
  .about-msg__set-name {
    font-size: 2rem;
    margin-top: 10px;
  }
}

/* .about-msg-box
================================================ */
.about-msg-box {
  background: #bf4142;
  padding: 40px 20px;
  margin-top: 68px;
  position: relative;
}
.about-msg-box::before {
  content: "";
  display: block;
  width: 368px;
  height: 74px;
  background: url(../img/about/txt_msg01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -60%);
}
.about-msg-box__lead {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.about-msg-box__lead::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #fff;
  transform: translateY(-5px);
  margin-right: 13px;
}
.about-msg-box__head {
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  line-height: 1.5;
  margin-top: 19px;
}
.about-msg-box__txt {
  margin-top: 23px;
}
@media all and (min-width: 768px) {
  .about-msg-box {
    margin-top: 100px;
    padding: 80px 70px 110px;
    display: flex;
    align-items: flex-start;
  }
  .about-msg-box::before {
    width: 1024px;
    height: 208px;
    margin-left: 30px;
    transform: translate(-4%, -60%);
  }
  .about-msg-box__header {
    flex: 1;
  }
  .about-msg-box__lead {
    font-size: 1.5rem;
  }
  .about-msg-box__head {
    font-size: 4rem;
  }
  .about-msg-box__txt {
    width: 550px;
    flex-shrink: 0;
    margin-left: 71px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1700px) {
  .about-msg-box::before {
    transform: translate(-25%, -60%);
  }
}

/* .contact-intro
================================================ */
.contact-intro__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.contact-intro__head {
  font-size: 2rem;
  line-height: 1.5;
}
.contact-intro__txt {
  margin-top: 20px;
  color: rgb(var(--brown02));
  padding-left: 1em;
  text-indent: -1em;
}
.contact-intro__txt + .contact-intro__txt {
  margin-top: 0;
}
@media all and (min-width: 768px) {
  .contact-intro__inner {
    padding-top: 46px;
    padding-bottom: 130px;
  }
  .contact-intro__head {
    font-size: 2.4rem;
    text-align: center;
  }
  .contact-intro__txt {
    text-align: center;
    margin-top: 31px;
  }
}

/* .contact-form
================================================ */
.contact-form {
  background: rgb(var(--bg01));
}
.contact-form__inner {
  padding: 60px 15px 80px;
}
@media all and (min-width: 768px) {
  .contact-form__inner {
    padding-top: 120px;
    padding-bottom: 130px;
  }
}

@media all and (min-width: 1380px ) {
  #english {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

/* .en-intro
================================================ */
.en-intro__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.en-intro__txt + .en-intro__txt {
  margin-top: 2em;
}
.en-intro__note {
  text-align: right;
  font-size: 1.6rem;
  color: rgb(var(--gray01));
}
@media all and (min-width: 768px) {
  .en-intro__inner {
    padding-top: 100px;
    padding-bottom: 122px;
  }
  .en-intro__note {
    font-size: 1.8rem;
    margin-top: 50px;
  }
}

/* .en-info
================================================ */
.en-info {
  background: rgb(var(--bg01));
}
.en-info__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .en-info__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .en-location
================================================ */
.en-location__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .en-location__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .en-history
================================================ */
.en-history {
  background: rgb(var(--bg01));
}
.en-history__inner {
  padding: 60px 20px;
}
@media all and (min-width: 768px) {
  .en-history__inner {
    padding-top: 120px;
    padding-bottom: 157px;
  }
}

/* .en-aff
================================================ */
.en-aff__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .en-aff__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .error-page404
================================================ */
.error-page404__inner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.error-page404__txt {
  text-align: center;
  margin: 30px 0;
}
@media all and (min-width: 768px) {
  .error-page404__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .error-page404__txt {
    margin: 60px 0;
  }
}

@media all and (min-width: 768px) {
  #fifty .l-container {
    overflow: visible;
  }
  #fifty .l-container::after {
    content: none;
  }
}

.fifty-top-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: #fef4f4;
  z-index: -1;
}
@media all and (min-width: 768px) {
  .fifty-top-bg {
    height: 700px;
  }
}

.fifty-top-circle {
  width: 106px;
  height: 315px;
  background: url(../img/50thanniversary/bg_circle01.png) no-repeat left center/cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* fifty-intro
================================================ */
.fifty-intro {
  position: relative;
}
.fifty-intro__foot-bg {
  width: 100%;
  height: 80%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: url(../img/50thanniversary/bg_intro01_sp.png) no-repeat left 50% bottom 0%/cover;
}
.fifty-intro__items {
  width: 100%;
  height: 100%;
  max-height: 841px;
  background: url(../img/50thanniversary/bg_intro02_sp.png) no-repeat center/cover;
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.fifty-intro__inner {
  padding-bottom: 235px;
  padding-left: 20px;
  padding-right: 20px;
}
.fifty-intro__head {
  margin-top: -150px;
  text-align: center;
}
.fifty-intro__lead {
  text-align: center;
  margin-bottom: 40px;
}
.fifty-intro__txt {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 2.333;
  letter-spacing: 0.1em;
}
.fifty-intro__txt + .fifty-intro__txt {
  margin-top: 2em;
}
@media all and (min-width: 768px) {
  .fifty-intro__foot-bg {
    background: url(../img/50thanniversary/bg_intro01_pc.png) no-repeat left 50% bottom 0%/cover;
  }
  .fifty-intro__items {
    background: url(../img/50thanniversary/bg_intro02_pc.png) no-repeat center/contain;
    bottom: 361px;
    max-width: 1492px;
    max-height: 996px;
  }
  .fifty-intro__inner {
    padding-bottom: 250px;
  }
  .fifty-intro__head {
    margin-top: -250px;
  }
  .fifty-intro__lead {
    margin-top: 77px;
    margin-bottom: 52px;
  }
  .fifty-intro__txt {
    font-size: 2.2rem;
  }
}

/* .fifty-door
================================================ */
.fifty-door {
  background: url(../img/50thanniversary/bg_door01_sp.png) no-repeat center bottom/100%;
}
.fifty-door__inner {
  padding-top: 61.5px;
  padding-bottom: 120px;
}
.fifty-door__head {
  text-align: center;
  margin-bottom: 58px;
}
@media all and (min-width: 768px) {
  .fifty-door {
    background: url(../img/50thanniversary/bg_door01_pc.png) no-repeat center bottom/cover;
    overflow: hidden;
  }
  .fifty-door__inner {
    padding-top: 162px;
    padding-bottom: 270px;
  }
  .fifty-door__head {
    margin-bottom: 17px;
  }
  .fifty-door__lead {
    text-align: center;
    margin-bottom: 124px;
  }
}

.fifty-door-set {
  display: flex;
  flex-direction: column;
}
.fifty-door-set + .fifty-door-set {
  margin-top: 60px;
}
.fifty-door-set:not(:first-of-type) .fifty-door-set__header-img {
  max-width: 172px;
}
.fifty-door-set:last-of-type .fifty-door-set__img {
  margin-left: 0;
  margin-right: auto;
}
.fifty-door-set:last-of-type .fifty-door-set__img-obj {
  left: unset;
  right: 0;
  transform: translate(30%, 30%);
}
.fifty-door-set__img {
  order: -1;
  position: relative;
}
.fifty-door-set__img > img {
  border-radius: 8px;
}
.fifty-door-set__img.has-obj {
  max-width: 283px;
  margin-left: auto;
}
.fifty-door-set__img-obj {
  max-width: 108px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-20%, 30%);
  z-index: -1;
}
.fifty-door-set__textarea {
  margin-top: 60px;
}
.fifty-door-set__header {
  position: relative;
  z-index: 0;
}
.fifty-door-set__header-img {
  max-width: 246px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-1.2em, -40%);
  z-index: -1;
}
.fifty-door-set__head {
  color: rgb(var(--brown01));
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
}
.fifty-door-set__lead {
  font-weight: 500;
  line-height: 1.5;
  font-size: 1.8rem;
  color: rgb(var(--red01));
  margin-top: 15px;
}
.fifty-door-set__txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .fifty-door-set {
    flex-direction: row;
  }
  .fifty-door-set + .fifty-door-set {
    margin-top: 196px;
  }
  .fifty-door-set:not(:first-of-type) .fifty-door-set__header-img {
    max-width: 417px;
  }
  .fifty-door-set:last-of-type .fifty-door-set__img {
    margin-left: auto;
    margin-right: 0;
  }
  .fifty-door-set__header-img {
    max-width: 606px;
    transform: translate(-1.2em, -60%);
  }
  .fifty-door-set__img {
    flex: 1;
    order: unset;
  }
  .fifty-door-set__img.has-obj {
    max-width: 620px;
    margin-left: 30px;
    margin-left: auto;
    margin-right: 0;
  }
  .fifty-door-set__img-obj {
    max-width: 100%;
    width: 250px;
    height: 250px;
  }
  .fifty-door-set__textarea {
    max-width: 489px;
  }
  .fifty-door-set__head {
    font-size: 4.2rem;
  }
  .fifty-door-set__lead {
    font-size: 2.6rem;
    margin-top: 18px;
  }
  .fifty-door-set__txt {
    margin-top: 30px;
  }
}

@media all and (min-width: 768px) {
  .fifty-door-set.is-reverse .fifty-door-set__textarea {
    order: 1;
  }
  .fifty-door-set.is-reverse .fifty-door-set__img {
    margin-right: 104px;
  }
}

/* .fifty-bnr
================================================ */
.fifty-bnr {
  position: relative;
}
.fifty-bnr__bg {
  background: url(../img/50thanniversary/bg_bnr01_sp.png) no-repeat center/cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fifty-bnr__inner {
  padding-top: 81px;
  padding-bottom: 99px;
}
.fifty-bnr__txt {
  color: #fff;
  text-align: center;
  font-size: 2.3rem;
  letter-spacing: 0.12em;
  line-height: 2.043;
}
@media all and (min-width: 768px) {
  .fifty-bnr__inner {
    padding-top: 257px;
    padding-bottom: 252px;
  }
  .fifty-bnr__bg {
    background: url(../img/50thanniversary/bg_bnr01_pc.png) no-repeat center/cover;
    width: 94.791%;
    max-width: 1820px;
    left: 50%;
    transform: translateX(-50%);
  }
  .fifty-bnr__txt {
    font-size: 3.5rem;
    line-height: 2.0285;
  }
}

.vwvh {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  width: calc(var(--vw, 1vw) * 100);
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  pointer-events: none;
  font-weight: 700;
  background: rgba(var(--black), 0.4);
}
@media all and (min-width: 768px) {
  .vwvh {
    font-size: 3rem;
  }
}
@media all and (min-width: 1180px) {
  .vwvh {
    font-size: 4rem;
  }
}
@media all and (min-width: 1380px ) {
  .vwvh {
    font-size: 5rem;
  }
}

.home-about__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
.home-about h2 {
  font-size: 3rem;
  margin-bottom: 2em;
  border-bottom: 2px solid;
}
.home-about section {
  margin-top: 40px;
}
.home-about section h3 {
  margin-bottom: 1.5em;
  padding: 10px 15px;
  background: #ddd;
  font-size: 2.4rem;
}
.home-about section h4 {
  margin-bottom: 1em;
  padding-left: 0.5em;
  font-size: 2rem;
  border-left: 4px solid;
}
.home-about section section {
  margin-top: 30px;
}
.home-about section section section {
  margin-top: 20px;
}

/* .home-overflow
================================================ */
.home-overflow__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home-overflow__content::after {
  position: absolute;
  right: -240px;
  width: 200px;
  height: 200px;
  display: block;
  background: rgb(var(--red));
  content: "";
}
.home-overflow__content-img {
  width: 50%;
}
.home-overflow__content-img::after {
  display: block;
  clear: both;
  content: "";
}
.home-overflow__content-img img {
  float: right;
  max-width: none;
  width: 50vw;
  min-width: 100%;
}
.home-overflow__content-area-txt {
  box-sizing: border-box;
  width: 50%;
  padding-left: 30px;
}

/* .home-news
================================================ */
.home-news {
  position: relative;
}
.home-news__obj01 {
  width: 148px;
  height: 286px;
  background: url(../img/home/obj_mv01.png) no-repeat center right 0%/cover;
  position: absolute;
  transform: translateY(-30%);
}
.home-news__obj02 {
  width: 158px;
  height: 120px;
  background: url(../img/home/obj_news02.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
}
.home-news__obj03 {
  width: 55px;
  height: 66px;
  background: url(../img/home/obj_news03.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 30px;
}
.home-news__inner {
  padding-top: 69px;
  padding-bottom: 50px;
}
.home-news__head {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.home-news__header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(var(--border));
  border-radius: 26px;
  margin-top: 17px;
  position: relative;
  z-index: 0;
}
.home-news__header-list::before {
  transition: all 0.3s ease;
  content: "";
  display: block;
  width: 105px;
  height: 100%;
  border-radius: 26px;
  background: rgb(var(--red01));
  position: absolute;
  left: 0;
  z-index: -1;
}
.home-news__header-list.is-event::before {
  left: 0;
}
.home-news__header-list.is-products::before {
  left: 50%;
  transform: translateX(-50%);
}
.home-news__header-list.is-news::before {
  left: 100%;
  transform: translateX(-100%);
}
.home-news__header-item {
  padding: 8px 26px;
  font-size: 1.2rem;
  color: rgb(var(--brown02));
}
.home-news__header-item.is-active {
  color: #fff;
}
.home-news__link {
  margin-top: 18px;
  text-align: center;
  position: relative;
}
.home-news__link-txt {
  font-weight: 500;
}
.home-news__link-ico {
  width: 12px;
  margin-left: 10px;
  transform: translateY(-2px);
}
@media all and (min-width: 768px) {
  .home-news__obj01 {
    width: 352px;
    height: 585px;
    transform: translateY(-50%);
  }
  .home-news__obj04 {
    width: 352px;
    height: 392px;
    background: url(../img/home/obj_news01.png) no-repeat center/cover;
    position: absolute;
    top: 0;
    right: 0;
  }
  .home-news__inner {
    padding-top: 195px;
    padding-bottom: 62px;
  }
  .home-news__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .home-news__header-list {
    margin-top: 0;
  }
  .home-news__header-list::before {
    width: 182px;
  }
  .home-news__header-item {
    transition: all 0.3s ease;
    font-size: 1.6rem;
    padding: 9px 57px;
  }
  .home-news__header-item:hover {
    color: rgb(var(--red01));
  }
  .home-news__header-item.is-active:hover {
    color: #fff;
  }
  .home-news__head {
    font-size: 3rem;
  }
  .home-news__content {
    margin-top: 25px;
  }
  .home-news__link {
    text-align: right;
    margin-top: 37px;
  }
  .home-news__link-in {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .home-news__link-in:hover .home-news__link-txt,
.home-news__link-in:hover .home-news__link-ico {
    color: rgb(var(--red01)) !important;
  }
  .home-news__link-txt, .home-news__link-ico {
    transition: all 0.3s ease;
  }
}

/* .home-own
================================================ */
.home-own {
  position: relative;
}
.home-own__obj01 {
  width: 114px;
  height: 255px;
  background: url(../img/home/obj_own01.png) no-repeat top left/cover;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
}
.home-own__inner {
  padding-top: 46px;
  padding-bottom: 33px;
}
.home-own__txt {
  color: rgb(var(--brown02));
  margin-top: 15px;
}
.home-own__list {
  margin-top: 17px;
}
.home-own__list-head {
  font-weight: 500;
}
.home-own__item {
  margin-top: 10px;
}
@media all and (min-width: 768px) {
  .home-own__inner {
    padding: 55px 30px 70px;
    max-width: 1460px;
  }
  .home-own__txt {
    font-size: 1.8rem;
    margin-top: 22px;
  }
  .home-own__list {
    display: flex;
    align-items: flex-start;
    margin-top: 43px;
  }
  .home-own__list-head {
    font-weight: 500;
    margin-right: 40px;
    flex-shrink: 0;
  }
}
.home-own__obj01 {
  width: 350px;
  height: 516px;
  transform: translateY(20%);
}

/* .home-own-bnr
================================================ */
.home-own-bnr {
  position: relative;
}
.home-own-bnr::before {
  content: "";
  display: block;
  width: 218px;
  height: 74px;
  background: url(../img/home/hd_own01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -60%);
  z-index: 1;
}
.home-own-bnr__in {
  display: block;
  background: url(../img/home/bg_own01_sp.png) no-repeat center/cover;
  padding-top: 88px;
  padding-bottom: 87px;
  position: relative;
}
.home-own-bnr__in .c-head01__head-ico {
  position: absolute;
  bottom: 5px;
  right: 12px;
}
.home-own-bnr__header {
  z-index: 1;
}
.home-own-bnr__header .c-head01__head-txt {
  font-size: 2.4rem;
  line-height: 1.125;
}
@media all and (min-width: 768px) {
  .home-own-bnr::before {
    box-sizing: border-box;
    margin-left: 30px;
  }
  .home-own-bnr__in {
    background: url(../img/home/bg_own01_pc.png) no-repeat center/cover;
    padding: 190px 60px;
  }
  .home-own-bnr__in .c-head01__head-ico {
    position: static;
    transform: translateY(-14px);
  }
  .home-own-bnr__in:hover .c-head01__ico::before {
    transform: scale(94.2);
  }
  .home-own-bnr__in:hover .c-head01__head {
    color: #fff;
  }
  .home-own-bnr__header .c-head01__head-txt {
    font-size: 4.2rem;
  }
  .home-own-bnr__header .c-head01__head {
    transition: all 0.3s ease;
  }
}
@media all and (min-width: 1180px) {
  .home-own-bnr::before {
    width: 43.75vw;
    height: 10.833vw;
  }
}

/* .home-bnrs
================================================ */
.home-bnrs__inner {
  padding-bottom: 76px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 37px;
}
@media all and (min-width: 768px) {
  .home-bnrs__inner {
    padding-top: 67px;
    padding-bottom: 183px;
    border-top: 1px solid rgb(var(--border02));
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    min-width: var(--contents_width);
    max-width: 1460px;
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* .home-bnrs-item
================================================ */
.home-bnrs-item__box {
  display: block;
  background: url(../img/home/bg_pickup01_sp.png) no-repeat center/cover;
  padding-top: 51px;
  padding-bottom: 48px;
  border-radius: 4px;
  position: relative;
}
.home-bnrs-item__box .c-head01__head-ico {
  position: absolute;
  bottom: 5px;
  right: 12px;
}
.home-bnrs-item__txt {
  margin-top: 15px;
  color: rgb(var(--brown02));
}
@media all and (max-width: 767px) {
  .home-bnrs-item:first-of-type {
    padding-top: 32px;
    border-top: 1px solid rgb(var(--border));
  }
}
@media all and (min-width: 768px) {
  .home-bnrs-item__box {
    background: url(../img/home/bg_pickup01_pc.png) no-repeat center/cover;
    padding: 98px 0 98px 60px;
  }
  .home-bnrs-item__box .c-head01__head-ico {
    position: static;
  }
  .home-bnrs-item__box:hover .c-head01__head {
    color: #fff;
  }
  .home-bnrs-item__txt {
    margin-top: 27px;
  }
}

.home-bnrs-item.is-service .home-bnrs-item__box {
  background: url(../img/home/bg_service01_sp.png) no-repeat center/cover;
}
@media all and (min-width: 768px) {
  .home-bnrs-item.is-service .home-bnrs-item__box {
    background: url(../img/home/bg_service01_pc.png) no-repeat center/cover;
  }
}

/* .home-corp
================================================ */
.home-corp {
  position: relative;
  background: url(../img/home/bg_company01_sp.png) no-repeat center/cover;
  color: #fff;
  border-radius: 8px;
  position: relative;
  z-index: 1;
}
.home-corp::before {
  border-radius: 8px;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g01);
  background-size: 200% 100%;
  -webkit-animation: bggradient 5s ease infinite;
  animation: bggradient 5s ease infinite;
  z-index: -1;
  mix-blend-mode: soft-light;
}
.home-corp__obj01 {
  width: 273px;
  height: 90px;
  background: url(../img/home/obj_recruit04.png) no-repeat right/cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-90%);
}
.home-corp__inner {
  padding-top: 103px;
  padding-bottom: 77px;
}
.home-corp__head {
  position: relative;
}
.home-corp__head::before {
  content: "";
  display: inline-block;
  width: 315px;
  height: 74px;
  background: url(../img/home/hd_compnay01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-7%, -55%);
}
.home-corp__txt {
  margin-top: 31px;
}
.home-corp__ico-wrap {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-top: 80px;
  margin-left: auto;
}
.home-corp__ico {
  width: 12px;
}
@media all and (min-width: 768px) {
  .home-corp {
    background: url(../img/home/bg_company01_pc.png) no-repeat center/cover;
    max-width: 1820px;
    width: 94.8%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
  }
  .home-corp__obj02 {
    width: 320px;
    height: 392px;
    background: url(../img/home/obj_company01.png) no-repeat center/cover;
    position: absolute;
    top: 0;
    left: -50px;
    transform: translateY(-70%);
    z-index: -1;
  }
  .home-corp__inner {
    position: relative;
    padding: 220px 30px;
    max-width: 1460px;
  }
  .home-corp__link:hover .home-corp__ico-wrap {
    background: rgb(var(--red01));
  }
  .home-corp__head::before {
    width: 1024px;
    height: 208px;
    margin-left: 30px;
    transform: translate(-5%, -55%);
  }
  .home-corp__txt {
    font-size: 2rem;
    margin-top: 51px;
    line-height: 2.2;
  }
  .home-corp__ico-wrap {
    transition: all 0.3s ease;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 9%;
    width: 80px;
    height: 80px;
  }
}
@media all and (min-width: 1380px ) {
  .home-corp__inner {
    padding: 273px 30px 259px;
  }
  .home-corp__ico-wrap {
    right: 0;
  }
}
@media screen and (min-width: 1700px) {
  .home-corp__head::before {
    transform: translate(-15%, -55%);
  }
}

@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* .home-recruit
================================================ */
.home-recruit {
  position: relative;
}
.home-recruit__obj01 {
  width: 100px;
  height: 66px;
  background: url(../img/home/obj_recruit03.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(40%);
  z-index: 1;
}
.home-recruit__obj02 {
  width: 227px;
  height: 87px;
  background: url(../img/home/obj_recruit04.png) no-repeat right/cover;
  position: absolute;
  left: 0;
  top: 250px;
  z-index: 1;
}
.home-recruit__inner {
  padding-top: 80px;
  padding-bottom: 61px;
}
.home-recruit__box {
  background: url(../img/home/bg_recruit01_sp.png) no-repeat center/cover;
  position: relative;
}
.home-recruit__box::before {
  content: "";
  display: block;
  width: 160px;
  height: 74px;
  background: url(../img/home/hd_recruit01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-20%, -60%);
}
.home-recruit__box-in {
  box-sizing: border-box;
  display: block;
  padding: 91px 26px 87px;
  width: 100%;
  height: 280px;
}
.home-recruit__box-lead {
  display: block;
  margin-top: 31px;
  max-width: 124px;
  color: rgb(var(--brown02));
}
.home-recruit__txt {
  margin-top: 15px;
  color: rgb(var(--brown02));
}
@media all and (max-width: 767px) {
  .home-recruit__box::after {
    display: inline-block;
    width: 14px;
    height: 14px;
    vertical-align: middle;
    color: currentColor;
    background: currentColor;
    -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    content: "";
    transition: all 0.3s ease;
    color: #fff;
    position: absolute;
    bottom: 12px;
    right: 12px;
  }
}
@media all and (min-width: 768px) {
  .home-recruit {
    overflow: hidden;
  }
  .home-recruit__obj03 {
    width: 320px;
    height: 392px;
    background: url(../img/home/obj_recruit01.png) no-repeat center/cover;
    position: absolute;
    right: -50px;
    top: -20px;
  }
  .home-recruit__obj04 {
    width: 315px;
    height: 444px;
    background: url(../img/home/obj_recruit02.png) no-repeat center/cover;
    position: absolute;
    left: -50px;
    bottom: 0;
  }
  .home-recruit__inner {
    padding: 180px 30px 87px;
    max-width: 1460px;
  }
  .home-recruit__head {
    transition: all 0.3s ease;
  }
  .home-recruit__box {
    background: url(../img/home/bg_recruit01_pc.png) no-repeat center/cover;
  }
  .home-recruit__box::before {
    width: 448px;
    height: 208px;
    margin-left: 30px;
    transform: translate(-9%, -60%);
  }
  .home-recruit__box:hover .home-recruit__head, .home-recruit__box:hover .home-recruit__box-lead {
    color: #fff;
  }
  .home-recruit__box-in {
    position: relative;
    height: 463px;
    padding-top: 166px;
    padding-left: 50px;
  }
  .home-recruit__box-lead {
    transition: all 0.3s ease;
    max-width: 100%;
    margin-top: 50px;
  }
  .home-recruit__box-ico-wrap {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid rgb(var(--brown01));
    background: rgba(255, 255, 255, 0.15);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 168px;
  }
  .home-recruit__box-ico {
    width: 14px;
    transform: rotateY(180deg);
  }
  .home-recruit__txt {
    margin-top: 40px;
  }
}
@media all and (min-width: 1380px ) {
  .home-recruit__box-in {
    padding-left: 168px;
  }
}
@media screen and (min-width: 1700px) {
  .home-recruit__box::before {
    transform: translate(-28%, -60%);
  }
}

/* .home-contact
================================================ */
.home-contact {
  background: url(../img/home/bg_contact01_sp.png) no-repeat top center/cover;
  -webkit-backdrop-filter: opacity(75%);
  backdrop-filter: opacity(75%);
  position: relative;
  border-radius: 4px;
  z-index: 0;
}
.home-contact::before {
  border-radius: 4px;
  content: "";
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g02);
  z-index: -1;
  mix-blend-mode: lighten;
  background-size: 200% 200%;
  -webkit-animation: bggradient2 10s ease infinite;
  animation: bggradient2 10s ease infinite;
}
.home-contact__inner {
  padding-top: 69px;
  padding-bottom: 120px;
  position: relative;
}
.home-contact__inner::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: rgb(var(--brown02));
  position: relative;
  left: 50%;
  transform: translate(-50%, -14px);
}
.home-contact__inner::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(var(--brown02));
  position: absolute;
  left: 50%;
  top: 55px;
  transform: translateX(-50%);
  -webkit-animation-name: scroll;
  animation-name: scroll;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.home-contact__head {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.home-contact__lead {
  margin-top: 34px;
}
.home-contact__btn {
  margin-top: 46px;
}
@media all and (min-width: 768px) {
  .home-contact {
    background: url(../img/home/bg_contact01_pc.png) no-repeat top center/cover;
    width: 94.8%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1820px;
    border-radius: 8px;
  }
  .home-contact::before {
    border-radius: 8px;
    background-size: 400% 400%;
  }
  .home-contact__inner {
    padding-top: 25px;
    padding-bottom: 180px;
  }
  .home-contact__inner::before {
    height: 100px;
  }
  .home-contact__inner::after {
    top: 0;
    width: 13px;
    height: 13px;
    -webkit-animation-name: scrollPC;
    animation-name: scrollPC;
  }
  .home-contact__head {
    max-width: 490px;
  }
  .home-contact__lead {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 46px;
  }
  .home-contact__btn {
    margin-top: 66px;
  }
}

@keyframes bggradient2 {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 0%;
  }
}
@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 55px);
  }
}
@keyframes scrollPC {
  0% {
    transform: translate(-50%, 0);
  }
  100% {
    transform: translate(-50%, 100px);
  }
}
/* .medical-single
================================================ */
.medical-single__inner {
  padding: 0 0 30px;
}
.medical-single__btn {
  margin-top: 30px;
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .medical-single__inner {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .medical-single__btn {
    margin-top: 40px;
    max-width: 350px;
  }
  .medical-single__btn + .medical-single__btn {
    margin-top: 52px;
  }
}

/* .news-archive
================================================ */
.news-archive__inner {
  padding-top: 30px;
  padding-bottom: 40px;
}
.news-archive__head {
  font-weight: 500;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.news-archive__header-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgb(var(--border));
  border-radius: 26px;
  margin-top: 17px;
  position: relative;
  z-index: 0;
}
.news-archive__header-list::before {
  transition: all 0.3s ease;
  content: "";
  display: block;
  width: 105px;
  height: 100%;
  border-radius: 26px;
  background: rgb(var(--red01));
  position: absolute;
  left: 0;
  z-index: -1;
}
.news-archive__header-list.is-event::before {
  left: 0;
}
.news-archive__header-list.is-products::before {
  left: 50%;
  transform: translateX(-50%);
}
.news-archive__header-list.is-news::before {
  left: 100%;
  transform: translateX(-100%);
}
.news-archive__header-item {
  border-radius: 26px;
  padding: 8px 26px;
  font-size: 1.2rem;
  color: rgb(var(--brown02));
}
.news-archive__header-item.is-active .news-archive__header-item-in {
  color: #fff;
}
.news-archive__header-item-in {
  text-decoration: none !important;
}
@media all and (min-width: 768px) {
  .news-archive__inner {
    padding-top: 79px;
    padding-bottom: 95px;
  }
  .news-archive__content {
    margin-top: 32px;
  }
  .news-archive__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .news-archive__header-list {
    margin-top: 0;
  }
  .news-archive__header-list::before {
    width: 182px;
  }
  .news-archive__header-item {
    transition: all 0.3s ease;
    font-size: 1.6rem;
    padding: 9px 57px;
  }
  .news-archive__header-item:hover {
    color: rgb(var(--red01));
  }
  .news-archive__header-item.is-active:hover .news-archive__header-item-in {
    color: #fff;
  }
  .news-archive__head {
    font-size: 3rem;
  }
}

/* .news-single
================================================ */
.news-single__inner {
  padding: 40px 0 30px;
}
@media all and (min-width: 768px) {
  .news-single__inner {
    padding-top: 74px;
    padding-bottom: 100px;
  }
}

/* .privacy-chief
================================================ */
.privacy-chief__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .privacy-chief__inner {
    padding-top: 100px;
    padding-bottom: 102px;
  }
}

/* .privacy-chief-sec
================================================ */
.privacy-chief-sec {
  margin-top: 60px;
}
.privacy-chief-sec + .privacy-chief-sec {
  margin-top: 40px;
}
.privacy-chief-sec a {
  text-decoration: underline !important;
}
.privacy-chief-sec P + P {
  margin-top: 2em;
}
.privacy-chief-sec__list {
  margin-bottom: 20px;
}
.privacy-chief-sec__item {
  display: flex;
  align-items: flex-start;
}
.privacy-chief-sec__item span {
  display: block;
  margin-right: 10px;
  flex-shrink: 0;
}
@media all and (min-width: 768px) {
  .privacy-chief-sec {
    margin-top: 125px;
  }
  .privacy-chief-sec + .privacy-chief-sec {
    margin-top: 80px;
  }
  .privacy-chief-sec__list {
    margin-bottom: 30px;
  }
}

#products .l-container::after {
  content: none;
}
#products .l-container.is-single {
  border-bottom: 1px solid rgb(var(--border));
}
@media all and (min-width: 768px) {
  #products {
    padding-top: 116px;
  }
}

/* .products-search
================================================ */
.products-search__inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media all and (min-width: 768px) {
  .products-search__inner {
    padding-top: 76px;
    padding-bottom: 40px;
  }
}

/* .products-archive
================================================ */
.products-archive {
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.products-archive.is-show {
  opacity: 1;
  visibility: visible;
}
.products-archive__inner {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .products-archive__inner {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

.products-archive-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* .products-single
================================================ */
.products-single__inner {
  padding: 0 0 30px;
}
.products-single__btn {
  margin-top: 30px;
  max-width: 315px;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .products-single__inner {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .products-single__btn {
    margin-top: 40px;
    max-width: 350px;
  }
  .products-single__btn + .products-single__btn {
    margin-top: 52px;
  }
}

/* .loading-list
================================================ */
.loading-list {
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin: 10px auto;
}
.loading-list video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.1);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 0px #000);
  outline: none;
  border: none;
}
.loading-list.is-hide {
  display: none !important;
}
@media all and (min-width: 768px) {
  .loading-list {
    width: 60px;
    height: 60px;
  }
}

#service .l-breadcrumb {
  margin-top: -40px;
}
#service .l-container::after {
  content: none;
}
@media all and (min-width: 768px) {
  #service .l-breadcrumb {
    margin-top: -80px;
  }
}

/* service-intro
================================================ */
.service-intro__inner {
  padding-top: 40px;
  padding-bottom: 30px;
}
@media all and (min-width: 768px) {
  .service-intro__inner {
    padding-top: 120px;
    padding-bottom: 75px;
  }
  .service-intro__txt {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* service-promise
================================================ */
.service-promise {
  position: relative;
}
.service-promise::before {
  content: "";
  display: block;
  width: 100%;
  height: 796px;
  background: url(../img/services/bg_service01_sp.png) no-repeat center/cover;
  position: absolute;
  top: 200px;
  z-index: -1;
}
.service-promise__inner {
  padding-top: 30px;
  padding-bottom: 56px;
}
.service-promise__set + .service-promise__set {
  margin-top: 30px;
}
.service-promise__set-img {
  text-align: center;
}
.service-promise__set-textarea {
  margin-top: 20px;
}
.service-promise__set-head {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.service-promise__set-txt {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .service-promise::before {
    height: 1648px;
    background: url(../img/services/bg_service01_pc.png) no-repeat center/contain;
    top: 390px;
  }
  .service-promise__inner {
    padding-top: 75px;
    padding-bottom: 135px;
  }
  .service-promise__set {
    display: flex;
    align-items: center;
    margin-top: 80px;
  }
  .service-promise__set + .service-promise__set {
    margin-top: 120px;
  }
  .service-promise__set.is-r .service-promise__set-img {
    order: 1;
    margin-left: 8.92%;
    margin-right: 0;
  }
  .service-promise__set-img {
    width: 57.857%;
    max-width: 810px;
    flex-shrink: 0;
    margin-right: 8.92%;
  }
  .service-promise__set-textarea {
    margin-top: 0;
  }
  .service-promise__set-head {
    font-size: 2.6rem;
  }
  .service-promise__set-txt {
    margin-top: 30px;
  }
}

/* service-main
================================================ */
.service-main__inner {
  padding-top: 56px;
  padding-bottom: 60px;
  position: relative;
}
.service-main__inner::after {
  content: "";
  display: block;
  width: 238px;
  height: 86px;
  background: url(../img/services/obj_main02.png) no-repeat right/cover;
  position: absolute;
  left: 0;
  bottom: 60px;
}
.service-main__box {
  background: url(../img/services/img_main01_sp.png) no-repeat center/cover;
  border-radius: 8px;
  position: relative;
}
.service-main__box::before {
  content: "";
  display: block;
  width: 100px;
  height: 65px;
  background: url(../img/services/obj_main01.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-95%);
}
.service-main__box-in {
  box-sizing: border-box;
  display: block;
  padding: 65px 25px;
  position: relative;
}
.service-main__box-in::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><g transform="translate(17887 -1810) rotate(90)"><g transform="translate(1810 17847)" fill="rgba(255,255,255,0)" stroke="currentColor" stroke-width="1"><circle cx="20" cy="20" r="20" stroke="none"/><circle cx="20" cy="20" r="19.5" fill="none"/></g><path d="M0,0,1.87,2,0,4,6,2Z" transform="translate(1828 17870) rotate(-90)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><g transform="translate(17887 -1810) rotate(90)"><g transform="translate(1810 17847)" fill="rgba(255,255,255,0)" stroke="currentColor" stroke-width="1"><circle cx="20" cy="20" r="20" stroke="none"/><circle cx="20" cy="20" r="19.5" fill="none"/></g><path d="M0,0,1.87,2,0,4,6,2Z" transform="translate(1828 17870) rotate(-90)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  right: 19px;
  bottom: 20px;
}
.service-main__box-title {
  position: absolute;
  top: -45px;
  left: -30px;
  width: 284px;
}
.service-main__box-head {
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.125;
}
.service-main__box-txt {
  width: 141px;
  letter-spacing: 0.12em;
  margin-top: 31px;
  line-height: 1.5;
}
@media all and (min-width: 768px) {
  .service-main__inner {
    padding-top: 135px;
    padding-bottom: 188px;
  }
  .service-main__inner::after {
    bottom: 94px;
    width: 745px;
    height: 173px;
    right: 0;
    left: unset;
    transform: translateX(50%);
  }
  .service-main__box {
    background: url(../img/services/img_main01_pc.png) no-repeat center/cover;
  }
  .service-main__box::before {
    width: 200px;
    height: 131px;
    right: 60px;
  }
  .service-main__box-in {
    padding: 153px 168px 133px;
    z-index: 0;
  }
  .service-main__box-in::after {
    width: 80px;
    height: 80px;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
  }
  .service-main__box-title {
    width: clamp(284px, 42vw, 813px);
    top: -78px;
  }
  .service-main__box-head {
    font-size: 4.2rem;
  }
  .service-main__box-txt {
    font-size: 2.6rem;
    margin-top: 51px;
    width: auto;
  }
}
@media all and (min-width: 1380px ) {
  .service-main__box-title {
    top: -128px;
    left: -130px;
  }
}

/* service-content
================================================ */
.service-content {
  background: rgb(var(--bg01));
}
.service-content__inner {
  padding-top: 60px;
  padding-bottom: 58px;
}
@media all and (min-width: 768px) {
  .service-content__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* service-content-sec
================================================ */
.service-content-sec {
  margin-top: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(var(--border02));
}
.service-content-sec:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.service-content-sec + .service-content-sec {
  margin-top: 30px;
}
.service-content-sec__set {
  display: flex;
  flex-direction: column;
}
.service-content-sec__set-img {
  text-align: center;
}
.service-content-sec__set-head {
  order: -1;
}
.service-content-sec__set-txt {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .service-content-sec__set-textarea {
    display: contents;
  }
}
@media all and (min-width: 768px) {
  .service-content-sec {
    margin-top: 100px;
    padding-bottom: 60px;
  }
  .service-content-sec + .service-content-sec {
    margin-top: 60px;
  }
  .service-content-sec__set {
    flex-direction: row;
  }
  .service-content-sec__set-img {
    flex-shrink: 0;
    margin-right: 30px;
    max-width: 400px;
  }
  .service-content-sec__set-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .service-content-sec__set-head {
    margin-bottom: 0;
  }
  .service-content-sec__set-txt {
    margin-top: 30px;
  }
}

/* service-faq
================================================ */
.service-faq__inner {
  padding: 60px 15px;
}
@media all and (min-width: 768px) {
  .service-faq__inner {
    padding: 120px 0;
  }
}

/* .partners-intro
================================================ */
.partners-intro__inner {
  padding-top: 40px;
  padding-bottom: 60px;
}
.partners-intro__btns {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
@media all and (min-width: 768px) {
  .partners-intro__inner {
    padding-top: 100px;
    padding-bottom: 120px;
  }
  .partners-intro__txt {
    text-align: center;
  }
  .partners-intro__btns {
    display: grid;
    grid-template-columns: 350px 350px;
    gap: 30px;
    justify-content: center;
    margin-top: 60px;
  }
}

/* .partners-list
================================================ */
.partners-list {
  background: rgb(var(--bg01));
}
.partners-list__inner {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media all and (min-width: 768px) {
  .partners-list__inner {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

/* .partners-list-cond
================================================ */
.partners-list-cond {
  box-sizing: border-box;
  background: #fff;
  padding: 28px 19px;
  border-radius: 4px;
}
.partners-list-cond__list {
  margin-left: -7px;
  margin-top: -10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.partners-list-cond__item {
  display: inline-block;
  margin-left: 7px;
  margin-top: 10px;
}
.partners-list-cond__item.is-active .partners-list-cond__item-in {
  background: rgb(var(--red01));
  color: #fff;
  border-color: rgb(var(--red01));
}
.partners-list-cond__item-in {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--brown02));
  border-radius: 50%;
}
.partners-list-cond__item-in.is-large {
  width: 67px;
  border-radius: 28px;
}
@media all and (min-width: 768px) {
  .partners-list-cond {
    padding: 50px 94px;
  }
  .partners-list-cond__list {
    margin-top: 0;
    margin-left: -15px;
    justify-content: center;
  }
  .partners-list-cond__item {
    margin-top: 0;
    margin-left: 15px;
  }
  .partners-list-cond__item-in {
    transition: all 0.3s ease;
    width: 55px;
    height: 55px;
  }
  .partners-list-cond__item-in.is-large {
    width: 108px;
  }
  .partners-list-cond__item-in:hover {
    background: rgb(var(--red01));
    border-color: rgb(var(--red01));
    color: #fff;
  }
}

/* .partners-list-sec
================================================ */
.partners-list-sec {
  margin-top: 40px;
}
.partners-list-sec__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
}
.partners-list-sec__item-in {
  box-sizing: border-box;
  border: 1px solid #fff;
  background: #fff;
  display: block;
  padding: 15px 30px 15px 20px;
  position: relative;
}
.partners-list-sec__item-in[target=_blank]::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  color: currentColor;
  background: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
  mask-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><defs><clipPath id="clip-path"><rect width="14" height="14" transform="translate(-0.009 -0.008)" fill="currentColor"/></clipPath></defs><g transform="translate(0.009 0.008)" clip-path="url(%23clip-path)"><path d="M17.277,0H12.239a.56.56,0,0,0,0,1.119h3.687L10.164,6.881a.56.56,0,1,0,.791.791l5.761-5.761V5.6a.56.56,0,0,0,1.119,0V.56a.56.56,0,0,0-.56-.56" transform="translate(-4.402 0.549)" fill="currentColor"/><path d="M10.635,9.6a.56.56,0,0,0-.56.56v3.918H1.119V5.119H5.038A.56.56,0,1,0,5.038,4H.56A.56.56,0,0,0,0,4.56V14.635a.56.56,0,0,0,.56.56H10.635a.56.56,0,0,0,.56-.56V10.157a.56.56,0,0,0-.56-.56" transform="translate(0 -1.212)" fill="currentColor"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  content: "";
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
@media all and (min-width: 768px) {
  .partners-list-sec {
    margin-top: 80px;
  }
  .partners-list-sec__list {
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
  }
  .partners-list-sec__item-in {
    transition: all 0.3s ease;
  }
  .partners-list-sec__item-in::after {
    transform: translateY(7px);
  }
  .partners-list-sec__item-in:hover {
    border-color: rgb(var(--red01));
    color: rgb(var(--red01));
  }
}

/* .topics-search
================================================ */
.topics-search__inner {
  padding-top: 40px;
  padding-bottom: 20px;
}
@media all and (min-width: 768px) {
  .topics-search__inner {
    padding-top: 76px;
    padding-bottom: 40px;
  }
}

/* .topics-archive
================================================ */
.topics-archive__inner {
  padding-top: 20px;
  padding-bottom: 40px;
}
@media all and (min-width: 768px) {
  .topics-archive__inner {
    padding-top: 40px;
    padding-bottom: 100px;
  }
}

/* .topics-single
================================================ */
.topics-single__inner {
  padding: 0 0 30px;
}
@media all and (min-width: 768px) {
  .topics-single__inner {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .topics-single .c-single01__date {
    margin-left: auto;
  }
}