@charset "utf-8";
/* ##############################################################################

    COMMON

############################################################################## */

html {
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  height: 100%;
}

/* layout
**************************************** */

/* --- inner --- */
.inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.inner-sm {
  max-width: 960px;
}

.inner-lg {
  max-width: 1285px;
}

/* --- section_pdg --- */
.section_pdg {
  padding-block: 172px;
}
.section_pdg-sm {
  padding-block: 80px;
}
.section_pdg-top {
  padding-top: 64px;
}

.section_pdg-btm {
  padding-bottom: 160px;
}

@media screen and (max-width: 1080px) {
  .inner {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  /* --- section_pdg --- */
  .section_pdg,
  .section_pdg-sm {
    padding-block: 40px;
  }

  .section_pdg-top {
    padding-top: 40px;
  }

  .section_pdg-btm {
    padding-bottom: 40px;
  }
}

/* flex
**************************************** */

/* --- ざっくりflexレイアウト --- */
.flex-col1 {
  display: block;
}

.flex-col2,
.flex-col3,
.flex-col4 {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-col2 > * {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 5%;
}

.flex-col2 > *:nth-child(even) {
  margin-right: 0;
}

.flex-col2 > *:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.flex-col3 > * {
  width: 31.33%;
  margin-right: 3%;
  margin-bottom: 3%;
}

.flex-col3 > *:nth-child(3n) {
  margin-right: 0;
}

/*.flex-col3 > *:nth-last-child(-n+3) { margin-bottom: 0; }*/
.flex-col4 > * {
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}

.flex-col4 > *:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1080px) {
  /* --- ざっくりflexレイアウト - sp --- */
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > * {
    width: 48.5%;
    margin-bottom: 16px;
    margin-right: 8px;
  }

  .flex-col2.flex-sp-block > *:last-child,
  .flex-col3.flex-sp-block > *:last-child,
  .flex-col4.flex-sp-block > *:last-child {
    margin-bottom: 0;
  }

  .flex-sp-col2 > *,
  .flex-sp-col2.flex-col3 > *:nth-child(3n) {
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col2 > *:nth-child(even) {
    margin-right: 0;
  }

  .flex-sp-col3 > *,
  .flex-sp-col3.flex-col4 > *:nth-child(4n) {
    width: 31.33%;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  .flex-sp-col3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .flex-col2.flex-sp-block > *,
  .flex-col3.flex-sp-block > *,
  .flex-col4.flex-sp-block > * {
    width: 100%;
    margin-bottom: 16px;
    margin-right: 0;
  }
}

/* bg
********************************************** */
.lps_sec:nth-child(2n) {
  background-color: #f7f7f7;
}

/* ttl
********************************************** */

/* --- page_ttl --- */
.page_ttl {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 240px;
  line-height: 1.5;
  background-color: #eee;
  background-size: cover;
  background-position: center;
}

.page_ttl-jp {
  display: block;
  margin-bottom: 16px;
  font-size: 350%;
  font-family: "A1 Mincho", serif;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.page_ttl-en {
  display: inline-block;
  text-transform: capitalize;
  color: #989ca1;
  font-family: serif;
  font-weight: 600;
}

/* --- section_ttl(トップのみ) --- */
.section_ttl > * {
  display: block;
  text-align: center;
}

.section_ttl .jp {
  letter-spacing: 0.16em;
  line-height: 1.4;
  font-size: 250%;
  font-family: "A1 Mincho", serif;
}

.section_ttl .en {
  letter-spacing: 0.12em;
  font-family: serif;
  font-weight: 600;
  color: #989ca1;
  text-transform: capitalize;
  font-size: 100%;
}

/* --- ttl --- */
.ttl-01,
.ttl-02,
.ttl-03,
.ttl-04 {
  position: relative;
  z-index: 1;
  font-family: "A1 Mincho", serif;
}

.ttl-01 {
  font-size: 400%;
  font-weight: var(--font-weight-heading);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.ttl-01::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 32px;
  background-color: var(--clr-text-secondary);
}

.ttl-01 ruby rt {
  color: #aaa;
  font-size: 40%;
  transform: translateY(-8px);
}

.ttl-02 {
  font-size: 300%;
  font-weight: var(--font-weight-heading);
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: #019f8b;
}

.ttl-03 {
  font-size: 250%;
  font-weight: var(--font-weight-heading);
  line-height: 1.5;
  letter-spacing: 0.103em;
}

.ttl-03 + p,
.ttl-04 + p {
  margin-top: 16px;
}
.ttl-04 {
  font-size: 200%;
  line-height: 1.6;
  letter-spacing: 0.03em;
}

.lps_sec .ttl-01 {
  margin-bottom: 48px;
}

.lps_sec .ttl-02 {
  margin-bottom: 40px;
}

.lps_sec * + .ttl-02 {
  margin-top: 64px;
}

.lps_sec .ttl-03 {
  margin-bottom: 32px;
}

.home .ttl-01 {
  display: block;
  line-height: 1em;
}

.ttl-01.pc-none {
  display: none;
}

.home .ttl-01 small {
  font-size: 25%;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 40px;
  color: #ccc;
  line-height: 1em;
}

.home .ttl-01::after {
  display: none;
}

@media screen and (max-width: 1080px) {
  /* --- page_ttl --- */
  .page_ttl {
    padding-top: 32px;
    padding-bottom: 32px;
    max-width: calc(100% - 32px);
    margin: auto;
    height: 190px;
  }

  .page_ttl-jp {
    font-size: 200%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  /* --- ttl --- */
  .ttl-01 {
    font-size: 186% !important;
    letter-spacing: 1px;
  }

  .ttl-01::before {
    top: 0;
    margin: 25px auto 0;
  }

  .ttl-02 {
    font-size: 172% !important;
  }

  .ttl-03 {
    font-size: 130% !important;
  }
  .ttl-04 {
    font-size: 120%;
  }

  .lps_sec .ttl-01 {
    margin-bottom: 32px;
  }

  .lps_sec .ttl-02 {
    margin-bottom: 24px;
  }

  .lps_sec .ttl-03 {
    margin-bottom: 16px;
  }
}

/* breadcrumbs
**************************************** */
.breadcrumbs {
  padding: 24px 0;
  font-family: var(--font-jp-heading);
  font-size: 87%;
  background-color: var(--clr-bg-01);
  color: var(--clr-text-secondary);
}
.breadcrumbs > .inner {
  max-width: 83.33%;
}

.breadcrumbs a {
  font-size: var(--font-size-txt-sm);
  font-weight: var(--font-weight-bold);
  line-height: 1.6;
  letter-spacing: .03em;
  color: var(--clr-text-secondary);
}

/* txt
**************************************** */
.txt-lg {
  font-size: 107%;
}

.txt-sm {
  font-size: 93%;
}

.txt-wh {
  color: #fff;
}

.txt-or {
  color: #ff6600;
}

.txt-attention-kome {
  position: relative;
  padding-left: 1.4em;
}

.txt-attention-kome::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.txtarea p:not(:last-child) {
  margin-bottom: 1em;
}

.bold {
  font-family: sans-serif;
  font-weight: 600;
  color: #019f8b;
}

/* --- font --- */
.font-mincho {
  font-family: "A1 Mincho", serif;
}

.font-en {
  font-family: serif;
  font-weight: 600;
}

/* --- color --- */
.color1 {
  color: #019f8b;
}

/* btn
********************************************** */
.btn + .btn {
  margin-top: 8px;
}

.btn a {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 12px 64px 16px 24px;
  border: 1px solid;
  min-width: 256px;
  text-align: center;
  letter-spacing: 0.24em;
  font-family: "A1 Mincho", serif;
}

.btn svg {
  fill: #262424;
  transition: all 0.4s ease-out;
}

.btn a:hover svg {
  fill: #019f8b;
}

.btn a[target="_blank"] {
  padding-right: 56px;
}

.home .btn a[target="_blank"] {
  padding-right: 66px;
  padding-left: 48px;
}

.btn a[href$=".pdf"] {
  padding-left: 56px;
}

.btn a::after,
.home .btn a[target="_blank"]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 44px;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 46%;
  background-color: #262424;
  transition: all 0.4s ease-out;
}

.btn a.smooth::before {
  content: "";
  top: calc(50% - 7px);
  width: 8px;
  height: 8px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
}

.btn a[href$=".pdf"]::before {
  display: none;
}

.btn a::before,
.home .btn a[target="_blank"]::before {
  content: url(../images/common/btn_arrow.svg);
  position: absolute;
  top: 17%;
  right: 20px;
  display: block;
  transition: all 0.2s ease-out;
}

.btn a:hover {
  color: #019f8b;
}

.btn a:hover::after {
  background-color: #019f8b;
}

.btn a:hover::before {
  content: url(../images/common/btn_arrow-green.svg);
}

.btn a.smooth:hover::before {
  content: "";
}

@media screen and (max-width: 767px) {
  .btn a[target="_blank"] {
    padding-right: 32px;
  }

  .btn a[target="_blank"]::after {
    /*right: 10px;*/
  }

  .btn a[href$=".pdf"]::after {
    right: 7px;
    width: 20px;
    height: 9px;
  }

  .btn a::before,
  .home .btn a[target="_blank"]::before {
    line-height: 1em;
    top: 35%;
  }
}

/* ##############################################################################

    HEADER

############################################################################## */

/* header
**************************************** */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 52px;
  line-height: 1;
  z-index: 9990;
  transition: all 0.4s ease-out;
}

.header > .inner {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding-left: 56px;
}

.header--logo small {
  margin-top: 10px;
  text-align: center;
  font-weight: normal;
}

@media screen and (max-width: 1600px) {
  .header {
    padding-top: 32px;
  }

  .header > .inner {
    padding-left: 24px;
  }
}

@media screen and (max-width: 1080px) {
  .header--logo small {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .header--nav {
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header .inner {
    padding-left: 16px;
  }
}

/* gnav
********************************************** */
.gnav--menu {
  height: 100%;
  padding-right: 344px;
}

.gnav--link {
  position: relative;
  display: inline-block;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  text-orientation: inherit;
  padding: 16px 12px 0;
  font-family: serif;
  letter-spacing: 0.34em;
  vertical-align: middle;
  color: #fff;
  top: 8px;
}

.gnav--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 8px;
  background-color: #fff;
  transition: all 0.4s ease-out;
}
.gnav--link[href="javascript:void(0);"]:hover {
  color: #fff;
}
.gnav--link:not([href="javascript:void(0);"]):hover {
  opacity: 0.7;
}

.sub_nav-link {
  position: relative;
}

.gnav_sub_toggle {
  display: none;
  cursor: pointer;
}

.head_sub_nav--wrap {
  position: absolute;
  left: -213px;
  z-index: 100;
  display: block;
  padding-top: 12px;
  transition: 0.4s ease-out;
  opacity: 0;
  pointer-events: none;
}

.head_sub_nav {
  position: relative;
  width: 468px;
  padding: 8px 8px 3px;
  border: 1px solid #fff;
}

.head_sub_nav::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 0;
  right: 0;
  margin: auto;
  width: 8px;
  border: 5px solid transparent;
  border-bottom: 8px solid #fff;
}

.head_sub_nav li {
  width: 49.5%;
  margin-bottom: 5px;
}

.head_sub_nav li a {
  display: block;
  background-color: #fff;
  padding: 12px 8px;
  border-radius: 4px;
  color: #019f8b;
  letter-spacing: 0.24em;
  font-family: serif;
  text-align: center;
}

/* ---CTA --- */
.gnav--contact,
.gnav--tel {
  position: absolute;
  top: 0;
  right: 0;
  height: auto !important;
}

.gnav--tel {
  top: 88px;
}

.gnav--contact a,
.gnav--tel a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  width: 304px;
  height: 88px;
  font-family: "A1 Mincho", serif;
  letter-spacing: 0.14em;
  text-align: center;
}

.gnav--contact a {
  background-color: #019f8b;
  color: #fff;
  font-size: 113%;
  line-height: 1.4;
}

.gnav--contact a:hover {
  background-color: #168274;
}

.gnav--tel a {
  background-color: #fff;
  line-height: 1.5;
}

.gnav--contact a img,
.gnav--tel a img {
  margin-right: 12px;
}

.gnav--contact a > span,
.gnav--tel a > span {
  flex: 1;
}

.gnav--tel .num {
  font-size: 160%;
  line-height: 1;
  font-family: serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/*.sub_nav-link > a {
    pointer-events: none;
  }*/

@media screen and (max-width: 1600px) {
  /* iPad(Air2~10.5Pro・Air3用) */

  .gnav--link {
    padding: 16px;
  }

  .gnav--menu {
    padding-right: 280px;
  }

  .gnav--contact a,
  .gnav--tel a {
    padding: 0 8px;
    width: 250px;
  }

  .gnav--tel .num {
    font-size: 145%;
  }

  .gnav--contact a img,
  .gnav--tel a img {
    margin-right: 4px;
  }
}

@media screen and (max-width: 1440px) {
  .gnav--menu {
    padding-right: 20px;
  }

  .gnav--contact,
  .gnav--tel {
    top: 106px;
  }

  .gnav--tel {
    top: calc(106px + 88px);
  }
}

@media screen and (max-width: 1400px) {
  .header--logo {
    max-width: 240px;
  }
}

@media screen and (max-width: 1080px) {
  .gnav--contact,
  .gnav--tel {
    display: none;
  }
}

@media screen and (min-width: 1080px) {
  /* hover */
  .gnav--menu .sub_nav-link:hover .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }

  .gnav--menu .head_sub_nav a:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 1080px) {
  .header--logo {
    z-index: 310;
  }

  .header--logo.active .normal {
    display: none;
  }

  .header--logo .wh-logo {
    display: none;
  }

  .header--logo.active .wh-logo {
    display: block;
  }

  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 64px 32px 24px;
    overflow: scroll;
    background-color: rgba(1, 159, 139, 1);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease-out;
    -webkit-overflow-scrolling: touch;
  }

  .gnav.active {
    opacity: 1;
    pointer-events: auto;
  }

  .gnav--menu {
    justify-content: flex-start;
  }

  .gnav--link {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 24px;
    writing-mode: horizontal-tb;
  }

  .gnav--link:hover,
  .gnav--menu li.current > .gnav--link {
    color: #fff;
  }

  .gnav--link:hover::before,
  .gnav--menu li.current > .gnav--link::before {
    background: transparent;
  }

  .gnav--menu li {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .gnav--menu {
    padding-right: 0;
  }

  .gnav--link::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    background: transparent;
    border-bottom: 0;
    border-left: 0;
    top: 28px;
    right: 24px;
    margin: 0;
    left: auto;
  }

  .head_sub_nav--wrap {
    position: relative;
    width: 100%;
    margin: 0;
    padding-top: 0;
    left: 0;
    transition: none;
    opacity: 1;
    pointer-events: inherit;
    display: none;
  }

  .sub_nav-link.active .head_sub_nav--wrap {
    opacity: 1;
    pointer-events: auto;
  }

  .head_sub_nav {
    position: relative;
  }

  .gnav_sub_toggle {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    font-size: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.4s ease-out;
  }

  .gnav_sub_toggle.active {
    transform: rotate(180deg);
  }

  .gnav--menu .head_sub_nav {
    margin: 0;
    margin-bottom: 32px;
    width: 100%;
    position: relative;
  }

  .gnav--menu .head_sub_nav li {
    border: none;
    border-radius: 4px;
  }

  .gnav_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 56px;
    height: 56px;
    background-color: transparent;
    z-index: 9999;
  }

  .gnav_btn--lines {
    position: relative;
    width: 28px;
    height: 16px;
    top: 24px;
    margin: auto;
  }

  .gnav_btn--lines span {
    transition: all 0.4s;
    box-sizing: border-box;
  }

  .gnav_btn--lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #019f8b;
  }

  .gnav_btn--lines span:nth-of-type(1) {
    top: 0;
  }

  .gnav_btn--lines span:nth-of-type(2) {
    top: 50%;
  }

  .gnav_btn--lines span:nth-of-type(3) {
    bottom: 0;
  }

  .active .gnav_btn--lines span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-35deg);
    transform: translateY(6px) rotate(-35deg);
    background: #fff;
  }

  .active .gnav_btn--lines span:nth-of-type(2) {
    opacity: 0;
  }

  .active .gnav_btn--lines span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(35deg);
    transform: translateY(-9px) rotate(35deg);
    background: #fff;
  }

  /* ---CTA --- */
  .gnav--tel {
    top: 24px;
    padding-bottom: 24px;
  }

  .gnav--contact {
    top: 0px;
    margin-left: 0;
    padding-bottom: 24px;
    padding-top: 24px;
    padding-left: 0;
    padding-right: 0;
  }

  .gnav--contact a,
  .gnav--tel a {
    width: 100%;
    height: 72px;
    padding: 0 16px;
    background: #fff;
    color: #019f8b;
  }

  .gnav--tel a {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
  }

  .gnav--tel .num {
    font-size: 222%;
  }
}

/* header-sm
********************************************** */
@media screen and (min-width: 1081px) {
  .header-sm {
    height: 106px;
    padding-top: 0;
    background-color: #fff;
  }
  .header-sm > .inner {
    align-items: center;
    height: 100%;
  }
  .header-sm .header--logo {
    display: flex;
    align-items: center;
  }
  .header-sm .gnav--menu > li {
    display: flex;
    align-items: center;
    color: #262424;
  }
  .header-sm .gnav--link {
    padding-top: 0;
    writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    color: #262424;
    letter-spacing: 0.05em;
  }
  .header-sm .gnav--link:not([href="javascript:void(0);"]):hover {
    color: #019f8b;
    opacity: 1;
  }

  .header-sm .gnav--link::before {
    content: "";
    position: absolute;
    top: -12px;
    width: 82%;
    height: 0;
    background-color: #019f8b;
  }
  .header-sm .current .gnav--link::before {
    height: 1px;
  }
  .header-sm .sub_nav-link > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -15px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-right: 1px solid #019f8b;
    border-bottom: 1px solid #019f8b;
    transform: rotate(45deg);
  }
  .header-sm .head_sub_nav--wrap {
    top: 24px;
    left: -188px;
    padding-top: 26px;
  }
  .header-sm .head_sub_nav {
    border-color: #019f8b;
    background-color: #fff;
  }
  .header-sm .head_sub_nav::before {
    display: none;
  }
  .header-sm .head_sub_nav li a {
    background-color: #019f8b;
    color: #fff;
  }
}

@media screen and (max-width: 1080px) {
  .header {
    height: 56px;
    padding-top: 16px;
    background-color: #fff;
  }
  .gnav--menu .sub_nav-link a::before {
    display: none;
  }
  .gnav_sub_toggle {
    position: absolute;
    width: 50px;
    height: 62px;
    transition: 0.4s all ease;
  }
  .gnav_sub_toggle::before {
    content: "+";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 240%;
    color: #fff;
    line-height: 1em;
    transition: 0.4s all ease;
  }
  .gnav_sub_toggle.active::before {
    content: "-";
  }
  .gnav_sub_toggle.active {
    transform: none;
  }
  .head_sub_nav {
    padding: 0;
    border: 0;
  }
  .head_sub_nav li a {
    background: transparent;
    color: #fff;
    text-align: left;
    padding: 12px 58px;
    font-family: sans-serif;
  }
  .head_sub_nav::before {
    display: none;
  }
}

/* ##############################################################################

    FOOTER

############################################################################## */

/* foot_access
********************************************** */
.foot_access {
  padding-top: 58px;
}
.subpage:has(.lps_sec:nth-child(2n):last-child) .foot_access {
  background-color: #f7f7f7;
}
.foot_access > * {
  width: 50%;
}

.foot_access .txt {
  display: flex;
  align-items: center;
  background-color: #f3f9f7;
}

.foot_access .txt .inner {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: none;
  padding-left: 20.83%;
  padding-right: 10.375%;
}

.foot_access .txt .inner > div {
  padding-block: 100px;
  padding-left: 19.73%;
}

.foot_access .ttl {
  flex-shrink: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 300%;
  letter-spacing: -0.06em;
  line-height: 1;
}

.foot_access .tel a {
  font-size: 193%;
  color: #344439;
  letter-spacing: 0.02em;
}

.foot_access .map iframe {
  width: 100%;
  height: 100%;
}

.foot_access .txt-sm.indent  {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  .foot_access .txt .inner {
    padding-left: 15%;
    padding-right: 4.5%;
  }
  .foot_access .txt .inner > div {
    padding-left: 4.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .foot_access .txt {
    padding-left: 5%;
  }
  .foot_access .txt .inner {
    padding-left: 0;
    padding-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .foot_access .txt .inner {
    width: 90%;
    padding-inline: 0;
  }
  .foot_access .txt .inner > div {
    padding-left: 0;
    padding-block: 0;
  }

  .foot_access > * {
    width: 100%;
    padding: 26px 0;
  }

  .foot_access .ttl {
    transform: translateY(-35%);
    margin-right: 24px;
  }
}

/* medical_guide
********************************************** */
.medical_guide {
  padding-top: 68px;
  padding-bottom: 72px;
}

.medical_guide--left {
  width: 49%;
}

.medical_guide--right {
  min-width: 576px;
}

.medical_guide .ttl {
  font-size: 132%;
  letter-spacing: 0.1em;
  font-family: "A1 Mincho", serif;
}

.medical_guide_list li {
  display: inline-block;
  border-radius: 4px;
  padding: 0 14px;
  margin-top: 6px;
  background-color: #019f8b;
  color: #fff;
}

.medical_guide_table {
  width: 100%;
}

.hero_under {
  margin-top: 11px;
  font-size: 95%;
}

.medical_guide_table tr {
  border-bottom: 1px solid #e8e8e8;
}

.medical_guide_table th,
.medical_guide_table td {
  padding: 16px 8px;
  vertical-align: middle;
}

.medical_guide_table th {
  font-family: "A1 Mincho", serif;
}

.medical_guide_table tbody th {
  font-size: 113%;
  font-family: serif;
}

.medical_guide_table td {
  color: #019f8b;
  text-align: center;
  line-height: 1.2;
}

.medical_guide_table td small {
  font-size: 80%;
}

.btn-line {
  margin-left: 8px;
  padding: 5px 8px;
  border-radius: 4px;
  border: 1px solid #019f8b;
  color: #019f8b;
  font-size: 76%;
  vertical-align: baseline;
}

.btn-line:hover {
  background-color: #f3f9f7;
}

.btn-line img {
  vertical-align: baseline;
  margin-left: 4px;
}

@media screen and (max-width: 767px) {
  .medical_guide--left {
    width: 100%;
    margin-bottom: 32px;
  }

  .medical_guide--right {
    width: 100%;
    min-width: 100%;
  }

  .medical_guide {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .medical_guide_table tbody th {
    font-size: 86%;
    letter-spacing: 0.03em;
  }
}

/* footer
********************************************** */
.footer {
  background-size: cover;
  background-position: top center;
  background-image: url(../images/common/footer_bg.jpg);
}

.page_top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  transform: translateY(90px);
  transition: 0.4s all ease;
  z-index: 999;
}

.page_top.fixed {
  transform: translateY(0);
}

.page_top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #019f8b;
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 80%;
  letter-spacing: 0;
  text-align: center;
  color: #019f8b;
}

.page_top a:hover {
  opacity: 0.5;
}

.page_top span {
  display: block;
}

.page_top span.arrow {
  width: 20px;
  height: 20px;
  border-top: 1px solid #019f8b;
  border-left: 1px solid #019f8b;
  transform: rotate(45deg);
  margin: 8px 0 -4px;
}

.footer .cta {
  padding-top: 54px;
  padding-bottom: 70px;
}

.footer .cta_links a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 384px;
  height: 96px;
  padding: 0 22px;
  border-radius: 4px;
  text-align: center;
  font-family: "A1 Mincho", serif;
}

.footer .cta_links a > span {
  flex: 1;
}

.footer .cta_links .cta_links--contact {
  margin-right: 36px;
}

.footer .cta_links .cta_links--contact a {
  background-color: #019f8b;
  color: #fff;
  font-size: 120%;
}

.footer .cta_links .cta_links--contact a:hover {
  background-color: #168274;
}

.footer .cta_links .cta_links--tel a {
  background-color: #fff;
}

.footer .cta_links .cta_links--tel small {
  font-size: 93%;
  color: #344439;
  letter-spacing: 0.14em;
}

.footer .cta_links .cta_links--tel .num {
  font-size: 240%;
  letter-spacing: 0.02em;
  line-height: 1;
  font-family: serif;
  font-weight: 600;
}

@media screen and (max-width: 1080px) {
  .footer .cta_links a {
    width: 100%;
    height: auto;
    padding: 16px;
    margin-bottom: 8px;
  }

  .footer {
    background: url(../images/common/footer_img_sp.jpg);
    background-size: cover;
  }

  .footer .cta_links .cta_links--contact {
  }

  .footer .cta_links {
    flex-direction: row;
    align-items: center;
  }

  .footer .cta_links li {
    max-width: 48.5%;
  }
}

@media screen and (max-width: 767px) {
  .page_top {
    right: 10px;
    bottom: 70px;
    transform: translateY(0);
  }

  /*.page_top.iphone {
      right: 10px;
      bottom: 60px;
      transform: translateY(120px);
    }
    .page_top.iphone.fixed {
      transform: translateY(0);
    }*/
  .page_top a {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 1);
    line-height: 1.25;
  }

  .page_top span.arrow {
    width: 16px;
    height: 16px;
  }

  .footer .cta_links {
    flex-direction: column;
  }

  .footer .cta_links li {
    max-width: 100%;
    min-width: 100%;
    margin: auto !important;
  }
}

/* footer_nav
********************************************** */
.footer_nav {
  width: 95%;
  padding-top: 38px;
  padding-bottom: 12px;
  border-radius: 0 80px 0 0;
  background-color: #fff;
}

.footer_nav--medical_content {
  width: 646px;
  border-radius: 40px;
  padding: 18px 40px 25px;
  background-color: #f9f9f9;
}

.footer_nav--medical_content .ttl {
  font-size: 114%;
  text-align: center;
  font-family: "A1 Mincho", serif;
}

.footer_nav--medical_content li {
  margin-bottom: 2px;
}

.footer_nav--medical_content li a {
  position: relative;
  padding-left: 14px;
  color: #019f8b;
}

.footer_nav--medical_content li a::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 8px;
  height: 1px;
  background-color: #019f8b;
}

.footer_nav--pages {
  width: 40%;
}

.footer_nav--pages a {
  display: flex;
  align-items: center;
  font-family: "A1 Mincho", serif;
  line-height: 1.5;
}

.footer_nav--pages a::before {
  content: "";
  display: inline-block;
  margin-top: 0.3em;
  width: 6px;
  height: 6px;
  margin-right: 14px;
  border-right: 1px solid #019f8b;
  border-bottom: 1px solid #019f8b;
  transform: rotate(-45deg);
}

.footer_nav a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 1080px) {
  .footer_nav--medical_content {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer_nav--pages {
    width: 100%;
    margin-bottom: 24px;
  }

  .footer_nav {
    padding-top: 24px;
    padding-bottom: 80px;
    border-radius: 0 50px 0 0;
  }

  .footer_nav .inner {
    flex-direction: column;
  }

  .medical_guide .inner {
    flex-direction: column;
  }

  .medical_guide--left,
  .medical_guide--right {
    width: 100%;
  }
}

/* footer_nav--copy
********************************************** */
.footer_nav--copy {
  width: 90%;
  margin: auto;
  font-size: 80%;
  color: #acacac;
}

.footer_nav--copy .links {
  margin-right: 16px;
}

.footer_nav--copy .links a:first-child {
  margin-right: 6px;
  padding-right: 12px;
  border-right: 1px solid;
}

.footer_nav--copy a {
  color: #acacac;
}

.pbll {
  display: block;
  margin-left: 12px;
  opacity: 0.5;
}

.pbll:hover {
  opacity: 1;
}

/* ##############################################################################

    INDEX

############################################################################## */

/* hero
********************************************** */
@keyframes hero_anime {
  0% {
    -webkit-mask-position: -100% 0;
  }

  100% {
    -webkit-mask-position: 100% 0;
  }
}

@keyframes hero_first {
  0% {
    opacity: 0;
    transform: translateX(-64px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero_second {
  0% {
    opacity: 0;
    transform: translateX(88px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes flash_moving {
  0% {
    transform: scale(1);
    opacity: 0;
  }

  20% {
    transform: scale(1.25);
    opacity: 0.25;
  }

  40% {
    opacity: 0.5;
  }

  60% {
    transform: scale(1.5);
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: scale(1.75);
    opacity: 1;
  }
}

.slide-hero .slick-slide {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(circle farthest-corner at 100% 0%, #000 60%, transparent 90%);
  /* マスク設定。数値を変えたら縦とかもできそう */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 200% 100%;
  /*横は倍のほうがいいっぽい？*/
  -webkit-mask-position: -100% 0;
  transition-property: -webkit-mask-position;
  transition-property: mask-position;
  transition-property: mask-position, -webkit-mask-position;
  transition-duration: 5s;
  transition-timing-function: cubic-bezier(0.3, 0.1, 0.1, 1);
}

.slide-hero .preve-slide {
  opacity: 1 !important;
  /*slickフェードスライドの打ち消し*/
}

.slide-hero .slide-animation {
  animation: hero_anime 3s forwards;
  /* 時間はJSのspeedと合わせる */
}

.hero .slick-active .second--bloc {
  animation: hero_second 2.5s both;
}

.hero {
  position: relative;
  height: 880px;
  margin: 19px;
}

.hero .flash {
  width: 120px;
  height: 120px;
  bottom: -470px;
  left: 255px;
  position: absolute;
  transform: scale(1.75);
  filter: blur(0.5px);
}

.hero .slick-active .flash {
  animation: 5s flash_moving ease-in-out both;
  transition-duration: 0.4s;
}

.hero li {
  transition: 4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-size: cover !important;
  background-position: center !important;
}

.hero li:nth-of-type(1) {
  background-image: url(../images/top/slide01.jpg);
}

.hero li:nth-of-type(2) {
  background-image: url(../images/top/slide02.jpg);
}

.hero li:nth-of-type(3) {
  background-image: url(../images/top/slide03.jpg);
}

.hero li:nth-of-type(4) {
  background-image: url(../images/top/slide04.jpg);
}

.txt-bloc {
  position: absolute;
  top: 216px;
  left: 107px;
  width: 100%;
}

.first--bloc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 313%;
  margin-bottom: 40px;
  letter-spacing: 0.1em;
  /*transform: translateX(-20px);
    transition: 1s all ease;
    opacity: 0;*/
}

.first--bloc.active {
  /*transform: translateX(0);
    opacity: 1;*/
}

.first--bloc::before {
  content: "";
  position: absolute;
  width: 43px;
  height: 2px;
  background: #fff;
  bottom: -40px;
  opacity: 1;
  left: 0;
}

.second--bloc {
  position: absolute;
  margin-top: 40px;
  /*transform: translateX(-20px);
    transition: 1s all ease;
    opacity: 0;*/
}

.second--bloc.active {
  /*transform: translateX(0);
    opacity: 1;*/
}

.second--bloc.ttl-01 small {
  margin-bottom: 24px;
  color: rgb(255, 255, 255);
  font-size: 28.2%;
  letter-spacing: 0.2em;
}

.second--bloc span {
  font-size: 104%;
  display: block;
  margin-bottom: 24px;
  color: #fff;
  line-height: 1em;
}

.hero--catch {
  position: absolute;
  top: 0;
  left: 0;
}

.hero_slide {
  overflow: hidden;
}

.hero_slide li {
  background: #ccc;
}

.hero_slide-sp {
  display: none !important;
}

.hero_slides,
.hero_slide,
.hero_slide .slick-list,
.hero_slide .slick-track,
.hero_slide .slick-slider,
.hero_slide .slick-slide,
.hero_slide .hero_slide--child {
  width: 100%;
  height: 100%;
}

.hero_slide .slick-list {
  position: relative;
  overflow: hidden;
}

.hero_slide--child {
  background-position: center;
  background-size: cover;
}

.hero .medical_guide--right {
  max-width: 560px;
  position: absolute;
  display: block;
  z-index: 10;
  padding: 28px 40px 44px;
  right: -20px;
  bottom: -20px;
  background: #fff;
  box-shadow: 0 0 16px -4px rgba(0, 0, 0, 0.8);
}

.hero .medical_guide--right table th,
.hero .medical_guide--right table td {
  line-height: 1em;
  text-align: left;
}

.hero .medical_guide_table td small {
  font-size: 60%;
  line-height: 1em;
}

.txt-add {
  font-size: 95%;
  padding-left: 0.7em;
}

.txt-add p {
  margin-right: 8px;
}

.txt-add small {
  margin-right: 16px;
}

.txt-add-info {
  line-height: 1.7;
}
.txt-add-info .green {
  color: #019f8b;
  margin-top: 4px;
}

.txt-add a {
  color: #019f8b;
  position: relative;
}

.txt-add a small {
  margin-right: 0;
}

.txt-add a::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #019f8b;
  bottom: -2px;
}

/* --- hero_slide--arrows --- */
.hero_slide--arrows {
  width: 100%;
  position: absolute;
  top: 0;
  pointer-events: none;
  height: 100%;
}

.hero_slide--arrows .slick-arrow {
  position: absolute;
  top: calc(50% - 30px / 2);
  z-index: 10;
  border-left: 2px solid;
  border-bottom: 2px solid;
  pointer-events: auto;
  width: 30px;
  height: 30px;
}

.hero_slide--arrows .slick-prev {
  left: 4%;
  transform: rotate(45deg);
}

.hero_slide--arrows .slick-next {
  right: 4%;
  transform: rotate(-135deg);
}

/* --- hero_slide--dots --- */
.hero_slide--dots {
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 10;
  width: 100%;
}

.hero_slide--dots ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero_slide--dots li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #aaa;
}

.hero_slide--dots li:not(:last-child) {
  margin-right: 16px;
}

.hero_slide--dots .slick-active {
  background-color: #000;
}

.hero-news {
  position: absolute;
  top: 820px;
  left: 128px;
  border: 1px solid #fff;
  line-height: 1;
  padding: 11px 56px 11px 16px;
  background: transparent;
  font-size: 85%;
  max-width: 546px;
}

.hero-news li {
  display: flex !important;
  width: 292px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
}

.hero-news li .post--info {
  font-size: 118%;
  margin-right: 32px;
  line-height: 1em;
}

.hero-news li h2 {
  color: #fff;
  letter-spacing: 0.2em;
  line-height: 1em;
}

.hero-news .icon-svg {
  fill: #fff;
}

.slide--link {
  position: absolute;
  right: 0;
  width: 40px;
  height: 24px;
  border-left: 1px solid #fff;
  top: 8px;
}

.slide--link img {
  position: absolute;
  left: 15px;
  top: 7px;
}

.slide--link::before,
.slide--link::after {
  content: "";
  position: absolute;
}

.slide--link::before {
  width: 9px;
  height: 9px;
}

@media screen and (max-width: 1080px) {
  .gnav--menu {
    padding-right: 0;
  }

  .hero .medical_guide--right {
    transform: translateY(90px);
  }

  .gnav--link a {
    padding: 0 8px;
  }

  .hero-news {
    max-width: 440px;
    left: 40px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 620px;
    margin-top: 8px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .hero li:nth-of-type(1) {
    background: url(../images/top/slide01_sp.jpg);
  }

  .hero li:nth-of-type(2) {
    background: url(../images/top/slide02_sp.jpg);
  }

  .hero li:nth-of-type(3) {
    background: url(../images/top/slide03_sp.jpg);
  }

  .hero li:nth-of-type(4) {
    background: url(../images/top/slide04_sp.jpg);
  }

  .hero_slide-pc {
    display: none !important;
  }

  .hero_slide-sp {
    display: block !important;
  }

  .hero--ttl {
    padding: 0 10%;
    font-size: 180%;
    line-height: 1.8;
  }

  .first--bloc {
    font-size: 190%;
    margin-bottom: 0;
  }

  .first--bloc::before {
    bottom: -20px;
  }

  .hero_slide .slick-list,
  .hero_slide .slick-track,
  .hero_slide .slick-slide {
    height: 620px;
    background-size: cover !important;
    background-position: top center !important;
  }

  .hero .medical_guide--right {
    display: none;
  }

  .txt-bloc {
    top: 250px;
    left: 16px;
    width: calc(100% - 16px);
  }

  .second--bloc span {
    font-size: 160%;
  }

  .hero-news {
    max-width: calc(100% - 48px);
    top: 610px;
    left: 0;
    right: 0;
    margin: auto;
    /*display: none;*/
  }

  .gnav--menu {
    padding-right: 0;
  }
}

/* home_news
********************************************** */
.home_news {
  font-size: 90%;
  padding: 40px 0;
  background-color: #fff;
  z-index: 1;
  line-height: 1.6;
}

.home_news .news_list {
  flex: 1;
}

.news_list--ttl {
  display: block;
  position: relative;
  margin-right: 40px;
  padding: 0;
  font-size: 183%;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .home_news {
    padding: 20px 5%;
  }

  .news_list--ttl {
    width: auto;
    float: none;
    height: auto;
    margin-bottom: 16px;
  }
}

/* home_greeting
********************************************** */
.home_greeting::before {
  content: "";
  position: absolute;
  width: 1165px;
  height: 1008px;
  background: #f3f9f7;
  z-index: -1;
  right: 0;
  top: 0;
}

.home_greeting.section_pdg {
  padding-bottom: 314px;
}

.home-img {
  width: 100%;
  max-width: 50%;
  height: 640px;
  display: block;
  background-size: cover;
  background-position: center;
}

.home-img.greeting {
  background-image: url(../images/top/greeting-img.jpg);
}

.greeting_name_position {
  text-align: right;
}

.home-txt {
  max-width: 50%;
  padding-left: 130px;
  padding-right: 168px;
}

.menu-txt {
  max-width: 49.2%;
  padding-right: 108px;
}

.menu-txt h3 {
  display: block;
  line-height: 1em;
}

.menu-txt .ttl-02 {
  font-size: 350%;
}

.menu-txt h3 small {
  font-size: 32%;
  display: block;
  letter-spacing: 0.1em;
  color: #989ca1;
  line-height: 1em;
  margin-bottom: 20px;
}

.wrapper {
  padding: 140px 130px 160px 350px;
  position: relative;
}

.vl-rl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  display: block;
  padding: 49px 21px;
  top: -164px;
  left: 126px;
  background: #fff;
  letter-spacing: 0.1em;
  box-shadow: 1px 0px 16px rgba(7, 35, 50, 0.1);
  z-index: 9999;
}

#sidefix--side_column {
  position: relative;
  float: left;
  width: 0;
  /* 横幅変更してね */
}

#sidefix--side_content {
  width: 106px;
  height: 400px;
  /* margin-right: -120px; */
  transform: translate(-300%, -10%);
}

#sidefix--main_column {
  width: 100%;
  /* 横幅変更してね*/
}

.vl-link {
}

.fixed-link {
  position: fixed;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  right: 0;
  top: 34%;
  width: 64px;
  height: 232px;
  padding: 32px 24px;
  background: #333;
  transform: translateX(72px);
  transition: 0.4s all ease;
  text-align: center;
  align-items: center;
  line-height: 1em;
}

.fixed-link .c-time {
  padding-bottom: 1em;
  line-height: 1em;
}

.fixed-link .c-time::before {
  content: "・";
  position: absolute;
  font-size: 150%;
  color: #fff;
  bottom: -5px;
  left: 7px;
}

.fixed-link.fixed {
  position: fixed;
  transform: translateX(0);
}

.fixed-link a {
  color: #fff;
}

.fixed-link a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.menu-img {
  max-width: 50.8%;
  width: 680px;
  height: 480px;
  right: 0;
}

.menu-item:first-child {
  padding: 0 0 90px;
}

.menu-item:not(:first-child) {
  padding: 90px 0;
}

.menu-item:nth-of-type(4) {
  padding-bottom: 0;
  margin-bottom: 120px;
}

.menu-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  left: 0;
  bottom: 0;
}

.menu-item:nth-of-type(4)::before {
  display: none;
}

.wrapper {
  margin-bottom: 134px;
}

.wrapper .inner {
  width: 100%;
  max-width: 1314px;
}

.link--wrapper li {
  padding: 48px 48px 64px;
  position: relative;
  border: 1px solid #d0d0d0;
  transition: 0.4s all ease;
}

.link--wrapper h4 {
  font-size: 190%;
  transition: 0.4s all ease;
}

.link--wrapper p {
  font-size: 95%;
  letter-spacing: 0;
  transition: 0.4s all ease;
}

.link--wrapper li a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

.link--wrapper li:hover {
  border: 1px solid #019f8b;
}

.link--wrapper li:hover > h4,
.link--wrapper li:hover > p {
  color: #019f8b;
}

.link--wrapper li::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #d0d0d0 transparent;
  right: 8px;
  bottom: 8px;
  transition: 0.4s all ease;
}

.link--wrapper li:hover::before {
  border-color: transparent transparent #019f8b transparent;
}
.page_related--lists li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1em;
}
.page_related--lists .ttl-03 {
  color: var(--clr-text-secondary);
  text-align: center;
  font-size: 150%;
}

@media screen and (max-width: 1080px) {
  .menu-item {
    align-items: center;
  }

  .menu-item .menu-txt {
    max-width: 100%;
    padding-right: 40px;
    margin-bottom: 64px;
  }

  .home-img {
    width: 100%;
    max-width: 100%;
    height: 480px;
    margin-bottom: 24px;
    display: block;
    background-size: cover !important;
  }

  .home_greeting .txt_wrapper {
    flex-direction: column;
  }

  .home .ttl-01 small {
    margin-bottom: 16px;
    letter-spacing: 0.05em;
  }

  .menu-img {
    max-width: 100%;
    height: 100%;
  }

  /*.vl-rl {
      writing-mode: horizontal-tb;
    }*/
  .home_greeting.section_pdg {
    padding-bottom: 40px;
  }

  .menu-item:first-child {
    padding: 0 0 32px;
  }

  .menu-item:not(:first-child) {
    padding: 32px 0;
  }

  .link--wrapper li {
    padding: 16px 24px;
  }

  .menu-item:nth-of-type(4) {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .home-img {
    height: 240px;
  }

  .fixed-link {
    writing-mode: horizontal-tb;
  }

  .sp-fixed-link {
    position: fixed;
    left: 0;
    bottom: 0;
    /*transform: translateY(60px);*/
    width: 100%;
    text-align: center;
    background: #333;
    transition: 0.4s all ease;
    z-index: 299;
    display: flex;
    justify-content: space-between;
  }

  /*.sp-fixed-link.iphone {
      left: 10px;
      bottom: 120px;
      width: calc(100% - 80px);
      transform: translateY(120px);
    }*/
  .sp-fixed-link.fixed {
    transform: translateY(0);
  }

  .sp-fixed-link a {
    display: block;
    width: 33.33%;
    height: 60px;
    background: #333;
    padding-top: 14px;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.2;
    vertical-align: middle;
    background: rgba(1, 159, 139, 1);
    border-right: 1px solid #fff;
  }

  .sp-fixed-link a:nth-of-type(1),
  .sp-fixed-link a:nth-of-type(3) {
    padding-top: 21px;
  }

  .sp-fixed-link a:nth-of-type(3) {
    border-right: 0;
  }

  /*.sp-fixed-link a::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
    }*/
}

/* home_menu
********************************************** */
.home_menu-wrapper {
  position: relative;
  overflow: hidden;
  background: -webkit-linear-gradient(top, #eeeeef 0%, #eef7f4 100%);
  padding-top: 0;
  padding-bottom: 0;
}

.home_menu-wrapper::before {
  content: "";
  position: absolute;
  width: 1920px;
  height: 766px;
  background: url(../images/top/home-menu_bg.jpg);
  background-size: cover;
  display: block;
  z-index: -1;
}

.home_menu-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 320px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(238, 238, 239, 1) 100%);
  left: 0;
  top: 450px;
  z-index: -1;
}

.home_menu-wrapper .inner.inner-lg {
  max-width: calc(100% - 120px);
}

.home_menu {
  background: #fff;
  margin-top: 320px;
}

@media screen and (max-width: 1080px) {
  .home_menu {
    margin-top: 160px;
  }

  .home_menu-wrapper .ttl-01.pc-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .home_menu-wrapper {
    padding-top: 40px;
  }

  .home_menu-wrapper::before {
    top: 0;
  }

  .home_menu-wrapper .ttl-01.pc-none {
    display: block;
  }
}

/* home_reason
********************************************** */
.home_reason.section_pdg {
  padding-top: 116px;
  padding-bottom: 0;
}

.home_reason::before {
  content: "";
  position: absolute;
  width: 320px;
  height: calc(100% - 40px);
  right: 0;
  top: 0;
  background: #eff8f5;
}

.home_reason .ttl-01,
.home_gallery .ttl-01 {
  line-height: 1.4em;
  font-size: 350%;
  margin-bottom: 76px;
}

.home_reason .ttl-02 {
  font-size: 350%;
  line-height: 1.3em;
  letter-spacing: 0.05em;
}

.home_reason .ttl-02 small {
  display: block;
  font-size: 29%;
  color: #989ca1;
  letter-spacing: 0.2em;
  margin-bottom: 40px;
  line-height: 1em;
}

.home_reason .home-img {
  height: 680px;
  background-position: top center !important;
}

.home_reason .home-img.reason01 {
  background-image: url(../images/top/reason-img01.jpg);
}

.home_reason .home-img.reason02 {
  background-image: url(../images/top/reason-img02.jpg);
}

.home_reason .home-img.reason03 {
  background-image: url(../images/top/reason-img03.jpg);
}

.home_reason .home-txt {
  padding-right: 200px;
  padding-left: 240px;
  position: relative;
  max-width: 51%;
}

.home_reason .txt_wrapper {
  padding: 40px 0;
}

.home_reason .txt_wrapper::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 1px;
  background: #e2e2e2;
  left: 240px;
  margin: auto;
  bottom: 0;
}

@media screen and (max-width: 1600px) {
  .header--logo {
    max-width: 320px;
  }

  .home_reason .home-txt {
    padding-right: 120px;
    padding-left: 120px;
  }
}

@media screen and (max-width: 1470px) {
  .header--logo {
    max-width: 240px;
  }

  .home-txt {
    padding-left: 40px;
    padding-right: 40px;
  }

  .wrapper {
    padding-left: 240px;
    padding-right: 48px;
  }

  .home_reason .home-txt {
    padding-right: 40px;
    padding-left: 40px;
  }

  .home_reason .txt_wrapper::before {
    left: 80px;
  }
}

@media screen and (max-width: 1080px) {
  .home_menu br,
  .home_greeting br {
    display: none;
  }
}

@media screen and (max-width: 1080px) {
  .home-txt {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper {
    padding: 16px 24px;
    padding-left: 240px;
    margin-bottom: 64px;
  }

  #sidefix--side_content {
    transform: translate(-300%, 10%);
  }

  .home_menu {
    margin-top: 100px;
  }

  .home_menu-wrapper .inner.inner-lg {
    max-width: calc(100% - 16px);
    width: 100%;
  }

  .menu-txt {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .home_reason .home-txt {
    padding-right: 16px;
    padding-left: 16px;
    position: relative;
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 24px;
  }

  .home_reason .ttl-01,
  .home_gallery .ttl-01 {
    margin-bottom: 24px;
  }

  .home_reason .ttl-02 small {
    margin-bottom: 24px;
    font-size: 50%;
    letter-spacing: 0.05em;
  }

  .home_reason .home-img {
    height: 480px;
  }

  .home_reason .txt_wrapper {
    padding: 24px 0;
    flex-direction: column;
  }

  .home_reason .txt_wrapper::before {
    width: calc(100% - 16px);
    height: 1px;
    background: #e2e2e2;
    left: 0;
    margin: auto;
    bottom: 0;
    right: 0;
  }

  .home_reason::before {
    display: none;
  }

  .home_reason.section_pdg {
    padding-top: 48px;
  }
}

@media screen and (max-width: 767px) {
  .home_reason .home-img {
    height: 240px;
  }

  .wrapper {
    padding-left: 24px;
  }

  .menu-item .menu-txt {
    padding: 0;
  }
}

/* home_gallery
********************************************** */
.home_gallery .ttl-01 {
  line-height: 1em;
}

.home_gallery .ttl-01 small {
  font-size: 28%;
  line-height: 1em;
}

.home .slide-top li {
  height: 700px !important;
  margin: 0 12px;
  width: 1200px !important;
  position: relative;
}

.home .slide-top .slide-ttl {
  position: absolute;
  background: #fff;
  font-size: 144%;
  text-align: center;
  bottom: 0;
  padding: 10px 24px;
  line-height: 1em;
}

.home .slide-top .slick-track {
  margin-bottom: 48px;
}

.home .slide-top .slick-dots li {
  width: 8px !important;
  height: 8px !important;
  background-color: #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease-out;
  margin: auto;
}

.home .slick-dots li.slick-active {
  background-color: #029f8b;
}

.home .slide-top .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  margin: auto;
  padding-top: 32px;
}

.slick-dots button {
  padding: 0;
  cursor: pointer;
  color: transparent;
  background: transparent;
  outline: none;
  border: none;
}

.slick-slide {
  transition: 0.4s ease;
}

.slick-slide:not(.slick-current) {
  opacity: 0.5;
}

.slick-prev.slick-arrow,
.slick-next.slick-arrow {
  position: absolute;
  z-index: 100;
  display: flex;
  top: 45%;
  right: 0;
}

.slick-next.slick-arrow {
}

.slick-prev.slick-arrow {
  left: 0;
}

.slick-next.slick-arrow .pc-none,
.slick-prev.slick-arrow .pc-none {
  display: none !important;
}

.btn.top-slider a {
  min-width: 1200px;
  line-height: 1em;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 107%;
  background: #eee;
  border: 0;
}

.btn.top-slider a::after {
  content: none;
}

.btn.top-slider a::before {
  top: 40%;
  right: 46px;
}

@media screen and (max-width: 1080px) {
  .btn.top-slider a {
    min-width: 95%;
  }

  .home .slide-top li {
    margin: 0 auto;
    width: 1080px !important;
  }
}

@media screen and (max-width: 767px) {
  .home .slide-top li {
    width: 320px !important;
    height: 240px !important;
    background-size: cover !important;
  }

  .slick-arrow {
    top: 33% !important;
    width: 45px;
  }

  .btn.top-slider a {
    min-width: calc(100% - 16px);
  }
}

/* ##############################################################################

    PAGE

############################################################################## */

/* contact
********************************************** */
.page-contact .cta_tel a {
  display: inline-block !important;
  margin-bottom: 40px;
  padding: 20px 64px;
  background-color: #eee;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }

  .page-contact .cta_tel a {
    display: block;
    padding: 16px;
  }
}

/* ##############################################################################

    ARCHIVE

############################################################################## */

/* main_column
**************************************** */
.main_column {
  flex: 1;
  margin-right: 80px;
  overflow: hidden;
}

/* --- post --- */
.post {
  position: relative;
}

.post--link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.post--date {
  color: #aaa;
  font-size: 100%;
}

.cat_list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.cat_list a {
  display: inline-block;
  vertical-align: middle;
  font-size: 79%;
  background-color: #019f8b;
  color: #f6f6f6;
  line-height: 1;
  padding: 6px 12px;
  border-radius: 2px;
  float: left;
  margin-right: 4px;
  margin-bottom: 4px;
  white-space: nowrap;
}

.post .post--img {
  border-radius: 3px;
}

.no-image {
  background-size: 80% auto !important;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #eee;
}

@media screen and (max-width: 1100px) {
  .main_column {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}

/* side_column
**************************************** */
.side_column {
  width: 264px;
}

.side_column--inner::-webkit-scrollbar {
  display: none;
}

.side_section:not(:last-child) {
  margin-bottom: 64px;
}

.side--ttl {
  font-size: 120%;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 16px;
}

.side--ttl small {
  font-size: 62%;
  opacity: 0.5;
  letter-spacing: 0.15em;
  display: block;
  line-height: 1;
  margin-top: 8px;
}

.ranknum {
  position: absolute;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 1.6;
  color: #fff;
  background-color: #019f8b;
}

.posts-ranking .post:nth-child(1) .ranknum {
  background: #ffd700;
}

.posts-ranking .post:nth-child(2) .ranknum {
  background: #c0c0c0;
}

.posts-ranking .post:nth-child(3) .ranknum {
  background: #815a2b;
}

/* --- post --- */
.posts-side .post:not(:last-child) {
  margin-bottom: 16px;
}

.posts-side .post--img {
  margin-right: 16px;
  border-radius: 3px;
  width: 64px;
  height: 64px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.posts-side .txtarea {
  flex: 1;
}

.posts-side .post--date {
  margin-bottom: 0;
  font-size: 90%;
}

.posts-side .post--ttl {
  line-height: 1.4;
}

/* --- archive --- */
.side_column .archive_list--ttl {
  cursor: pointer;
}

.side_column .archive_list--ttl::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(135deg);
  transition: 0.4s ease-out;
}

.side_column .archive_list--ttl.active::after {
  transform: rotate(315deg);
}

.side_column .archive_month {
  display: none;
}

@media screen and (max-width: 1100px) {
  .side_column {
    width: 100%;
  }
}

@media screen and (min-width: 1101px) {
  .side_column--inner {
    position: sticky;
    top: 120px;
    bottom: 20px;
    right: 0;
    overflow-y: scroll;
    height: calc(100vh - 140px);
  }
}

@media screen and (max-width: 767px) {
  .side_section:not(:last-child) {
    margin-bottom: 34px;
  }
}

/* --- archive-pulldown --- */
.archive-pulldown {
  position: relative;
  margin-left: auto;
  z-index: 1;
}

.archive-pulldown .archive_list {
  position: relative;
  font-size: 92%;
}

.archive-pulldown .archive_list:not(:last-child) {
  margin-right: 24px;
}

.archive-pulldown .archive_list a {
  display: block;
  padding: 2px 16px;
  text-align: left;
}

.archive-pulldown .archive_list a:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.archive-pulldown .archive_list--label {
  margin-right: 8px;
}

.archive-pulldown .archive_list--btn {
  cursor: pointer;
  border: none;
  outline: none;
  appearance: none;
  padding: 8px 54px 8px 32px;
  background-color: #fff;
  border: 1px solid #ccc;
}

.archive-pulldown .archive_list--btn::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 10px;
  display: block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  transition: 0.2s ease-out;
  transform-origin: 50% 50%;
}

.archive-pulldown .active .archive_list--btn::after {
  top: 14px;
  transform: rotate(225deg);
}

.archive-pulldown .archive_list--menu {
  position: absolute;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  border: 1px solid #ccc;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-out;
}

.archive-pulldown .active .archive_list--menu {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .archive-topics .archive-pulldown,
  .single-topics .archive-pulldown {
    width: 100%;
    margin-left: 0;
  }

  .archive-topics .archive-pulldown .archive_list,
  .archive-topics .archive_list > .pos_rel,
  .archive-topics .archive_list--btn,
  .single-topics .archive-pulldown .archive_list,
  .single-topics .archive_list > .pos_rel,
  .single-topics .archive_list--btn {
    width: 100%;
  }

  .archive-topics .archive_list--btn,
  .single-topics .archive_list--btn {
    padding: 8px 54px 8px 12px;
    text-align: left;
  }
}

/* topics
**************************************** */
.posts-topics .post {
  padding-bottom: 48px;
  padding-top: 48px;
  border-bottom: 1px solid #e5e5e5;
}

.posts-topics .post:first-child {
  border-top: 1px solid #e5e5e5;
}

.posts-topics .post--txtarea {
  flex: 1;
}

.posts-topics .post--date {
  margin-right: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}

.posts-topics .post--img {
  width: 280px;
  margin-right: 40px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.posts-topics .post--img::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 75%;
}

.posts-topics .post--ttl {
  font-size: 137%;
  line-height: 1.55;
  font-family: "A1 Mincho", serif;
  letter-spacing: 0.14em;
}

.posts-topics.flex-col3 .post {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 0;
}

.posts-topics.flex-col3 .post:first-child {
  border-top: 0;
}

@media screen and (max-width: 1100px) {
  .posts-topics {
    margin-bottom: 56px;
  }

  .archive-topics .container > .inner.flex,
  .single-topics .container > .inner.flex {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .posts-topics .post {
    display: block;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .posts-topics .post--img {
    width: 100%;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 16px;
    text-align: center;
  }

  .posts-topics .post--img img {
    width: auto;
    max-width: 100%;
  }
}

/* --- writtenby --- */
.writtenby {
  position: relative;
  border: 2px solid #019f8b;
}

.writtenby .writer--link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.writtenby--ttl-wrap {
  font-size: 1.25rem;
  font-family: "A1 Mincho", serif;
  background-color: #019f8b;
  margin-bottom: 16px;
  padding: 8px 24px 14px;
  color: #fff;
}

.writer-box {
  position: relative;
  padding: 8px 24px 24px;
}

.writer-box .imgarea {
  width: 200px;
  margin-right: 24px;
}

.writer-box .txtbox {
  position: relative;
  width: calc(100% - 224px);
  padding-right: 24px;
}

.writer-box .writer-name {
  font-size: 1.25rem;
  font-family: "A1 Mincho", serif;
  margin-bottom: 8px;
}

.writer-box .writer-name small {
  font-size: 0.875rem;
  /* 14px */
}

.writer-box .writer-history {
  font-size: 0.875rem;
  /* 14px */
}

.writer-box .link {
  position: absolute;
  width: 36px;
  height: 40px;
  border: 1px solid #019f8b;
  background-color: #019f8b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 20px 0 0 20px;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding-left: 6px;
  transition: all 0.4s ease-out;
}

.writtenby:hover .link {
  color: #019f8b;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .writer-box {
    padding-bottom: 44px;
  }

  .writer-box .imgarea {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }

  .writer-box .txtbox {
    width: 100%;
    padding-right: 0;
  }

  .writer-box .link {
    transform: rotate(90deg);
    right: 0;
    left: 0;
    top: auto;
    bottom: -46px;
  }
}

/* news
**************************************** */

/* --- news--archive --- */
.news--archive {
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #111;
}

.news--archive li {
  margin-left: 8px;
  margin-right: 8px;
}

.news--archive a {
  color: #fff;
}

/* --- news_list --- */
main .news_list .post {
  padding-bottom: 16px;
  padding-top: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid #dedede;
}

main .news_list .post--date {
  background-color: #029f8b;
  color: #fff;
  padding-top: 4px;
  padding: 4px;
  padding-left: 24px;
  padding-right: 24px;
  margin-right: 32px;
}

main .news_list a[href="javascript:void(0);"],
main .news_list a[href="javascript:void(0);"]::before {
  color: inherit;
  cursor: inherit;
  opacity: 1;
  text-decoration: none;
}

.posts-home_news a,
main .news_list a {
  display: inline-flex;
  align-items: center;
}

.posts-home_news a[target="_blank"]::after,
main .news_list a[target="_blank"]::after,
.home_greeting .btn a[target="_blank"]::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background-image: url(/wp/wp-content/themes/original_theme/images/common/icon-new_tab.png);
}

.subpage .btn a[target="_blank"]::before {
  display: none;
}

@media screen and (max-width: 767px) {
  main .news_list .post {
    display: block;
  }

  main .news_list .post--date {
    display: inline-block;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 8px;
  }

  .btn a {
    min-width: 100%;
    padding: 12px 52px 12px 8px;
  }
}

/* glossary
**************************************** */

/* --- glossary--list --- */
.glossary--list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(calc(100% / 11 - 8px), 1fr));
  gap: 8px;
}
.glossary--list a {
  display: block;
  padding: 12px 8px;
  border-radius: 4px;
  letter-spacing: 0.24em;
  font-family: serif;
  text-align: center;
}
.kana--list a {
  background-color: #019f8b;
  color: #fff;
}
.kana--list a:hover {
  opacity: 0.7;
}
.kana--anchor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 120%;
}
.kana--anchor li {
  display: flex;
  flex-wrap: wrap;
}
.kana--anchor li:not(:last-child)::after {
  content: "／";
  display: block;
  min-width: 2em;
  padding-inline: 0.5em;
}
.kana--anchor a {
  color: #168274;
}
.kana--blc {
  background-color: rgba(1, 159, 139, 0.1);
  padding: 48px 64px;
}
.cat--list a {
  color: #168274;
  background-color: #fff;
  border: 1px solid;
}
.cat--list a:hover {
  background-color: #f3f9f7;
}

.posts-glossary {
  .post a {
    display: block;
    text-align: left;
    background-color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .glossary--list {
    grid-template-columns: repeat(auto-fit, minmax(calc(100% / 6 - 4px), 1fr));
    gap: 4px;
  }
  .cat--list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .kana--anchor {
    font-size: 110%;
  }
  .kana--blc {
    padding: 18px 24px;
  }
}

/* ##############################################################################

    SINGLE

############################################################################## */

.ttl_eyecatch {
  display: flex;
  gap: 5%;
  .post--info {
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #dedede;
  }
  .ttlarea {
    flex: 1;
  }
  .eyecatch {
    min-width: 30%;
    max-width: 30%;
  }
}

@media screen and (max-width: 767px) {
  .ttl_eyecatch .ttl-04 {
    line-height: 1.7;
  }
}

/* wp-pagenavi
**************************************** */
.wp-pagenavi {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: 40px;
  border-top: 1px solid #ccc;
  padding-top: 40px;
}

.wp-pagenavi .pages {
  display: block;
  text-align: center;
  width: 100%;
  margin-bottom: 1em;
}

.wp-pagenavi a {
  position: relative;
  padding: 0.5em 1em;
  background-color: #029f8b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.wp-pagenavi a:not(.previouspostslink):not(.nextpostslink):hover {
  opacity: 0.7;
}

.wp-pagenavi a {
  color: #fff;
}

.wp-pagenavi > *:not(.pages) {
  max-width: calc(100% / 2.6);
}

.archive .wp-pagenavi > *:not(.pages) {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

.wp-pagenavi > *:not(.pages) {
  margin-bottom: 4px;
}

.wp-pagenavi > *:not(.pages):not(:last-child) {
  margin-right: 4px;
}

.wp-pagenavi .extend {
  width: 24px !important;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-top: 2px solid;
  border-right: 2px solid;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .first::before,
.wp-pagenavi .last::before,
.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  width: 8px;
  height: 8px;
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .first::before,
.wp-pagenavi .first::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.wp-pagenavi .nextpostslink::before,
.wp-pagenavi .last::before,
.wp-pagenavi .last::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.wp-pagenavi .first::before,
.wp-pagenavi .last::before {
  left: -6px;
}

.wp-pagenavi .first::after,
.wp-pagenavi .last::after {
  right: -6px;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    margin-top: 24px;
  }

  .archive .wp-pagenavi > *:not(.pages) {
    width: 32px;
    height: 32px;
  }

  .wp-pagenavi .first::before,
  .wp-pagenavi .last::before {
    left: -5px;
  }

  .wp-pagenavi .first::after,
  .wp-pagenavi .last::after {
    right: -5px;
  }
}

/* ##############################################################################

    SEARCH

############################################################################## */

#search-list .section_pdg {
  padding-block: 50px;
}

#search-list .ttl-01 {
  margin: 70px 0 0;
}

/* ##############################################################################

    FORMY

############################################################################## */
#formy_form table {
  width: 100%;
}

#formy_form th,
#formy_form td {
  padding: 16px;
  vertical-align: middle;
  border-bottom: solid 1px #eee;
}

#formy_form th {
  font-weight: normal;
  white-space: nowrap;
  text-align: left;
  width: 34%;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form table textarea {
  width: 100%;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  vertical-align: bottom;
}

#formy_form table input[type="text"],
#formy_form table input[type="email"],
#formy_form table input[type="tel"],
#formy_form table input[type="date"],
#formy_form table input[type="password"],
#formy_form select,
#formy_form textarea {
  margin: 0;
  padding: 5px 15px;
  border: 1px solid #ccc;
  font: inherit;
  font-size: 100%;
}

#formy_form textarea {
  height: 100px;
}

#formy_form select {
  height: 40px;
}

#formy_form ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#formy_form input:hover {
  opacity: 0.7;
}

#formy_form textarea:hover {
  opacity: 0.7;
}

#formy_form input:focus {
  outline: none;
}

#formy_form .parsley-validated {
  background-color: #eee;
}

#formy_form .parsley-error {
  background-color: #fee;
}

#formy_form .parsley-success {
  background-color: #fff;
}

.help_text {
  font-size: 85%;
  color: #999;
}

.hidden_help {
  display: none;
}

.formy_privacy div {
  overflow-y: scroll;
  height: 140px;
  border: solid 1px #ccc;
  font-size: 85%;
  padding: 8px 16px;
}

.requiredIcon {
  background-color: #f55;
  color: #fff;
  margin: 0 0 0 1em;
  font-size: 70%;
  padding: 2px 5px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  float: right;
}

#formy_btn {
  padding-top: 32px;
  text-align: center;
}

#formy_btn input {
  font-size: inherit;
  border: none;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  padding: 16px 32px;
  -webkit-appearance: none;
  appearance: none;
}

#formy_form ul li input[type="radio"],
#formy_form ul li input[type="checkbox"] {
  display: none !important;
}

#formy_form ul li label {
  position: relative;
  display: inline-block;
  padding: 0.5em 8px 0.5em 40px;
  line-height: 1.6;
  vertical-align: top;
  cursor: pointer;
}

#formy_form ul li label:hover {
  opacity: 0.7;
}

#formy_form ul li label::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #788b93;
  left: 16px;
  top: 12px;
}

#formy_form ul li input[type="radio"] + label::before {
  border-radius: 10px;
}

#formy_form ul li input[type="radio"]:checked + label,
#formy_form ul li input[type="checkbox"]:checked + label {
  color: #e75f5f;
  font-weight: bold;
}

#formy_form ul li input[type="radio"]:checked + label::before,
#formy_form ul li input[type="checkbox"]:checked + label::before {
  border-color: #e75f5f;
}

#formy_form ul li input[type="radio"]:checked + label::after,
#formy_form ul li input[type="checkbox"]:checked + label::after {
  content: "";
  width: 10px;
  height: 18px;
  top: 4px;
  left: 20px;
  border-right: 2px solid #e75f5f;
  border-bottom: 2px solid #e75f5f;
  display: block;
  position: absolute;
  z-index: 10;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.formy_confirm {
  background-color: #4dbaff;
}

.formy_submit_disabled {
  background-color: #ccc;
}

#formy_btn .formy_submit_disabled:hover {
  opacity: 1;
  cursor: default;
}

.autoConfirmBack {
  background-color: #aaa;
}

.formy_send {
  background-color: #ff6600;
}

#total_required {
  padding: 16px;
  color: #f55555;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #formy_form {
    padding: 0 16px;
  }

  #formy_form th,
  #formy_form td {
    display: block;
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  #formy_form th {
    border-bottom: none;
    padding-bottom: 0;
    white-space: normal;
    font-weight: bold;
  }

  #formy_form td {
    padding-top: 0;
  }

  #formy_btn {
    padding-top: 8px;
  }

  #formy_btn input {
    width: 100%;
    background-size: contain;
    background-position: center;
  }

  .autoConfirmBack {
    margin-bottom: 8px;
  }
}

.lps_sec.section_pdg {
  padding-block: 104px;
}
.lps_sec .ttl-04 {
  font-weight: var(--font-weight-heading);
}

.page-clinic .lps_sec.section_pdg,
.page-first-consulation .lps_sec.section_pdg {
  padding-block: 172px !important;
}

@media screen and (max-width: 767px) {
  .page-clinic .lps_sec.section_pdg,
  .page-first-consulation .lps_sec.section_pdg {
    padding-block: 64px !important;
  }
}

/* ##############################################################################

    TOC

############################################################################## */

#toc_container {
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
  border: 1px solid #029f8b;
}

#toc_container p.toc_title {
  padding: 12px;
  font-size: 1rem;
  color: #fff;
  background-color: #029f8b;
  line-height: 1em;
  font-family: "A1 Mincho", serif;
}

.toc_list {
  margin-top: 0 !important;
  padding: 16px 24px !important;
}

.toc_list li:not(:last-child) {
  margin-bottom: 10px !important;
}

#toc_container a {
  text-decoration: underline;
}

#toc_container a:hover {
  color: #029f8b;
}

.toc_number {
  margin-right: 8px;
  height: 24px;
  padding: 0 7px;
  display: inline-block;
  text-align: center;
  border-radius: 12px;
  font-weight: bold;
  color: #029f8b;
  line-height: 1.8;
}
.toc_toggle a {
  color: #fff !important;
}
