@charset "UTF-8";
/* CSS Document */
/*
Theme Name: エルシー株式会社
Author: 株式会社ジャンプス

*/
/* 欧文フォント */
.eg {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 日本語フォント */
.jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* 文字寄せ */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

/* ノートパソコン改行 */
@media screen and (max-width: 1250px) {
  .npbr {
    display: block;
  }
}

/* タブレット改行 */
@media screen and (max-width: 950px) {
  .tbbr {
    display: block;
  }
}

/* スマホ改行 */
@media screen and (max-width: 600px) {
  .spbr {
    display: block;
  }
}

/* スマホ非表示 */
@media screen and (max-width: 600px) {
  .spnone {
    display: none;
  }
}

/* 見出し */
/* 段落 */
p {
  padding-bottom: 2em;
}

/* 注釈 */
.note {
  padding-left: 1em;
  text-indent: -1em;
  color: #190b80;
  font-size: 0.85em;
  line-height: 1.25em;
}
.note::before {
  content: "※";
}

/* ノートパソコン以上表示 */
.minnp_only {
  display: none;
}
@media screen and (min-width: 1251px) {
  .minnp_only {
    display: block;
  }
}

/* ノートパソコン表示非表示 */
.np_only {
  display: none;
}
@media screen and (max-width: 1250px) {
  .np_only {
    display: block;
  }
}

/* タブレット表示非表示 */
.tb_only {
  display: none;
}
@media screen and (max-width: 950px) {
  .tb_only {
    display: block;
  }
}

/* スマホ表示非表示 */
.sp_only {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_only {
    display: block;
  }
}

/* 文字小さく */
span.small {
  font-size: 0.5em;
}

/* 画像 */
img {
  vertical-align: bottom;
}
img.img100 {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.imgbox {
  line-height: 0;
}

/* 角丸 */
.rd {
  border-radius: 1em;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

span.rd {
  display: inline-block;
}

/* 円テキスト画像 */
.ct_img {
  width: 10em;
  height: 10em;
  transition: all 0.4s;
}
.ct_img.rtt {
  animation: rtt 8s linear infinite;
}
.ct_img.trtt {
  animation: trtt 8s linear infinite;
}
.ct_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.hidden {
  overflow: hidden;
}

img.pc_only {
  display: block;
}
@media screen and (max-width: 600px) {
  img.pc_only {
    display: none;
  }
}

img.sp_only {
  display: none;
}
@media screen and (max-width: 600px) {
  img.sp_only {
    display: block;
  }
}

/* =======================================================================================================================
　　　　　　　　　SVG
======================================================================================================================= */
/* 読み込み遅延 */
img {
  transition: 1s ease;
  backface-visibility: hidden;
}
img.lazyload {
  opacity: 0;
  filter: alpha(opacity=0);
}
img.lazyloaded {
  opacity: 1;
  filter: alpha(opacity=100);
}

/* 読み込み遅延 */
.lazyload0, .lazyload1, .lazyload2, .lazyload3, .lazyload4 {
  transition: 1s ease;
  backface-visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
}
.lazyload0.lazyloaded, .lazyload1.lazyloaded, .lazyload2.lazyloaded, .lazyload3.lazyloaded, .lazyload4.lazyloaded {
  transition: 1s ease;
  backface-visibility: hidden;
  opacity: 1;
  filter: alpha(opacity=100);
}

.lazyload1 {
  transform: translate(0, 2.5em);
}
.lazyload1.lazyloaded {
  transform: translate(0, 0);
}

.lazyload2 {
  transform: translate(-2.5em, 0);
}
.lazyload2.lazyloaded {
  transform: translate(0, 0);
}

.lazyload3 {
  transform: translate(2.5em, 0);
}
.lazyload3.lazyloaded {
  transform: translate(0, 0);
}

.lazyload4 {
  transform: translate(0, -2.5em);
}
.lazyload4.lazyloaded {
  transform: translate(0, 0);
}

/* トップページ内コンテンツの場合 */
#front-page section .lazyload0.lazyloaded, #front-page section .lazyload1.lazyloaded, #front-page section .lazyload2.lazyloaded, #front-page section .lazyload3.lazyloaded, #front-page section .lazyload4.lazyloaded {
  opacity: 0;
  filter: alpha(opacity=0);
}
#front-page section .lazyload1.lazyloaded {
  transform: translate(0, 2.5em);
}
#front-page section .lazyload2.lazyloaded {
  transform: translate(-2.5em, 0);
}
#front-page section .lazyload3.lazyloaded {
  transform: translate(2.5em, 0);
}
#front-page section .lazyload4.lazyloaded {
  transform: translate(0, -2.5em);
}
#front-page section.on .lazyload0.lazyloaded, #front-page section.on .lazyload1.lazyloaded, #front-page section.on .lazyload2.lazyloaded, #front-page section.on .lazyload3.lazyloaded, #front-page section.on .lazyload4.lazyloaded {
  opacity: 1;
  filter: alpha(opacity=100);
}
#front-page section.on .lazyload1.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload2.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload3.lazyloaded {
  transform: translate(0, 0);
}
#front-page section.on .lazyload4.lazyloaded {
  transform: translate(0, 0);
}
@media screen and (min-width: 1921px) and (max-aspect-ratio: 100/53) {
  #front-page section.onsp .lazyload0.lazyloaded, #front-page section.onsp .lazyload1.lazyloaded, #front-page section.onsp .lazyload2.lazyloaded, #front-page section.onsp .lazyload3.lazyloaded, #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1920px) and (min-width: 1251px) and (max-aspect-ratio: 2/1) {
  #front-page section.onsp .lazyload0.lazyloaded, #front-page section.onsp .lazyload1.lazyloaded, #front-page section.onsp .lazyload2.lazyloaded, #front-page section.onsp .lazyload3.lazyloaded, #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 1250px) and (min-width: 951px) and (max-aspect-ratio: 25/13) {
  #front-page section.onsp .lazyload0.lazyloaded, #front-page section.onsp .lazyload1.lazyloaded, #front-page section.onsp .lazyload2.lazyloaded, #front-page section.onsp .lazyload3.lazyloaded, #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 950px) and (min-width: 601px) and (max-aspect-ratio: 25/37) {
  #front-page section.onsp .lazyload0.lazyloaded, #front-page section.onsp .lazyload1.lazyloaded, #front-page section.onsp .lazyload2.lazyloaded, #front-page section.onsp .lazyload3.lazyloaded, #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 600px) and (max-aspect-ratio: 35/68) {
  #front-page section.onsp .lazyload0.lazyloaded, #front-page section.onsp .lazyload1.lazyloaded, #front-page section.onsp .lazyload2.lazyloaded, #front-page section.onsp .lazyload3.lazyloaded, #front-page section.onsp .lazyload4.lazyloaded {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  #front-page section.onsp .lazyload1.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload2.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload3.lazyloaded {
    transform: translate(0, 0);
  }
  #front-page section.onsp .lazyload4.lazyloaded {
    transform: translate(0, 0);
  }
}

/* リンク */
a {
  text-decoration: none;
  color: #190b80;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
a img {
  transition: 0.3s ease;
  backface-visibility: hidden;
}
/* ボタン */
.btn {
  display: flex;
  align-items: center;
}
.btn a {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: inline-block;
  width: 12em;
  height: 3.5em;
  line-height: 3.5em;
  color: #fff;
  background: #190b80;
  border-radius: 1.75em;
  text-align: center;
}
.btn a:hover {
  translate: 0 0.2em;
}

/* 丸い矢印ボタン */
.c_btn {
  width: 5em;
  height: 5em;
  background: #190b80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
a:hover .c_btn {
  animation: rtt 0.4s linear forwards;
}
.c_btn.csr {
  background: #009944;
}
.c_btn .ya {
  width: 1.5em;
}
.c_btn .ya img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: inherit;
}

/* ================= ピックアップ商品 ============================================================ */
.pickup_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none inside;
  padding-bottom: 4em;
  justify-items: center;
  gap: 2em;
}
@media screen and (max-width: 950px) {
  .pickup_list {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}
@media screen and (max-width: 1250px) and (min-width: 1251px) {
  .pickup_list li {
    font-size: 1.1vw;
  }
}
@media screen and (max-width: 600px) {
  .pickup_list li {
    font-size: 3vw;
  }
}
.pickup_list a {
  /* テキスト */
}
.pickup_list a:hover .imgbox {
  scale: 1.1;
}
.pickup_list a .imgbox {
  width: 17.5em;
  height: 17.5em;
  background: #fff;
  border-radius: 50%;
  position: relative;
  margin-bottom: 1em;
  transition: all 0.4s;
  /* 丸い矢印ボタン */
}
@media screen and (max-width: 1250px) {
  .pickup_list a .imgbox {
    width: 15em;
    height: 15em;
  }
}
@media screen and (max-width: 600px) {
  .pickup_list a .imgbox {
    width: 12.5em;
    height: 12.5em;
  }
}
.pickup_list a .imgbox .p_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.pickup_list a .imgbox .p_img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.pickup_list a .imgbox .c_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.pickup_list a .imgbox .moretxt {
  width: 108%;
  height: 108%;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  animation: rtt 1.6s ease-out infinite;
}
.pickup_list a .imgbox .moretxt img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.pickup_list a .txtbox {
  list-style: none inside;
  padding-left: 2.7em;
}
@media screen and (max-width: 950px) {
  .pickup_list a .txtbox {
    padding-left: 0;
  }
}
.pickup_list a .txtbox li .ttl {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8em;
  padding-right: 0.25em;
}
.pickup_list a .txtbox li .txt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
}
.pickup_list a .txtbox li.partsno .ttl {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
}
.pickup_list a .txtbox li.partsno .txt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2em;
}

/* ================= ニュース一覧 ============================================================ */
.news_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1em;
}
@media screen and (max-width: 950px) {
  .news_list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
  }
}
.news_list li {
  width: 100%;
  list-style: none inside;
  background: #fff;
  border-radius: 1em;
}
@media screen and (max-width: 950px) {
  .news_list li {
    width: 100%;
  }
}
.news_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
  padding: 2.5em 1.2em 2.5em 2.5em;
}
@media screen and (max-width: 1250px) {
  .news_list li a {
    padding: 2em 1.5em;
  }
}
.news_list li a .txtbox {
  width: calc(100% - 6em);
}
.news_list li a .txtbox .newsdate {
  font-size: 1.2em;
  line-height: 1;
  padding-bottom: 0.5em;
}
.news_list li a .txtbox .newsdate .year {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.news_list li a .txtbox .newsdate .day {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.news_list li a .txtbox .newsttl h3 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 0.5em;
}
.news_list li a .txtbox .text {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #535353;
  font-size: 0.8em;
  line-height: 1.2em;
  padding-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* =======================================================================================================================
    アニメーション
======================================================================================================================= */
@keyframes rtt {
  100% {
    rotate: 360deg;
  }
}
@keyframes trtt {
  100% {
    translate: -50% -50%;
    rotate: 360deg;
  }
}
/* 流れる文字1（ループ） */
.ani_txtloop1 {
  display: inline-block;
  text-shadow: var(--offset-x) 0 currentcolor, calc(var(--offset-x) * 2) 0 currentcolor, calc(var(--offset-x) * 3) 0 currentcolor;
  animation: marquee1 30s linear infinite;
  will-change: translate;
}

@keyframes marquee1 {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
/* 流れる文字1（ループ） */
.ani_txtloop2 {
  display: inline-block;
  text-shadow: var(--offset-x) 0 currentcolor, calc(var(--offset-x) * 2) 0 currentcolor, calc(var(--offset-x) * 3) 0 currentcolor;
  animation: marquee2 10s linear infinite;
  will-change: translate;
}

@keyframes marquee2 {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  overflow-x: clip;
}

/* =======================================================================================================================
　　　　　　　　　全体
======================================================================================================================= */
body {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1vw;
  line-height: 2em;
  background: #fff;
  color: #fff;
}
@media screen and (max-width: 1250px) {
  body {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 950px) {
  body {
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  body {
    font-size: 3.5vw;
  }
}

/* =======================================================================================================================
　　　　　　　　　レイアウト
======================================================================================================================= */
.sec {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 10em 0;
}
@media screen and (max-width: 600px) {
  .sec {
    padding: 5em 0;
  }
}

.innerbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 10em;
}
@media screen and (max-width: 1250px) {
  .innerbox {
    padding: 0 5em;
  }
}
@media screen and (max-width: 950px) {
  .innerbox {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .innerbox {
    padding: 0 2em;
  }
}

.innerbox2 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 5em;
}
@media screen and (max-width: 1250px) {
  .innerbox2 {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 950px) {
  .innerbox2 {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .innerbox2 {
    padding: 0 2em;
  }
}

.innerbox3 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 0 5em;
}
@media screen and (max-width: 1250px) {
  .innerbox3 {
    padding: 0 5em;
  }
}
@media screen and (max-width: 950px) {
  .innerbox3 {
    padding: 0 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .innerbox3 {
    padding: 0 2em;
  }
}

#header {
  line-height: 5em;
}

/* =======================================================================================================================
　　　　　　　　　トップページメインカラム
======================================================================================================================= */
body#front-page {
  position: relative;
  /* ================= メイン ============================================================ */
  /* ***************** ファーストビュー **************************** */
  /* ***************** ハンバーガー **************************** */
  /* ***************** サービス **************************** */
  /* ***************** 強み **************************** */
}
body#front-page #firstview {
  width: 100%;
  height: 100vh;
  min-height: 40em;
  position: relative;
}
body#front-page #firstview .box {
  width: 100%;
  height: 100vh;
  min-height: 40em;
  position: absolute;
  inset: 0;
}
body#front-page #firstview .box.flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 600px) {
  body#front-page #firstview .box.flex {
    align-items: flex-end;
    padding-bottom: 12em;
  }
}
body#front-page #firstview .box.svh {
  height: 100svh;
  min-height: 40em;
}
body#front-page #firstview .innerbox2 .maincopy01,
body#front-page #firstview .innerbox2 .maincopy02 {
  font-size: 10em;
  line-height: 1;
  padding-bottom: 0;
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 950px) {
  body#front-page #firstview .innerbox2 .maincopy01,
  body#front-page #firstview .innerbox2 .maincopy02 {
    font-size: 5em;
  }
}
@media screen and (max-width: 600px) {
  body#front-page #firstview .innerbox2 .maincopy01,
  body#front-page #firstview .innerbox2 .maincopy02 {
    font-size: 3.5em;
  }
}
body#front-page #firstview .innerbox2 .maincopy01 .bigfont,
body#front-page #firstview .innerbox2 .maincopy02 .bigfont {
  color: #190b80;
}
body#front-page #firstview .innerbox2 .maincopy01 small,
body#front-page #firstview .innerbox2 .maincopy02 small {
  font-size: 0.75em;
  font-family: elza, sans-serif;
  font-weight: 300;
  font-style: normal;
}
body#front-page #firstview .innerbox2 .maincopy03 {
  font-size: 5em;
  line-height: 1;
  padding-bottom: 0;
  font-family: elza, sans-serif;
  font-weight: 200;
  font-style: normal;
  display: flex;
  opacity: 0.5;
}
@media screen and (max-width: 950px) {
  body#front-page #firstview .innerbox2 .maincopy03 {
    font-size: 3em;
  }
}
@media screen and (max-width: 600px) {
  body#front-page #firstview .innerbox2 .maincopy03 {
    font-size: 2.1em;
  }
}
body#front-page #firstview .under_btn {
  position: absolute;
  bottom: 1.4em;
  right: 1.4em;
  display: flex;
  gap: 1.5em;
  opacity: 0;
  /* Youtube */
  /* LINEUP */
}
@media screen and (max-width: 1250px) {
  body#front-page #firstview .under_btn {
    bottom: 2.5em;
    right: 2em;
  }
}
@media screen and (max-width: 600px) {
  body#front-page #firstview .under_btn {
    bottom: 1em;
    right: 0;
    left: 0;
    padding: 0 1em;
    align-items: center;
    justify-content: space-between;
    gap: 1em;
  }
}
body#front-page #firstview .under_btn .youtube_area {
  width: 16em;
  height: 9em;
  position: relative;
}
@media screen and (max-width: 600px) {
  body#front-page #firstview .under_btn .youtube_area {
    font-size: 3.25vw;
  }
}
body#front-page #firstview .under_btn .youtube_area .y_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(25, 11, 128, 0.5);
  border-radius: 1em;
  position: absolute;
  inset: 0;
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn {
  width: 10.4em;
  height: 3.15em;
  background: #fff;
  border-radius: 3.15em;
  opacity: 0.7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn:hover {
  opacity: 1;
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn:hover img {
  animation: yaimg 1s ease-in-out infinite;
}
@keyframes yaimg {
  0%, 100% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(0.25em, -50%);
  }
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn a span {
  line-height: 3.8em;
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 0.9em;
}
body#front-page #firstview .under_btn .youtube_area .y_bg .y_btn a img {
  width: 0.6em;
  height: 0.7em;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
body#front-page #firstview .under_btn .youtube_area .youtube {
  width: 16em;
  height: 9em;
}
body#front-page #firstview .under_btn .youtube_area .youtube iframe {
  border-radius: 1em;
  -o-object-fit: cover;
     object-fit: cover;
}
body#front-page #firstview .under_btn .lineup_btn {
  position: relative;
  transition: all 0.4s;
}
body#front-page #firstview .under_btn .lineup_btn:hover {
  scale: 1.1;
}
body#front-page #firstview .under_btn .lineup_btn .itembox {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
body#front-page #firstview .under_btn .lineup_btn .itembox .itemimg {
  width: 4.5em;
  height: 8.15em;
  -o-object-fit: contain;
     object-fit: contain;
  padding-bottom: 0.75em;
}
body#front-page #firstview .under_btn .lineup_btn .itembox h2 {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
  color: #190b80;
  line-height: 1;
  padding-bottom: 0.1em;
}
body#front-page #firstview .under_btn .lineup_btn .itembox p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.7em;
  color: #190b80;
  line-height: 1;
}
body#front-page .hm_btn {
  opacity: 0;
}
body#front-page .service {
  width: 100%;
  position: relative;
  padding-top: 0;
  padding-bottom: 20em;
  overflow-x: hidden;
  /* 流れる文字 */
  /* 内容 */
}
body#front-page .service .deco {
  padding: 5em 0;
  overflow: hidden;
  font-size: 1vw;
}
@media screen and (max-width: 950px) {
  body#front-page .service .deco {
    font-size: 1.5vw;
  }
}
body#front-page .service .deco span {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  font-size: 15em;
  white-space: nowrap;
  color: #1066e7;
  mix-blend-mode: multiply;
}
body#front-page .service .innerbox {
  /* テキスト */
  /* サービス一覧 */
}
body#front-page .service .innerbox .sec_header {
  width: 35em;
  padding-bottom: 2em;
}
@media screen and (max-width: 950px) {
  body#front-page .service .innerbox .sec_header {
    width: 100%;
  }
}
body#front-page .service .innerbox .sec_header h2 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4em;
  line-height: 1.5em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 600px) {
  body#front-page .service .innerbox .sec_header h2 {
    font-size: 1.75em;
  }
}
body#front-page .service .innerbox .sec_header p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: justify;
  padding-bottom: 0;
}
body#front-page .service .innerbox .service_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4em;
  list-style: none inside;
}
@media screen and (max-width: 950px) {
  body#front-page .service .innerbox .service_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  body#front-page .service .innerbox .service_list {
    gap: 2em;
  }
}
body#front-page .service .innerbox .service_list li {
  /* イメージ */
  /* テキストエリア */
}
body#front-page .service .innerbox .service_list li a:hover .imgbox {
  scale: 1.05;
}
body#front-page .service .innerbox .service_list li .imgbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 21.5em;
  transition: all 0.4s;
}
body#front-page .service .innerbox .service_list li .imgbox .s_img1 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 21.5em;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
body#front-page .service .innerbox .service_list li .imgbox .s_img2 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 21.5em;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
body#front-page .service .innerbox .service_list li .imgbox .s_img3 {
  position: absolute;
  bottom: 1.5em;
  right: 1.5em;
}
body#front-page .service .innerbox .service_list li .imgbox .s_img3 .ct_img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -3;
}
body#front-page .service .innerbox .service_list li .txtbox h3 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1;
  text-align: center;
  color: #fff;
  padding: 1.5em 0 1em;
}
body#front-page .service .innerbox .service_list li .txtbox p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  font-size: 0.8em;
  color: #fff;
  padding-bottom: 0;
}
body#front-page .strength {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
  /* 背景波 */
  /* 横スクロール削除 */
  /* 流れる文字共通 */
  /* 流れる文字1 */
  /* 流れる文字2 */
  /* ランドリー背景（全体） */
  /* ランドリー中の水 */
  /* ランドリー真ん中のテキスト */
  /* ランドリー背景（全体） */
  /* 詳細1 */
  /* 詳細2 */
}
body#front-page .strength::before {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave1.svg) no-repeat bottom/cover;
  position: absolute;
  top: -17em;
  left: 0;
  z-index: 2;
}
body#front-page .strength .hidden {
  overflow-x: hidden;
}
body#front-page .strength .txtlp {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 1vw;
}
body#front-page .strength .txtlp span {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  font-size: 15em;
  white-space: nowrap;
  color: #190b80;
  opacity: 0.75;
}
body#front-page .strength .txtlp .ltxt {
  position: absolute;
  top: 50%;
  left: 0.8em;
  transform: translateY(-12.5em);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
  font-size: 1vw;
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .txtlp .ltxt {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 950px) {
  body#front-page .strength .txtlp .ltxt {
    font-size: 2vw;
    top: calc(50% - 5em);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 600px) {
  body#front-page .strength .txtlp .ltxt {
    font-size: 3.5vw;
    top: 20%;
    transform: none;
  }
}
body#front-page .strength .txtlp .ltxt h4 {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1em;
  color: #190b80;
  opacity: 0.5;
  padding-bottom: 0em;
}
body#front-page .strength .txtlp .ltxt p {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.8em;
  line-height: 1em;
  color: #190b80;
  opacity: 0.5;
  padding-bottom: 0;
}
body#front-page .strength #txtlp1 {
  /* 文字が中心にきたとき */
}
body#front-page .strength #txtlp1.fix {
  height: 100vh;
  position: fixed;
  inset: 0;
}
body#front-page .strength #txtlp2 {
  height: 100vh;
  position: fixed;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  /* 背景がランドリーになったとき */
}
body#front-page .strength #txtlp2.on {
  -webkit-mask-image: url(/images/door_window1.webp);
          mask-image: url(/images/door_window1.webp);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  z-index: 1000;
}
body#front-page .strength .bgz0,
body#front-page .strength .bgz1,
body#front-page .strength .txtz1,
body#front-page .strength .bgz100 {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
}
body#front-page .strength .bgz0 {
  z-index: 0;
}
body#front-page .strength .bgz0 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body#front-page .strength .bgz1 {
  z-index: 1;
}
body#front-page .strength .bgz1 span {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rtt 2s ease-in-out infinite;
  transition: all 0.4s;
}
body#front-page .strength .bgz1 img {
  width: 42.5em;
  -o-object-fit: contain;
     object-fit: contain;
}
body#front-page .strength .txtz1 {
  background: rgba(16, 102, 231, 0.7);
  z-index: 1;
}
body#front-page .strength .txtz1 .flexbox {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: rtt 4s ease-in-out infinite;
  transition: all 0.4s;
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .txtz1 .flexbox {
    font-size: 1vw;
  }
}
@media screen and (max-width: 950px) {
  body#front-page .strength .txtz1 .flexbox {
    font-size: 7.5px;
  }
}
body#front-page .strength .txtz1 .flexbox h3 {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4em;
  line-height: 1;
  padding-bottom: 0.45em;
}
body#front-page .strength .txtz1 .flexbox p {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2em;
  line-height: 1;
  padding-bottom: 0;
}
body#front-page .strength .bgz100 {
  z-index: 100;
}
body#front-page .strength .bgz100 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body#front-page .strength .box1 {
  width: 100%;
  height: 70em;
  position: relative;
  padding: 5em 0 10em;
  background: #fff;
  overflow-x: hidden;
  /* 内容 */
  /* 画像エリア */
}
body#front-page .strength .box1 .innerbox {
  z-index: 1;
  /* テキスト */
}
body#front-page .strength .box1 .innerbox .sec_header {
  width: 100%;
}
body#front-page .strength .box1 .innerbox .sec_header h2 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4em;
  line-height: 1.5em;
  padding-bottom: 0.5em;
  color: #190b80;
}
@media screen and (max-width: 600px) {
  body#front-page .strength .box1 .innerbox .sec_header h2 {
    font-size: 1.75em;
  }
}
body#front-page .strength .box1 .innerbox .sec_header p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  color: #190b80;
  text-align: justify;
  padding-bottom: 5em;
}
@media screen and (max-width: 600px) {
  body#front-page .strength .box1 .innerbox .sec_header p {
    font-size: 1em;
  }
}
body#front-page .strength .box1 .imgbox {
  width: 55em;
  height: 56.2em;
  position: absolute;
  right: -5em;
  top: 0;
  z-index: 10;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .box1 .imgbox {
    width: 35em;
  }
}
@media screen and (max-width: 600px) {
  body#front-page .strength .box1 .imgbox {
    width: 30em;
  }
}
body#front-page .strength .box1 .imgbox .s_img1,
body#front-page .strength .box1 .imgbox .s_img2,
body#front-page .strength .box1 .imgbox .s_img3 {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 0;
}
body#front-page .strength .box1 .imgbox .s_img1 {
  z-index: -2;
}
body#front-page .strength .box1 .imgbox .s_img2 {
  z-index: 1;
}
body#front-page .strength .box1 .imgbox .s_img3 {
  z-index: -1;
}
body#front-page .strength .box2 {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 50;
}
body#front-page .strength .boxinner {
  width: 50%;
  margin: 0 auto;
  position: relative;
  z-index: 50;
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .boxinner {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  body#front-page .strength .boxinner {
    font-size: 2.5vw;
  }
}
body#front-page .strength .boxinner .textbox {
  width: 100%;
  height: 100vh;
  min-height: 40em;
  position: relative;
  z-index: 10;
  padding-left: 10em;
  /* 3つの強み */
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .boxinner .textbox {
    padding-left: 0;
    padding-right: 0;
  }
}
body#front-page .strength .boxinner .textbox.s_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* １つめの強み */
  /* 2つめの強み */
  /* 3つめの強み */
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text {
    align-items: center;
    font-size: 12px;
  }
}
body#front-page .strength .boxinner .textbox.s_text .head_deco {
  display: inline-block;
  width: 100%;
  text-align: left;
  white-space: nowrap;
  padding-bottom: 1.25em;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text .head_deco {
    text-align: center;
    padding-bottom: 0;
  }
}
body#front-page .strength .boxinner .textbox.s_text .head_deco .txt {
  font-family: elza, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1;
}
body#front-page .strength .boxinner .textbox.s_text .head_deco .no {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 2em;
  padding-bottom: 0;
  padding-left: 0.2em;
}
body#front-page .strength .boxinner .textbox.s_text h3 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.4em;
  line-height: 1;
  padding-bottom: 1.65em;
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .boxinner .textbox.s_text h3 {
    line-height: 1.5em;
  }
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text h3 {
    font-size: 2em;
    text-align: center;
    padding-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  body#front-page .strength .boxinner .textbox.s_text h3 {
    font-size: 1.5em;
  }
}
body#front-page .strength .boxinner .textbox.s_text p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text p {
    text-align: left;
    line-height: 1.5em;
  }
}
@media screen and (max-width: 1250px) {
  body#front-page .strength .boxinner .textbox.s_text .head_deco,
  body#front-page .strength .boxinner .textbox.s_text h3,
  body#front-page .strength .boxinner .textbox.s_text p {
    width: 35%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text .head_deco,
  body#front-page .strength .boxinner .textbox.s_text h3,
  body#front-page .strength .boxinner .textbox.s_text p {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  body#front-page .strength .boxinner .textbox.s_text .head_deco,
  body#front-page .strength .boxinner .textbox.s_text h3,
  body#front-page .strength .boxinner .textbox.s_text p {
    width: 65%;
  }
}
body#front-page .strength .boxinner .textbox.s_text.s_text1 {
  background: #fff;
  position: relative;
  margin-top: 10em;
  /* 背景波 */
}
body#front-page .strength .boxinner .textbox.s_text.s_text1::before {
  content: "";
  width: 100%;
  height: 10em;
  display: block;
  background: url(/images/bg_wave2.svg) no-repeat bottom/cover;
  position: absolute;
  top: -9.5em;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text.s_text1::before {
    height: 12.5em;
  }
}
body#front-page .strength .boxinner .textbox.s_text.s_text1 span {
  color: #190b80;
}
body#front-page .strength .boxinner .textbox.s_text.s_text1 h3 {
  color: #190b80;
}
body#front-page .strength .boxinner .textbox.s_text.s_text1 p {
  color: #000;
}
body#front-page .strength .boxinner .textbox.s_text.s_text2 {
  background: #1cadd7;
  position: relative;
  padding-top: 30em;
  padding-bottom: 30em;
  /* 背景波 */
}
body#front-page .strength .boxinner .textbox.s_text.s_text2::before {
  content: "";
  width: 100%;
  height: 10em;
  display: block;
  background: url(/images/bg_wave3.svg) no-repeat bottom/cover;
  position: absolute;
  top: -0.5em;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text.s_text2::before {
    height: 12.5em;
  }
}
body#front-page .strength .boxinner .textbox.s_text.s_text2 span {
  color: #fff;
}
body#front-page .strength .boxinner .textbox.s_text.s_text2 h3 {
  color: #fff;
}
body#front-page .strength .boxinner .textbox.s_text.s_text2 p {
  color: #fff;
}
body#front-page .strength .boxinner .textbox.s_text.s_text3 {
  background: #190b80;
  position: relative;
  padding-bottom: 50vh;
  height: 150vh;
  /* 背景波 */
}
body#front-page .strength .boxinner .textbox.s_text.s_text3::before {
  content: "";
  width: 100%;
  height: 10em;
  display: block;
  background: url(/images/bg_wave4.svg) no-repeat bottom/cover;
  position: absolute;
  top: -9.5em;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  body#front-page .strength .boxinner .textbox.s_text.s_text3::before {
    height: 12.5em;
  }
}
body#front-page .strength .boxinner .textbox.s_text.s_text3 span {
  color: #fff;
}
body#front-page .strength .boxinner .textbox.s_text.s_text3 h3 {
  color: #fff;
}
body#front-page .strength .boxinner .textbox.s_text.s_text3 p {
  color: #fff;
}

/* ***************** 商品一覧 **************************** */
.pickup .innerbox {
  /* ボタン */
}
.pickup .innerbox .sec_header {
  padding-bottom: 4em;
  text-align: center;
}
.pickup .innerbox .sec_header .eg {
  display: inline-block;
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.5em;
  line-height: 1;
  padding-bottom: 0.25em;
  color: #190b80;
}
.pickup .innerbox .sec_header .jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
  color: #190b80;
}
.pickup .innerbox .btn {
  justify-content: center;
}

/* ***************** NEWS **************************** */
.news {
  padding: 0;
}
.news .innerbox .gridbox {
  display: grid;
  grid-template-columns: 20fr 59fr;
  gap: 1em;
}
@media screen and (max-width: 950px) {
  .news .innerbox .gridbox {
    grid-template-columns: 1fr;
  }
}
.news .innerbox .gridbox .sec_header {
  width: 20em;
  background: #fff;
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 2.5em 0;
}
@media screen and (max-width: 950px) {
  .news .innerbox .gridbox .sec_header {
    width: 100%;
  }
}
.news .innerbox .gridbox .sec_header h2 {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  line-height: 1;
  color: #190b80;
  padding-bottom: 0.5em;
}
.news .innerbox .gridbox .sec_header .btn {
  justify-content: center;
}

/* ***************** パートナー紹介 **************************** */
.partner {
  padding: 1em 0;
}
.partner .bgbox {
  background: #fff;
  border-radius: 1em;
  padding: 5em 0;
}
@media screen and (max-width: 950px) {
  .partner .bgbox {
    padding: 3em 0 2em;
  }
}
@media screen and (max-width: 600px) {
  .partner .bgbox {
    padding: 3em 0;
  }
}
.partner .bgbox .txtbox h3 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #190b80;
  font-size: 3em;
  line-height: 1;
  padding-bottom: 0.75em;
}
@media screen and (max-width: 950px) {
  .partner .bgbox .txtbox h3 {
    padding-bottom: 0.5em;
  }
}
@media screen and (max-width: 600px) {
  .partner .bgbox .txtbox h3 {
    font-size: 1.75em;
    padding-bottom: 0.5em;
  }
}
.partner .bgbox .txtbox span {
  display: block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #190b80;
  font-size: 1.5em;
  line-height: 1;
  padding-bottom: 2.5em;
}
@media screen and (max-width: 950px) {
  .partner .bgbox .txtbox span {
    padding-bottom: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .partner .bgbox .txtbox span {
    font-size: 1em;
    padding-bottom: 1.5em;
  }
}
.partner .bgbox .txtbox p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #000;
  line-height: 2em;
  padding-bottom: 3em;
}
@media screen and (max-width: 950px) {
  .partner .bgbox .txtbox p {
    padding-bottom: 1.5em;
  }
}
.partner .bgbox .imgbox {
  width: 60em;
}
@media screen and (max-width: 950px) {
  .partner .bgbox .imgbox {
    width: 100%;
  }
}
.partner .bgbox .imgbox img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ***************** ショップ情報 **************************** */
.shop {
  padding: 0;
}
.shop .bgbox {
  width: 100%;
  height: 60em;
  background: url(/images/bg_sky.webp) no-repeat center/cover;
  border-radius: 1em;
  position: relative;
}
@media screen and (max-width: 950px) {
  .shop .bgbox {
    height: 77.5em;
  }
}
@media screen and (max-width: 600px) {
  .shop .bgbox {
    height: 62.5em;
  }
}
.shop .bgbox::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url(/images/bg_shop.webp) no-repeat bottom/contain;
  position: absolute;
  bottom: 0;
}
.shop .bgbox .txtbox {
  position: relative;
  z-index: 1;
  padding: 5em 0 2.5em;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .txtbox {
    padding: 3em 0 2.5em;
  }
}
.shop .bgbox .txtbox .sec_header h2 {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 4.5em;
  line-height: 1;
  padding-bottom: 0.25em;
}
@media screen and (max-width: 600px) {
  .shop .bgbox .txtbox .sec_header h2 {
    font-size: 2.5em;
  }
}
.shop .bgbox .txtbox .sec_header p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .shop .bgbox .txtbox .sec_header p {
    font-size: 1em;
  }
}
.shop .bgbox .txtbox .shop_info {
  width: 100%;
  position: absolute;
  top: 5em;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 950px) {
  .shop .bgbox .txtbox .shop_info {
    position: static;
    transform: none;
    padding-top: 2.5em;
  }
}
.shop .bgbox .txtbox .shop_info dl {
  display: flex;
}
@media screen and (max-width: 600px) {
  .shop .bgbox .txtbox .shop_info dl {
    flex-direction: column;
  }
}
.shop .bgbox .txtbox .shop_info dl:not(:last-child) {
  padding-bottom: 1em;
}
.shop .bgbox .txtbox .shop_info dl dt {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 50%;
  text-align: right;
  padding-right: 0.4em;
  line-height: 1em;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .txtbox .shop_info dl dt {
    text-align: left;
    width: 20%;
    line-height: 1;
  }
}
@media screen and (max-width: 600px) {
  .shop .bgbox .txtbox .shop_info dl dt {
    padding-right: 0;
    text-align: left;
    width: 100%;
  }
}
.shop .bgbox .txtbox .shop_info dl dd {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  width: 50%;
  padding-left: 0.6em;
  line-height: 0.6em;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .txtbox .shop_info dl dd {
    width: 80%;
  }
}
@media screen and (max-width: 600px) {
  .shop .bgbox .txtbox .shop_info dl dd {
    width: 100%;
    line-height: 1em;
    padding-left: 0;
  }
}
.shop .bgbox .imgarea {
  display: flex;
  gap: 2%;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .imgarea {
    flex-direction: column;
  }
}
.shop .bgbox .imgarea .imgbox {
  width: 45%;
  height: 18em;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .imgarea .imgbox {
    width: 100%;
    padding-bottom: 2em;
  }
}
@media screen and (max-width: 600px) {
  .shop .bgbox .imgarea .imgbox {
    height: 12.5em;
  }
}
.shop .bgbox .imgarea .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1em;
}
.shop .bgbox .imgarea .mapbox {
  width: 53%;
  height: 18em;
  position: relative;
}
@media screen and (max-width: 950px) {
  .shop .bgbox .imgarea .mapbox {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .shop .bgbox .imgarea .mapbox {
    height: 12.5em;
  }
}
.shop .bgbox .imgarea .mapbox::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: #1066e7;
  border-radius: 1em;
  opacity: 0.6;
  mix-blend-mode: color;
  z-index: 1;
}
.shop .bgbox .imgarea .mapbox iframe {
  width: 100%;
  height: 100%;
  border-radius: 1em;
  filter: saturate(0);
  mix-blend-mode: color;
  position: relative;
}

/* 背景色白 */
.bgw {
  background-color: #fff;
}

@media screen and (max-width: 600px) and (min-aspect-ratio: 1/1) {
  body#front-page {
    width: 100%;
    height: 100vh;
    position: fixed;
    inset: 0;
    z-index: 99999;
  }
  body#front-page::before {
    white-space: pre;
    content: "この端末では表示することができません。\aお手数ですが別端末でご確認ください。";
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.6156862745);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    color: #000;
    z-index: 99999;
  }
}
/* =======================================================================================================================
　　　　　　　　　ヘッダー
======================================================================================================================= */
#header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  height: 5em;
  position: fixed;
  top: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
}
body#front-page #header {
  opacity: 0;
}
#header .innerbox2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* ロゴマーク */
  /* gnav */
}
#header .innerbox2 .logo a {
  display: flex;
  align-items: center;
  /* ロゴ */
  /* 会社名 */
}
#header .innerbox2 .logo a:hover {
  scale: 1.1;
}
#header .innerbox2 .logo a .imgbox {
  width: 1.25em;
}
#header .innerbox2 .logo a .imgbox img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#header .innerbox2 .logo a .comp_name {
  padding-left: 0.25em;
}
#header .innerbox2 .logo a .comp_name .jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.3em;
  line-height: 1;
  padding-bottom: 0.25em;
}
#header .innerbox2 .logo a .comp_name .eg {
  font-family: elza, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 0.7em;
  line-height: 1;
  padding-bottom: 0;
}
#header .innerbox2 .logo a .comp_name .eg .bigfont {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.08em;
}
#header .innerbox2 .gnav ul {
  display: flex;
  list-style: none inside;
}
#header .innerbox2 .gnav ul li:not(.btn, .tel):hover {
  animation: rtt 0.25s linear forwards;
}
#header .innerbox2 .gnav ul li + li {
  margin-left: 2.1em;
}
@media screen and (max-width: 1250px) {
  #header .innerbox2 .gnav ul li + li {
    margin-left: 1.5em;
  }
}
#header .innerbox2 .gnav ul li span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
#header .innerbox2 .gnav ul li.tel {
  display: flex;
  align-items: center;
  transition: scale 0.4s;
}
#header .innerbox2 .gnav ul li.tel:hover {
  scale: 1.1;
}
#header .innerbox2 .gnav ul li.tel a {
  display: flex;
  align-items: center;
  font-size: 1vw;
  /* ロゴ */
  /* 電話番号 */
}
#header .innerbox2 .gnav ul li.tel a .logo {
  display: flex;
  text-align: center;
}
#header .innerbox2 .gnav ul li.tel a .logo img {
  width: 2.6em;
  height: 1.5em;
}
#header .innerbox2 .gnav ul li.tel a span {
  display: block;
  font-family: elza, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
  padding: 0.1em 0 0 0.1em;
}

/* ================= 動画エリア ============================================================ */
.video_area {
  position: fixed;
  top: -1em;
  left: -1em;
  width: calc(100vw + 2em);
  height: calc(100vh + 2em);
  overflow: hidden;
  z-index: -100;
}
.video_area .sp_rtt {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
}
@media screen and (max-width: 600px) {
  .video_area .sp_rtt {
    transform: rotate(90deg);
  }
}
.video_area .video_bg {
  width: calc(100vw + 2em);
  height: calc(100vh + 2em);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 600px) {
  .video_area .video_bg {
    width: calc(100vh + 2em);
    height: calc(100vw + 2em);
  }
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

/* ================= 動画フィルター（サービスエリア） ======================================= */
.filter1 {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(32, 2, 254, 0.3);
  mix-blend-mode: multiply;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

/* ================= 動画フィルター（ラインナップエリア） ==================================== */
.filter2 {
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(97, 191, 217, 0.5);
  filter: hue-rotate(10deg) brightness(1.2);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

/* =======================================================================================================================
　　　　　　　　　スマートフォンナビゲーション
======================================================================================================================= */
@media screen and (max-width: 950px) {
  .gnav {
    display: none;
  }
}
.sp_btn {
  display: none;
}
@media screen and (max-width: 950px) {
  .sp_btn {
    display: block;
  }
}

/* ================= 格納ナビゲーション ============================================================ */
.hm_btn,
.hm_menu_wrap {
  display: none;
}
@media screen and (max-width: 950px) {
  .hm_btn,
  .hm_menu_wrap {
    display: block;
  }
}

.hm_menu_check {
  /* チェックボックスを隠す */
  display: none;
}

/* -------------------------- メニューボタン ------------------------------------------- */
.hm_btn {
  width: 4.9em;
  height: 4.5em;
  cursor: pointer;
  border: transparent solid 1.45em;
  position: fixed;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
}
.hm_btn::before, .hm_btn::after {
  width: 2em;
  height: 0.2em;
  background: #190b80;
  display: block;
  content: "";
  position: absolute;
  transition: background 0.2s linear, box-shadow 0.2s linear, transform 0.2s 0.2s;
}
.hm_btn::before {
  box-shadow: #190b80 0 0.7em 0;
}
.hm_btn::after {
  bottom: 0;
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_btn::before {
  background: rgba(0, 0, 0, 0);
  box-shadow: #190b80 0 0.9em 0;
  transform: rotate(45deg) translate3d(0.5em, -0.2em, 0);
}
.hm_menu_check:checked ~ .hm_btn::after {
  background: #190b80;
  transform: rotate(-45deg) translate3d(0.4em, -0.6em, 0);
}

/* -------------------------- 格納領域 ------------------------------------------- */
.hm_menu_wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.7s;
  box-sizing: border-box;
  overflow: hidden;
  visibility: hidden;
  z-index: 9999;
}
.hm_menu_wrap .hm_inner {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: scroll;
}
.hm_menu_wrap .hm_inner::-webkit-scrollbar {
  width: 4px;
}
.hm_menu_wrap .hm_inner::-webkit-scrollbar-track {
  background-color: #fff;
}
.hm_menu_wrap .hm_inner::-webkit-scrollbar-thumb {
  background-color: #190b80;
  border-radius: 2px;
}
.hm_menu_wrap .hm_inner .menucontent {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  transition: all 1s;
  border: none;
  transform: translateY(100%);
  /* 中身デザイン */
  /* 装飾 */
}
.hm_menu_wrap .hm_inner .menucontent .gnav {
  width: 100%;
  height: 75vh;
  min-height: 40em;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 25vh;
  position: relative;
  z-index: 99999;
  /* 背景波 */
}
.hm_menu_wrap .hm_inner .menucontent .gnav::before {
  content: "";
  width: 100%;
  height: 10em;
  display: block;
  background: url(/images/bg_wave2.svg) no-repeat bottom/cover;
  position: absolute;
  top: -9em;
  left: 0;
  z-index: 99999;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul {
  list-style: none inside;
  text-align: center;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li {
  font-size: 1.5em;
  /* 電話番号エリア */
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li:not(:last-child) {
  margin-bottom: 2em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li.tel {
  display: flex;
  align-items: center;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li.tel a {
  display: flex;
  align-items: center;
  /* ロゴ */
  /* 電話番号 */
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li.tel a .logo {
  display: flex;
  text-align: center;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li.tel a .logo img {
  width: 2.6em;
  height: 1.5em;
}
.hm_menu_wrap .hm_inner .menucontent .gnav ul li.tel a span {
  display: block;
  font-family: elza, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1;
  padding: 0.1em 0 0 0.1em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani {
  position: absolute;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani.top {
  top: 0;
  right: 2.5em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani.down {
  bottom: 0;
  left: 2.5em;
}
.hm_menu_wrap .hm_inner .menucontent .hm_ani img {
  width: 8em;
  height: auto;
}
@media screen and (max-width: 600px) {
  .hm_menu_wrap .hm_inner .menucontent .hm_ani img {
    width: 6em;
  }
}

/* 開閉時のアニメーション */
.hm_menu_check:checked ~ .hm_menu_wrap {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
  background-color: rgba(210, 210, 210, 0.6);
}
.hm_menu_check:checked ~ .hm_menu_wrap .menucontent {
  opacity: 1;
  filter: alpha(opacity=100);
  transform: translateY(0);
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.sp_btn {
  position: fixed;
  top: 0.5em;
  right: 1.5em;
  z-index: 99999;
  background-color: #1066e7;
  border-radius: 5em;
}

/* =======================================================================================================================
　　　　　　　　　フッター
======================================================================================================================= */
#footer {
  padding: 10em 0 5em;
  /* ロゴマーク */
  /* 会社情報 */
  /* ナビゲーション */
  /* コピーライト */
}
#footer .logo {
  padding-bottom: 0.85em;
}
#footer .logo a {
  display: inline-block;
}
#footer .logo a:hover {
  opacity: 0.6;
}
#footer .logo a .flexbox {
  display: flex;
  align-items: center;
  /* ロゴ */
  /* 会社名 */
}
#footer .logo a .flexbox .imgbox {
  font-size: 1vw;
}
@media screen and (max-width: 1250px) {
  #footer .logo a .flexbox .imgbox {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 950px) {
  #footer .logo a .flexbox .imgbox {
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  #footer .logo a .flexbox .imgbox {
    font-size: 2.5vw;
  }
}
#footer .logo a .flexbox .imgbox img {
  width: 2.5em;
  height: 2.5em;
}
#footer .logo a .flexbox .comp_name {
  font-size: 1vw;
  padding-left: 0.45em;
}
@media screen and (max-width: 1250px) {
  #footer .logo a .flexbox .comp_name {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 950px) {
  #footer .logo a .flexbox .comp_name {
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  #footer .logo a .flexbox .comp_name {
    font-size: 2.5vw;
  }
}
#footer .logo a .flexbox .comp_name .jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 0.6em;
  line-height: 1;
  padding-bottom: 0.25em;
}
#footer .logo a .flexbox .comp_name .eg {
  font-family: elza, sans-serif;
  font-weight: 200;
  font-style: normal;
  font-size: 1.4em;
  line-height: 1;
  padding-bottom: 0;
}
#footer .logo a .flexbox .comp_name .eg .bigfont {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.08em;
}
#footer .company_info {
  padding-bottom: 2.5em;
}
#footer .company_info h2 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #190b80;
  font-size: 1em;
  line-height: 1;
  padding-bottom: 0.5em;
}
#footer .company_info p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #190b80;
  font-size: 0.8em;
  line-height: 1;
  padding-bottom: 0;
}
#footer .company_info p:not(:last-child) {
  padding-bottom: 0.5em;
}
#footer .fnav {
  padding-bottom: 4.9em;
}
#footer .fnav .menu {
  list-style: none inside;
}
#footer .fnav .menu li {
  line-height: 1;
  /* サブメニューあり */
  /* サブメニュー */
}
#footer .fnav .menu li:not(:last-child) {
  padding-bottom: 1em;
}
#footer .fnav .menu li.flex {
  display: flex;
}
#footer .fnav .menu li a:hover {
  opacity: 0.6;
}
#footer .fnav .menu li a span {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9em;
}
#footer .fnav .menu li .sub_menu {
  display: flex;
  list-style: none inside;
  padding-left: 1em;
}
#footer .fnav .menu li .sub_menu li {
  padding-bottom: 0;
}
#footer .fnav .menu li .sub_menu li:not(:last-child)::after {
  content: "／";
  font-size: 0.8em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #190b80;
}
#footer .fnav .menu li .sub_menu li a:hover {
  transform: scale(1.1);
}
#footer .fnav .menu li .sub_menu li a span {
  font-size: 0.8em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
}
#footer .copyright {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #190b80;
  font-size: 0.8em;
  line-height: 1;
  padding-bottom: 0;
}

/* =======================================================================================================================
　　　　　　　　　下層ページ（共通）
======================================================================================================================= */
body #page-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  color: #fff;
  padding: 10em 0;
  /* 英語タイトル */
  /* 日本語タイトル */
}
body #page-header .innerbox {
  z-index: 10;
}
body #page-header .eg_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 5em;
  line-height: 1em;
  /* 頭文字の色 */
}
@media screen and (max-width: 600px) {
  body #page-header .eg_ttl {
    font-size: 4em;
  }
}
body #page-header .eg_ttl::first-letter {
  color: #190b80;
}
body #page-header .page_ttl {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25em;
  line-height: 1.25em;
}
@media screen and (max-width: 600px) {
  body #page-header .page_ttl {
    font-size: 1em;
  }
}

#post_archive {
  padding-top: 0;
}

/* =======================================================================================================================
　　　　　　　　　お問い合わせ
======================================================================================================================= */
.contactpage-ctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 見出し */
  /* 段落 */
  /* =============== 電話 ========================================================= */
  /* =============== WEB ========================================================= */
}
.contactpage-ctt .parts-h3 {
  text-align: left;
  padding-bottom: 1.5em;
}
.contactpage-ctt p {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.contactpage-ctt p.contact_info {
  font-size: 1.1em;
}
.contactpage-ctt .contact_tel p.contacttel_tel {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3em;
  line-height: 1em;
  padding-bottom: 0.1em;
  color: #190b80;
}
@media screen and (max-width: 600px) {
  .contactpage-ctt .contact_tel p.contacttel_tel {
    font-size: 2.5em;
  }
}
.contactpage-ctt .contact_tel p.contacttel_tel i {
  font-size: 0.9em;
  margin-right: 0.25em;
}
.contactpage-ctt .contact_tel p.contacttel_time {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3em;
  color: #190b80;
  padding-bottom: 0;
}
@media screen and (max-width: 600px) {
  .contactpage-ctt .contact_tel p.contacttel_time {
    font-size: 1em;
  }
}
.contactpage-ctt .webcontact a {
  color: #1066e7;
  text-decoration: underline;
}

/* =======================================================================================================================
　　　　　　　　　フリーページ（カスタムフィールド）
======================================================================================================================= */
.freepage-ctt {
  padding-top: 0;
  padding-bottom: 0;
}
.freepage-ctt a:hover {
  opacity: 0.7;
}

/* 最大幅800px */
.max800px {
  max-width: 800px;
  margin: 0 auto;
}

/* =============== 背景色 ========================================================= */
.sec_bg1 {
  background: #fff;
  color: #190b80;
  /* 背景波 */
}
.sec_bg1::before {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave1.svg) no-repeat bottom/cover;
  position: absolute;
  top: -17em;
  left: 0;
  z-index: 2;
}

.sec_bg2 {
  background: #e1eeef;
  color: #190b80;
  /* 背景波 */
}
.sec_bg2::before {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave5.svg) no-repeat bottom/cover;
  position: absolute;
  top: -17em;
  left: 0;
  z-index: 2;
}

.sec_bg3 {
  background: #1066e7;
  color: #fff;
  /* 背景波 */
}
.sec_bg3::before {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave6.svg) no-repeat bottom/cover;
  position: absolute;
  top: -17em;
  left: 0;
  z-index: 2;
}

.sec_bg4 {
  background: transparent;
  color: #fff;
}
.sec_bg4::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  background: rgba(16, 102, 231, 0.3);
  mix-blend-mode: multiply;
  z-index: -1;
}

/* =============== 背景余白 ========================================================= */
.sec_bg1,
.sec_bg2,
.sec_bg3 {
  margin: -10em 0 0;
  padding: 5em 0 30em;
}
.sec_bg1:first-child,
.sec_bg2:first-child,
.sec_bg3:first-child {
  padding-top: 5em;
  margin-top: 7.5em;
}
.sec_bg1:last-child,
.sec_bg2:last-child,
.sec_bg3:last-child {
  padding-bottom: 10em;
}
.sec_bg1:has(+ .sec_bg4),
.sec_bg2:has(+ .sec_bg4),
.sec_bg3:has(+ .sec_bg4) {
  padding-bottom: 10em;
}

.sec_bg4 {
  padding-top: 20em;
  padding-bottom: 30em;
}
.sec_bg4:has(+ .sec_bg4) {
  padding-bottom: 10em;
}
.sec_bg4:last-child {
  padding-bottom: 0;
}

.sec_bg1:has(+ .sec_bg1) {
  padding-bottom: 10em;
}
.sec_bg1 + .sec_bg4 {
  /* 背景波 */
}
.sec_bg1 + .sec_bg4::after {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave1.svg) no-repeat bottom/cover;
  position: absolute;
  top: -1em;
  left: 0;
  rotate: 180deg;
  z-index: 2;
}

.sec_bg2:has(+ .sec_bg2) {
  padding-bottom: 10em;
}
.sec_bg2 + .sec_bg4 {
  /* 背景波 */
}
.sec_bg2 + .sec_bg4::after {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave5.svg) no-repeat bottom/cover;
  position: absolute;
  top: -1em;
  left: 0;
  rotate: 180deg;
  z-index: 2;
}

.sec_bg3:has(+ .sec_bg3) {
  padding-bottom: 10em;
}
.sec_bg3 + .sec_bg4 {
  /* 背景波 */
}
.sec_bg3 + .sec_bg4::after {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave6.svg) no-repeat bottom/cover;
  position: absolute;
  top: -1em;
  left: 0;
  rotate: 180deg;
  z-index: 2;
}

/* 同じ背景色のセクションが続いたときに余白をなくす */
.sec_bg1 + .sec_bg1,
.sec_bg2 + .sec_bg2,
.sec_bg3 + .sec_bg3,
.sec_bg4 + .sec_bg4 {
  padding-top: 0 !important;
  margin-top: 0;
}

/* 同じ背景色のセクションが続いたときに上の波をなくす */
.sec_bg1 + .sec_bg1::before,
.sec_bg2 + .sec_bg2::before,
.sec_bg3 + .sec_bg3::before {
  display: none;
}

/* =============== テキスト ========================================================= */
/* ------------ 見出し -------------------------------- */
.parts-h3 {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1em;
  padding-bottom: 3em;
  /* 大きな数字 */
}
.parts-h3 .jpttl {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  display: block;
  font-size: 1.8em;
  line-height: 1.5em;
}
@media screen and (max-width: 950px) {
  .parts-h3 .jpttl {
    font-size: 1.6em;
  }
}
.parts-h3 .lnmb {
  display: block;
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  letter-spacing: 0;
  line-height: 1em;
}
@media screen and (max-width: 950px) {
  .parts-h3 .lnmb {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .parts-h3 .lnmb {
    font-size: 2em;
  }
}
.parts-h3 .lnmb + .jpttl {
  font-size: 1.15em;
  padding-top: 0.5em;
}
@media screen and (max-width: 950px) {
  .parts-h3 .lnmb + .jpttl {
    font-size: 1.25em;
  }
}

.parts-h4 {
  font-size: 1.25em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5em;
  padding-top: 3em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .parts-h4 {
    font-size: 1.15em;
  }
}

/* 左寄せ・幅指定中央配置テキスト */
.centerbox {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .centerbox {
    width: 100%;
  }
}

.max1500px {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 950px) {
  .max1500px {
    width: 100%;
  }
}

/* ------------ 段落 -------------------------------- */
.freepage-ctt a {
  text-decoration: underline;
}
.freepage-ctt .sec p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 2.5em;
  /* 余白小さめ */
  /* 強調 */
  /* 注釈 */
}
.freepage-ctt .sec p.btmmin {
  padding-bottom: 2em;
}
.freepage-ctt .sec p.parts-copy {
  font-size: 2em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .freepage-ctt .sec p.parts-copy {
    font-size: 1.6em;
  }
}
.freepage-ctt .sec p.note {
  font-size: 0.9em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.7em;
  padding-bottom: 2.5em;
  padding-left: 1.2em;
  text-indent: -0.65em;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  color: #190b80;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.freepage-ctt .sec p.note::before {
  display: inline-block;
  content: "※";
  padding-right: 0.2em;
}
.freepage-ctt .sec .imgtxt_txtbox p:last-child {
  padding-bottom: 0;
}

/* やや小さめ強調 */
.strong {
  font-size: 1.2em;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  line-height: 2em;
}

.sec_bg1 .imgbox_txtarea p:not(.parts-copy), .sec_bg2 .imgbox_txtarea p:not(.parts-copy),
.sec_bg1 .imgtxt_txtbox p:not(.parts-copy),
.sec_bg2 .imgtxt_txtbox p:not(.parts-copy) {
  color: #535353;
}

/* =============== ブロック ========================================================= */
.freepage-ctt .sec {
  /* ------------ 背景色つきテキストボックス -------------------------------- */
  /* ------------ Googleマップ ------------------------------------------- */
}
.freepage-ctt .sec .bbox {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5em;
  margin-bottom: 5em;
  background: #190b80;
  color: #fff;
  border-radius: 1em;
}
@media screen and (max-width: 950px) {
  .freepage-ctt .sec .bbox {
    padding: 2em;
  }
}
@media screen and (max-width: 600px) {
  .freepage-ctt .sec .bbox {
    padding: 1.5em;
  }
}
.freepage-ctt .sec .bbox h3, .freepage-ctt .sec .bbox h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .freepage-ctt .sec .bbox h3, .freepage-ctt .sec .bbox h4 {
    font-size: 1.3em;
  }
}
.freepage-ctt .sec .bbox p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 2em;
}
.freepage-ctt .sec .bbox p:last-child {
  padding-bottom: 0;
}
.freepage-ctt .sec .access_map {
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 5em;
}
.freepage-ctt .sec .access_map iframe,
.freepage-ctt .sec .access_map .acf-map {
  width: 100%;
  height: 20em;
}
@media screen and (max-width: 950px) {
  .freepage-ctt .sec .access_map iframe,
  .freepage-ctt .sec .access_map .acf-map {
    height: 15em;
  }
}
@media screen and (max-width: 600px) {
  .freepage-ctt .sec .access_map iframe,
  .freepage-ctt .sec .access_map .acf-map {
    height: 12em;
  }
}
.freepage-ctt .sec .access_map .acf-map img {
  max-width: inherit !important;
}

/* =============== 画像 ========================================================= */
.parts-100img {
  width: 100%;
  position: relative;
  padding-bottom: 5em;
  text-align: center;
}
.parts-100img.center {
  text-align: center;
}
.parts-100img.left {
  text-align: left;
}
.parts-100img.right {
  text-align: right;
}
.parts-100img img {
  max-width: inherit;
  height: auto;
}
@media screen and (max-width: 950px) {
  .parts-100img img {
    width: 100%;
  }
}

/* ------------ 画像＋テキスト -------------------------------- */
.box_imglefttxt,
.box_imgrighttxt {
  width: 100%;
  position: relative;
  overflow: hidden;
  zoom: 1;
  padding-bottom: 5em;
}
.box_imglefttxt .imgtxt_imgbox,
.box_imgrighttxt .imgtxt_imgbox {
  width: 40%;
  position: relative;
  padding-bottom: 1em;
  /* 画像 */
}
@media screen and (max-width: 1250px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 45%;
  }
}
@media screen and (max-width: 950px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    width: 100%;
    padding-bottom: 2.5em;
  }
}
.box_imglefttxt .imgtxt_imgbox img,
.box_imgrighttxt .imgtxt_imgbox img {
  width: 100%;
  height: auto;
}

/* 画像左 -------------------------------- */
.box_imglefttxt .imgtxt_imgbox {
  float: left;
  padding-right: 3%;
}

/* 画像右 -------------------------------- */
.box_imgrighttxt .imgtxt_imgbox {
  float: right;
  padding-left: 3%;
}

@media screen and (max-width: 600px) {
  .box_imglefttxt .imgtxt_imgbox,
  .box_imgrighttxt .imgtxt_imgbox {
    float: none;
    padding-right: 0;
    padding-left: 0;
  }
}

/* テキスト -------------------------------- */
/* 見出し */
.imgtxt_txtbox h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.75em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .imgtxt_txtbox h4 {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 600px) {
  .imgtxt_txtbox h4 {
    font-size: 1.5em;
    padding-bottom: 0.67em;
  }
}

/* ------------ 2～6つ並び画像テキストボックス -------------------------------- */
/* テキスト */
.imgbox_txtarea {
  display: block;
  width: 100%;
  z-index: 1;
  position: relative;
  box-sizing: border-box;
}
.imgbox_txtarea h3,
.imgbox_txtarea h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.2em;
  line-height: 1.5em;
  padding-top: 0.25em;
  margin-bottom: 0.5em;
}
.imgbox_txtarea p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-bottom: 0;
  line-height: 1.5em;
}

/* 横並び画像テキストボックス共通設定 -------------------------------- */
.img2box,
.img3txtbox,
.img4txtbox,
.img5txtbox,
.img6txtbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-bottom: 5em;
  /* リスト */
}
.img2box ul,
.img3txtbox ul,
.img4txtbox ul,
.img5txtbox ul,
.img6txtbox ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.img2box ul li,
.img3txtbox ul li,
.img4txtbox ul li,
.img5txtbox ul li,
.img6txtbox ul li {
  width: auto;
  position: relative;
  box-sizing: border-box;
  margin-top: 2em;
  /* 画像 */
}
@media screen and (max-width: 950px) {
  .img2box ul li,
  .img3txtbox ul li,
  .img4txtbox ul li,
  .img5txtbox ul li,
  .img6txtbox ul li {
    margin-top: 3em;
  }
}
.img2box ul li img,
.img3txtbox ul li img,
.img4txtbox ul li img,
.img5txtbox ul li img,
.img6txtbox ul li img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

/* 2つ並び画像テキストボックス -------------------------------- */
.img2box {
  /* リスト */
}
@media screen and (min-width: 951px) {
  .img2box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media screen and (max-width: 950px) {
  .img2box ul:has(.youtube_box) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
.img2box ul li {
  width: 47%;
}
@media screen and (max-width: 600px) {
  .img2box ul li:has(.youtube_box) {
    width: 100%;
  }
}
.img2box.imghbox ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 600px) {
  .img2box.imghbox ul li {
    width: 47%;
  }
}

/* 3つ並び画像テキストボックス -------------------------------- */
.img3txtbox {
  /* リスト */
}
.img3txtbox ul li {
  width: 31%;
  margin-right: 3.5%;
  margin-top: 3em;
}
@media screen and (min-width: 951px) {
  .img3txtbox ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img3txtbox ul li:has(.youtube_box) {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img3txtbox.imghbox ul li {
    width: 31%;
    margin-right: 3.5%;
  }
  .img3txtbox.imghbox ul li:nth-child(3n) {
    margin-right: 0;
  }
}

/* 4つ並び画像テキストボックス -------------------------------- */
.img4txtbox {
  /* リスト */
}
.img4txtbox ul li {
  width: 23.5%;
  margin-right: 2%;
}
@media screen and (min-width: 951px) {
  .img4txtbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1250px) and (min-width: 601px) {
  .img4txtbox.imghbox ul li {
    width: 23.5%;
  }
  .img4txtbox.imghbox ul li:nth-child(2n) {
    margin-right: 2%;
  }
  .img4txtbox.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .img4txtbox.imghbox ul li {
    width: 23.5%;
  }
  .img4txtbox.imghbox ul li:nth-child(4n) {
    margin-right: 0;
  }
}

/* 5つ並び画像テキストボックス -------------------------------- */
.img5txtbox {
  /* リスト */
}
.img5txtbox ul li {
  width: 18.4%;
  margin-right: 2%;
}
@media screen and (min-width: 951px) {
  .img5txtbox ul li:nth-child(5n) {
    margin-right: 0;
  }
}

/* 6つ並び画像テキストボックス -------------------------------- */
.img6txtbox {
  /* リスト */
}
.img6txtbox ul li {
  width: 15%;
  margin-right: 2%;
}
@media screen and (min-width: 951px) {
  .img6txtbox ul li:nth-child(6n) {
    margin-right: 0;
  }
}

/* タブレットの時 -------------------------------- */
@media screen and (max-width: 950px) {
  /* 1つ並び */
  .img1txt_tb {
    /* リスト */
  }
  .img1txt_tb ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .img2txt_tb {
    /* リスト */
  }
  .img2txt_tb ul li {
    margin-right: 2%;
  }
  /* 3つ並び */
  /* 4つ並び */
  /* 5つ並び */
  /* 6つ並び */
}
@media screen and (max-width: 950px) and (min-width: 601px) {
  .img2txt_tb ul li {
    width: 49%;
  }
  .img2txt_tb ul li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img3txt_tb {
    /* リスト */
  }
  .img3txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 950px) and (min-width: 601px) {
  .img3txt_tb ul li {
    width: 32%;
  }
  .img3txt_tb ul li:nth-child(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img4txt_tb {
    /* リスト */
  }
  .img4txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 950px) and (min-width: 601px) {
  .img4txt_tb ul li {
    width: 23.5%;
  }
  .img4txt_tb ul li:nth-child(4n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img5txt_tb {
    /* リスト */
  }
  .img5txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 950px) and (min-width: 601px) {
  .img5txt_tb ul li {
    width: 18.4%;
  }
  .img5txt_tb ul li:nth-child(5n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 950px) {
  .img6txt_tb {
    /* リスト */
  }
  .img6txt_tb ul li {
    margin-right: 2%;
  }
}
@media screen and (max-width: 950px) and (min-width: 601px) {
  .img6txt_tb ul li {
    width: 15%;
  }
  .img6txt_tb ul li:nth-child(6n) {
    margin-right: 0;
  }
}
/* スマートフォンの時 -------------------------------- */
@media screen and (max-width: 600px) {
  /* 1つ並び */
  .img1txt_sp {
    /* リスト */
  }
  .img1txt_sp ul li {
    width: 100%;
    margin-right: 0;
  }
  /* 2つ並び */
  .img2txt_sp {
    /* リスト */
  }
  .img2txt_sp ul li {
    margin-right: 2%;
    width: 49%;
  }
  .img2txt_sp ul li:nth-child(2n) {
    margin-right: 0;
  }
  /* 3つ並び */
  .img3txt_sp {
    /* リスト */
  }
  .img3txt_sp ul li {
    margin-right: 2%;
    width: 32%;
  }
  .img3txt_sp ul li:nth-child(3n) {
    margin-right: 0;
  }
  /* 4つ並び */
  .img4txt_sp {
    /* リスト */
  }
  .img4txt_sp ul li {
    margin-right: 2%;
    width: 23.5%;
  }
  .img4txt_sp ul li:nth-child(4n) {
    margin-right: 0;
  }
  /* 5つ並び */
  .img5txt_sp {
    /* リスト */
  }
  .img5txt_sp ul li {
    margin-right: 2%;
    width: 18.4%;
  }
  .img5txt_sp ul li:nth-child(5n) {
    margin-right: 0;
  }
  /* 6つ並び */
  .img6txt_sp {
    /* リスト */
  }
  .img6txt_sp ul li {
    margin-right: 2%;
    width: 15%;
  }
  .img6txt_sp ul li:nth-child(6n) {
    margin-right: 0;
  }
}
/* =============== リスト ========================================================= */
/* ノーマルリストマークつき -------------------------------- */
.no_list {
  width: 100%;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  position: relative;
  background: #190b80;
  color: #fff;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .no_list {
  background: #fff;
  color: #190b80;
}
@media screen and (max-width: 1250px) {
  .no_list {
    padding: 3em;
  }
}
@media screen and (max-width: 950px) {
  .no_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .no_list {
    padding: 1.5em;
  }
}
.no_list h3, .no_list h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .no_list h3, .no_list h4 {
    font-size: 1.3em;
  }
}
.no_list ul {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding-left: 1.5em;
}
.no_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-bottom: 1.5em;
}
.no_list ul li:last-child {
  padding-bottom: 0;
}

/* チェックボックスマークつき -------------------------------- */
.check_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  background: #190b80;
  color: #fff;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .check_list {
  background: #fff;
  color: #190b80;
}
@media screen and (max-width: 1250px) {
  .check_list {
    padding: 3em;
  }
}
@media screen and (max-width: 950px) {
  .check_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .check_list {
    padding: 1.5em;
  }
}
.check_list h3, .check_list h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .check_list h3, .check_list h4 {
    font-size: 1.3em;
  }
}
.check_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.check_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-bottom: 1.5em;
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.check_list ul li::before {
  display: inline-block;
  padding-left: 1em;
  padding-right: 0.2em;
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  color: #fff;
}
.check_list ul li:last-child {
  padding-bottom: 0;
}

/* 番号つき -------------------------------- */
.order_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em;
  margin: 0 auto;
  margin-bottom: 2.5em;
  position: relative;
  background: #190b80;
  color: #fff;
  border-radius: 1em;
  /* 見出し */
  /* リスト */
}
.sec_bg2 .order_list {
  background: #fff;
  color: #190b80;
}
@media screen and (max-width: 1250px) {
  .order_list {
    padding: 3em;
  }
}
@media screen and (max-width: 950px) {
  .order_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .order_list {
    padding: 1.5em;
  }
}
.order_list h3, .order_list h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .order_list h3, .order_list h4 {
    font-size: 1.3em;
  }
}
.order_list ol {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  counter-reset: number;
}
.order_list ol li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-size: 1em;
  line-height: 1.7em;
  padding-left: 2em;
  padding-bottom: 1em;
}
.order_list ol li::before {
  position: relative;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
}
.order_list ol li:nth-child(n+10) {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.order_list ol li:last-child {
  padding-bottom: 0;
}

/* 表型 -------------------------------- */
.table_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  /* 見出し */
  /* リスト */
}
.table_list h3, .table_list h4 {
  display: inline-block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .table_list h3, .table_list h4 {
    font-size: 1.3em;
  }
}
.table_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  text-align: left;
}
.table_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  padding: 0.5em;
  border-radius: 1em;
  background: #190b80;
  margin-bottom: 0.5em;
}
.sec_bg2 .table_list ul li {
  background: #fff;
  color: #190b80;
}
.table_list ul li:last-child {
  margin-bottom: 0;
}
.table_list ul li .tablelist_th,
.table_list ul li .tablelist_td {
  color: #fff;
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  width: auto;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  .table_list ul li .tablelist_th,
  .table_list ul li .tablelist_td {
    display: block;
    padding: 1em;
  }
}
.sec_bg2 .table_list ul li .tablelist_th,
.sec_bg2 .table_list ul li .tablelist_td {
  background: #fff;
}
.table_list ul li .tablelist_th {
  width: 30%;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  border-right: #fff dashed 0.15em;
}
.sec_bg2 .table_list ul li .tablelist_th {
  color: #190b80;
  border-right: #e1eeef dashed 0.15em;
}
@media screen and (max-width: 950px) {
  .table_list ul li .tablelist_th {
    width: 100%;
    border-right: none;
    border-bottom: #fff dashed 0.15em;
  }
}
.table_list ul li .tablelist_td {
  width: 70%;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
.sec_bg2 .table_list ul li .tablelist_td {
  color: #535353;
}
.table_list ul li .tablelist_td strong {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media screen and (max-width: 950px) {
  .table_list ul li .tablelist_td {
    width: 100%;
  }
}
.table_list ul li:last-child {
  border-bottom: none;
}

/* 注釈マークつき -------------------------------- */
.note_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  padding: 2.5em;
  background: #190b80;
  color: #fff;
  border-radius: 1em;
  opacity: 0.7;
  filter: alpha(opacity=70);
  /* 見出し */
  /* リスト */
}
@media screen and (max-width: 1250px) {
  .note_list {
    padding: 3em;
  }
}
@media screen and (max-width: 950px) {
  .note_list {
    padding: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  .note_list {
    padding: 1.5em;
  }
}
.note_list h3, .note_list h4 {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 1em;
}
@media screen and (max-width: 950px) {
  .note_list h3, .note_list h4 {
    font-size: 1.3em;
  }
}
.note_list ul {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
}
.note_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 0.9em;
  line-height: 1.7em;
  text-indent: -1.2em;
  padding-left: 1.2em;
  padding-bottom: 1.5em;
}
.note_list ul li::before {
  display: inline-block;
  padding-left: 1em;
  padding-right: 0.2em;
  content: "※";
}
.note_list ul li:last-child {
  padding-bottom: 0;
}

/* タイムライン -------------------------------- */
.time_list {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 2.5em;
  /* 見出し */
  /* リスト */
}
.time_list h3, .time_list h4 {
  display: inline-block;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 0.5em;
  color: #190b80;
}
@media screen and (max-width: 950px) {
  .time_list h3, .time_list h4 {
    font-size: 1.3em;
  }
}
.time_list ul {
  list-style: none inside;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  text-align: left;
  /* 最後の点線 */
}
.time_list ul li {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  /* 縦線 */
}
.time_list ul li::before, .time_list ul li::after {
  content: "";
  display: block;
}
.time_list ul li::before {
  position: absolute;
  top: 0;
  left: 10em;
  right: auto;
  bottom: 0;
  width: 1px;
  margin: auto;
  border-right: #190b80 solid 0.25em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.time_list ul li:first-child::before {
  top: 2em;
}
.time_list ul li:last-child::before {
  height: 2em;
  bottom: auto;
}
.time_list ul li .time_time,
.time_list ul li .time_ctt {
  padding: 1.5em;
  font-size: 1em;
  line-height: 1.5em;
  width: auto;
  position: relative;
  box-sizing: border-box;
}
.time_list ul li .time_time {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  padding-left: 0;
  width: 10em;
  text-align: right;
  color: #190b80;
}
.time_list ul li .time_ctt {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  padding-right: 0;
  flex: 1;
  /* 丸 */
}
.time_list ul li .time_ctt strong {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
.time_list ul li .time_ctt::before {
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  border-radius: 50%;
  background: #190b80;
  position: absolute;
  top: 1.9em;
  left: -0.2em;
  right: auto;
  bottom: auto;
  z-index: 2;
}
.time_list ul.on li:last-child::after {
  content: "";
  display: block;
  width: 1px;
  position: absolute;
  top: 2em;
  left: 10em;
  right: auto;
  bottom: 0;
  margin: auto;
  border-right: #190b80 dotted 0.25em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* =============== Youtube動画 ========================================================= */
.videobox .imgtxt_imgbox {
  width: 60%;
}
@media screen and (max-width: 600px) {
  .videobox .imgtxt_imgbox {
    width: 100%;
  }
}

.youtube_box {
  width: 100%;
}
.youtube_box span {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube_box span iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.img2box .youtube_box,
.img3txtbox .youtube_box {
  padding-bottom: 1.5em;
}

/* =============== 余白ゼロ ========================================================= */
.freepage-ctt .sec .innerbox p:last-child,
.freepage-ctt .sec .innerbox p.parts-copy:last-child,
.freepage-ctt .sec .innerbox p.note:last-child,
.freepage-ctt .sec .innerbox .parts-100img:last-child,
.freepage-ctt .sec .innerbox .box_imglefttxt:last-child,
.freepage-ctt .sec .innerbox .box_imgrighttxt:last-child,
.freepage-ctt .sec .innerbox .img2box:last-child,
.freepage-ctt .sec .innerbox .img3txtbox:last-child,
.freepage-ctt .sec .innerbox .img4txtbox:last-child {
  padding-bottom: 0;
}
.freepage-ctt .sec .innerbox .bbox:last-child,
.freepage-ctt .sec .innerbox .no_list:last-child,
.freepage-ctt .sec .innerbox .check_list:last-child,
.freepage-ctt .sec .innerbox .order_list:last-child,
.freepage-ctt .sec .innerbox .table_list:last-child,
.freepage-ctt .sec .innerbox .note_list:last-child,
.freepage-ctt .sec .innerbox .access_map:last-child {
  margin-bottom: 0;
}

.img2box img:last-child,
.img3txtbox img:last-child,
.img4txtbox img:last-child {
  margin-bottom: 0;
}
.img2box a img:last-child,
.img3txtbox a img:last-child,
.img4txtbox a img:last-child {
  margin-bottom: 1em;
}
.img2box a:last-child img,
.img3txtbox a:last-child img,
.img4txtbox a:last-child img {
  margin-bottom: 0;
}
.img2box a:last-child img:last-child,
.img3txtbox a:last-child img:last-child,
.img4txtbox a:last-child img:last-child {
  margin-bottom: 0;
}

li .youtube_box:last-child {
  margin-bottom: 0;
}

.imgtxt_imgbox .youtube_box {
  margin-bottom: 0;
}

/* ===========================================================================================================
　　　　　　　　　新着記事
=========================================================================================================== */
/* ページナビゲーション（共通） */
.pager {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 2.5em;
}
@media screen and (max-width: 950px) {
  .pager {
    padding-top: 3em;
  }
}
.pager a {
  text-decoration: none;
}
.pager p {
  padding-bottom: 0;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
.pager .no-link {
  color: #000;
  color: #190b80;
  opacity: 0.75;
  filter: alpha(opacity=75);
}
.pager .first,
.pager .last {
  transform: scale(0.6);
  transform-origin: 50% 50%;
}
.pager .prev,
.pager .next {
  transform: scale(0.7);
  transform-origin: 50% 50%;
}
.pager .nth-box {
  font-family: elza, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2em;
}
.pager .nth-box .current {
  font-size: 1.2em;
  display: inline-block;
  color: #535353;
  color: #190b80;
  padding: 0 0.5em;
}
.pager .nth-box .tenten {
  color: #000;
}
.pager .nth-box a {
  display: inline-block;
  padding: 0 0.5em;
}

/*********************************** 記事パーツ共通 ***********************************/
#post_archive .innerbox,
#footer-post .innerbox {
  /*見出し*/
  /*ボタン*/
}
#post_archive .innerbox .ttlbox,
#footer-post .innerbox .ttlbox {
  text-align: center;
}
#post_archive .innerbox .btn,
#footer-post .innerbox .btn {
  margin: 0;
}

/* ********* 最新記事の背景・余白 ********* */
#footer-post {
  background-color: #e1eeef;
  margin-top: 10em;
  /* 背景波 */
  /* 見出し */
  /* 記事一覧 */
}
#footer-post::before {
  content: "";
  width: 100%;
  height: 17.5em;
  display: block;
  background: url(/images/bg_wave5.svg) no-repeat bottom/cover;
  position: absolute;
  top: -17em;
  left: 0;
  z-index: 2;
}
#footer-post .pf_ttl {
  line-height: 1em;
  padding-bottom: 1em;
  color: #190b80;
}
@media screen and (max-width: 600px) {
  #footer-post .pf_ttl {
    font-size: 1.5em;
  }
}
#footer-post .news_list {
  margin-bottom: 0;
}

/* ********* 最新記事の配置（記事一覧のとき） ********* */
#footer-post .innerbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#footer-post .innerbox .post_sec {
  width: auto;
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 15em);
  padding-right: 2.5em;
  border-right: #190b80 solid 0.15em;
}
@media screen and (max-width: 950px) {
  #footer-post .innerbox .post_sec {
    width: 100%;
    padding-right: 0;
    padding-bottom: 2.5em;
    margin-bottom: 2.5em;
    border-right: none;
    border-bottom: #190b80 solid 0.15em;
  }
}
#footer-post .innerbox .archive_sec {
  width: 15em;
  position: relative;
  box-sizing: border-box;
  padding-left: 2.5em;
  /* 最新年月 ------------------------------------------- */
  /* セレクトボックス ------------------------------------------- */
}
@media screen and (max-width: 950px) {
  #footer-post .innerbox .archive_sec {
    width: 100%;
    padding-left: 0;
  }
}
#footer-post .innerbox .archive_sec .m_list {
  list-style: none inside;
  line-height: 1em;
}
#footer-post .innerbox .archive_sec .m_list li {
  padding-bottom: 1em;
}
#footer-post .innerbox .archive_sec select {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  padding: 1em;
  margin-bottom: 1em;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  background-color: #fff;
}

/* ================= 投稿ページ（共通） ============================================================ */
#newspost,
#postlist {
  /* -------------------------- 投稿記事ヘッダー ------------------------------------------- */
  /* -------------------------- ナビゲーション ------------------------------------------- */
  /* フリーパーツの最後のセクションが同じ背景色の時 ------------------------------------------- */
}
#newspost #page-header,
#postlist #page-header {
  padding-bottom: 5em;
  /* 年月 */
  /*ボタン*/
}
#newspost #page-header .page_ttl .eg,
#postlist #page-header .page_ttl .eg {
  color: #190b80;
  padding-left: 0.5em;
}
#newspost #page-header .page_ttl .eg .year,
#postlist #page-header .page_ttl .eg .year {
  font-family: elza, sans-serif;
  font-weight: 600;
  font-style: normal;
}
#newspost #page-header .page_ttl .eg .year::after,
#postlist #page-header .page_ttl .eg .year::after {
  content: ".";
}
#newspost #page-header .page_ttl .eg .month,
#postlist #page-header .page_ttl .eg .month {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
}
#newspost #page-header .btn,
#postlist #page-header .btn {
  /* ポジション */
  position: absolute;
  top: auto;
  left: auto;
  right: 10em;
  bottom: 0;
}
@media screen and (max-width: 1250px) {
  #newspost #page-header .btn,
  #postlist #page-header .btn {
    right: 5em;
  }
}
@media screen and (max-width: 950px) {
  #newspost #page-header .btn,
  #postlist #page-header .btn {
    right: 2.5em;
  }
}
@media screen and (max-width: 600px) {
  #newspost #page-header .btn,
  #postlist #page-header .btn {
    top: auto;
    right: 1.5em;
    bottom: -2em;
  }
}
@media screen and (max-width: 600px) {
  #newspost #page-header .btn a,
  #postlist #page-header .btn a {
    padding-left: 1.25em;
    padding-right: 1.25em;
  }
}
#newspost #entry-header,
#postlist #entry-header {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1.5em 0;
  color: #fff;
}
#newspost #entry-header .innerbox,
#postlist #entry-header .innerbox {
  /* 日付 */
  /* カテゴリ */
  /* 記事タイトル */
}
#newspost #entry-header .innerbox .date,
#postlist #entry-header .innerbox .date {
  font-family: elza, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.5em;
  line-height: 1em;
  text-align: right;
  padding-bottom: 0.5em;
  color: #190b80;
}
@media screen and (max-width: 950px) {
  #newspost #entry-header .innerbox .date,
  #postlist #entry-header .innerbox .date {
    font-size: 1.25em;
  }
}
#newspost #entry-header .innerbox .date .year,
#postlist #entry-header .innerbox .date .year {
  padding-right: 0.25em;
}
#newspost #entry-header .innerbox .date .md,
#postlist #entry-header .innerbox .date .md {
  font-size: 2em;
}
@media screen and (max-width: 600px) {
  #newspost #entry-header .innerbox .date .md,
  #postlist #entry-header .innerbox .date .md {
    font-size: 1.6em;
  }
}
#newspost #entry-header .innerbox .pu_cate,
#postlist #entry-header .innerbox .pu_cate {
  line-height: 1.25em;
  color: #190b80;
  text-align: right;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 950px) {
  #newspost #entry-header .innerbox .pu_cate,
  #postlist #entry-header .innerbox .pu_cate {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 600px) {
  #newspost #entry-header .innerbox .pu_cate,
  #postlist #entry-header .innerbox .pu_cate {
    font-size: 0.7em;
  }
}
#newspost #entry-header .innerbox .pu_cate .jp,
#postlist #entry-header .innerbox .pu_cate .jp {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.8em;
}
#newspost #entry-header .innerbox .entry_ttl,
#postlist #entry-header .innerbox .entry_ttl {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.8em;
  line-height: 1.5em;
  padding-top: 0.5em;
  border-top: #190b80 solid 0.1em;
  word-break: break-all;
}
@media screen and (max-width: 950px) {
  #newspost #entry-header .innerbox .entry_ttl,
  #postlist #entry-header .innerbox .entry_ttl {
    font-size: 1.4em;
  }
}
#newspost .nav_sec,
#postlist .nav_sec {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 2.5em 0;
}
#newspost .nav_sec .innerbox ul.post_nav,
#postlist .nav_sec .innerbox ul.post_nav {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  list-style: none inside;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
#newspost .nav_sec .innerbox ul.post_nav li,
#postlist .nav_sec .innerbox ul.post_nav li {
  line-height: 1em;
  max-width: 45%;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  color: #1066e7;
  transition: 0.3s ease;
  backface-visibility: hidden;
}
#newspost .nav_sec .innerbox ul.post_nav li:hover,
#postlist .nav_sec .innerbox ul.post_nav li:hover {
  color: #190b80;
}
#newspost .nav_sec .innerbox ul.post_nav li a,
#postlist .nav_sec .innerbox ul.post_nav li a {
  flex: 1;
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis; /* Opera9,10対応 */
  color: #1066e7;
}
@media screen and (max-width: 600px) {
  #newspost .nav_sec .innerbox ul.post_nav li a,
  #postlist .nav_sec .innerbox ul.post_nav li a {
    font-size: 0.8em;
  }
}
#newspost .nav_sec .innerbox ul.post_nav li a:hover,
#postlist .nav_sec .innerbox ul.post_nav li a:hover {
  color: #190b80;
}
#newspost .nav_sec .innerbox ul.post_nav li.prev:hover,
#postlist .nav_sec .innerbox ul.post_nav li.prev:hover {
  transform: translate(-0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.prev a,
#postlist .nav_sec .innerbox ul.post_nav li.prev a {
  padding-left: 0.25em;
}
#newspost .nav_sec .innerbox ul.post_nav li.next,
#postlist .nav_sec .innerbox ul.post_nav li.next {
  justify-content: flex-end;
}
#newspost .nav_sec .innerbox ul.post_nav li.next:hover,
#postlist .nav_sec .innerbox ul.post_nav li.next:hover {
  transform: translate(0.2em, 0);
}
#newspost .nav_sec .innerbox ul.post_nav li.next a,
#postlist .nav_sec .innerbox ul.post_nav li.next a {
  padding-right: 0.25em;
}
#newspost article:has(.freepage-ctt .sec_bg1:last-child) + .nav_sec,
#postlist article:has(.freepage-ctt .sec_bg1:last-child) + .nav_sec {
  padding-top: 0;
}

/* カテゴリー絞り込み ------------------------------------------- */
.cate_box {
  padding-bottom: 5em;
}
.cate_box .cate_list {
  list-style: none inside;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
.cate_box .cate_list li a {
  display: block;
  background: #fff;
  padding: 1em 2em;
  border-radius: 2em;
}
.cate_box .cate_list li a.target {
  background: #190b80;
  color: #fff;
}

/* ピックアップ商品ページ ------------------------------------------- */
#newspost #pickup_info .info_box {
  display: flex;
  gap: 2.5em;
}
@media screen and (max-width: 950px) {
  #newspost #pickup_info .info_box {
    display: block;
  }
}
#newspost #pickup_info .info_box .imgbox {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  padding: 2.5em;
  border-radius: 1em;
  background: #fff;
}
@media screen and (max-width: 950px) {
  #newspost #pickup_info .info_box .imgbox {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#newspost #pickup_info .info_box .imgbox img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
#newspost #pickup_info .info_box .table_list {
  width: 60%;
  margin-bottom: 0;
}
@media screen and (max-width: 950px) {
  #newspost #pickup_info .info_box .table_list {
    width: 100%;
  }
}
#newspost #pickup_info .info_box .table_list li {
  background: #fff;
}
#newspost #pickup_info .info_box .table_list li .tablelist_th {
  border-right: #190b80 dashed 0.15em;
  color: #190b80;
}
@media screen and (max-width: 950px) {
  #newspost #pickup_info .info_box .table_list li .tablelist_th {
    border-right: none;
    border-bottom: #190b80 dashed 0.15em;
  }
}
#newspost #pickup_info .info_box .table_list li .tablelist_td {
  color: #190b80;
}

/* ================= フォーム ============================================================ */
/* ブラウザスタイル解除 */
@keyframes onAutoFillStart {}
input:-webkit-autofill {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-webkit-autofill-selected {
  animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

input:-internal-autofill-selected {
  background-color: rgba(232, 240, 254, 0) !important;
}

.formbox {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 2.5em;
  border-radius: 1em;
  background: #e1eeef;
  color: #190b80;
  /* 必須項目 */
  /* -------------------------- Contact Form 7 ------------------------------------------- */
}
@media screen and (max-width: 950px) {
  .formbox {
    padding: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .formbox {
    padding: 1.5em 1em;
  }
}
.formbox h3 {
  font-size: 2em;
  line-height: 1.7em;
  padding-bottom: 0.5em;
}
.formbox p {
  padding-bottom: 2em;
}
.formbox .required {
  width: auto;
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  font-size: 0.6em;
  font-weight: 500;
  line-height: 1em;
  padding: 0.35em 0.8em;
  background: #1066e7;
  color: #fff;
  border-radius: 1.35em;
  top: -0.2em;
}
.formbox .wpcf7-form {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  /* 項目名（共通） */
  /* ラベルで挟まれた項目 */
  /* fieldsetで挟まれた項目 */
  /* 郵便番号 */
  /* チェックボックス・ラジオボタン */
  /* 承認確認 */
  /*送信ボタン*/
  /* エラーメッセージ */
}
.formbox .wpcf7-form .formname {
  width: 13em;
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form .formname {
    width: 100%;
  }
}
.formbox .wpcf7-form label.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  /* 項目名 */
  /* フォーム内容 */
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form label.formctt {
    display: block;
  }
}
.formbox .wpcf7-form label.formctt .formname {
  line-height: 1.7em;
  padding-top: 0.75em;
}
.formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form label.formctt .wpcf7-form-control-wrap {
    flex: none;
  }
}
.formbox .wpcf7-form fieldset.formctt {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  border: none;
  padding-left: 13em;
  /* 項目名 */
  /* フォーム内容 */
  /* 改行 */
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form fieldset.formctt {
    padding-left: 0;
  }
}
.formbox .wpcf7-form fieldset.formctt .formname {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form fieldset.formctt .formname {
    position: relative;
  }
}
.formbox .wpcf7-form fieldset.formctt .wpcf7-form-control-wrap {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
.formbox .wpcf7-form fieldset.formctt br {
  display: none;
}
.formbox .wpcf7-form p {
  padding: 0 0 2em 0;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form input[type=date],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.7em;
  box-sizing: border-box;
  padding: 0.75em 1.5em;
  border-radius: 1.6em;
  border: none;
}
.formbox .wpcf7-form input[type=text],
.formbox .wpcf7-form input[type=email],
.formbox .wpcf7-form input[type=tel],
.formbox .wpcf7-form select,
.formbox .wpcf7-form textarea {
  width: 100% !important;
}
.formbox .wpcf7-form span[data-name=your-yubin] input[type=text] {
  max-width: 11em;
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item {
  margin-left: 0;
  margin-right: 1em;
}
.formbox .wpcf7-form .wpcf7-radio .wpcf7-list-item label,
.formbox .wpcf7-form .wpcf7-checkbox .wpcf7-list-item label {
  cursor: pointer;
  font-weight: 400;
}
.formbox .wpcf7-form .wpcf7-acceptance label {
  cursor: pointer;
}
.formbox .wpcf7-form input[type=submit] {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  min-width: 13em;
  position: relative;
  padding: 1.175em 3em;
  border: #190b80 solid 0.2em;
  border-radius: 2em;
  background: #190b80;
  background-size: auto 1em;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s;
  letter-spacing: 1em;
  text-indent: 1em;
  cursor: pointer;
}
.formbox .wpcf7-form input[type=submit]:not(:disabled):hover {
  translate: 0 0.2em;
  background-size: auto 1em;
}
@media screen and (max-width: 600px) {
  .formbox .wpcf7-form input[type=submit] {
    width: 100%;
    text-align: center;
  }
}
.formbox .wpcf7-form input[type=submit]:disabled {
  opacity: 0.3;
  filter: alpha(opacity=30);
  background: transparent;
  color: #000;
  border: #000 dotted 0.2em;
  padding: 1.175em 3em;
  cursor: not-allowed;
}
.formbox .wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  color: #1066e7;
}
.formbox .wpcf7-form .wpcf7-not-valid-tip::before, .formbox .wpcf7-form .wpcf7-not-valid-tip::after {
  display: inline-block;
}
.formbox .wpcf7-form .wpcf7-not-valid-tip::before {
  position: relative;
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  z-index: 2;
  color: #1cadd7;
  padding-right: 0.2em;
}
.formbox .wpcf7-form .wpcf7-not-valid-tip::after {
  content: "";
  width: 0.2em;
  height: 0.7em;
  position: absolute;
  top: 0.7em;
  left: 0.5em;
  right: auto;
  bottom: auto;
  background: #190b80;
  z-index: 1;
}
.formbox .wpcf7-form .wpcf7-response-output {
  border: none !important;
  padding: 0;
  padding-left: 1em;
  text-indent: -1em;
  color: #1066e7;
  width: auto;
  position: relative;
  box-sizing: border-box;
}
.formbox .wpcf7-form .wpcf7-response-output::before, .formbox .wpcf7-form .wpcf7-response-output::after {
  display: inline-block;
}
.formbox .wpcf7-form .wpcf7-response-output::before {
  position: relative;
  content: "\f071";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  line-height: 1;
  z-index: 2;
  color: #1cadd7;
  padding-right: 0.2em;
}
.formbox .wpcf7-form .wpcf7-response-output::after {
  content: "";
  width: 0.2em;
  height: 0.7em;
  position: absolute;
  top: 0.7em;
  left: -0.5em;
  right: auto;
  bottom: auto;
  background: #190b80;
  z-index: 1;
}

/* ================= フォーム確認画面 ============================================================ */
.wpcf7cp-form-hide {
  display: none;
}

.wpcf7-spinner {
  display: none;
}

div#wpcf7cpcnf {
  width: 100%;
  position: relative;
  box-sizing: border-box;
  padding: 1em;
  background-color: #fff !important;
  border-radius: 1em;
  /* 入力内容 */
  /* ボタン */
}
div#wpcf7cpcnf table {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}
div#wpcf7cpcnf table tr th,
div#wpcf7cpcnf table tr td {
  border-bottom: #535353 dashed 1px;
}
@media screen and (max-width: 600px) {
  div#wpcf7cpcnf table tr th,
  div#wpcf7cpcnf table tr td {
    display: block;
  }
}
.contactpage-ctt .sec div#wpcf7cpcnf table tr th p,
.contactpage-ctt .sec div#wpcf7cpcnf table tr td p {
  padding-top: 1em;
  padding-bottom: 1em;
}
div#wpcf7cpcnf table tr th {
  width: 20em;
  font-weight: normal !important;
  color: #535353;
  text-align: right;
}
@media screen and (max-width: 950px) {
  div#wpcf7cpcnf table tr th {
    width: 12.5em;
  }
}
@media screen and (max-width: 600px) {
  div#wpcf7cpcnf table tr th {
    width: 100%;
    border-bottom: none;
    text-align: left;
  }
}
div#wpcf7cpcnf table tr th p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media screen and (max-width: 600px) {
  .contactpage-ctt .sec div#wpcf7cpcnf table tr th p {
    padding-bottom: 0;
  }
}
div#wpcf7cpcnf table tr th p::after {
  content: "：";
}
div#wpcf7cpcnf table tr td {
  color: #190b80;
}
div#wpcf7cpcnf table tr td p {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 600;
  font-style: normal;
}
div#wpcf7cpcnf .wpcf7cp-btns {
  text-align: center;
}
div#wpcf7cpcnf .wpcf7cp-btns button {
  font-family: dnp-shuei-gothic-gin-std, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.1em;
  display: inline-block;
  width: auto;
  position: relative;
  box-sizing: border-box;
  min-width: 13em;
  position: relative;
  padding: 1.175em 3em;
  border: #190b80 solid 0.2em;
  border-radius: 2em;
  background: #190b80;
  background-size: auto 1em;
  color: #fff;
  cursor: pointer;
  text-align: center;
  transition: all 0.4s;
  border-radius: 4em;
  width: 10em !important;
  cursor: pointer;
  /* 修正ボタン */
  /* 送信ボタン */
}
div#wpcf7cpcnf .wpcf7cp-btns button:not(:disabled):hover {
  translate: 0 0.2em;
  background-size: auto 1em;
}
@media screen and (max-width: 600px) {
  div#wpcf7cpcnf .wpcf7cp-btns button {
    width: auto !important;
    padding-left: 2em;
    padding-right: 2em;
    letter-spacing: 0.5em;
    text-indent: 0.5em;
  }
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background: #535353;
  border: #535353 solid 2px;
  color: #fff;
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn:hover {
  translate: 0 0.2em;
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7-submit {
  width: auto !important;
  letter-spacing: 0;
  text-indent: 0;
  padding-right: 3em;
  background: #190b80;
  border: #190b80 solid 2px;
}
div#wpcf7cpcnf .wpcf7cp-btns button.wpcf7-submit:hover {
  translate: 0 0.2em;
}/*# sourceMappingURL=style.css.map */