@charset "UTF-8";

:root {
  --color_primary: #BA945C;
  --hover_primary: #c9ab80;
  --color_second: #48729B;
  --hover_second: #7298bd;
  --color_third: #E1E9F0;
  --color_border: #E8E8E8;
  /* --font_base: "Zen Kaku Gothic New", sans-serif; */
  /*	--font_base: "Zen Old Mincho", sans-serif;*/
  --font_base: "Noto Serif JP", serif;
  --font_size_base: 1.5rem;
  --font_weight_base: 500;
  /*	--font_jp: "Zen Old Mincho", system-ui;*/
  --font_jp: "Noto Serif JP", serif;
  /* --font_en: "PT Sans", sans-serif; */
  /*	--font_en: "Zen Old Mincho", sans-serif;*/
  --font_en: "Noto Serif JP", serif;
  --color_text: #333;
  --color_link: #BA945C;
  --hover_transition: .3s;
}

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
samp,
sub,
sup,
var,
b,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
mark,
audio,
video,
a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span,
small,
em,
time,
i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
  font-weight: 500;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
select {
  vertical-align: middle;
}

abbr[title],
dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

:target {
  scroll-margin-top: 85px;
}

@media (max-width: 800px) {
  :target {
    scroll-margin-top: 0;
  }
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body,
html {
  height: 100%;
}

body {
  font-family: var(--font_base);
  font-weight: var(--font_weight_base);
  font-size: var(--font_size_base);
  color: var(--color_text);
  line-height: 1.8;
  letter-spacing: 0.1em;
  -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;
}

.link {
  color: var(--color_link);
  text-decoration: underline;
  word-break: break-all;
}

.link:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .link:hover {
    text-decoration: none;
  }
}

.link[target=_blank]::after {
  content: "";
  background: url(../images/share/icon_out.svg) no-repeat center/contain;
  width: 12px;
  height: 10px;
  display: inline-block;
  margin-left: 5px;
}

.link02:focus-visible {
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .link02:hover {
    color: var(--color_primary);
  }
}

.no-link {
  pointer-events: none;
}

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

a[href^=tel] {
  cursor: default;
}

a:focus-visible,
button:focus-visible {
  outline: auto;
}

.container {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.container.wide {
  max-width: 1200px;
}

.container.narrow {
  max-width: 850px;
}

.container.wide-more {
  max-width: 1400px;
}

@media (max-width: 800px) {

  /*-------------
	Body
	-------------*/
  body {
    line-height: 1.8;
  }
}

/*------------
Common
--------------*/
.btn-more,
.postdata .wp-block-button__link {
  display: inline-block;
  padding: 15px 40px;
  text-align: center;
  color: var(--color_second);
  border: 1px solid var(--color_second);
  position: relative;
  min-width: 300px;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.btn-more::after,
.postdata .wp-block-button__link::after {
  content: "";
  background: currentcolor;
  width: 30px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more:focus-visible,
.postdata .wp-block-button__link:focus-visible {
  background: var(--color_second);
  color: #fff;
}


.btn-more02,
.postdata .wp-block-button__link {
  display: inline-block;
  padding: 0px 40px;
  text-align: center;
  color: var(--color_second);
  border: 1px solid var(--color_second);
  position: relative;
  min-width: 300px;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.btn-more02::after,
.postdata .wp-block-button__link::after {
  content: "";
  background: currentcolor;
  width: 30px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more02:focus-visible,
.postdata .wp-block-button__link:focus-visible {
  background: var(--color_second);
  color: #fff;
}

.btn-more03,
.postdata .wp-block-button__link {
  display: inline-block;
  padding: 15px 40px;
  text-align: center;
  color: var(--color_second);
  border: 1px solid var(--color_second);
  position: relative;
  min-width: 250px;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.btn-more03::after,
.postdata .wp-block-button__link::after {
  content: "";
  background: currentcolor;
  width: 30px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-more03:focus-visible,
.postdata .wp-block-button__link:focus-visible {
  background: var(--color_second);
  color: #fff;
}

@media (any-hover: hover) {


  .btn-more:hover,
  .postdata .wp-block-button__link:hover {
    background: var(--color_second);
    color: #fff;
  }

  .btn-more02:hover,
  .postdata .wp-block-button__link:hover {
    background: var(--color_second);
    color: #fff;
  }

  .btn-more03:hover,
  .postdata .wp-block-button__link:hover {
    background: var(--color_second);
    color: #fff;
  }
}

@media (max-width: 800px) {

  .btn-more,
  .postdata .wp-block-button__link {
    min-width: 0;
    width: 100%;
  }

  .btn-more02,
  .postdata .wp-block-button__link {
    padding: 15px 40px;
    min-width: 0;
    width: 100%;
  }

  .btn-more03,
  .postdata .wp-block-button__link {
    padding: 15px 40px;
    min-width: 0;
    width: 100%;
  }
}

.btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-wrap.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tel-wrap .ttl {
  display: table;
  font-weight: 400;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.05em;
  background: var(--color_second);
  padding: 0 10px;
  margin-bottom: 5px;
}

.btn-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 2.6rem;
  white-space: nowrap;
  color: var(--color_second);
  line-height: 1;
  letter-spacing: 0;
}

.btn-tel::before {
  content: "";
  -webkit-mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  mask: url(../images/share/icon_tel.svg) no-repeat center/contain;
  background: var(--color_second);
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 3px;
}

.btn-tel.large {
  font-size: 3.7rem;
}

.btn-tel.large::before {
  width: 28px;
  height: 28px;
  margin-right: 4px;
}

@media (max-width: 800px) {
  .tel-wrap .ttl {
    font-size: 1rem;
  }

  .btn-tel {
    font-size: 1.9rem;
  }

  .btn-tel::before {
    width: 15px;
    height: 15px;
  }

  .btn-tel.large {
    font-size: 2.3rem;
  }

  .btn-tel.large::before {
    width: 20px;
    height: 20px;
    margin-right: 3px;
  }
}

.btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--color_primary);
  font-weight: 500;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-icon svg {
  stroke: currentcolor;
  fill: currentcolor;
  margin-right: 5px;
}

.btn-icon:focus-visible {
  background: var(--hover_primary);
}

@media (any-hover: hover) {
  .btn-icon:hover {
    background: var(--hover_primary);
  }
}

.info-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 400;
  font-size: 1.4rem;
}

.info-dl dt {
  width: 80px;
  text-align: center;
  border: 1px solid #999;
  line-height: 1.4;
}

.info-dl dd {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.5;
}

.info-dl-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px;
}

/* Time Schedule */
.time-table {
  overflow: hidden;
  text-align: center;
  letter-spacing: 0;
  background: #fff;
  padding: 0 20px;
  font-weight: 400;
}

.time-table-head,
.time-table-body {
  display: grid;
  grid-template-columns: 130px repeat(7, 1fr);
}

.time-table-head {
  border-bottom: 1px solid #CECECE;
}

.time-table-head .item {
  padding: 15px 0;
}

.time-table-body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px 0;
  letter-spacing: 0.05em;
}

.event01 {
  color: var(--color_second);
}

@media (max-width: 800px) {
  .time-table {
    font-size: 1.1rem;
    padding: 0 5px;
  }

  .time-table-head,
  .time-table-body {
    grid-template-columns: 70px repeat(7, 1fr);
  }

  .time-table-head .item {
    padding: 10px 0;
  }

  .time-table-body .item {
    padding: 10px 0;
    line-height: 1.3;
  }
}

/*------------
Header
--------------*/
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 10px 1.67vw 0 1.67vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.header.is-fixed {
  background: rgba(255, 255, 255, 0.9);
  padding: 10px 1.67vw 10px 1.67vw;
}

@media (max-width: 800px) {
  .header {
    position: absolute;
    padding: 10px 15px;
  }

  .h-logo {
    width: 200px;
  }
}

/*------------
G-navi
--------------*/
.pc-navi-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 0 1.67vw;
}

.pc-navi-list>li {
  margin-bottom: -20px;
  padding-bottom: 20px;
}

.pc-navi-list>li>a,
.pc-navi-list>li>p {
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.05em;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}


.pc-navi-list>li>p,
.pc-navi-list>li>a {
  position: relative;
}

.pc-navi-list>li>p::after,
.pc-navi-list>li>a::after {
  content: "";
  background: currentcolor;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.pc-navi-list>li>a:focus-visible::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

@media (any-hover: hover) {
  .pc-navi-list>li>a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

.header.is-fixed .pc-navi-list>li>a,
.header.is-fixed .pc-navi-list>li>p {
  color: #333;
}

.pc-navi .dropdown {
  position: relative;
}

.pc-navi .dropdown .child {
  background: var(--color_third);
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  text-align: left;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  opacity: 0;
  padding: 25px 30px;
  z-index: 10;
}

.pc-navi .dropdown .child.wide {
  -webkit-transform: translate(-60%, -10px);
  transform: translate(-60%, -10px);
}

.pc-navi-child>li+li {
  margin-top: 7px;
}

.pc-navi-child>li>a,
.pc-navi-child>li>p {
  display: inline-block;
  font-family: var(--font_jp);
  white-space: nowrap;
  letter-spacing: 0.05em;
  padding-left: 15px;
  position: relative;
}

.pc-navi-child>li>a::before,
.pc-navi-child>li>p::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color_second);
  border-right: 1px solid var(--color_second);
  position: absolute;
  left: 0;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pc-navi-child ul {
  margin: 7px 0 0 15px;
}

.pc-navi-child ul li+li {
  margin-top: 7px;
}

.pc-navi-child ul li a {
  display: inline-block;
  font-family: var(--font_jp);
  font-weight: 400;
  white-space: nowrap;
  padding-left: 16px;
  position: relative;
}

.pc-navi-child ul li a::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 14px;
}

.pc-navi-child a:focus-visible {
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .pc-navi-child a:hover {
    color: var(--color_primary);
  }
}


.pc-navi .dropdown:is(:hover, :focus-within) .child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}


.pc-navi .dropdown:is(:hover, :focus-within) .child.wide {
  -webkit-transform: translate(-60%, 0);
  transform: translate(-60%, 0);
}

.pc-navi .navi-child-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sp-navi {
  display: none;
}

@media (max-width: 800px) {
  .pc-navi {
    display: none;
  }

  .sp-navi {
    display: block;
  }

  :root {
    --navi-background: #BA945C;
    --navi-border-color: #fff;
    --navi-text-color: #fff;
    --svg-stroke: #fff;
    --humberger: #fff;
    --navi-font: "Zen Old Mincho", system-ui;
  }

  /* ボタン類 */
  .sp-navi-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: var(--navi-background);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }

  .sp-navi-btns div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
  }

  .sp-navi-btns .item {
    font-size: 1rem;
    font-family: var(--navi-font);
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
    height: 53px;
    border-top: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item+.item {
    border-left: 1px solid var(--navi-border-color);
  }

  .sp-navi-btns .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--navi-text-color);
    text-decoration: none;
    height: 100%;
    padding: 5px 0;
  }

  .sp-navi-btns .item .img {
    display: block;
  }

  .sp-navi-btns .item .img svg {
    -o-object-fit: cover;
    object-fit: cover;
    height: 16px;
    margin-bottom: 8px;
    stroke: var(--svg-stroke);
    fill: var(--svg-stroke);
  }

  .sp-navi-btns .item .ttl {
    display: block;
  }

  .sp-menu-btn {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    width: 53px;
    height: 53px;
    background: var(--navi-background);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .sp-menu-btn span {
    background: var(--humberger);
    position: absolute;
    left: 50%;
    width: 21px;
    height: 1px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .sp-menu-btn span:nth-of-type(1) {
    top: 18px;
  }

  .sp-menu-btn span:nth-of-type(2) {
    top: 25px;
  }

  .sp-menu-btn span:nth-of-type(3) {
    top: 32px;
  }

  .sp-menu-btn.is-open span:nth-of-type(1) {
    -webkit-transform: translate(-50%, 7px) rotate(-45deg);
    transform: translate(-50%, 7px) rotate(-45deg);
  }

  .sp-menu-btn.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .sp-menu-btn.is-open span:nth-of-type(3) {
    -webkit-transform: translate(-50%, -7px) rotate(45deg);
    transform: translate(-50%, -7px) rotate(45deg);
  }

  /* コンテンツ */
  .sp-navi-contents {
    pointer-events: none;
    visibility: hidden;
    background: #fff;
    font-family: var(--navi-font);
    padding: 50px 10% 100px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    z-index: 9999;
  }

  .sp-navi-contents.is-open {
    pointer-events: auto;
    visibility: visible;
    overflow-y: auto;
    opacity: 1;
  }

  .sp-navi-list {
    border-top: 1px solid #d6d6d6;
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #d6d6d6;
  }

  .sp-navi-list>li>p,
  .sp-navi-list>li>a {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    padding: 15px 0;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown::before,
  .sp-navi-list>li.sp-dropdown::after {
    content: "";
    background-color: var(--color_primary);
    position: absolute;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  .sp-navi-list>li.sp-dropdown::before {
    width: 1px;
    height: 11px;
    top: 17px;
    right: 20px;
  }

  .sp-navi-list>li.sp-dropdown::after {
    width: 11px;
    height: 1px;
    top: 22px;
    right: 15px;
  }

  .sp-navi-list>li.sp-dropdown.is-on::before {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }

  .sp-navi-list>li.sp-dropdown>a {
    padding: 15px 0;
    width: 85%;
  }

  .sp-navi-list .child {
    padding: 0 0 15px;
  }

  .sp-navi-list .child>ul>li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
  }

  .sp-navi-list .child>ul>li::before {
    content: "-";
    color: #E8E8E8;
    position: absolute;
    left: 0;
    top: 0;
  }

  .sp-navi-list .child>ul>li>a {
    display: inline-block;
    font-size: 1.3rem;
    text-decoration: none;
    font-weight: 400;
  }

  .sp-navi-other .item+.item {
    margin: 15px 0 0;
  }

  /* Tel */
  .sp-tel-wrapper {
    background: var(--navi-background);
    color: var(--navi-text-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 10%;
    padding: 10px 5% 3px;
    min-width: 100%;
  }

  .sp-tel-wrapper .tel-wrap {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .sp-tel-wrapper .tel-wrap .ttl {
    background: #fff;
    color: var(--navi-background);
  }

  .sp-tel-wrapper .btn-tel {
    color: var(--navi-text-color);
  }

  .sp-tel-wrapper .btn-tel::before {
    background: currentcolor;
  }
}

/*------------
Hero
--------------*/
.hero {
  position: relative;
}

.hero-img {
  display: flex;
}

.hero-img video {
  width: 100%;
  height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-desc {
  position: absolute;
  left: 4.44vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.hero-desc .txt01,
.hero-desc .txt02 {
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: var(--font_jp);
  text-shadow: 0 0 10px #463214, 0 0 10px #463214;
}

.hero-desc .txt01 {
  /*  font-size: 9rem;*/
  font-size: clamp(2.5rem, 3vw, 5.2rem);
  line-height: 1.7;
}

.hero-desc .txt02 {
  /*  font-size: 2.4rem;*/
  font-size: clamp(1.5rem, 1.33vw, 2.4rem);
  line-height: 2;
}

.hero-point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.hero-point .item {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#BA945C), color-stop(51%, #DEB271), to(#BA945C));
  background: linear-gradient(180deg, #BA945C 0%, #DEB271 51%, #BA945C 100%);
  position: relative;
  display: grid;
  place-content: center;
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.214;
  color: #fff;
  font-family: var(--font_jp);
}

.hero-point .item::before {
  content: "";
  border: 2px solid #BA945C;
  position: absolute;
  inset: -4px;
  border-radius: 50%;
}

.hero-info {
  padding: 20px 25px 10px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  right: 1.33vw;
  bottom: 24px;
  z-index: 2;
}

.hero-info::before {
  content: "";
  border: 3px solid rgba(255, 255, 255, 0.8);
  position: absolute;
  inset: -4px;
  pointer-events: none;
}

.tel-btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px;
}

@media (max-width: 800px) {

  .hero-img video,
  .hero-slider .splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-info {
    display: none;
  }

  .hero-desc {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hero-point {
    gap: 10px;
  }

  .hero-point .item {
    width: 80px;
    font-size: 1.6rem;
  }

  .hero-point .item::before {
    border-width: 1px;
    inset: -2px;
  }

  .tel-btn-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

/*------------
Top contents
--------------*/
/* Block */
.sec01 {
  padding: 50px 0 100px;
}

.sec01 .l-btn {
  text-align: center;
  margin-top: 50px;
}

.sec03 {
  padding: 100px 0 120px;
  position: relative;
  z-index: 1;
}

.sec03::before {
  content: "";
  background: url(../images/sec03_bg.jpg) no-repeat center/cover;
  width: 31.11vw;
  position: absolute;
  top: 190px;
  left: 0;
  bottom: -110px;
  z-index: -1;
}

.sec03 .btn-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 17px;
}

.sec03-item+* {
  margin-top: 60px;
}

.sec03-tab {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.sec03-tab button {
  padding: 10px;
  background: #fff;
  color: var(--color_third);
  border: 1px solid var(--color_third);
  color: #333;
}

.sec03-tab button.is-active {
  background: var(--color_third);
}

.tab-contents {
  display: none;
}

.tab-contents.is-show {
  display: block;
}

.sec04 {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.sec04::before {
  content: "";
  background: #F4F4F4;
  position: absolute;
  inset: 0 0 0 5.56vw;
  z-index: -1;
}

.sec04 .l-btn {
  text-align: center;
  margin-top: 50px;
}

.sec06 {
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}

.sec06::before {
  content: "";
  background: #F4F4F4;
  width: 94.44%;
  height: 360px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.sec06 .l-btn {
  text-align: center;
  margin-top: 50px;
}

.sec07 {
  padding: 100px 0;
  position: relative;
}

.sec07::before {
  content: "";
  background: url(../images/sec07_bg.jpg) no-repeat center/cover;
  width: 52.22%;
  position: absolute;
  right: 0;
  top: -175px;
  bottom: -100px;
  z-index: -1;
}

.sec08 {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.sec08::before {
  content: "";
  background: #E1E9F0;
  position: absolute;
  inset: 0 2.78vw 310px 0;
  z-index: -1;
}

.sec09 {
  background: url("../images/sec09_bg.jpg") center / cover no-repeat;
  padding: 100px 0;
}

.sec09-txt {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 800px) {
  .sec01 {
    padding: 50px 0;
  }

  .sec01 .l-btn {
    margin-top: 30px;
  }

  .sec03 {
    padding: 50px 0;
  }

  .sec03::before {
    top: 100px;
  }

  .sec03-tab {
    display: grid;
  }

  .sec03 .btn-wrapper {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sec03-item {
    display: none;
  }

  .sec03-item.is-show {
    display: block;
  }

  .sec03-item+.sec03-item {
    margin-top: 50px;
  }

  .sec03-item .top-ttl01 {
    display: none;
  }

  .sec04 {
    padding: 50px 0;
  }

  .sec04 .l-btn {
    margin-top: 30px;
  }

  .sec06 {
    padding: 50px 0;
  }

  .sec06 .l-btn {
    margin-top: 30px;
  }

  .sec07 {
    padding: 50px 0;
  }

  .sec08 {
    padding: 50px 0;
  }

  .sec09 {
    padding: 50px 0;
  }

  .sec09-txt {
    margin-bottom: 30px;
    text-align: left;
  }
}

/* Title */
.t-h2 {
  text-align: center;
  color: var(--color_primary);
  margin-bottom: 40px;
}

.t-h2 .en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 12rem;
  line-height: 1.167;
  letter-spacing: 0;
  display: table;
  margin: 0 auto 8px;
  padding: 0 80px;
  position: relative;
}

.t-h2 .en::before,
.t-h2 .en::after {
  content: "";
  background: currentcolor;
  width: 60px;
  height: 6px;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.t-h2 .en::before {
  left: 0;
}

.t-h2 .en::after {
  right: 0;
}

.t-h2 .ja {
  font-size: 3rem;
}

.t-h2.tal .en {
  margin: 0 auto 8px 0;
  padding: 0 80px 0 0;
}

.t-h2.tal .en::before {
  display: none;
}

.top-ttl01 {
  padding: 20px 10px 20px 85px;
  background: var(--color_third);
  font-size: 2.6rem;
  margin-bottom: 30px;
  position: relative;
}

.top-ttl01 img {
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.top-ttl01 .new {
  font-family: var(--font_en);
  font-size: 1.8rem;
  color: #C64848;
  display: inline-block;
  margin-left: 10px;
  vertical-align: 6px;
}

.ttl-icon {
  font-size: 1.8rem;
  color: var(--color_second);
  margin-bottom: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  letter-spacing: 0.05em;
}

.ttl-icon img {
  margin-right: 10px;
  width: 30px;
}

@media (max-width: 800px) {
  .t-h2 .en {
    padding: 0 40px;
    font-size: 4rem;
  }

  .t-h2.tal .en {
    padding: 0 40px 0 0;
  }

  .t-h2 .en::before,
  .t-h2 .en::after {
    width: 30px;
    height: 3px;
  }

  .t-h2 .ja {
    font-size: 2rem;
  }

  .top-ttl01 {
    font-size: 2rem;
  }
}

/* btn layout */
.top-btn-layout01 {
  max-width: 1700px;
  width: 90%;
  margin-inline: auto;
  padding: 60px 0;
  background: #F4F4F4;
  margin-bottom: 100px;
}

.top-btn-layout01 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.btn-style01 {
  display: block;
  padding: 14px 40px;
  background: var(--color_second);
  font-size: 2rem;
  text-align: center;
  color: #fff;
  line-height: 1.3;
  position: relative;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
  width: 260px;
}

.btn-style01::after {
  content: "";
  background: #fff;
  width: 30px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style01 small {
  font-size: 1.4rem;
}

.btn-style01:focus-visible {
  background: var(--color_primary);
}

@media (any-hover: hover) {
  .btn-style01:hover {
    background: var(--hover_second);
  }
}

.btn-style02 {
  display: block;
  padding: 14px 40px;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  background: linear-gradient(99deg, #BA945C 0%, #DEB271 51%, #BA945C 100%);
  position: relative;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.btn-style02::after {
  content: "";
  background: currentcolor;
  width: 30px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.btn-style02:focus-visible {
  opacity: 0.8;
}

@media (any-hover: hover) {
  .btn-style02:hover {
    opacity: 0.8;
  }
}

@media (max-width: 800px) {
  .top-btn-layout01 {
    padding: 25px 0;
    margin-bottom: 50px;
  }

  .top-btn-layout01 .container {
    flex-flow: row wrap;
    gap: 10px;
  }

  .btn-style01 {
    font-size: 1.8rem;
    width: 100%;
  }

  .btn-style01 small {
    font-size: 1.2rem;
  }

  .btn-style02 {
    font-size: 1.5rem;
  }
}

/* Top layout */
.top-layout01 {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.top-layout01::before,
.top-layout01::after {
  content: "";
  background: var(--color_third);
  width: 34.44%;
  height: 420px;
  position: absolute;
  z-index: -1;
}

.top-layout01::before {
  top: 0;
  left: 0;
}

.top-layout01::after {
  bottom: 0;
  right: 0;
}

.top-layout01>.l-item {
  max-width: 1700px;
  width: 94.44%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #F4F4F4;
}

.top-layout01 .l-img {
  width: 50%;
}

.top-layout01 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px calc((100% - 1200px) / 2) 80px 3.89vw;
  min-height: 600px;
}

.top-layout01 .l-ttl {
  font-size: 4rem;
  font-size: clamp(2.3rem, 2.22vw, 4rem);
  line-height: 1.5;
  color: var(--color_primary);
  font-family: var(--font_jp);
  margin-bottom: 40px;
}

.top-layout01 p {
  font-size: 1.8rem;
  font-size: clamp(1.5rem, 1vw, 1.8rem);
  line-height: 2;
  font-family: var(--font_jp);
}

.top-layout01 p+p {
  margin-top: 1em;
}

.top-layout01 .l-btn {
  margin-top: 50px;
}

.top-layout01>.l-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.top-layout01>.l-item.reverse .l-desc {
  padding: 80px 3.89vw 80px calc((100% - 1200px) / 2);
}

@media (max-width: 1500px) {
  .top-layout01 .l-desc {
    padding-right: 5vw;
  }

  .top-layout01>.l-item.reverse .l-desc {
    padding-left: 5vw;
  }
}

@media (max-width: 800px) {

  .top-layout01::before,
  .top-layout01::after {
    width: 50%;
  }

  .top-layout01>.l-item {
    display: block;
    width: 90%;
  }

  .top-layout01 .l-img {
    width: 100%;
  }

  .top-layout01 .l-desc,
  .top-layout01>.l-item.reverse .l-desc {
    padding: 25px 5vw;
    min-height: 0;
  }

  .top-layout01 .l-ttl {
    margin-bottom: 20px;
  }

  .top-layout01 .l-btn {
    margin-top: 20px;
  }
}

.top-post-wrapper01 {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto 1fr;
  gap: 53px 80px;
}

.top-post-wrapper01 .t-h2 {
  grid-area: 1/1/2/2;
  margin: 0;
}

.top-post-wrapper01 .top-post-layout02 {
  grid-area: 2/1/3/3;
}

.top-post-wrapper01 .l-btn {
  grid-area: 1/2/2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top-post-wrapper01 .l-btn .btn-more {
  min-width: 0;
  width: 100%;
}

.top-post-layout02 .post-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 35px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.top-post-layout02 .post-item a:focus-visible {
  background: #F4F4F4;
}

@media (any-hover: hover) {
  .top-post-layout02 .post-item a:hover {
    background: #F4F4F4;
  }
}

.top-post-layout02 .post-item.post-item {
  margin-top: 20px;
}

.top-post-layout02 time {
  display: inline-block;
  margin-right: 20px;
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0;
  white-space: nowrap;
  color: #999;
}

.top-post-layout02 .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 800px) {
  .top-post-wrapper01 {
    display: block;
  }

  .top-post-wrapper01 .l-btn {
    margin-top: 30px;
  }

  .top-post-layout02 .post-item a {
    padding: 15px;
  }
}

/* Top card */
.top-card-layout01 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  color: #fff;
}

.top-card-layout01>.l-item {
  background: no-repeat center/cover;
}

.top-card-layout01>.l-item:nth-of-type(1) {
  background-image: url(../images/sec05_img01.jpg);
}

.top-card-layout01>.l-item:nth-of-type(2) {
  background-image: url(../images/sec05_img02.jpg);
}

.top-card-layout01>.l-item a {
  height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0 60px;
  position: relative;
  z-index: 1;
}

.top-card-layout01>.l-item a::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  inset: 0;
  z-index: -1;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.top-card-layout01 .l-ttl {
  margin-bottom: 20px;
}

.top-card-layout01 .l-ttl .en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 8rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.top-card-layout01 .l-ttl .ja {
  font-size: 2.6rem;
}

.top-card-layout01 a:focus-visible::before {
  background: rgba(0, 0, 0, 0.25);
}

@media (any-hover: hover) {
  .top-card-layout01 a:hover::before {
    background: rgba(0, 0, 0, 0.25);
  }
}

@media (max-width: 800px) {
  .top-card-layout01 {
    grid-template-columns: 1fr;
  }

  .top-card-layout01>.l-item a {
    height: auto;
    padding: 50px 5vw;
  }

  .top-card-layout01 .l-ttl .en {
    font-size: 4rem;
  }

  .top-card-layout01 .l-ttl .ja {
    font-size: 2rem;
  }
}

/* Top post */
.top-post-layout01 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.top-post-layout01 .post-item a {
  display: block;
  height: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  padding: 10px 10px 20px;
}

.top-post-layout01 .post-img {
  margin-bottom: 15px;
}

.top-post-layout01 .post-img img {
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-post-layout01 time {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #999;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.top-post-layout01 .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .top-post-layout01 {
    width: calc(100% + 5vw);
    gap: 5vw;
    overflow-x: auto;
    grid-template-columns: repeat(4, 250px);
    padding: 0 5vw 10px 0;
  }
}

/* Top map */
.top-map-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 60px;
  margin-bottom: 100px;
}

.top-map-layout .l-map {
  width: 50%;
  aspect-ratio: 1;
}

.top-map-layout .l-map iframe {
  width: 100%;
  height: 100%;
}

.top-map-layout .l-desc {
  margin-top: 30px;
  max-width: 445px;
}

.top-map-layout .l-desc .l-item+.l-item {
  margin-top: 25px;
}

.top-map-layout p {
  font-weight: 400;
  line-height: 1.467;
}

.top-map-layout p+p {
  margin-top: 7px;
}

.top-map-layout p em {
  font-weight: 500;
}

.top-map-layout .l-btn {
  margin-top: 30px;
}

.top-map-layout .l-btn a+a {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .top-map-layout {
    display: block;
    margin-bottom: 50px;
  }

  .top-map-layout .l-map {
    width: 100%;
  }
}

/* Top box */
.top-box-layout01 {
  max-width: 995px;
  margin-inline: auto;
  background: #fff;
  padding: 40px 70px 65px;
  outline: 2px solid var(--color_second);
  border: 4px solid var(--color_third);
  position: relative;
  z-index: 1;
}

.top-box-layout01::before {
  content: "";
  border: 1px solid var(--color_second);
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.top-box-layout01 .box-ttl {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 8rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color_primary);
  line-height: 1;
}

.top-link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}

.top-link-wrapper .ttl {
  padding: 7px 19px;
  background: var(--color_third);
  border-radius: 3px;
  position: relative;
  margin-bottom: 15px;
  height: 55px;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.333;
  letter-spacing: 0;
}

.top-link-wrapper .ttl::after {
  content: "";
  background: var(--color_third);
  width: 10px;
  height: 5px;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.top-link-wrapper .link-img {
  text-align: center;
  height: 70px;
  display: grid;
  place-content: center;
}

.top-link-wrapper .link-img a {
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.top-link-wrapper .link-img a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .top-link-wrapper .link-img a:hover {
    opacity: 0.7;
  }
}

@media (max-width: 800px) {
  .top-box-layout01 {
    padding: 25px 5vw;
  }

  .top-box-layout01 .box-ttl {
    font-size: 4rem;
  }

  .top-link-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }

  .top-link-wrapper .ttl {
    padding: 5px;
    font-size: 1.2rem;
  }

  .top-link-wrapper .link-img {
    height: auto;
  }

  .top-link-wrapper .link-img img {
    width: 100%;
    max-height: 50px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

/*------------
Footer
--------------*/
.footer {
  position: relative;
  padding: 80px 0 0;
  background: url(../images/share/footer_bg.jpg) no-repeat center/cover;
}

.footer p {
  font-weight: 400;
}

.f-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.f-wrapper>.item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.f-wrapper>.item:nth-of-type(2) {
  max-width: 490px;
}

.f-ttl {
  display: table;
  margin: 0 auto 10px 0;
  font-weight: 500;
  font-size: 1.8rem;
  color: var(--color_second);
  padding: 0 10px;
  background: #fff;
}

.pagetop {
  position: absolute;
  bottom: 45px;
  right: 20px;
  z-index: 5;
}

.pagetop a {
  display: inline-block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 18px;
}

@media (max-width: 800px) {
  .footer {
    padding: 50px 0 0;
  }

  .f-wrapper {
    display: block;
  }

  .f-wrapper>.item+* {
    margin-top: 30px;
  }

  .pagetop {
    display: none;
  }
}

/* Site map */
.site-map {
  margin-bottom: 70px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 15px 30px;
}

.site-map .site-map-item:nth-of-type(1) {
  grid-area: 1/1/2/2;
  padding: 0 45px 15px 0;
  border-bottom: 1px solid #CECECE;
}

.site-map .site-map-item:nth-of-type(2) {
  grid-area: 2/1/3/2;
}

.site-map .site-map-item:nth-of-type(3) {
  grid-area: 1/2/3/3;
  border-left: 1px solid #CECECE;
  padding-left: 30px;
}

.site-map .site-map-item .ttl {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--color_second);
  margin-bottom: 6px;
  letter-spacing: 0;
}

.list-site-map>li+li {
  margin-top: 7px;
}

.list-site-map>li>a,
.list-site-map>li>span {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.05em;
}

.list-site-map>li>a::before,
.list-site-map>li>span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color_second);
  border-right: 1px solid var(--color_second);
  position: absolute;
  left: 0;
  top: 12px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.list-site-map>li>a:focus-visible {
  color: var(--color_second);
}

@media (any-hover: hover) {
  .list-site-map>li>a:hover {
    color: var(--color_second);
  }
}

.list-site-map .site-map-child {
  margin: 7px 0 0 15px;
}

.list-site-map .site-map-child>li+li {
  margin-top: 7px;
}

.list-site-map .site-map-child>li>a {
  display: inline-block;
  padding-left: 15px;
  position: relative;
  font-weight: 400;
}

.list-site-map .site-map-child>li>a::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 14px;
}

.list-site-map .site-map-child>li>a:focus-visible {
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .list-site-map .site-map-child>li>a:hover {
    color: var(--color_primary);
  }
}

.site-map .site-map-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px 0;
}

.navi-other-wrapper {
  background: var(--color_second);
  color: #fff;
  padding: 5px 0;
}

.navi-other-wrapper .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.list-navi-other {
  font-weight: 400;
}

.list-navi-other ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-navi-other ul li+li::before {
  content: "|";
  display: inline-block;
  margin: 0 5px;
}

.list-navi-other ul li a {
  font-size: 1.2rem;
}

@media (max-width: 800px) {
  .site-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .site-map .site-map-item {
    padding: 15px 0 0 !important;
    margin-top: 15px;
    border-top: 1px solid #CECECE;
    border-bottom: none !important;
  }

  .site-map .site-map-item:nth-of-type(3) {
    border-left: none;
  }

  .site-map .site-map-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
  }

  .navi-other-wrapper {
    /* padding-bottom: 125px; */
    padding-bottom: 75px;
  }

  .navi-other-wrapper .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
  }

  .copyright {
    font-size: 1.2rem;
  }
}

/*------------
Under layout
--------------*/
.page-ttl {
  background: url(../images/under/pagettl_bg.jpg) no-repeat center/cover;
  position: relative;
  z-index: 1;
  height: 480px;
  display: grid;
  place-content: center;
  padding-top: 45px;
}

.page-ttl::before {
  content: "";
  background: rgba(51, 51, 51, 0.2);
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-ttl .page-ttl-wrap {
  text-align: center;
  color: #fff;
}

.page-ttl .page-ttl-wrap .en {
  line-height: 1.167;
  padding: 0 80px;
  position: relative;
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 12rem;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.page-ttl .page-ttl-wrap .en::before,
.page-ttl .page-ttl-wrap .en::after {
  content: "";
  background: currentcolor;
  width: 60px;
  height: 6px;
  position: absolute;
  top: 54%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-ttl .page-ttl-wrap .en::before {
  left: 0;
}

.page-ttl .page-ttl-wrap .en::after {
  right: 0;
}

.page-ttl .page-ttl-wrap .en::first-letter {
  text-transform: uppercase;
}

.page-ttl .page-ttl-wrap .jp {
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.368;
}

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  position: relative;
  z-index: 2;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.u-contents p+p {
  margin-top: 1em;
}

.entry-content p+p {
  margin-top: initial;
}

.u-h2,
h2[class="wp-block-heading"],
.postdata h2 {
  font-size: 2.8rem;
  text-align: center;
  color: var(--color_primary);
  line-height: 1.529;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 40px;
}

.u-h2::after,
h2[class="wp-block-heading"]::after,
.postdata h2::after {
  content: "";
  background: currentcolor;
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.u-h3,
h3[class="wp-block-heading"],
.postdata h3 {
  font-size: 2.5rem;
  padding: 3px 10px;
  background: var(--color_third);
  margin-bottom: 30px;
}

.u-h4,
h4[class="wp-block-heading"],
.postdata h4 {
  font-size: 2rem;
  color: var(--color_second);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.u-h5 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.u-h5::before {
  content: "";
  background: var(--color_second);
  width: 5px;
  height: 20px;
  position: absolute;
  top: 6px;
  left: 0;
}

.u-ttl01 .en {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color_primary);
  margin-bottom: 25px;
}

.u-ttl01 .ja {
  font-size: 2.6rem;
}

.u-ttl01.center {
  text-align: center;
}

.u-ttl01.mb {
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .page-ttl {
    padding-top: 55px;
    height: 200px;
  }

  .page-ttl .page-ttl-wrap .en {
    padding: 0;
    font-size: 3rem;
  }

  .page-ttl .page-ttl-wrap .en::before,
  .page-ttl .page-ttl-wrap .en::after {
    display: none;
  }

  .page-ttl .page-ttl-wrap .jp {
    font-size: 2rem;
  }

  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
  }

  .u-h2,
  h2[class="wp-block-heading"],
  .postdata h2 {
    font-size: 2.3rem;
    padding-bottom: 15px;
  }

  .u-h2::after,
  h2[class="wp-block-heading"]::after,
  .postdata h2::after {
    width: 30px;
  }

  .u-h3,
  h3[class="wp-block-heading"],
  .postdata h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .u-h4,
  .postdata h4 {
    font-size: 1.8rem;
  }

  .u-h5 {
    font-size: 1.6rem;
  }

  .u-h5::before {
    height: 16px;
  }

  .u-ttl01 .en {
    font-size: 3.2rem;
    margin-bottom: 15px;
  }

  .u-ttl01 .ja {
    font-size: 2rem;
  }

  .u-ttl01.mb {
    margin-bottom: 30px;
  }
}

/*------------
Under parts
--------------*/
.short+.short {
  margin-top: 80px;
}

.x-short+.x-short {
  margin-top: 40px;
}

.tall {
  padding: 50px 0;
}

.tall:last-of-type {
  padding-bottom: 100px;
}

@media (max-width: 800px) {
  .short+.short {
    margin-top: 50px;
  }

  .x-short+.x-short {
    margin-top: 30px;
  }
}

.l-imgR,
.l-imgL,
.l-imgL-d,
.l-imgL-p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.l-imgR .l-img,
.l-imgL .l-img,
.l-imgL-p .l-img {
  margin: 0 40px 0 0;
  width: 40%;
}

.l-imgL-d .l-img {
  margin: 0 20px 0 0;
}

.l-imgR .l-img.small,
.l-imgL .l-img.small,
.l-imgL .l-img.small02 {
  width: 25%;
}

.l-img.small02 span {
  display: block;
  margin-top: 10px;
  text-align: left;
}

.l-imgR .l-desc,
.l-imgL .l-desc,
.l-imgL-d .l-desc,
.l-imgL-p .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-imgR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.l-imgR .l-img {
  margin: 0 0 0 40px;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

@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,
  .l-imgL .l-img.small02 {
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 15px;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }
}

/* グリッド */
.col1,
.col2,
.col3,
.col4 {
  display: -ms-grid;
  display: grid;
}

.col1 {
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}

.col2 {
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.col3 {
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.col4 {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

@media (max-width: 800px) {

  .col2,
  .col3,
  .col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}

/* リストデザイン */
.list-disc>li {
  position: relative;
  padding: 0 0 0 15px;
}


.list-disc>li::marker {
  content: none;
}


.list-disc:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-disc li:before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
}

.list-num {
  counter-reset: number;
}

.list-num>li {
  padding: 0 0 0 30px;
  position: relative;
}

.list-num>li:before {
  background: var(--color_primary);
  border-radius: 15px;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  font-size: 1.1rem;
  position: absolute;
  top: 2px;
  left: 0;
  line-height: 20px;
  text-align: center;
  padding: 0 0 0 2px;
  width: 20px;
  height: 20px;
}

.list-num:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-check>li {
  position: relative;
  padding: 0 0 0 25px;
}

.list-check>li::before {
  content: "";
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--color_primary);
  border-bottom: 2px solid var(--color_primary);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: 7px;
  left: 0;
}

.list-check:not(.col2):not(.col3):not(.col4)>li+li {
  margin-top: 5px;
}

.list-disc.col2,
.list-check.col2,
.list-num.col2 {
  grid-gap: 5px;
}

.list-disc.col3,
.list-check.col3,
.list-num.col3 {
  grid-gap: 5px;
}

.list-disc.col4,
.list-check.col4,
.list-num.col4 {
  grid-gap: 5px;
}

.list-col2 {
  -moz-column-count: 2;
  column-count: 2;
}

.list-col3 {
  -moz-column-count: 3;
  column-count: 3;
}

@media (max-width: 800px) {
  .list-col2 {
    -moz-column-count: 1;
    column-count: 1;
  }

  .list-col3 {
    -moz-column-count: 1;
    column-count: 1;
  }
}

/* テーブルデザイン */
.table-style01 {
  background: #fff;
}

.table-style01 th,
.table-style01 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style01 th {
  background-color: var(--color_primary);
  color: #fff;
}

.table-style01 .bg01 {
  background-color: var(--color_third);
  color: #333;
}

.table-style02 {
  background: #fff;
}

.table-style02 th,
.table-style02 td {
  border: 1px solid #c9c9c9;
  padding: 15px;
  vertical-align: middle;
}

.table-style02 th {
  background-color: var(--color_primary);
  color: #fff;
}

.table-style02 th.bg01 {
  background-color: #7B861F;
}

.table-style02 th.bg02 {
  background-color: #D18DB6;
}

.table-style02 th.bg03 {
  background-color: #48729B;
}

.table-style02 th.bg04 {
  background-color: #9C4D48;
}

.table-style02 td.bg01 {
  background-color: #E9F0E1;
}

.table-style02 td.bg02 {
  background-color: #FAE7F2;
}

.table-style02 td.bg03 {
  background-color: #E1E9F0;
}

.table-style02 td.bg04 {
  background-color: #F9DCDC;
}

@media (max-width: 800px) {

  .table-style01 colgroup,
  .table-style02 colgroup {
    display: none;
  }

  .table-style01 th,
  .table-style01 td,
  .table-style02 th,
  .table-style02 td {
    padding: 10px;
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .table-style01.sp-block {
    border-bottom: 1px solid #c9c9c9;
  }

  .table-style01.sp-block colgroup {
    display: none;
  }

  .table-style01.sp-block th,
  .table-style01.sp-block td {
    display: block;
  }

  .table-style01.sp-block td {
    border-width: 0 1px;
  }

  .table-scroll::before {
    content: "スクロールできます";
    display: block;
    background: url(../images/share/icon_scroll.svg) no-repeat left center/contain;
    width: 100%;
    height: 24.5px;
    margin-bottom: 5px;
    padding-left: 40px;
    position: sticky;
    top: 0;
    left: 0;
  }

  .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: 150%;
  }

  .table-scroll.table-sticky .table-style01 th:first-child,
  .table-scroll.table-sticky .table-style02 th:first-child {
    position: sticky;
    top: 0;
    left: 0;
  }

  .table-scroll .table-style01 th,
  .table-scroll .table-style01 td,
  .table-scroll .table-style02 th,
  .table-scroll .table-style02 td {
    white-space: nowrap;
  }
}

/* Under layout */
.under-layout01 {
  max-width: 1700px;
  width: 90%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 85px 0;
}

.under-layout01 .l-img {
  width: 80%;
  margin: -85px 0;
}

.under-layout01 .l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.under-layout01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
  padding: 50px;
  background: #F4F4F4;
  position: relative;
  margin-left: -30%;
  z-index: 2;
}

.under-layout01 .l-ttl {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.529;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 40px;
  color: var(--color_primary);
}

.under-layout01 .l-ttl::after {
  content: "";
  background: currentcolor;
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.under-layout01 p {
  font-family: var(--font_jp);
  font-size: 1.8rem;
  line-height: 2;
}

@media (max-width: 800px) {
  .under-layout01 {
    display: block;
    padding: 0;
  }

  .under-layout01 .l-img {
    width: 100%;
    margin: 0;
  }

  .under-layout01 .l-desc {
    padding: 25px 5vw;
    width: 90%;
    margin: -25px auto 0;
  }

  .under-layout01 .l-ttl {
    font-size: 2rem;
    padding-bottom: 15px;
    margin-bottom: 30px;
  }

  .under-layout01 .l-ttl::after {
    width: 30px;
  }

  .under-layout01 p {
    font-size: 1.5rem;
  }
}

.under-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.under-layout02 .l-img {
  width: 45.83%;
  margin-left: 50px;
}

.under-layout02 .l-desc {
  padding-top: 100px;
  max-width: 512px;
  margin-left: auto;
}

.under-layout02 .num {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 8rem;
  color: var(--color_primary);
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.under-layout02 .l-ttl {
  font-size: 2.6rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color_primary);
  margin-bottom: 30px;
}

.under-layout02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.under-layout02.reverse .l-img {
  margin: 0 50px 0 0;
}

.under-layout02.reverse .l-desc {
  margin: 0 auto 0 0;
}

.under-layout02.reverse .num {
  left: auto;
  right: 0;
}

@media (max-width: 800px) {
  .under-layout02 {
    display: block;
  }

  .under-layout02 .l-img,
  .under-layout02.reverse .l-img {
    width: 100%;
    margin: 0 0 20px;
  }

  .under-layout02 .num {
    position: static;
    font-size: 3.5rem;
    display: inline-block;
    margin-bottom: 10px;
  }

  .under-layout02 .l-desc {
    padding: 0;
  }

  .under-layout02 .l-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.under-layout03 .l-item {
  padding-left: 20px;
  border-left: 2px solid;
}

.under-layout03 .l-item+.l-item {
  margin-top: 20px;
}

.under-layout03 .l-item:nth-of-type(3n - 2) {
  border-color: var(--color_third);
}

.under-layout03 .l-item:nth-of-type(3n - 1) {
  border-color: var(--color_second);
}

.under-layout03 .l-item:nth-of-type(3n) {
  border-color: var(--color_primary);
}

.under-layout03 .l-ttl {
  font-size: 2rem;
  color: var(--color_second);
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .under-layout03 .l-ttl {
    font-size: 1.8rem;
  }
}

.under-layout04 {
  padding-bottom: 80px;
  position: relative;
}

.under-layout04::before {
  content: "";
  background-color: #F4F4F4;
  position: absolute;
  inset: 100px 0 0 0;
  z-index: -1;
}

.under-layout04 .l-img {
  max-width: 900px;
  width: 90%;
  margin: 0 auto 50px;
}

.under-layout04 .l-box {
  display: flex;
  justify-content: space-between;
  gap: 5%;
  border-bottom: 1px solid var(--color_primary);
  max-width: 900px;
  width: 90%;
  margin-inline: auto;
  padding-bottom: 50px;
}

.under-layout04 .l-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.under-layout04 .l-box+.l-box {
  margin-top: 50px;
}

.under-layout04 .l-desc {
  max-width: 565px;
}

.under-layout04 .u-ttl01 {
  margin-top: 10px;
  flex-shrink: 0;
}

.under-layout04 .l-sub-ttl {
  font-size: 2rem;
  color: #48729B;
  margin-bottom: 15px;
}

@media (max-width: 800px) {
  .under-layout04 {
    padding-bottom: 50px;
  }

  .under-layout04::before {
    inset: 60px 0 0 0;
  }

  .under-layout04 .l-img {
    margin: 0 auto 30px;
  }

  .under-layout04 .l-box {
    padding-bottom: 30px;
    flex-direction: column;
    gap: 20px;
  }

  .under-layout04 .l-box+.l-box {
    margin-top: 30px;
  }

  .under-layout04 .u-ttl01 {
    margin-top: 0;
  }

  .under-layout04 .l-sub-ttl {
    font-size: 1.8rem;
  }
}

/* Card */
.card-layout01>.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: 1px solid #eee;
  background: #FFFFFF;
  padding: 25px;
}

.card-layout01 .card-img {
  text-align: center;
  margin-bottom: 25px;
}

.card-layout01 .num {
  display: block;
  font-family: var(--font_en);
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--color_second);
}

.card-layout01 .num-b {
  background: var(--color_second);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.1rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.card-layout01 .card-ttl {
  border-bottom: 1px solid #E8E8E8;
  font-size: 1.8rem;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.card-layout01 .card-ttl02 {
  font-size: 2rem;
  color: var(--color_second);
  margin-bottom: 10px;
}

.card-layout01 .card-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.card-layout01 .card-btn .btn-more {
  min-width: 0;
  width: 100%;
}

.card-layout01.bg01 .card-item {
  background: var(--color_third);
}

.card-layout01.bg01 .card-ttl {
  padding: 0;
  border: 0;
  color: var(--color_second);
}

.card-layout01 .l-imgR .l-img,
.card-layout01 .l-imgL .l-img {
  margin: 0 15px 0 0;
}

.card-layout01 .l-imgR .l-img.small,
.card-layout01 .l-imgL .l-img.small {
  width: 25%;
}

.card-layout01 .l-imgR .l-img {
  margin: 0 0 0 15px;
}

@media (max-width: 800px) {

  .card-layout01 .l-imgR .l-img,
  .card-layout01 .l-imgL .l-img {
    margin: 0 0 20px !important;
  }

  .card-layout01 .l-imgR .l-img.small,
  .card-layout01 .l-imgL .l-img.small {
    width: 100% !important;
  }
}

.card-layout02.col2 {
  gap: 40px 70px;
}

.card-layout02 .card-item {
  background: var(--color_third);
  padding: 25px 35px;
  position: relative;
}

.card-layout02 .card-ttl {
  font-size: 1.8rem;
  color: var(--color_second);
  margin-bottom: 15px;
}

.card-layout02 .en {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 5rem;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: 0;
  right: 98%;
  z-index: 2;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--color_primary);
}

.card-layout02 .card-item.bg01 {
  background: #F4F4F4;
}

.card-layout02 .card-item.bg01 .en {
  color: var(--color_second);
}

.card-layout02 .card-item.bg01 .list-disc>li::before {
  background: var(--color_second);
}

@media (max-width: 800px) {
  .card-layout02 {
    padding-top: 22px;
  }

  .card-layout02.col2 {
    gap: 40px;
  }

  .card-layout02 .card-item {
    padding: 25px;
  }

  .card-layout02 .en {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    -webkit-transform: none;
    transform: none;
    top: -22px;
    right: inherit;
    left: 0;
    font-size: 3rem;
  }
}

.card-layout03 {
  padding: 25px 0 0;
}

.card-layout03.col2 {
  gap: 65px 40px;
}

.card-layout03.col3 {
  gap: 55px 30px;
}

.card-layout03 .card-item {
  padding: 40px;
  background: #E1E9F0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-layout03.col3 .card-item {
  padding: 40px 25px 25px;
}

.card-layout03 .num {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 5rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color_primary);
  position: absolute;
  top: -25px;
  left: 40px;
  z-index: 2;
}

.card-layout03 .card-ttl {
  font-size: 2rem;
  text-align: center;
  color: var(--color_second);
  margin-bottom: 15px;
}

.card-layout03 .card-img {
  text-align: center;
  margin-bottom: 20px;
}

.card-layout03 .card-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.card-layout03 .card-btn {
  text-align: center;
  margin-top: 30px;
}

.card-layout03 .btn-more {
  min-width: 0;
  width: 100%;
}

@media (max-width: 800px) {
  .card-layout03 {
    padding: 20px 0 0;
  }

  .card-layout03.col2,
  .card-layout03.col3 {
    gap: 35px;
  }

  .card-layout03 .card-item {
    padding: 25px;
  }

  .card-layout03 .num {
    font-size: 3.5rem;
    left: 25px;
    top: -20px;
  }

  .card-layout03 .card-ttl {
    font-size: 1.8rem;
  }

  .card-layout03 .card-btn {
    margin-top: 20px;
  }
}

.card-layout04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.card-layout04 .l-item {
  width: 210px;
}

.card-layout04 .l-item .l-inner {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#BA945C), color-stop(51%, #DEB271), to(#BA945C));
  background: linear-gradient(180deg, #BA945C 0%, #DEB271 51%, #BA945C 100%);
  position: relative;
  font-size: 2.2rem;
  text-align: center;
  color: #fff;
  display: grid;
  place-content: center;
  margin-bottom: 25px;
}

.card-layout04 .l-item .l-inner::before {
  content: "";
  border-radius: 50%;
  border: 2px solid var(--color_primary);
  position: absolute;
  inset: -6px;
}

@media (max-width: 800px) {
  .card-layout04 {
    gap: 20px 30px;
    font-size: 1.3rem;
  }

  .card-layout04 .l-item {
    width: calc(50% - 30px);
  }

  .card-layout04 .l-item .l-inner {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}

.card-style01.col3 {
  gap: 20px;
}

.card-style01>.item {
  padding: 5px 15px;
  background: var(--color_second);
  color: #fff;
  text-align: center;
  min-height: 60px;
  display: grid;
  place-content: center;
  font-size: 1.8rem;
  line-height: 1.3;
}

.card-style01>.item small {
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .card-style01.col3 {
    gap: 15px;
  }

  .card-style01>.item {
    font-size: 1.6rem;
  }
}

/* Modal */
.zoom-img {
  display: block;
  position: relative;
}

.zoom-img::before {
  content: "";
  background: var(--color_primary) url(../images/share/icon_zoom.svg) no-repeat center/22px auto;
  border-radius: 50px;
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  z-index: 1;
}

/* Flow */
.entry-content .flow-layout01 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 781px) {
  .entry-content .flow-layout01 {
    grid-template-columns: repeat(1, 1fr);
  }
}


.flow-layout01>.flow-item:not(.empty-column) {
  background: var(--color_third);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 25px;
  position: relative;
}

.flow-layout01 .flow-item.empty-column {
  visibility: hidden;
}

.flow-layout01+.flow-layout01 {
  margin-top: 4rem;
}

.flow-layout01+.flow-layout01>.flow-item:first-child::before,
.flow-layout01>.flow-item+.flow-item::before {
  content: "";
  width: 12px;
  height: 24px;
  background: #48729B;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  left: -7.5%;
  top: calc(50% - 12px);
}

.flow-layout01+.flow-layout01>.flow-item:first-child::before {
  left: -9%;
}

.flow-layout01 .flow-img {
  text-align: center;
  margin-bottom: 25px;
}

.flow-layout01 .num {
  background: var(--color_primary);
  border-radius: 50px;
  display: table;
  color: #fff;
  font-family: var(--font_en);
  font-size: 1.1rem;
  line-height: 25px;
  padding: 0 20px;
  margin: 0 auto 10px;
}

.flow-layout01 .flow-ttl {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 15px;
}

.flow-layout01 .flow-btn {
  text-align: center;
  margin-top: auto;
  padding-top: 15px;
}

.flow-layout01 .btn-more {
  min-width: 0;
  width: 100%;
}

.flow-layout01.col3 .flow-item+.flow-item::before,
.flow-layout01.col4 .flow-item+.flow-item::before {
  left: -6%;
}

@media (max-width: 800px) {
  .flow-layout01 {
    grid-gap: 30px !important;
  }

  .flow-layout01+.flow-layout01 {
    margin-top: 3rem
  }

  .flow-layout01+.flow-layout01>.flow-item:first-child::before,
  .flow-layout01>.flow-item+.flow-item::before {
    left: 50% !important;
    top: -27px;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
}

.flow-layout02 .num {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0;
  line-height: 1;
  color: var(--color_primary);
  margin-bottom: 15px;
}

.flow-layout02 .num::before {
  content: attr(data-en);
  display: inline-block;
  font-size: 2rem;
  margin-right: 10px;
}

.flow-layout02 .l-inner {
  padding: 0 0 50px 50px;
  position: relative;
}

.flow-layout02 .l-inner::before {
  content: "";
  background: var(--color_primary);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 25px;
  top: 0;
}

.flow-layout02 .l-item:last-of-type .l-inner {
  padding-bottom: 0;
}

.flow-layout02 .l-item:last-of-type .l-inner::before {
  display: none;
}

.flow-layout02 .l-ttl {
  font-size: 2.6rem;
  padding-bottom: 15px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color_primary);
}

.flow-layout02 .l-imgR .l-img,
.flow-layout02 .l-imgL .l-img {
  width: 37%;
  margin: 0 30px 0 0;
}

.flow-layout02 .l-imgR {
  margin: 0 0 0 30px;
}

@media (max-width: 800px) {
  .flow-layout02 .num {
    font-size: 3rem;
  }

  .flow-layout02 .num::before {
    font-size: 1.8rem;
  }

  .flow-layout02 .l-inner {
    padding-left: 40px;
  }

  .flow-layout02 .l-inner::before {
    left: 20px;
  }

  .flow-layout02 .l-ttl {
    font-size: 2rem;
    padding-bottom: 10px;
  }

  .flow-layout02 .l-imgR .l-img,
  .flow-layout02 .l-imgL .l-img {
    width: 100% !important;
    margin: 0 0 20px !important;
  }
}

/* box */
.box-style01 {
  padding: 60px 8.79%;
  background: var(--color_third);
}

.box-style01 .box-ttl {
  font-size: 1.8rem;
  text-align: center;
  color: var(--color_second);
  letter-spacing: 0.05em;
  padding-bottom: 13px;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .box-style01 {
    padding: 25px;
  }

  .box-style01 .col2 {
    gap: 30px;
  }
}

.box-style02 {
  border: 2px solid var(--color_border);
  background: #fff;
  padding: 5%;
}

.box-style02 .box-ttl {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 30px;
}

.box-style02 .box-ttl02 {
  font-size: 2rem;
  padding-left: 25px;
  margin-bottom: 15px;
  position: relative;
}

.box-style02 .box-ttl02::before {
  content: "";
  background: var(--color_primary);
  width: 8px;
  height: 60%;
  position: absolute;
  left: 0;
  top: 7.5px;
}

.box-style02 .box-ttl03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  font-size: 2rem;
  margin-bottom: 15px;
}

.box-style02 .box-ttl03 svg {
  stroke: var(--color_primary);
  margin: 5px 15px 0 0;
}

.box-style02.bg01 {
  background: var(--color_primary);
  color: #fff;
  border: none;
}

.box-style02.bg01 .box-ttl02::before {
  background: currentcolor;
}

.box-style02.bg01 .box-ttl03 svg {
  stroke: currentcolor;
}

.box-style02.bg01 .list-disc>li::before {
  background: currentcolor;
}

.box-style02.narrow {
  padding: 40px;
}

.box-style02.bg01 .btn-more {
  color: #fff;
  border-color: #fff;
}

.box-style02.bg01 .btn-more:focus-visible {
  background: #fff;
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .box-style02.bg01 .btn-more:hover {
    background: #fff;
    color: var(--color_primary);
  }
}

@media (max-width: 800px) {
  .box-style02 .box-ttl02 {
    font-size: 1.8rem;
  }

  .box-style02 .box-ttl {
    font-size: 1.8rem;
  }

  .box-style02 .box-ttl03 {
    font-size: 1.8rem;
  }
}

.box-style03 {
  padding: 50px 4.88%;
  background: var(--color_third);
}

.box-style03 .box-ttl {
  font-size: 2rem;
  color: var(--color_second);
  margin-bottom: 15px;
}

.box-style03.narrow {
  padding: 40px;
}

@media (max-width: 800px) {
  .box-style03 {
    padding: 25px;
  }

  .box-style03.narrow {
    padding: 25px;
  }

  .box-style03 .box-ttl {
    font-size: 1.8rem;
  }
}

.box-comment {
  padding: 30px;
  background: #fff;
  position: relative;
}

.box-comment::after {
  content: "";
  background: #fff;
  width: 20px;
  height: 20px;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.box-wrapper01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.box-wrapper01 .box-comment {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 675px;
  flex: 0 0 675px;
}

@media (max-width: 800px) {
  .box-comment {
    padding: 25px;
  }

  .box-wrapper01 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: inherit;
    -ms-flex-align: inherit;
    align-items: inherit;
  }

  .box-comment::after {
    -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    left: 50%;
    top: 100%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .box-wrapper01 .box-comment {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* Staff */
.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.staff-layout .l-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 410px;
  flex: 0 0 410px;
  margin-left: 65px;
}

.staff-layout .l-desc {
  margin-top: 20px;
}

.staff-layout .job {
  font-size: 1.8rem;
  color: var(--color_second);
  margin-bottom: 5px;
}

.staff-layout .name {
  border-bottom: 1px solid #ddd;
  line-height: 1;
  padding-bottom: 35px;
  margin-bottom: 30px;
}

.staff-layout .jp {
  font-size: 3rem;
  display: inline-block;
  margin-right: 25px;
}

.staff-layout .en {
  display: inline-block;
  font-family: var(--font_en);
  color: var(--color_second);
  font-size: 1.8rem;
}

.staff-career {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 15px;
}

@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;
  }

  .staff-layout .job {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .staff-layout .name {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .staff-layout .jp {
    display: block;
    font-size: 2.5rem;
    margin: 0 0 10px;
  }

  .staff-layout .en {
    font-size: 1.4rem;
  }
}

/* Text */
.u-catch {
  font-weight: 700;
  font-size: 2rem;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .u-catch {
    font-size: 1.8rem;
  }
}

.text-style01 {
  font-size: 2.2rem;
  color: var(--color_primary);
  letter-spacing: 0.05em;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .text-style01 {
    font-size: 2rem;
  }
}

.text-price {
  text-align: center;
  color: var(--color_primary);
  font-size: 2rem;
  line-height: 1;
}

.text-price .price {
  font-size: 9rem;
}

@media (max-width: 800px) {
  .text-price .price {
    font-size: 6rem;
  }
}

/* Title */
.ttl-style01 {
  display: table;
  font-size: 1.4rem;
  color: #fff;
  background: var(--color_second);
  padding: 0 10px;
  margin-bottom: 10px;
}

.ttl-style02 {
  margin-bottom: 30px;
}

.ttl-style02 .num {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 8rem;
  color: var(--color_primary);
  letter-spacing: 0;
  line-height: 1;
  margin: 0 0 10px -4.89vw;
}

.ttl-style02 .ttl {
  font-size: 2.6rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color_primary);
}

@media (max-width: 1200px) {
  .ttl-style02 .num {
    margin-left: -3vw;
  }
}

@media (max-width: 800px) {
  .ttl-style02 {
    margin-bottom: 20px;
  }

  .ttl-style02 .num {
    font-size: 3.5rem;
    margin: 0 0 10px !important;
  }

  .ttl-style02 .ttl {
    font-size: 2rem;
  }
}

/* アンカーリンク */
.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li::after {
  content: "";
  display: inline-block;
  background: var(--color_border);
  width: 2px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -1px;
}

.list-anchor-link a {
  display: inline-block;
  position: relative;
  font-weight: bold;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  -webkit-mask: url(../images/share/ico_arrow_bottom.svg) no-repeat 0 0/contain;
  mask: url(../images/share/ico_arrow_bottom.svg) no-repeat 0 0/contain;
  background: var(--color_primary);
  width: 14px;
  height: 14px;
  position: absolute;
  right: 0;
  top: 7px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li::after {
    display: none;
  }

  .list-anchor-link a {
    padding: 0 0 0 30px;
  }

  .list-anchor-link a::before {
    right: inherit;
    left: 0;
  }
}

/* 矢印 */
.arrow-down {
  width: 100px;
  aspect-ratio: 20/7;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  margin: 30px auto 20px;
  background: var(--color_primary);
}

@media (max-width: 800px) {
  .arrow-down {
    width: 50px;
  }
}

/* FAQ */
.faq-style01 dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #eee;
  margin: 0 0 15px;
}

.faq-style01 dt .txt {
  font-size: 2rem;
  line-height: 1.7;
}

.faq-style01 dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.faq-style01 dd+dt {
  margin-top: 30px;
}

.faq-style01 .ico {
  font-family: var(--font_en);
  font-weight: 400;
  font-size: 2.5rem;
  color: var(--color_primary);
  line-height: 1;
  margin: 0 15px 0 0;
}

.faq-style01 .txt {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.faq-style01 dd .ico {
  color: var(--color_second);
}

@media (max-width: 800px) {
  .faq-style01 dt {
    padding: 0 0 10px;
    margin: 0 0 10px;
  }

  .faq-style01 dt .txt {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  .faq-style01 dd+dt {
    margin-top: 20px;
  }

  .faq-style01 .ico {
    font-size: 2.3rem;
    margin: 0 10px 0 0;
  }

  .faq-style01 .txt {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

/* Price */
.list-price>li+li {
  margin-top: 20px;
}

.list-price .list-intro {
  border-bottom: 1px dotted #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  grid-gap: 10px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 0 0 5px;
}

.list-price .list-desc {
  color: #747474;
  font-size: 13px;
  margin-top: 5px;
}

.list-price .price {
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .list-price>li+li {
    margin-top: 15px;
  }

  .list-price .list-intro {
    font-size: 1.6rem;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid var(--color_primary);
  font-size: 1.8rem;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-privacy li+li {
  margin-top: 3px;
}

.list-privacy li:before {
  background: var(--color_primary);
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
.category-ttl {
  font-size: 2.5rem;
  color: var(--color_primary);
  margin-bottom: 15px;
}

/*普通投稿 old*/
.l-post-type01 {
  margin-bottom: 80px;
}

.l-post-type01 .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-post-type01 .post-item+.post-item {
  margin-top: 50px;
}

.l-post-type01 .post-ttl {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  font-family: "###";
  font-size: 2rem;
  word-break: break-all;
  position: relative;
  margin: 0 0 25px;
}

.l-post-type01 .post-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-ttl a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-ttl a:hover {
    opacity: 0.5;
  }
}

.l-post-type01 .post-img {
  margin: 0 30px 0 0;
  width: 250px;
}

.l-post-type01 .post-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.l-post-type01 .post-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.l-post-type01 .post-img a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-img a:hover {
    opacity: 0.5;
  }
}

.l-post-type01 .post-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-post-type01 .post-data {
  font-size: 1.3rem;
  margin: 0 0 5px;
}

.l-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.l-post-type01 .category {
  background: var(--color_primary);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.l-post-type01 .post-txt {
  margin: 0 0 30px;
}

.l-post-type01 .post-btn {
  text-align: right;
}

.l-post-type01 .post-btn a {
  display: inline-block;
  background: var(--color_primary);
  color: #fff;
  font-family: "###";
  line-height: 1;
  text-align: center;
  padding: 15px 45px;
  min-width: 160px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 0;
}

.l-post-type01 .post-btn a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.l-post-type01 .post-btn a:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .l-post-type01 .post-btn a:hover {
    opacity: 0.5;
  }
}

@media (max-width: 800px) {
  .l-post-type01 {
    margin: 0 0 50px;
  }

  .l-post-type01 .post-item+.post-item {
    margin-top: 20px;
  }

  .l-post-type01 .post-ttl {
    font-size: 1.8rem;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .l-post-type01 .post-img {
    margin: 0 15px 0 0;
    width: 40%;
  }

  .l-post-type01 .post-img img {
    width: 100%;
    height: 25vw;
  }

  .l-post-type01 .post-desc {
    margin: -5px 0 0;
  }

  .l-post-type01 time {
    font-size: 1.2rem;
    margin: 0 15px 0 0;
  }

  .l-post-type01 .post-txt {
    font-size: 1.1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
  }

  .l-post-type01 .post-btn {
    margin-top: 15px;
  }

  .l-post-type01 .post-btn a {
    padding: 12px 25px;
    font-size: 1.3rem;
    min-width: 130px;
  }
}

/* 普通投稿 */
.l-under-post {
  border-top: 1px solid #e8ecf0;
  margin-bottom: 50px;
}

.l-under-post>.post-item {
  border-bottom: 1px solid #f5f5f5;
}

.l-under-post a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: background-color 0.3s, padding 0.3s;
  transition: background-color 0.3s, padding 0.3s;
  padding: 15px 35px 15px 0;
  position: relative;
}

.l-under-post a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color_primary);
  border-right: 2px solid var(--color_primary);
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a::after {
  content: "";
  width: 20px;
  border: 1px solid var(--color_primary);
  position: absolute;
  right: 0;
  top: 15px;
  bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-under-post a:focus-visible::before {
  border-color: #fff;
}

.l-under-post a:focus-visible::after {
  background: var(--color_primary);
}

@media (any-hover: hover) {
  .l-under-post a:hover::before {
    border-color: #fff;
  }

  .l-under-post a:hover::after {
    background: var(--color_primary);
  }
}

.l-under-post .post-img {
  width: 150px;
  margin-right: 25px;
}

.l-under-post .post-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 105px;
}

.l-under-post .post-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.4rem;
}

.l-under-post time {
  display: block;
  color: #ADADAD;
  font-size: 1.2rem;
}

.l-under-post .post-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.l-under-post .category {
  display: inline-block;
  background-color: var(--color_primary);
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.l-under-post .no-post {
  padding: 25px 0;
}

@media (max-width: 800px) {
  .l-under-post a {
    padding: 20px 25px 20px 0;
  }

  .l-under-post a:hover {
    background-color: transparent;
  }

  .l-under-post .post-img {
    width: 120px;
    margin-right: 20px;
  }

  .l-under-post .post-img img {
    height: 90px;
  }

  .l-under-post .post-desc {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .l-under-post time {
    font-size: 1rem;
  }

  .l-under-post .post-ttl {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .l-under-post .category {
    font-size: 1rem;
  }

  .l-under-post .no-post {
    padding: 25px 0;
  }
}

/*詳細ページ*/
.single-post-layout {
  border-bottom: 3px solid var(--color_border);
  padding-bottom: 50px;
  margin-bottom: 50px;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-layout .l-ttl {
  border-bottom: 3px solid var(--color_border);
  font-size: 2.4rem;
  padding-bottom: 20px;
  margin-bottom: 50px;
}

.single-post-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.single-post-layout .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 1.2rem;
  margin-right: 20px;
  font-family: var(--font_en);
  font-weight: 400;
}

.single-post-layout .post-data .category {
  display: inline-block;
  color: var(--color_second);
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.post-catch-img {
  text-align: center;
  margin-bottom: 50px;
}

.post-catch-img img {
  height: 400px;
  -o-object-fit: contain;
  object-fit: contain;
}

.single-post-ttl {
  font-size: 3.5rem;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color_third);
  margin: 50px 0;
  max-width: 1024px;
  width: 90%;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .single-post-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .post-catch-img img {
    height: auto;
  }

  .single-post-ttl {
    font-size: 2.4rem;
  }
}

/*詳細ページ*/
.postdata ul,
.postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:focus-visible {
  text-decoration: none;
}

@media (any-hover: hover) {
  .postdata a:hover {
    text-decoration: none;
  }
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

.entry-content {
  padding-right: var(--wp--custom--gutter);
  padding-left: var(--wp--custom--gutter);
}


/*セレクト式カテゴリー*/
.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 50px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-family: "###";
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/ico_arrow_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  font-size: 1.6rem;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
}

.select-area .select-category::-ms-expand {
  display: none;
}

@media (max-width: 800px) {
  .select-area {
    display: block;
    margin: 0 0 30px;
  }

  .select-area .select-item {
    margin: 0;
  }

  .select-area .select-item+.select-item {
    margin-top: 10px;
  }

  .select-area .select-ttl {
    font-size: 1.5rem;
  }
}

/*ページャー*/
.post-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 50px;
}

.post-number span,
.post-number a {
  display: inline-block;
  color: var(--color_primary);
  border: 1px solid var(--color_primary);
  font-size: 1.3rem;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}

.post-number a:focus-visible {
  background: var(--color_primary);
  color: #fff;
}

@media (any-hover: hover) {
  .post-number a:hover {
    background: var(--color_primary);
    color: #fff;
  }
}

.post-number .current {
  background: var(--color_primary);
  color: #fff;
}

.post-number-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  color: #fff;
  font-size: 1.3rem;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:focus-visible {
  background: #fff;
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .post-number-single .all:hover {
    background: #fff;
    color: var(--color_primary);
  }
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid var(--color_primary);
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid var(--color_primary);
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:focus-visible,
.post-number-single .next:focus-visible {
  background: var(--color_primary);
}

.post-number-single .prev:focus-visible::before,
.post-number-single .next:focus-visible::before {
  border-color: #fff;
}

@media (any-hover: hover) {

  .post-number-single .prev:hover,
  .post-number-single .next:hover {
    background: var(--color_primary);
  }

  .post-number-single .prev:hover::before,
  .post-number-single .next:hover::before {
    border-color: #fff;
  }
}

.post-number-single .prev::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 13px;
  border-left: 1px solid var(--color_primary);
}

.post-number-single .next::before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 13px;
  border-right: 1px solid var(--color_primary);
}

/*------------
症例紹介
--------------*/
.case-layout {
  background-color: var(--color_third);
  padding: 6%;
  margin-bottom: 50px;
}

.case-layout time {
  color: #aaa;
  display: block;
  font-size: 1.2rem;
  margin-right: 15px;
}

.case-layout .category {
  display: inline-block;
  background-color: var(--color_primary);
  color: #fff;
  font-size: 1.1rem;
  padding: 0 5px;
  margin-right: 10px;
}

.case-layout .l-ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
}

.case-layout .post-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.case-layout .before-after {
  margin-bottom: 30px;
}

.post-table,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table {
  background-color: #fff;
  border: 1px solid #eee;
}

.post-table tr th,
.post-table tr td,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td {
  border: 1px solid #eee;
  line-height: 1.5;
  font-size: 1.5rem;
  padding: 15px;
}

.post-table tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th {
  background-color: var(--color_primary);
  color: #fff;
  vertical-align: middle;
  text-align: left;
  width: 25%;
}

.post-table tr th.bg01,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th.bg01 {
  background-color: var(--color_third);
  color: #333;
}

.post-table.price tr th,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table.price tr th {
  width: 50%;
  text-align: center;
}

.post-table.price tr th.bg01,
.wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table.price tr th.bg01 {
  text-align: left;
}

.case-layout .l-btn {
  text-align: center;
  margin-top: 50px;
}

.before-after {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5% 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
}

.before-after .item {
  text-align: center;
  position: relative;
}

.before-after figure {
  display: -ms-grid;
  display: grid;
  place-items: center;
  height: 300px;
  position: relative;
}

.before-after figure img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  max-height: 300px;
}

.before-after p {
  font-family: var(--font_en);
  font-weight: 400;
  text-align: center;
}

.before-after p::before,
.before-after p::after {
  content: "-";
  margin: 0 5px;
}

@media (max-width: 800px) {
  .case-layout .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .case-layout .post-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
  }

  .case-layout .before-after {
    margin-bottom: 30px;
  }

  .wp-block-flexible-table-block-table.is-scroll-on-mobile>table {
    width: 150%;
  }

  .wp-block-flexible-table-block-table.is-scroll-on-mobile>table thead::before {
    content: "※横にスクロールできます。";
    display: block;
    width: 100vw;
  }

  .post-table.price tr th,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table.price tr th {
    display: table-cell;
  }

  .post-table.price tr th.bg01,
  .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table.price tr th.bg01 {
    text-align: left;
  }

  .case-layout .l-btn {
    margin-top: 30px;
  }

  .before-after {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .before-after figure {
    height: auto;
  }
}

/*------------
施術一覧
--------------*/
.dl-style01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 0 75%;
  grid-template-columns: 25% 75%;
  grid-gap: 10px 0;
}

.dl-style01>dt {
  background: var(--color_primary);
  font-size: 1.7rem;
  color: #fff;
  padding: 20px;
}

.dl-style01>dt .num {
  display: block;
  font-size: 1.3rem;
  font-family: var(--font_en);
  line-height: 1;
  margin-bottom: 5px;
}

.dl-style01>dd {
  background: var(--color_third);
  padding: 20px;
}

@media (max-width: 800px) {
  .dl-style01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }

  .dl-style01>dt {
    font-size: 15px;
    padding: 15px;
  }

  .dl-style01>dd {
    padding: 15px;
  }

  .dl-style01>dd+dt {
    margin-top: 15px;
  }
}

.dl-style02 {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px 30px;
}

.dl-style02>dt {
  background: var(--color_primary);
  border-radius: 5px;
  color: #fff;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  padding: 0 5px;
}

.wrap-center {
  display: table;
  margin-inline: auto;
}

@media (max-width: 800px) {
  .dl-style02 {
    grid-gap: 10px 15px;
  }
}

.dl-style03 {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.dl-style03 dt {
  min-width: 85px;
  padding: 3px 10px;
  background: var(--color_second);
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
}

/*-----------------------------------------------------------
投稿02
-----------------------------------------------------------*/
/*------------
sidebar-layout
--------------*/
.sidebar-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-contents {
  padding: 100px 70px;
  width: calc(100% - 360px);
  max-width: 1024px;
  margin-inline: auto;
}

.main-contents .l-item+.l-item {
  margin-top: 100px;
}

.side-contents {
  padding: 60px;
  background: var(--color_third);
  width: 360px;
  position: relative;
  margin-top: -27px;
}

.side-contents-wrapper {
  position: sticky;
  top: 110px;
}

.side-contents-ttl {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color_second);
}

.side-area-item+.side-area-item {
  margin-top: 30px;
}

.side-area-item-ttl {
  font-size: 1.3rem;
  margin-bottom: 7px;
}

.side-area-links li {
  padding-left: 15px;
  position: relative;
  font-size: 1.4rem;
}

.side-area-links li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid var(--color_second);
  border-right: 1px solid var(--color_second);
  position: absolute;
  top: 10px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.side-area-links li+li {
  margin-top: 5px;
}

.side-area-links a {
  display: inline-block;
}

.side-area-links a:focus-visible {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .side-area-links a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 800px) {
  .sidebar-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    padding: 50px 0 0;
    width: 100%;
  }

  .sidebar-layout.sp-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .sidebar-layout.sp-reverse .side-contents {
    margin: 0 0 50px;
  }

  .main-contents {
    width: 100%;
    padding: 0 5vw;
  }

  .main-contents .l-item+.l-item {
    margin-top: 50px;
  }

  .side-contents {
    width: 100%;
    padding: 50px 5vw;
    margin-top: 50px;
  }

  .side-contents-wrapper {
    position: sticky;
    top: 20px;
  }

  .side-contents-ttl {
    font-size: 1.5rem;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }

  .side-area-item+.side-area-item {
    margin-top: 30px;
  }
}

/*お知らせ*/
.l-under-post02 {
  border-top: 1px solid var(--color_border);
}

.l-under-post02 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid var(--color_border);
  padding: 20px 0;
}

.l-under-post02 a:focus-visible .ttl {
  text-decoration: underline;
}

@media (any-hover: hover) {
  .l-under-post02 a:hover .ttl {
    text-decoration: underline;
  }
}

.l-under-post02 time {
  display: inline-block;
  color: #888;
  white-space: nowrap;
  margin-right: 25px;
  font-family: var(--font_en);
  font-weight: 400;
}

.l-under-post02 .ttl {
  display: inline-block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media (max-width: 800px) {
  .l-under-post02 a {
    display: block;
    line-height: 1.5;
    padding: 10px 0;
  }

  .l-under-post02 time {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .l-under-post02 .ttl {
    -webkit-line-clamp: 2;
  }
}

/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.fade:focus-visible {
  opacity: 0.5;
}

@media (any-hover: hover) {
  .fade:hover {
    opacity: 0.5;
  }
}

.bold,
strong {
  font-weight: 700;
}

.red {
  color: #F44336;
}

.blue {
  color: var(--color_second);
}

.brown {
  color: var(--color_primary);
}

.fs17 {
  font-size: 1.7rem;
}

.fs11 {
  font-size: 1.1rem;
}

.fs20 {
  font-size: 2rem;
}

.fs17_s {
  font-size: 1.7rem;
  color: var(--color_second);
  font-family: var(--font_en);
}

.marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: rgba(255, 228, 0, 0.4);
  text-underline-offset: -0.2em;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.notice {
  font-size: 1.4rem;
  text-indent: -1.5em;
  padding-left: 1.5em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 80px !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.tal {
  text-align: left !important;
}

.map {
  height: 450px;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 800px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .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;
  }

  .map {
    height: 300px;
  }

  .fs17 {
    font-size: 1.5rem;
  }

  .fs20 {
    font-size: 1.8rem;
  }
}

/*-----------------------------------------------------------
Add
-----------------------------------------------------------*/
/*------------
splide
-------------*/
/*各種色設定*/
:root {
  --splide-arrow-color: #BA945C;
  /*矢印*/
  --splide-focus-color: #BA945C;
  /*タブ移動によるフォーカス時のアウトライン*/
  --splide-pagination-color: #BA945C;
  /*アクティブ時のページネーション*/
  --splide-progress-color: #BA945C;
  /*プログレスバー*/
  --splide-toggle-color: #BA945C;
  /*再生ボタン*/
  --splide-track-color: #BA945C;
  /*サムネイルの枠*/
}

.splide__container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  -webkit-box-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;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress {
  background: #ddd;
  margin-top: 10px;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
  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 {
  -webkit-animation: splide-loading 1s linear infinite;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.splide__controls .splide__pagination {
  position: static;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@-webkit-keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes splide-loading {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.splide__track--fade>.splide__list>.splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade>.splide__list>.splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb>.splide__list {
  display: block;
}

.splide__arrow {
  background: none;
  border: none;
  cursor: pointer;
  width: 35px;
  height: 35px;
  opacity: 1;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.splide__arrow svg {
  width: 100%;
  height: 100%;
  fill: var(--splide-arrow-color);
}

.splide__arrow:focus-visible:not(:disabled) {
  opacity: 0.3;
}

@media (any-hover: hover) {
  .splide__arrow:hover:not(:disabled) {
    opacity: 0.3;
  }
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 20px;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
}

.splide__arrow--next {
  right: 20px;
}

.splide.is-focus-in .splide__arrow:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 15px;
  left: 0;
  padding: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ddd;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 5px;
  opacity: 1;
  padding: 0;
  position: relative;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: var(--splide-pagination-color);
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:focus-visible {
  cursor: pointer;
  opacity: 0.9;
}

@media (any-hover: hover) {
  .splide__pagination__page:hover {
    cursor: pointer;
    opacity: 0.9;
  }
}

.splide__pagination__page:focus-visible-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide__progress__bar {
  background: var(--splide-progress-color);
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus-visible {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus-visible {
    outline: 3px solid var(--splide-focus-color);
    outline-offset: -3px;
  }
}

.splide__toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #737e80;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 10px;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  height: 29px;
  width: 29px;
}

.splide__toggle:focus-visible {
  background: var(--splide-toggle-color);
}

@media (any-hover: hover) {
  .splide__toggle:hover {
    background: var(--splide-toggle-color);
  }
}

.splide__toggle svg {
  fill: #fff;
  -webkit-transition: fill 0.2s ease;
  transition: fill 0.2s ease;
  width: 12px;
  height: auto;
}

.splide__toggle:focus-visible-visible {
  outline: 3px solid var(--splide-focus-color);
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus-visible {
  outline: 3px solid var(--splide-focus-color);
  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 var(--splide-track-color);
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@media (max-width: 800px) {
  .splide__arrow {
    width: 25px;
    height: 25px;
  }

  .splide__arrow--prev {
    left: 10px;
  }

  .splide__arrow--next {
    right: 10px;
  }
}

/* Top slider01 */
.top-slider01 .splide__track {
  max-width: 1200px;
  width: 90%;
  margin-inline: auto;
}

.top-slider01 .splide__arrow svg {
  fill: none;
  stroke: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.top-slider01 .splide__arrow svg path {
  stroke-width: 1;
  -webkit-transform: translate(48%, 39%);
  transform: translate(48%, 39%);
}

.top-slider01 .splide__arrow--prev {
  left: 0;
}

.top-slider01 .splide__arrow--next {
  right: 0;
}

.top-slider01 .no-post {
  padding: 0 15px;
}

.top-post-campaign a {
  overflow: hidden;
  display: block;
  width: 100%;
  aspect-ratio: 1;
}

.top-post-campaign a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.top-post-campaign a:focus-visible img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top-post-campaign .l-ttl {
  margin-top: 10px;
}

.top-post-campaign .l-ttl a {
  aspect-ratio: auto;
}

@media (any-hover: hover) {
  .top-post-campaign a:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.top-post-case a {
  display: block;
  height: 100%;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.08);
}

.top-post-case .post-ttl {
  font-size: 1.6rem;
  color: var(--color_second);
  margin-bottom: 10px;
}

.top-post-case .post-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-post-case .post-img img {
  width: 50%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-post-case .post-img img.no-image {
  width: 100%;
}

.top-post-case .before-after .item>p {
  display: none;
}

.top-post-case .before-after figure {
  height: auto;
}

.top-post-case .post-ttl {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-transition: var(--hover_transition);
  transition: var(--hover_transition);
}

.top-post-case a:focus-visible .post-ttl {
  color: var(--color_primary);
}

@media (any-hover: hover) {
  .top-post-case a:hover .post-ttl {
    color: var(--color_primary);
  }
}



.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table,
.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table {
  border: none;
}

.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.top-case-table th,
.top-case-table td {
  padding: 10px 0;
  font-size: 1.3rem;
  border-right: 0;
  border-left: 0;
}

.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
.top-case-table th {
  background-color: revert;
  color: revert;
  width: 110px;
  border-bottom: 1px solid #96AFC7;
  font-weight: 500;
  vertical-align: middle;
  text-align: left;
  letter-spacing: 0.05em;
}

.top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
.top-case-table td {
  width: calc(100% - 110px);
  border-bottom: 1px solid #E8E8E8;
  font-weight: 400;
}


@media (max-width: 800px) {

  .top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr th,
  .top-post-case .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table>table tr td,
  .top-case-table th,
  .top-case-table td {

    display: table-cell;
  }
}


/* Under slider */
.under-slider02 {
  overflow: hidden;
}

.under-slider02 .splide {
  margin: 0 auto;
}

.under-slider02 .splide__track {
  overflow: visible;
}

.under-slider02 .splide__slide:not(.is-visible) .slide {
  pointer-events: none;
  opacity: 0.3;
}

.under-slider02 .splide__arrow {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #e9e9e9;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 64px;
  width: 64px;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 263px;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.under-slider02 .splide__arrow svg {
  display: none;
}

.under-slider02 .splide__arrow--prev::after,
.under-slider02 .splide__arrow--next::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: solid var(--splide-arrow-color);
  border-width: 1px 1px 0 0;
}

.under-slider02 .splide__arrow--prev {
  left: calc((100% - 860px) / 2);
}

.under-slider02 .splide__arrow--prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.under-slider02 .splide__arrow--next {
  right: calc((100% - 860px) / 2);
}

.under-slider02 .splide__arrow--next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.under-slider02 .item-desc {
  margin-top: 25px;
}

.under-slider02 .item-ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--color_primary);
}

@media (max-width: 800px) {
  .under-slider02 .item-desc {
    margin-top: 15px;
  }

  .under-slider02 .item-ttl {
    font-size: 18px;
    margin-bottom: 0;
  }
}

/*-----------------------------------------------------------
Animation
-----------------------------------------------------------*/
.js-fadein {
  -webkit-transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, -webkit-transform 1s;
  transition: opacity 1.2s, transform 1s;
  transition: opacity 1.2s, transform 1s, -webkit-transform 1s;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
}

.js-fadein.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}


.table-style01.star {
  table-layout: fixed;
}

.table-style01.star .btn-more {
  min-width: auto;
}

@media (max-width: 800px) {
  .table-style01.star {
    width: 240%;
  }

  .table-style01.star td {
    white-space: initial;
  }

  .table-style01.star .btn-more {
    padding: 10px 30px;
  }

}

.hero-slider .splide__slide {
  max-height: 800px;
}

.hero-slider .splide__slide img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 800px) {
  .hero-slider .splide__slide {
    max-height: 100%;
    height: calc(100svh - 115px);
  }

  .hero-slider .splide__slide img {
    height: 100%;
  }
}

.hero-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-btn-wrapper .btn-icon {
  text-align: center;
  width: 190px;
}

.h-translate {
  text-align: right;
  position: relative;
}

.btn-translate {
  border: 1px solid;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  font-size: 13px;
  font-family: var(--font_jp);
  text-align: center;
  padding: 5px 10px 5px 0;
  position: relative;
  width: 130px;
}

.btn-translate::after {
  content: "";
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  height: 8px;
  display: block;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  transform: rotate(45deg);
  margin: auto;
  width: 8px;
}

.header.is-fixed .btn-translate {
  color: #333;
}

.header.is-fixed .btn-translate::after {
  border-right-color: #333;
  border-bottom-color: #333;
}

.translate-child {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 13px;
  z-index: 9;
}

.translate-child::before {
  background: #fff;
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  content: "";
  position: absolute;
  top: 0;
  right: 56px;
  height: 16px;
  width: 18px;
}

.translate-child .inlist {
  background: #fff;
  /* width: 315px;
  height: 55.39px; */
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.08);
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.translate-child .inlist li {
  font-size: 13px;
  font-family: var(--font_jp);
}

.translate-child .inlist li:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .h-translate {
    padding-right: 50px;
  }

  .btn-translate {
    font-size: 12px;
    /* padding: 5px 10px 5px 0; */
    width: 100px;
  }

  .btn-translate::after {
    height: 6px;
    right: 4px;
    width: 6px;
  }

  .translate-child {
    padding-top: 8px;
  }

  .translate-child::before {
    right: 60px;
  }

  .translate-child .inlist {
    padding: 10px 5px;
    gap: 10px;
    white-space: nowrap;
  }

  .translate-child .inlist li {
    font-size: 11px;
  }
}


/*------------
accordion-style
--------------*/
.accordion-style+.accordion-style {
  margin-top: 20px;
}

.accordion-style summary {
  display: block;
  cursor: pointer;
  font-family: var(--font_jp);
  background: var(--color_third);
  border: 2px solid var(--color_third);
  font-family: var(--font_jp);
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 30px 20px 50px;
  position: relative;
  transition: 0.2s;
}

.accordion-style summary::-webkit-details-marker {
  display: none;
}

.accordion-style:not(.is-open) summary:is(:hover, :focus) {
  opacity: 0.5;
}

.accordion-style summary::before,
.accordion-style summary::after {
  content: "";
  display: block;
  background: #000000;
  position: absolute;
  top: 50%;
  left: 20px;
}

.accordion-style summary::before {
  width: 16px;
  height: 1px;
}

.accordion-style summary::after {
  width: 16px;
  height: 1px;
  rotate: 90deg;
  transition: rotate 0.5s;
}

.accordion-style.is-open summary::after {
  rotate: 0deg;
}

.accordion-style .accordion-content {
  overflow: hidden;
}

.accordion-style .accordion-inner {
  background-color: #fff;
  padding: 20px 30px;
  border: 2px solid var(--color_third);
}

.accordion-style .accordion-content:not([hidden=until-found]):target {
  display: revert;
}

@media (scripting: none) {
  .accordion-style .accordion-contentl:target {
    display: revert;
  }
}

.accordion-style.pc-block summary {
  pointer-events: none;
  cursor: default;
  padding: 20px;
}

.accordion-style.pc-block summary::before,
.accordion-style.pc-block summary::after {
  content: none;
}

@media (max-width: 800px) {
  .accordion-style+.accordion-style {
    margin-top: 15px;
  }

  .accordion-style summary {
    padding: 10px 15px 10px 50px;
    font-size: 1.5rem;
  }

  .accordion-style summary::before {
    width: 12px;
  }

  .accordion-style summary::after {
    width: 13px;
  }

  .accordion-style .accordion-inner {
    padding: 15px;
  }

  .accordion-style.pc-block summary {
    padding: 10px 15px 10px 50px;
    pointer-events: auto;
    cursor: auto;
  }

  .accordion-style.pc-block summary::before,
  .accordion-style.pc-block summary::after {
    content: "";
  }
}
