@charset "UTF-8";
:root {
  --color-white: #fff;
  --color-contrast: #fbf9f3;
  --color-contrast02: #bee8ff;
  --color-contrast03: #9ad8f7;
  --color-accent: #0057aa;
  --color-accent02: #399fff;
  --color-black: #222;
  --color-link: #00f;
  --color-gray: #ccc;
  --color-gray02: #656974;
  --color-gray03: #969696;
  --color-gray04: #b2b2b2;
  --color-gray05: #707070;
  --transition: all 0.5s ease;
  --transition-duration: 0.5s;
  --box-shadow: 3px 3px 5px #00000029;
}

/* =======================================================
keyframes
======================================================= */
@keyframes line-top-to-bottom {
  0% {
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  80% {
    height: 74px;
    opacity: 1;
  }
  100% {
    height: 74px;
    opacity: 0;
  }
}
/* =======================================================
基本設定
======================================================= */
@font-face {
  font-family: noto-sans-jp;
  font-weight: normal;
  src: url("../fonts/Noto-Sans-JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-sans-jp;
  font-weight: bold;
  src: url("../fonts/Noto-Sans-JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: normal;
  src: url("../fonts/Noto-Serif-JP/NotoSerifJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: noto-serif-jp;
  font-weight: bold;
  src: url("../fonts/Noto-Serif-JP/NotoSerifJP-Bold.woff") format("woff");
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  overflow-wrap: break-word;
  outline: none;
  box-shadow: none;
  line-break: strict;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

*,
*:focus,
a:focus {
  outline: none;
}

body,
.ly-head,
.ly-main,
.ly-foot {
  min-width: 1024px;
}

body {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 17px;
  line-height: calc(26/17);
  color: #222;
  letter-spacing: 0.04em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
figcaption,
figure,
picture,
footer,
main,
header,
nav,
section {
  display: block;
}

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

ul,
ol {
  list-style: none;
}

p,
li,
dt,
dd,
th,
td {
  -ms-line-break: strict;
  line-break: strict;
  overflow-wrap: anywhere;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: optimize-contrast;
}

picture {
  line-height: 0;
}

input,
button,
select,
textarea {
  font-family: noto-sans-jp, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  color: #222;
  cursor: pointer;
  background-color: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  appearance: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

input[type=checkbox] {
  display: none;
}

input[type=radio] {
  display: none;
}

button,
textarea {
  font-family: inherit;
  font-size: 100%;
}

:root {
  interpolate-size: allow-keywords;
}

summary {
  display: block;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

/* PC SP */
.pc {
  display: initial;
}

.sp {
  display: none;
}

a,
.hp-hover {
  transition: var(--transition);
  will-change: opacity;
}
@media (any-hover: hover) {
  a:hover,
  .hp-hover:hover {
    opacity: 0.7;
  }
}

@media (any-hover: hover) {
  label:hover {
    cursor: pointer;
  }
}

:where(dialog) {
  width: unset;
  max-width: unset;
  height: unset;
  max-height: unset;
  padding: unset;
  overflow: unset;
  color: unset;
  background-color: unset;
  border: unset;
}

:root:has(:modal) {
  overflow: hidden;
}

@media screen and (width <= 750px) {
  body,
  .ly-head,
  .ly-main,
  .ly-foot {
    width: 100%;
    min-width: 750px;
    max-width: 750px;
  }
  body {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
  input,
  button,
  select,
  textarea {
    font-size: 30px;
  }
  .sp {
    display: initial;
  }
  .pc {
    display: none;
  }
}
/* =============================
共通レイアウト
============================== */
.ly-main {
  position: relative;
  z-index: 2;
}

.--vertical {
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.--vertical-long-vowel {
  display: inline-block;
  transform: rotate(90deg) translateY(-1px);
}

@media screen and (min-width: 751px) {
  .--vertical-pc {
    line-height: 1;
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .--vertical-long-vowel-pc {
    display: inline-block;
    transform: rotate(90deg) translateY(-1px);
  }
  .--vertical-kakko-pc {
    display: inline-block;
    transform: rotate(90deg);
  }
  .--vertical-dot-pc {
    display: inline-block;
    transform: translate(2px, 4px);
  }
}
/* 全体のWrapper */
.ly-allwrapper {
  max-width: 2000px;
  margin: 0 auto;
  overflow: clip;
}

/* inner */
.ly-head-inner,
.ly-foot-inner,
.ly-cont,
.ly-cont-inner {
  position: relative;
  width: 1024px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
}

/* 2カラム */
.ly-cont--col {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  justify-content: space-between;
}

.ly-cont-main {
  width: 700px;
}

.ly-cont-side {
  width: 280px;
}

@media screen and (width <= 750px) {
  /* inner */
  .ly-cont,
  .ly-cont-inner {
    width: 690px;
  }
  /* 2カラム */
  .ly-cont--col {
    gap: 80px;
  }
  .ly-cont-main,
  .ly-cont-side {
    width: 100%;
  }
}
/* =============================
下層MV - パンくず
============================== */
.bl-lower-mv {
  margin-top: 120px;
}
.bl-lower-mv .ly-cont-inner {
  position: relative;
  display: flex;
  justify-content: end;
  height: 280px;
  padding-right: 51px;
}
.bl-lower-mv .ly-cont-inner::before {
  position: absolute;
  bottom: 0;
  left: -488px;
  width: 1366px;
  height: 280px;
  content: "";
  background: center center/cover no-repeat;
}
.bl-lower-mv-hgroup {
  display: flex;
  flex-direction: row-reverse;
  gap: 8px;
}
.bl-lower-mv-hgroup-ttl > img {
  display: block;
  width: fit-content;
}
.bl-lower-mv-hgroup-txt {
  display: flex;
  text-orientation: mixed;
  gap: 8px;
  align-items: center;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.bl-lower-mv-hgroup-txt::before {
  translate: -2px;
  width: 1px;
  height: 40px;
  content: "";
  background: var(--color-black);
}

/* パンくず */
.bl-breadcrumbs-inner {
  display: flex;
  width: 1024px;
  padding-top: 17px;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}

.bl-breadcrumbs-inner > li {
  font-size: 13px;
}

.bl-breadcrumbs-inner > li:first-child {
  display: flex;
  align-items: center;
}

.bl-breadcrumbs-inner > li:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bl-breadcrumbs-inner > li:first-of-type ~ li::before {
  margin: 0 7px;
  content: ">";
}

.bl-breadcrumbs-inner .home {
  display: flex;
  align-items: center;
  width: 16px;
}

@media screen and (width <= 750px) {
  .bl-lower-mv {
    margin-top: 144px;
  }
  .bl-lower-mv .ly-cont-inner {
    height: 316px;
    padding-right: 0;
  }
  .bl-lower-mv .ly-cont-inner::before {
    left: -30px;
    width: 720px;
    height: 200px;
  }
  .bl-lower-mv-hgroup {
    flex-direction: column;
  }
  .bl-lower-mv-hgroup-ttl {
    font-size: 36px;
    text-align: right;
  }
  .bl-lower-mv-hgroup-txt {
    align-items: center;
    justify-content: end;
    font-size: 22px;
    line-height: calc(32/22);
  }
  .bl-lower-mv-hgroup-txt::before {
    width: 156px;
    height: 2px;
    translate: 0 2px;
  }
  /* パンくず */
  .bl-breadcrumbs-inner {
    width: 690px;
    padding-top: 26px;
  }
  .bl-breadcrumbs-inner > li {
    font-size: 22px;
  }
  .bl-breadcrumbs-inner > li:first-of-type ~ li::before {
    margin: 0 10px;
  }
  .bl-breadcrumbs-inner .home {
    width: 28px;
  }
}
/* =============================
共通パーツ
============================== */
/* 各sectionメイン見出し */
.el-sec-mainttl {
  position: relative;
  margin-bottom: 32px;
  line-height: 1.5;
  text-align: center;
}

/* bl_bulletList */
.bl-bulletlist > li {
  position: relative;
  padding-left: 1em;
}

.bl-bulletlist > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.bl-bulletlist.bl-bulletlist--square > li {
  padding-left: calc(1em + 8px);
}

.bl-bulletlist.bl-bulletlist--square > li::before {
  content: "■";
}

/* bl_numList */
.bl-numlist {
  counter-reset: num;
}

.bl-numlist > li {
  position: relative;
  padding-left: 1.2em;
}

.bl-numlist > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(num) ".";
  counter-increment: num;
}

.bl-numlist.bl-numlist--circle > li:first-of-type::before {
  content: "①";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(2)::before {
  content: "②";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(3)::before {
  content: "③";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(4)::before {
  content: "④";
}

.bl-numlist.bl-numlist--circle > li:nth-of-type(5)::before {
  content: "⑤";
}

.bl-numlist.bl-numlist--brackets {
  counter-reset: cnt;
}

.bl-numlist.bl-numlist--brackets > li {
  padding-left: 2em;
  counter-increment: cnt;
}

.bl-numlist.bl-numlist--brackets > li::before {
  content: "(" counter(cnt) ") ";
}

/* el_btn */
.el-btn {
  position: relative;
}
.el-btn.--arrow {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 320px;
  padding: 19px 16px 21px 22px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
  color: var(--color-white);
  letter-spacing: 0;
  background: var(--color-accent);
  border: 2px solid var(--color-accent);
  border-radius: 8px;
  transition: var(--transition);
}
.el-btn.--arrow::after {
  width: 25px;
  height: 10px;
  content: "";
  background-color: var(--color-white);
  -webkit-mask: url("../images/common/btn-arrow.svg") center/cover no-repeat;
  mask: url("../images/common/btn-arrow.svg") center/cover no-repeat;
  transition: translate 0.5s ease, background-color 0.5s ease;
}
@media (hover: hover) {
  .el-btn.--arrow:hover {
    color: var(--color-accent);
    background: var(--color-white);
    opacity: 1;
  }
  .el-btn.--arrow:hover::after {
    background-color: var(--color-accent);
    translate: 8px;
  }
}
.el-btn.--arrow.--reverse {
  color: var(--color-accent);
  background: var(--color-white);
  border: 1px solid var(--color-white);
}
.el-btn.--arrow.--reverse::after {
  background-color: var(--color-accent);
}
@media (hover: hover) {
  .el-btn.--arrow.--reverse:hover {
    color: var(--color-white);
    background: var(--color-accent);
  }
  .el-btn.--arrow.--reverse:hover::after {
    background-color: var(--color-white);
  }
}

/* el_label */
.el-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 2px;
  color: #fff;
  background: #000;
}

/* ※ */
.el-att {
  position: relative;
  display: flex;
  font-size: 14px;
  line-height: calc(20/14);
}

.el-att::before {
  flex: 0 1 auto;
  content: "※";
}

.el-att.center {
  justify-content: center;
}

.el-att01,
.el-att02,
.el-att03 {
  padding-left: 2.5em;
}

.el-att01::before {
  content: "※1";
}

.el-att02::before {
  content: "※2";
}

.el-att03::before {
  content: "※3";
}

span.el-att {
  display: block;
}

.el-link {
  color: #00f;
  text-decoration: underline;
}

.el-txt {
  text-align: center;
}

.c-paper-bg {
  background: url("../images/common/paper-bg.webp") top left/contain repeat;
}

@media screen and (max-width: 750px) {
  .el-btn.--arrow {
    min-width: 500px;
    padding: 22px 16px 24px 28px;
    font-size: 30px;
    line-height: calc(44/30);
  }
  .el-btn.--arrow::after {
    width: 40px;
    height: 14px;
  }
  .el-att {
    font-size: 24px;
  }
}
/* =============================
ヘルプタグ
============================== */
/* 明朝体 */
.hp-mincho {
  font-family: noto-serif-jp, "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: bold;
}

/* bold */
.hp-bold {
  font-weight: bold !important;
}

/* opacity1 */
.hp-opacity1 {
  opacity: 1 !important;
}

/* 電話リンク */
.hp-tel {
  pointer-events: none;
}

/* アクセントカラー */
.hp-color--accent {
  color: var(--color-accent);
}

.hp-color--accent02 {
  color: var(--color-accent02);
}

.hp-scroll-y {
  overflow-y: scroll;
  /* スクロールバー非表示（IE・Edge） */
  -ms-overflow-style: none;
  /* スクロールバー非表示（Firefox） */
  scrollbar-width: none;
}

/* スクロールバー非表示（Chrome・Safari） */
.hp-scroll-y::-webkit-scrollbar {
  display: none;
}

@media screen and (width <= 750px) {
  /* ユニット */
  .hp-unit {
    display: block;
  }
  /* 電話リンク */
  .hp-tel {
    pointer-events: auto;
  }
}
/* =============================
header
============================== */
.ly-head {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  width: 100%;
  padding: 31px 0;
  transition: var(--transition);
  transform: translateX(-50%);
}
.ly-head.--js-scroll {
  background: rgba(255, 255, 255, 0.7);
}
.ly-head.--js-active .bl-head-box {
  opacity: 0;
}

.bl-head-box {
  display: flex;
  justify-content: space-between;
  padding-right: 80px;
}
.bl-head-logo {
  transition: var(--transition);
}
.bl-head-logo-link {
  display: flex;
  gap: 16px;
  align-items: center;
}
.bl-head-logo-ttl {
  display: flex;
  width: 258px;
}
.bl-head-logo-txt {
  font-size: 15px;
  line-height: calc(21/15);
}
.bl-head-btn {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 7px 16px 10px;
  font-weight: 700;
  line-height: calc(25/17);
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: 8px;
}
.bl-head-btn::before {
  width: 20px;
  height: 16px;
  content: "";
  background: url("../images/common/icon-mail.svg") center center/cover no-repeat;
  transform: translateY(1px);
}
.bl-head-nav-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: none;
  place-content: center;
  width: 100vw;
  height: 100vh;
  background: url("../images/common/nav-bg.webp") center center/cover no-repeat;
}
.bl-head-nav-box.--js-active {
  display: grid;
  animation-name: nav-fade-in;
  animation-fill-mode: forwards;
  animation-duration: 0.5s;
}
@keyframes nav-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bl-head-nav-box.--js-deactive {
  animation: nav-fade-out 0.5s forwards;
}
@keyframes nav-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.bl-head-nav-inner {
  display: flex;
  gap: 48px;
}
.bl-head-nav-outer {
  display: flex;
  gap: 64px;
  padding-top: 13px;
}
.bl-head-nav-ttl {
  padding-top: 3px;
  font-size: 24px;
  font-weight: 700;
}
.bl-head-nav-list {
  display: flex;
  gap: 48px;
}
.bl-head-nav-def {
  display: flex;
  gap: 16px;
}
.bl-head-nav-ditem {
  font-weight: 700;
}
.bl-head-nav-btn {
  position: relative;
  align-self: start;
  padding: 16px 13px 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-accent);
  background: var(--color-white);
  border-radius: 4px;
}
.bl-head-nav-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.bl-head-nav-btn::before {
  position: absolute;
  top: -24px;
  left: 50%;
  width: 18px;
  height: 24px;
  content: "";
  background: url("../images/common/nav-ribbon.svg") center center/cover no-repeat;
  transform: translateX(-50%);
}

.bl-burger {
  position: absolute;
  top: -12px;
  right: 0;
  z-index: 9999;
  display: grid;
  grid-template-rows: 1fr auto;
  width: max-content;
  transition: transform 0.5s ease, opacity 0.5s ease, top 0.5s ease;
}
@media (hover: hover) {
  .bl-burger:hover {
    opacity: 0.7;
  }
}

.bl-burger.--js-active .bl-burger-bars {
  width: 46px;
}

.bl-burger.--js-active .bl-burger-bars::before,
.bl-burger.--js-active .bl-burger-bars::after {
  height: 63.05px;
}

.bl-burger.--js-active .bl-burger-bars::before {
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.bl-burger.--js-active .bl-burger-bars::after {
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.bl-burger.--js-active .bl-burger-bar {
  display: none;
}

.bl-burger.--js-active .bl-burger-txt {
  display: none;
}

.bl-burger-bars {
  position: relative;
  display: block;
  width: 35px;
  height: 46px;
  margin: 0 auto 6px;
}
.bl-burger-bars::before {
  top: 0;
  left: calc(100% - 2px);
  height: 100%;
}
.bl-burger-bars::after {
  top: calc(100% - 20px);
  left: 0;
  height: 20px;
}

.bl-burger-bar {
  top: calc(100% - 30px);
  height: 30px;
}

.bl-burger-bar,
.bl-burger-bars::before,
.bl-burger-bars::after {
  position: absolute;
  width: 2px;
  content: "";
  background: var(--color-black);
  transition: all 0.3s ease;
}

.bl-burger-txt {
  font-weight: 700;
  line-height: 1;
}

@media screen and (min-width: 751px) {
  .bl-head-nav-inner {
    flex-direction: row-reverse;
  }
  .bl-head-nav-outer {
    flex-direction: row-reverse;
  }
  .bl-head-nav-list {
    flex-direction: row-reverse;
  }
  .bl-head-nav-def {
    flex-direction: row-reverse;
  }
  .bl-head-nav-btn-wrapper {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 750px) {
  .ly-head {
    padding: 23px 0;
  }
  .ly-head.--js-scroll .bl-burger {
    top: -18px;
  }
  .bl-head-logo-ttl {
    width: 300px;
  }
  .bl-head-logo-txt {
    font-size: 22px;
    line-height: calc(32/22);
    letter-spacing: 0.06em;
  }
  .bl-head-btn {
    display: none;
  }
  .bl-head-nav-box {
    place-content: start start;
    padding-top: 93px;
    background-image: url("../images/common/nav-bg-sp.webp");
  }
  .bl-head-nav-inner {
    flex-direction: column;
    gap: 40px;
    justify-content: start;
    width: 100vw;
    height: calc(100vh - 93px - 40px);
    padding: 0 60px;
    overflow: scroll;
    transform: translateY(0);
  }
  .bl-head-nav-outer {
    flex-direction: column;
    gap: 40px;
  }
  .bl-head-nav-ttl {
    font-size: 36px;
  }
  .bl-head-nav-list {
    display: grid;
  }
  .bl-head-nav-item {
    justify-self: start;
  }
  .bl-head-nav-def {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 56px;
    letter-spacing: 0.06em;
  }
  .bl-head-nav-btn {
    padding: 3px 13px;
    font-size: 30px;
  }
  .bl-head-nav-btn-wrapper {
    gap: 32px;
  }
  .bl-head-nav-btn::before {
    display: none;
  }
  .bl-burger {
    top: 0;
  }
  .bl-burger-bars {
    width: 32px;
    margin-bottom: 0;
  }
  .bl-burger-bars::before {
    top: 0;
    left: calc(100% - 2px);
    height: 100%;
  }
  .bl-burger-bars::after {
    top: calc(100% - 20px);
    height: 20px;
  }
  .bl-burger-bar {
    top: calc(100% - 30px);
  }
  .bl-burger-txt {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.06em;
  }
}
/* =============================
footer
============================= */
.ly-foot {
  padding: 80px 0 134px;
  background: url("../images/common/footer-bg.webp") bottom center/cover no-repeat;
}

.bl-foot {
  display: grid;
  grid-template: "logo nav-wrapper" "box nav-wrapper" "copyright nav-wrapper";
  grid-template-rows: auto auto 1fr;
}
.bl-foot-logo {
  grid-area: logo;
  align-self: start;
  width: fit-content;
  margin-bottom: 24px;
}
.bl-foot-box {
  grid-area: box;
  align-self: start;
  margin-bottom: 32px;
}
.bl-foot-address {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: calc(20/14);
}
.bl-foot-def {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: calc(20/14);
}
.bl-foot-dttl {
  display: flex;
}
.bl-foot-dttl::after {
  content: ":";
}
.bl-foot-publisher {
  display: flex;
  width: 150px;
}
.bl-foot-nav {
  display: flex;
}
.bl-foot-nav-wrapper {
  grid-area: nav-wrapper;
}
.bl-foot-nav-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-weight: 700;
}
.bl-foot-copyright {
  display: flex;
  grid-area: copyright;
  margin-bottom: 7px;
}

.bl-foot-copyright small {
  font-family: Verdana; /* Android */
  font-size: 12px;
  color: #fff;
}

/* ページトップボタン */
.bl-pagetop {
  position: relative;
  width: 1024px;
  height: 0;
  margin: 0 auto;
  text-align: right;
}

.bl-pagetop span {
  position: absolute;
  right: -30px;
  bottom: -72px;
  z-index: 900;
  width: 72px;
  height: 72px;
  transition: var(--transition);
}
@media (hover: hover) {
  .bl-pagetop span:hover {
    opacity: 0.7;
  }
}

.bl-pagetop img {
  cursor: pointer;
}

@media screen and (width <= 750px) {
  .ly-foot {
    padding: 82px 0 0;
    background-image: url("../images/common/footer-bg-sp.webp");
  }
  .bl-foot {
    display: grid;
    grid-template: "logo" "nav-wrapper" "box" "copyright";
    grid-template-rows: auto;
  }
  .bl-foot-logo {
    width: 414px;
    margin-bottom: 40px;
  }
  .bl-foot-box {
    margin-bottom: 16px;
  }
  .bl-foot-address {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: calc(32/22);
  }
  .bl-foot-def {
    margin-bottom: 32px;
    font-size: 22px;
    line-height: calc(32/22);
  }
  .bl-foot-publisher {
    width: 220px;
  }
  .bl-foot-nav-wrapper {
    margin-bottom: 64px;
  }
  .bl-foot-nav-list {
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    grid-auto-flow: column;
  }
  .bl-foot-copyright {
    display: flex;
    margin-bottom: 9px;
  }
  .bl-foot-copyright small {
    font-size: 15px;
    line-height: calc(21/15);
  }
  /* ページトップボタン */
  .bl-pagetop {
    z-index: 90;
    width: 750px;
  }
  .bl-pagetop span {
    right: 30px;
    bottom: 104px;
    width: 100px;
    height: 100px;
  }
}
/* =============================
新着
============================== */
.bl-vertposts {
  border-bottom: 1px solid #bfbfbf;
}

.bl-vertposts > a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 16px 16px 0;
  color: #222;
}

.bl-vertposts:not(:first-of-type) > a {
  padding-top: 16px;
}

.bl-vertposts-header {
  display: flex;
  flex: 0 1 280px;
  gap: 16px;
  align-items: center;
}

.bl-vertposts-date {
  font-size: 14px;
  letter-spacing: 0;
}

.el-catlabel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  max-width: 144px;
  min-height: 28px;
  padding: 0 8px 2px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0;
  background: #ccc;
}

.el-catlabel.all {
  background: #5e5e5e;
}

.el-catlabel.news {
  background: #41b3b2;
}

.el-catlabel.media {
  background: #ac96cf;
}

.el-vertposts-ttl {
  display: box;
  flex: 1;
  overflow: hidden;
  font-size: 17px;
  font-weight: normal;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media screen and (width <= 750px) {
  .bl-vertposts > a {
    gap: 16px;
    padding-bottom: 24px;
  }
  .bl-vertposts:not(:first-of-type) > a {
    padding-top: 24px;
  }
  .bl-vertposts-header {
    flex: 100%;
  }
  .bl-vertposts-date {
    font-size: 22px;
  }
  .el-catlabel {
    min-width: 128px;
    max-width: 480px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 22px;
  }
  .el-vertposts-ttl {
    font-size: 28px;
  }
}
/* =============================
ページナビ
============================== */
/* wp-pagenavi */
.wp-pagenavi {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}

.wp-pagenavi > * {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 32px;
  padding: 0 5px 3px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  border-radius: 5px;
}

.wp-pagenavi a {
  background: #656974;
}

.wp-pagenavi .current {
  background: var(--color-accent02);
}

.wp-pagenavi .extend {
  font-size: 16px;
  color: #545454;
}

@media screen and (width <= 750px) {
  /* wp-pagenavi */
  .wp-pagenavi {
    gap: 24px;
  }
  .wp-pagenavi > * {
    min-width: 45px;
    height: 48px;
    font-size: 28px;
  }
  .wp-pagenavi .extend {
    display: none;
  }
}
/* =======================================================
column
======================================================= */
.c-column-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.c-column-imgwrapper {
  margin-bottom: 8px;
}
.c-column-imgwrapper > img {
  height: 220px;
  object-fit: cover;
}
.c-column .c-cat {
  margin-bottom: 16px;
}
.c-column-date {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: calc(20/14);
}
.c-column-ttl {
  font-size: 17px;
  line-height: calc(26/17);
}

@media screen and (max-width: 750px) {
  .c-column-wrapper {
    grid-template-columns: auto;
    gap: 48px;
  }
  .c-column-link {
    display: grid;
    grid-template: "imgwrapper imgwrapper" "date cat" "ttl ttl";
    grid-template-columns: auto 1fr;
    gap: 24px;
  }
  .c-column-imgwrapper {
    grid-area: imgwrapper;
    margin-bottom: 8px;
  }
  .c-column-imgwrapper > img {
    height: 380px;
  }
  .c-column .bl-cat {
    grid-area: cat;
    margin-bottom: 0;
  }
  .c-column-date {
    grid-area: date;
    margin-bottom: 0;
    font-size: 22px;
  }
  .c-column-ttl {
    grid-area: ttl;
    font-size: 28px;
  }
}
/* =======================================================
cta
======================================================= */
.ly-cta {
  position: relative;
  padding: 128px 0;
  background: url("../images/common/cta-bg.webp") center center/cover no-repeat;
}
.ly-cta::before {
  position: absolute;
  bottom: -1px;
  left: 50%;
  z-index: -1;
  width: 100%;
  height: 50%;
  content: "";
  background: var(--color-contrast03);
  transform: translateX(-50%);
}

.bl-cta-ttl {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(46/32);
  color: var(--color-accent);
  text-align: center;
  letter-spacing: 0.06em;
}
.bl-cta-intro {
  position: relative;
  margin-bottom: 120px;
  font-size: 20px;
  font-weight: 700;
  line-height: calc(61/40);
  text-align: center;
}
.bl-cta-intro::after {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 2px;
  height: 88px;
  content: "";
  background: var(--color-accent);
  transform: translateX(-50%);
  animation: line-top-to-bottom 1.5s forwards infinite;
}
.bl-cta-cont-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  justify-content: space-between;
  max-width: 804px;
  margin: 0 auto;
}
.bl-cta-cont:first-of-type .bl-cont-txt {
  margin-bottom: 24px;
}
.bl-cta-cont:nth-of-type(2) .bl-cont-txt {
  margin: 7px 0 16px;
}
.bl-cta-cont .bl-cont-txt {
  font-weight: 700;
  text-align: center;
}
.bl-cta-cont .bl-cont-tel {
  display: block;
  margin-bottom: 4px;
  font-size: 40px;
  font-weight: 700;
  line-height: calc(58/40);
  color: var(--color-accent);
  text-align: center;
}
.bl-cta-cont .bl-cont-def {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  justify-content: center;
}
.bl-cta-cont .bl-cont-dttl {
  padding: 0 7px 3px 8px;
  font-weight: 700;
  line-height: calc(25/17);
  color: var(--color-white);
  letter-spacing: 0.06em;
  background: var(--color-accent);
}
.bl-cta-cont .bl-cont-ditem {
  font-weight: 700;
  line-height: calc(25/17);
  color: var(--color-accent);
}

@media screen and (max-width: 750px) {
  .ly-cta {
    padding: 92px 0;
    background-image: url("../images/common/cta-bg-sp.webp");
  }
  .bl-cta {
    width: 100%;
  }
  .bl-cta-ttl {
    margin-bottom: 32px;
    font-size: 42px;
    line-height: calc(122/84);
  }
  .bl-cta-intro {
    margin-bottom: 136px;
    font-size: 30px;
    line-height: calc(95/60);
  }
  .bl-cta-intro::after {
    top: calc(100% + 24px);
  }
  .bl-cta-cont-wrapper {
    grid-template-columns: auto;
    gap: 40px;
    justify-content: center;
  }
  .bl-cta-cont .bl-cont-txt {
    display: none;
  }
  .bl-cta-cont .bl-cont-tel {
    margin-bottom: 8px;
    font-size: 80px;
    line-height: calc(116/80);
  }
  .bl-cta-cont .bl-cont-def {
    gap: 16px;
  }
  .bl-cta-cont .bl-cont-dttl {
    padding: 0 8px 3px;
  }
}
/* =======================================================
section
======================================================= */
.c-section {
  padding: 64px 0;
}
.c-section-ttl {
  display: grid;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: calc(46/32);
  text-align: center;
  letter-spacing: 0.06em;
}
.c-section-ttl::after {
  width: 400px;
  height: 22px;
  content: "";
  background: url("../images/common/section-ttl-deco.svg") center center/cover no-repeat;
}
@media screen and (max-width: 750px) {
  .c-section .c-section-ttl {
    font-size: 42px;
  }
}

/* =======================================================
sp-fixed
======================================================= */
.bl-sp-fixed {
  display: none;
}

@media screen and (max-width: 750px) {
  .bl-sp-fixed {
    position: sticky;
    bottom: 0;
    left: 0;
    z-index: 9000;
    display: block;
  }
  .bl-sp-fixed-btn {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 24px 16px 28px;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-accent);
  }
  .bl-sp-fixed-btn::before {
    width: 40px;
    height: 32px;
    content: "";
    background: url("../images/common/icon-mail.svg") center center/cover no-repeat;
    transform: translateY(2px);
  }
}
/* =======================================================
c-products
======================================================= */
.c-products-article {
  position: relative;
}
.c-products-article-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
.c-products-article .c-article-link {
  display: block;
}
.c-products-article .c-article-cat {
  position: absolute;
  top: 2px;
  left: 2px;
}
.c-products-article .c-article-imgwrapper {
  display: grid;
  place-content: center;
  height: 320px;
  margin-bottom: 16px;
  background: var(--color-contrast);
  border: 2px solid var(--color-black);
}
.c-products-article .c-article-imgwrapper > img {
  height: 252px;
  object-fit: cover;
  box-shadow: var(--box-shadow);
}
.c-products-article .c-article-ttl {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.c-products-article .c-article-def {
  display: flex;
}
.c-products-article .c-article-dttl {
  display: flex;
}
.c-products-article .c-article-dttl::after {
  content: "：";
}

@media screen and (max-width: 750px) {
  .c-products-article-wrapper {
    grid-template-columns: auto;
    gap: 40px;
    margin-bottom: 64px;
  }
  .c-products-article .c-article-imgwrapper {
    height: 480px;
    margin-bottom: 24px;
  }
  .c-products-article .c-article-imgwrapper > img {
    height: 378px;
  }
  .c-products-article .c-article-ttl {
    margin-bottom: 12px;
    font-size: 30px;
  }
}
/* =======================================================
c-cat
======================================================= */
.c-cat {
  width: fit-content;
  min-width: 100px;
  padding: 2px 16px 4px;
  font-size: 16px;
  line-height: calc(24/16);
  text-align: center;
}
.c-cat-def {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  padding: 16px 32px;
  margin: 64px 0 56px;
  border: 2px solid var(--color-black);
}
.c-cat-dttl {
  font-size: 18px;
  font-weight: 700;
  line-height: calc(26/18);
}
.c-cat-ditem {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media screen and (max-width: 750px) {
  .c-cat {
    min-width: 150px;
    padding: 3px 24px 6px;
    font-size: 26px;
  }
  .c-cat-def {
    grid-template-columns: auto;
    gap: 24px;
    padding: 24px 40px 32px;
  }
  .c-cat-dttl {
    font-size: 30px;
  }
  .c-cat-ditem {
    gap: 24px;
  }
}
/* =======================================================
c-column-archive
======================================================= */
.c-column-archive-article-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 32px;
}
.c-column-archive-article .c-article-link {
  display: block;
}
.c-column-archive-article .c-article-imgwrapper {
  position: relative;
  margin-bottom: 8px;
}
.c-column-archive-article .c-article-imgwrapper::before {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid var(--color-gray);
}
.c-column-archive-article .c-article-imgwrapper > img {
  height: 220px;
  object-fit: cover;
}
.c-column-archive-article .c-article-cat {
  justify-self: start;
  margin-bottom: 16px;
  border-radius: 8px;
}
.c-column-archive-article .c-article-date {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: calc(20/14);
}
.c-column-archive-article .c-article-ttl {
  font-size: 1em;
  font-weight: 400;
}

@media screen and (max-width: 750px) {
  .c-column-archive-article-wrapper {
    grid-template-columns: auto;
    gap: 48px;
  }
  .c-column-archive-article .c-article-imgwrapper {
    margin-bottom: 32px;
  }
  .c-column-archive-article .c-article-imgwrapper > img {
    height: 380px;
  }
  .c-column-archive-article .c-article-head {
    display: flex;
    flex-direction: row-reverse;
    gap: 24px;
    align-items: center;
    justify-content: start;
    margin-bottom: 24px;
  }
  .c-column-archive-article .c-article-cat {
    margin-bottom: 0;
  }
  .c-column-archive-article .c-article-date {
    margin-bottom: 0;
    font-size: 22px;
    line-height: calc(32/22);
    letter-spacing: 0.06em;
  }
  .c-column-archive-article .c-article-ttl {
    letter-spacing: 0.06em;
  }
}
/* =======================================================
detailsタグ
======================================================= */
details::details-content {
  content-visibility: unset;
  display: block grid;
}
@media (prefers-reduced-motion: no-preference) {
  details::details-content {
    transition-duration: var(--transition-duration);
    transition-property: grid-template-rows;
  }
}
details:not([open])::details-content {
  grid-template-rows: 0fr;
}
details[open]::details-content {
  grid-template-rows: 1fr;
}
details > div {
  overflow: hidden;
}