:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #ffffff;
  --color-gold: #D4D1A5;
  --color-black: #333333;
  --color-gray: #ddd;
  --color-green: #007440;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --color-handmenu: #000000;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
}
* {
  /*outline: 1px solid red;※右側に空白ができる問題解チェック用*/
}
html { /*※右側に空白ができる問題解決策として、overflow-x: hidden;指定 → スクロール基準崩壊してしまうから「×」*/
  height: 100%;
  word-break: break-word;
  background-color: var(--color-base);
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  scroll-behavior: smooth; /*スムーズにスクロールさせる*/
  overflow-x: visible; /*右側に空白ができる問題解決策_補（安定させるさせる）*/
}
body {
  /*overflow-x: clip;右側に空白ができる問題解決策！「clip」は最近の最適解（スクロールに影響しない）*/
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /*Chrome,Safari文字の大きさを安定させる！*/
  -ms-text-size-adjust: 100%; /*EgdeMobile*/
  -moz-text-size-adjust: 100%; /*firefox*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
body.menu_open {
  overflow: hidden;
}
#loader {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.loaded {
  opacity:0;
  visibility:hidden;
}
#circle_bar {
  max-width: 100%;
  max-height: 100%;
}
#circle_bar svg {
  display: block;
  max-width: 100%;
  height: auto;
}
#circle_bar text {
  font-size: 2rem;
  text-anchor: middle;
  dominant-baseline: middle;
}
section {
  margin-bottom: 0em;
  scroll-margin-top: 120px;
}
.display_none {
  display: none;
}
span {
  display: inline-block;
}
ul, p {
  margin: 0;
  padding: 0;
}
#dk_js_attention {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 100%;
  text-align: center;
  color: #f00;
  padding: 10px 0;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  z-index: 999;
}
a {
  color: inherit;
  text-decoration: none;
}
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}
/*::selection {
  color: #fff;
  background: var(--color-theme);
}*/
/*input {
    display: none;
}*/
img {
  /*border: 0;
  margin: 0;*/
  vertical-align: top; /*画像下の隙間を無くす*/
}
figure {
  margin: 0;
}
/* その他TOPイメージ */
.object_fit_cover_right {
  object-fit: cover;
  object-position: right 0px bottom 0px;
  width: 100%;
  height: 300px;
}
.object_fit_cover_left {
  object-fit: cover;
  object-position: left 0px bottom 0px;
  width: 100%;
  height: 300px;
}
@media only screen and (max-width: 767px) and (orientation:portrait) {
  .object_fit_cover_right {
    object-fit: cover;
    object-position: right 0px bottom 0px;
    height: 250px;
  }
  .object_fit_cover_left {
    object-fit: cover;
    object-position: left 0px bottom 0px;
    width: 100%;
    height: 250px;
  }
}
/* TOPスライド */
[class*=swiper]:focus {
  outline: none;
}
.slide-media, .thumb-media {
  position: relative;
  overflow: hidden;
}
.slide-media img, .thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  min-width: 0; /*「display: flex;」のとき、子要素を縮める為*/
  height: 100%;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /*z-index: 1;*/
}
.top_slide {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /* border-top: 1px solid #eee;  ページネーション */
}
@media only screen and (max-width: 1024px) {
  .top_slide {
    margin-bottom: 0rem;
  }
}
.swiper {
  height: 60vh;
}
@media only screen and (max-width: 767px) and (orientation:portrait) {
  .swiper {
    height: 60vh;
  }
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  pointer-events: none;
  text-align: left;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.slide {
  display: grid;
  place-content: center;
  height: 100%;
}
.slide:nth-child(1n) {
  color: #000000;
}
.slide:nth-child(2n) {
  color: #000000;
}
.slide:nth-child(3n) {
  color: #000000;
}
/*【iPhone〜 横向きのみ】
@media only screen and (max-width: 767px) and (orientation: landscape){
.slide {
  height: 87vh;
  }
}*/
.slide-media {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-media img {
  -webkit-transition: 7s 1s linear;
  transition: 7s 1s linear;
  -webkit-transform: translateX(-1.5%) scale(1.1);
  transform: translateX(-1.5%) scale(1.1);
}
.slide_title, .slide_text, .slide_link {
  font-family: "Noto Serif JP";
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: 2s var(--easing) both;
  animation: 2s var(--easing) both;
  z-index: 10;
  width: 90%;
  text-align: center;
}
.slide_title {
  font-weight: 900;
  font-size: 36px;
  color: var(--color-base);
  line-height: 1.6em;
  letter-spacing: 0.1em;
  margin-top: -1.5em; /* 上にずらす */
  animation-duration: 3s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.slide_text {
  font-weight: 900;
  font-size: 14px;
  color: var(--color-base);
  line-height: 2em;
  letter-spacing: 0.15em;
  margin-bottom: 0.3em;
  margin-top: 1.5em; /* 下にずらす */
  animation-duration: 3s;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
/*【 縦向きのみ】
@media (max-aspect-ratio: 3/4)  {
.slide_title {
	font-size: 24px;
}
.slide_text {
	font-size: 12px;
}
}*/
@media only screen and (max-width: 767px) and (orientation:portrait) {
  .slide_title {
    font-size: 23px;
  }
  .slide_text {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
  .slide_title {
    font-size: 24px;
  }
  .slide_text {
    font-size: 12px;
  }
}
.slide_link {
  margin-top: 60px;
  animation-duration: 3s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.slide_bt {
  top: 50%;
  right: 50%;
  animation-duration: 3s;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.slide-button {
  font-size: 1.2rem;
  display: inline-block;
  color: var(--color-theme);
}
.slide-button::before {
  display: inline-block;
  width: 6rem;
  height: 1px;
  margin: -2px 1.6rem 0 0;
  content: "";
  vertical-align: middle;
  background-color: currentColor;
}
.swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(1.5%) scale(1.05);
  transform: translateX(1.5%) scale(1.05);
}
/*TOPムービー上文字*/
.swiper-slide.anm-started .slide_title, .swiper-slide.anm-started .slide_text, .swiper-slide.anm-started .slide_link {
  -webkit-animation-name: top_slide-fadeIn;
  animation-name: top_slide-fadeIn;
}
.swiper-slide.anm-finished .slide_title, .swiper-slide.anm-finished .slide_text, .swiper-slide.anm-finished .slide_link {
  -webkit-animation-name: top_slide-fadeOut;
  animation-name: top_slide-fadeOut;
}
@-webkit-keyframes top_slide-fadeIn {
  0% {
    -webkit-transform: translate(-50%, calc(-50% + 2rem));
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@-webkit-keyframes top_slide-fadeOut {
  0% {
    -webkit-transform: translate(-50%, -50%);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, calc(-50% - 2rem));
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
}
@keyframes top_slide-fadeIn {
  0% {
    transform: translate(-50%, calc(-50% + 2rem));
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes top_slide-fadeOut {
  0% {
    transform: translate(-50%, -50%);
    -ms-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, calc(-50% - 2rem));
    -ms-filter: blur(6px);
    filter: blur(6px);
    opacity: 0;
  }
}
.fraction {
  position: absolute;
  bottom: 1rem;
  right: 0rem;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  font-size: 0;
  z-index: 50;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .fraction {
    bottom: 1rem;
    right: 0rem;
  }
}
.fraction .current {
  font-size: 3.2rem;
  display: inline-block;
  overflow: hidden;
  width: 5rem;
}
.fraction .current .num {
  display: inline-block;
}
.fraction .current .num.anm-started {
  -webkit-animation: mv05-fraction 1s var(--easing);
  animation: mv05-fraction 1s var(--easing);
}
.fraction .total {
  vertical-align: 0.5em;
}
.fraction .total::before {
  content: " / ";
}
.swiper-pagination {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
  text-align: right;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 1;
}
.swiper-pagination-bullet {
  display: inline-block;
  width: 7%;
  height: 2px;
  margin-left: 5px;
  background-color: rgba(119, 119, 119, 0.4);
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.swiper-pagination-bullet:not(:first-child) {
  margin-top: 1.6rem;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}
.caption {
  font-size: 10px;
}
.breadcrumb {
  margin: 0px 0 20px 0;
  font-size: 10px !important;
}
.lineup-c-section__basic--sns {
  margin-top: 0px;
  margin-bottom: 0px;
}
.lineup-c-section__basic--note {
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 50px;
  padding-bottom: 100px;
}
.blackwrap {
  z-index: 77;
}
.main_img {
  position: -webkit-sticky; /*これが無いと下へ回り込む*/
  position: sticky; /*これが無いと下へ回り込む*/
  top: 0;
  overflow: hidden;
}
.background_color_09 {
  position: relative;
}
/*ローダー*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 555;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#loader P {
  font-family: "Noto Serif JP";
  font-size: 24px;
  color: #ffffff;
  line-height: 3em;
  letter-spacing: 0.2em;
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
/*ヘッダー*/
.header_inner {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100px;
  padding: 0 3px 0 3px;
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 50%);
  transition: .5s;
  z-index: 55;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
#header_01:checked ~ #header .header_inner {
  background-image: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%);
}
.header_inner .header_logo {
  position: absolute;
  left: 25px;
  top: 13px;
  height: 42px;
  color: #0066FF;
  font-family: "Noto Serif JP";
  font-size: 9px;
}
.header_inner .header_logo img {
  display: block;
}
#header_01:checked ~ #header .header_inner .header_logo {
  display: none;
}
.header_inner a {
  font-family: "Noto Sans JP";
}
@media print, screen and (max-width: 767px) {
  .header_inner .header_logo {
    left: 15px;
  }
}
@media print, screen and (min-width: 1025px) {
  .pc_menu {
    margin-top: 28px;
    display: flex;
    display: -webkit-flex;
    align-self: center;
    align-items: center;
    -webkit-align-items: center;
    justify-content: flex-end; /*右寄せ*/
    -webkit-justify-content: flex-end; /*右寄せ*/
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    footer -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
  }
}
@media print, screen and (max-width: 1024px) {
  .pc_menu {
    display: none;
  }
}
.pc_menu li {
  font-size: 12px;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #B7B597;
  padding: 0em 3em;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.pc_menu li:first-of-type {
  margin-left: 0px;
  border-left-width: 0px;
}
.pc_menu li:last-of-type {
  margin-right: 0%;
}
.menu_light li {
  color: #B7B597;
}
.menu_light li.active {
  color: var(--color-theme);
  text-decoration: underline;
  text-underline-offset: 6px;
}
/*タブレットサイズ以下の場合、スクロールでヘッダーが表示・非表示*/
@media print, screen and (max-width: 1024px) {
  .header_scroll {
    transform: translateY(-100%);
  }
  #header_01:checked ~ #header .header_inner { /*ハンバーガーメニュー展開時は固定する*/
    transform: translateY(0%);
  }
  /*上に上がる動き
#header.UpMove{
  animation: UpAnime 0.5s forwards;
}*/
  /*下に下がる動き
#header.DownMove{
  animation: DownAnime 0.5s forwards;
}*/
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media print, screen and (min-width: 1025px) {
  .hamburger_menu {
    display: none;
  }
}
@media print, screen and (max-width: 1024px) {
  .hamburger_menu {
    position: absolute;
    top: 2px;
    right: 10px;
    z-index: 56;
  }
}
@media print, screen and (max-width: 767px) {
  .hamburger_menu {
    position: absolute;
    top: 2px;
    right: 2px;
    z-index: 56;
  }
}
/*ボタン外側*/
.openbtn {
  position: relative;
  width: 48px;
  height: 52px;
  overflow: hidden;
  mix-blend-mode: difference;
  cursor: pointer;
  z-index: 100;
}
@media print, screen and (max-width: 767px) {
  .openbtn {
    width: 48px;
    height: 52px;
  }
}
/*「三」表示*/
.openbtn span {
  position: absolute;
  top: 0px;
  width: 100%;
  height: 1px;
  background-color: #666633;
  display: inline-block;
  transition: all .4s;
  left: 25%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 19px;
}
.openbtn span:nth-of-type(3) {
  top: 25px;
}
/*「×」表示*/
#header_01:checked ~ #header label[for="header_01"] > .openbtn span:nth-of-type(1) {
  top: 10px;
  left: 10px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
  background-color: #D4D1A5;
}
#header_01:checked ~ #header label[for="header_01"] > .openbtn span:nth-of-type(2) {
  opacity: 0;
}
#header_01:checked ~ #header label[for="header_01"] > .openbtn span:nth-of-type(3) {
  top: 26px;
  left: 10px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
  background-color: #D4D1A5;
}
/*「Navi」表示*/
.openbtn::after {
  content: "Open";
  position: absolute;
  bottom: 3px;
  left: calc(50% - 7px);
  left: -webkit-calc(50% - 7px);
  font-size: 9px;
  color: #666633;
}
/*「Close」表示*/
#header_01:checked ~ #header label[for="header_01"] > .openbtn::after {
  content: "Close";
  color: #D4D1A5;
  left: calc(50% - 6px);
  left: -webkit-calc(50% - 6px);
  color: #D4D1A5;
}
#header_01:checked ~ #header label[for="header_01"] > .tablet_menu { /*「ハンバーガーメニュー内」表示*/
  right: 0%;
  -webkit-transition: .5s;
  transition: .5s;
  overflow: scroll; /*スクロールさせる*/
  scrollbar-width: none; /*スクロールバーを消す（fire fox）*/
  -ms-overflow-style: none; /*スクロールバーを消す（explorer）*/
  opacity: 1;
}
#header_01:checked ~ section, #header_01:checked ~ #header .header_logo {
  filter: blur(3px) grayscale(.7);
  -webkit-filter: blur(3px) grayscale(.7);
  -moz-filter: blur(3px) grayscale(.7);
  -ms-filter: blur(3px) grayscale(.7);
}
.tablet_menu {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 30vw;
  height: 100vh;
  padding: 120px 4vw 20px 4vw;
  background-color: rgba(17, 17, 17, 0.6);
  -webkit-transition: .5s;
  transition: .5s;
  font-size: 0px; /*1カラム改行されてしまうのを解消*/
  opacity: 0;
  z-index: 50;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media print, screen and (max-width: 767px) {
  .tablet_menu {
    width: 100%;
    padding: 120px 20px 20px 20vw;
  }
}
.tablet_menu li {
  font-size: 14px;
  color: #D4D1A5;
  text-align: left;
  line-height: 1.5em;
  margin-bottom: 2em;
  display: block;
}
.tablet_menu li::before { /*「Menu」表示*/
  content: "▸";
}
@media print, screen and (max-width: 767px) {
  .tablet_menu li {
    font-size: 16px;
  }
}
.tablet_menu::-webkit-scrollbar { /*スクロールバーを消す（safafi,chrome）*/
  display: none;
}
@-webkit-keyframes move_tablet_menu {
  0% {
    right: -100%;
    opacity: 0;
  }
  15%, 85% {
    right: 0%;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
@keyframes move_tablet_menu {
  0% {
    right: -100%;
    opacity: 0;
  }
  15%, 85% {
    right: 0%;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}
label .move_tablet_menu {
  -webkit-animation-name: move_tablet_menu;
  animation-name: move_tablet_menu;
  animation-delay: 0s;
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  animation-fill-mode: none;
}
/*フッター*/
#footer {
  width: 100%;
  position: relative;
}
.footer_wrap {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0px auto 0px auto;
  padding: 0px 30px 0px 30px;
  font-size: 0px; /*1カラム改行されてしまうのを解消*/
  display: flex;
  display: -webkit-flex;
  align-items: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.footer_wrap > li:nth-of-type(1) {
  width: 25%;
  max-width: 200px;
  margin-right: 2%;
}
.footer_wrap > li:nth-of-type(2) {
  width: 60%;
  max-width: 390px;
}
.footer_wrap > li:nth-of-type(3) {
  width: 13%;
  max-width: 100px;
  margin-left: 2%;
  margin-left: auto;
}
.footer_logo {
  position: relative;
  display: inline;
}
.footer_logo img {
  width: 100%;
}
@media print, screen and (max-width: 767px) {
  .footer_wrap {
    margin: 0px auto 0px auto;
    padding: 0px 20px 0px 20px;
  }
  .footer_wrap > li:nth-of-type(1) {
    display: none;
  }
  .footer_wrap > li:nth-of-type(2) {
    width: 80%;
    margin-left: 0;
  }
  .footer_wrap > li:nth-of-type(3) {
    width: 20%;
    max-width: 100px;
    margin-left: auto;
  }
}
.footer_inner {
  width: 100%;
  height: 40px;
  font-size: 10px;
  color: #ffffff;
  background-color: #004479;
  opacity: 0.8;
  z-index: 55;
  margin: 10px 0 0 0;
  display: flex;
  display: -webkit-flex;
  align-self: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center; /*中央寄*/
  -webkit-justify-content: center; /*中央寄せ*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.footer_inner li {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
/*フッター*/
.footer_content {
  font-size: 12px;
  display: flex;
  display: -webkit-flex;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch; /*縦位置*/
  -webkit-align-items: stretch; /*縦位置*/
  justify-content: flex-start; /*横位置*/
  -webkit-justify-content: flex-start; /*横位置*/
  align-content: flex-start;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.footer_content li {
  width: calc(100% * 1/4);
  width: -webkit-calc(100% * 1/4);
  max-width: 22.5%; /*1カラム改行されてしまうのを解消*/
  margin-right: 3.3%;
  margin-bottom: 3vw;
}
.footer_content li:nth-of-type(4n) {
  margin-right: 0%;
}
@media print, screen and (max-width: 1024px) {
  .footer_content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
/*フッター（SNS）*/
.footer_sns_area {
  position: relative;
  background-color: #FFF;
  border-top: 1px solid #D9D9D9;
}
.footer_sns, .footer_news_area {
  max-width: 1240px;
  margin: 0 auto;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer_news_area {
  padding-top: 80px;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  .footer_sns, .footer_news_area {
    padding: 0 20px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_sns, .footer_news_area {
    margin: 20px 0;
    padding: 15px 15px 56px 15px;
    flex-direction: column;
  }
  .footer_news_area {
    padding-top: 56px;
  }
}
@media print, screen and (min-width: 768px) {
  .footer_sns p {
    margin-right: 1em;
    font-size: 18px;
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .footer_sns p {
    font-size: 12px;
    margin-bottom: .5em;
  }
}
.footer_sns > *:not(:last-child) {
  margin-right: 10px;
}
.footer_sns img {
  width: 60px;
}
@media print, screen and (max-width: 1024px) {
  .footer_sns img {
    width: 40px;
  }
}
.footer_news_area::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  right: 0;
  left: 0;
  border-top: 1px solid #C1C1C1;
  margin-left: 30px;
  margin-right: 30px;
}
@media print, screen and (max-width: 1024px) {
  .footer_news_area::before {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer_news_area::before {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.footer_news_title {
  position: relative;
  font-weight: 400;
  line-height: 1.3;
  padding: 0 0 0 0.5em;
  font-size: 48px;
  margin: 0 0 56px 0 !important;
}
.footer_news_title:not(:first-child) {
  margin: 56px 0 56px 0 !important;
}
@media screen and (max-width: 767px) {
  .footer_news_title {
    font-size: 28px;
    margin: 0 0 44px 0 !important;
  }
  .footer_news_title:not(:first-child) {
    margin: 44px 0 44px 0 !important;
  }
}
.footer_news_title::before {
  position: absolute;
  content: "";
  margin: auto;
  box-sizing: border-box;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 90%;
  background: #CB0112;
  border-radius: 5px;
  border-top: 16px solid #757575;
}
@media screen and (max-width: 767px) {
  .footer_news_title::before {
    border-top: 12px solid #757575;
  }
}
.footer_news {
  display: flex;
  flex-wrap: wrap;
  margin: -24p -24px 0 0;
}
.footer_news > .footer_news li {
  width: calc(33.33333% - 16px);
}
@media screen and (max-width: 767px) {
  .footer_news {
    margin: -14px -14px 0 0;
  }
  .footer_news > .footer_news li {
    width: calc(100% - 14px);
  }
}
/*TOPムービー*/
.top_stop_scroll_container {
  position: relative;
  width: 100%;
  /*overflow: hidden;これを入れると「position: sticky;」が効かなくなる！（body内で対処済み↑*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  min-height: 100vh;
}
.top_stop_scroll {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  /*max-width: 1180px;*/
  margin: 0px auto 0px auto;
  display: flex;
  align-items: start;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  z-index: 0;
}
@media print, screen and (max-width: 1240px) {
  .top_stop_scroll {
    margin: 0px 0px 0px 0px;
  }
}
@media print, screen and (max-width: 1024px) {
  .top_stop_scroll {
    margin: 0px 0px 0px 0px;
  }
}
@media print, screen and (max-width: 767px) {
  .top_stop_scroll {
    margin: 0px 0px 0px 0px;
  }
}
/*position: sticky用*/
.stop_scroll_container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0px auto 0px auto;
  padding-right: 30px;
  padding-left: 30px;
  top: 0px;
  font-size: 0px; /*1カラム改行されてしまうのを解消*/
  display: flex;
  display: -webkit-flex;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch; /*縦位置*/
  -webkit-align-items: stretch;
  justify-content: flex-end; /*右寄せ*/
  -webkit-justify-content: flex-end;
  align-content: flex-start;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media print, screen and (max-width: 1024px) {
  .stop_scroll_container {
    padding-right: 20px;
    padding-left: 20px;
  }
}
.stop_scroll {
  position: -webkit-sticky;
  position: sticky;
  top: 10vw;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .stop_scroll {
    top: 13vw;
  }
}
@media only screen and (max-width: 834px) {
  .stop_scroll {
    top: 15vw;
  }
}
@media only screen and (max-width: 767px) {
  .stop_scroll {
    position: relative;
    top: 0vw;
  }
}
/*本文*/
.img_caption { /*ボタン外側*/
  position: absolute;
  top: 5px;
  right: 10px;
  float: right;
  width: auto;
  height: 45px;
}
.technical_btn { /*ボタン外側*/
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  float: right;
  width: 60px;
  height: 45px;
  border: 3px double #D4D1A5;
  border-radius: 0 0 7px 7px;
  background-color: #000000;
  z-index: 100;
}
.technical_btn::after { /*「設計図」表示*/
  content: "設計図";
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: #ffffff;
  font-size: 10px;
}
.background_white, .background_gray {
  position: relative;
  width: 100%;
  /*overflow: hidden;*/ /*position stkcy対策*/
  display: flex;
  display: -webkit-flex;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch; /*縦位置*/
  -webkit-align-items: stretch;
  justify-content: flex-start; /*横位置*/
  -webkit-justify-content: flex-start;
  align-content: flex-start;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .background_white, .background_gray {
    justify-content: flex-start; /*横位置*/
    -webkit-justify-content: flex-start;
  }
}
/*白バック*/
.background_white {
  background-color: #fff;
}
/*グレーバック*/
.background_gray {
  background-color: #F3F3F3;
}
.background_wrapper_top {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 0 auto;
  padding: 2vw 30px 0vw 30px;
  display: block;
}
.background_wrapper, #formWrap {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto 0 auto;
  padding: 7vw 30px 7vw 30px;
  /*border-top: 1px solid #D8D8D8;*/
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .background_wrapper_top {
    padding: 10vw 7% 0vw 7%;
  }
  .background_wrapper {
    padding: 10vw 20px 10vw 20px;
  }
  #otoiawase .background_wrapper {
    padding: 10vw 30px 10vw 30px;
  }
}
.background_wrapper h1 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 28px;
  color: var(--color-green);
  line-height: 1.4em;
  letter-spacing: 0em;
  margin-bottom: 0.7em;
}
.background_wrapper h1 span, .background_wrapper h2 span, .form_h1 span {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 0.45em;
  color: var(--color-black);
}
.background_wrapper h2, .form_h1 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 28px;
  color: var(--color-green);
  line-height: 1.4em;
  margin-bottom: 0.7em;
}
.background_wrapper h3 {
  font-family: "Noto Serif JP";
  font-weight: 600;
  font-size: 16px;
  color: var(--color-black);
  line-height: 2em;
  letter-spacing: 0.15em;
  margin-bottom: 0.3em;
}
.background_wrapper h4 {
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 11px;
  color: var(--color-black);
  line-height: 1.6em;
  margin-bottom: 0.7em;
}
.background_wrapper P, .background_wrapper td, #formWrap p, #formWrap form {
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: var(--color-black);
  line-height: 1.8em;
  letter-spacing: 0.1em;
}
.noto_sans_bold {
  font-family: "NotoSansJP-Bold";
  font-size: 15px;
  color: var(--color-black);
  line-height: 2em;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1024px) {
  .background_wrapper h1 {
    font-size: 28px;
  }
  .background_wrapper h2, .form_h1 {
    font-size: 24px;
  }
  .background_wrapper P, .background_wrapper td, #formWrap p, #formWrap form {
    font-size: 14px;
  }
  .noto_sans_bold {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .background_wrapper h1, .background_wrapper h2, .form_h1 {
    font-size: 24px;
    line-height: 1.6em;
    letter-spacing: 0.05em;
  }
  .background_wrapper h3 {
    font-size: 12px;
    line-height: 1.6em;
    letter-spacing: 0.05em;
  }
  .background_wrapper P, .background_wrapper td, #formWrap p, #formWrap form {
    font-size: 14px;
    letter-spacing: 0.1em;
  }
  .noto_sans_bold {
    font-size: 13px;
    letter-spacing: 0.1em;
  }
}
.under_line {
  width: 100%;
  margin-bottom: 10px;
  overflow: hidden;
}
.under_line img {
  width: 1400px;
}
#otoiawase input {
  display: inline;
}
.bt_w {
  width: 150px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  color: var(--color-black);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.6em;
  margin: 30px 10px 0 0;
  border: 1px solid var(--color-black);
  border-radius: 9999px; /*高さが変わっても必ず超楕円になる*/
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .bt_w {
    width: 120px;
    font-size: 12px;
    margin-top: 0px;
  }
}
.bt_contact {
  width: 100%;
  margin: 5px 0 0 0;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .bt_contact {
    margin: 0 0 0 0;
  }
}
.bt_contact li {
  width: 48%;
  margin: 0px 4% 0 0;
}
.bt_contact li:last-child {
  margin: 0px 0 0 0;
}
@media screen and (max-width: 767px) {
  .bt_contact li {
    width: 47% !important;
    margin: 5px 3% 0 0 !important;
    display: inline-block !important;
  }
}
#form a, #tel a {
  width: 100%;
  font-family: "Noto Sans JP";
  font-size: 12px;
  color: var(--color-black);
  letter-spacing: 0.1em;
  padding: 0.5em;
  border: 1px solid #707070;
  border-radius: 9999px; /*高さが変わっても必ず超楕円になる*/
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
#form img, #tel img {
  height: 14px;
  margin: 0 2px 0 0;
}
.bt_w:hover, #form a:hover, #tel a:hover {
  transition-duration: 0.3s;
  color: var(--color-theme);
  border: 1px solid var(--color-theme);
  cursor: pointer;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.bt_traial_hajimetenokatahe {
  display: inline-block;
  float: right;
}
.bt_traial {
  width: 130px;
  display: inline-block;
  margin-top: -70px;
}
.bt_traial:hover {
  transition-duration: 0.3s;
  opacity: 0.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .bt_traial {
    width: 110px;
  }
}
.column_top {
  display: flex;
  display: -webkit-flex;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-content: flex-start;
  position: relative;
  font-size: 0px; /*1カラム改行されてしまうのを解消*/
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.column_2, .column_3, .column_4, .column_1_5 {
  position: relative;
  font-size: 0px; /*1カラム改行されてしまうのを解消*/
  display: flex;
  display: -webkit-flex;
  align-self: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  -webkit-align-items: stretch;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  align-content: flex-start;
  gap: 10em; /* margin/padding を調整 */
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.column_top li {
  width: 100%;
  margin-top: 2vh;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.column_1 li {
  width: 100%;
  margin-bottom: 2vh;
}
.column_2 li {
  width: calc(100% * 1/2);
  width: -webkit-calc(100% * 1/2);
  max-width: 47.5%;
  margin-right: 5%;
  margin-bottom: 0vw;
  box-sizing: border-box;
}
.column_3 li {
  width: calc(100% * 1/3);
  width: -webkit-calc(100% * 1/3);
  max-width: 30%; /*1カラム改行されてしまうのを解消*/
  margin-right: 5%;
  margin-bottom: 100px;
  position: relative;
}
.column_3 li img {
  margin-bottom: 20px;
}
.column_4 li {
  width: calc(100% * 1/4);
  width: -webkit-calc(100% * 1/4);
  max-width: 22.5%; /*1カラム改行されてしまうのを解消*/
  margin-right: 3.3%;
  margin-bottom: 3vw;
}
.column_1_5 li {
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #555555;
}
.column_1_5 li p:nth-of-type(1n) {
  width: 25%;
  display: inline-block;
  padding-right: 5%;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}
.column_1_5 li p:nth-of-type(2n) {
  width: 75%;
  display: inline-block;
  padding-right: 0%;
}
@media screen and (max-width:767px) {
  .column_1_5 li p:nth-of-type(1n) {
    width: 100%;
    display: inline-block;
    padding-right: 0%;
  }
  .column_1_5 li p:nth-of-type(2n) {
    width: 100%;
    display: inline-block;
    padding-right: 0%;
  }
}
.column_1_5 li:nth-of-type(1) p:nth-of-type(2)::before {
  content: "NEW";
  font-size: 9px;
  color: #ffffff;
  text-align: center;
  padding: 3px;
  border-radius: 2px;
  background-color: #EE0000;
  margin-right: 5px;
}
.column_2 li:nth-of-type(2n), .column_3 li:nth-of-type(3n), .column_4 li:nth-of-type(4n), .column_4_3 li:nth-of-type(4n), .border_right_no {
  margin-right: 0%;
}
@media screen and (max-width:767px) {
  .column_2 li {
    width: 100%;
    max-width: 100%;
    margin-right: 0%;
    margin-bottom: 20px;
  }
  .column_2 li:nth-of-type(1n) {
    margin-right: 0%;
  }
  .column_2 li:nth-of-type(2n) {
    margin-top: 0vw;
  }
  .column_3 li {
    width: 100%;
    max-width: 100%;
    margin-right: 0%;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #555555;
  }
  .column_4 li {
    width: calc(100% * 1/2);
    width: -webkit-calc(100% * 1/2);
    max-width: 47.5%; /*1カラム改行されてしまうのを解消*/
    margin-right: 5%;
    margin-bottom: 4vw;
  }
}
.padding_right {
  padding-right: 10%;
}
@media only screen and (max-width: 767px) {
  .sp_light {
    order: 1; /*スマホで順番入れ替え（左から2番目に移動）*/
  }
}
/* Google map iframeのサイズ */
/*.google_map_size {
  position: relative;
  width: 100%;
  padding-top: 60%; */
	/* 縦横比率を16:9にする */
/*}*/
.google_map_size {
    position: relative;
    width: 100%;
    padding-top: 72%;
    /* 16:9のアスペクト比 */
    height: 0;
}

.google_map_size iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}	

/* you tube iframeのサイズ */
.you_tube_size {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 縦横比率を16:9にする */
}
.google_map_size img, /* ←[iframe]タグ貼り付けの場合は[.google_map_size iframe,]に変える */ .you_tube_size iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.you_tube_size::after {
  content: "LIVE";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  padding: 5px 7px 5px 7px;
  border-radius: 4px;
  background-color: #EE0000;
  margin-top: 5px;
  margin-left: 5px;
}
/*「ダミー」表記*/
.dummy {
  position: absolute;
  top: 50%;
  left: 50%;
}
.dummy::after {
  content: "ダミー";
  position: absolute;
  top: 45%;
  left: 45%;
  font-size: 14px;
  color: #EE0000;
  text-align: center;
  padding: 3px 4px 3px 4px;
  background-color: rgba(255, 255, 255, 0.80);
  width: 50PX;
}
/*料金表*/
.table_wrap {
  overflow-x: scroll;
  margin: 0.5em 0;
}
.table_wrap table {
  width: 100%;
  table-layout: fixed; /* 各セルの列幅を均等にする */
  border-collapse: collapse;
  -webkit-overflow-scrolling: touch; /* スマホで滑らかにスクロールする */
  border-top: 1px solid #000000;
}
.table_wrap table td {
  vertical-align: middle;
  padding: 0.8em 0.3em 0.8em 0.3em;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  text-align: center;
}
.table_wrap table td:nth-last-of-type(1) {
  border-right: 0px solid #000000;
  text-align: center;
}
/*入力フォーム*/
form {
  width: 100%;
  margin-top: 80px;
  font-family: "Noto Serif JP";
  color: var(--color-black);
  line-height: 2em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  form {
    margin-top: 40px;
  }
}
.form_list {
  width: 100%;
  padding: 0 0 24px 0;
  margin-bottom: 24px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .form_list {
    flex-wrap: wrap;
  }
}
.form_list:last-child {
  border-bottom: 1px solid #ddd;
}
.form_label {
  width: 30%;
}
@media screen and (max-width: 914px) {
  .form_label {
    width: 100%;
  }
}
.form_Input {
  width: 70%;
  background-color: #EEEEEE;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-left: 40px;
  padding: 0.5em;
}
@media screen and (max-width: 914px) {
  .form_Input {
    width: 100%;
    margin-left: 0;
    margin-top: 18px;
  }
}
textarea {
  width: 100%;
  min-height: 216px;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 914px) {
  textarea {}
}
input {
  background-color: transparent;
  border: none;
}
.input_text {
  width: 100%;
}
.form_required {
  color: #990000;
  margin-left: 1em;
  display: inline-block;
}
.text_indent_0_5em {
  text-indent: -0.5em;
}
.text_indent_1em {
  margin-left: 1em;
  text-indent: -1em;
}
.text_red {
  color: #990000;
  margin-left: 5em;
}
.text_color_red {
  color: #EE0000 !important;
}
/*入力フォーム確認画面 */
p.btn input {
  width: 110px;
  height: 32px;
}
/* for message */
p.msg {
  color: #dd0000;
  margin: 2em;
}
span.msg {
  color: #dd0000;
}
/* for back-button */
form.back {
  margin-top: 2em;
}
/* スマホ用 */
@media only screen and (max-width: 480px) {
  /* 投稿フォーム */
  p.btn input {
    width: 10em;
  }
  /* サンクス */
  p.msg {
    margin: 1em auto;
  }
}
/* 要確認・訂正指示 */
.caution {
  position: absolute;
  height: 50px;
  width: 100px;
  top: 20%;
  left: calc(50% - 50px);
  left: -webkit-calc(50% - 50px);
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 20px;
  background-color: #FF0000;
  display: table-cell;
}
/* 画面にフワーとフェードイン */
@media (print), (prefers-reduced-motion: reduce) {
  .add_fade_in {
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-transition-duration: 1ms;
    transition-duration: 1ms;
    -webkit-animation-iteration-count: 1; /*アニメーションの実行回数*/
    animation-iteration-count: 1;
  }
}
.add_fade_in {
  -webkit-animation: 2s var(--easing) both;
  animation: 2s var(--easing) both;
  -webkit-animation-name: fadeIn_anime;
  animation-name: fadeIn_anime;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeIn_anime {
  0% {
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeIn_anime {
  0% {
    -webkit-transform: translateY(6rem);
    transform: translateY(6rem);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
/* 未使用 */
@-webkit-keyframes fadeOut_anime {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-6rem);
    transform: translateY(-6rem);
    opacity: 0;
  }
}
@keyframes fadeOut_anime {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-6rem);
    transform: translateY(-6rem);
    opacity: 0;
  }
}
/*トップへボタン*/
#page_top {
  position: fixed;
  right: 10px;
  bottom: 100px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
#page_top a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: solid 0px #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  background-color: rgba(29, 199, 145, 0.70);
}
#page_top a::after {
  position: absolute;
  content: '';
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  height: 16px;
  width: 16px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}
@media screen and (min-width: 1024px) {
  #page_top a:hover {
    background: #777;
  }
}
/*　上に上がる動き　*/
#page_top.page_top_up {
  animation: page_top_up_anime 0.7s forwards;
}
@keyframes page_top_up_anime {
  from {
    opacity: 0;
    transform: translateY(180px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page_top.page_top_down {
  animation: page_top_down_anime 0.7s forwards;
}
@keyframes page_top_down_anime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(180px);
  }
}


/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/*お知らせ
--------------------------------------------------*/
.news-list {
  margin-bottom: 2em;
}
.news-item {
  padding: .5em;
  border-bottom: 1px dashed #555;
}
.news-item p.day {}
.news-item p.ttl {
}
.news-item p.ttl .new_label {
  font-size: 11px;
  color: #fff;
  text-align: center;
  padding: 2px 4px 2px 6px;
  border-radius: 2px;
  background-color: #E00;
  margin-right: .5em;
  display: inline-block;
  line-height: 1;
}
.news-item a {
display: inline-block;
}
.news-item a:hover {
	color: var(--color-theme);
}
@media screen and (min-width: 767px) {
  .news-item {
    padding: 1em .5em;
    display: flex;
    justify-content: space-between;
  }
  .news-item p.day {
    width: 150px;
  }
  .news-item p.ttl {
    width: calc(100% - 150px);
  }
}
/*工事について
--------------------------------------------------*/
.const-wrap {
}
.const-wrap .const-txt {
  margin-bottom: 20px;
  line-height: 2;
}
.list {
  padding-left: 1em;
}
.list span {
  margin-left: -1em;
}
/*.const-wrap .const-txt dl {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.const-wrap .const-txt dt, .const-wrap .const-txt dd {
  margin: .5em 0;
}
.const-wrap .const-txt dt {
  width: 6.5em;
}
.const-wrap .const-txt dd {
  width: calc(100% - 6.5em);
}*/
.const-wrap .const-txt .column_2 li {
  width: 100% !important;
  max-width: 100% !important;
}
.koutei-box .koutei-item {
  position: relative;
  padding: 40px 0 0 70px;
}
.koutei-box .koutei-item::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 1px;
  display: block;
  background: #aaa;
}
.koutei-box .koutei-item:first-child::before {
  top: 30px;
}
.koutei-box .koutei-item:last-child::before {
  bottom: auto;
  height: 30px;
}
.koutei-item .mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
}
.koutei-item .mark::after {
  content: "";
  position: absolute;
  width: calc(100% * 0.6071);
  height: 1px;
  background: #aaa;
  top: 50%;
  left: 50%;
  transform-origin: left center;
  transform: rotate(35deg);
}
.koutei-item .mark span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-8px, -8px);
  height: 0;
  overflow: hidden;
  width: 16px;
  padding-top: 16px;
  border-radius: 50vh;
  background: #000;
  z-index: 5
}
.koutei-box .koutei-item:nth-child(1) .mark span {
  background: #771a7b;
}
.koutei-box .koutei-item:nth-child(2) .mark span {
  background: #004b8f;
}
.koutei-box .koutei-item:nth-child(3) .mark span {
  background: #15858f;
}
.koutei-box .koutei-item:nth-child(4) .mark span {
  background: #8da865;
}
.koutei-box .koutei-item:nth-child(5) .mark span {
  background: #f2c11b;
}
.koutei-box .koutei-item:nth-child(6) .mark span {
  background: #e99411;
}
.koutei-box .koutei-item:nth-child(7) .mark span {
  background: #de5510;
}
.koutei-box .koutei-item:nth-child(8) .mark span {
  background: #d71342;
}
.koutei-item .mark.on span {
  overflow: inherit;
  padding-top: 0;
  height: 50px;
  width: 50px;
  transform: translate(-25px, -25px);
  line-height: 50px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.koutei-item .mark.on span::after {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 90%;
  height: 90%;
  transform: translate(-50%, -50%);
  border-radius: 50vh;
  border: 1px solid #fff;
}
.koutei-item .txt {
  line-height: 1.4;
}
@media screen and (min-width: 767px) {
  .const-wrap {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
  }
  .const-wrap .const-txt {
    width: 45%;
  }
  .const-wrap .const-koutei {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .const-wrap {
    font-size: 14px;
  }
  .const-wrap .const-txt {
    width: 40%;
  }
  .const-wrap .const-koutei {
    width: 50%;
  }
  .koutei-box .koutei-item {
    padding: 50px 0 0 100px;
  }
  .koutei-box .koutei-item::before {
    left: 40px;
  }
  .koutei-box .koutei-item:first-child::before {
    top: 40px;
  }
  .koutei-box .koutei-item:last-child::before {
    height: 40px;
  }
  .koutei-item .mark {
    width: 80px;
    height: 80px;
  }
  .koutei-item .mark.on span {
    height: 70px;
    width: 70px;
    transform: translate(-35px, -35px);
    line-height: 70px;
    font-size: 14px;
  }
}
/*  pager
----------------------------------------------------*/
.pager {
	margin-top: 20px;
}
.pager ul.page-numbers {
  display: flex;
  justify-content: center;
}
.pager .page-numbers li {
  margin: 0 5px;
  padding: 0;
  list-style: none
}
.pager .page-numbers li a, .pager .page-numbers li span {
  display: block;
  text-align: center;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-decoration: none;
  border-radius: 50vh;
  color: #333;
  background:rgba(0,68,121,.2);
}
.pager .page-numbers li span.current {
  color: #fff;
  background-color: #004479;
}
.pager .page-numbers li a:hover {
  text-decoration: none;
}
.screen-reader-text {
  display: none;
}
@media (min-width: 600px) {
}
@media (min-width: 1025px) {

  .pager .page-numbers li a, .pager .page-numbers li span {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
  .pager .page-numbers li a:hover {
    background-color:rgba(0,68,121,.5);
    color: #fff;
  }
  .pager .page-numbers li a.active:hover {
    background-color:rgba(0,68,121,.5)
  }
}
/*  pankuzu
----------------------------------------------------*/
.topicpath {
  font-size: 13px;
  margin-bottom: 20px;
}
.topicpath ul {
  display: flex;
  align-items: center;
  opacity: .6;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
.topicpath ul::-webkit-scrollbar {
  display: none;
}
.topicpath a {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" viewBox="0 0 24 24"><path fill="%23333" d="M8.59,16.58L13.17,12L8.59,7.41L10,6L16,12L10,18L8.59,16.58Z" /></svg>');
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 12px;
  padding: 1em 24px 1em 0;
}
@media (min-width: 600px) {
  .topicpath {}
  .topicpath ul {}
}
@media (min-width:1025px) {
  .topicpath {}
  .topicpath ul {
    overflow: hidden;
  }
}
/* 
----------------------------------------------------*/

.info-dtl-txt {
  margin: 6vw 0;
}
.info-dtl-txt ul, .info-dtl-txt li, .info-dtl-txt ol {
  all: revert;
}
.info-dtl-txt p, .info-dtl-txt figure {
  margin-bottom: 1em;
}
.info-dtl-txt h1 {
  font-size: 200%;
  font-weight: 700;
  color: inherit;
  font-family: "Noto Sans JP";
}
.info-dtl-txt h2 {
  font-size: 180%;
  font-weight: 700;
  color: inherit;
  font-family: "Noto Sans JP";
}
.info-dtl-txt h3 {
  font-size: 160%;
  font-weight: 700;
  font-family: "Noto Sans JP";
}
.info-dtl-txt h4 {
  font-size: 140%;
  font-weight: 700;
}
.info-dtl-txt h5 {
  font-size: 120%;
  font-weight: 700;
}
.info-dtl-txt h6 {
  font-size: 100%;
  font-weight: 700;
}
.info-dtl-txt a {
  text-decoration: underline;
}
.info-dtl-txt .wp-block-button a {
  text-decoration: none;
}
@media (min-width: 600px) {

}
@media (min-width: 1025px) {

  .info-dtl-txt {
    margin: 40px 0 80px;
  }
  .info-dtl-txt p, .info-dtl-txt figure {
    margin-bottom: 1.5em;
  }
  .info-dtl-txt .wp-block-button a:hover {
    opacity: .6
  }
}