@charset "UTF-8";
/* settings
---------------------------------------------------*/
/* font */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/* Base
-------------------------------- */
/***** テーマ上書き *****/
:root {
  --ark-color--main: #5d82c1;
}
/***** 初期値 *****/
:root {
  /* 色設定 */
  --font-color-base: #4d4d4d;
  --font-color-gray: #868686;

  --color-accent1: #5d82c1;
  --color-accent2: #231815;
  --color-accent3: #4fc6e0;
  --color-accent4: #ff7bac;

  --color-bk1: #f2f2f2;

  --op-bk: rgba(255,255,255,.8);
  --op-bk2: rgba(255,255,255,.9);

  --bg-color0: white;
  --bg-color1: #f2f2f2;
  --bg-color2: #5d82c1;

  --bg-grd-color1: linear-gradient(
    to top,
    #FFE2C2,
    #FCF2E8
  );
  --accent-grd-color1: linear-gradient(
    to right,
    var(--color-accent1),
    var(--color-accent1-sub)
  );
  --marker1: linear-gradient(
    transparent 60%,
    #e6001f2a 60%
  );
  --marker2: linear-gradient(
    transparent 60%,
    #ffff00 60%
  );

  --sns-line-color: #00b900;

  /* フォント */
  --font-family-jp: 'Noto Sans JP', sans-serif;
  --font-family-jp2: "Noto Serif JP", serif;
  --font-family-en: 'Jost', sans-serif;

  /* スタイル */
  --tx-shadow1: 1px 1px 2px rgba(0,0,0,.5);
  --box-shadow1: 1px 1px 3px rgba(0,0,0,.2);
  --drop-shadow1: drop-shadow(1px 1px 3px rgba(0,0,0,.3));
  --max-width1: 1400px;
  --max-width2: 1200px;
  --max-width3: 1000px;
  --max-width-sp1: 90%;
  --border1: 1px solid var(--color-accent1);
  --border2: 2px solid var(--color-accent1);
  --border3: 3px solid var(--color-accent1);
  --line-gray: 1px solid #A0A0A0;
  --line-gray2: 2px solid #A0A0A0;
  --bd-r1: .5rem;

  --icon-size0-7: .7em;
  --icon-size1-0: 1em;
  --icon-size1-2: 1.2em;

  --border-radius1: 15px;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 90%;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 78%;
  }
}
.wrapper {
  position: relative;
}

/***** デフォルト設定 *****/

/* 背景色設定 */
.-bg-color0 {
  background: var(--bg-color0);
}
.-bg-color1 {
  background: var(--bg-color1);
}
.-bg-color2 {
  background: var(--bg-color2);
}

/* テキスト設定 */
.tx-c { text-align: center; }
.tx-l { text-align: left; }
.tx-r { text-align: right; }

.ac-c1 { color: var(--color-accent1); }
.ac-c2 { color: var(--color-accent2); }

.fw9 { font-weight: 900; }
.fw6 { font-weight: 600; }

p {
  color: var(--font-color-base);
  line-height: 1.8;
  margin-bottom: 1.5em;
  font-weight: 400;
}

p,a,li,h1,h2,h3,h4,dt,dd {
  font-family: var(--font-family-jp);
  color: var(--font-color-base);
}
a {
  text-decoration: none;
  transition: .7s;
  color: var(--color-accent3);
}
a:hover {
  transform: translate(0, -3px);
}
.hover-action {
  transition: .7s;
  &:hover {
    transform: translate(0, -3px);
  }
}

/* その他 */
.tx-white {
  color: white;
}
.opacity1 {
  opacity: 0.1;
}
.opacity2 {
  opacity: 0.2;
}
.opacity3 {
  opacity: 0.3;
}
.opacity5 {
  opacity: 0.5;
}
.opacity8 {
  opacity: 0.8;
}
.opacity9 {
  opacity: 0.9;
}

.w100 { width: 100%; }

.pd-tb6vw {
  padding: 6vw 0;
}
.pd-tb8vw {
  padding: 8vw 0;
}
.pd-tb10vw {
  padding: 10vw 0;
}
.pd-tb12vw {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  .pd-tb8vw {
    padding: 12vw 0;
  }
  .pd-tb10vw {
    padding: 16vw 0;
  }
  .pd-tb12vw {
    padding: 18vw 0;
  }
}

@media screen and (max-width: 768px) {
  .sp-od1 {
    order: 1;
  }
  .sp-od2 {
    order: 2;
  }
}

.pc { display: block }
.pc_tb { display: block }
.sp { display: none }
.pc-inline { display: inline-block }
.sp-inline { display: none }
@media screen and (max-width: 1200px) {
  .pc { display: none }
}
@media screen and (max-width: 768px) {
  .pc_tb { display: none }
  .sp { display: block }
  .pc-inline { display: none }
  .sp-inline { display: inline-block }
}

/* flex設定 */
.flex-t-c {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex-t-sa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.flex-t-l {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.flex-t-r {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
.flex-t-sb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex-s-c {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}
.flex-c-c {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.flex-c-l {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: left;
}
.flex-c-r {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: right;
}
.flex-c-sa {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}
.flex-c-sb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.flex-b-c {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
}
.flex-st-c {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.whalf { width: 46%; }
.w50 { width: 50%; }
@media screen and (max-width: 768px) {
  .whalf { width: 100%; }
  .w50 { width: 100%; }
}


/* header
-------------------------------- */
:root {
  --header-logo-w: 14rem;
  --hm-btn-w: 2.5rem;
  --hm-btn-inner-w: calc(var(--hm-btn-w) * .4);
}
.header {
  position: fixed;
  top: var(--ark-adminbar_height);
  left: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: var(--op-bk);
  padding: .5rem 1rem;
  z-index: 9999;
  & .header__logo {
    width: var(--header-logo-w);
    height: fit-content;
    background: initial;
    border-radius: 0;
    padding: 0;
  }
  & .header__nav {
    height: fit-content;
    background: initial;
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    transition: .5s;
  }
  & .hm-btn {
    position: absolute;
    width: var(--hm-btn-w);
    height: var(--hm-btn-w);
    min-height: 0;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto 0;
    background: white;
    border-radius: 9999px;
    cursor: pointer;
    transition: .5s;
    overflow: hidden;
    opacity: 0;
    & .-inner {
      position: relative;
      width: var(--hm-btn-inner-w);
      aspect-ratio: 1 / .8;
      & span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background: var(--color-accent1);
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        caret-color: transparent;
        transition: .5s;
      }
      & span:first-child {
        bottom: auto;
      }
      & span:last-child {
        top: auto;
      }
    }
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --header-logo-w: 12rem;
  }
  .header {
    & .header__logo {
      padding: 0;
    }
    & .header__nav {
      max-height: 0;
      margin: 2rem 2rem 0 0;
      background: white;
      border-radius: var(--bd-r1);
      opacity: 0;
    }
    & .hm-btn {
      max-height: var(--hm-btn-w);
      opacity: 1;
    }
  }
  .header.-active {
    & .header__nav {
      max-height: 90vh;
      opacity: 1;
    }
    & .hm-btn {
      & .-inner {
        & span {
          opacity: 0;
        }
        & span:first-child {
          opacity: 1;
          bottom: 0;
          transform: rotate(45deg);
        }
        & span:last-child {
          opacity: 1;
          top: 0;
          transform: rotate(-45deg);
        }
      }
    }
  }
}

/* メニュースタイル
-------------------------------- */
:root {
  --menu-icon-w: 1em;
}
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  & > a {
    position: relative;
    display: block;
    width: fit-content;
    height: fit-content;
    font-size: 1rem;
    padding: 0;
    color: var(--color-accent2);
    letter-spacing: .15em;
    line-height: 1.7;
    font-weight: 600;
    /* ナビメニュー内ボタン */
    &.-btn {
      font-size: 90%;
      padding: .5em 1em !important;
      background: var(--color-accent1);
      color: white;
      border-radius: 5px;
    }
  }
  & > a:not(:last-child) {
    margin-right: 2em;
  }
}
@media screen and (max-width: 1200px) {
  .nav-menu {
    position: absolute;
    flex-direction: column;
    width: fit-content;
    top: 2rem;
    right: -20rem;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--bd-r1);
    box-shadow: var(--box-shadow1);
    & > a {
      width: 100%;
      &.-btn {
        text-align: center;
      }
    }
    & > a:not(:last-child) {
      margin-right: 0;
      margin-bottom: 1em;
    }
  }
  .-active .nav-menu {
    right: 2.5rem;
  }
}

/* サブメニュー */
:root {
  --submenu-fukidashi-w: 1rem;
}
.nav-menu .have-menu {
  position: relative;
  width: fit-content;
  height: fit-content;
  font-size: 1rem;
  padding-left: 0;
  color: var(--color-accent2);
  letter-spacing: .15em;
  line-height: 1.7;
  font-weight: 600;
  padding-right: 1.5em;
  font-family: var(--font-family-jp);
  cursor: pointer;
  &::after {
    position: absolute;
    content: "";
    width: .8em;
    height: .8em;
    top: .5em;
    right: 0;
    margin: 0;
    background: var(--color-accent1);
    mask: url(../images/icon-plus.svg) no-repeat center / contain;
    -webkit-mask: url(../images/icon-plus.svg) no-repeat center / contain;
    transition: .5s;
  }
  & .-sub-menu {
    position: absolute;
    top: 1.8rem;
    left: 0;
    max-width: 0;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
    & .-sub-menu-inner {
      position: relative;
      width: fit-content;
      height: fit-content;
      background: var(--op-bk2);
      border-radius: var(--bd-r1);
      padding: 1rem;
      &::before {
        position: absolute;
        content: "";
        width: var(--submenu-fukidashi-w);
        height: var(--submenu-fukidashi-w);
        top: calc(var(--submenu-fukidashi-w) * -1);
        left: var(--submenu-fukidashi-w);
        background: var(--op-bk2);
        clip-path: polygon(50% 0, 100% 100%, 0% 100%);
      }
      & a {
        position: relative;
        display: block;
        width: max-content;
        padding-left: 1.5em;
        font-size: .9rem;
        color: var(--font-color-base);
        &::before {
          position: absolute;
          content: "";
          width: .8em;
          height: .8em;
          top: .5em;
          left: 0;
          margin: 0;
          background: var(--color-accent1);
          mask: url(../images/icon-arrow.svg) no-repeat center / contain;
          -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
        }
      }
      & a:not(:last-child) {
        margin-bottom: 1em;
      }
    }
  }
  &.-active::after {
    transform: rotate(180deg);
    mask: url(../images/icon-minus.svg) no-repeat center / contain;
    -webkit-mask: url(../images/icon-minus.svg) no-repeat center / contain;
  }
  &.-active .-sub-menu {
    max-width: 20rem;
    max-height: 20rem;
    padding-top: var(--submenu-fukidashi-w);
  }
  
}
.nav-menu .have-menu:not(:last-child) {
  margin-right: 2em;
}
@media screen and (max-width: 1200px) {
  .nav-menu .have-menu {
    width: 100%;
    margin-right: 0;
    & .-sub-menu {
      position: relative;
      top: 0;
      & .-sub-menu-inner {
        padding: 1rem .5rem .5rem;
      }
    }
    &.-active .-sub-menu {
      padding-top: 0;
    }
  }
  .nav-menu .have-menu:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1em;
  }
}


/* 固定ページ
-------------------------------- */

/****** 固定ページヘッド ******/
.c-pageTitle__main {
  padding-top: 3rem;
  font-size: 1.6rem;
}
.p-breadcrumb {
  max-width: var(--max-width1);
  padding: .5rem 1rem;
}
.p-topArea.-noimg {
  background: url(../images/mv-back01.webp) no-repeat center top / cover;
}

/****** 共通設定 ******/
.content {
  overflow: hidden;
}
.page:not(.home) .l-container {
  max-width: 100%;
}
.section-contents {
  position: relative;
  width: 100%;
}
.inner {
  position: relative;
  width: var(--max-width-sp1);
  max-width: var(--max-width1);
  padding: 5rem 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 3rem 0;
  }
}

/****** 背景 切り替え ******/
.-white {
  color: white;
}
.bg-black {
  background: var(--color-black);
}
.bg-gray {
  background: var(--color-light-gray);
}

/****** 見出し設定 ******/
:root {
  --h-title1-pd: 6em;
  --h-title1-line: calc(var(--h-title1-pd) - 1em);
}
.h-title1 {
    padding: 0;
    font-size: 1.3rem;
    color: var(--font-color-base);
    margin: .5em 0 2em;
    & span {
      position: relative;
      display: block;
      width: fit-content;
      padding-right: var(--h-title1-pd);
      font-size: 70%;
      color: var(--color-accent1);
      line-height: 1;
      margin-bottom: .7em;
      &::after {
        position: absolute;
        content: "";
        width: var(--h-title1-line);
        height: 1px;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto 0;
        background: var(--color-accent1);
      }
    }
}

.h-title2 {
  font-size: 2.2rem;
  color: var(--color-accent2);
  text-align: center;
  margin-bottom: 1.5em;
  & span {
    display: block;
    font-size: 50%;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
    margin-top: .5em;
  }
}
@media screen and (max-width: 768px) {
  .h-title2 {
    font-size: 1.8rem;
  }
}

.h-title3 {
  position: relative;
  font-size: 1.6rem;
  padding: .4em .8em;
  padding-left: 1.8em;
  color: var(--color-accent2);
  border-bottom: var(--border3);
  margin-bottom: 3rem;
  &::before {
    position: absolute;
    content: "";
    width: var(--icon-size1-0);
    height: var(--icon-size1-0);
    top: 0;
    bottom: 0;
    left: .3em;
    margin: auto 0;
    background: url(../images/icon-plus.svg) no-repeat center / contain;
  }
}
@media screen and (max-width: 768px) {
  .h-title3 {
    font-size: 1.4rem;
  }
}

.h-title4 {
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  letter-spacing: .2em;
  line-height: 1.8;
  color: var(--color-accent2);
  &::after {
    position: absolute;
    content: "";
    width: 3em;
    height: 5px;
    background: var(--color-accent1);
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  &.-wh {
    color: white;
  }
}
@media screen and (max-width: 768px) {
  .h-title4 {
    &::after {
      height: 3px;
    }
  }
}

.h-title5 {
  width: fit-content;
  margin: 0 auto 1.5em;
  padding: .4em 5em;
  font-size: 1.2rem;
  background: var(--color-accent1);
  color: white;
  font-weight: 900;
  border-radius: 9999px;
  letter-spacing: .2em;
}

/* div要素にクラスを付け その中にh2などの要素を入れる */
:root {
  --h-title6-deg: 45deg;
  --h-title6-deg-re: calc(var(--h-title6-deg) * -1);
  --h-title6-shift-y: .7rem;
  --h-title6-shift-x: -.75rem;
  --h-title6-pd: 1em;
  --h-title6-shift-y2: 1rem;
  --h-title6-shift-x2: -.25rem;
  --h-title6-pd2: 2em;
}
.h-title6 {
  position: relative;
  width: fit-content;
  height: fit-content;
  margin: 0 auto 4rem;
  & div {
    position: relative;
    transform: skewX(var(--h-title6-deg));
    overflow: hidden;
    & h2 {
      position: relative;
      text-align: center;
      font-size: 1.7rem;
      color: white;
      font-weight: 900;
      padding: .4em 4em;
      transform: skewX(var(--h-title6-deg-re));
      letter-spacing: .2em;
      & span {
        font-size: 60%;
        font-weight: 600;
      }
    }
    & h2::before {
      position: absolute;
      content: "";
      width: calc(100% - var(--h-title6-pd));
      height: 100%;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      background: var(--color-accent2);
      transform: skewX(-30deg);
      z-index: -1;
    }
  }
}
.h-title6::before, .h-title6::after {
  position: absolute;
  content: "";
  width: 4em;
  height: 2px;
  background: var(--color-accent1);
  transform: rotate(45deg);
  z-index: 2;
}
.h-title6::before {
  bottom: var(--h-title6-shift-y);
  left: var(--h-title6-shift-x);
}
.h-title6::after {
  top: var(--h-title6-shift-y);
  right: var(--h-title6-shift-x);
}

.-double.h-title6 {
  & div {
    & h2::before {
      width: calc(100% - var(--h-title6-pd2));
    }
  }
}
.-double.h-title6::before, .-double.h-title6::after {
  width: 5em;
}
.-double.h-title6::before {
  bottom: var(--h-title6-shift-y2);
  left: var(--h-title6-shift-x2);
}
.-double.h-title6::after {
  top: var(--h-title6-shift-y2);
  right: var(--h-title6-shift-x2);
}
@media screen and (max-width: 768px) {
  .h-title6 {
    & div {
      & h2 {
        padding: .4em 3em;
      }
    }
  }
}

.fukidashi-title {
  position: relative;
  width: fit-content;
  font-size: 1.6rem;
  color: var(--color-accent2);
  padding: 0 4rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-weight: 900;
  letter-spacing: .2em;
  &::before,
  &::after {
    position: absolute;
    content: "";
    height: 100%;
    aspect-ratio: 5 / 12;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: url(../images/lp/icon-fukidashi1.svg) no-repeat center / contain;
  }
  &::before {
    left: 0;
    transform: scaleX(-1);
  }
  &::after {
    right: 0;
  }
}


/****** ボタン設定 ******/

:root {
  --btn-line-w: 1px;
  --btn-border1: var(--btn-line-w) solid var(--color-accent1);
  --btn-border2: var(--btn-line-w) solid var(--color-accent2);
  --btn-icon1-w: 1em;
}

/*メインボタン*/
.btn1 {
  margin: 1rem 0;
  & a {
    position: relative;
    display: block;
    width: fit-content;
    padding: .5em 2.5em;
    padding-right: 3em;
    background: white;
    font-size: 1.1rem;
    color: var(--color-accent1);
    letter-spacing: .1em;
    border: var(--btn-border1);
    font-weight: 600;
    &::after {
      position: absolute;
      content: "";
      width: var(--btn-icon1-w);
      height: var(--btn-icon1-w);
      top: 0;
      bottom: 0;
      right: .5em;
      margin: auto 0;
      background: var(--color-accent1);
      mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
  }
  &.-left a {
    margin: 0 auto 0 0;
  }
  &.-center a {
    margin: 0 auto;
  }
  &.-right a {
    margin: 0 0 0 auto;
  }
  &.-en a {
    font-family: var(--font-family-en);
  }
  &.-down a::after {
    transform: rotate(90deg);
  }
}
@media screen and (max-width: 768px) {
  .btn1 {
    &.-left a,
    &.-center a,
    &.-right a {
      margin: 0 auto;
    }
  }
}

/*LINEボタン*/
.btn-line {
  width: fit-content;
  margin: 1rem auto;
  background: var(--sns-line-color);
  border-radius: var(--bd-r1);
  & a {
    display: flex;
    align-items: center;
    width: fit-content;
    text-align: center;
    font-size: 1.2rem;
    padding: .5em 4em;
    margin: 0 auto;
    color: white;
    font-weight: 600;
    & span {
      display: inline-block;
      width: 1.1em;
      height: 1.1em;
      background: white;
      mask: url(../images/icon-line-color.svg) no-repeat center / contain;
      -weblit-mask: url(../images/icon-line-color.svg) no-repeat center / contain;
      margin-right: .5em;
    }
  }
}


/****** SNSリンク設定 ******/
.sns-link {
  width: fit-content;
  margin: 2rem auto 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  & a {
    position: relative;
    display: block;
    font-size: 1rem;
    width: 9.5em;
    margin-bottom: 1em;
    padding: .5em 1em .5em 3.5em;
    background: white;
    box-shadow: var(--box-shadow1);
    font-weight: 600;
    border-radius: .4em;
    &::before {
      position: absolute;
      content: "";
      width: 1.5em;
      height: 1.5em;
      left: 1em;
      top: 0;
      bottom: 0;
      margin: auto 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
    }
  }
  & a.-line::before {
    background-image: url(../images/icon-line-color.svg);
  }
  & a.-insta::before {
    background-image: url(../images/icon-insta-color.svg);
  }
  & a.-facebook::before {
    background-image: url(../images/icon-fb-color.svg);
  }
  & a:not(:last-child) {
    margin-right: 1em;
  }
}
@media screen and (max-width: 768px) {
  .sns-link {
    margin: 1rem auto 0;
    & a {
      width: 9em;
      font-size: .9rem;
      padding: .5em .5em .5em 3em;
      &::before {
        left: .7em;
      }
    }
  }
}


/****** カラム設定 ******/

/* 約半分の2カラム */
.column-1 {
  &.-tx {
    width: 48%;
  }
  &.-img {
    width: 43%;
    & img {
      width: 100%;
      aspect-ratio: 7 / 5;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
  }
}
@media screen and (max-width: 768px) {
  .column-1 {
    &.-tx, &.-img {
      width: 95%;
    }
    &.-img {
      order: 1;
      margin-bottom: 2rem;
    }
    &.-tx {
      order: 2;
    }
  }
}

/* 3カラム等分 */
:root {
  --column-box-icon-w: 1.7em;
}
.column-3 {
  display: block;
  width: 31%;
  min-width: 25rem;
  margin: 0 1% 2rem;
  & .-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--bd-r1);
    overflow: hidden;
    margin-bottom: 1rem;
    & img, iframe {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  & .-title {
    position: relative;
    font-size: 1.2rem;
    padding: 0 .7em;
    padding-right: 2em;
    border-left: var(--border3);
    margin: 0 0 .7em;
    &::after {
      position: absolute;
      content: "";
      width: var(--column-box-icon-w);
      height: var(--column-box-icon-w);
      top: 0;
      bottom: 0;
      right: 0;
      margin: auto 0;
      background: url(../images/icon-arrow2.svg) no-repeat center / contain;
      filter: var(--drop-shadow1);
    }
  }
  & .-tx {
    font-size: .95rem;
    & span {
      display: block;
      color: var(--color-accent1);
    }
  }
  & .-cat {
    width: fit-content;
    font-size: .9rem;
    padding: .2em 1.5em;
    color: white;
    background: var(--color-accent1);
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: .5em;
  }
}
@media screen and (max-width: 768px) {
  .column-3 {
    min-width: 100%;
  }
}

/* デコレーション */
:root {
  --deco1-w: 13rem;
  --deco1-shift: 1rem;
}
.-deco1 {
  position: relative;
  &::after {
    position: absolute;
    content: "";
    width: var(--deco1-w);
    aspect-ratio: 30 / 13;
    background: url(../images/image-logo.png) no-repeat center / contain;
    z-index: 2;
  }
  &.-rb::after {
    right: var(--deco1-shift);
    bottom: calc(var(--deco1-shift) * -1.7);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --deco1-w: 11rem;
  }
}

/****** トップページ ******/

/* hero */
:root {
  --hero-h: 97vh;
}
.hero {
  position: relative;
  height: var(--hero-h);
  background: url(../images/hero-image01-1.jpg) no-repeat 40% center / cover;
  &::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: black;
    opacity: .1;
  }
}
.hero-inner {
  position: relative;
  display: flex;
  width: fit-content;
  height: 100%;
  max-width: 700px;
  margin: 0 5% 0 auto;
}
:root {
  --hero-img-w: 90%;
  --hero-img-pd: calc((100% - 45%) / 2);
}
.hero-box {
  width: fit-content;
  padding-bottom: 1.5rem;
  & .hero-logo::before, .hero-logo::after {
    position: absolute;
    content: "";
    width: var(--hero-img-pd);
    height: 2px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background: var(--color-accent1);
  }
  & .hero-logo::before {
    left: 0;
  }
  & .hero-logo::after {
    right: 0;
  }
}
.hero-message {
  width: fit-content;
  margin: 40% auto auto;
  & p {
      text-align: left;
      font-size: min(6.1vw, 2.6rem);
      color: white;
      font-weight: 600;
      margin-bottom: 0;
      line-height: 1.7;
      letter-spacing: .15em;
      text-shadow: var(--tx-shadow1);
      padding: 0 .5em;
      transform: skewX(-3deg);
      &.-second {
        padding-left: 1em;
      }
      &.-name {
        font-size: min(3.5vw, 1.3rem);
        font-weight: 400;
        text-align: right;
        border-top: 1px solid white;
        margin-top: 1em;
        padding: 1em .5em 0;
      }
    & span {
      font-size: 80%;
    }
  }
}
@media screen and (max-width: 768px) {
  :root {
    --hero-h: 90vh;
  }
  .hero {
    background: url(../images/hero-image01-1.jpg) no-repeat 38% top / cover;
  }
  .hero-inner {
    margin: 0 auto;
  }
  .hero-message {
    margin: 34% auto auto;
  }
}

/* News / Topics */
:root {
  --top-info-arrow-w: 1rem;
  --top-info-shift: 4rem;
  --top-info-date-w: 5rem;
  --top-info-cat-w: 5rem;
  --top-info-mg: 1rem;
  --top-info-title-w: calc(
    100%
    - var(--top-info-date-w)
    - var(--top-info-cat-w)
    - (var(--top-info-mg) * 2)
  );
}
.top-info {
  position: absolute;
  width: 40%;
  min-width: 40rem;
  bottom: var(--top-info-shift);
  left: 6%;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: var(--box-shadow1);
  padding: 2rem;
  z-index: 2;
  & h2 {
    position: relative;
    font-size: 1.2rem;
    font-family: var(--font-family-en);
    color: var(--color-accent1);
    font-weight: 600;
    overflow: hidden;
    margin-bottom: .5em;
    &::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 2px;
      left: 7.5em;
      bottom: .5em;
      background: var(--color-accent1);
    }
  }
  & a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: .5rem .8rem;
    padding-right: 3rem;
    border-bottom: 1px dotted rgba(0,0,0,.5);
    &::after {
      position: absolute;
      content: "";
      width: var(--top-info-arrow-w);
      height: var(--top-info-arrow-w);
      top: 0;
      bottom: 0;
      right: 1rem;
      margin: auto 0;
      background: var(--color-accent1);
      mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
    }
    & p {
      font-size: .9rem;
      height: fit-content;
      margin-bottom: 0;
      &.-date {
        width: var(--top-info-date-w);
        font-size: .9rem;
        font-family: var(--font-family-en);
      }
      /* categoryを出す場合 */
      &.-category {
        width: var(--top-info-cat-w);
        font-size: 60%;
        text-align: center;
        margin: 0 var(--top-info-mg);
        padding: .3em 1em;
        background: var(--color-accent1);
        color: white;
        font-weight: 600;
        border-radius: 9999px;
      }
      &.-title {
        width: var(--top-info-title-w);
      }
    }
  }
  & a:not(:last-child) {
    margin-bottom: .5rem;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --top-info-shift: 8vh;
    --top-info-title-w: 100%;
  }
  .top-info {
    width: 90%;
    min-width: auto;
    padding: 1.5rem;
    left: 0;
    right: 0;
    & h2 {
      font-size: 1.4rem;
      margin-bottom: 0;
      &::before {
        height: 2px;
      }
    }
    & a {
      flex-wrap: wrap;
      padding: .5rem .2rem;
      & p {
        font-size: .8rem;
        &.-date {
          font-size: .9rem;
        }
        &.-title {
          margin-top: .2em;
          font-size: .95rem;
        }
      }
    }
  }
}

/* about */
.about-wrap {
  & .message-tx {
    margin-bottom: 3rem;
    & h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--color-accent1);
      margin-bottom: 1.5em;
    }
  }
}

/* examination */
.examination-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem auto;
  & .-box {
    width: 23%;
    aspect-ratio: 1 / 1;
    background: white;
    border-radius: var(--bd-r1);
    box-shadow: var(--box-shadow1);
    margin-bottom: 1rem;
    & .-box-inner {
      width: 100%;
      margin: 0 auto;
      & .-icon {
        width: 60%;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
        & img {
          display: block;
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }
      & p {
        text-align: center;
        margin-bottom: 0;
        font-size: .9rem;
        line-height: 1.2;
        & span {
          font-size: .8rem;
          letter-spacing: -.1em;
        }
      }
    }
  }
}
@media screen and (max-width: 480px) {
  .examination-wrap {
    width: 80%;
    & .-box {
      width: 48%;
    }
  }
}


/* features */
.features-wrap {
  & .-box {
    width: 46%;
    margin-bottom: 2rem;
    & img {
      width: 100%;
      aspect-ratio: 7 / 5;
      object-fit: cover;
      border-radius: var(--bd-r1);
    }
    & h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin: .5em 0;
      & span {
        display: inline-block;
        font-size: 215%;
        color: var(--color-accent1);
        font-family: var(--font-family-en);
        margin-right: 0.4em;
        font-weight: 400;
      }
    }
    & p {
      font-size: 1rem;
      margin-left: 1em;
    }
  }
  & .-box:nth-child(2n) {
    & img {
      margin-top: 3rem;
    }
  }
}
@media screen and (max-width: 768px) {
  .features-wrap {
    & .-box {
      width: 100%;  
    }
    & .-box:nth-child(2n) {
      & img {
        margin-top: 0;
      }
    }
  }
}


/* first */
.-first {
  padding: 6rem 0;
  background: url(../images/clinic-image03.jpg) no-repeat center / cover;
  & .first-box {
    width: 85%;
    max-width: 28rem;
    margin: 0 10% 0 auto;
    background: var(--op-bk2);
    border-radius: var(--bd-r1);
    padding: 3rem;
    box-shadow: var(--box-shadow1);
    & h2 {
      position: relative;
      text-align: center;
      font-size: 1.4rem;
      padding: 0 0 1.5em;
      margin-bottom: 1.5em;
      &::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 10px;
        bottom: 0;
        left: 0;
        background: url(../images/dot-line.svg) no-repeat center / contain;
      }
    }
    & p {
      font-size: .9rem;
    }
    & .btn1 {
      margin: 2.5rem auto 0;
      & a {
        font-size: 1rem;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .-first {
    position: relative;
    height: 35vh;
    margin-bottom: 42vh;
    background-position: 23% 53%;
    background-size: 150%;
    & .first-box {
      position: absolute;
      left: 0;
      right: 0;
      bottom: -35vh;
      margin: 0 auto;
    }
  }
}

/* access */
.section-contents.-access {
  border-top: 2px solid var(--color-accent1);
}

:root {
  --map-icon-w: .9em;
  --map-icon-pd: calc(var(--map-icon-w) * 1.4);
}
.address-box {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  & span.-head {
    display: inline-block;
    color: var(--color-accent1);
    margin-right: 1em;
    font-weight: 600;
  }
  & a.-map {
    position: relative;
    display: inline-block;
    font-size: 90%;
    margin-left: 1em;
    padding-left: var(--map-icon-pd);
    font-family: var(--font-family-en);
    text-decoration: underline;
    &::before {
      position: absolute;
      content: "";
      width: var(--map-icon-w);
      aspect-ratio: 7 / 10;
      top: 0;
      bottom: 0;
      left: 0;
      margin: auto 0;
      background: url(../images/icon-map.svg) no-repeat center / contain;
    }
  }
}
@media screen and (max-width: 768px) {
  .address-box {
    width: 97%;
    margin: 0 auto 1rem;
    & span.-head {
      width: 100%;
      margin-bottom: .5em;
    }
    & a.-map {
      width: 100%;
      margin-top: .5em;
      margin-left: 0;
    }
  }
}

:root {
  --access-icon-w: 1.7rem;
  --access-icon-pd: calc(var(--access-icon-w) * 1.2);
}
.access-box {
  margin-bottom: 2rem;
  & .access-column {
    & h3 {
      width: 100%;
      position: relative;
      font-size: 1.1rem;
      font-weight: 600;
      padding-left: 1.5em;
      margin: 1.5em 0;
      &::before {
        position: absolute;
        content: "";
        width: 1em;
        height: 1em;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--color-accent1);
        border-radius: 9999px;
      }
    }
    &.-transport {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      & .-box {
        width: 100%;
      }
    }
    &.-car {
      margin-bottom: 1rem;
    }
    & .-box {
      padding: 0 0 0 var(--access-icon-pd);
      & h4 {
        position: relative;
        font-size: 1.1rem;
        color: var(--color-accent1);
        font-weight: 600;
        border-bottom: 1px solid var(--color-accent1);
        margin-bottom: .5em;
        &::before {
          position: absolute;
          content: "";
          width: var(--access-icon-w);
          height: var(--access-icon-w);
          top: .1em;
          left: calc(var(--access-icon-pd) * -1);
          background-repeat: no-repeat;
          background-position: center;
          background-size: contain;
        }
      }
      &.-train {
        & h4::before {
        background-image: url(../images/icon-train.svg);
      }
      }
      &.-bus {
        & h4::before {
        background-image: url(../images/icon-bus.svg);
      }
      }
      &.-car {
        width: 100%;
        & h4::before {
          background-image: url(../images/icon-car.svg);
        }
      }
      & p {
        line-height: 1.6;
      }
    }
  }
  & a.access-route {
    position: relative;
    display: block;
    margin: -1rem 0 1rem 1rem;
    padding-left: 1.7em;
    &::before {
      position: absolute;
      content: "";
      width: 1.2em;
      height: 1.2em;
      top: 0;
      bottom: 0;
      left: 0;
      margin: auto 0;
      background: var(--color-accent1);
      mask: url(../images/icon-route.svg) no-repeat center / contain;
      -webkit-mask: url(../images/icon-route.svg) no-repeat center / contain;
    }
  }
}
@media screen and (max-width: 1200px) {
  .access-box {
    & .access-column {
      &.-transport {
        width: 100%;
      }
      &.-car {
        width: 100%;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .access-box {
    width: 97%;
    margin: 0 auto 1rem;
    & .access-column.-transport {
      & .-box {
        width: 100%;
      }
    }
  }
}

:root {
  --time-op-s: 35%;
  --time-op-i: url(../images/icon-open.svg);
  --time-cl-s: 30%;
  --time-cl-i: url(../images/icon-close.svg);
  --time-sg-s: 50%;
  --time-sg-i: url(../images/icon-surgery.svg);
}
.time-table {
  width: 100%;
  overflow-x: auto;
  & table {
    border: 0;
    width: 100%;
    min-width: 37rem;
    & tr {
      border: 0;
      & th, td {
        font-size: 1.1rem;
        border: 0;
        background: initial;
        padding: 1em 0 !important;
        color: var(--font-color-base);
      }
      & th {
        text-align: left;
        width: 9em;
        padding-left: .5em !important;
        & span {
          position: relative;
          padding-left: 1.5em;
          &::before {
            position: absolute;
            content: "";
            width: 1em;
            height: 1em;
            top: 0;
            bottom: 0;
            left: 0;
            margin: auto 0;
            background: var(--color-accent3);
            border-radius: 9999px;
          }
        }
      }
      & td {
        width: 3.5em;
        text-align: center;
        font-weight: 600;
        &.-open,
        &.-close,
        &.-surgery {
          mask-repeat: no-repeat;
          mask-position: center;
          -webkit-mask-repeat: no-repeat;
          -webkit-mask-position: center;
        }
        &.-open {
          background: var(--color-accent1);
          mask-size: var(--time-op-s);
          -webkit-mask-size: var(--time-op-s);
          mask-image: var(--time-op-i);
          -webkit-mask-image: var(--time-op-i);
        }
        &.-close {
          background: var(--color-accent4);
          mask-size: var(--time-cl-s);
          -webkit-mask-size: var(--time-cl-s);
          mask-image: var(--time-cl-i);
          -webkit-mask-image: var(--time-cl-i);
        }
        &.-surgery {
          background: var(--color-accent3);
          mask-size: var(--time-sg-s);
          -webkit-mask-size: var(--time-sg-s);
          mask-image: var(--time-sg-i);
          -webkit-mask-image: var(--time-sg-i);
        }
      }
    }
    & tr:not(:first-child) {
      border-top: 1px solid rgba(0,0,0,.2);
      & th {
        padding-left: 1em !important;
      }
    }
  }
  & p {
    margin: 0 1em;
    font-weight: 600;
    padding-bottom: .5em;
    color: var(--color-accent1);
  }
}
@media screen and (max-width: 768px) {
  .-access .column-1 {
    width: 100%;
  }
}

/* top-gallery */
.image-slide {
  .-box {
    padding: 1px;
  }
}



/* slick設定
-------------------------------- */
:root {
  --slick-arrow-w: 3rem;
  --slick-arrow-shift: -5%;
  --slick-dot-size: 15px;
}
.slick-prev, .slick-next {
  width: var(--slick-arrow-w);
  height: var(--slick-arrow-w);
  top: 35%;
  z-index: 2;
}
.slick-prev {
  left: var(--slick-arrow-shift);
}
.slick-next {
  right: var(--slick-arrow-shift);
}
.slick-prev:before, .slick-next:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/icon-arrow2.svg) no-repeat center / contain;
  filter: var(--drop-shadow1);
  opacity: 1;
}
.slick-prev:before {
  transform: scaleX(-1);
}
.slick-dots li button:before {
  font-size: var(--slick-dot-size);
  color: var(--color-accent2);
}
.slick-dots li.slick-active button:before {
  color: var(--color-accent1);
  opacity: 1;
}

/* lp-flow slider設定 */
:root {
  --flow-arrow-w: 2rem;
  --flow-arrow-shift: 5%;
}
.service-page {
  & .slick-prev, .slick-next {
    width: var(--flow-arrow-w);
    height: var(--flow-arrow-w);
    top: 50%;
  }
  & .slick-prev {
    left: var(--flow-arrow-shift);
  }
  & .slick-next {
    right: var(--flow-arrow-shift);
  }
  & .slick-prev:before, .slick-next:before {
    background: var(--color-accent1);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
}


/* 下層ページ（固定ページ）
-------------------------------- */

/* WPによる投稿した時のスタイル */
.page:not(.home) {
  & .content {
    & .page-head {
      position: relative;
      padding: 10rem 0 6rem;
      border-bottom: 2px solid var(--color-accent1);
      &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: black;
        opacity: .3;
      }
      & h1 {
        position: relative;
        text-align: center;
        font-size: 1.6rem;
        color: white;
        text-shadow: var(--tx-shadow1);
        letter-spacing: .2em;
      }
    }
    & .page-contents {
      & h2, h3, h4, h5 {
        position: relative;
        margin: 1.5em 0 1em;
      }
      & h2 {
        font-size: 1.4rem;
        border-bottom: .2em solid var(--color-accent1);
        padding: .3em;
      }
      & h3 {
        font-size: 1.3rem;
        border-left: .3em solid var(--color-accent1);
        padding: 0 .7em;
      }
      & h4 {
        font-size: 1.2rem;
        padding-left: 1.3em;
        &::before {
          position: absolute;
          content: "";
          width: .7em;
          height: .7em;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto 0;
          background: var(--color-accent1);
          border-radius: 9999px;
        }
      }
      & h5 {
        font-size: 1.15rem;
        color: var(--color-accent1);
      }

    }
  }
}
@media screen and (max-width: 768px) {
  .page:not(.home) {
    & .content {
      & .page-head {
        padding: 8rem 0 6rem;
      }
    }
  }
}


/* 共通スタイル */
:root {
  --p-title-icon-w: 4rem;
  --p-title-icon-pd: calc(var(--p-title-icon-w) * 1.3);
}
.p-title {
  position: relative;
  padding-left: var(--p-title-icon-pd);
  margin-bottom: 3.5rem;
  &::before {
    position: absolute;
    content: "";
    width: var(--p-title-icon-w);
    height: var(--p-title-icon-w);
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  & h2 {
    font-size: 1.3rem;
    padding: .2em;
    border-bottom: 2px solid var(--color-accent1);
    & span {
      position: relative;
      display: inline-block;
      font-size: 60%;
      opacity: .6;
      padding-left: 2em;
      margin-left: 1em;
      &::before {
        position: absolute;
        content: "";
        width: 1.5em;
        height: 1px;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--font-color-base);
      }
    }
  }
}
.-ganken .p-title::before {
  background-image: url(../images/icon-treatment01.svg);
}
.-ganka .p-title::before {
  background-image: url(../images/icon-treatment03.svg);
}
.-beauty .p-title::before {
  background-image: url(../images/icon-treatment04.svg);
}
.-keisei .p-title::before {
  background-image: url(../images/icon-treatment02.svg);
}
@media screen and (max-width: 768px) {
  .p-title {
    margin-bottom: 2.5rem;
  }
}

.post-contents {
  & .message-tx > *:first-child,
  & .whalf > *:first-child {
    margin-top: 0;
  }
  & .-box {
    margin: 2.5rem 0;
  }
  & h3 {
    font-size: 1.2rem;
    border-left: .25em solid var(--color-accent1);
    padding: 0 .7em;
    margin: 2.5rem 0 1.5rem;
    & span {
      display: inline-block;
      position: relative;
      font-size: 65%;
      padding-left: 2em;
      opacity: .7;
      margin-left: 1em;
      &::before {
        position: absolute;
        content: "";
        width: 1.5em;
        height: 1px;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--font-color-base);
      }
    }
  }
  & h4 {
    position: relative;
    font-size: 1rem;
    color: var(--color-accent1);
    line-height: 1.7;
    margin: 2rem 0 1rem;
    border-bottom: 1px solid var(--color-accent1);
    padding: .3em .2em;
  }
  & ul {
    margin: 1rem 0;
    padding: 0;
    & li {
      position: relative;
      list-style: none;
      padding: .5em;
      padding-left: 1.7em;
      font-weight: 600;
      &::before {
        position: absolute;
        content: "";
        width: 1.2em;
        height: 1.2em;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--color-accent4);
        mask: url(../images/icon-check.svg) no-repeat center / contain;
        -webkit-mask: url(../images/icon-check.svg) no-repeat center / contain;
      }
      & a {
       color: var(--font-color-base);
       text-decoration: underline; 
      }
    }
  }
  & ol {
    margin: 1rem 0;
    & li {
      padding: .3em;
      &::marker {
        color: var(--color-accent1);
        font-weight: 600;
      }
    }
  }
  & p {
    margin-bottom: 1em;
  }
  & img {
    border-radius: var(--bd-r1);
  }
}

/* post-floor-map */
.floor-map-wrap {
  & .-box {
    & h3 {
      font-size: 1.1rem;
      border-left: 4px solid var(--color-accent1);
      padding: .1em .5em;
      line-height: 1;
      margin-bottom: 1em;
    }
    & img {
      border-radius: var(--bd-r1);
    }
    & p {
      font-size: .9rem;
      margin: 1rem 0 0;
    }
  }
}

/* post-doctor */
:root {
  --career-dt-w: 8em;
  --career-dd-w: calc(100% - var(--career-dt-w));
}
.doctor-profile {
  margin: 2rem 0 1.5rem;
  & p {
    margin-bottom: 0;
  }
  & .clinic-name {
    font-size: .85rem;
    color: var(--color-accent1);
  }
  & .doctor-name {
    font-size: 1.2rem;
    & span {
      display: inline-block;
      font-size: 70%;
      margin-right: 1em;
    }
  }
  & .doctor-career {
    margin: 1.5rem 0;
    padding: .7rem .5rem;
    border-top: 3px double var(--color-accent1);
    border-bottom: 3px double var(--color-accent1);
    & p, dl dt, dl dd {
      font-size: .9rem;
    }
    & p {
      padding: 0 .5em;
    }
    & dl {
      display: flex;
      flex-wrap: wrap;
      margin-top: .5rem;
      padding-top: .5rem;
      border-top: 1px dotted var(--color-accent1);
      & dt {
        width: var(--career-dt-w);
        font-family: var(--font-family-en);
        color: var(--color-accent1);
        padding: .2em 0 0 .5em;
        font-weight: 600;
      }
      & dd {
        width: var(--career-dd-w);
      }
    }
    & .doctor-career-inner.-bd dl {
      border-top: 1px solid var(--color-accent1);
    }
  }
}

/* post-examination */
.-post-examination {
  & .inner {
    padding: 1rem 0;
  }
  & .examination-wrap {
    max-width: 600px;
  }
}
.post-examination-box {
  & .column-1 {
    &.-img {
      width: 32%;
    }
    &.-tx {
      width: 57%;
    }
  }
}
@media screen and (max-width: 768px) {
  .post-examination-box {
  & .column-1 {
    &.-img, &.-tx {
      width: 100%;
    }
  }
}
}

/* post-hiyou */
.post-hiyou-wrap h2 {
  width: 100%;
}
.post-hiyou-wrap:not(:last-child) {
  margin-bottom: 4rem;
}
:root {
  --hiyou-dt-w: 10em;
  --hiyou-dd-w: calc(100% - var(--hiyou-dt-w));
  --hiyou-dt-w: 100%;
  --hiyou-dd-w: 100%;
}
.hiyou-box {
  & dl {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--color-accent1);
    margin: 2rem 0;
    padding-bottom: .5rem;
    & dt {
      position: relative;
      width: var(--hiyou-dt-w);
      text-align: left;
      font-size: 1.05rem;
      font-weight: 600;
      padding-left: 1.5em;
      color: var(--color-accent1);
      margin-bottom: 1rem;
      &::before {
        position: absolute;
        content: "";
        width: 1em;
        height: 3px;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--color-accent1);
      }
    }
    & dd {
      width: var(--hiyou-dd-w);
      padding: 0 1rem .5rem;
      & h4 {
        text-align: left;
        border-bottom: 1px dotted var(--color-accent1);
        padding: .2em .4em;
        margin: 1rem 0 .5rem;
      }
      & p {
        margin-bottom: 0;
        font-size: .8rem;
        margin: 0 0 0 .5rem;
        &.-bf {
          color: var(--font-color-gray);
        }
        &.-comment {
          font-size: 80%;
          color: var(--font-color-gray);
          margin: 1em;
        }
        & span {
          display: inline-block;
          font-weight: 600;
          &.-price-bf {
            font-size: 120%;
            margin: 0 .2em;
            font-family: var(--font-family-en);
            text-decoration: line-through;
          }
          &.-price {
            font-size: 170%;
            color: var(--color-accent4);
            font-family: var(--font-family-en);
            margin: 0 .3em;
          }
        }
      }
    }
  }
}



/* 投稿 / アーカイブ 共通設定
-------------------------------- */

/* ぱんくず */
.p-breadcrumb {
  svg:not([fill]) {
    fill: var(--color-accent1);
  }
}
.single-post .p-breadcrumb, .archive .p-breadcrumb {
    position: relative;
    top: 0;
    width: 100%;
    margin: 0 0 0 auto;
    z-index: 9;
    & .p-breadcrumb__list {
      padding: 0;
      justify-content: flex-end;
    }
}
@media screen and (max-width: 768px) {
  .single-post .p-breadcrumb, .archive .p-breadcrumb {
    & .p-breadcrumb__list {
      justify-content: flex-start;
    }
  }
}



.single-page, .archive-page {
  margin-top: 6rem;
  margin-bottom: 4rem;
  & .p-entry__head {
    margin-bottom: 2rem;
  }
  & .p-entry__content.c-postContent {
    padding: 0 .5rem;
  }
  & .page-contents {
    width: 90%;
    max-width: var(--max-width3);
    margin: 0 auto;
    /* アイキャッチ画像 */
    & .p-entry__thumb {
      width: 80%;
      margin: 1rem auto;
    }
    /* 見出し */
    & h1 {
      font-size: 1.5rem;
      padding: .4em .5em;
      border-top: var(--border2);
      border-bottom: var(--border2);
      margin-top: 3rem;
    }
    & h2 {
      font-size: 1.3rem;
      border-bottom: var(--border2);
      padding: .2em .4em;
    }
    & h3 {
      font-size: 1.2rem;
      padding: 0 .4em;
      padding-left: 1em;
      border-left: var(--border3);
    }
    & img {
      width: auto;
      max-height: 45vh;
      margin: 0 auto;
      border-radius: var(--bd-r1);
    }
  }
  /* 関連記事 */
  & .-related .p-postList__title {
    font-size: .9rem;
  }
}
.archive-page {
  & .page-contents {
    & h2 {
      font-size: .9rem !important;
    }
  }
}

@media screen and (max-width: 768px) {
  .single-page, .archive-page {
    margin-top: 6.5rem;
    & .page-contents {
      & .c-pageTitle__main {
        font-size: 1.2rem;
        margin-top: 1rem;
      }
    }
    /* 関連記事 */
    & .-related .p-postList__title {
      font-size: .9rem;
    }
  }
}

/* コラム一覧 */
.p-postList__item {
  & img.c-postThumb__img {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}


/* サイドバー・関連情報
-------------------------------- */
aside#sidebar {
  margin-top: 4rem;
}
aside#sidebar h2.wp-block-heading,
.p-entry__related h2.c-bottomSection__title {
  position: relative;
  font-size: 1rem;
  padding-left: 2.5rem;
  text-align: left;
}
aside#sidebar h2.wp-block-heading::before,
.p-entry__related h2.c-bottomSection__title::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent1);
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
}


/* プラグイン設定
-------------------------------- */
:root {
  --form-input-mg: 2rem;
  --form-input-w: calc(100% - (var(--form-input-mg)) * 2);
}

/****** forminator ******/
form.forminator-ui {
  width: 100% !important;
  max-width: 800px;
  margin: 0 auto !important;
}
.forminator-field {
  text-align: left;
}

.forminator-field label {
  position: relative;
  padding: 1em 1.5em 1em 2em;
  font-size: 1.1rem;
  line-height: 1 !important;
  font-weight: 600;
  color: var(--color-accent1);
  font-family: var(--font-family-jp);
  border-bottom: 1px solid #999 !important;
  margin-bottom: 1.5rem !important;
}
.forminator-field label::before {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  top: 0;
  bottom: 0;
  left: .4em;
  margin: auto 0;
  background: var(--color-accent3);
  mask: url(../images/icon-check.svg) no-repeat center center / contain;
  -webkit-mask: url(../images/icon-check.svg) no-repeat center center / contain;
}

.forminator-field input,
.forminator-field textarea {
  max-width: var(--form-input-w) !important;
  margin-left: var(--form-input-mg) !important;
  border: 1px solid #999;
  border-radius: 3px !important;
  background: #f9f4ed;
}

.forminator-button {
  display: block !important;
  background: var(--color-accent1) !important;
  margin: 0 auto 1rem !important;
  padding: 1em 2.5em !important;
  border-radius: 3px !important;
  box-shadow: var(--box-shadow1) !important;
  color: white !important;
  font-weight: 600;
  letter-spacing: .2em;
}

span.forminator-error-message,
span.forminator-required {
  color: var(--color-accent1) !important;
  font-size: 80%;
}

.forminator-field-consent {
  & .forminator-field {
    margin-top: 2rem !important;
  }
  & .forminator-checkbox__wrapper {
    justify-content: center;
    align-items: center !important;
  }
  & .forminator-field label {
    margin-bottom: 0 !important;
    border: 0 !important;
    &::before {
      display: none;
    }
  }
  & .forminator-checkbox {
    padding: 0 !important;
  }
}

/* 必須マーク */
span.forminator-required {
  display: inline-block;
  position: relative;
  color: initial;
  margin-left: 1rem;
  &::after {
    position: absolute;
    content: "必須";
    width: 4em;
    height: fit-content;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    font-size: .7rem;
    padding: .3em 0;
    color: white;
    background: var(--color-accent4);
    text-align: center;
    letter-spacing: .2em;
    border-radius: 2px;
    font-weight: 600;
  }
}



/* フッター
-------------------------------- */
.footer-wrap {
  width: 90%;
  margin: 0 auto;
  padding: 5rem 0 4rem;
}
.footer-info {
  width: fit-content;
  & .-logo {
    width: 20rem;
    margin-bottom: 1.5rem;
  }
  & p {
    margin-left: 2rem;
    &.-tel {
      font-size: 2rem;
      font-family: var(--font-family-en);
      font-weight: 600;
      color: var(--color-accent1);
      margin-bottom: .5em;
      & span {
        display: inline-block;
        font-size: 50%;
        margin-right: .5em;
      }
    }
    &.-address {
      font-size: 1rem;
    }
  }
}
@media screen and (max-width: 768px) {
  .footer-wrap {
    width: 100%;
    justify-content: center;
    padding: 4rem 0 2rem;
    .footer-info {
      & .-logo {
        margin: 0 auto;
      }
      & p {
        margin: 0 auto 1.5rem;
        text-align: center;
      }
    }
  }
}

.footer-menu {
  padding-top: 1rem;
  & .-menu-box {
    width: max-content;
    padding-left: 3rem;
    & p, a {
      font-size: .9rem;
      font-weight: 600;
      margin-bottom: 1em;
      color: var(--font-color-base);
    }
    & p {
      color: var(--color-accent1);
      font-weight: 900;
    }
    & a {
      display: block;
      position: relative;
      padding-left: 1.5em;
      &::before {
        position: absolute;
        content: "";
        width: .8em;
        height: .8em;
        top: 0;
        bottom: 0;
        left: 0;
        margin: auto 0;
        background: var(--color-accent1);
        mask: url(../images/icon-arrow.svg) no-repeat center / contain;
        -webkit-mask: url(../images/icon-arrow.svg) no-repeat center / contain;
      }
      &.-btn {
        font-size: 90%;
        padding: .5em 1em !important;
        background: var(--color-accent1);
        color: white;
        border-radius: 5px;
        &::before {
          display: none;
        }
      }
    }
    & .-sub-box {
      & a {
        font-size: 90%;
      }
    }
  }
}
@media screen and (max-width: 768px) {
  .footer-menu {
    width: 100%;
    justify-content: space-around;
    & .-menu-box {
      padding-left: 0;
      & p, a {
        font-size: .8rem;
      }
      & .-sub-box {
        & a {
          font-size: .7em;
        }
      }
    }
  }
}

.footer-end {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 2rem;
  & .-copy {
    width: fit-content;
    font-size: .8rem;
    line-height: 1;
    margin: 0;
  }
  & .-navi {
    & a {
      display: inline-block;
      font-size: .8rem;
      text-align: right;
      color: var(--font-color-base);
      padding: 0 1em;
      line-height: 1;
    }
    & a:not(:last-child) {
      border-right: 1px solid var(--font-color-base);
    }
  }
}
@media screen and (max-width: 768px) {
  .footer-end {
    justify-content: center;
    flex-direction: column-reverse;
    & .-navi {
      margin-bottom: 2rem;
    }
  }
}