@charset "UTF-8";

/*==============================
  サイト共通のスタイル
==============================*/

/* 共通スタイル */
h1,
h2,
h3,
h4,
h5
{
  font-weight: 900;
}
h1 {
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  font-size: var(--px-to-vw_50);
}
h1 span {
  display: block;
  font-family: 'Barlow','Noto Sans','Noto Sans JP','Hiragino Sans','ヒラギノ角ゴシック','Hiragino Kaku Gothic Pro','ヒラギノ角ゴ Pro W3','メイリオ','Meiryo',sans-serif;
  font-size: var(--px-to-vw_15);
}
@media (min-width: 40em) {
  h1 {
    line-height: 1.1;
    font-size: var(--px-to-rem_80);
  }
  h1 span {
    font-size: var(--px-to-rem_16);
  }
}
h2 {
  font-size: var(--px-to-vw_20);
  line-height: 1.5;
}
h2::after {
  content: "";
  display: block;
  width: 3em;
  height: 2px;
  margin-top: 0.5rem;
  background: linear-gradient(
    to right,
    var(--color-main) 0%,
    var(--color-main) 50%,
    var(--color-black) 50%,
    var(--color-black) 100%
  );
}
@media (min-width: 40em) {
  h2 {
    font-size: var(--px-to-rem_32);
  }
  h2::after {
    content: "";
    display: block;
    height: 2px;
    margin-top: 10px;
  }
}
/* 吹き出し */
.c-speech-bubble {
  position: relative;
  font-size: var(--px-to-vw_22);
  font-weight: bold;
  background: var(--color-main);
  color: #fff;
  line-height: 2.3em;
  width: 12em;
  margin: 0 auto;
}
.c-speech-bubble::before {
  content: "";
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
  border-top: 0.6em solid var(--color-main);
  z-index: 1;
}
.c-speech-bubble::after {
  content: "";
  position: absolute;
  right: -0.05em;
  bottom: -0.05em;
  width: 4vw;
  height: 4vw;
  background: #fff;
  clip-path: polygon(
    100% 0,
    0 100%,
    100% 100%
  );
  z-index: 2;
}
@media (min-width: 40em) {
  .c-speech-bubble {
    font-size: var(--px-to-rem_22);
  }
  .c-speech-bubble::after {
    width: 0.7em;
    height: 0.7em;
  }
}

/* 先頭の文字を赤文字にする */
.c-fl-color::first-letter {
  color: var(--color-main);
}
/* 大文字だけ赤色にする */
.c-uppercase-color .is-upper {
  color: var(--color-main);
  display: contents;
}
/* 英字のフォント */
.c-font-rc {
  font-family: "Roboto Condensed", sans-serif;
}

/* ボタン */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
  gap: 0.7em;
  position: relative;
  font-size: var(--px-to-vw_14);
  padding: 0 1em 0 1.3em !important;
  line-height: 2.8;
}
.c-btn--reverse {
  padding: 0 1.3em 0 1em !important;
}
@media (min-width: 40em) {
  .c-btn {
    font-size: var(--px-to-rem_20);
  }
}
.c-btn__icon {
  font-size: 1em;
  transition: transform 0.3s ease;
}
@media (min-width: 40em) {
  .c-btn__icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
  }
}
.c-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.c-btn:hover .c-btn__icon {
  transform: translateX(6px);
}
.c-btn--reverse.c-btn:hover .c-btn__icon {
  transform: translateX(-6px);
}
.c-btn--red {
  background-color: var(--color-main) !important;
  border: 1px solid var(--color-main);
  color: #fff !important;
}
.c-btn--tel {
  background-color: #0A0A0A !important;
  border: 1px solid #0A0A0A;
  color: #fff !important;
}

/* テーブル */
.c-table--black {
  border-collapse: collapse;
  width: 267vw;
  table-layout: fixed;
}
.c-table--black th,
.c-table--black td {
  border: 1px solid #ccc;
  vertical-align: middle;
}
.c-table--black th {
  color: #fff;
  font-weight: bold;
  background: #414141;
  line-height: 2.5;
  border-bottom: 3px solid var(--color-main);
  font-size: var(--px-to-vw_16);
}
.c-table--black td {
  text-align: left;
  line-height: 2.5;
  padding: 0 4vw 0 5vw;
  font-size: var(--px-to-vw_16);
}
.c-table--black td:last-child {
  text-align: center;
  padding: 0;
}
@media (min-width: 40em) {
  .c-table--black {
    width: 1100px;
  }
  .c-table--black th {
    font-size: var(--px-to-rem_16);
  }
  .c-table--black td {
    text-align: left;
    line-height: 2.5;
    padding: 0 20px 0 25px;
    font-size: var(--px-to-rem_16);
  }
}

.c-table--gray {
  width: 100%;
  border-collapse: collapse;
}
.c-table--gray tr:first-child th {
  border-top: 1px solid #C8C8C8;
}
.c-table--gray th,
.c-table--gray td {
  display: block;
  width: 100%;
  padding: 0.8em;
  border-bottom: 1px solid #C8C8C8;
  text-align: left;
  line-height: 1.8;
}
.c-table--gray th {
  font-size: var(--px-to-vw_14);
  background: #F3F3F3;
  font-weight: bold;
  position: relative;
  padding-left: 2em;
}
.c-table--gray th::before {
  content: "";
  position: absolute;
  left: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 1.3em;
  background: var(--color-main);
}
.c-table--gray td {
  font-size: var(--px-to-vw_13);
  padding-left: 2em;
}
@media (min-width: 40em) {
  .c-table--gray th,
  .c-table--gray td {
    display: table-cell;
    vertical-align: middle;
    padding: 14px;
    position: relative;
  }
  .c-table--gray td::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: calc(100% + 2px);
    background: #fff;
    z-index: 2;
    pointer-events: none;
  }
  .c-table--gray td > * {
    position: relative;
    z-index: 3;
  }
  .c-table--gray tr:first-child td {
    border-top: 1px solid #C8C8C8;
  }
  .c-table--gray th {
    font-size: var(--px-to-rem_17);
    width: 23%;
    padding-left: 2em;
  }
  .c-table--gray td {
    font-size: var(--px-to-rem_16);
    width: 60%;
    padding-left: 4em;
  }
}

.c-table--white {
  width: 100%;
}
.c-table--white tr:first-child th {
  border-top: 1px solid var(--color-main);
}
.c-table--white th,
.c-table--white td {
  width: 100%;
  padding: 0.8em;
  text-align: left;
  position: relative;
  line-height: 1.8;
}
.c-table--white td::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 2.5em;
  height: calc(100% + 2px);
  background: #fff;
  z-index: 2;
  pointer-events: none;
}
.c-table--white td > * {
  position: relative;
  z-index: 3;
}
.c-table--white th {
  border-bottom: 1px solid var(--color-main);
  font-size: var(--px-to-vw_14);
  vertical-align: middle;
  position: relative;
  text-align: center;
  font-weight: bold;
  width: 33%;
}
.c-table--white td {
  border-bottom: 1px solid #C8C8C8;
  font-size: var(--px-to-vw_13);
  padding-left: 2.5em;
}
.c-table--white tr:first-child td {
  border-top: 1px solid #C8C8C8;
}
@media (min-width: 40em) {
  .c-table--white th,
  .c-table--white td {
    vertical-align: middle;
    padding: 14px;
    position: relative;
  }
  .c-table--white td::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 30px;
    height: calc(100% + 2px);
    background: #fff;
    z-index: 2;
    pointer-events: none;
  }
  .c-table--white td > * {
    position: relative;
    z-index: 3;
  }
  .c-table--white tr:first-child td {
    border-top: 1px solid #C8C8C8;
  }
  .c-table--white th {
    font-size: var(--px-to-rem_17);
    width: 20%;
  }
  .c-table--white td {
    font-size: var(--px-to-rem_16);
    width: auto;
    padding-left: 4em;
  }
}

/* ホバー */
.c-hoverScale {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}
.c-hoverScale:hover {
  transform: scale(1.05);
}

/* 背景 */
.c-bg-white {
  background: #fff;
}
.c-bg-gray {
  background: #F0F0F0;
}
.c-bg-red {
  background: var(--color-main);
}
.c-bg-black::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
    url("../img/black_img _bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.c-bg-gray-fade {
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #fcfcfc 65%,
    #d1d1d1 100%
  );
}
@media (min-width: 40em) {
  .c-bg-gray-fade {
    background: linear-gradient(
      to bottom,
      #ffffff 35%,
      #d1d1d1 100%
    );
  }
}

/* 画像背景  */
.c-img-shadow {
  position: relative;
}
.c-img-shadow::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(6px, 6px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 20px) 100%, 0 100%);
  z-index: -1;
}
.c-img-shadow__red.c-img-shadow::after {
  background: var(--color-main);
}
.c-img-shadow__gray.c-img-shadow::after {
  background: #7d7d7d;
}
.c-img-shadow.reverse::after {
  transform: translate(-6px, -6px);
  clip-path: polygon(
    20px 0,
    100% 0,
    100% 100%,
    0 100%,
    0 30px
  );
}
.c-img-shadow .image {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 20px) 100%, 0 100%);
}
.c-img-shadow.reverse .image {
  clip-path: polygon(20px 0,100% 0,100% 100%,0 100%,0 30px);
}

/* パンくず */
@media (min-width: 40em) {
  .breadcrumbs span span {
    margin: 0 15px;
  }
  .breadcrumbs span:first-child span {
    margin: 0 15px 0 0;
  }
}

/*--- 非表示 ---*/
.u-displaynone {
  display: none !important;
}

/*--- モバイル非表示 ---*/
@media (max-width: 39.9375rem) {
  .u-displaynone-sm {
    display: none !important;
  }
}

/*--- デスクトップ非表示 ---*/
@media (min-width: 40em) {
  .u-displaynone-md-up {
    display: none !important;
  }
}

/* -------------------------------ヘッダー------------------------------------ */
.o-header {
  position: relative;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: var(--header-height);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
@media (min-width: 40em) {
  .o-header {
    max-width: 100%;
    overflow: visible;
    margin-top: var(--header-margin-top);
    height: calc( var(--header-height-md) - var(--header-margin-top));
    box-shadow: none;
  }
}
.o-header .c-row {
  background-color: #fff;
}
@media (min-width: 40em) {
  .o-header .c-row {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
.o-heder--dummy {
  width: 100%;
  height: var(--header-height);
}
.o-site-logo {
  margin: auto 0 auto 5vw;
}
.o-site-logo a{
  height: var(--header-height);
}
.o-site-logo__img {
  width: calc(250 * 0.26667vw);
  height: auto;
}
@media (min-width: 40em) {
  .o-site-logo {
    margin: auto 0 auto 30px;
  }
  .o-site-logo a{
    height: auto;
  }
  .o-site-logo__img {
    margin-bottom: 2px;
    width: 310px;
    transition: 0.3s;
  }
  .o-site-logo__img:hover {
    opacity: 0.7;
  }
}
.o-header a {
  text-decoration: none;
}
.o-globalMenu {
  width: 100vw;
  min-height: 60vh;
  max-height: 90vh;
  background-color: #fff;
  overflow: auto;
  position: fixed;
  top: var(--header-height);
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition: all 0.3s;
  padding-bottom: 12vw;
}
@media (min-width: 40em) {
  .o-globalMenu {
    width: auto;
    height: auto;
    height: calc( var(--header-height-md) - var(--header-margin-top));
    background-color: transparent;
    display: flex;
    overflow: visible;
    position: static;
    top: 0;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    min-height: auto;
    max-height: 100%;
    margin-left: auto;
    margin-right: 20px;
    padding-bottom: 0;
  }
}
.o-globalMenu--shown .o-globalMenu,.o-globalMenu--shown .o-globalMenuToggle--background {
  transform: translateX(0);
}
.o-globalMenu > ul {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 40em) {
  .o-globalMenu > ul {
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.o-globalMenu > ul > li {
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li {
    border-bottom: none;
    flex-grow: 1;
    overflow: visible;
  }
}
.o-globalMenu > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em var(--px-to-vw_25);
  font-size: var(--px-to-vw_16);
  font-weight: bold;
  position: relative;
  transition: 0.3s;
  width: 100%;
  border-bottom: solid 1px #C8C8C8;
}
.o-globalMenu > ul > li:first-child > a {
  border-top: 1px solid #C8C8C8;
}
.o-globalMenu > ul > li > a > img {
  width: 7vw;
}
.o-globalMenu > ul > li.is-current > a > div {
  color: var(--color-main);
}
.o-globalMenu > ul > li.o-globalMenuItem--tel {
  margin-top: 11vw;
}
.o-globalMenu > ul > li.o-globalMenuItem--contact,
.o-globalMenu > ul > li.o-globalMenuItem--tel {
  padding: 2vw var(--px-to-vw_25);
}
.o-globalMenu > ul > li.o-globalMenuItem--contact > a,
.o-globalMenu > ul > li.o-globalMenuItem--tel > a {
  display: flex;
  justify-content: center;
  gap: 1em;
  font-size: var(--px-to-vw_16);
  border-bottom: none;
}
.o-globalMenu > ul > li.o-globalMenuItem--contact > a > div,
.o-globalMenu > ul > li.o-globalMenuItem--tel > a > div {
  color: #fff;
}
.o-globalMenuItem--hasChildren {
  position: relative;
}
.o-globalMenu > ul > .o-globalMenuItem--hasChildren--title > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  transition: 0.3s;
  color: var(--color-main-text);
}

@media (max-width: 39.999999em) {
  .o-globalMenuItem--title{
    background-color: var(--color-main);
    color: var(--color-main-text);
  }
}
.o-globalMenuItem__childToggle {
  color: var(--color-main);
  transition: transform 0.3s ease;
}
.o-globalMenuItem--hasChildren:has(a.opened) {
  display: flex !important;
  flex-direction: column;
  overflow: hidden;
  transition : 0.3s;
}
.o-globalMenuItem--hasChildren > a.opened > i {
  transform: rotate(180deg);
}

@media (min-width: 40em) {
  .o-globalMenu > ul > li > a {
    padding: 0 1.2rem;
    font-size: var(--px-to-rem_14);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
  }
  .o-globalMenu > ul > li:first-child > a {
    border-top: none;
  }
  .o-inquiry__a{
    font-size: 18px;
    font-weight: bold;
  }
  .o-globalMenu > ul > li > a > div{
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: bold;
  }
  .o-globalMenu > ul > li > a:hover > div{
    color: var(--color-main);
  }
  .o-globalMenu > ul > li.o-globalMenuItem--contact {
    padding: 0;
  }
  .o-globalMenu > ul > li.o-globalMenuItem--contact > a {
    font-size: var(--px-to-rem_14);
  }
  .o-globalMenu > ul > li.o-globalMenuItem--contact > a:hover > div{
    color: #fff;
  }
  .o-globalMenu > ul > li > a:after {
    display: none;
  }
  .o-globalMenu > ul > li > a.focus,
  .o-globalMenuSub ul > li:hover > a
  {
    color: var(--color-main);
  }
  .o-globalMenu > ul > li:hover > a {
    color: var(--color-main);
    transition:0.3s;
  }
  .o-globalMenu > ul > .o-inquiry > a {
    border: 1px solid #383434;
  }
  .o-globalMenu > ul > .o-inquiry:hover > a {
    color: #383434;
    transition:0.3s;
    border: 1px solid #383434;
    box-sizing: border-box;
  }
}

/* サブメニュー表示切替 */
.o-globalMenu > ul > li.o-globalMenuItem--hasChildren > a.focus + .o-globalMenuSub {
  display: block;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li.o-globalMenuItem--hasChildren:hover .o-globalMenuSub {
    opacity: 1;
    visibility: visible;
  }
  .is-force-close .o-globalMenuSub {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .is-force-close .o-globalMenuItem--hasChildren:hover::after {
    display: none !important;
  }

}

.o-globalMenu > ul > li.o-globalMenuItem--hasChildren {
  position: relative;
  transition: 0.3s;
}
@media (min-width: 40em) {
  .o-globalMenu > ul > li.o-globalMenuItem--hasChildren:hover::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid var(--color-main);
    z-index: 1001;
  }
}

/* グローバルメニューサブ */
.o-globalMenuSub {
  margin-bottom: -2px;
  width: 100%;
  background-color: #F0F0F0;
  display: none;
}
@media (min-width: 40em) {
.o-globalMenuSub {
    position: fixed;
    top: 70px;
    left: 10%;
    transform: translateX(-50%);
    width: 1000px;
    opacity: 0;
    visibility: hidden;
    transition: 300ms;
    margin: 0 auto; 
    display: block;
    border-top: 4px solid var(--color-main);
  }
  .o-globalMenuSub::after {
    content: "";
    position: absolute;
    left: 0;
    top: -13px;
    width: 100%;
    height: 20px;
    background: transparent;
    pointer-events: auto;
  }
}
@media (min-width: 40em) {
  .o-globalmenuSub__inner {
    padding: 50px 50px 60px;
    background-color: #ffffff;
  }
  .o-globalmenuSub__inner h1 {
    font-size: 3.25rem;
  }
  .o-globalmenuSub__inner > ul > li:nth-of-type(odd) {
    padding-right: 25px;
  }
  .o-globalmenuSub__inner > ul > li:nth-of-type(even) {
    padding-left: 25px;
  }
}
.o-globalMenuSub > ul > li {
  border-bottom: 1px solid #DADADA;
}
@media (min-width: 40em) {
  .o-globalMenuSub > ul > li {
    border-bottom: none;
  }
}
a.o-globalMenuSub__item {
  padding: 0.75em 1.5em 0.75em var(--px-to-vw_25);
  font-size: var(--px-to-vw_15);
  display: block;
  transition: 150ms;
  position: relative;
  color: var(--color-text);
  border-bottom: 1px solid #c8c8c8;
}
a.o-globalMenuSub__item:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 1.7em;
  transform: translateY(-50%);
  text-decoration: none;
  transition: transform 0.3s ease;
}
@media (min-width: 40em) {
  a.o-globalMenuSub__item {
    padding: 10px 0 5px 7.5px;
    font-size: var(--px-to-rem_14);
    font-weight: bold;
  }
  a.o-globalMenuSub__item:before {
    color: var(--color-main);
  }
}

a.o-globalMenuSub__item:hover::before {
  transform: translateX(6px) translateY(-50%);
}

/* グローバルメニューオーバーレイ */
.o-globalMenu-overlay {
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
@media (min-width: 40em) {
  .o-globalMenu-overlay {
    height: 100vh;
    top: 0;
  }
}
.o-globalMenu-overlay--shown {
  visibility: visible;
  opacity: 1;
}
@media (min-width: 40em) {
    .o-globalMenu-overlay--shown {
    visibility: visible;
    opacity: 1;
  }
}

/* --- グローバルメニュートグル --- */
.o-globalMenuToggle {
  width: var(--header-height);
  height: var(--header-height);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 102;
  cursor: pointer;
  overflow: hidden;
  background-color: var(--color-main)
}
@media (min-width: 40em) {
  .o-globalMenuToggle {
    display: none;
  }
}
.o-globalMenuToggle span,
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  display: block;
  width: 8vw;
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: all .3s;
}
.o-globalMenuToggle span:before,
.o-globalMenuToggle span:after {
  content: '';
}
.o-globalMenuToggle span:before {
  top: 0;
  bottom: -5vw;
}
.o-globalMenuToggle span:after {
  top: -5vw;
}
.o-globalMenu--shown .o-globalMenuToggle span {
  background: transparent;
}
.o-globalMenu--shown .o-globalMenuToggle span:before {
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
}
.o-globalMenu--shown .o-globalMenuToggle span:after {
  transform: rotate(45deg);
  top: 0;
}
.o-globalMenuToggle--background {
  height: var(--header-height);
  width: 85vw;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
}

/* ----------------------------------フッター--------------------------------------- */
.o-footer {
  background: var(--color-main);
  color: #fff;
  margin-bottom: var(--footer-float-height);
}
.o-footer__main {
  background: var(--color-black);
  padding: 10vw 0 10vw;
}
.o-footer__info {
  text-align: center;
  line-height: 1.8;
  border-bottom: 1px solid var(--color-main);
}
.o-footer__info .c-btn {
  margin: 5vw 0 7vw 0;
  font-size: var(--px-to-vw_18);
}
.o-footer__logo img {
  width: 90vw;
  height: auto;
}
.o-footer__address {
  font-size: var(--px-to-vw_13);
  margin-top: 4vw;
}
.o-footer__bottom {
  padding: 5vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}
.o-footer__copy {
  font-size: var(--px-to-vw_11);
}
.o-footer__links {
  font-size: var(--px-to-vw_13);
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.o-footer__links a {
  text-decoration: none;
  transition: opacity 0.3s;
}
.o-footer__links a:hover {
  opacity: 0.7;
}
@media (min-width: 40em) {
  .o-footer {
    margin-bottom: 0;
  }
  .o-footer__main {
    padding: 50px 0 50px;
  }
  .o-footer__logo img {
    width: 350px;
    height: auto;
  }
  .o-footer__info {
    text-align: left;
    border-right: 1px solid var(--color-main);
    border-bottom: none;
  }
  .o-footer__info .c-btn {
    margin: 20px 0 0 0;
    font-size: var(--px-to-rem_16)
  }
  .o-footer__address {
    font-size: var(--px-to-rem_15);
    margin-top: 0.8em;
  }
  .o-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
  }
  .o-footer__copy {
    font-size: var(--px-to-rem_12);
  }
  .o-footer__links {
    font-size: var(--px-to-rem_14);
    gap: 40px;
  }
}
.o-footer-sitemap {
  padding: 5vw 0 0 0;
}
.o-footer-sitemap__lists {
  line-height: 2;
  transition: 0.3s;
}
.o-footer-sitemap__title {
  font-weight: bold;
  font-size: var(--px-to-vw_16);
}
.o-footer-sitemap__sub {
  color: #BEBEBE;
  font-size: var(--px-to-vw_13);
  padding: 0 0 1em 1.5em;
}
@media (min-width: 40em) {
  .o-footer-sitemap {
    padding: 0 0 0 100px;
  }
  .o-footer-sitemap__lists a:hover {
    opacity: 0.7;
  }
  .o-footer-sitemap__title {
    font-size: var(--px-to-rem_16);
  }
  .o-footer-sitemap__sub {
    margin-top: 10px;
    font-size: var(--px-to-rem_14);
    padding: 0;
  }
}

.o-footer-sitemap__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7em 0;
}
.o-footer-sitemap__toggle {
  appearance: none;
  border: none;
  background: none;
  font-size: var(--px-to-vw_20);
  line-height: 1;
  cursor: pointer;
  color: #fff;
}
.o-footer-sitemap__sub {
  display: none;
}
.o-footer-sitemap li.is-open > .o-footer-sitemap__sub {
  display: block;
}
@media (min-width: 40em) {
  .o-footer-sitemap__head {
    padding: 0;
  }
  .o-footer-sitemap__sub {
    display: block !important;
  }
  .o-footer-sitemap__toggle {
    display: none;
  }
}