@charset "UTF-8";
@import url("reset.css");
/*A Modern CSS Reset  https://andy-bell.co.uk/a-modern-css-reset*/
:root {
  --cont_padding: 40px;
  --header_height: 160px;
  /* color */
  --color_theme01: #000;
  --color_theme01_rgb: 0, 0, 0;
  --color_theme02: #4A4A4A; /* 墨に近いグレー */
  --color_theme03: #FF0000; /* 真っ赤 */
  --color_font01: #000;
  --color_font02: #fff;
  --color_font03: #DDDDDD;
  --color_font04: #BABABA;
  --color_field01: #fff;
  --color_field01_rgb: 255, 255, 255;
  --color_field02: #E2E1E0; /* 薄いベージュ */
  --color_field03: #000;
  --color_field04: #E6E6E5; /* 薄いグレー */
  --color_field05: #9D9D9D; /* グレー */
  --color_field05_rgb: 157, 157, 157; /* グレー */
  --color_field06: #535252; /* 濃いグレー */
  --color_field07: #C7C7C7; /* 濃いグレー2 */
  --color_field08: #F4F4F4; /* 薄いグレー2 */
  --color_border01: #000;
  --color_border02: #9D9D9D;
  --color_border02_rgb: 157, 157, 157;
  --color_border03: #fff;
  --color_border04: #2B2B2B;
  --color_link01: #0037FF;
  /* fonts */
  --default_ff_r: "リュウミン R-KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif; /*さくらサーバーフォント使用*/
  --default_ff_m: "リュウミン M-KL", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif; /*さくらサーバーフォント使用*/
  --second_ff: "Noto Sans JP", sans-serif;
  --option01_ff: "din-condensed-variable", sans-serif; /*ADOBE FONTS 使用*/
  /* cont width */
  --cont_width01: 1240px;
  --cont_width02: 800px;
  --cont_width03: 1100px;
  /* space */
  --space_5: 5px;
  --space_10: 10px;
  --space_15: 15px;
  --space_20: 20px;
  --space_25: 25px;
  --space_30: 30px;
  --space_40: 40px;
  --space_50: 50px;
  --space_60: 60px;
  --space_70: 60px;
  --space_80: 80px;
  --space_100: 100px;
  --space_120: 120px;
}
@media (width <= 820px) {
  :root {
    --cont_padding: 25px;
  }
}
@media (width <= 1200px) {
  :root {
    --header_inner: 60px;
  }
}
@media (width <= 820px) {
  :root {
    --space_10: 5px;
  }
}
@media (width <= 820px) {
  :root {
    --space_15: 10px;
  }
}
@media (width <= 820px) {
  :root {
    --space_20: 13px;
  }
}
@media (width <= 820px) {
  :root {
    --space_25: 15px;
  }
}
@media (width <= 820px) {
  :root {
    --space_30: 18px;
  }
}
@media (width <= 820px) {
  :root {
    --space_40: 25px;
  }
}
@media (width <= 820px) {
  :root {
    --space_50: 30px;
  }
}
@media (width <= 820px) {
  :root {
    --space_60: 40px;
  }
}
@media (width <= 820px) {
  :root {
    --space_70: 45px;
  }
}
@media (width <= 820px) {
  :root {
    --space_80: 40px;
  }
}
@media (width <= 820px) {
  :root {
    --space_100: 50px;
  }
}
@media (width <= 820px) {
  :root {
    --space_120: 60px;
  }
}

/*end :root */
ul,
li,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}
a[href*="tel:"] {
  text-decoration: none;
}
@media (width > 820px) {
  a[href*="tel:"] {
    pointer-events: none;
    /*PCはリンクさせない*/
  }
}
@media (width > 820px) {
  a[href*="tel:"]::after {
    content: none !important;
  }
}

button {
  outline: none;
  border-style: none;
  background-color: transparent;
}

em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

figure {
  display: block;
}

/*parts----------------------------------------------------------------------------------*/
.rectangle {
  display: inline-block;
  text-align: center;
  font-size: inherit;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  transition: 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
.rectangle.-format01 {
  padding: 0.36em 0.5em 0.37em;
  color: var(--color_font02);
  background-color: var(--color_theme01);
}
.rectangle.-format02 {
  padding: 0.36em 0.5em 0.37em;
  color: var(--color_font01);
  background-color: var(--color_field05);
}
.rectangle.-format03 {
  padding: 0.36em 0.5em 0.37em;
  color: var(--color_font01);
  background-color: var(--color_field01);
  border: thin solid var(--color_border02);
  font-family: var(--default_ff_m);
}
.rectangle.-format03:hover {
  color: var(--color_font02);
  background-color: var(--color_field05);
}
.rectangle.-format04 {
  padding: 0.36em 0.5em 0.37em;
  color: var(--color_font01);
  background-color: var(--color_field07);
  border: thin solid var(--color_border02);
}
.rectangle.-format05 {
  padding: 0.37em 0.5em 0.37em;
  background-color: rgba(var(--color_field05_rgb), 0.3);
  border: thin solid rgba(var(--color_field05_rgb), 0.3);
}
.rectangle.-format05:hover {
  background-color: rgba(var(--color_field05_rgb), 0.1);
}
.rectangle.-format06 {
  padding: 0.37em 0.5em 0.37em;
  color: var(--color_font02);
  border-radius: 5px;
  background-color: var(--color_font01);
}
.Dlist dt .rectangle.-format06 {
  min-width: 5em;
}

.ico {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  line-height: 1;
  font-size: inherit;
}
.swiper-button-prev .ico, .swiper-button-next .ico {
  width: auto;
  height: auto;
}
.ico.ico--LinDot01 {
  position: relative;
  top: -0.1em;
  width: var(--cont_padding);
  --position: .6em;
}
.SubCont__head .ico.ico--LinDot01, .AnkerNavi__head .ico.ico--LinDot01 {
  width: 45px;
}
.SingleA__head .ico.ico--LinDot01 {
  width: 55px;
  top: 0.2em;
}
.ico.ico--LinDot01::before {
  position: absolute;
  left: 0;
  top: var(--position);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--color_font01);
}
.ico.ico--LinDot01::after {
  position: absolute;
  right: 0;
  top: var(--position);
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 100vh;
  background-color: var(--color_font01);
  transform: translateY(calc(-53% + 1px));
}
.ico.ico--arrowRight01 {
  width: 38px;
  height: 38px;
  border-top: thin solid var(--color_border01);
  border-right: thin solid var(--color_border01);
  transform: rotate(45deg);
}
@media (width <= 820px) {
  .ico.ico--arrowRight01 {
    width: 20px;
    height: 20px;
  }
}
.ico.ico--arrowRight02 {
  position: relative;
  width: 100%;
}
.ico.ico--arrowRight02::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color_font01);
}
.ico.ico--arrowRight02::after {
  position: absolute;
  bottom: 1px;
  right: 0;
  content: "";
  width: 1px;
  height: 7px;
  background-color: var(--color_font01);
  transform: rotate(-45deg);
  transform-origin: right bottom;
}
.ico.ico--arrowLeft02 {
  position: relative;
  width: 100%;
}
.ico.ico--arrowLeft02::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color_font01);
}
.ico.ico--arrowLeft02::after {
  position: absolute;
  bottom: 1px;
  left: 0;
  content: "";
  width: 1px;
  height: 7px;
  background-color: var(--color_font01);
  transform: rotate(45deg);
  transform-origin: right bottom;
}
.ico.ico--megane {
  width: 100%;
  aspect-ratio: 1/0.42;
  background: transparent url("../images/ico_megane_black.svg") no-repeat 0 0;
  background-size: contain;
}
.ico.ico--checkBox {
  position: relative;
  width: 1.5em;
  aspect-ratio: 1/1;
  border: 3px solid var(--color_border01);
  border-radius: 5px;
  background-color: rgba(var(--color_field05_rgb), 0.3);
}
.is-checked .ico.ico--checkBox::after {
  content: "";
  position: absolute;
  left: 25%;
  top: 10%;
  width: 40%;
  height: 70%;
  border-right: 3px solid #00B500;
  border-bottom: 3px solid #00B500;
  transform: rotate(45deg);
  transform-origin: center;
}
.ListCheck li:hover .ico.ico--checkBox, .ListCheck li.is-checked .ico.ico--checkBox {
  background-color: var(--color_field01);
}

.num {
  position: relative;
  display: block;
  width: 1.8em;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  line-height: 1;
  border: 5px solid var(--color_font01);
  background-color: var(--color_field01);
}
@media (width <= 820px) {
  .num {
    border-width: 3px;
  }
}
.num > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: inherit;
  font-weight: 500;
  transform: translate(-50%, -50%);
}

.anker {
  display: block;
  visibility: hidden;
  position: relative;
  top: -150px;
}
@media (width <= 820px) {
  .anker {
    top: -100px;
  }
}

.copyRight {
  font-size: 11px;
  line-height: 1.2;
}
@media (width <= 820px) {
  .copyRight {
    font-size: 10px;
  }
}

.spacer.-space10 {
  height: 10px;
}
@media (width <= 820px) {
  .spacer.-space10 {
    height: 8px;
  }
}
.spacer.-space20 {
  height: 20px;
}
@media (width <= 820px) {
  .spacer.-space20 {
    height: 10px;
  }
}
.spacer.-space35 {
  height: 35px;
}
@media (width <= 820px) {
  .spacer.-space35 {
    height: 15px;
  }
}
.spacer.-space45 {
  height: 45px;
}
@media (width <= 820px) {
  .spacer.-space45 {
    height: 20px;
  }
}
.spacer.-space50 {
  height: 50px;
}
@media (width <= 820px) {
  .spacer.-space50 {
    height: 22px;
  }
}
.spacer.-space80 {
  height: 80px;
}
@media (width <= 820px) {
  .spacer.-space80 {
    height: 35px;
  }
}

/*---------------------------------------------------------------------------------------------*/
.Page {
  text-size-adjust: 100%;
  /*for smart Phone*/
  -ms-text-size-adjust: 100%;
  /*for smart Phone*/
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.Page__body {
  position: relative;
  font-size: 16px;
  line-height: 1;
  font-feature-settings: "palt" 1;
  color: var(--color_font01);
  font-family: var(--default_ff_r);
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: var(--color_field02);
  border-left: 6px solid var(--color_field03);
  border-right: 6px solid var(--color_field03);
  z-index: 1;
  overflow-x: hidden;
}
@media (width <= 820px) {
  .Page__body {
    border-left: 3px solid var(--color_field03);
    border-right: 3px solid var(--color_field03);
  }
}
.Page__body::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: radial-gradient(ellipse 100% 180vw at 50% 90px, var(--color_field01) 0%, var(--color_field01) 10%, var(--color_field01) 30%, var(--color_field02) 80%);
  background-repeat: no-repeat;
  background-position: center top;
  background-color: var(--color_field02);
  z-index: 0;
}
.Page__body.-naviOpen {
  overflow: hidden;
}

.Page__topBorder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  z-index: 200;
  background-color: var(--color_field03);
}
@media (width <= 820px) {
  .Page__topBorder {
    height: 3px;
  }
}

.Page__screen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--color_field01);
  z-index: 4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-left: 6px solid var(--color_field03);
  border-right: 6px solid var(--color_field03);
}
@media (width <= 820px) {
  .Page__screen {
    border-left: 3px solid var(--color_field03);
    border-right: 3px solid var(--color_field03);
  }
}
body.-naviOpen .Page__screen {
  opacity: 1;
  visibility: visible;
}

.Page__headerLogo {
  position: fixed;
  top: 50px;
  left: var(--cont_padding);
  z-index: 100;
  transition: all 0.5s ease;
}
@media (width <= 820px) {
  .Page__headerLogo {
    top: 17px;
  }
}
body.-naviOut .Page__headerLogo {
  opacity: 0;
  visibility: hidden;
}

.Page__headerElm {
  position: fixed;
  top: 50px;
  right: var(--cont_padding);
  z-index: 100;
}
@media (width <= 820px) {
  .Page__headerElm {
    top: 17px;
  }
}

.Page__navi {
  --move: -440px;
  position: fixed;
  left: 0;
  top: 200px;
  z-index: 4;
  transition: all 0.3s ease;
}
@media (width <= 1100px) {
  .Page__navi {
    display: none;
  }
}
body:not(.-naviOpen) .Page__navi {
  transform: translateX(var(--move));
}
@media (width > 1100px) {
  body.-naviOut .Page__navi {
    transform: translateX(-100%);
  }
}
body.-contact .Page__navi {
  display: none;
}

.Page__prologue {
  position: relative;
  z-index: 1;
}
@media (width > 1100px) {
  .Page__prologue {
    height: 100dvh;
    min-height: 880px;
    max-height: 1250px;
  }
}
@media (width <= 820px) {
  .Page__prologue {
    height: 100dvh;
    min-height: 880px;
  }
}
@media (width <= 580px) {
  .Page__prologue {
    min-height: 860px;
  }
}

.Page__spNavi {
  --move: -400px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transform: translateX(var(--move));
  z-index: 6;
}
@media (width <= 820px) {
  .Page__spNavi {
    --move: -200px;
  }
}
.Page__body.-naviOpen .Page__spNavi {
  opacity: 1;
  visibility: visible;
  overscroll-behavior-y: contain;
  transform: translateX(0);
  transition: all 0.3s ease 0.6s;
}

.Page__main {
  position: relative;
  z-index: 2;
}

.Page__mainFooter {
  position: relative;
  z-index: 1;
}

.Page__subFooter {
  position: relative;
  z-index: 3;
}

.Header__elm {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.Header__elm > li:not(:last-child) {
  margin-left: 25px;
}
@media (width > 1100px) {
  .Header__elm > li.-naviTrigger {
    transform: translateY(-250%);
    transition: all 0.3s ease;
  }
}
@media (width > 1100px) {
  body.-naviOut .Header__elm > li.-naviTrigger {
    transform: translateY(0);
  }
}
@media (width <= 820px) {
  .Header__elm > li.-contact {
    display: none;
  }
}
body.-contact .Header__elm {
  display: none;
}

.Logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 62px;
}
.Logo > a {
  display: block;
}
@media (width <= 820px) {
  .Header__logo .Logo {
    flex-direction: row;
    font-size: max(30px, min(9vw, 55px));
  }
}
.Footer__logo .Logo {
  width: fit-content;
  font-size: max(48px, min(4.5vw, 62px));
}

.Logo__main {
  font-weight: 400;
  font-family: var(--option01_ff);
}

.Logo__sub {
  font-size: 23.5%;
  font-family: var(--default_ff_m);
  letter-spacing: 0.15em;
  line-height: 1.3;
}
@media (width <= 820px) {
  .Header__logo .Logo__sub {
    margin-left: 1em;
    font-size: 13px;
  }
}
@media (width <= 580px) {
  .Header__logo .Logo__sub {
    font-size: 10px;
  }
}
@media (width > 820px) {
  .Header__logo .Logo__sub > br {
    display: none;
  }
}

.Humberger {
  --size: 44px;
  position: relative;
  display: block;
  width: var(--size);
  height: var(--size);
  cursor: pointer;
  padding: 25%;
  background-color: var(--color_theme01);
  border-radius: 6px;
}
@media (width <= 580px) {
  .Humberger {
    --size: 30px;
  }
}

.Humberger__inner {
  position: relative;
  display: block;
  height: 100%;
}

.Humberger__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: var(--color_font02);
  transition: 0.4s;
  transform: translate(-50%, -50%);
  /*タップ後の状態=================================*/
  /*==============================================*/
}
.Humberger__line::before, .Humberger__line::after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: var(--color_font02);
  transition: inherit;
}
.Humberger__line::before {
  top: -7px;
}
.Humberger__line::after {
  bottom: -7px;
}
.Humberger.-active .Humberger__line {
  background-color: transparent !important;
}
.Humberger.-active .Humberger__line::before {
  top: 0;
  transform: rotate(45deg);
}
.Humberger.-active .Humberger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.GlobalNavi {
  --set_area: 480px;
  --offset: 10px;
  overflow: hidden;
}
@media (width <= 820px) {
  .GlobalNavi {
    --set_area: 40px;
  }
}
.Page__spNavi .GlobalNavi {
  padding-top: 200px;
}
@media (width <= 820px) {
  .Page__spNavi .GlobalNavi {
    padding-top: 90px;
  }
}

.GlobalNavi__list {
  padding-right: var(--cont_padding);
}
.GlobalNavi__list:not(:last-child) {
  margin-bottom: 30px;
}

.GlobalNavi__item {
  position: relative;
  padding-left: calc(var(--offset) + var(--set_area));
  font-size: 18px;
  transition: transform 0.3s ease;
}
.GlobalNavi__item:not(:last-of-type) {
  margin-bottom: 1.2em;
}
.GlobalNavi__item > a {
  display: block;
  padding-left: 1em;
  line-height: 1.4;
}
.GlobalNavi__item::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.6em;
  width: calc(var(--offset) + var(--set_area));
  height: 1px;
  background-color: var(--color_font01);
}
.GlobalNavi__item::after {
  content: "";
  display: block;
  position: absolute;
  left: calc(var(--offset) + var(--set_area));
  top: 0.58em;
  width: 9px;
  height: 9px;
  border-radius: 100vh;
  background-color: var(--color_font01);
  transform: translateY(calc(-50% + 1px));
}
@media (width > 820px) {
  .GlobalNavi__item:has(a:hover) {
    transform: translateX(var(--offset));
  }
}

.GlobalNavi__button {
  max-width: 230px;
  margin-left: auto;
  margin-right: auto;
}
@media (width > 1100px) {
  .GlobalNavi__button {
    display: none;
  }
}

.Separation {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}
.Separation.-variation01 {
  background: transparent url("../images/bg_story.jpg") no-repeat 50% 50%;
  background-size: cover;
}
.Separation.-variation01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color_field03);
  opacity: 0.4;
}
.Separation.-variation02 {
  background-color: var(--color_field01);
}
.Separation.-visible {
  overflow: visible;
}

.Separation__inner {
  position: relative;
  margin: 0 auto;
  padding: 0 var(--cont_padding);
  z-index: 2;
  max-width: calc(var(--cont_width00) + var(--cont_padding) * 2);
}
.Separation__inner.-variation01 {
  max-width: calc(var(--cont_width01) + var(--cont_padding) * 2);
}
.Separation__inner.-variation02 {
  max-width: calc(var(--cont_width02) + var(--cont_padding) * 2);
}
.Separation__inner.-variation03 {
  max-width: calc(var(--cont_width03) + var(--cont_padding) * 2);
}

.Separation__slide {
  height: 344px;
}
@media (width <= 820px) {
  .Separation__slide {
    height: 150px;
  }
}

.Separation__hr {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  padding: 0 var(--cont_padding);
  max-width: calc(var(--cont_width01) + var(--cont_padding) * 2);
  z-index: 2;
}
.Separation__hr::after {
  display: block;
  margin-top: -1px;
  content: "";
  width: 100%;
  height: 100%;
  border-bottom: 1px dotted var(--color_border01);
}

.Separation__motif {
  position: relative;
  height: 450px;
  max-width: 1500px;
  margin-top: var(--space_50);
  margin-left: auto;
  margin-right: auto;
}
@media (width <= 1500px) {
  .Separation__motif {
    height: 32vw;
  }
}
.Separation__motif::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  content: "";
  width: 110%;
  height: 100%;
  background: transparent url("../images/ico_megane.svg") no-repeat 50% 0;
  background-size: 100% auto;
  transform: translateX(-50%);
}

.Wrap.-variation01 {
  padding: 50px 0 50px;
}
@media (width <= 820px) {
  .Wrap.-variation01 {
    padding: 30px 0 30px;
  }
}
.Wrap.-variation02 {
  padding: 120px 0 0;
}
@media (width <= 820px) {
  .Wrap.-variation02 {
    padding: 50px 0 0;
  }
}
.Wrap.-variation03 {
  padding: 100px 0 80px;
}
@media (width <= 820px) {
  .Wrap.-variation03 {
    padding: 60px 0 50px;
  }
}
.Wrap.-variation04 {
  padding: 0 0 80px;
}
@media (width <= 820px) {
  .Wrap.-variation04 {
    padding: 0 0 50px;
  }
}
.Wrap.-variation05 {
  padding: 80px 0 100px;
}
@media (width <= 820px) {
  .Wrap.-variation05 {
    padding: 50px 0 60px;
  }
}

.TopIssue__main {
  text-align: center;
  font-size: max(16px, min(1.8vw, 20px));
  line-height: 2.5;
  letter-spacing: 0.06em;
}
@media (width <= 820px) {
  .TopIssue__main {
    text-align: left;
    line-height: 2;
  }
}
.TopIssue__main > span {
  display: block;
}
.TopIssue__main > span:not(:last-child) {
  margin-bottom: 2em;
}

.SlideTitle {
  display: flex;
  position: relative;
  height: 100%;
  margin-top: -50px;
  overflow: hidden;
}

.SlideTitle__wrap {
  height: 100%;
  display: flex;
  animation: slide-flow 45s linear 0s infinite both;
}

.SlideTitle__item {
  height: 100%;
  width: auto;
  margin-right: 60px;
  aspect-ratio: 1/0.113;
}
.SlideTitle__item > img {
  height: 100%;
  width: auto;
}

@keyframes slide-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.ContSection__head {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space_60);
  font-size: max(40px, min(7vw, 70px));
}
@media (width <= 820px) {
  .ContSection__head {
    margin-left: 0;
  }
}
.ContSection__head.-variation01 {
  color: var(--color_font02);
}
.ContSection__head.-grabityLeft {
  margin-left: 0;
}

.ContSection__issue {
  margin-bottom: var(--space_50);
  font-size: 20px;
  color: var(--color_font02);
}
@media (width <= 820px) {
  .ContSection__issue {
    font-size: 16px;
  }
}

.ContSection__buttonSet {
  font-size: max(16px, min(1.8vw, 20px));
}

.Usually__index {
  margin-bottom: var(--space_70);
}

.Usually__item:not(:last-child) {
  margin-bottom: var(--space_80);
}

.Usually__option {
  padding-top: 1em;
  margin-left: var(--space_40);
}

.Usually__head {
  margin-bottom: 1.5em;
  font-size: max(22px, min(2.3vw, 24px));
}
.Usually__head:not(:first-child) {
  margin-top: 3em;
}

.Usually__headSub {
  margin-bottom: 1em;
  font-size: 18px;
}
.Usually__headSub:not(:first-child) {
  margin-top: 2em;
}

.Usually__body:not(:last-of-type) {
  margin-bottom: 1em;
}
.Usually__body:not(:last-child) {
  margin-bottom: var(--space_70);
}

.Usually__map {
  margin-bottom: var(--space_15);
  aspect-ratio: 1/0.516;
}
@media (width <= 580px) {
  .Usually__map {
    aspect-ratio: 1/0.8;
  }
}
.Usually__map > iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.Usually__elm:not(:last-of-type) {
  margin-bottom: 1em;
}

.Usually__issue,
.Usually__issueConfirm,
.Usually__issueComplete {
  margin-bottom: 2em;
  text-align: center;
  font-size: max(20px, min(3.3vw, 35px));
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.08em;
  font-family: var(--default_ff_m);
}
@media (width <= 820px) {
  .Usually__issue,
  .Usually__issueConfirm,
  .Usually__issueComplete {
    line-height: 1.5;
  }
}

body.-formConfirm .Usually__issue, body.-formComplete .Usually__issue {
  display: none;
}
.Usually__issue.-hasIco {
  display: flex;
  justify-content: center;
}

.Usually__issueSub {
  margin-bottom: 0.5em;
  padding: 0.3em 0;
  font-size: max(20px, min(2.8vw, 30px));
  font-family: var(--default_ff_m);
  font-weight: 500;
  line-height: 1.7;
}
.Usually__issueSub.-hasIco {
  display: flex;
}

.Usually__issueConfirm {
  display: none;
}
body.-formConfirm .Usually__issueConfirm {
  display: block;
}

.Usually__issueComplete {
  display: none;
}
body.-formComplete .Usually__issueComplete {
  display: block;
}

.Usually__uniqueHead01 {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space_50);
  font-size: max(20px, min(3.3vw, 35px));
}
.Usually__uniqueHead01 > em:not(:last-child),
.Usually__uniqueHead01 > span:not(:last-child) {
  margin-right: 0.2em;
}
.Usually__uniqueHead01 > em {
  display: block;
  padding: 0.4em;
  font-size: max(30px, min(5vw, 57px));
  line-height: 1;
  border: 5px solid var(--color_font01);
  border-radius: 100vh;
}
@media (width <= 820px) {
  .Usually__uniqueHead01 > em {
    border-width: 3px;
  }
}
.Usually__uniqueHead01::after {
  position: absolute;
  left: 100%;
  top: 50%;
  content: "";
  width: 200vw;
  height: 5px;
  background-color: var(--color_font01);
}
@media (width <= 820px) {
  .Usually__uniqueHead01::after {
    height: 3px;
  }
}

.Usually__area {
  padding: 20px;
  background-color: var(--color_field01);
}

.Usually__caution {
  margin-bottom: var(--space_25);
  text-align: center;
  color: var(--color_theme03);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}
body.-formInvalid .Usually__caution, body.-formConfirm .Usually__caution, body.-formBack .Usually__caution, body.-formComplete .Usually__caution, body.-formSystemerror .Usually__caution {
  display: none;
}

.Usually__cautionSub {
  display: flex;
  align-items: center;
  color: var(--color_theme03);
  font-size: 14px;
}
.Usually__cautionSub::before {
  content: "";
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  margin-right: 0.5em;
  background-color: var(--color_theme03);
}
body.-formComplete .Usually__cautionSub, body.-formConfirm .Usually__cautionSub, body.-formSystemerror .Usually__cautionSub {
  display: none;
}

.Usually__Form {
  margin-top: var(--space_25);
}

.Usually__sub {
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  font-size: 14px;
  line-height: 1.5;
}

.Usually__figSet {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
}
.Usually__figSet > li {
  width: 33.333%;
  padding: 1.5%;
}
@media (width <= 580px) {
  .Usually__figSet > li {
    width: 100%;
  }
  .Usually__figSet > li:not(:last-of-type) {
    margin-bottom: 30px;
  }
}
.Usually__figSet:not(:last-child) {
  margin-bottom: var(--space_80);
}

.Usually__img.-offsetRight {
  margin-right: -150px;
}
@media (width <= 820px) {
  .Usually__img.-offsetRight {
    margin-right: calc(var(--cont_padding) * -1);
  }
}
.Usually__img.-offsetLeft {
  margin-left: -150px;
}
@media (width <= 820px) {
  .Usually__img.-offsetLeft {
    margin-left: calc(var(--cont_padding) * -1);
  }
}
.Usually__img:not(:last-child) {
  margin-bottom: var(--space_80);
}

.Usually__picture {
  max-width: initial;
  margin: 0 -3% var(--space_50);
}
@media (width <= 580px) {
  .Usually__picture {
    margin-left: -17%;
    margin-right: -17%;
  }
}
.Usually__picture.-variation01 {
  margin-top: -70px;
}
@media (width <= 820px) {
  .Usually__picture.-variation01 {
    margin-top: -10px;
    margin-left: -3%;
    margin-right: -3%;
  }
}

.Usually__ico {
  position: relative;
  display: block;
  margin-right: 0.4em;
}
.Usually__ico.-megane {
  top: 0.4em;
  width: 2.5em;
  aspect-ratio: 1/0.436;
}
.Usually__ico.-num {
  top: -0.1em;
}

.Usually__panel:not(:last-child) {
  margin-bottom: var(--space_50);
}
.Usually__panel.-variation01 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.Usually__standOut {
  font-size: 80%;
}

.Reration__head {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space_80);
  font-size: max(40px, min(7vw, 70px));
}
@media (width <= 820px) {
  .Reration__head {
    margin-left: 0;
  }
}

.Slide {
  position: relative;
}
.Slide .swiper {
  overflow: hidden; /* 左側はみ出しを隠す */
}
.Slide__item {
  position: relative;
  width: 780px; /* 1枚あたりの表示幅 */
  flex-shrink: 0;
  margin-right: 40px;
  overflow: hidden;
}
@media (width <= 820px) {
  .Slide__item {
    width: 500px;
    margin-right: 25px;
  }
}
@media (width <= 580px) {
  .Slide__item {
    width: 300px;
    margin-right: 15px;
  }
}
.Slide__item:last-child {
  margin-right: 0;
}

.Slide__main {
  position: relative;
  width: 100vw; /* ビューポート幅いっぱい */
}

.Slide__naviSet {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  transform: translateY(-200%);
}

.Slide__nav {
  display: flex;
}
.Slide__nav .swiper-button-prev,
.Slide__nav .swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-top: 0;
  margin-right: 30px;
  font-size: 40px;
  color: var(--color_theme02);
  border-radius: 100vh;
  border: thin solid var(--color_theme02);
  background-color: transparent;
}
@media (width <= 820px) {
  .Slide__nav .swiper-button-prev,
  .Slide__nav .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    font-size: 22px;
  }
}
.Slide__nav .swiper-button-prev svg,
.Slide__nav .swiper-button-next svg {
  display: none; /*デフォルトで出力されるSVGを非表示*/
}

.Slide__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--color_font02);
  font-size: 20px;
  font-weight: 300;
  font-family: var(--option01_ff);
  border-radius: 100vh;
  border: thin solid var(--color_theme02);
  background-color: var(--color_theme01);
  z-index: 2;
}
@media (width <= 820px) {
  .Slide__button {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
}
.Slide__button > span {
  border-bottom: thin solid var(--color_font02);
}
.Slide__button:hover > span {
  border-color: var(--color_theme01);
}

.Slide__button2 {
  position: absolute;
  right: 10px;
  bottom: 0;
  font-size: 20px;
}

.Slide__head {
  margin-top: 0.5em;
  font-size: 26px;
  font-family: var(--default_ff_m);
  line-height: 1.4;
}
@media (width <= 820px) {
  .Slide__head {
    font-size: 18px;
  }
}

.Slide__targetBlank {
  display: block;
  margin-top: 0.2em;
  font-size: 16px;
  font-family: var(--option01_ff);
  font-weight: 400;
}
@media (width <= 820px) {
  .Slide__targetBlank {
    font-size: 14px;
  }
}

.Slide2 {
  width: 100%;
  overflow: hidden; /* ← スライドのはみ出し防止 */
  position: relative;
}
.Slide2 .swiper-slide {
  padding-right: 10px;
}
.Slide2 .swiper-slide > img {
  height: auto;
}
.Slide2 + .swiper-pagination {
  position: absolute;
  bottom: -30px;
  z-index: 100;
}

.LineTable {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 3%;
  background-color: var(--color_field07);
}

.Heading,
.Post h2,
.Post h3,
.Post h4,
.Post h5 {
  display: block;
  position: relative;
  color: inherit;
  line-height: 1.6;
  letter-spacing: 0.08em;
  font-size: inherit;
  font-family: var(--default_ff_m);
  font-weight: 500;
}

.Heading.-format01 { /*英語*/
  font-weight: 400;
  font-family: var(--option01_ff);
  line-height: 1;
  letter-spacing: 0em;
}
.Heading.-format01.-hasSub {
  display: flex;
  flex-direction: column;
}
.Heading.-format01.-gravutyCenter {
  align-items: center;
}

.Heading.-format02 {
  line-height: inherit;
}

.Heading.-format03 {
  line-height: inherit;
}

.Heading.-format04,
.Post h2 {
  padding: 0.4em 1em;
  border-bottom: 2px solid var(--color_border01);
  background-image: linear-gradient(90deg, #FFFFFF 47%, rgba(255, 253, 253, 0) 100%);
}

.Heading.-format05,
.Post h3 {
  padding-left: 1.5em;
}
.Heading.-format05::before,
.Post h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  display: block;
  width: 1em;
  height: 4px;
  background-color: var(--color_font01);
}

.Heading.-format06,
.Post h4 {
  padding-left: 3em;
}
.Heading.-format06::before,
.Post h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  display: block;
  width: 1em;
  height: 4px;
  background-color: var(--color_font01);
}
.Heading.-format06::after,
.Post h4::after {
  content: "";
  position: absolute;
  left: 1.2em;
  top: 0.65em;
  display: block;
  width: 1em;
  height: 4px;
  background-color: var(--color_font01);
}

.Heading.-hasIco {
  display: flex;
}

.Heading__main {
  display: flex;
}
.Heading__main.-hasMotif::after {
  position: relative;
  top: 0.1em;
  content: "";
  display: block;
  width: auto;
  height: 0.75em;
  margin-left: 0.1em;
  aspect-ratio: 1/0.476;
  background: transparent url("../images/ico_megane.svg") no-repeat 0 0;
  background-size: contain;
}

.Heading__sub {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.2em;
  margin-left: 0.2em;
  font-size: 35%;
  font-family: var(--default_ff_m);
  letter-spacing: 0.15em;
}

.Heading__ico {
  margin-right: 0.5em;
}
@media (width <= 580px) {
  .Heading__ico {
    margin-right: 0.3em;
  }
}

.Heading__ico2 {
  display: none;
  width: 2.2em;
  margin-left: 0.2em;
}
body.-web-creation .Heading__ico2, body.-web-operation .Heading__ico2, body.-web-diagnosis .Heading__ico2 {
  display: block;
}

.Heading__en {
  font-size: 80%;
  font-family: var(--option01_ff);
}

.GridA {
  display: grid;
  gap: 30px 2.5%;
}
.GridA.-col3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 580px) {
  .ContSection.-service .GridA.-col3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (width <= 580px) {
  .GridA > li:not(:last-child) {
    margin-bottom: 30px;
  }
}

.GridB {
  display: grid;
  gap: 50px 5%;
}
@media (width <= 820px) {
  .GridB {
    gap: 40px 5%;
  }
}
.GridB.-co2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (width <= 768px) {
  .GridB.-co2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.GridB.-co3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (width <= 768px) {
  .GridB.-co3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.GridB > li.-is_hidden {
  display: none;
}

.ColumnA {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
body.-works .ColumnA, body.-blog .ColumnA {
  flex-direction: row-reverse;
}

.ColumnA__sub {
  width: 280px;
}
@media (width > 820px) {
  .ColumnA__sub {
    margin-left: 6%;
  }
}
@media (width <= 820px) {
  .ColumnA__sub {
    width: 100%;
  }
}

.ColumnA__main {
  flex: 1;
}
@media (width <= 820px) {
  .ColumnA__main {
    flex: 0 1 auto;
    width: 100%;
  }
}

.ListA > li {
  padding: 0.7em 0;
  border-top: thin dotted var(--color_border02);
}
.ListA > li > a {
  position: relative;
  display: block;
  padding-left: 1.2em;
  line-height: 1.5;
  transition: all 0.3s ease;
  font-family: var(--default_ff_m);
}
.ListA > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  aspect-ratio: 1/1;
  border: thin solid var(--color_font01);
  border-radius: 100vh;
  transition: all 0.3s ease;
}
.ListA > li > a:hover::before {
  left: 0.3em;
}
.ListA > li > a:hover::before {
  background-color: var(--color_field01);
}
.ListA .ListA__child {
  font-size: 14px;
}
.ListA .ListA__child > li {
  margin-top: 0.2em;
  padding-left: 1.5em;
}
.ListA .ListA__child > li > a {
  position: relative;
  display: block;
  padding-left: 1.5em;
  line-height: 1.5;
  font-family: var(--default_ff_r);
}
.ListA .ListA__child > li > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 0.7em;
  height: 3px;
  background-color: var(--color_border01);
  transition: all 0.3s ease;
}
.ListA .ListA__child > li > a:hover::before {
  left: 0.5em;
}
.ListA .ListA__count {
  display: inline-block;
  font-size: 80%;
}

.ListB > li {
  position: relative;
  padding-left: 0.7em;
  line-height: 1.5;
}
.ListB > li::before {
  position: absolute;
  top: 0.8em;
  left: 0;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 100vh;
  background-color: var(--color_font01);
}
.ListB > li:not(:last-of-type) {
  margin-bottom: 0.5em;
}

.ListC > LI,
:where(.Post ul) > LI {
  position: relative;
  padding: 0.7em 1em 0.7em 2.5em;
  line-height: 1.5;
  border-top: thin dotted rgba(var(--color_border02_rgb), 0.5);
}
.ListC > LI:last-of-type,
:where(.Post ul) > LI:last-of-type {
  border-bottom: thin dotted rgba(var(--color_border02_rgb), 0.5);
}
.ListC > LI::before,
:where(.Post ul) > LI::before {
  position: absolute;
  left: 1em;
  top: 1.2em;
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background-color: var(--color_font01);
  border-radius: 100vh;
}

.ListD,
.Post ol:not(.AnkerNavi ol) {
  counter-reset: list-number; /* カウンターをリセット */
  list-style: none; /* デフォルトの番号を消す */
}
.ListD > li,
.Post ol:not(.AnkerNavi ol) > li {
  counter-increment: list-number; /* 各liでカウンターを+1 */
  position: relative;
  padding: 0.7em 1em 0.7em 2.5em;
  line-height: 1.5;
  border-top: thin dotted rgba(var(--color_border02_rgb), 0.5);
}
.ListD > li::before,
.Post ol:not(.AnkerNavi ol) > li::before {
  content: counter(list-number, decimal-leading-zero) "";
  position: absolute;
  left: 0;
  top: 0.75em;
  font-family: var(--option01_ff);
}
.ListD > li:last-of-type,
.Post ol:not(.AnkerNavi ol) > li:last-of-type {
  border-bottom: thin dotted rgba(var(--color_border02_rgb), 0.5);
}

.ListCheck > li {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
.ListCheck > li:not(:last-of-type) {
  margin-bottom: 0.8em;
}

.ListCheck__ico {
  position: relative;
  top: 0;
  margin-right: 0.8em;
}

.Dlist__item {
  display: flex;
  align-items: flex-start;
}
.Dlist__item > dt {
  position: relative;
  top: -0.1em;
  margin-right: 1em;
  line-height: 1.5;
}
.Dlist__item > dd {
  line-height: 1.5;
}
.Dlist__item:not(:last-of-type) {
  margin-bottom: 0.8em;
}

.TableA {
  width: 100%;
}
.TableA tr {
  border-top: thin dotted rgba(var(--color_border02_rgb), 0.5);
}
.TableA tr:last-of-type {
  border-bottom: thin dotted rgba(var(--color_border02_rgb), 0.5);
}
.TableA th, .TableA td {
  padding: 1.5em 5%;
  text-align: left;
  line-height: 1.7;
  vertical-align: middle;
}
.TableA th {
  font-weight: inherit;
}
@media (width > 580px) {
  body.-company .TableA th {
    min-width: 17em;
  }
}
@media (width <= 580px) {
  body.-company .TableA th {
    min-width: 6em;
    padding-left: 0;
  }
}
@media (width > 580px) {
  .TableA td {
    padding-left: 0;
  }
}
@media (width <= 580px) {
  .TableA td {
    padding-left: 0;
    padding-right: 0;
  }
}

.SubCont {
  --paddingX: 20px;
}
.SubCont .SubCont__item {
  padding: 16px var(--paddingX);
  background-color: var(--color_field04);
}
@media (width <= 820px) {
  .SubCont .SubCont__item {
    margin: 0 calc(var(--cont_padding) * -1) 40px;
  }
}
.SubCont .SubCont__head {
  margin-left: calc(var(--paddingX) * -1);
  margin-bottom: 0.8em;
  font-size: 18px;
  line-height: 1.3;
}

@media (width <= 580px) {
  .EachCont__main {
    margin-left: calc(var(--cont_padding) * -1);
    margin-right: calc(var(--cont_padding) * -1);
  }
}

@media (width <= 580px) {
  .EachCont__sub {
    padding: 0 10px;
  }
}
.EachCont__sub::before {
  display: block;
  content: "";
  width: 1px;
  height: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space_40);
  background-color: var(--color_border02);
}

.EachCont__head {
  width: fit-content;
  margin: 0 auto 1em;
  font-size: max(18px, min(2vw, 22px));
  line-height: 1.3;
}

.EachCont__list > li:not(:last-child) {
  margin-bottom: 10px;
}
@media (580 < width <= 820px) {
  .EachCont__list > li:not(:last-child) {
    margin-bottom: 30px;
  }
}

.CardA {
  position: relative;
  display: block;
}

.CardA__img {
  margin-bottom: var(--space_30);
}

.CardA__elm {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.CardA__head {
  margin-bottom: 0.5em;
  font-size: max(20px, min(3vw, 26px));
  line-height: 1.3;
}

.CardA__discription {
  margin-bottom: 1em;
  font-size: 20px;
  font-family: var(--default_ff_m);
  line-height: 1.5;
}
@media (width <= 580px) {
  .CardA__discription {
    padding: 0 var(--cont_padding);
  }
}
@media (width <= 820px) {
  .CardA__discription > br {
    display: none;
  }
}

.CardA__body {
  min-height: 15em;
  padding-bottom: 25px;
}
@media (width <= 820px) {
  .CardA__body {
    min-height: 21em;
  }
}
@media (width <= 580px) {
  .CardA__body {
    min-height: initial;
    padding: 0 var(--cont_padding) 20px;
  }
}

.CardA__button {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 18px;
}
@media (width <= 580px) {
  .CardA__button {
    right: var(--cont_padding);
  }
}

.CardB {
  position: relative;
}

.CardB__img {
  border: thin solid rgba(var(--color_border02_rgb), 0.2);
}

.CardB__head {
  margin-top: 0.5em;
  font-size: 26px;
  font-family: var(--default_ff_m);
  line-height: 1.4;
}
@media (width <= 820px) {
  .CardB__head {
    font-size: 18px;
  }
}
.CardB__head:not(:last-child) {
  margin-bottom: 0.3em;
}
.ArchiveA__list .CardB__head {
  font-size: max(16px, min(2.2vw, 26px));
}

.CardB__targetBlank {
  display: block;
  margin-top: 0.2em;
  font-size: 16px;
  font-family: var(--option01_ff);
  font-weight: 400;
}
@media (width <= 820px) {
  .CardB__targetBlank {
    font-size: 14px;
  }
}

.CardB__button {
  position: absolute;
  right: 10px;
  bottom: 0;
  width: fit-content;
  font-size: 20px;
}
.ArchiveA__list .CardB__button, .Reration__list .CardB__button {
  position: static;
  margin-right: 0;
  margin-left: auto;
}

.CardB__category {
  margin-bottom: var(--space_5);
}

.PanelA {
  display: flex;
  flex-wrap: wrap;
}
@media (width <= 820px) {
  .PanelA {
    align-items: flex-start;
  }
}

.PanelA__img {
  margin-top: 8px;
}
.EachCont__list .PanelA__img {
  margin-top: 5px;
  width: 45%;
}
@media (580px < width <= 820px) {
  .EachCont__list .PanelA__img {
    width: 100%;
    margin-bottom: 10px;
  }
}
.ContSection.-blog .PanelA__img {
  width: 40%;
}
@media (width <= 820px) {
  .ContSection.-blog .PanelA__img {
    width: 35%;
  }
}
.ArchiveA__list .PanelA__img, .Reration__list .PanelA__img {
  width: 30%;
}

.PanelA__elm {
  position: relative;
  flex: 1;
  padding-left: 3%;
  padding-bottom: 30px;
}
.ContSection.-blog .PanelA__elm {
  padding-left: 5%;
  padding-bottom: 25px;
}

.PanelA__head {
  display: block;
  line-height: 1.7;
}
.EachCont__list .PanelA__head {
  font-size: 14px;
}
.ContSection.-blog .PanelA__head, .ArchiveA__list .PanelA__head {
  font-size: 19px;
}
@media (width <= 820px) {
  .ContSection.-blog .PanelA__head, .ArchiveA__list .PanelA__head {
    font-size: 16px;
  }
}
.PanelA__head:not(:last-child) {
  margin-bottom: 0.5em;
}

.PanelA__category:not(:last-child) {
  margin-bottom: 5px;
}

@media (width <= 890px) {
  .PanelA__discription {
    font-size: 14px;
  }
}

.PanelA__button {
  position: absolute;
  right: 0;
  bottom: 5px;
  font-size: 18px;
}

.PanelB {
  padding: 15px;
  border: thin dotted var(--color_border02);
}
@media (width <= 820px) {
  .PanelB {
    padding: 7px;
  }
}

.PanelB__inner {
  position: relative;
  padding: 60px 4%;
  border: 5px solid var(--color_border01);
  background-color: var(--color_field01);
}
@media (width <= 820px) {
  .PanelB__inner {
    padding: 40px 4%;
    border-width: 3px;
  }
}

.PanelB__label {
  position: absolute;
  top: -12px;
  left: -7px;
  font-size: max(50px, min(9vw, 100px));
  font-family: var(--option01_ff);
  line-height: 1;
}
@media (width <= 820px) {
  .PanelB__label {
    top: -7px;
    left: -4px;
  }
}

.PanelB__head {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: max(22px, min(2.2vw, 25px));
}

.PanelB__num {
  position: relative;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: max(20px, min(2.8vw, 30px));
}
.PanelB__num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  border-top: thin dotted var(--color_border01);
  z-index: 0;
}

.PanelB__item {
  padding: 50px 3%;
  border-top: thin dotted var(--color_border01);
}
@media (width <= 820px) {
  .PanelB__item {
    padding: 30px 3%;
  }
}
.PanelB__item:last-child {
  padding-bottom: 0;
}
.PanelB__num + .PanelB__item {
  padding-top: 30px;
  border-top-style: none;
}
@media (width <= 820px) {
  .PanelB__num + .PanelB__item {
    padding-top: 15px;
  }
}

.PanelB__list {
  font-size: 17px;
}
@media (width <= 820px) {
  .PanelB__list {
    font-size: 16px;
  }
}

.ArchiveA__head {
  margin-bottom: 1em;
  font-size: max(20px, min(2.3vw, 24px));
}
.ArchiveA__head > span {
  font-family: var(--option01_ff);
}

.ArchiveA__list:not(:last-child) {
  margin-bottom: var(--space_80);
}
.ArchiveA__list > li:not(:last-of-type) {
  margin-bottom: var(--space_40);
}

.ArchiveA__button {
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

.SingleA__head {
  margin-bottom: 0.8em;
  font-size: max(20px, min(3vw, 34px));
  line-height: 1.7;
}
@media (width <= 820px) {
  body.-works .SingleA__head {
    margin-left: calc(var(--cont_padding) * -1);
  }
}

.SingleA__headSub {
  margin-bottom: 1.2em;
  font-family: var(--option01_ff);
  font-size: 16px;
}

.SingleA__category {
  margin-bottom: var(--space_40);
  font-size: 16px;
}
@media (width <= 820px) {
  .SingleA__category {
    font-size: 13px;
  }
}

.SingleA__img {
  display: block;
  margin-bottom: var(--space_40);
  border: thin solid rgba(var(--color_border02_rgb), 0.3);
}

.SingleA__main {
  display: flex;
  flex-direction: row-reverse;
  margin-bottom: var(--space_70);
}
@media (width <= 820px) {
  .SingleA__main {
    flex-direction: column;
    align-items: center;
  }
}

.SingleA__cont {
  flex: 1;
  margin-left: 5%;
}
@media (width <= 820px) {
  .SingleA__cont {
    margin-left: 0;
    margin-bottom: 40px;
  }
}

.SingleA__slide {
  position: relative;
  width: 405px;
  max-width: 100%;
}
@media (width <= 820px) {
  .SingleA__slide {
    width: 405px;
    margin-bottom: 40px;
  }
}
.SingleA__slide .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.SingleA__slide .swiper-pagination-bullet-active {
  background-color: var(--color_font01);
}

.SingleA__cont2:not(:last-child) {
  margin-bottom: var(--space_100);
}

.SingleA__index {
  max-width: 90%;
  margin: var(--space_30) auto var(--space_40);
}
@media (width <= 820px) {
  .SingleA__index {
    max-width: 95%;
  }
}

.AnkerNavi {
  padding: 20px 5%;
  background-color: var(--color_field01);
  border: 5px solid var(--color_border02);
}

.AnkerNavi__head {
  margin-bottom: 1.5em;
  font-size: max(18px, min(2vw, 20px));
}

.AnkerNavi__item {
  position: relative;
  padding-left: 1.1em;
  font-size: max(18px, min(2vw, 20px));
  line-height: 1.5;
}
.AnkerNavi__item:not(:last-of-type) {
  margin-bottom: 1.3em;
}
.AnkerNavi__item > a::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 100vh;
  background-color: var(--color_font01);
  transition: all 0.3s ease;
}
@media (width > 820px) {
  .AnkerNavi__item > a:hover::before {
    transform: translateX(60%);
  }
}
.AnkerNavi__item > a {
  display: block;
  margin-bottom: 1em;
}
.AnkerNavi__item > ol {
  padding-left: 1em;
}

.AnkerNavi__itemSub {
  position: relative;
  margin-top: 0.7em;
  padding-left: 1.2em;
  font-size: 16px;
}
.AnkerNavi__itemSub > a::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 100vh;
  border: thin solid var(--color_font01);
  transition: all 0.3s ease;
}
@media (width > 820px) {
  .AnkerNavi__itemSub > a:hover::before {
    transform: translateX(60%);
  }
}

.PageNavi {
  position: relative;
  text-align: center;
  /*プラグインのスタイルを上書き====================*/
}
.PageNavi .wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: var(--space_100);
}
.PageNavi .wp-pagenavi a, .PageNavi .wp-pagenavi span {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.5em 0 0;
  font-size: 15px;
  color: var(--color_font01);
  border-style: none;
  line-height: 1;
  letter-spacing: 0;
  background-color: var(--color_field01);
  transition: all 0.3s ease;
}
@media (width <= 600px) {
  .PageNavi .wp-pagenavi a, .PageNavi .wp-pagenavi span {
    width: 24px;
    height: 24px;
    margin: 0 0.2em 0 0;
    font-size: 12px;
  }
}
.PageNavi .wp-pagenavi a.current, .PageNavi .wp-pagenavi span.current {
  color: var(--color_font02);
  background-color: var(--color_field06);
}
@media (width > 820px) {
  .PageNavi .wp-pagenavi a:hover, .PageNavi .wp-pagenavi span:hover {
    color: var(--color_font02);
    background-color: var(--color_field06);
  }
}
.PageNavi .wp-pagenavi a.previouspostslink, .PageNavi .wp-pagenavi a.nextpostslink, .PageNavi .wp-pagenavi span.previouspostslink, .PageNavi .wp-pagenavi span.nextpostslink {
  color: var(--color_font01);
  border-radius: 100vh;
  background-color: transparent;
  border: thin solid var(--color_border02);
}
@media (width > 820px) {
  .PageNavi .wp-pagenavi a.previouspostslink:hover, .PageNavi .wp-pagenavi a.nextpostslink:hover, .PageNavi .wp-pagenavi span.previouspostslink:hover, .PageNavi .wp-pagenavi span.nextpostslink:hover {
    color: var(--color_font02);
    background-color: var(--color_field06);
  }
}
.PageNavi .wp-pagenavi a.previouspostslink, .PageNavi .wp-pagenavi span.previouspostslink {
  margin-right: var(--space_20);
}
.PageNavi .wp-pagenavi a.nextpostslink, .PageNavi .wp-pagenavi span.nextpostslink {
  margin-left: var(--space_15);
}
.PageNavi .wp-pagenavi .extend {
  color: var(--color_font01);
  background-color: transparent !important;
  border-style: none;
}
.PageNavi .wp-pagenavi .extend:hover {
  background-image: none;
}

.TurnNavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.TurnNavi__item {
  width: calc((100% - 240px) / 2);
}
@media (width <= 820px) {
  .TurnNavi__item {
    width: calc((100% - 150px) / 2);
  }
}
.TurnNavi__item.-button {
  width: 240px;
}
@media (width <= 820px) {
  .TurnNavi__item.-button {
    width: 150px;
  }
}
.TurnNavi__item.-prev > a, .TurnNavi__item.-next > a {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
}
.TurnNavi__item.-next > a {
  flex-direction: row-reverse;
}

.TurnNavi__ico {
  width: 50px;
}

.TurnNavi__label {
  padding: 0 1em;
}
@media (width <= 820px) {
  .TurnNavi__label {
    display: none;
  }
}

.Category {
  display: flex;
  flex-wrap: wrap;
}
.Category > li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2px;
}
.Category > li:not(:last-child) {
  margin-right: 2px;
}
.PanelA .Category > li {
  font-size: 12px;
}
.CardB .Category > li {
  font-size: 13px;
}

.Category__child {
  display: flex;
  flex-wrap: wrap;
}
.Category__child > li {
  margin-left: 0.5em;
  margin-bottom: 0.3em;
}

.Thumbnail {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.Thumbnail.-variation01 {
  aspect-ratio: 4/3; /* 4:3 */
}
.Thumbnail.-variation02 {
  aspect-ratio: 16/9; /* 16:9 */
}
.Thumbnail.-variation03 {
  aspect-ratio: 1/0.752; /* works スクリーンショット */
}
.Thumbnail > img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transition: all 0.4s ease;
}
@media (width > 820px) {
  .PanelA:hover .Thumbnail > img, .CardA:hover .Thumbnail > img {
    transform: scale(1.1);
  }
}
.CardB .Thumbnail > img {
  object-position: 50% 0;
}
@media (width > 820px) {
  .CardB .Thumbnail a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color_theme01_rgb), 0.8);
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
  }
}
@media (width > 820px) {
  .CardB .Thumbnail a::after {
    content: "GO DETAIL";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 24px;
    color: var(--color_font02);
    font-family: var(--option01_ff);
    font-weight: 300;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease 0.2s;
  }
}
@media (width > 820px) {
  .CardB .Thumbnail a:hover::before, .CardB.-active .Thumbnail a::before {
    opacity: 1;
  }
}
@media (width > 820px) {
  .CardB .Thumbnail a:hover::after, .CardB.-active .Thumbnail a::after {
    opacity: 1;
  }
}

.Button {
  display: block;
  position: relative;
  max-width: 100%;
  appearance: none;
  text-decoration: none;
  font-size: inherit;
  color: inherit;
  cursor: pointer;
  transition: 0.4s;
  line-height: 1.4;
  letter-spacing: 0.07em;
  width: max-content;
}
@keyframes ripple01 {
  0% {
    box-shadow: 0 0 0 0 var(--color_theme01);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--color_theme01_rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color_theme01_rgb), 0);
  }
}
@keyframes ripple02 {
  0% {
    box-shadow: 0 0 0 0 var(--color_field01);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(var(--color_field01_rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--color_field01_rgb), 0);
  }
}
.Button.-solid--variation01 { /*ボタン黒*/
  width: 100%;
  border: thin solid var(--color_border01);
  color: var(--color_field02);
  background-color: var(--color_theme01);
}
@media (width > 820px) {
  .Button.-solid--variation01:hover {
    animation: ripple01 1.5s infinite;
  }
}
.Post .Button.-solid--variation01 {
  width: fit-content;
}
.Button.-solid--variation02 { /*ボタン白*/
  color: var;
  background-color: var(--color_field01);
}
@media (width > 820px) {
  .Button.-solid--variation02:hover {
    animation: ripple02 1.5s infinite;
  }
}
.Button.-nakid--variation01 { /*英字 文字のみ*/
  display: flex;
  font-family: var(--option01_ff);
  font-weight: 400;
  line-height: 1;
}
.Button.-gravityCenter {
  display: Flex;
  align-items: center;
  justify-content: center;
}
@media (width <= 820px) {
  .Button.-gravityCenter {
    text-indent: -0.1em;
  }
}
.Button.-gravityLeft {
  display: Flex;
  align-items: center;
  justify-content: flex-start;
}
.Button.-gravityEach {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.Button.-standard {
  min-height: 3.8em;
  padding: 0.3em 1.2em 0.3em;
}
.Button.-hight {
  min-height: 5em;
  padding: 0.7em 1.5em 0.65em;
}
.Button.-low {
  min-height: 3em;
  padding: 0.5em 1.5em 0.48em;
}
.Button.-thin {
  min-height: 2em;
  padding: 0.35em 1.5em 0.35em;
}
.ButtonSet > li .Button {
  width: 100%;
}

.Button__label {
  position: relative;
  left: -0.3em;
}

.Button__ico {
  position: relative;
  z-index: 2;
  display: block;
  align-items: center;
  line-height: 1;
}
.Button__ico.-arrow01 {
  font-size: 80px;
}
.Button__ico.-arrow02 {
  width: 25px;
  height: 0.7em;
  margin-left: 0.1em;
  transition: all 0.3s ease;
}
@media (width > 820px) {
  .Button:hover .Button__ico.-arrow02 {
    transform: translateX(20%);
  }
}

.ButtonSet {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (width <= 580px) {
  .ButtonSet > li:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.ButtonSet.-col2 > li {
  width: 49%;
}
@media (width <= 580px) {
  .ButtonSet.-col2 > li {
    width: 100%;
  }
}

.Paragraph,
:where(.Post p) {
  line-height: 2;
  letter-spacing: 0.08em;
  color: inherit;
}
.Paragraph:not(:last-child),
:where(.Post p):not(:last-child) {
  margin-bottom: 1.3em;
}
.Paragraph.-small,
:where(.Post p).-small {
  font-size: 14px;
}
.Paragraph.-big,
:where(.Post p).-big {
  font-size: 20px;
}
@media (width <= 820px) {
  .Paragraph.-big,
  :where(.Post p).-big {
    font-size: 18px;
  }
}
@media (width <= 820px) {
  .Usually__body .Paragraph.-big,
  .Usually__body :where(.Post p).-big {
    font-size: 16px;
  }
}
.Paragraph.-huge,
:where(.Post p).-huge {
  font-size: 26px;
  font-weight: 800;
}
.ContSection__issue .Paragraph,
.ContSection__issue :where(.Post p) {
  line-height: 2.4;
}
.PanelA__discription .Paragraph,
.PanelA__discription :where(.Post p) {
  line-height: 1.5;
}
.Usually__body .Paragraph,
.Usually__body :where(.Post p) {
  line-height: 2.2;
}

.Prologue {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: clamp(0px, 15vh, 200px);
  overflow-x: hidden;
}
@media (width <= 1100px) {
  .Prologue {
    padding-top: 180px;
    height: auto;
    overflow: visible;
  }
}
@media (width <= 820px) {
  .Prologue {
    padding-top: 15vw;
    height: 100%;
  }
}
@media (width <= 580px) {
  .Prologue {
    padding-top: 80px;
  }
}

.Prologue__copy {
  width: 35vw;
}
@media (width > 1100px) {
  .Prologue__copy {
    width: auto;
    height: 50%;
  }
}
@media (width <= 820px) {
  .Prologue__copy {
    width: auto;
    height: 35%;
  }
}
.Prologue__copy > img {
  object-fit: contain;
  height: 100%;
}

.Prologue__img {
  width: 42vw;
}
@media (width > 1100px) {
  .Prologue__img {
    position: absolute;
    right: -17%;
    left: 74%;
    bottom: 10%;
    max-width: 697px;
  }
}
@media (width <= 820px) {
  .Prologue__img {
    width: auto;
    height: 30%;
  }
}
@media (width <= 820px) {
  .Prologue__img > img {
    object-fit: contain;
    height: 100%;
  }
}

.Prologue__copySub {
  height: 20%;
  padding-top: 1em;
  font-size: max(15px, min(1.5vw, 20px));
  line-height: 2;
  font-family: var(--default_ff_m);
}
@media (width <= 1100px) {
  .Prologue__copySub {
    font-size: 1.9vw;
    margin-bottom: 4vw;
  }
}
@media (width <= 820px) {
  .Prologue__copySub {
    font-size: 14px;
    height: auto;
  }
}

.Prologue__guide {
  height: 30%;
}
@media (width <= 1100px) {
  .Prologue__guide {
    height: 200px;
  }
}
@media (width <= 820px) {
  .Prologue__guide {
    height: 190px;
  }
}
@media (width <= 580px) {
  .Prologue__guide {
    height: 140px;
  }
}

.Fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 715px;
  z-index: 1;
}
@media (width <= 820px) {
  .Fv {
    min-height: 300px;
  }
}

.Fv__head {
  position: relative;
  margin-top: -100px;
  font-size: max(40px, min(7vw, 70px));
}
@media (width <= 820px) {
  .Fv__head {
    margin-top: -20px;
  }
}
.Fv__head::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: "";
  display: block;
  width: 1px;
  height: 150px;
  background-color: var(--color_border01);
  transform: translate(-50%, calc(100% + 75px));
}
@media (width <= 820px) {
  .Fv__head::after {
    height: 75px;
    transform: translate(-50%, calc(100% + 20px));
  }
}

.Fv__headSub {
  position: absolute;
  left: 50%;
  bottom: 2em;
  text-align: center;
  font-size: max(20px, min(2.3vw, 24px));
  transform: translateX(-50%);
}

.ToScroll {
  position: relative;
  width: 20px;
  height: 80%;
  animation: fuwafuwa 1.5s infinite;
  transition: all 0.5s ease;
}
@media (width <= 820px) {
  .ToScroll {
    animation: fuwafuwa2 1.5s infinite;
  }
}
.ToScroll::before {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 14px;
  height: 1px;
  content: "";
  background-color: var(--color_theme01);
  transform: rotate(-45deg);
  transform-origin: left top;
}
.ToScroll::after {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--color_theme01);
}
.ToScroll.-deactive {
  opacity: 0;
}

.ToScroll__label {
  display: block;
  margin-left: 0.5em;
  font-size: 12px;
  font-family: var(--option01_ff);
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
}

@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 40px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.Footer {
  background-color: var(--color_field03);
}
.Footer.-variation01 {
  background-color: var(--color_field02);
  margin-left: -6px;
  margin-right: -6px;
}

.Footer__inner {
  margin: 0 auto;
  padding: 60px var(--cont_padding);
  max-width: calc(var(--cont_width01) + var(--cont_padding) * 2);
}
@media (width <= 820px) {
  .Footer__inner {
    padding: 50px var(--cont_padding);
  }
}

.Footer__main {
  display: flex;
  justify-content: space-between;
}
@media (width <= 890px) {
  .Footer__main {
    flex-direction: column;
    align-items: center;
  }
}

.Footer__logo {
  width: 30%;
  color: var(--color_font02);
  border-right: thin dotted var(--color_border03);
}
@media (width <= 890px) {
  .Footer__logo {
    width: auto;
    margin-bottom: 30px;
    border-right-style: none;
  }
}

.Footer__elm {
  flex: 1;
  padding-left: 6%;
}
@media (width <= 890px) {
  .Footer__elm {
    width: 85%;
    flex: 0 1 auto;
    padding-left: 0;
  }
}

.Footer__navi {
  margin-bottom: 30px;
}
body.-contact .Footer__navi {
  display: none;
}

.Footer__add {
  width: fit-content;
  margin-left: 1em;
  font-size: 14px;
  color: var(--color_font02);
  line-height: 1.5;
}
@media (width <= 890px) {
  .Footer__add {
    margin: 0 auto;
  }
}
@media (width <= 820px) {
  .Footer__add {
    margin-left: 0;
  }
}
@media (width <= 820px) {
  .Footer__add > span {
    display: block;
  }
}
.Footer__add > span:not(:last-of-type)::after {
  display: inline-block;
  margin: 0 0.5em;
  content: "／";
}
@media (width <= 820px) {
  .Footer__add > span:not(:last-of-type)::after {
    content: none;
  }
}

.Footer__copyright {
  display: block;
  padding: var(--space_70) 0;
  text-align: center;
  font-size: 14px;
  color: var(--color_font01);
  font-family: var(--option01_ff);
}
@media (width <= 820px) {
  .Footer__copyright {
    font-size: 10px;
  }
}

@media (width > 820px) {
  .SubNavi {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (width <= 890px) {
  .SubNavi {
    justify-content: center;
  }
}

.SubNavi__item {
  margin-bottom: 1em;
}
@media (width <= 820px) {
  .SubNavi__item {
    margin-bottom: 0;
  }
}
.Footer__navi .SubNavi__item {
  color: var(--color_font02);
}
.SubNavi__item > a {
  position: relative;
  display: block;
  line-height: 1;
  transition: all 0.3s ease;
}
@media (width > 820px) {
  .SubNavi__item > a {
    padding: 0 1em;
  }
}
@media (width <= 820px) {
  .SubNavi__item > a {
    padding: 0.8em 1.5em 0.8em 0;
    line-height: 1.5;
    border-bottom: thin solid var(--color_border04);
  }
}
@media (width <= 820px) {
  .SubNavi__item > a:first-child {
    border-top: thin solid var(--color_border04);
  }
}
@media (width > 820px) {
  .SubNavi__item > a:hover {
    opacity: 0.6;
  }
}
@media (width > 820px) {
  .SubNavi__item:not(:last-of-type) > a {
    border-right: thin solid var(--color_border03);
  }
}
@media (width <= 1173px) {
  .SubNavi__item:nth-of-type(3) > a {
    border-right-style: none;
  }
}

.SubNavi__ico {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (width > 820px) {
  .SubNavi__ico {
    display: none;
  }
}

.Post > :where(*:not(p)),
.smf-complete-content > :where(*:not(p)) {
  margin-top: 50px;
  margin-bottom: 20px;
}
@media (width <= 768px) {
  .Post > :where(*:not(p)),
  .smf-complete-content > :where(*:not(p)) {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.Post > *:first-child,
.smf-complete-content > *:first-child {
  margin-top: 0;
}
.Post > *:last-child,
.smf-complete-content > *:last-child {
  margin-bottom: 0;
}
.Post h2,
.smf-complete-content h2 {
  color: var(--color_theme01);
  font-size: max(22px, min(2.3vw, 24px));
}
.Post h3,
.smf-complete-content h3 {
  margin: 2em 0 1em;
  color: var(--color_theme01);
  font-size: 18px;
}
.Post iframe,
.smf-complete-content iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.Post :where(p a),
.smf-complete-content :where(p a) {
  color: var(--color_link01);
  text-decoration: underline;
}
@media (width > 820px) {
  .Post :where(p a:hover),
  .smf-complete-content :where(p a:hover) {
    text-decoration: none;
  }
}
.Post figcaption,
.smf-complete-content figcaption {
  padding-top: 8px;
  color: var(--color_font01);
  line-height: 1.4;
}
.Post .wp-element-button, .Post .wp-block-button__link,
.smf-complete-content .wp-element-button,
.smf-complete-content .wp-block-button__link { /*ブロックエディタのスタイルをクリア*/
  background-color: transparent;
  border-radius: 0;
}

.Form__item.-yubin .smf-placeholder[data-name=zip] {
  display: flex;
  align-items: center;
}
.Form__item.-yubin .smf-placeholder[data-name=zip]::before {
  content: "〒";
  display: inline-block;
  margin-right: 0.5em;
  z-index: 2;
}

Form[data-screen=confirm] .Form__item.-required .smf-item__label .smf-item__label__text::after {
  content: none;
}

Form[data-screen=confirm] p.message {
  display: none;
}

.Form__input {
  background-color: var(--color_field08) !important;
  border-style: none !important;
  border-radius: 0 !important;
}
.Form__input.-text {
  width: 100%;
}
.Form__input.-textarea {
  min-height: 10em;
  line-height: 1.5;
}
.Form__input.-narrow {
  width: 10em;
}
.Form__input::placeholder {
  color: var(--color_font04);
}
.Form__input.-yubin {
  position: relative;
  padding-left: 1.5em;
}
.Form__input.-yubin::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "〒";
  display: inline-block;
  margin-right: 0.5em;
  z-index: 2;
}

.smf-button-control__control {
  display: block !important;
  width: 100%;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5em 2em !important;
  background-color: var(--color_theme01) !important;
  color: var(--color_font02) !important;
  background-image: none !important;
  border: thin solid var(--color_theme01) !important;
  transition: all 0.3s ease;
}
@media (width > 820px) {
  .smf-button-control__control:hover {
    color: var(--color_font01) !important;
    background-color: transparent !important;
  }
}
.smf-button-control__control[data-action=back] {
  color: var(--color_font01) !important;
  background-color: transparent !important;
}
@media (width > 820px) {
  .smf-button-control__control[data-action=back]:hover {
    color: var(--color_font02) !important;
    background-color: var(--color_theme01) !important;
  }
}

/* 確認画面のメッセージを状態に応じて非表示 */
Form[data-screen=input] .ContactMessage__confirm,
Form[data-screen=invalid] .ContactMessage__confirm,
Form[data-screen=back] .ContactMessage__confirm {
  display: none;
}

/*プラグインのスタイルを変更、追加　*/
.smf-item__label {
  position: relative;
  padding-left: 1em;
}
.smf-item__label::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  display: block;
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background-color: var(--color_font03);
}
.Form__item.-required .smf-item__label::before {
  background-color: var(--color_theme03);
}

.smf-item__label__text {
  line-height: 1.5;
  font-family: var(--default_ff_m);
}

.smf-label:not(:last-of-type) {
  margin-bottom: 0.7em;
}

.smf-form .smf-checkbox-control__control {
  margin-top: 0;
}

.smf-placeholder:not(:last-child) {
  margin-bottom: 8px;
}
body.-formConfirm .smf-placeholder, body.-formComplete .smf-placeholder {
  line-height: 1.5;
}

.smf-item__description {
  display: none;
}
body.-formInput .smf-item__description, body.-formInvalid .smf-item__description,
.smf-item__description body.-formBack {
  display: block;
}

.smf-complete-content {
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Quick parts=========================================================================================*/
.brakeNarrowPc {
  display: none;
}
@media (width <= 980px) {
  .brakeNarrowPc {
    display: inline;
  }
}

.brakeTablet {
  display: none;
}
@media (width <= 820px) {
  .brakeTablet {
    display: inline;
  }
}

.brakeMobile {
  display: none;
}
@media (width <= 580px) {
  .brakeMobile {
    display: inline;
  }
}

.noBrakeTablet {
  display: inline;
}
@media (width <= 820px) {
  .noBrakeTablet {
    display: none;
  }
}

.noBrakeMobile {
  display: inline;
}
@media (width <= 580px) {
  .noBrakeMobile {
    display: none;
  }
}

.standOut01 {
  font-size: 80%;
}

.standOut02 {
  font-size: 60%;
}
/*# sourceMappingURL=master.css.map */