@charset "UTF-8";

:root {
  --font-device: "Local Noto Sans JP", "Noto Sans JP", "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font-heading: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  --font-en: "Marcellus", serif;
  --color-bace: #333;
  --color-main: #5A9F4D;
  --color-main-dark: #3A833D;
  --color-sub: #9D9B8A;
  --color-bg: #FCF7E1;
  --color-bg-dark: #EDE4CD;
  --color-border: #CBCCCC;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: none;
  -moz-tab-size: 2;
  -o-tab-size: 2;
  tab-size: 2;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: inherit;
  text-decoration: none;
}

:where(button) {
  all: unset;
}

:where(a, input, button, textarea, select) {
  touch-action: manipulation;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

textarea {
  resize: block;
}

:where(button, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:focus-visible) {
  outline: 2px solid #2e2c29;
  outline-offset: 2px;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(ul, ol, li) {
  list-style: none;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(em, dfn) {
  font-style: inherit;
}

sup {
  vertical-align: text-top;
  font-size: 0.65em;
  line-height: 1;
}

sub {
  vertical-align: text-bottom;
  font-size: 0.65em;
  line-height: 1;
}

hr {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

::selection {
  background: #d4dcd6;
}

mark {
  background: transparent;
  font-style: normal;
}

fieldset {
  border: none;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

::selection {
  background: #d4dcd6;
}

img,
video {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  color: var(--color-bace);
  font-family: var(--font-device);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  background: #FFF;
  word-break: break-all;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
}

dt {
  font-family: var(--font-heading);
}

img {
  vertical-align: top;
}

i {
  font-style: normal;
}

.link {
  text-decoration: underline;
}

.link:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .link:hover {
    text-decoration: none;
  }
}

.link[target=_blank] {
  color: var(--color-main);
}

.link[target=_blank]::after {
  content: "";
  background-color: oklch(from var(--color-main) 0.7 c h);
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin: 0 5px;
}

.no-link {
  pointer-events: none;
}

a[href^=tel] {
  cursor: default;
}

:target {
  scroll-margin-top: 110px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}

@media (max-width: 800px) and (any-hover: hover) {
  .link:hover {
    text-decoration: underline;
  }
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 800px;
}

/*-----------------------------------------------------------
Header
-----------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
}

.header-layout {
  background-color: #fff;
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  height: 110px;
  width: 100%;
}

.h-logo {
  line-height: 1;
  flex: 1;
}

.h-utility {
  display: flex;
  align-items: center;
  gap: 48px;
}

.h-utility .tel-wrap {
  color: var(--color-sub);
}

.h-utility .tel-note {
  color: var(--color-sub);
}

@media (max-width: 1024px) {
  .header .tel-wrap {
    gap: 10px;
  }

  .header .list-sns {
    gap: 8px;
  }

  .header-layout {
    padding: 10px;
  }

  .h-utility {
    gap: 15px;
  }
}

@media (max-width: 800px) {
  .header {
    position: static;
  }

  .h-logo {
    text-align: center;
  }

  .h-logo img {
    max-width: min(360px, 100%);
  }

  .header-layout {
    height: 82px;
  }

  .h-utility {
    display: none;
  }
}

body.is-hidden {
  height: 100%;
  overflow: hidden;
}

.menu-btn {
  width: 100px;
  height: 80px;
  position: relative;
  color: var(--color-sub);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 0 3px;
  position: relative;
  transition: 0.2s;
  z-index: 100;
}

.menu-btn::before {
  content: "";
  background-color: rgba(51, 51, 51, 0.3);
  width: 1px;
  height: 54px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.menu-btn-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 7px;
}

.menu-btn-line span {
  display: block;
  background-color: #333;
  width: 38px;
  height: 1px;
  transition: 0.2s;
}

.menu-btn-line span:nth-of-type(2) {
  margin: 10px 0 0;
}

.menu-btn-txt {
  display: block;
  line-height: 1.5;
  text-align: center;
}

.menu-btn-txt::before {
  content: "MENU";
  font-family: var(--font-heading);
}

.menu-btn[aria-expanded=true]::before {
  content: none;
}

.menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(1) {
  transform: rotate(20deg) translate3d(3px, 5px, 0);
}

.menu-btn[aria-expanded=true] .menu-btn-line span:nth-of-type(2) {
  transform: rotate(-20deg) translate3d(3px, -5px, 0);
}

.menu-btn[aria-expanded=true] .menu-btn-txt::before {
  content: "CLOSE";
}

@media (max-width: 1024px) {
  .menu-btn {
    width: 85px;
    margin: 0;
  }
}

/*humberger内*/
.menu-navi {
  pointer-events: none;
  visibility: hidden;
  background: #fff;
  height: 100%;
  padding: 140px 13%;
  position: fixed;
  top: 0;
  right: 0;
  transition: 0.5s;
  transform: translateX(60px);
  transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  opacity: 0;
  z-index: 99;
}

.menu-navi.is-open {
  pointer-events: auto;
  visibility: visible;
  overflow-y: auto;
  transform: translateX(0);
  opacity: 1;
  transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
}

.menu-navi .menu-logo {
  margin-bottom: 70px;
}

.menu-navi .menu-utility {
  display: flex;
  align-items: center;
  gap: 40px;
}

.menu-navi .menu-utility .tel-note {
  font-size: 1.4rem;
  margin: 3px 0 0;
}

.gnavi-drawer-links-wrap {
  display: flex;
  gap: 97px;
  margin: 0 0 70px;
}

.gnavi-drawer-links {
  display: grid;
  gap: 13px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
}

.gnavi-drawer-links a {
  transition: color 0.2s;
}

.gnavi-drawer-links a[aria-current=page] {
  color: var(--color-main);
}

.gnavi-drawer-links .sub-menu {
  display: grid;
  gap: 8px;
  font-size: 1.4rem;
  margin: 15px 0 0;
}

.gnavi-drawer-links .sub-menu>li {
  padding-left: 18px;
  position: relative;
}

.gnavi-drawer-links .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (any-hover: hover) {
  .gnavi-drawer-links a:hover {
    color: var(--color-main);
  }
}

@media (max-width: 1024px) {
  .menu-navi {
    padding: 100px 7%;
  }

  .gnavi-drawer-links-wrap {
    gap: 50px;
  }
}

/*-----------------------------------------------------------
Hero
-----------------------------------------------------------*/
.hero {
  margin-top: 110px;
  position: relative;
}

.hero .splide__slide {
  position: relative;
  z-index: 0;
}

.hero .splide__slide::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero .splide__slide img {
  width: 100%;
}

.hero .splide__controls {
  position: absolute;
  bottom: 40px;
  right: 30px;
  z-index: 5;
}

.hero-catch {
  color: #fff;
  position: absolute;
  bottom: 8%;
  left: 5%;
  z-index: 5;
}

.hero-catch .ttl {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 3.3vw, 6rem);
  font-weight: 300;
  line-height: 1.3;
}

.hero-catch .sub-ttl {
  font-family: var(--font-en);
  font-size: clamp(2.3rem, 1.9vw, 3.5rem);
  letter-spacing: 0.2em;
}

@media (max-width: 1024px) {
  .hero .splide__controls {
    bottom: 15px;
    right: 5%;
  }
}

@media (max-width: 800px) {
  .hero {
    margin-top: 0;
  }

  .hero-catch {
    bottom: 50px;
    left: 5%;
  }

  .hero-catch .ttl {
    font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  }

  .hero-catch .sub-ttl {
    font-size: clamp(1.2rem, 3vw, 2.4rem);
  }
}

/*-----------------------------------------------------------
Top
-----------------------------------------------------------*/
/*------------
Common
--------------*/
.t-ttl {
  margin-bottom: 90px;
}

.t-ttl [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 10px 0;
  padding: 0 0 20px;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.t-ttl [lang=en]::before {
  content: "";
  background-color: var(--color-main);
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.t-ttl .jp {
  font-size: 3rem;
  font-weight: 500;
}

.t-ttl.center {
  text-align: center;
}

.t-ttl.center [lang=en]::before {
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 800px) {
  .t-ttl {
    margin-bottom: 30px;
  }

  .t-ttl [lang=en] {
    margin: 0 0 5px 0;
    padding: 0 0 15px;
  }

  .t-ttl .jp {
    font-size: 2.5rem;
  }
}

/*------------
Block
--------------*/
.sec01 {
  padding: clamp(75px, 11vw, 200px) 0 100px;
}

.l-sec01 {
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  grid-template-rows: 164px 1fr;
  gap: 0 110px;
  position: relative;
}

.l-sec01 .l-ttl {
  grid-area: 1/1/2/2;
}

.l-sec01 .l-ttl [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 10px 0;
  padding: 0 0 20px;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.l-sec01 .l-ttl [lang=en]::before {
  content: "";
  background-color: var(--color-main);
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.l-sec01 .l-ttl .jp {
  font-size: 3rem;
  font-weight: 500;
}

.l-sec01 .l-desc {
  grid-area: 1/2/3/3;
}

.l-sec01 .l-btn {
  grid-area: 2/1/3/2;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 75px 0 0;
  }

  .l-sec01 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }

  .l-sec01 .l-ttl {
    grid-area: 1/1/2/2;
  }

  .l-sec01 .l-ttl [lang=en] {
    margin: 0 0 5px 0;
    padding: 0 0 15px;
  }

  .l-sec01 .l-ttl .jp {
    font-size: 2.5rem;
  }

  .l-sec01 .l-desc {
    grid-area: 2/1/3/2;
  }

  .l-sec01 .l-btn {
    grid-area: 3/1/4/2;
    text-align: center;
  }
}

.sec02 {
  padding: 0 0 clamp(75px, 11vw, 200px);
}

.sec02 .l-btn {
  margin-top: 60px;
  text-align: center;
}

.l-sec02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11%;
}

.l-sec02 .l-table {
  border-top: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.l-sec02 .l-table th,
.l-sec02 .l-table td {
  border-bottom: 1px solid var(--color-border);
  padding: 22px 0;
  vertical-align: middle;
}

.l-sec02 .l-table th {
  font-weight: 300;
  text-align: left;
}

@media (max-width: 800px) {
  .sec02 {
    padding: 75px 0;
  }

  .sec02 .l-btn {
    margin-top: 40px;
  }

  .l-sec02 {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .l-sec02 .l-table {
    margin-bottom: 30px;
  }

  .l-sec02 .l-table colgroup {
    display: none;
  }

  .l-sec02 .l-table th,
  .l-sec02 .l-table td {
    display: block;
    width: 100%;
  }

  .l-sec02 .l-table th {
    border-bottom: none;
    padding: 15px 0 0;
  }

  .l-sec02 .l-table td {
    padding: 0 0 15px;
  }
}

.sec03 {
  background-color: var(--color-main);
  padding: clamp(75px, 11vw, 200px) 0;
}

.sec03 .t-ttl {
  margin-bottom: 50px;
}

.sec03 .t-ttl [lang=en] {
  color: #fff;
}

.sec03 .t-ttl [lang=en]::before {
  background-color: #fff;
}

.sec03 .t-ttl .jp {
  color: #fff;
}

.sec03-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.sec03-list .item {
  width: calc(33.3333333333% - 13.3333333333px);
}

.sec03-list .item a,
.sec03-list .item .no-link {
  background-color: #fff;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 13px;
  height: 100%;
  min-height: 133px;
  padding: 23px 25px;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
}

.sec03-list .item a::before,
.sec03-list .item .no-link::before {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 8px;
  position: absolute;
  right: 14px;
  top: calc(100% - 12px);
  transform: translate(0, -50%);
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.sec03-list .item:nth-child(1) .l-img {
  padding: 17px 0 0 13px;
}

.sec03-list .item:nth-child(2) .l-img {
  padding: 14px 0 0 13px;
}

.sec03-list .item:nth-child(3) .l-img {
  padding: 17px 0 0 8px;
}

.sec03-list .item:nth-child(4) .l-img {
  padding: 16px 0 0 15px;
}

.sec03-list .item:nth-child(5) .l-img {
  padding: 12px 0 0 3px;
}

.sec03-list .item:nth-child(6) .l-img {
  padding: 12px 0 0 19px;
}

.sec03-list .item:nth-child(7) a,
.sec03-list .item:nth-child(7) .no-link {
  border: 4px solid #FDAAAA;
}

.sec03-list .item:nth-child(7) a::before,
.sec03-list .item:nth-child(7) .no-link::before {
  background-color: #FDAAAA;
}

.sec03-list .item:nth-child(7) .l-img {
  padding: 6px 0 0 0;
}

.sec03-list .item:nth-child(7) .l-title [lang=en] {
  color: #FDAAAA;
}

.sec03-list .item:nth-child(8) .l-img {
  padding: 23px 0 0 9px;
}

.sec03-list .l-img {
  position: relative;
  z-index: 0;
}

.sec03-list .l-img::before {
  content: "";
  background-color: var(--color-bg);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec03-list .l-title {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}

.sec03-list .l-title [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.sec03-list .l-title .jp {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
}

@media (any-hover: hover) {
  .sec03-list .item a:hover::before,
  .sec03-list .item .no-link:hover::before {
    animation: btnArrow 0.6s forwards;
  }
}

@media (max-width: 1024px) {
  .sec03-list .item {
    width: calc(50% - 13.3333333333px);
  }
}

@media (max-width: 800px) {
  .sec03 {
    padding: 75px 0;
  }

  .sec03 .t-ttl {
    margin-bottom: 30px;
  }

  .sec03-list {
    gap: 10px;
  }

  .sec03-list .item {
    width: 100%;
  }

  .sec03-list .item a,
  .sec03-list .item .no-link {
    min-height: auto;
    padding: 18px 20px 23px 25px;
  }

  .sec03-list .l-title .jp {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

.sec04 {
  padding: clamp(75px, 11vw, 200px) 0;
}

.sec04 .t-ttl {
  margin-bottom: 25px;
}

.sec04-txt {
  margin-bottom: 90px;
}

.sec04-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.sec04-list .item {
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  padding: 50px 28px;
}

.sec04-list .l-ttl {
  margin-bottom: 30px;
}

.sec04-list .l-ttl [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.sec04-list .l-ttl .jp {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7;
}

.sec04-list .list-check-square {
  margin-bottom: 30px;
}

.sec04-list .list-check-square span {
  font-size: 1.3rem;
}

.sec04-list .l-btn {
  border-top: 1px solid var(--color-main);
  margin-top: auto;
  padding-top: 20px;
}

.sec04-list .btn-more {
  font-size: 1.8rem;
  min-height: 26px;
  min-width: 70px;
  padding: 0 0 6px 0;
}

@media (max-width: 800px) {
  .sec04 {
    padding: 75px 0;
  }

  .sec04-txt {
    margin-bottom: 50px;
  }

  .sec04-list .item {
    padding: 30px 5%;
  }

  .sec04-list .l-ttl {
    margin-bottom: 20px;
  }

  .sec04-list .l-ttl .jp {
    font-size: 1.8rem;
    line-height: 1.3;
  }
}

.sec05 {
  padding: clamp(75px, 11vw, 200px) 0;
  position: relative;
  z-index: 0;
}

.sec05::before {
  content: "";
  background-color: #EEE8D1;
  width: 80%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sec05 .t-ttl {
  margin-bottom: 40px;
}

.l-sec05 {
  display: flex;
  flex-direction: row-reverse;
  gap: 7%;
}

.l-sec05 .l-img {
  width: 48%;
}

.l-sec05 .label {
  background-color: #fff;
  border-left: 2px solid var(--color-main);
  padding: 35px 58px;
  margin: -80px 0 0 auto;
  position: relative;
  width: fit-content;
  z-index: 1;
}

.l-sec05 .job {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 500;
}

.l-sec05 .name {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 20px;
}

.l-sec05 .name .jp {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.l-sec05 .name .en {
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}

.l-sec05 .l-inner {
  max-width: 465px;
  margin: 0 0 0 5%;
}

.l-sec05 .l-sub-ttl {
  color: var(--color-main);
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 50px;
}

.l-sec05 .l-btn {
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .l-sec05 .label {
    padding: 25px 30px;
  }

  .l-sec05 .job {
    font-size: 1.6rem;
  }

  .l-sec05 .name .jp {
    font-size: 2rem;
  }
}

@media (max-width: 800px) {
  .sec05 {
    padding: 75px 0;
  }

  .sec05::before {
    width: 85%;
  }

  .sec05 .t-ttl {
    margin-bottom: 30px;
  }

  .l-sec05 {
    flex-direction: column;
    gap: 40px 0;
  }

  .l-sec05 .l-img {
    width: 100%;
  }

  .l-sec05 .label {
    margin: -55px 0 0 auto;
  }

  .l-sec05 .l-inner {
    margin: 0 5%;
    max-width: 100%;
  }

  .l-sec05 .l-sub-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .l-sec05 .l-btn {
    margin-top: 30px;
    text-align: center;
  }
}

.sec06 {
  padding: clamp(75px, 11vw, 200px) 0;
}

.l-sec06 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7%;
}

.l-sec06 a {
  display: block;
  position: relative;
}

.l-sec06 a::before {
  content: "";
  background: url(../images/share/btn_arrow02.svg) no-repeat center/contain;
  width: 33px;
  height: 33px;
  position: absolute;
  right: 0;
  top: calc(100% - 30px);
  transform: translate(0, -50%);
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.l-sec06 .l-img {
  margin-bottom: 35px;
}

.l-sec06 .link-txt .jp {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.l-sec06 .link-txt .en {
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}

@media (any-hover: hover) {
  .l-sec06 a:hover::before {
    animation: btnArrow 0.6s forwards;
  }
}

@media (max-width: 800px) {
  .sec06 {
    padding: 75px 0;
  }

  .l-sec06 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .l-sec06 .l-img {
    margin-bottom: 10px;
  }

  .l-sec06 .link-txt .jp {
    font-size: 2rem;
  }
}

.sec07 {
  margin-bottom: 70px;
  position: relative;
}

.sec07 .google-map iframe {
  height: 550px;
}

.sec07 .l-info {
  background-color: #fff;
  padding: 4% 3%;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

.sec07 .l-ttl {
  display: flex;
  align-items: baseline;
  gap: 0 15px;
  margin: 0 0 35px;
  padding-bottom: 10px;
  position: relative;
}

.sec07 .l-ttl::before {
  content: "";
  background-color: var(--color-main);
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.sec07 .l-ttl [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}

.sec07 .l-ttl .jp {
  font-size: 3rem;
  font-weight: 500;
}

.sec07 .l-time {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 20px 5px;
}

@media (max-width: 800px) {
  .sec07 .google-map iframe {
    height: 300px;
  }

  .sec07 .l-info {
    padding: 30px 5% 0;
    position: static;
    transform: none;
  }
}

/*------------
Post
--------------*/
.top-post-layout01 {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 50px;
  min-height: 170px;
  position: relative;
}

.top-post-layout01 .l-ttl {
  font-size: 3rem;
  margin-bottom: 15px;
}

.top-post-layout01 .l-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}

.list-top-news {
  border-top: 1px solid var(--color-border);
}

.list-top-news a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
  border-bottom: 1px solid var(--color-border);
  padding: 21px 0;
}

.list-top-news time {
  display: inline-block;
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  margin-right: 30px;
  text-box: trim-both cap alphabetic;
}

.list-top-news .category-wrap {
  display: inline-block;
  line-height: 1.2;
}

.list-top-news .category {
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: 400;
}

.list-top-news .category+.category {
  margin: 0 0 0 6px;
  padding: 0 0 0 8px;
  position: relative;
}

.list-top-news .category+.category::before {
  content: "|";
  position: absolute;
  top: -1px;
  left: 0;
}

.list-top-news .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-family: var(--font-heading);
  width: 100%;
}

.list-top-news .no-post {
  grid-column: 1/-1;
  border-bottom: 1px solid var(--color-border);
  padding: 21px 0;
}

@media (any-hover: hover) {
  .list-top-news a:hover .ttl {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .list-top-news a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .list-top-news time {
    font-size: 1.2rem;
  }

  .list-top-news .ttl {
    -webkit-line-clamp: 2;
    margin-top: 10px;
  }
}

/*-----------------------------------------------------------
下層レイアウト
-----------------------------------------------------------*/
.page-ttl {
  background-color: var(--color-bg-dark);
  margin: 110px 0 0;
  padding: 90px 5%;
  text-align: center;
}

.page-ttl .ttl {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.1em;
}

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

.breadcrumb ul {
  font-size: 1.5rem;
  padding: 5px 5vw;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--color-sub);
  border-right: 1px solid var(--color-sub);
  transform: rotate(45deg);
  margin: 0 12px 0 3px;
  vertical-align: 1px;
}

.u-contents {
  padding: 80px 0;
}

.u-contents p+p {
  margin-top: 1.5em;
}

@media (max-width: 800px) {
  .page-ttl {
    margin-top: 0;
    padding: 50px 5%;
  }

  .page-ttl .ttl {
    font-size: 2.5rem;
  }

  .u-contents {
    padding: 50px 0 70px;
  }
}

.u-h2,
.postdata h2 {
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 50px;
  padding-bottom: 20px;
  position: relative;
  text-align: center;
}

.u-h2::before,
.postdata h2::before {
  content: "";
  background-color: var(--color-main);
  width: 30px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.u-h3,
.postdata h3 {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-main-dark);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

.postdata h3 {
  margin-bottom: 25px;
}

.u-h4,
.postdata h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 14px;
  position: relative;
}

.u-h4::before,
.postdata h4::before {
  content: "";
  background-color: var(--color-main);
  width: 4px;
  height: 29px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media (max-width: 800px) {

  .u-h2,
  .postdata h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  .u-h3,
  .postdata h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }

  .u-h4::before,
  .postdata h4::before {
    height: 17px;
  }
}

.tall+.tall {
  margin-top: 120px;
}

.short+.short {
  margin-top: 60px;
}

.x-short+.x-short {
  margin-top: 30px;
}

.hidden {
  overflow: hidden;
}

@media (max-width: 800px) {
  .tall+.tall {
    margin-top: 80px;
  }

  .short+.short {
    margin-top: 50px;
  }
}

.col1 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.col3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.col4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 800px) {

  .col1,
  .col2,
  .col3,
  .col4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.list-disc {
  display: grid;
  gap: 5px;
}

.list-disc li {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
}

.list-disc li:before {
  content: "・";
  color: var(--color-main);
  display: block;
  position: absolute;
  left: 0;
}

.list-check {
  display: grid;
  gap: 5px;
}

.list-check li {
  position: relative;
  padding-left: 30px;
}

.list-check li::before {
  content: "";
  background: url(../images/share/icon_check.svg) no-repeat center/contain;
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 18px;
}

.list-check-square {
  display: grid;
  gap: 5px;
}

.list-check-square li {
  position: relative;
  padding-left: 30px;
}

.list-check-square li::before {
  content: "";
  background: url(../images/share/icon_check-square.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
}

.list-num {
  counter-reset: number;
  display: grid;
  gap: 5px;
}

.list-num>li {
  padding-left: 30px;
  position: relative;
}

.list-num>li:before {
  background-color: var(--color-main);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.list-circle >li {
  position: relative;
  padding-left: 20px;
}

.list-circle >li:before {
  content: "";
  background: #4D9F9A;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
}

.list-payment {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.list-payment img {
  height: 70px;
  object-fit: contain;
  width: auto;
}

.list-payment .small img {
  height: 40px;
}

.list-payment .small02 img {
  height: 60px;
}

@media (max-width: 800px) {
  .list-payment {
    gap: 10px;
  }

  .list-payment img {
    height: 50px;
  }

  .list-payment .small img {
    height: 25px;
  }
}

.dl-style01 {
  display: grid;
  gap: 15px;
}

.dl-style01 .item {
  display: grid;
  grid-template-columns: 25% 75%;
}

.dl-style01 dt {
  background-color: var(--color-main);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
  padding: 20px;
}

.dl-style01 dd {
  background-color: var(--color-bg-dark);
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 .item {
    grid-template-columns: 1fr;
  }

  .dl-style01 dt,
  .dl-style01 dd {
    padding: 15px;
  }
}

.card-style01 .item {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 25px 20px;
}

.card-style01 .card-img {
  margin-bottom: 20px;
}

.card-style01 .card-ttl {
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
}

.card-style01.bg01 .item {
  background-color: var(--color-bg-dark);
  border: none;
}

.card-style02>li {
  background: var(--color-bg-dark);
  display: flex;
  flex-direction: column;
  padding: 25px;
  position: relative;
}

.card-style02>li:not(:last-child)::before {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent var(--color-sub);
  position: absolute;
  right: -5.5%;
  top: 50%;
  transform: translateY(-50%);
}

.card-style02 .num {
  background: var(--color-main);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font-en);
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 2px 20px;
  margin: 0 auto 10px;
}

.card-style02 .list-ttl {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}

.card-style02 .list-img {
  text-align: center;
  margin-bottom: 25px;
}

@media (max-width: 800px) {
  .card-style01 .item {
    padding: 20px 5%;
  }

  .card-style02 {
    gap: 30px !important;
  }

  .card-style02>li:not(:last-child)::before {
    top: auto;
    bottom: -27px;
    left: 50% !important;
    right: auto;
    transform: translateX(-50%) rotate(90deg);
  }
}

.table-style01 th,
.table-style01 td {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color-bg-dark);
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: left;
}

.table-style02 {
  border-top: 1px solid var(--color-border);
}

.table-style02 th,
.table-style02 td {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 15px;
  vertical-align: middle;
}

.table-style02 th {
  font-family: var(--font-heading);
  font-weight: 500;
  text-align: left;
}

.table-style02 tr:first-child th {
  background-color: var(--color-bg-dark);
}

.table-scroll-txt {
  display: none;
}

@media (max-width: 800px) {
  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
    padding: 8px 15px;
    width: 100%;
  }

  .table-scroll-txt {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }

  .table-scroll-txt::before {
    content: "";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat center/contain;
    width: 30px;
    height: 24.5px;
    margin-right: 10px;
  }

  .table-scroll {
    overflow-x: scroll;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .table-scroll::-webkit-scrollbar {
    height: 5px;
  }

  .table-scroll::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #f5f6f8;
  }

  .table-scroll::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #333;
  }

  .table-scroll table {
    margin-bottom: 10px !important;
    width: 200%;
  }
}

.box-style01 {
  padding-top: 25px;
  position: relative;
  z-index: 0;
}

.box-style01 .label {
  background-color: var(--color-sub);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1;
  padding: 16px 10px 16px 23px;
  position: absolute;
  top: 0;
  left: 0;
  text-box: trim-both cap alphabetic;
  width: fit-content;
  z-index: 1;
}

.box-style01 .label::before {
  content: "";
  background-color: var(--color-sub);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  width: 15px;
  height: 100%;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.box-style01 .box-inner {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 55px 50px;
}

.box-style01 .box-ttl {
  color: var(--color-main-dark);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 25px;
}

.box-style01.bg01 .label {
  background-color: var(--color-main);
}

.box-style01.bg01 .label::before {
  background-color: var(--color-main);
}

.box-style01.bg01 .box-inner {
  background-color: var(--color-bg-dark);
}

.box-style02 {
  background-color: var(--color-bg-dark);
  padding: 5%;
}

.box-style02 .box-ttl {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-main-dark);
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.box-style02.bg-green {
  background-color: var(--color-main);
  color: #fff;
}

.box-style02.bg-green .box-ttl {
  color: #fff;
}

.box-style02.bg-green .list-disc li:before {
  color: #fff;
}

.box-style03 {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 5%;
}

.box-style03 .box-ttl {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 25px;
}

.box-style03 .box-ttl02 {
  font-size: 2rem;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.box-style03 .box-ttl02::before {
  content: "";
  background: var(--color-main);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding-top: 19px;
  }

  .box-style01 .label {
    font-size: 1.8rem;
    padding: 13px 8px 13px 13px;
  }

  .box-style01 .label::before {
    height: calc(100% + 2px);
    right: -14px;
  }

  .box-style01 .box-inner {
    padding: 40px 5% 30px;
  }

  .box-style01 .box-ttl {
    font-size: 2rem;
  }

  .box-style02 {
    padding: 25px 5%;
  }

  .box-style02 .box-ttl {
    align-items: flex-start;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .box-style02 .box-ttl img {
    margin-top: 5px;
  }

  .box-style03 .box-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .box-style03 .box-ttl02 {
    font-size: 1.8rem;
  }
}

.list-anchor-link {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.list-anchor-link a {
  display: flex;
  align-items: center;
  background-color: var(--color-bg-dark);
  border-radius: 3px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
  position: relative;
  padding: 0 35px 0 15px;
  min-height: 60px;
  transition: filter 0.3s;
}

.list-anchor-link a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-sub);
  border-bottom: 2px solid var(--color-sub);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg);
}

@media (any-hover: hover) {
  .list-anchor-link a:hover {
    filter: brightness(0.9) contrast(110%);
  }
}

@media (max-width: 800px) {
  .list-anchor-link {
    gap: 10px;
  }

  .list-anchor-link a {
    font-size: 1.3rem;
    justify-content: center;
    text-align: center;
    padding: 8px 8px 20px;
    min-height: 0;
    height: 100%;
  }

  .list-anchor-link a::after {
    top: auto;
    bottom: 10px;
    right: 50%;
    transform: translateX(50%) rotate(45deg);
  }
}

.under-slider01 .splide {
  margin: 0 auto;
}

.under-slider01 .splide__track {
  overflow: visible;
}

.under-slider01 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider01 .splide__arrow--prev {
  left: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow--next {
  right: calc((100% - 860px) / 2);
}

.under-slider01 .splide__arrow {
  top: calc(50% - 31px);
  transform: translateY(-50%);
}

.under-slider01 .item-desc {
  margin-top: 12px;
}

.under-slider01 .item-ttl {
  font-size: 1.8rem;
  font-weight: 500;
}

.under-slider02 .item-img {
  position: relative;
}

.under-slider02 figcaption {
  background: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: left;
  padding: 3px 5px;
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media (max-width: 800px) {
  .under-slider01 .item-desc {
    margin-top: 6px;
  }

  .under-slider01 .item-ttl {
    font-size: 1.6rem;
  }
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

.google-map iframe {
  vertical-align: bottom;
  width: 100%;
  height: 450px;
}

@media (max-width: 800px) {
  .google-map iframe {
    height: 300px;
  }
}

/*------------
レイアウト
--------------*/
.l-imgR,
.l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img {
  margin: 0 5% 0 0;
  width: 40%;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small {
  width: 30%;
}

.l-imgR .l-desc,
.l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.l-imgR .l-img {
  margin: 0 0 0 5%;
}

@media (max-width: 800px) {

  .l-imgR,
  .l-imgL {
    display: block;
  }

  .l-imgR .l-img,
  .l-imgL .l-img {
    margin: 0 0 15px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img.small,
  .l-imgL .l-img.small {
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-main-dark);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

@media (max-width: 800px) {
  .dl-privacy dt {
    font-size: 2rem;
  }
}

.l-style01 {
  position: relative;
  z-index: 0;
}

.l-style01 .l-desc {
  background-color: #fff;
  border: 1px solid var(--color-border);
  padding: 60px;
  position: relative;
  max-width: 1025px;
  margin: -20% auto 0;
  width: 90%;
  z-index: 1;
}

.l-style02 {
  display: flex;
}

.l-style02 .l-img {
  position: relative;
  width: 44%;
  z-index: 1;
}

.l-style02 .l-desc {
  margin: 123px 0 0 -90px;
  flex: 1;
}

.l-style02 .l-inner {
  background-color: var(--color-bg-dark);
  max-width: 660px;
  padding: 55px 20px 55px 150px;
}

.l-style02 .l-txt {
  padding: 0 35px 0 0;
}

.l-style02 .l-ttl {
  color: var(--color-main-dark);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 40px;
}

.l-style02 .l-name {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  margin-top: 40px;
  position: relative;
  z-index: 0;
}

.l-style02 .l-name::before {
  content: "";
  background-color: #9D9D9D;
  flex: 1;
  height: 1px;
  z-index: -1;
}

@media (max-width: 800px) {
  .l-style01 .l-desc {
    padding: 30px 5%;
    margin: -10% auto 0;
  }

  .l-style01 .u-h2 {
    font-size: 2.2rem;
  }

  .l-style02 {
    display: block;
  }

  .l-style02 .l-img {
    width: 100vw;
    margin: 0 -5vw;
  }

  .l-style02 .l-desc {
    margin: -50px 0 0;
    position: relative;
    z-index: 1;
  }

  .l-style02 .l-inner {
    padding: 30px 5%;
  }

  .l-style02 .l-txt {
    padding: 0;
  }

  .l-style02 .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .l-style02 .l-name {
    font-size: 1.6rem;
    margin-top: 25px;
  }
}

.merit-demerit {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
}

.merit-demerit .item {
  background: var(--color-bg-dark);
  border-top: 5px solid var(--color-main);
  padding: 8%;
}

.merit-demerit .item:nth-of-type(2) {
  border-color: #9E9B8B;
}

.merit-demerit .item:nth-of-type(2) .list-disc li::before {
  color: #9E9B8B;
}

.merit-demerit .item-ttl {
  display: flex;
  align-items: baseline;
  gap: 25px;
  margin-bottom: 20px;
}

.merit-demerit .item-ttl [lang=en] {
  font-family: var(--font-en);
  font-size: 3rem;
  letter-spacing: 0.2em;
  line-height: 1;
}

.merit-demerit .item-ttl .jp {
  font-size: 1.4rem;
  font-weight: 500;
}

@media (max-width: 800px) {
  .merit-demerit {
    grid-template-columns: minmax(0, 1fr);
    gap: 25px;
  }

  .merit-demerit .item {
    padding: 7% 5%;
  }

  .merit-demerit .item-ttl {
    margin-bottom: 15px;
  }

  .merit-demerit .item-ttl [lang=en] {
    font-size: 2.4rem;
  }
}

.staff-layout {
  display: flex;
}

.staff-layout .l-img {
  flex: 0 0 410px;
  margin-right: 65px;
}

.staff-layout .l-desc {
  margin-top: 20px;
}

.staff-layout .l-message {
  color: var(--color-main);
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 500;
}

.doctor-name {
  display: flex;
  align-items: baseline;
  gap: 0 20px;
}

.doctor-name .job {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
}

.doctor-name .name {
  display: flex;
  align-items: baseline;
  gap: 0 20px;
}

.doctor-name .name .jp {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 500;
}

.doctor-name .name .en {
  font-family: var(--font-en);
  color: var(--color-main);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
}

.staff-profile .item {
  background: var(--color-bg-dark);
  padding: 35px;
}

.staff-profile .item-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 1px dotted var(--color-border);
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.staff-profile .dl-career {
  display: grid;
  grid-template-columns: 110px 1fr;
  font-size: 1.4rem;
  line-height: 1.7;
}

.staff-profile .dl-career dt,
.staff-profile .dl-career dd {
  padding: 10px 0;
}

@media (max-width: 800px) {
  .staff-layout {
    display: block;
  }

  .staff-layout .l-img {
    text-align: center;
    margin: 0 0 30px;
  }

  .staff-layout .l-desc {
    margin: 0;
  }

  .doctor-name {
    flex-wrap: wrap;
  }

  .doctor-name .job {
    font-size: 1.6rem;
  }

  .doctor-name .name {
    flex-wrap: wrap;
  }

  .doctor-name .name .jp {
    font-size: 2.2rem;
  }

  .doctor-name .name .en {
    font-size: 1.6rem;
  }

  .staff-profile .item {
    padding: 25px 5%;
  }
}

/*------------
Add
--------------*/
/*-----------------------------------------------------------
Footer
-----------------------------------------------------------*/
.footer {
  margin-top: auto;
  position: relative;
}

.f-layout01 {
  position: relative;
  z-index: 1;
}

.f-layout-box {
  background-color: var(--color-main);
  color: #fff;
  margin: 0 auto;
  padding: 100px 0 115px;
  width: 90%;
}

.f-layout-box .container {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 19%;
}

.f-layout-box .l-ttl [lang=en] {
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 10px 0;
  padding: 0 0 20px;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.f-layout-box .l-ttl [lang=en]::before {
  content: "";
  background-color: #fff;
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.f-layout-box .l-ttl .jp {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
}

.f-layout-box .tel-wrap {
  margin: 0 0 5px 0;
}

.f-layout-box .tel-wrap .label {
  font-size: 1.4rem;
  margin: 0 0 8px;
}

.f-layout-box .tel-wrap .tel {
  font-size: 2.4rem;
}

.f-layout-box .tel-note {
  font-size: 1.5rem;
}

.f-layout02 {
  padding: 127px 0 105px;
  position: relative;
  z-index: 0;
}

.f-layout02::before {
  content: "";
  background-color: var(--color-bg);
  width: 100%;
  height: calc(100% + 165px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.f-layout02 .f-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8%;
  margin-bottom: 100px;
}

.f-layout02 .time-table {
  margin-bottom: 20px;
}

.f-logo {
  margin-bottom: 44px;
}

.f-address-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 35px;
  margin-bottom: 30px;
}

.f-address {
  font-size: 1.4rem;
}

.site-map {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 48px;
}

.f-links {
  display: grid;
  gap: 13px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
}

.f-links a {
  transition: color 0.2s;
}

.f-links a[aria-current=page] {
  color: var(--color-main);
}

.f-links .sub-menu {
  display: grid;
  gap: 8px;
  font-size: 1.4rem;
  margin: 15px 0 0;
}

.f-links .sub-menu>li {
  padding-left: 18px;
  position: relative;
}

.f-links .sub-menu>li::before {
  content: "";
  background-color: var(--color-main);
  width: 10px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.copyright-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}

.copyright {
  font-size: 1.4rem;
}

.f-links02 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.f-links02 li+li::before {
  content: "|";
  margin: 0 15px;
}

.f-links02 a {
  transition: color 0.2s;
}

.f-links02 a[aria-current=page] {
  color: var(--color-main);
}

.pagetop {
  position: absolute;
  bottom: 105px;
  right: 28px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  color: var(--color-main);
  line-height: 0.7;
  text-align: center;
  writing-mode: vertical-rl;
  transition: transform 0.5s;
  padding-top: 20px;
  position: relative;
  z-index: 0;
}

.pagetop a::before {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
}

@media (any-hover: hover) {

  .f-links a:hover,
  .f-links02 a:hover {
    color: var(--color-main);
  }

  .pagetop a:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 1024px) {
  .f-layout-box .container {
    gap: 5%;
  }
}

@media (max-width: 800px) {
  .footer {
    padding-bottom: 50px;
  }

  .f-layout-box {
    padding: 50px 0 55px;
  }

  .f-layout-box .container {
    gap: 30px;
    grid-template-columns: 1fr;
  }

  .f-layout-box .l-ttl [lang=en] {
    margin: 0 0 5px 0;
    padding: 0 0 15px;
  }

  .f-layout-box .l-ttl .jp {
    font-size: 2.5rem;
  }

  .f-layout02 {
    padding: 50px 0;
  }

  .f-layout02 .f-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
  }

  .copyright-wrap {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .pagetop {
    bottom: 75px;
    right: 20px;
  }
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .sp-navi {
    display: block;
  }

  /*-------------
  下部固定
  -------------*/
  :root {
    --navi-background: #5A9F4D;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
  }

  .sp-navi-btns {
    display: flex;
    background: var(--navi-background);
    box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.15);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
  }

  .sp-navi-btns div,
  .sp-navi-btns button {
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    border-right: 1px solid var(--navi-border-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
  }

  .sp-navi-btns .item:nth-child(2) a {
    padding: 5px 0;
  }

  .sp-navi-btns .item:nth-child(2) .img svg {
    margin-bottom: 0;
  }

  .sp-navi-btns .item:last-child {
    border-right: none;
  }

  .sp-navi-btns .item a {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 8px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 20px;
    margin-bottom: 4px;
    stroke: var(--svg-stroke);
  }

  .sp-navi-btns .item .img img {
    object-fit: cover;
    width: 21px;
    height: 20px;
    margin-bottom: 4px;
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .navi-menu-btn {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    appearance: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
  }

  .navi-menu-btn .hamburger-line {
    position: absolute;
    top: 19px;
    right: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 1px;
    background: #fff;
    transition: 0.3s;
  }

  .navi-menu-btn .hamburger-line::before,
  .navi-menu-btn .hamburger-line::after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 0.3s;
  }

  .navi-menu-btn .hamburger-line::before {
    top: -5px;
  }

  .navi-menu-btn .hamburger-line::after {
    top: 5px;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line {
    background-color: transparent;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::before, .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    top: 0;
    background: #fff;
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::before {
    transform: rotate(45deg);
  }

  .navi-menu-btn[aria-expanded=true] .hamburger-line::after {
    transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .navi-menu-btn .u-visually-hidden {
    position: absolute;
    white-space: nowrap;
    width: 1px;
    height: 1px;
    overflow: hidden;
    border: 0;
    padding: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    margin: -1px;
  }

  .navi-menu-btn .ttl {
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-align: center;
    position: absolute;
    top: 28px;
    right: 0;
    left: 0;
  }

  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background-color: var(--color-bg);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 50px 30px 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.5s;
    transform: translateX(60px);
    transition: 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    opacity: 0;
    z-index: 1000;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    transform: translateX(0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.17, 0.84, 0.44, 1);
  }

  .sp-navi-list {
    margin: 0 0 50px;
  }

  .sp-navi-list>li {
    position: relative;
    border-bottom: 1px solid var(--color-border);
  }

  .sp-navi-list>li>a {
    display: block;
    background: url(../images/share/sp_navi_arrow.svg) no-repeat center right 15px/13px auto;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown {
    position: relative;
  }

  .sp-navi-list .sp-dropdown::after {
    content: "";
    background-color: rgba(157, 155, 138, 0.5);
    position: absolute;
    top: 15px;
    right: 40px;
    width: 1px;
    height: 17px;
  }

  .sp-navi-list .sp-dropdown-btn .ttl {
    display: block;
    padding: 10px 0;
  }

  .sp-navi-list .sp-dropdown-plus {
    background: url(../images/share/sp_navi_plus.svg) no-repeat center/11px;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 48px;
    transition: 0.3s;
  }

  .sp-navi-list .is-on .sp-dropdown-plus {
    transform: rotate(45deg);
    transform-origin: center;
  }

  .sp-navi-list .sub-menu {
    display: none;
  }

  .sp-navi-list .sub-menu li {
    padding-left: 18px;
    position: relative;
  }

  .sp-navi-list .sub-menu li::before {
    content: "";
    background-color: var(--color-main);
    width: 10px;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .sp-navi-list .sub-menu li+li {
    margin-top: 3px;
  }

  .sp-navi-list .sub-menu a {
    display: block;
    padding: 5px 0;
    font-size: 1.4rem;
  }
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*通常投稿*/
.list-post-type01 {
  border-top: 1px solid var(--color-border);
  margin-bottom: 50px;
}

.list-post-type01 a {
  border-bottom: 1px solid var(--color-border);
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 15px 70px 15px 0;
  position: relative;
  transition: border-color 0.3s;
}

.list-post-type01 a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.3s;
  z-index: 2;
}

.list-post-type01 .list-img img {
  border: 1px solid #eee;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 7/5;
}

.list-post-type01 time {
  display: inline-block;
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  margin-right: 30px;
  text-box: trim-both cap alphabetic;
}

.list-post-type01 .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 5px;
}

.list-post-type01 .category-wrap {
  line-height: 1.2;
}

.list-post-type01 .category {
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: 400;
}

.list-post-type01 .category+.category {
  margin: 0 0 0 6px;
  padding: 0 0 0 8px;
  position: relative;
}

.list-post-type01 .category+.category::before {
  content: "|";
  position: absolute;
  top: 1px;
  left: 0;
}

.list-post-type01 .no-post {
  padding: 25px 0;
}

@media (any-hover: hover) {
  .list-post-type01 a:hover {
    border-color: var(--color-main);
  }

  .list-post-type01 a:hover::before {
    border-color: var(--color-main);
  }
}

/*詳細ページ*/
.l-post-single {
  display: flow-root;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.l-post-single .l-ttl {
  border-bottom: 3px solid var(--color-border);
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 50px;
}

.l-post-single .post-data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: #9D9D9D;
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 1;
  white-space: nowrap;
  margin-right: 30px;
  text-box: trim-both cap alphabetic;
}

.l-post-single .post-data .category {
  color: var(--color-main);
  font-size: 1.1rem;
  font-weight: 400;
}

.l-post-single .post-data .category+.category {
  margin: 0 0 0 6px;
  padding: 0 0 0 8px;
  position: relative;
}

.l-post-single .post-data .category+.category::before {
  content: "|";
  position: absolute;
  top: -1px;
  left: 0;
}

.postdata p,
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  position: relative;
  padding-left: 15px;
}

.postdata ul li:before {
  content: "";
  background: var(--color-main);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
}

.postdata ol {
  counter-reset: number;
}

.postdata ol li {
  padding-left: 30px;
  position: relative;
}

.postdata ol li::before {
  background-color: var(--color-main);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 5px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding-left: 2px;
  width: 20px;
  height: 20px;
}

.postdata ol li>ol {
  counter-reset: number;
}

.postdata sub {
  font-size: 1.1rem;
  position: relative;
  bottom: -0.1em;
}

.postdata sup {
  font-size: 1.1rem;
  position: relative;
  top: -0.1em;
}

.postdata .wp-block-button__link {
  background-color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 2px;
  color: #fff;
  font-size: 15px;
  padding: 5px 35px;
  min-width: 200px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s;
}

.postdata .wp-block-button__link::after {
  content: “”;
  width: 7px;
  height: 7px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  transition: border-color 0.3s;
}

.postdata .wp-block-button__link:focus-visible {
  opacity: 1;
  background-color: #fff;
  color: var(--color-main);
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }

  .postdata .wp-block-button__link:hover {
    opacity: 1;
    background-color: #fff;
    color: var(--color-main);
  }
}

/*ページャー*/
.post-number {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  font-family: var(--font-heading);
  color: #333;
  background-color: var(--color-bg-dark);
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  transition: 0.3s;
  padding: 0 20px;
  border-radius: 5px;
}

.post-number>*+* {
  margin-left: 10px;
}

.post-number a:focus-visible {
  background: var(--color-main);
  color: #fff;
}

.post-number .current {
  background: var(--color-main);
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  margin: 0 10px;
  transition: color 0.3s;
}

.post-number-single .all:focus-visible {
  color: var(--color-main);
}

.post-number-single .prev,
.post-number-single .next {
  width: 32px;
  height: 32px;
  position: relative;
  transition: color 0.3s;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #333;
  margin: 0 auto;
  top: 12px;
  transition: border-bottom 0.3s;
}

.post-number-single .prev:focus-visible,
.post-number-single .next:focus-visible {
  color: var(--color-main);
}

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  border-bottom: 1px solid var(--color-main);
}

.post-number-single .prev::before {
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid #333;
}

.post-number-single .prev:focus-visible::before {
  border-left: 1px solid var(--color-main);
}

.post-number-single .next::before {
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid #333;
}

.post-number-single .next:focus-visible::before {
  border-right: 1px solid var(--color-main);
}

@media (any-hover: hover) {
  .post-number a:hover {
    background: var(--color-main);
    color: #fff;
  }

  .post-number-single .all:hover {
    color: var(--color-main);
  }

  .post-number-single .prev:hover::before {
    border-left: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
  }

  .post-number-single .next:hover::before {
    border-bottom: 1px solid var(--color-main);
    border-right: 1px solid var(--color-main);
  }
}

@media (max-width: 800px) {

  /*通常投稿*/
  .list-post-type01 a {
    grid-template-columns: 120px 1fr;
    padding: 20px 25px 20px 0;
  }

  .list-post-type01 a::before {
    right: 0;
  }

  .list-post-type01 .list-img img {
    height: 90px;
  }

  .list-post-type01 time {
    font-size: 1rem;
  }

  .list-post-type01 .list-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-post-type01 .category {
    font-size: 1rem;
  }

  .list-post-type01 .no-post {
    padding: 25px 0;
  }

  /*詳細ページ*/
  .l-post-single .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
}

.main-contents {
  padding: 0 70px;
  width: calc(100% - 300px);
  max-width: 1200px;
  margin: 0 auto;
}

.side-contents {
  padding: 0 40px;
  width: 300px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-area-item-ttl {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-links {
  display: grid;
  gap: 5px;
}

.side-area-links li {
  padding-left: 20px;
  position: relative;
}

.side-area-links li::before {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 5px;
  border-color: transparent transparent transparent var(--color-main);
  position: absolute;
  top: 11px;
  left: 0;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .sidebar-layout {
    flex-direction: column-reverse;
    padding: 0 5vw;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0;
  }

  .side-contents {
    width: 100%;
    padding: 0;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*-----------------------------------------------------------
Common
-----------------------------------------------------------*/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

hr {
  max-width: 1024px;
  margin: 50px auto;
}

.fade {
  transition: opacity 0.5s;
}

.fade:focus-visible {
  opacity: 0.6;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.6;
  }
}

.fs11 {
  font-size: 1.1rem;
}

.fs13 {
  font-size: 1.3rem;
}

.bold,
strong {
  font-weight: bold;
}

.thin {
  font-weight: 300;
}

.red {
  color: #E44747;
}

.green {
  color: var(--color-main);
}

.catch {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.marker {
  background: linear-gradient(transparent 50%, #EDE4CD 50%);
}

.notice {
  font-size: 0.8rem;
  text-indent: -1.2rem;
  padding-left: 1.2rem;
}

.underline {
  text-decoration: underline;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mbXS {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 90px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .catch {
    font-size: 1.8rem;
    text-align: left;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }
}

/*ボタン*/
.btn-more {
  border-bottom: 1px solid var(--color-main);
  color: var(--color-main);
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  min-height: 37px;
  min-width: 200px;
  padding: 0 30px 12px 0;
  position: relative;
  text-align: left;
}

.btn-more::before {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 12px;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.btn-more[target=_blank] {
  padding: 0 55px 12px 0;
}

.btn-more[target=_blank]::after {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 14px;
  height: auto;
  aspect-ratio: 21/18;
  display: inline-block;
  position: absolute;
  top: 33%;
  transform: translateY(-50%);
  right: 35px;
  transition: background-color 0.3s;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  justify-content: center;
}

@media (any-hover: hover) {
  .btn-more:hover::before {
    animation: btnArrow 0.6s forwards;
  }

  .btn-more:hover[target=_blank]::after {
    background-color: var(--color-main);
  }
}

@keyframes btnArrow {
  0% {
    transform: translate(0, -50%);
    opacity: 100%;
  }

  49% {
    transform: translate(80%, -50%);
    opacity: 0;
  }

  50% {
    transform: translate(-80%, -50%);
    opacity: 0;
  }

  100% {
    transform: translate(0, -50%);
    opacity: 100%;
  }
}

/*診療カレンダー*/
:root {
  --event01: #EF866B;
  --event02: #F7B46B;
  --event03: #A8DBA8;
  --event04: #B0D7D5;
}

.business-calendar-box-wrap {
  border: 1px solid var(--color-border);
  margin-bottom: 15px;
  padding: 30px 20px 30px;
}

.business-calendar-box-wrap .business-calendar {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.business-calendar-box-wrap .business-calendar caption {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px;
  position: relative;
}

.business-calendar-box-wrap .business-calendar caption span {
  line-height: 1;
  font-size: 2.5rem;
  position: absolute;
  vertical-align: -1px;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-past {
  left: 0;
}

.business-calendar-box-wrap .business-calendar caption span.business-calendar-future {
  right: 0;
}

.business-calendar-box-wrap .business-calendar-past a,
.business-calendar-box-wrap .business-calendar-future a {
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.business-calendar-box-wrap .business-calendar th {
  background-color: var(--color-sub);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 8px 5px;
  text-align: center;
  width: 14%;
}

.business-calendar-box-wrap .business-calendar td {
  background: #FFFFFF;
  position: relative;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 5px 20px;
  z-index: 0;
}

.business-calendar-box-wrap .business-calendar td:first-child::before {
  color: #E44747;
}

.business-calendar-box-wrap .business-calendar td::before {
  content: "";
  color: var(--color-bace);
  font-family: "FOT-筑紫A丸ゴシック Std D", TsukuARdGothicStd-D, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0;
}

.business-calendar-box-wrap.large .business-calendar th,
.business-calendar-box-wrap.large .business-calendar td {
  padding: 10px;
  font-size: 1.5rem;
}

.business-calendar-box-wrap.col2 {
  grid-template-columns: 1fr;
}

.business-calendar-box-wrap.col2 .business-calendar-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3%;
}

.business-calendar-box-wrap .business-calendar .today {
  text-decoration: underline;
}

.business-calendar-box-wrap .business-calendar .attr0::before,
.business-calendar-box-wrap .business-calendar .attr1::before,
.business-calendar-box-wrap .business-calendar .attr2::before,
.business-calendar-box-wrap .business-calendar .attr3::before {
  opacity: 1;
}

.business-calendar-box-wrap .business-calendar .attr0::before {
  content: "✕";
  color: #E44747;
}

.business-calendar-box-wrap .business-calendar .attr1::before {
  content: "◯";
}

.business-calendar-box-wrap .business-calendar .attr2::before {
  content: "□";
}

.list-event {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.list-event li {
  font-size: 1.5rem;
  line-height: 1;
}

.list-event i {
  margin: 0 5px 0 0;
}

.list-event .icon {
  font-family: "FOT-筑紫A丸ゴシック Std D", TsukuARdGothicStd-D, sans-serif;
}

.list-event li:first-child .icon {
  color: #E44747;
}

@media (max-width: 800px) {
  .business-calendar-box-wrap.col2 .business-calendar-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .list-event {
    display: block;
  }

  .list-event li+li {
    margin-top: 5px;
  }
}

/*診療時間*/
.time-table {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  margin-bottom: 5px;
}

.time-table-head .item {
  padding: 10px 0;
}

.time-table-head .item:first-child {
  border-right: 1px solid var(--color-border);
}

.time-table-body .item {
  border-top: 1px solid #DFDFDF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.time-table-body .item:first-child {
  border-right: 1px solid var(--color-border);
}

.time-table-head,
.time-table-body {
  display: grid;
  font-family: var(--font-heading);
  grid-template-columns: 140px repeat(7, 1fr);
}

.time-table.large .time-table-head,
.time-table.large .time-table-body {
  grid-template-columns: 220px repeat(6, 1fr) 100px;
}

.time-table-txt {
  font-size: 1.5rem;
}

@media (max-width: 800px) {
  .time-table-head {
    font-size: 1.2rem;
  }

  .time-table-head .item {
    padding: 5px 0;
  }

  .time-table-body .item {
    padding: 5px 0;
    font-size: 1.3rem;
  }

  .time-table-body .item:first-child {
    line-height: 1.3;
    font-size: 1.1rem;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 90px repeat(7, 1fr) !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.tel-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 23px;
}

.tel-wrap .label {
  border: 1px solid currentColor;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 5px;
  padding: 0 4px;
  width: fit-content;
}

.tel-note {
  font-size: 1.2rem;
}

.tel {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 24px;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.tel::before {
  content: "";
  background-color: currentColor;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.list-sns {
  display: flex;
  align-items: center;
  gap: 13px;
}

/*------------
splide
-------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0 5px;
  pointer-events: auto;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__controls {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list {
  display: block;
}

.splide__track--fade>.splide__list>.splide__slide {
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.splide__arrow--prev::after,
.splide__arrow--next::after {
  content: "";
  width: 1rem;
  height: 1rem;
  border: solid var(--color-main);
  border-width: 1px 1px 0 0;
}

.splide__arrow--prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.splide__arrow--next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: calc((100% - 1080px) / 2);
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: calc((100% - 1080px) / 2);
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background-color: #fff;
  border: 1px solid var(--color-main);
  display: inline-block;
  width: 39px;
  height: 7px;
  padding: 0;
  position: relative;
  transition: 0.2s linear;
}

.splide__pagination__page.is-active {
  background-color: var(--color-main);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}

@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }

  .splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus {
    border-color: #0bf;
  }
}

@media (max-width: 800px) {
  .splide__pagination li {
    margin: 0 3px;
  }

  .splide__pagination__page {
    width: 22px;
    height: 4px;
  }
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.2s ease;
  height: 25px;
  width: 25px;
  z-index: 1;
}

.splide__toggle svg {
  fill: var(--color-main);
  width: 10px;
  height: 10px;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav>.splide__list>.splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav>.splide__list>.splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*------------
モーダル
-------------*/
.modal-content {
  display: none;
  position: fixed;
  width: 100%;
  max-width: 1300px;
  max-height: 100vh;
  overflow-y: auto;
  z-index: 10001;
}

.modal-overlay {
  display: none;
  background: rgba(43, 35, 28, 0.95);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.modal-close {
  cursor: pointer;
  position: absolute;
  right: 40px;
  top: 40px;
  width: 20px;
  height: 20px;
}

.modal-close:before,
.modal-close:after {
  background: var(--color-main);
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: .5s;
  transition: .5s;
}

.modal-close:hover::before,
.modal-close:hover::after {
  width: 130%;
}

.modal-close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-detail {
  background: #fff;
  padding: 50px 100px;
}

.modal-detail .text_btn01 a {
  width: 100%;
  padding: 15px;
}

.topics_anchor {
  display: block;
  -webkit-transition: 1s;
  transition: 1s;
}

.topics_anchor:hover {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
  color: #eb611b;
}

.topics_anchor img {
  -webkit-transition: 1s;
  transition: 1s;
}

.topics_anchor:hover img {
  opacity: .5;
}

.dl-profile dt {
  border-bottom: 1px solid #e1e1e1;
  font-size: 17px;
  font-family: "Noto Sans Japanese";
  padding: 0 0 10px 15px;
  margin: 0 0 10px;
  position: relative;
}

.dl-profile dt::before {
  content: "";
  background: #ff9415;
  width: 3px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 6px;
}

.dl-profile dd {
  margin-bottom: 20px;
}

.modal_ttl01 {
  margin-bottom: 30px;
}

.modal_ttl01 [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 10px 0;
  padding: 0 0 20px;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.modal_ttl01 [lang=en]::before {
  content: "";
  background-color: var(--color-main);
  width: 24px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.modal_ttl01 .jp {
  font-size: 3rem;
  font-weight: 500;
}

.modal_txt {
  font-size: 1.4rem;
  margin-bottom: 90px;
}

.modal_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.modal_list >li {
  width: 353px;
  display: flex;
}

.modal_list >li a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-bg);
  padding: 45px 45px 80px;
  position: relative;
}

.modal_list >li a:hover {
  opacity: 0.7;
}

.modal_list >li a::before {
  content: "";
  background-color: var(--color-main);
  mask: url(../images/share/btn_arrow.svg) no-repeat center/contain;
  width: 24px;
  height: 16px;
  position: absolute;
  right: 30px;
  top: calc(100% - 35px);
  transform: translate(0, -50%);
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.modal_ttl02 {
  margin-bottom: 30px;
}

.modal_ttl02 [lang=en] {
  color: var(--color-main);
  font-family: var(--font-en);
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  line-height: 1;
  margin: 0 0 10px 0;
  position: relative;
  text-box: trim-both cap alphabetic;
}

.modal_ttl02 .jp {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

@media (max-width: 1300px) {
  .modal-detail {
    padding: 50px;
  }

  .modal_list >li {
    width: 100%;
  }

  .modal_list >li a {
    padding: 45px 40px 80px;
  }
}

@media (max-width: 800px) {
  .modal-content {
    width: 95%;
    margin: auto;
    height: 90vh;
    overflow: auto;
  }

  .modal-close {
    right: 20px;
    top: 20px;
  }

  .modal-detail {
    padding: 20px;
  }

  .modal_ttl01 [lang=en] {
    font-size: 1.5rem;
  }

  .modal_ttl01 .jp {
    font-size: 2.4rem;
  }

  .modal_txt {
    margin-bottom: 30px;
  }

  .modal_list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .modal_list >li a {
    padding: 30px 30px 60px;
  }

  .modal_ttl02 .jp {
    font-size: 1.8rem;
  }
}


/*# sourceMappingURL=style.css.map */
