@charset "UTF-8";
:root {
  --text: #222;
  --main: #081F5C;
  --sub: #C3A353;
  --gothic: Noto Sans JP, Helvetica Neue, Helvetica, Hiragino Sans, Hiragino Kaku Gothic ProN, Arial, Yu Gothic, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --serif: Noto Serif JP, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
  --en: Bona Nova, Noto Serif JP, Times New Roman, 游明朝体, Yu Mincho, YuMincho, ヒラギノ明朝 Pro, Hiragino Mincho Pro, MS P明朝, MS PMincho, serif;
  --headerHeight: 54px;
  --innerWidth: calc(100% - 40px);
  --innerMax: 600px;
  --innerOut: calc( (100% - var(--innerMax) + 40px) / 2 );
  --ls: 0.02em;
  --lh: 1.7;
  --speed: 0.4s;
  --bgColor: transparent;
}
@media screen and (min-width: 1024px) {
  :root {
    --headerHeight: 66px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --innerMax: 1052px;
    --innerOut: calc( (100% - var(--innerMax) + 40px) / 2 );
  }
}
@media screen and (min-width: 1240px) {
  :root {
    --innerOut: calc( (100% - var(--innerMax)) / 2 );
  }
}

* {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

html {
  margin: 0 !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
  color: var(--text);
  font-size: 16px;
  font-family: var(--gothic);
  font-weight: 400;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: relative;
}
body::-webkit-scrollbar {
  display: none;
}

main {
  margin-top: var(--headerHeight);
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: currentColor;
  text-decoration: none;
  cursor: pointer;
  transition: var(--speed);
}
a:hover {
  outline-width: 0;
  text-decoration: underline;
}
a.underline {
  text-decoration: underline;
}
a.underline:hover {
  text-decoration: none;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border-style: none;
  object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

picture {
  display: contents;
}

/*------------   common class   ------------*/
.disp_none {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .disp_sm {
    display: none !important;
  }
}
@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .disp_sm {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .disp_lg {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .disp_lg {
    display: none !important;
  }
}

.serif {
  font-family: var(--serif);
}

.en {
  font-family: var(--en);
}

.block {
  width: 100%;
  display: block;
}

.js-collapse {
  cursor: pointer;
}

.bg--main {
  background-color: var(--main);
  color: #fff;
}
.bg--sub {
  background-color: var(--sub);
  color: #fff;
}

.txt--main {
  --text: var(--main);
  color: var(--text);
}
.txt--sub {
  color: var(--sub);
}
.txt--white {
  color: #fff;
}
.txt--brown {
  color: #674A00;
}
.txt--center {
  text-align: center;
}

.fit {
  position: relative;
  overflow: hidden;
}
.fit__item {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.nowrap {
  white-space: nowrap;
}

/*------------   common parts   ------------*/
.inner {
  width: var(--innerWidth);
  max-width: var(--innerMax);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: var(--innerMax);
  }
}

.btn {
  padding: 15px 40px;
  background-color: var(--sub);
  border: 1px solid var(--sub);
  color: #000;
  font-size: 20px;
  font-weight: 600;
  --ls: 0.04em;
  --lh: 1.6;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.btn::after {
  content: "";
  width: 18px;
  height: 12px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M11.3555 0.355469L5.85547 5.85547L0.355469 0.355468" stroke="%23000"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translateY(-50%) rotate(-90deg);
}
.btn:hover {
  background-color: #fff;
  text-decoration: none;
}
.btn--white {
  background-color: #fff;
}
.btn--white:hover {
  background-color: var(--sub);
}

/*---------------   header   ---------------*/
.header {
  width: 100%;
  height: var(--headerHeight);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
}
.header__inner {
  --innerMax: 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__sitelogo {
  width: 100%;
  padding: 16px;
  margin-right: auto;
}
.header__sitelogo_link {
  width: 100%;
  max-width: 155px;
  display: block;
}
@media screen and (min-width: 375px) {
  .header__sitelogo {
    width: auto;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .header__sitelogo {
    padding: 0 0 0 30px;
  }
  .header__sitelogo_link {
    max-width: 205px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .header__sitelogo {
    padding-left: 20px;
  }
  .header__sitelogo_link {
    max-width: 180px;
  }
}
.header__nav {
  --ls: 0;
}
@media screen and (max-width: 1023px) {
  .header__nav {
    width: calc(100% - 40px);
    max-width: 335px;
    height: 100vh;
    padding-bottom: 50px;
    background: rgba(255, 255, 255, 0.89);
    box-shadow: -3px 0 4px 0 rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(7px);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    transform: scale(0, 1);
    transform-origin: right;
    opacity: 0;
    pointer-events: none;
    transition: var(--speed);
  }
  .header__nav.visible {
    transform: scale(1, 1);
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav {
    height: 100%;
  }
}
.header__nav_ttl {
  width: 100%;
  height: var(--headerHeight);
  padding-left: 20px;
  border-bottom: 1px solid #DADADA;
  font-size: 24px;
  --ls: 0.04em;
  --lh: 1.6;
  display: flex;
  align-items: center;
}
.header__nav_inner {
  height: 100%;
}
@media screen and (max-width: 1023px) {
  .header__nav_inner {
    width: 100%;
    padding-bottom: 130px;
    overflow-y: scroll;
  }
}
@media screen and (min-width: 1024px) {
  .header__nav_inner {
    display: flex;
  }
}
.header__gnavWrap {
  width: 100%;
  padding: 20px;
}
@media screen and (min-width: 1024px) {
  .header__gnavWrap {
    padding: 0;
    border-right: 1px solid #D2D2D2;
  }
}
.header__gnav {
  --lh: 1.222;
  display: grid;
  grid-gap: 20px;
}
.header__gnav a {
  color: var(--main);
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
}
.header__gnav .sub-menu {
  margin-top: 16px;
  --lh: 1.1875;
  display: grid;
  grid-gap: 16px;
}
.header__gnav .sub-menu a {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    height: 100%;
    display: flex;
    align-items: center;
    grid-gap: 0;
  }
  .header__gnav > li {
    align-self: stretch;
    position: relative;
  }
  .header__gnav > li:last-child a {
    padding-right: 20px;
  }
  .header__gnav > li > a::before {
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--main);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: var(--speed);
  }
  .header__gnav > li > a:hover {
    text-decoration: none;
  }
  .header__gnav > li > a:hover::before {
    opacity: 1;
  }
  .header__gnav a {
    height: 100%;
    padding: 0 8px;
    font-size: 15px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .header__gnav .sub-menu {
    padding: 30px 40px;
    background-color: #fff;
    display: grid;
    grid-gap: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translate(0, 100%);
    opacity: 0;
    transition: var(--speed);
    pointer-events: none;
  }
  .header__gnav .sub-menu a {
    padding: 0 0 0 18px;
    color: var(--main);
    text-align: left;
    justify-content: flex-start;
    position: relative;
  }
  .header__gnav .sub-menu a::before {
    content: "";
    width: 11px;
    height: 6px;
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M11.3555 0.355469L5.85547 5.85547L0.355469 0.355468" stroke="%23081F5C"/></svg>') center/contain no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(-90deg);
  }
  .header__gnav .sub-menu a br {
    display: none;
  }
  .header__gnav .sub-menu.visible {
    opacity: 1;
    pointer-events: auto;
  }
  .header__gnav .disp_notpc--header {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav a {
    padding: 0 20px;
    font-size: 16px;
  }
}
.header__lang {
  padding: 0 0 0 20px;
  font-size: 18px;
  --lh: 1.222;
  display: flex;
  align-items: center;
  grid-gap: 13px;
}
.header__lang li {
  display: flex;
  align-items: center;
  grid-gap: 13px;
}
.header__lang li:not(:last-child)::after {
  content: "/";
  color: #C0C0C0;
}
.header__lang a {
  color: var(--main);
  font-weight: 700;
  white-space: nowrap;
}
.header__lang a.disabled {
  color: #C0C0C0;
  font-size: 16px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  .header__lang {
    padding: 0 16px;
    flex-shrink: 0;
  }
  .header__lang a {
    color: #000;
    font-size: 16px;
    font-weight: 400;
  }
}
@media screen and (min-width: 1200px) {
  .header__lang {
    padding: 0 20px;
  }
}
.header__contactBtn {
  height: 100%;
  position: relative;
}
.header__contactBtn_btn {
  height: 100%;
  padding: 10px 18px;
  background-color: var(--sub);
  font-size: 14px;
  --ls: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__contactBtn_btn:hover {
  text-decoration: none;
}
.header__contactBtn .sub-menu {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__contactBtn_btn {
    padding: 10px 45px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .header__contactBtn .sub-menu {
    padding: 26px 35px;
    background-color: #F9F4E7;
    display: grid;
    grid-gap: 11px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(0, 100%);
    opacity: 0;
    transition: var(--speed);
    pointer-events: none;
  }
  .header__contactBtn .sub-menu a {
    padding: 0 0 0 18px;
    color: #463F2E;
    white-space: nowrap;
    position: relative;
  }
  .header__contactBtn .sub-menu a::before {
    content: "";
    width: 11px;
    height: 6px;
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="7" viewBox="0 0 12 7" fill="none"><path d="M11.3555 0.355469L5.85547 5.85547L0.355469 0.355468" stroke="%23463F2E"/></svg>') center/contain no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%) rotate(-90deg);
  }
  .header__contactBtn .sub-menu a br {
    display: none;
  }
  .header__contactBtn .sub-menu.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .header__contactBtn_btn {
    padding: 10px 20px;
  }
}
.header__spToggler {
  width: var(--headerHeight);
  height: 100%;
  padding: 0;
  background-color: #0B1533;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  z-index: 1;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: block;
  transition: var(--speed);
}
.header__spToggler.open span {
  margin: auto;
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
}
.header__spToggler.open span + span {
  transform: rotate(-45deg);
}
.header__spToggler.open span + span + span {
  transform: scale(0);
}

/*----------------   main   ----------------*/
.pageTtlArea {
  width: 100%;
  height: 150px;
  background: url(../img/pagettl-sp.jpg) center/cover no-repeat;
  text-align: center;
}
.pageTtlArea__inner {
  height: 100%;
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 7px;
}
.pageTtlArea__inner::before, .pageTtlArea__inner::after {
  content: "";
  width: 56px;
  height: 1px;
  background-color: #fff;
  display: block;
}
.pageTtlArea__inner::after {
  margin-bottom: -4px;
  order: -1;
}
.pageTtlArea__inner:not(:has(.pageTtlArea__en))::before, .pageTtlArea__inner:not(:has(.pageTtlArea__en))::after {
  display: none;
}
.pageTtlArea__jp {
  color: #fff;
  font-size: 28px;
  font-weight: 400;
  font-family: var(--serif);
  --ls: 0.04em;
  --lh: 1.2;
  order: -1;
}
.pageTtlArea__en {
  color: var(--sub);
  font-family: var(--en);
  font-size: 19px;
  --lh: 1;
}
@media screen and (min-width: 768px) {
  .pageTtlArea {
    height: 214px;
    background-image: url(../img/pagettl-pc.jpg);
    grid-gap: 5px;
  }
  .pageTtlArea__inner {
    padding-top: 10px;
  }
  .pageTtlArea__inner::after {
    margin-bottom: -2px;
  }
  .pageTtlArea__jp {
    font-size: 32px;
  }
  .pageTtlArea__en {
    font-size: 30px;
  }
}

.secTtl {
  color: var(--text);
  font-size: 28px;
  font-weight: 500;
  font-family: var(--en);
  --ls: 0.04em;
  --lh: 1.3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 12px;
}
.secTtl::after {
  content: "";
  width: 48px;
  height: 1px;
  background-color: var(--text);
  display: block;
}
.secTtl .jp small {
  font-size: 18px;
}
.secTtl .en {
  font-size: 18px;
  font-weight: 600;
  order: 1;
}
.secTtl--left {
  align-items: flex-start;
}
.secTtl.txt--main {
  --text: var(--main);
}
.secTtl.txt--white {
  --text: #fff;
}
@media screen and (min-width: 768px) {
  .secTtl {
    font-size: 32px;
    grid-gap: 16px;
  }
}

.discList li {
  padding-left: 24px;
  position: relative;
}
.discList li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: var(--text);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 0.8125em;
  left: 10px;
}

.checkList {
  display: grid;
  grid-gap: 12px;
  --lh: 1.7;
}
.checkList > li {
  min-height: 38px;
  padding-left: 35px;
  display: flex;
  align-items: center;
  position: relative;
}
.checkList > li::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="23" height="23" viewBox="0 0 23 23" fill="none"><path d="M22.4 22.4H0V0H22.4V22.4ZM15.425 5.95L9.455 14.16L6 10.705L4.305 12.4L8.75 16.845L9.74 17.84L10.565 16.705L17.36 7.36L18.065 6.39L16.125 4.975L15.42 5.945L15.425 5.95Z" fill="%23C3A353"/></svg>') center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

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

.countList {
  counter-reset: cnt_list 0;
}
.countList > li {
  display: flex;
  align-items: flex-start;
}
.countList > li::before {
  counter-increment: cnt_list 1;
  content: counter(cnt_list) ".";
  padding-right: 0.2em;
  flex-shrink: 0;
}

.table {
  width: 100%;
  font-size: 14px;
  table-layout: fixed;
}
.table thead td {
  padding: 7px;
  background-color: #DFD5BB;
  font-weight: 700;
  --lh: 1.3;
  text-align: center;
}
.table thead td > span {
  width: 100%;
  height: 100%;
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table tbody th, .table tbody td {
  padding: 6px 10px;
  text-align: center;
  vertical-align: middle;
}
.table tbody th {
  background-color: #FBF8EF;
  border-bottom: 1px solid #D0CDC4;
  font-weight: 500;
  --lh: 1.3;
  text-align: center;
}
.table tbody th > span {
  width: 100%;
  height: 100%;
  min-height: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table tbody td {
  border-bottom: 1px solid #E6E6E6;
  --lh: 1.6;
}
@media screen and (min-width: 768px) {
  .table thead td {
    padding: 11px 10px;
    --lh: 1.7;
  }
  .table thead td > span {
    min-height: 30px;
  }
  .table thead td:nth-child(1) {
    width: auto;
  }
  .table tbody th, .table tbody td {
    --lh: 1.7;
  }
}
@media screen and (min-width: 1024px) {
  .table {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .table {
    font-size: 16px;
  }
}

/*---------------   footer   ---------------*/
@media screen and (min-width: 768px) {
  .footer {
    --innerMax: 1080px ;
  }
}
.footer__breadcrumb {
  width: 100%;
  padding: 15px 0;
  border-top: 1px solid #E9E9E9;
  border-bottom: 1px solid #E9E9E9;
}
.footer__breadcrumb_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  grid-gap: 8px;
}
.footer__breadcrumb_inner > span {
  max-width: 100%;
  font-size: 14px;
  flex-shrink: 0;
  display: inline-block;
}
.footer__breadcrumb_inner > span br {
  display: none;
}
.footer__breadcrumb_inner a {
  text-decoration: underline;
}
.footer__breadcrumb_inner a:hover {
  text-decoration: none;
}
.footer__inner {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  grid-gap: 40px;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 80px 0 60px;
    grid-gap: 40px 0;
  }
}
.footer__btnBlk {
  width: 100%;
}
.footer__btnBlk_list {
  width: 100%;
  display: grid;
  grid-gap: 16px;
}
.footer__btnBlk_list .btn {
  width: 100%;
}
.footer__btnBlk_list .btn--white {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.footer__btnBlk_list .btn--white::after {
  width: 20px;
  height: 7px;
}
@media screen and (min-width: 768px) {
  .footer__btnBlk {
    width: 50%;
    max-width: 312px;
  }
  .footer__btnBlk_list {
    grid-gap: 14px;
  }
}
.footer__navBlk {
  width: 100%;
}
.footer__navBlk_navWrap {
  display: contents;
}
.footer__navBlk_navList {
  --lh: 1.222;
  display: grid;
  grid-gap: 23px;
}
.footer__navBlk_navList a {
  color: var(--main);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}
.footer__navBlk_navList .sub-menu {
  margin-top: 16px;
  --lh: 1.1875;
  display: grid;
  grid-gap: 16px;
}
.footer__navBlk_navList .sub-menu a {
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
}
.footer__navBlk_navList .disp_none--footer {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .footer__navBlk_navList {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    flex-wrap: wrap;
    grid-gap: 60px;
  }
  .footer__navBlk_navList .service .sub-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .footer__navBlk_navList {
    display: flex;
    align-items: flex-start;
    grid-gap: 30px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .footer__navBlk_navList a {
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer__navBlk_navList {
    grid-gap: 40px;
  }
}
.footer__infoBlk {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 16px;
}
.footer__infoBlk_siteName {
  display: flex;
  align-items: center;
  grid-gap: 23px;
}
.footer__infoBlk_siteName_logo {
  width: 80px;
}
.footer__infoBlk_siteName_logo img {
  width: 80px;
  height: 60px;
}
.footer__infoBlk_siteName_name {
  padding-left: 20px;
  border-left: 1px solid var(--main);
  font-size: 14px;
  --lh: 1.6;
  text-align: center;
}
.footer__infoBlk_address {
  font-size: 14px;
  --lh: 1.21428571;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk {
    width: 50%;
    padding: 20px 0 0;
    grid-gap: 22px;
    order: -1;
  }
  .footer__infoBlk_siteName_logo {
    width: 120px;
  }
  .footer__infoBlk_siteName_logo img {
    width: 120px;
    height: 90px;
  }
  .footer__infoBlk_siteName_name {
    font-size: 16px;
  }
}
.footer__copyright {
  width: 100%;
  font-size: 14px;
  --ls: 0.04em;
  --lh: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    text-align: right;
  }
}

.grecaptcha-badge {
  display: none !important;
}

/*---------------   en   ---------------*/
body.english {
  --gothic: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}
body.english .jp {
  --gothic: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-family: var(--gothic);
}
body.english .noteList li::before {
  content: "*:";
}
@media screen and (max-width: 1023px) {
  body.english .header__nav {
    max-width: 336px;
  }
}
body.english .header__gnav {
  grid-gap: 20px;
}
body.english .header__gnav a {
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  body.english .header__gnav {
    grid-gap: 0;
  }
}
body.english .header__lang {
  font-size: 16px;
}
body.english .header__contactBtn_btn {
  border-left: 1px solid var(--sub);
}
body.english .header__contactBtn_btn:hover {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  body.english .header__contactBtn_btn {
    padding: 10px 56px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  body.english .header__contactBtn_btn {
    padding: 10px 40px;
  }
}
body.english .footer__breadcrumb_inner > span:nth-child(-n+2) {
  display: none !important;
}
body.english .footer__breadcrumb_inner a {
  text-decoration: underline;
}
body.english .footer__breadcrumb_inner a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  body.english .footer__inner {
    padding: 60px 0 60px;
    align-items: center;
    grid-gap: 45px 0;
  }
}
@media screen and (min-width: 768px) {
  body.english .footer__btnBlk {
    max-width: 184px;
    padding-top: 20px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  body.english .footer__navBlk_navList a {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) {
  body.english .footer__copyright {
    margin-top: -5px;
  }
}