@charset "UTF-8";

@font-face {
  font-family: "HunterRiver-Regular";
  src: url("../fonts/HunterRiver-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --color_bg: #fff;
  --color_text: #333;
  --color_link: #333;
  --color_border: #e6e6e6;
  --color01: #5687D1;
  --color02: #DBE6F4;
  --color03: #F0F5FA;
  --color_brown: #C88556;
  --font00: TsukuGoPr5N-M, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font01: "TsukuGoPro-B", sans-serif;
  --font02: "HunterRiver-Regular", serif;
  --font03: "Poppins", sans-serif;
  --easing: cubic-bezier(.12, 1, .5, 1);
}

/*-----------------------------------------------------------
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;
  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 {
  color: inherit;
  text-decoration: none;
  border: medium;
}

a:-webkit-any-link:focus-visible {
  outline-offset: 1px;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.8em;
}

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%;
}

th {
  font-weight: normal;
  text-align: left;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}

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

/*------------
responsive
--------------*/
/*------------
common
--------------*/
.clearfix::after,
.l-imgR::after,
.l-imgL::after,
.l-imgL_auto::after {
  content: " ";
  display: table;
  clear: both;
}

.sp-only {
  display: none;
}

.none {
  display: none;
}

.fade {
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
  display: block;
}

.fade:hover {
  opacity: 0.5;
}

.fade_inline {
  -webkit-transition: 0.5s linear;
  transition: 0.5s linear;
}

.fade_inline:hover {
  opacity: 0.5;
}

.radius {
  border-radius: 10%;
}

.circle {
  border-radius: 50%;
}

.medium {
  font-weight: 500;
}

.bold,
.strong {
  font-family: var(--font01);
}

.underline {
  text-decoration: underline;
}

.colorline {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f9f8a2));
  background: linear-gradient(transparent 60%, #f9f8a2 60%);
}

.color01 {
  color: var(--color01);
}

.color02 {
  color: var(--color02);
}

.color03 {
  color: var(--color03);
}

.black {
  color: #000;
}

.green {
  color: #00B050;
}

.yellow {
  color: #F2AC34;
}

.red {
  color: #f00;
}

.blue {
  color: #00f;
}

.white {
  color: #fff;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mbL {
  margin-bottom: 60px;
}

.mbM {
  margin-bottom: 30px;
}

.mbS {
  margin-bottom: 15px;
}

.mt05em {
  margin-top: 0.5em;
}

.mt1em {
  margin-top: 1em;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.font01 {
  font-family: var(--font01);
  font-weight: 500;
}

.fontsizeS {
  font-size: 0.9em;
}

.fontsize14 {
  font-size: 1.4rem;
}

.fontsize15 {
  font-size: 1.5rem;
}

@media screen and (max-width: 800px) {
  .fontsize15 {
    font-size: 1.4rem;
  }
}

.fontsizeL {
  font-size: 1.2em;
}

a {
  word-break: break-all;
  color: inherit;
  text-decoration: none;
}

.link {
  color: var(--color01);
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.link_color {
  color: #abc111;
  text-decoration: underline;
}

.link_color:hover {
  text-decoration: none;
}

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

.relative {
  position: relative;
}

.line20 {
  line-height: 2;
}

.line15 {
  line-height: 1.5;
}

.overhidden {
  overflow: hidden;
}

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

.opacity,
.post-number-single .current,
.post-number-single a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.opacity:hover,
.post-number-single .current:hover,
.post-number-single a:hover {
  opacity: 0.6;
}

.hovermove {
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
}

.hovermove:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px #ccc;
  box-shadow: 0 0 10px #ccc;
}

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

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

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

body {
  font-family: var(--font00);
  font-size: 1.8rem;
  color: var(--color_text);
  letter-spacing: 0.05em;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  overflow-x: hidden;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 1.6rem;
    line-height: 1.8;
    overflow-x: hidden;
    overflow-y: auto;
  }
}

.tall,
.u-section {
  margin-bottom: 80px;
}

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

.x-short {
  margin-top: 40px;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
}

.container,
.breadcrumb ul {
  margin-left: auto;
  margin-right: auto;
  max-width: 1144px;
  padding-left: 60px;
  padding-right: 60px;
}

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

@media screen and (max-width: 800px) {

  .container,
  .breadcrumb ul {
    padding-left: 0;
    padding-right: 0;
    max-width: 90%;
  }
}

.u-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1144px;
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1320px;
}

@media screen and (max-width: 800px) {
  .u-container {
    padding-left: 0;
    padding-right: 0;
    max-width: 90%;
  }
}

.u-section {
  overflow: hidden;
}

.u-section.sticky {
  overflow: initial;
}

.u-bg01 {
  background: rgba(219, 230, 244, 0.85);
  padding: 100px 0;
  position: relative;
}

@media screen and (max-width: 800px) {
  .u-bg01 {
    padding: 60px 0;
  }
}

.u-bg02 {
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.u-bg02::before {
  background: #FCF7EF;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 60%;
  width: 80%;
  z-index: -1;
}

@media screen and (max-width: 800px) {
  .u-bg02 {
    padding-bottom: 50px;
  }

  .u-bg02::before {
    height: 80%;
    width: 90%;
  }
}

/*------------
LOADING
--------------*/
.is-hide {
  display: none;
}

.fadeout-bg {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
  opacity: 0;
  pointer-events: none;
}

.fadeout-loader {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  opacity: 0;
  pointer-events: none;
}

#loader-bg {
  background: #fff;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000000;
  width: 100%;
}

#loader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 340px;
  width: 472px;
}

@media screen and (max-width: 800px) {
  #loader {
    height: 180px;
    width: 250px;
  }
}

.header-frame {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 15px 3% 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
}

.header-frame.fixed {
  background: rgba(255, 255, 255, 0.95);
  height: 100px;
}

.header-frame.fixed .h-logo {
  opacity: 1 !important;
}

.h-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 30px;
  position: relative;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  z-index: 99;
}

.h-layout01 .h-logo {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.h-layout01 .h-logo a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: inline-block;
}

.h-layout01 .h-logo a:hover {
  opacity: 0.6;
}

.h-layout01 .h-side {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.h-layout01 .h-info {
  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 30px;
}

.g-navi {
  -webkit-font-feature-settings: normal;
  font-feature-settings: normal;
}

.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 25px;
}

.pc-navi_list .item {
  position: relative;
}

.pc-navi_list .item>a,
.pc-navi_list .item>.nolink {
  display: block;
  font: 1.6rem/1.5 var(--font01);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  padding: 8px 0;
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.pc-navi_list .item>a::after,
.pc-navi_list .item>.nolink::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 2px;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
  width: 100%;
}

.pc-navi-haschild {
  background: url("../images/share/arrow_down.svg") top 18px right no-repeat;
  padding-right: 16px;
  position: relative;
}

.pc-navi-haschild:hover>a,
.pc-navi-haschild:hover>.nolink {
  border-bottom: 1px solid var(--color01);
}

.pc-navi_child {
  background: rgba(235, 242, 245, 0.9);
  display: none;
  position: absolute;
  top: 100%;
  padding: 25px 30px;
  text-align: left;
  white-space: nowrap;
  width: auto;
  z-index: 100;
}

.pc-navi_child .child-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px 40px;
}

.pc-navi_child .child-list.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.pc-navi_child .child a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  font: 1.6rem/1.8 var(--font01);
  padding-left: 15px;
  position: relative;
}

.pc-navi_child .child a::before {
  background: var(--color01);
  border-radius: 50%;
  content: "";
  display: block;
  height: 5px;
  position: absolute;
  top: 13px;
  left: 0;
  width: 5px;
}

.pc-navi_child .child a:hover {
  opacity: 0.6;
}

.pc-navi_child .grandchild-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 3px 0;
  margin-left: 1em;
}

.pc-navi_child .grandchild a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  font-family: var(--font01);
  padding-left: 18px;
  position: relative;
}

.pc-navi_child .grandchild a::before {
  background: #FF7246;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 18px;
  left: 0;
  width: 8px;
}

.pc-navi_child .grandchild a:hover {
  opacity: 0.6;
}

.pc-navi_sitemap a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: inline-block;
}

.pc-navi_sitemap a:hover {
  opacity: 0.6;
}

.sp-navi {
  display: none;
}

.sp-modal {
  display: none;
}

.h-list01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 8px 0;
}

.h-list01 .item>a {
  display: inline-block;
  position: relative;
}

.h-list01 a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/arrow_right.svg") left center no-repeat;
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding-left: 15px;
  position: relative;
}

.h-list01 a:hover {
  text-decoration: underline;
}

.h-list01 a:hover {
  opacity: 0.6;
}

.h-list02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.header.index .h-logo {
  opacity: 0;
}

.hero_space {
  position: relative;
  margin-top: 100px;
}

@media screen and (max-width: 800px) {
  .hero_space {
    margin-top: auto;
  }
}

@-webkit-keyframes -webkit-hero__slide__image-slide {
  0% {
    background-position: left center;
  }

  to {
    background-position: left 15% center;
  }
}

@keyframes -webkit-hero__slide__image-slide {
  0% {
    background-position: left center;
  }

  to {
    background-position: left 15% center;
  }
}

@-webkit-keyframes hero__slide__image-slide {
  0% {
    background-position: left center;
  }

  to {
    background-position: left 15% center;
  }
}

@keyframes hero__slide__image-slide {
  0% {
    background-position: left center;
  }

  to {
    background-position: left 15% center;
  }
}

.t-container {
  margin-inline: auto;
  width: min(94%, 1200px);
}

@media screen and (max-width: 800px) {
  .t-container {
    width: 90%;
  }
}

@-webkit-keyframes circles-to-right {
  0% {
    left: 0;
    right: auto;
    width: 50px;
  }

  50% {
    left: 0;
    right: auto;
    width: 100%;
  }

  51% {
    left: auto;
    right: 0;
    width: 100%;
  }

  100% {
    left: auto;
    right: 0;
    width: 50px;
  }
}

@-webkit-keyframes circles-to-left {
  0% {
    left: auto;
    right: 0;
    width: 50px;
  }

  60% {
    top: 25px;
    height: 0;
    left: auto;
    right: 25px;
    width: 0;
  }

  100% {
    height: 50px;
    top: 0;
    left: 0;
    right: auto;
    width: 50px;
  }
}

.t-btn-wrap {
  margin-top: 50px;
}

.t-btn {
  background: url("../images/share/arrow_right.svg") right 12px center/auto no-repeat;
  border: 1px solid var(--color01);
  color: var(--color01);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: 1.6rem/1.5 var(--font01);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  padding: 15px 50px;
  position: relative;
  text-align: center;
  width: 210px;
  min-width: 180px;
  z-index: 1;
}

.t-btn.small {
  width: 180px;
}

.t-btn.clear {
  background: url("../images/share/arrow_right.svg") right 12px center/auto no-repeat;
  border: 1px solid var(--color01);
  color: var(--color01);
}

.t-btn.white {
  background: url("../images/share/arrow_right_w.svg") right 12px center/auto no-repeat;
  border: 1px solid #fff;
  color: #fff;
}

.t-btn::after {
  border: 1px solid #A88962;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
}

.t-btn:hover {
  background: url("../images/share/arrow_right_w.svg") right 12px center/auto no-repeat var(--color01);
  color: #fff;
}

@media screen and (max-width: 800px) {
  .t-btn {
    font-size: 1.6rem;
    padding: 13px 20px;
    width: 100%;
  }

  .t-btn.small {
    width: 100%;
  }
}

.t-shadow {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.t-color {
  color: #00173A;
}

.t-ttl01 {
  font: 4rem/1.5 var(--font02);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.t-lineL {
  line-height: 2.6;
}

.t-txt {
  font-size: 1.6rem;
  line-height: 1.8;
}

.t-txt p+p {
  margin-top: 1.5em;
}

.animate {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@-webkit-keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInRight {
  opacity: 0;
}

.fadeInRight.is-action {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    opacity: 0.3;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.fadeInLeft {
  opacity: 0;
}

.fadeInLeft.is-action {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.front_logo {
  background: var(--color01);
  border-radius: 0 0 10px 0;
  height: 230px;
  padding: 50px 12px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 230px;
}

.hero {
  text-align: center;
}

.hero img {
  width: 100%;
}

.sec01 {
  background: url("../images/sec01_bg_pc.png") bottom center no-repeat;
  margin-top: -100px;
  padding: 170px 0 76px;
}

.sec01-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.sec01-layout .l-img {
  text-align: right;
  width: 54%;
}

.sec01-layout .l-desc {
  font-size: 1.5rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec01-layout .l-desc .inner {
  margin-left: auto;
  width: min(94%, 640px);
}

.sec01-layout .l-desc .intxt {
  padding-left: 100px;
}

.sec01-layout .sec01-ttl {
  margin: 12px 0 68px 0;
  position: relative;
  width: min(52vw, 917px);
}

.sec01-layout .sec01-ttl::before {
  background: url("../images/sec01_ttl_bg.svg") center/auto no-repeat;
  content: "";
  display: block;
  height: 285px;
  position: absolute;
  top: -150px;
  right: -288px;
  width: 361px;
  z-index: 1;
}

.sec01-layout .l-btn {
  margin-top: 30px;
}

.sec01-layout .l-btn a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.sec01-layout .l-btn a:hover {
  opacity: 0.6;
}

.sec02 {
  background: url("../images/sec02_bg_pc.svg") center/cover no-repeat;
  position: relative;
  margin-top: -110px;
  padding: 310px 0 0;
}

.sec02-ttl {
  padding-left: 130px;
  position: relative;
  text-align: center;
}

.sec02-ttl .en {
  position: absolute;
  top: -140px;
  left: -188px;
  z-index: 1;
}

.sec02-ttl .jp {
  font: 2.4rem/1.5 var(--font01);
  text-align: center;
}

.sec02-movie {
  height: 580px;
  margin: 40px auto 180px;
  width: 100%;
}

.sec02-movie iframe {
  height: 100%;
  width: 100%;
}

.sec02-youtube-ttl {
  margin-bottom: 10px;
  text-align: center;
}

.sec02-youtube-txt {
  font: 3rem/1.5 var(--font01);
  text-align: center;
  margin-bottom: 40px;
}

.sec02-youtube-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 25px;
}

.sec02-youtube-list .item {
  height: 216px;
  width: 380px;
}

.sec02-youtube-list .item iframe {
  height: 100%;
  width: 100%;
}

.sec03 {
  background: url("../images/sec03_bg_pc.png") bottom center no-repeat;
  padding-bottom: 120px;
}

.sec03-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: auto;
  position: relative;
}

.sec03-layout .effect {
  position: absolute;
  right: 15%;
  bottom: 0;
  z-index: 1;
}

.sec03-layout .l-ttl {
  text-align: center;
  padding: 0 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec03-layout .l-desc {
  padding-top: 85px;
  overflow: hidden;
  width: 75%;
}

#sec03_slider {
  position: relative;
}

#sec03_slider .splide__slide img {
  border: 5px solid #AD99D0;
}

#sec03_slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

#sec03_slider .splide__arrows .slide__arrow {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  cursor: pointer;
}

#sec03_slider .splide__arrows .slide__arrow:hover {
  opacity: 0.6;
}

#sec03_slider .splide__pagination {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 5px;
  padding: 0;
  position: static;
  margin: 40px 0 30px;
}

#sec03_slider .splide__pagination .splide__pagination__page {
  background: #eee;
  border-radius: 0;
  height: 10px;
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100px;
}

#sec03_slider .splide__pagination .splide__pagination__page.is-active {
  background: #AD99D0;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.sec04 {
  position: relative;
  margin-bottom: 65px;
  z-index: 1;
}

.sec04::before {
  background: #5CC9C1;
  clip-path: polygon(0 100px, 100% 160px, 100% calc(100% - 60px), 0 calc(100% - 120px));
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.sec04-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 35px;
  margin: auto;
  width: min(90%, 1360px);
}

.sec04-ttl .jp {
  font: 2.4rem/1.5 var(--font01);
}

.sec04-link {
  margin-top: 60px;
  text-align: right;
}

.sec05 {
  position: relative;
  margin-bottom: 45px;
}

.sec05::before {
  background: url("../images/sec05_bg_pc.png") center no-repeat;
  content: "";
  display: block;
  height: 967px;
  position: absolute;
  top: -230px;
  left: 0;
  width: 100%;
  z-index: -1;
}

.sec05-ttl {
  padding-right: 50px;
  text-align: center;
  margin-bottom: 50px;
}

.sec05-list .single+.single {
  margin-top: 20px;
}

.sec06 {
  background: url("../images/sec06_bg_pc.png") top center no-repeat;
  padding-top: 80px;
  margin-bottom: 100px;
}

.sec06-ttl {
  text-align: center;
  margin-bottom: 50px;
}

.sec06-point {
  margin-bottom: 100px;
}

.sec06-point .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  gap: 60px;
}

.sec06-point .inlayout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.sec06-point .inlayout .l-img {
  width: min(100%, 534px);
}

.sec06-point .inlayout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec06-point .inlayout .l-desc.top01 {
  padding-top: 93px;
}

.sec06-point .inlayout .l-desc.top02 {
  padding-top: 64px;
}

.sec06-point .inlayout .num {
  margin-bottom: 35px;
}

.sec06-point .inlayout .l-ttl {
  font: 3.6rem/2 var(--font01);
  margin-bottom: 50px;
}

.sec06-point .inlayout .l-txt {
  font-size: 2.2rem;
}

.sec06-point .inserif {
  border: 3px solid #0E0D0D;
  border-radius: 10px;
  background-color: #fff;
  padding: 50px;
  position: relative;
  margin-top: 50px;
}

.sec06-point .inserif .effect {
  position: absolute;
  top: -46px;
  right: 32px;
  z-index: 1;
}

.sec06-point .inserif .mark {
  position: absolute;
  top: -48px;
  left: 87px;
  z-index: 1;
}

.sec06-point .inserif .mark::before {
  background: #fff;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 90%;
  z-index: -1;
}

.sec06-point .inbox {
  background: #FFE9D6;
  border-radius: 10px;
  font-size: 1.5rem;
  padding: 50px 80px 40px;
  margin-top: 30px;
}

.sec06-point .inbox .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff));
  background: linear-gradient(transparent 60%, #fff 60%);
  font: 2.5rem / 1.8 var(--font01);
}

@media screen and (max-width: 800px) {
  .sec06-point .inbox .marker {
    font-size: 2.0rem;
  }
}

.sec06-point .inbox .list {
  display: grid;
  gap: 5px;
  margin-top: 30px;
}

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

.sec06-point .inbox .list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid #FF983C;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 7px;
}

.sec07 {
  background: url("../images/sec07_bg.png") top center no-repeat;
  padding-top: 32px;
  position: relative;
  margin-bottom: 150px;
}

.sec07::after {
  background: #FFFF9D;
  content: "";
  display: block;
  position: absolute;
  top: 427px;
  left: 0;
  height: 680px;
  width: 100%;
  z-index: -1;
}

.sec07-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}

.sec07-ttl .en {
  position: absolute;
  top: -80px;
  right: 90px;
  z-index: 1;
}

.sec07-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 35px 1fr 35px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 35px;
  position: relative;
  margin-bottom: 80px;
}

.sec07-bg-sp {
  position: relative;
}

.sec07-target {
  text-align: center;
  margin-bottom: 50px;
}

.sec07-target .txt01 {
  background: #FFFF3C;
  border-radius: 100px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: 2.7rem/1.5 var(--font01);
  height: 67px;
  margin: 0 auto 10px;
  width: min(292px, 100%);
}

.sec07-target .txt02 {
  color: #000;
  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;
  font: 5.4rem/1.5 var(--font01);
  gap: 15px;
  margin-bottom: 40px;
}

.sec07-target .txt02::before,
.sec07-target .txt02::after {
  background: url("../images/sec07_slash.svg") center/cover no-repeat;
  content: "";
  display: block;
  height: 38px;
  width: 34px;
}

.sec07-target .txt02::after {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.sec07-target .img01 {
  margin-bottom: 80px;
}

.sec07-target .img02 {
  position: relative;
  margin-bottom: 80px;
}

.sec07-target .img02 .intxt {
  font-size: 2.2rem;
  position: absolute;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: left;
}

.sec07-banner {
  background: #FFFF9D;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 73px;
  padding: 60px;
}

.sec07-banner .l-desc {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec07-banner .l-img {
  width: min(100%, 320px);
}

.sec07-banner .inlogo {
  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;
  gap: 0 40px;
}

.sec07-banner .inlogo .txt {
  font: 2.7rem/1 var(--font01);
}

.sec07-banner .intxt {
  border-top: 1px solid #000;
  margin-top: 40px;
  padding-top: 40px;
}

.sec07-fukidashi {
  background-color: #E1F9F7;
  border-radius: 10px;
  padding: 1px 250px 60px 90px;
  margin-top: 140px;
  position: relative;
}

.sec07-fukidashi .fukidashi {
  margin: -80px 0 0;
}

.sec07-fukidashi .fukidashi-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
}

@media screen and (max-width: 800px) {
  .sec07-fukidashi {
    padding: 1px 15px 45px 15px;
    margin-top: 60px;
  }

  .sec07-fukidashi .fukidashi {
    margin: -20px 0 0;
  }

  .sec07-fukidashi .fukidashi-img {
    bottom: -70px;
    right: -10px;
    width: 100px;
  }
}

.sec08 {
  background: url("../images/sec08_bg_pc.png") top 40px center no-repeat #FFDEDF;
  padding: 150px 0;
}

.sec08-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 0 80px;
  margin-bottom: 50px;
}

.sec08-layout .l-img {
  position: relative;
  width: min(100%, 468px);
}

.sec08-layout .l-img .en {
  font: 10rem/1 var(--font02);
  letter-spacing: 0;
  position: absolute;
  left: -70px;
  bottom: 70px;
  z-index: 1;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  white-space: nowrap;
}

.sec08-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec08-layout .l-ttl {
  font: 3.8rem/1.5 var(--font01);
  margin-bottom: 50px;
}

.sec08-layout .sub-ttl {
  margin-bottom: 50px;
}

.sec08-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.sec09 {
  background: url("../images/sec09_bg_pc.png") top center no-repeat;
  padding: 230px 0 100px;
  position: relative;
}

.sec09-ttl {
  text-align: center;
  margin-bottom: 130px;
  position: relative;
}

.sec09-ttl .en {
  position: absolute;
  top: -150px;
  left: calc(50% - 450px);
  z-index: 1;
}

.sec09-types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}

.sec09-types .single {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  -ms-grid-row-span: 7;
  grid-row: span 7;
  gap: 0;
}

.sec09-types .single.type02 .single-img .en {
  top: auto;
  left: auto;
  right: -64px;
  bottom: -28px;
}

.sec09-types .single.type02 .single-box .box-ttl01 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F8BCBD));
  background: linear-gradient(transparent 60%, #F8BCBD 60%);
}

.sec09-types .single.type02 .list-item dt {
  background: #F8BCBD;
}

.sec09-types .single-img {
  position: relative;
  margin-bottom: 30px;
}

.sec09-types .single-img .en {
  position: absolute;
  top: -90px;
  left: -80px;
  z-index: 1;
}

.sec09-types .single-box {
  border: 25px solid transparent;
  /* 枠の太さを設定 */
  -o-border-image: url("../images/cutborder_half.png") 25 25 25 25 fill;
  border-image: url("../images/cutborder_half.png") 25 25 25 25 fill;
  /* 画像パスとスライス値を設定 */
  border-image-slice: 25 25 25 25;
  /* 四隅のサイズを固定 */
  border-image-repeat: stretch;
  /* 辺を伸縮 */
  background: #fff;
  padding: 25px;
  text-align: center;
  margin-bottom: 60px;
}

.sec09-types .single-box .box-ttl01 {
  font: 4.7rem/1.8 var(--font01);
}

.sec09-types .single-box .box-ttl01 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #A0E0DB));
  background: linear-gradient(transparent 60%, #A0E0DB 60%);
  padding: 0 10px;
}

.sec09-types .single-box .box-ttl02 {
  font: 2.7rem/1.8 var(--font01);
}

.sec09-types .single-box .box-ttl03 {
  -webkit-text-stroke: 1.5px #000;
  color: #fff;
  font: 5rem/1.8 var(--font01);
  margin-bottom: 15px;
}

.sec09-types .single-box .box-ttl03 span {
  border-bottom: 3px dotted #000;
}

.sec09-types .single-list {
  margin-top: 60px;
}

.sec09-types .list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}

.sec09-types .list-item+.list-item {
  margin-top: 30px;
}

.sec09-types .list-item .l-img {
  width: min(100%, 169px);
}

.sec09-types .list-item .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec09-types .list-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}

.sec09-types .list-time dt {
  background: #A0E0DB;
  border-radius: 5px;
  font-family: var(--font01);
  padding: 1px 15px;
}

.sec10 {
  background: #FFFF9D;
  padding: 95px 0 140px;
  position: relative;
}

.sec10::after {
  background: url("../images/sec10_bg.png") bottom center no-repeat;
  content: "";
  display: block;
  height: 1967px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}

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

.sec10-subttl {
  font: 3rem/1.5 var(--font01);
  text-align: center;
  margin-top: 8px;
}

.sec10-types {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 36px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 50px;
  position: relative;
  z-index: 2;
}

.sec10-types .single {
  background: #fff;
  border-radius: 10px;
  padding: 50px 30px 45px;
}

.sec10-types .single.type02 .l-ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F8BCBD));
  background: linear-gradient(transparent 60%, #F8BCBD 60%);
}

.sec10-types .l-ttl {
  font: 4.7rem/1.5 var(--font01);
  text-align: center;
  margin-bottom: 20px;
}

.sec10-types .l-ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #A0E0DB));
  background: linear-gradient(transparent 60%, #A0E0DB 60%);
  padding: 0 10px;
}

.sec10-types .sub-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: 2.8rem/1.5 var(--font01);
  height: 3em;
  text-align: center;
  margin-bottom: 40px;
}

.sec10-types .l-img {
  text-align: center;
}

.sec11 {
  background: url("../images/sec11_bg_pc.png") top center no-repeat;
  padding: 130px 0 0;
  position: relative;
}

.sec11-ttl {
  text-align: center;
  margin-bottom: 80px;
}

.sec11-point {
  margin-bottom: 100px;
}

.sec11-point .point-ttl {
  color: #AD99D0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.sec11-point .point-ttl .txt {
  font: 3.8rem/1.5 var(--font01);
}

.sec11-point .point-ttl .txt span {
  border-bottom: 4px dotted #AD99D0;
  display: inline-block;
  padding-bottom: 15px;
}

.sec11-point .point-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.sec11-point .point-layout .l-img {
  width: min(100%, 367px);
}

.sec11-point .point-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec11-card {
  margin-top: 60px;
}

.sec11-card .card-ttl {
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  font: 3.4rem/1.5 var(--font01);
  gap: 20px;
  margin-bottom: 80px;
}

.sec11-card .card-ttl::before,
.sec11-card .card-ttl::after {
  background: url("../images/sec07_slash.svg") center/cover no-repeat;
  content: "";
  display: block;
  height: 38px;
  margin-top: 20px;
  width: 34px;
}

.sec11-card .card-ttl::after {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.sec11-card .card-ttl .colored {
  color: #AD99D0;
}

.sec11-card .card-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sec11-card .card-list li {
  background: #E4DEEF;
  border-radius: 10px;
  font-size: 1.6rem;
  padding: 45px 20px 20px;
  position: relative;
}

.sec11-card .card-list li .num {
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.sec11-card .card-list .list-ttl {
  color: #AD99D0;
  font: 2.8rem/1.5 var(--font01);
  text-align: center;
  margin-bottom: 25px;
}

.sec11-word {
  background: #E6E0F1;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 15px;
  padding: 10px 25px;
  margin: 10px 0 15px;
}

.sec11-word li {
  background: url("../images/sec11_word_icon.svg") center left no-repeat;
  font-family: var(--font01);
  padding-left: 35px;
  min-height: 25px;
}

.sec11-point-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 52px;
  margin-top: 60px;
}

.sec11-point-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.sec11-point-layout.reverse .l-ttl {
  margin-left: 0;
  margin-right: -5em;
  text-align: left;
}

.sec11-point-layout.reverse .l-ttl::before {
  right: auto;
  left: 0;
}

.sec11-point-layout .l-img {
  width: 50%;
}

.sec11-point-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.sec11-point-layout .l-ttl {
  color: #AD99D0;
  font: 6rem/1.5 var(--font01);
  text-align: right;
  position: relative;
  margin-bottom: 30px;
  margin-left: -5em;
}

.sec11-point-layout .l-ttl::before {
  background: #AD99D0;
  content: "";
  display: block;
  position: absolute;
  bottom: 10px;
  right: 0;
  height: 5px;
  width: 580px;
  z-index: 1;
}

.sec11-point-skill {
  margin: 40px 0 50px;
}

.sec11-point-skill .intxt {
  font: 2.8rem/1.5 var(--font01);
  text-align: center;
  margin-top: 15px;
}

.sec11-point-txt {
  margin: 60px 0;
}

#sec11_slider {
  position: relative;
}

#sec11_slider .splide__slide {
  background: #E6E0F1;
  border-radius: 5px;
  padding: 35px 20px 30px;
  position: relative;
}

#sec11_slider .splide__slide .slide-img {
  margin: 0 auto 20px;
  width: min(100%, 193px);
}

#sec11_slider .splide__slide .job {
  background: #FF983C;
  color: #fff;
  font: 2rem/1.6 var(--font03);
  text-align: center;
  margin: 0 auto 15px;
  width: 200px;
}

#sec11_slider .splide__slide .times {
  background: #fff;
  border: 1px solid;
  border-radius: 50px;
  color: #FF983C;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto 20px;
  width: 200px;
}

#sec11_slider .splide__slide .slide-ttl {
  font: 2.4rem/1.6 var(--font01);
  text-align: center;
  margin-bottom: 15px;
}

#sec11_slider .splide__arrows .splide__arrow--prev {
  left: -22px;
}

#sec11_slider .splide__arrows .splide__arrow--next {
  right: -22px;
}

.sec11-recruit {
  padding: 55px 0 100px;
  position: relative;
}

.sec11-recruit::before {
  background: #5CC9C1;
  content: "";
  display: block;
  height: 115px;
  top: -115px;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.sec11-recruit::after {
  background: #5CC9C1;
  content: "";
  display: block;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.sec11-recruit .sec11-recruit-box {
  background: #fff;
  border-radius: 10px;
  border: 2px solid #000;
  padding: 45px 50px;
  position: relative;
  text-align: center;
}

.sec11-recruit .sec11-recruit-box .clip {
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}

.sec11-recruit .sec11-recruit-box .box-ttl {
  margin-bottom: 35px;
  text-align: center;
}

.sec11-recruit .sec11-recruit-box .colored {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(70%, #FFFF3C), color-stop(70%, transparent));
  background: linear-gradient(transparent 30%, #FFFF3C 70%, transparent 70%);
  color: #f00;
  font-size: 2.8rem;
  padding: 0 0.2em;
}

.sec12 {
  background: url("../images/sec12_bg.png") center no-repeat;
  padding: 60px 0 100px;
  margin-top: 100px;
}

.sec12-ttl {
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

.sec12-ttl .en {
  position: absolute;
  top: -85px;
  right: 50px;
  z-index: 1;
}

.sec12-box {
  margin: auto;
  position: relative;
  width: min(100%, 800px);
}

.sec12-box .box-img {
  position: absolute;
  right: -400px;
  bottom: 0;
  z-index: 1;
}

.sec12-box .box-ttl {
  background: #5CC979;
  border-radius: 30px 30px 0 0;
  padding: 15px 30px;
  font: 2.3rem/1.5 var(--font03);
  letter-spacing: 0;
  text-align: center;
}

.sec12-box .inner {
  border: 2px solid #000;
  border-top: none;
  border-radius: 0 0 30px 30px;
  padding: 10px 30px 40px;
}

.sec12-box .box-list li {
  background: url("../images/sec12_list_icon.svg") top 18px left no-repeat;
  border-bottom: 2px dotted #000;
  font: 2rem/2 var(--font01);
  padding: 15px 0 15px 50px;
}

.sec12-box .box-txt {
  margin: 40px auto 0;
  width: min(100%, 680px);
}

.sec13 {
  background: url("../images/sec13_bg.png") top center no-repeat;
  padding: 30px 0 0;
  margin: 25px auto 200px;
}

.sec13-ttl {
  padding-right: 30px;
  text-align: center;
  margin-bottom: 85px;
}

.sec13-table {
  border: 2px solid #000;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.sec13-table tr,
.sec13-table td {
  border: 2px solid #000;
}

.sec13-table th {
  background: #FFE9D6;
  vertical-align: top;
  font-family: var(--font01);
  padding: 40px;
}

.sec13-table td {
  padding: 40px;
}

.sec13-table .checked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.sec13-table .checked img {
  vertical-align: baseline;
}

.sec13-table .checked img+span {
  margin-left: 8px;
}

.sec13-table .checked .lined {
  text-decoration: line-through;
}

.sec14 {
  background: #FFFF9D;
  padding: 150px 0 100px;
  position: relative;
}

.sec14 .sec14-ttl {
  position: absolute;
  top: -108px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.t_slider {
  position: relative;
}

.t_slider .splide__arrows .splide__arrow {
  background: none;
  top: 0;
  bottom: 0;
  margin: auto;
}

.t_slider .splide__arrows .splide__arrow svg {
  opacity: 0;
}

.t_slider .splide__arrows .splide__arrow--prev {
  border-top: 1px solid;
  border-left: 1px solid;
  border-color: #333;
  border-radius: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 20px;
  width: 20px;
  left: -35px;
}

.t_slider .splide__arrows .splide__arrow--next {
  border-top: 1px solid;
  border-left: 1px solid;
  border-color: #333;
  border-radius: 0;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  height: 20px;
  width: 20px;
  right: -35px;
}

.t_slider .splide__pagination {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 0;
  bottom: -15px;
  z-index: 999;
}

.t_slider .splide__pagination .splide__pagination__page {
  background: #fff;
  border-radius: 0;
  height: 5px;
  margin: 0;
  width: 25px;
}

.t_slider .splide__pagination .splide__pagination__page.is-active {
  background: #3E3A39;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.t_slider .splide__pagination li+li {
  margin-left: 10px;
}

.t_slider .splide__slide:not(:last-child) {
  margin-right: 32px;
}

.t_slider .txt {
  font-size: 1.4rem;
}

@media screen and (max-width: 800px) {
  .t_slider .splide__arrows .splide__arrow--prev {
    left: -15px;
  }

  .t_slider .splide__arrows .splide__arrow--next {
    right: -15px;
  }
}

.t-post .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px solid #DFDFDF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  padding: 10px 0;
  position: relative;
}

.t-post .single:hover {
  opacity: 0.6;
}

.t-post .single:hover .l-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.t-post .single:hover .l-ttl {
  text-decoration: underline;
}

.t-post .single time {
  color: var(--color01);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.t-post .single .l-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font: 1.5rem/1.5 var(--font01);
}

@media screen and (max-width: 800px) {
  .t-post .single {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 5px 15px;
    padding: 10px 0;
  }

  .t-post .single time {
    font-size: 1.6rem;
  }
}

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

.t-post02 .fill {
  grid-column: 1/-1;
}

.t-post02 .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: relative;
}

.t-post02 .single:hover {
  opacity: 0.6;
}

.t-post02 .single:hover .l-img img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.t-post02 .single .list-img {
  border: 1px solid var(--color01);
  overflow: hidden;
  height: 164px;
  margin-bottom: 15px;
}

.t-post02 .single .list-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  width: 100%;
}

.t-post02 .single .time {
  color: var(--color01);
  font-size: 1.3rem;
  margin-bottom: 3px;
}

.t-post02 .single .l-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-family: var(--font01);
  overflow: hidden;
  margin-bottom: 10px;
}

.t-post02 .single .category {
  color: #A88962;
  display: inline-block;
  font-size: 1.1rem;
  margin: 0 0.5em 5px 0;
}

@media screen and (max-width: 800px) {
  .t-post02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    margin-bottom: 30px;
  }

  .t-post02 .single .time {
    font-size: 1.3rem;
  }

  .t-post02 .single .l-ttl {
    font-size: 1.4rem;
  }

  .t-post02 .single {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 260px;
    flex: 0 0 260px;
  }

  .t-post02 .single+.single {
    margin-left: 20px;
  }
}

#fixbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

#fixbtn .btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  line-height: 1;
}

#fixbtn .btn:hover {
  opacity: 0.6;
}

.contact-box {
  background: var(--color02);
  padding: 50px 30px;
  position: relative;
  margin-inline: auto;
  max-width: 900px;
}

.contact-box .box-ttl {
  border-bottom: 1px solid var(--color01);
  padding-bottom: 10px;
  display: table;
  font-size: 1.8rem;
  font-family: var(--font01);
  margin: 0 auto 25px;
  text-align: center;
}

.contact-box .innumbers {
  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;
  gap: 15px 20px;
}

.contact-box .inlayout {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px 40px;
  position: relative;
}

.contact-box .inlayout .item:not(:last-child) {
  border-right: 2px dotted #707070;
}

.contact-box .item {
  text-align: center;
}

.contact-box .tel {
  margin-bottom: 5px;
}

.contact-box .dl-opentime {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 800px) {
  .contact-box .innumbers {
    font-size: 2rem;
    display: -ms-grid;
    display: grid;
  }

  .contact-box .inlayout {
    display: block;
  }

  .contact-box .inlayout .item:not(:last-child) {
    border: none;
  }

  .contact-box .inlayout .item+.item {
    margin-top: 1.5em;
  }
}

.contact-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
}

.contact-list .item {
  border: 1px solid;
  padding: 20px 45px;
  text-align: center;
}

.contact-list .list-ttl {
  border-bottom: 1px solid;
  font: 1.8rem/1.5 var(--font01);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .contact-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact-list .item {
    padding: 20px 30px;
  }

  .contact-list .list-ttl {
    font-size: 1.6rem;
  }
}

.schedule-dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 15px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 0 15px;
}

.schedule-dl dt {
  border: 1px solid;
  font-size: 1rem;
  padding: 0 3px;
  text-align: center;
  margin-top: 3px;
}

.schedule-dl dd {
  font-size: 1.4rem;
}

.footer {
  text-align: center;
  position: relative;
}

.copyright {
  letter-spacing: 0;
  line-height: 1.5;
  margin: 25px auto;
}

.fixed-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin: auto;
  z-index: 90;
  width: 50px;
}

.fixed-menu .item {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.fixed-menu .item:hover {
  opacity: 0.6;
}

.fixopen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  left: 0;
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
  width: 450px;
}

.fixopen:hover {
  left: -400px;
}

.fixopen .menu-ttl {
  background: var(--color01);
  border-radius: 5px 0 0 5px;
  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;
  width: 50px;
}

.fixcontent {
  background: #fff;
  padding: 20px 25px 20px 10px;
  width: 400px;
}

.fixcontent .l-em {
  color: #51B1ED;
  font: 2rem/1.5 var(--font01);
  text-align: center;
}

.fixcontent .l-em span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #F5DA40));
  background: linear-gradient(transparent 60%, #F5DA40 60%);
  padding: 0 0.3em;
}

.fixcontent .fix-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin: 15px auto 20px;
}

.fixcontent .fix-btns a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  line-height: 1;
}

.fixcontent .fix-btns a:hover {
  opacity: 0.6;
}

#fixnavi_sp {
  display: none;
}

.map,
.s-map,
.youtube,
.u-map,
.f-map,
.t-map {
  height: 400px;
}

.map iframe,
.s-map iframe,
.youtube iframe,
.u-map iframe,
.f-map iframe,
.t-map iframe {
  height: 100%;
  width: 100%;
}

.t-map {
  height: 360px;
}

.f-map {
  height: 450px;
}

.u-map {
  height: 400px;
}

.youtube {
  height: 400px;
}

.s-map {
  height: 150px;
  margin-bottom: 5px;
}

#entry {
  position: fixed;
  right: 3%;
  bottom: 50px;
  z-index: 99;
}

#entry a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

#entry a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  #entry {
    right: 5%;
    bottom: 15px;
    width: 70px;
  }
}

.grecaptcha-badge {
  margin-bottom: 180px;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .grecaptcha-badge {
    margin-bottom: 0;
  }
}

/*------------
下層レイアウト
--------------*/
#under {
  line-height: 2;
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  word-break: break-all;
  z-index: 1;
}

#under p+p {
  margin-top: 1em;
}

#under .noradius img {
  border-radius: 0;
}

@-webkit-keyframes slideX {
  0% {
    left: 5px;
  }

  50% {
    left: -5px;
  }

  100% {
    left: 5px;
  }
}

@keyframes slideX {
  0% {
    left: 5px;
  }

  50% {
    left: -5px;
  }

  100% {
    left: 5px;
  }
}

.hero_space {
  position: relative;
}

.page-ttl {
  height: 250px;
  position: relative;
  padding: 0 5%;
  width: 100%;
  z-index: 1;
}

.page-ttl::before {
  background: #DBE6F4;
  border-radius: 30px 0 0 0;
  content: "";
  display: block;
  height: 100%;
  max-width: calc(100% - 100px);
  width: 98%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.page-ttl .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  height: 100%;
  text-align: center;
}

.page-ttl .jp {
  font: 4.5rem/1.5 var(--font01);
  position: relative;
}

@media screen and (max-width: 800px) {
  .page-ttl {
    height: 200px;
  }

  .page-ttl::before {
    max-width: none;
    width: 98%;
  }

  .page-ttl .inner {
    padding-bottom: 0;
  }

  .page-ttl .jp {
    font-size: 3rem;
  }
}

.breadcrumb {
  font-size: 1.4rem;
  line-height: 1;
  padding: 15px 20px;
  position: relative;
  z-index: 1;
}

.breadcrumb ul {
  width: 100%;
}

.breadcrumb ul li {
  display: inline-block;
}

.breadcrumb ul li+li:before {
  content: ">";
  margin: 0 0.5em;
}

.breadcrumb a {
  color: inherit;
}

#main {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#main p+p {
  margin-top: 1.5em;
}

.column2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  padding-left: 60px;
  padding-right: 60px;
  max-width: 1144px;
  margin: auto;
  gap: 40px;
  width: 90%;
}

.column2 .contents {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.side-navi {
  margin-bottom: 30px;
  width: 240px;
}

@media screen and (max-width: 800px) {
  .side-navi {
    margin: 30px auto;
    width: 100%;
  }
}

.side-box01 {
  background: #fff;
  border: 1px solid #ddd;
  border-top: 4px solid var(--color01);
  position: sticky;
  top: 120px;
  margin-bottom: 20px;
}

.side-box01 .inner {
  padding: 30px 32px;
}

.side-box01 .inner a {
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.side-box01 .inner a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .side-box01 {
    position: static;
  }
}

.side-ttl {
  border-bottom: 1px solid var(--color01);
  color: #360300;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 15px 30px;
  text-align: left;
}

.side-list01>li {
  padding-left: 1em;
  position: relative;
}

.side-list01>li::before {
  background: var(--color01);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 5px;
}

.side-list01 ul {
  font-size: 1.4rem;
  padding-top: 5px;
  line-height: 1.5;
}

.side-list01 ul li {
  padding-left: 1em;
  position: relative;
}

.side-list01 ul li::before {
  background: #333;
  content: "";
  width: 6px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 12px;
}

.side-list01 ul li a:hover {
  text-decoration: underline;
}

.fade-in {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in.is-action {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.fade-in-right {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
  -webkit-transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 2s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 2s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fade-in-right.is-action {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.rotate {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 0;
  -webkit-transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: 2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rotate.is-action {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  opacity: 1;
}

.ta span {
  display: inline-block;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  opacity: 0;
}

.ta.is-action span {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.fade-in-list>li {
  will-change: transform;
  opacity: 0;
  -webkit-transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  transition: 2.5s cubic-bezier(0.19, 1, 0.435, 0.99);
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  opacity: 0;
}

.fade-in-list>li:nth-of-type(1) {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.fade-in-list>li:nth-of-type(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.fade-in-list>li:nth-of-type(3) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fade-in-list>li:nth-of-type(4) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}

.fade-in-list>li:nth-of-type(5) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.fade-in-list>li:nth-of-type(6) {
  -webkit-transition-delay: 0.75s;
  transition-delay: 0.75s;
}

.fade-in-list.is-action>li {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

/*------------
下層パーツ
--------------*/
.u-layout,
.l-flexL_small,
.l-flexL_auto,
.l-flexL,
.u-layout_r,
.l-flexR_small,
.l-flexR_auto,
.l-flexR {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.u-layout .l-img,
.l-flexL_small .l-img,
.l-flexL_auto .l-img,
.l-flexL .l-img,
.u-layout_r .l-img,
.l-flexR_small .l-img,
.l-flexR_auto .l-img,
.l-flexR .l-img {
  text-align: center;
  margin: 0 40px 0 0;
}

.u-layout .l-desc,
.l-flexL_small .l-desc,
.l-flexL_auto .l-desc,
.l-flexL .l-desc,
.u-layout_r .l-desc,
.l-flexR_small .l-desc,
.l-flexR_auto .l-desc,
.l-flexR .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-layout_r,
.l-flexR_small,
.l-flexR_auto,
.l-flexR {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.u-layout_r .l-img,
.l-flexR_small .l-img,
.l-flexR_auto .l-img,
.l-flexR .l-img {
  text-align: center;
  margin: 0 0 0 40px;
}

.l-imgL .l-img,
.l-imgL_auto .l-img {
  margin: 0 40px 1.5rem 0;
  float: left;
  text-align: center;
  width: 40%;
}

.l-imgL_auto .l-img {
  width: auto;
}

.l-imgR .l-img {
  float: right;
  margin: 0 0 1.5rem 40px;
  text-align: center;
  width: 40%;
}

.l-flexL .l-img {
  width: 40%;
}

.l-flexL_auto .l-img {
  width: auto;
}

.l-flexL_small .l-img {
  width: 25%;
}

.l-flexR .l-img {
  width: 40%;
}

.l-flexR_auto .l-img {
  width: auto;
}

.l-flexR_small .l-img {
  width: 25%;
}

.img02 img+img {
  margin-left: 10px;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.u-flex .item {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.post-h1 {
  font: 600 3.4rem/1.5 var(--font01);
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .post-h1 {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
}

.u-h2,
.postdata h2 {
  font: 3.2rem/1.5 var(--font01);
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.u-h2.left,
.postdata h2.left {
  text-align: left;
}

@media screen and (max-width: 800px) {

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

.u-h3,
.postdata h3,
.list-post-type01 .list-ttl {
  border-bottom: 1px solid #5687D1;
  font: 2.8rem/1.5 var(--font01);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {

  .u-h3,
  .postdata h3,
  .list-post-type01 .list-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

.u-h4,
.postdata h4 {
  font: 2rem/1.5 var(--font01);
  padding-left: 18px;
  position: relative;
  margin-bottom: 20px;
}

.u-h4::before,
.postdata h4::before {
  background: #5687D1;
  content: "";
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  height: 8px;
  width: 8px;
}

@media screen and (max-width: 800px) {

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

table th,
table td {
  font-weight: inherit;
}

.table-style01,
.postdata table {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.6;
  width: 100%;
}

.table-style01 th,
.postdata table th {
  background: var(--color01);
  border: 1px solid #D1D1D1;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: left;
}

.table-style01 td,
.postdata table td {
  border: 1px solid #D1D1D1;
  padding: 12px 10px;
  vertical-align: top;
  word-break: break-all;
}

.table-style01.center_ttl th,
.postdata table.center_ttl th {
  text-align: center;
  vertical-align: middle;
}

.table-style01.th-middle th,
.postdata table.th-middle th {
  vertical-align: middle;
}

.table-style01.td-middle td,
.postdata table.td-middle td {
  vertical-align: middle;
}

.table-style01.price td,
.postdata table.price td {
  text-align: right;
}

@media screen and (max-width: 800px) {
  .table-style-scroll {
    overflow: auto;
    width: 100%;
  }

  .table-style-scroll::before {
    display: block;
    content: "横にスクロールできます。";
  }

  .table-style-scroll .table-style02,
  .table-style-scroll .table-style03 {
    width: 200%;
  }
}

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

@media screen and (max-width: 800px) {
  .table-scroll-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }

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

.table-style02 {
  background: #fff;
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.6;
  width: 100%;
}

.table-style02.times td {
  text-align: center;
}

.table-style02 th {
  background: var(--color01);
  border: 1px solid #D1D1D1;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  color: #fff;
  padding: 12px 10px;
  vertical-align: middle;
  text-align: left;
}

.table-style02 td {
  border: 1px solid #D1D1D1;
  padding: 12px 10px;
  vertical-align: top;
  word-break: break-all;
}

.table-style02.price td {
  text-align: right;
}

.table-style02 .pick-bg {
  background: #FBEAEA;
}

.table-style02 .first th,
.table-style02 .first th:first-child {
  background: var(--color01);
  color: #fff;
  text-align: center;
}

.table-style02 th {
  background: #F0F5FA;
  border-color: #AFC8E3;
  color: var(--color_text);
  text-align: center;
}

.table-style02 td,
.table-style02 td {
  vertical-align: middle;
}

.table-style03 {
  border-collapse: collapse;
  table-layout: fixed;
  line-height: 1.6;
  width: 100%;
}

.table-style03 th {
  border-bottom: 2px solid var(--color01);
  font-family: var(--font01);
  padding: 12px 10px 12px 0;
  vertical-align: middle;
  text-align: left;
}

.table-style03 td {
  border-bottom: 2px solid #E6E6E6;
  padding: 12px 10px;
  vertical-align: top;
  word-break: break-all;
}

.table-style-case th {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  color: #333 !important;
  padding: 20px 15px !important;
  position: relative;
}

.table-style-case th::after {
  background: #ccc;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  margin: auto;
  width: 1px;
}

.table-style-case td {
  background: none !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  color: #333 !important;
  padding: 20px 15px !important;
}

.table-style-case table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .table-style-case th {
    font-size: 1.4rem;
    padding: 15px 10px !important;
    width: 50% !important;
  }

  .table-style-case td {
    padding: 15px 10px !important;
  }
}

.u-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 1em;
}

.u-btns.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 800px) {
  .u-btns {
    display: -ms-grid;
    display: grid;
  }

  .u-btns.col2 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.u-btn {
  background: url("../images/share/arrow_right.svg") right 12px center/auto no-repeat;
  border: 1px solid var(--color01);
  color: var(--color01);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font: 1.6rem/1.5 var(--font01);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  padding: 15px 50px;
  position: relative;
  text-align: center;
  width: auto;
  min-width: 180px;
  z-index: 1;
}

.u-btn:hover {
  background: url("../images/share/arrow_right_w.svg") right 12px center/auto no-repeat var(--color01);
  color: #fff;
}

.u-btn::after {
  border: 1px solid #A88962;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 3px;
  left: 3px;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .u-btn {
    font-size: 1.6rem;
    padding: 13px 20px;
    width: 100%;
  }
}

.btn_outer {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/icon_outer.svg") right center no-repeat;
  border-bottom: 1px solid;
  display: inline-block;
  font: 1.8rem/1.5 var(--font01);
  padding: 15px 35px 15px 0;
  position: relative;
  z-index: 2;
}

.btn_outer:hover {
  opacity: 0.6;
}

.u-btn-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 4%;
}

.u-btn-banner a {
  line-height: 1;
  display: block;
  width: 48%;
}

@media screen and (max-width: 800px) {
  .u-btn-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 15px 0;
  }

  .u-btn-banner a {
    width: 100%;
  }
}

.pagelink {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px 4%;
}

.pagelink.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.pagelink.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.pagelink li a {
  background: #E0FAF5;
  border: 1px solid #E0FAF5;
  border-radius: 25px;
  color: #fff;
  font: 16px/1.5 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  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;
  padding: 14px;
  position: relative;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease;
}

.pagelink li a::after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  color: #fff;
  content: "";
  display: block;
  height: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
  -webkit-transition: border-color 0.5s ease;
  transition: border-color 0.5s ease;
  width: 10px;
}

.pagelink li a:hover {
  background: #fff;
  color: #E0FAF5;
}

.pagelink li a:hover::after {
  border-color: #E0FAF5;
}

@media screen and (max-width: 800px) {
  .pagelink {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .pagelink li a {
    padding: 10px;
    font-size: 16px;
  }

  .pagelink li a::after {
    height: 8px;
    right: 8px;
    width: 8px;
  }

  .pagelink.col2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .pagelink.col3 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.list-anchor-link.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.list-anchor-link li {
  position: relative;
}

.list-anchor-link li:last-child::after {
  display: none;
}

.list-anchor-link li::after {
  background: #A57A47;
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  margin: 0 20px;
  vertical-align: -2px;
}

.list-anchor-link a {
  display: inline-block;
  line-height: 1.5;
  position: relative;
  padding-right: 25px;
}

.list-anchor-link a::before {
  content: "";
  background: url(../images/share/ico_arrow_bottom.svg) no-repeat 0 0/contain;
  height: 5px;
  position: absolute;
  top: 10px;
  right: 0;
  width: 10px;
}

.list-anchor-link a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  .list-anchor-link {
    display: block;
  }

  .list-anchor-link li::after {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.flex-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.flex-center .item+.item {
  margin-left: 1.5em;
}

.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-flex.nowrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
}

.l-flex .item {
  margin: 0 15px 10px 0;
}

.l-flex_2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.l-flex_2 .item-img {
  text-align: center;
  margin-bottom: 15px;
}

.l-flex_2 .item-ttl {
  font-weight: bold;
  margin-bottom: 15px;
}

.l-flex_3,
.l-flex_3_columns {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 30px;
}

.l-flex_3 .item-img,
.l-flex_3_columns .item-img {
  text-align: center;
  margin-bottom: 15px;
}

.l-flex_3 .item-ttl,
.l-flex_3_columns .item-ttl {
  font-weight: bold;
  margin-bottom: 15px;
}

.l-flex_4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-flex_4::before,
.l-flex_4::after {
  content: " ";
  display: block;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 24%;
}

.l-flex_4 .item {
  width: 24%;
}

.l-flex_4 .item:nth-child(n+5) {
  margin-top: 30px;
}

.l-flex_4 .item-img {
  margin-bottom: 10px;
  text-align: center;
}

.l-flex_4 .item-ttl {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0.5em;
  text-align: center;
}

/*------------
下層汎用
--------------*/
.u-em01 {
  font: 2rem/1.5 var(--font01);
  margin-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .u-em01 {
    font-size: 2rem;
  }
}

.u-em02 {
  font-size: 1.8rem;
  font-family: var(--font01);
  margin-bottom: 10px;
}

.u-em02 span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color02)));
  background: linear-gradient(transparent 60%, var(--color02) 60%);
}

@media screen and (max-width: 800px) {
  .u-em02 {
    text-align: left;
    font-size: 1.7rem;
  }
}

.u-em03 {
  margin-bottom: 1.5em;
  position: relative;
}

.u-em03:before {
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  position: absolute;
  bottom: -8px;
  left: 18px;
  z-index: 2;
  height: 10px;
  width: 12px;
}

.u-em03:after {
  background: #333;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  position: absolute;
  bottom: -10px;
  left: 18px;
  z-index: 1;
  height: 10px;
  width: 12px;
}

.u-em03 span {
  border: 1px solid #333;
  border-radius: 20px;
  display: inline-block;
  font: 1.4rem/1.5 var(--font01);
  padding: 8px 15px;
}

.u-gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #EEF5F4));
  background: linear-gradient(transparent 50%, #EEF5F4 50%);
}

.marker span {
  background: #9de56e;
  display: inline-block;
  padding: 0 5px;
}

.boxshadow {
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.06);
}

.imgshadow {
  -webkit-box-shadow: 20px 20px 0 #D9EBB5;
  box-shadow: 20px 20px 0 #D9EBB5;
}

@media screen and (max-width: 800px) {
  .imgshadow {
    -webkit-box-shadow: 10px 10px 0 #D9EBB5;
    box-shadow: 10px 10px 0 #D9EBB5;
  }
}

.fancy-box,
[data-fancybox] {
  cursor: pointer;
}

.data-fancybox-icon {
  display: inline-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.data-fancybox-icon::before {
  background: url("../images/share/icon_zoom.svg") center/22px auto no-repeat #FF7246;
  border-radius: 50%;
  content: "";
  display: block;
  height: 35px;
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 35px;
  z-index: 1;
}

.fancybox__content {
  background: #fff;
}

.l-box {
  border: 1px solid var(--color01);
  padding: 40px;
}

@media screen and (max-width: 800px) {
  .l-box {
    padding: 30px;
  }
}

.l-box01 {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 5%;
  position: relative;
}

.l-box01 .box-ttl {
  font: 600 2rem/1.8 var(--font01);
  margin-bottom: 25px;
}

.l-box01 .indl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}

.l-box01 .indl dt {
  font-weight: bold;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

@media screen and (max-width: 800px) {
  .l-box01 {
    padding: 30px;
  }

  .l-box01 .large-ttl {
    font-size: 2rem;
  }

  .l-box01 .box-ttl {
    font-size: 1.6rem;
  }

  .l-box01 .indl {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .l-box01 .indl dd+dt {
    margin-top: 10px;
  }

  .l-box01 .inlist.col2,
  .l-box01 .inlist.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .l-box01 .inlist .list-ttl {
    font-size: 1.8rem;
  }
}

.l-box02 {
  background: #DBE6F4;
  border: 1px solid #ccc;
  padding: 5%;
  position: relative;
}

.l-box02 .box-ttl {
  font: 2rem/1.8 var(--font01);
  text-align: center;
  margin-bottom: 25px;
}

@media screen and (max-width: 800px) {
  .l-box02 {
    padding: 30px;
  }

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

.l-box03 {
  background: #F8EAEC;
  padding: 40px;
}

.l-box03.white {
  background: #fff;
  color: inherit;
}

.l-box03.white .box-ttl {
  background-image: url("../images/share/caution_c.svg");
  color: var(--color01);
}

.l-box03.white .list-disc li::before {
  background: var(--color01);
}

.l-box03 .box-ttl {
  background: url("../images/share/caution.svg") top 3px left/25px auto no-repeat;
  font: 2rem/1.5 var(--font01);
  padding-left: 35px;
  margin-bottom: 20px;
}

.l-box03 .list-disc li::before {
  background: #fff;
}

.l-box04 {
  background: #fff;
  border: 1px solid #4D86CE;
  position: relative;
}

.l-box04 .box-ttl {
  background: #4D86CE;
  color: #fff;
  font: 2rem/1.5 var(--font01);
  padding: 20px;
  text-align: center;
}

.l-box04 .inner {
  padding: 50px;
}

@media screen and (max-width: 800px) {
  .l-box04 .box-ttl {
    font-size: 1.8rem;
    padding: 15px;
  }

  .l-box04 .inner {
    padding: 30px;
  }
}

.merit-demerit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px 4%;
}

.merit-demerit .item {
  background: #DBE6F4;
  border-top: 3px solid var(--color01);
  padding: 20px 30px 30px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.merit-demerit .item:last-child {
  border-top-color: #AA8965;
}

.merit-demerit .item:last-child .en {
  color: #AA8965;
}

.merit-demerit .item:last-child .list-disc li::before {
  background: #AA8965;
}

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

.merit-demerit .item-ttl .jp {
  font: 2rem/1.8 var(--font01);
}

.merit-demerit .item-ttl .en {
  color: var(--color01);
  font: 1.6rem/1.8 var(--font01);
  margin-left: 15px;
}

@media screen and (max-width: 800px) {
  .merit-demerit {
    display: block;
  }

  .merit-demerit .item {
    padding: 25px;
    width: 100%;
  }

  .merit-demerit .item+.item {
    margin: 30px auto 0;
  }
}

.t-movie {
  height: 580px;
  margin: auto;
  width: 100%;
}

.t-movie iframe {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .t-movie {
    height: 320px;
  }
}

.u-movie01 {
  height: 400px;
  margin-inline: auto;
  max-width: 800px;
  width: 100%;
}

.u-movie01.small {
  height: 240px;
}

.u-movie01 iframe,
.u-movie01 img {
  height: 100%;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .u-movie01 {
    height: 200px;
  }
}

.u-movie02 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  width: 100%;
}

.u-movie02 video {
  max-width: 100%;
}

.before-after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  margin-bottom: 30px;
}

.before-after .item {
  text-align: center;
  position: relative;
  width: 45%;
}

.before-after .item.noarrow::before {
  display: none;
}

.before-after .item:first-child {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.before-after .item:last-child .item-ttl {
  color: var(--color01);
}

.before-after::before {
  background: var(--color02);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 25px;
  width: 14px;
  margin-bottom: 3em;
}

.before-after.autosize .list-img img {
  height: auto;
  -o-object-fit: none;
  object-fit: none;
}

.before-after .wp-block-image img,
.before-after .list-img img {
  height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.before-after .item-ttl {
  color: #69967C;
  font: 1.7rem/1 var(--font01);
  text-transform: capitalize;
  margin-top: 1em;
}

.before-after .item-ttl::before {
  content: "-";
}

.before-after .item-ttl::after {
  content: "-";
}

@media screen and (max-width: 800px) {
  .before-after {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .before-after .item {
    width: 100%;
  }

  .before-after::before {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 14px;
    width: 25px;
    margin: 30px auto;
  }

  .before-after .list-img img {
    height: 200px;
  }

  .before-after .item-ttl {
    font-size: 1.8rem;
    margin-top: 0.5em;
  }
}

.u-caption {
  font: 2rem/1.5 var(--font01);
}

.u-caption span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(var(--color01), 0.1)));
  background: linear-gradient(transparent 60%, rgba(var(--color01), 0.1) 60%);
}

.gradient03 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(176, 206, 65, 0.5)));
  background: linear-gradient(transparent 60%, rgba(176, 206, 65, 0.5) 60%);
}

/*------------
下層common
--------------*/
.l-style01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.l-style01+.l-style01 {
  margin-top: 80px;
}

.l-style01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.l-style01.reverse .l-img {
  margin: 0 -10% 0 7.5%;
}

.l-style01 .l-img {
  text-align: center;
  margin: 0 7.5% 0 -10%;
  width: 56.64%;
}

.l-style01 .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style01 .num {
  color: #9CA1A2;
  font: 2rem/1.5 var(--font02);
  display: inline-block;
  margin-bottom: 15px;
}

.l-style01 .l-ttl {
  font: 2.5rem/1.5 var(--font01);
  margin-bottom: 30px;
}

.l-style01 .sub-ttl {
  font: 1.8rem/1.5 var(--font01);
  padding-left: 45px;
  position: relative;
  margin-bottom: 30px;
}

.l-style01 .sub-ttl::before {
  background: #333;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 12px;
  left: 0;
  width: 30px;
}

@media screen and (max-width: 800px) {
  .l-style01 {
    display: block;
  }

  .l-style01+.l-style01 {
    margin-top: 60px;
  }

  .l-style01.reverse .l-img {
    margin: 0 auto 30px;
  }

  .l-style01 .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .l-style01 .num {
    font-size: 1.7rem;
  }

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

  .l-style01 .sub-ttl {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}

.l-style02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-style02 .l-img {
  width: 460px;
}

.l-style02 .l-desc {
  background: #FFFBEA;
  background: #fff;
  margin-top: 50px;
  margin-left: -100px;
  padding: 50px 50px 50px 150px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style02 .box-ttl {
  font: 2.4rem/1.5 var(--font01);
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .l-style02 {
    display: block;
  }

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

  .l-style02 .l-desc {
    margin: 30px auto;
    padding: 30px;
  }

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

.u-intro-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
  width: min(98%, 1500px);
}

.u-intro-layout .l-img {
  margin-left: -55px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.u-intro-layout .l-desc {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 60px;
  width: 580px;
  max-width: 50%;
}

.u-intro-layout .l-ttl {
  margin-bottom: 35px;
}

.u-intro-layout .l-ttl .en {
  color: var(--color01);
  font: 2rem/1.5 var(--font02);
  margin-bottom: 8px;
}

.u-intro-layout .l-ttl .jp {
  font: 2.8rem/1.5 var(--font01);
}

@media screen and (max-width: 800px) {
  .u-intro-layout {
    display: block;
    margin-inline: auto;
    width: 100%;
  }

  .u-intro-layout .l-img {
    margin: 0 auto 30px;
  }

  .u-intro-layout .l-desc {
    padding: 30px;
    margin: 30px auto 0;
    width: 90%;
    max-width: none;
  }

  .u-intro-layout .l-ttl {
    margin-bottom: 20px;
  }

  .u-intro-layout .l-ttl .en {
    font-size: 1.6rem;
  }

  .u-intro-layout .l-ttl .jp {
    font-size: 2.2rem;
  }
}

.u-box {
  border-top: 1px solid #DBA18F;
  border-bottom: 1px solid #DBA18F;
  padding: 40px 0 50px;
  position: relative;
}

.u-box::before {
  background: #DBA18F;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  margin: auto;
  width: 90%;
  z-index: 1;
}

.u-box::after {
  background: #DBA18F;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: auto;
  width: 90%;
  z-index: 1;
}

.u-box .box-ttl {
  font: 2.7rem/1.5 var(--font01);
  margin-bottom: 30px;
  text-align: center;
}

.u-box .box-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 42px 1fr 42px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 42px;
  padding: 0 10px;
}

.u-box .box-list .item {
  border: 1px solid #DBA18F;
  font: 1.8rem/1.5 var(--font01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  height: 102px;
}

@media screen and (max-width: 800px) {
  .u-box {
    padding: 30px 0;
  }

  .u-box::before {
    top: 5px;
  }

  .u-box::after {
    bottom: 5px;
  }

  .u-box .box-ttl {
    font-size: 2.2rem;
  }

  .u-box .box-list {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0;
  }

  .u-box .box-list .item {
    font-size: 1.3rem;
    padding: 15px 10px;
    height: auto;
  }
}

.u-post {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.u-post .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  display: block;
  position: relative;
}

.u-post .single:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .u-post {
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 4%;
  }

  .u-post .single {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

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

.u-post02 .fill {
  grid-column: 1/-1;
}

.u-post02 .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  position: relative;
}

.u-post02 .single:hover {
  opacity: 0.6;
}

.u-post02 .l-img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  height: 334px;
  margin-bottom: 1em;
}

.u-post02 .l-img img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.u-post02 .time {
  font-size: 1.3rem;
}

.u-post02 .list-ttl {
  font-size: 1.6rem;
  margin-top: 0.1em;
}

.u-post02 .category {
  background: var(--color01);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 8px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 800px) {
  .u-post02 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .u-post02 .l-img {
    height: 120px;
  }

  .u-post02 .l-img {
    height: 120px;
  }

  .u-post02 .l-img .label {
    font-size: 1.2rem;
  }

  .u-post02 .list-ttl {
    font-size: 1.8rem;
    margin-top: 0.3em;
  }

  .u-post02 .type .category {
    font-size: 1.2rem;
  }

  .u-post02 .list-ttl {
    font-size: 1.6rem;
  }
}

.u-layout01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  position: relative;
}

.u-layout01.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.u-layout01.reverse .l-desc {
  padding-right: 150px;
  padding-left: 50px;
  margin-right: -100px;
  margin-left: 0;
}

.u-layout01 .l-img {
  position: relative;
  width: 45%;
  z-index: 1;
}

.u-layout01 .l-desc {
  background: #fff;
  padding: 55px;
  padding-left: 150px;
  margin: 55px 0 0 -100px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.u-layout01 .l-ttl {
  font: 2.4rem/1.5 var(--font01);
  margin-bottom: 30px;
}

.u-layout01 .sub-ttl {
  font-size: 1.8rem;
  padding-left: 55px;
  position: relative;
  margin-bottom: 30px;
}

.u-layout01 .sub-ttl::before {
  background: var(--color01);
  content: "";
  height: 2px;
  display: block;
  position: absolute;
  top: 1em;
  left: 0;
  width: 30px;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  .u-layout01 {
    display: block;
    padding: 0;
  }

  .u-layout01.reverse .l-desc {
    padding: 7%;
    margin: -50px auto 0;
  }

  .u-layout01 .l-img {
    width: 100%;
  }

  .u-layout01 .l-desc {
    padding: 7%;
    margin: -50px auto 0;
    position: relative;
    z-index: 2;
    width: 90%;
  }

  .u-layout01 .l-ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .u-layout01 .sub-ttl {
    font-size: 1.6rem;
    padding-left: 40px;
    margin-bottom: 15px;
  }

  .u-layout01 .sub-ttl::before {
    width: 25px;
  }
}

.u-layout02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.u-layout02.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.u-layout02.reverse .l-desc {
  margin-left: -68px;
  margin-right: 0;
}

.u-layout02 .l-img {
  -webkit-box-shadow: 20px 20px 0 #EEEBD0;
  box-shadow: 20px 20px 0 #EEEBD0;
  border-radius: 20px 90px 20px 90px;
  position: relative;
  margin-right: -68px;
  overflow: hidden;
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: -1;
}

.u-layout02 .l-desc {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  margin: 110px 0 0 0;
  width: 50%;
  z-index: 1;
}

.u-layout02 .l-ttl {
  font: 2.7rem/1.5 var(--font01);
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 20px;
}

.u-layout02 .l-ttl::before {
  background: #F8A673;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: min(280px, 80%);
}

@media screen and (max-width: 800px) {
  .u-layout02 {
    display: block;
    padding: 0;
  }

  .u-layout02.reverse .l-desc {
    padding: 7%;
    margin: -50px auto 0;
  }

  .u-layout02 .l-img {
    width: 100%;
  }

  .u-layout02 .l-desc {
    padding: 7%;
    margin: -50px auto 0;
    position: relative;
    z-index: 2;
    width: 90%;
  }

  .u-layout02 .l-ttl {
    font-size: 2rem;
  }
}

.u-price {
  font-family: var(--font01);
}

.u-price .single {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 30px;
}

.u-price .single+.single {
  margin-top: 10px;
}

.u-price dd {
  text-align: right;
}

.u-price .caption {
  display: inline-block;
  margin-right: 0.5em;
}

@media screen and (max-width: 800px) {
  .u-price .caption {
    display: block;
    margin: 0 0 5px;
  }
}

.u-banner {
  display: -ms-grid;
  display: grid;
}

.intro-layout {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}

.intro-layout .bg {
  position: absolute;
  top: -100px;
  left: -120px;
  z-index: -1;
}

.intro-layout .inflex {
  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: auto;
  max-width: 1400px;
  width: 94%;
}

.intro-layout .l-img {
  width: 48%;
}

.intro-layout .l-img img {
  border-radius: 8px;
}

.intro-layout .l-desc {
  padding-top: 30px;
  width: 48%;
}

.intro-layout .l-ttl {
  font: 2.5rem/1.5 var(--font01);
  margin-bottom: 40px;
}

@media screen and (max-width: 800px) {
  .intro-layout {
    margin-bottom: 60px;
  }

  .intro-layout .bg {
    top: -50px;
    left: -60px;
  }

  .intro-layout .inflex {
    display: block;
    width: 90%;
  }

  .intro-layout .l-img {
    width: 100%;
  }

  .intro-layout .l-desc {
    margin: 40px auto 0;
    padding: 0;
    width: 100%;
  }

  .intro-layout .l-ttl {
    margin-bottom: 15px;
  }
}

.list-merit {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.list-merit .item {
  background: #fff;
  border: 1px solid var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 20px;
  gap: 20px;
}

.list-merit .list-ttl {
  border-bottom: 1px solid;
  font: 1.8rem/2 var(--font01);
  padding-bottom: 10px;
}

.list-merit .inbox {
  background: #F0F1F4;
  padding: 13px 8px 20px;
}

.list-merit .inbox.demerit {
  background: #F2F2F2;
}

.list-merit .inbox .box-ttl {
  font: 1.8rem/1.5 var(--font01);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 8px;
}

@media screen and (max-width: 800px) {

  .list-merit.col2,
  .list-merit.col3,
  .list-merit.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-merit.col3.spcol2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-merit.col5 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-merit.col5 .item {
    padding: 10px;
  }

  .list-merit.col5 .list-ttl {
    font-size: 1.3rem;
  }

  .list-merit.flow {
    gap: 50px 0;
  }

  .list-merit.flow .item:not(:last-child)::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 12px;
    position: absolute;
    top: auto;
    bottom: -30px;
    right: 0;
    left: 0;
    width: 24px;
  }

  .list-merit.spsmall .list-img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }

  .list-merit .item.fill {
    grid-column: auto;
  }
}

/*------------
下層paged
--------------*/
.list-card {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 30px;
}

.list-card.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

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

.list-card.col5 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.list-card.col5 .item {
  padding: 15px;
}

.list-card.col5 .list-ttl {
  font-size: 1.6rem;
}

.list-card.flow .item:not(:last-child)::after {
  background: var(--color01);
  content: "";
  display: block;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -6.5%;
  margin: auto;
  width: 12px;
}

.list-card .num {
  margin-bottom: 10px;
  text-align: center;
}

.list-card .num span {
  background: var(--color01);
  color: #fff;
  display: inline-block;
  font: 1.3rem/1.5 var(--font01);
  padding: 3px 20px;
}

.list-card .item {
  background: var(--color02);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 25px;
  gap: 15px;
}

.list-card .item.fill {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.list-card .btn {
  margin-top: auto;
}

.list-card .list-img {
  text-align: center;
}

.list-card .list-ttl {
  font: 1.8rem/1.5 var(--font01);
  text-align: center;
}

.list-card .list-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 1em;
  font: 1.8rem/1.5 var(--font01);
}

.list-card .list-btn {
  text-align: center;
  margin-top: auto;
}

@media screen and (max-width: 800px) {

  .list-card.col2,
  .list-card.col3,
  .list-card.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card.col3.spcol2 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-card.col5 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-card.col5 .item {
    padding: 10px;
  }

  .list-card.col5 .list-ttl {
    font-size: 1.3rem;
  }

  .list-card.flow {
    gap: 50px 0;
  }

  .list-card.flow .item:not(:last-child)::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    height: 12px;
    position: absolute;
    top: auto;
    bottom: -30px;
    right: 0;
    left: 0;
    width: 24px;
  }

  .list-card.spsmall .list-img {
    margin-left: auto;
    margin-right: auto;
    width: 60%;
  }

  .list-card .item.fill {
    grid-column: auto;
  }
}

.list-card02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px 2%;
}

.list-card02.hasnumber {
  padding-top: 30px;
  row-gap: 50px;
}

.list-card02.hasnumber .item {
  padding-top: 50px;
}

.list-card02.hasnumber .list-ttl {
  color: #027D5B;
}

.list-card02.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-card02.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-card02.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.list-card02 .item {
  background: #fff;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  padding: 25px;
  padding: 8%;
  position: relative;
}

.list-card02 .num {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.list-card02 .num span {
  background: #027D5B;
  border-radius: 50%;
  color: #fff;
  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;
  font: 2.4rem/1.5 var(--font02);
  letter-spacing: 0.1em;
  height: 60px;
  margin: auto;
  width: 60px;
}

.list-card02 .list-ttl {
  font: 2rem/1.5 var(--font01);
}

.list-card02 .list-logo {
  background: #fff;
  padding: 20px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.list-card02 .list-img {
  text-align: center;
}

.list-card02 .list-desc {
  margin-bottom: 15px;
}

.list-card02 .list-txt {
  margin-inline: auto;
  width: 84%;
}

.list-card02 .list-btn {
  text-align: center;
  margin-top: auto;
}

@media screen and (max-width: 800px) {

  .list-card02.col2,
  .list-card02.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-card02.col4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .list-card02 .list-ttl {
    font-size: 1.6rem;
  }

  .list-card02 .list-txt {
    width: 100%;
  }
}

.price-bg {
  background: #FAF6EC;
  padding: 3px 10px;
  text-align: center;
}

.list-card03.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
}

.list-card03.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}

.list-card03 .item {
  border-radius: 15px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 8px 0;
  padding: 25px;
}

.list-card03 .jp {
  font: 2rem/1.8 var(--font01);
  text-align: center;
}

.list-card03 .list-ttl {
  background: #000;
  color: #fff;
  font: 2rem/1.5 var(--font01);
  padding: 15px 0;
  position: relative;
  text-align: center;
}

.list-card03 .list-img {
  text-align: center;
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {

  .list-card03.col2,
  .list-card03.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.list-card04.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 4%;
}

.list-card04.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 4%;
}

.list-card04 .item {
  background: #fff;
  border: 3px solid var(--color01);
}

.list-card04 .inner {
  padding: 25px;
}

.list-card04 .list-ttl {
  background: var(--color01);
  color: #fff;
  font: 2rem/1.5 var(--font01);
  padding: 15px 0;
  position: relative;
  text-align: center;
}

.list-card04 .list-img {
  text-align: center;
  margin-bottom: 1em;
}

@media screen and (max-width: 800px) {

  .list-card04.col2,
  .list-card04.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.list-flow-01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px 40px;
}

.list-flow-01.noframe .item {
  border: none;
  background: none;
  padding: 0;
}

.list-flow-01.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-flow-01.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-flow-01 .item {
  background: var(--color02);
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 15px;
  position: relative;
}

.list-flow-01 .item::after {
  background: var(--color01);
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -25px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
}

.list-flow-01 .item:last-child::after {
  display: none;
}

.list-flow-01 .num {
  color: var(--color01);
  font: 2.5rem/1 var(--font02);
  position: absolute;
  top: -15px;
  left: 20px;
  z-index: 1;
}

.list-flow-01 .list-ttl {
  font: 1.8rem/1.5 var(--font01);
}

.list-flow-01 .list-img {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .list-flow-01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px 0;
  }

  .list-flow-01.col2,
  .list-flow-01.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-flow-01 .num {
    font-size: 2rem;
    top: -15px;
    left: 20px;
  }

  .list-flow-01 .item::after {
    clip-path: polygon(0% 0%, 100% 0, 50% 100%);
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: -40px;
    margin: auto;
    height: 12px;
    width: 25px;
  }
}

.list-flow-02 .flow {
  background: #fff;
  border: 1px solid #4D86CE;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 20px 20px 0;
  position: relative;
}

.list-flow-02 .flow:not(:last-child)::before {
  background: url("../images/share/flow_down.svg") center/cover no-repeat;
  content: "";
  height: 50px;
  width: 10px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

.list-flow-02 .flow+.flow {
  margin-top: 60px;
}

.list-flow-02 .num {
  color: var(--color01);
  font: 1.2rem/1.5 var(--font02);
  padding: 0 15px;
  text-align: center;
  position: relative;
  white-space: nowrap;
  width: 120px;
}

.list-flow-02 .num .txt02 {
  font-size: 3rem;
}

.list-flow-02 .flow-desc {
  border-left: 1px solid #4D86CE;
  padding-left: 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-flow-02 .inlayout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 50px;
}

.list-flow-02 .inlayout .l-img {
  text-align: center;
  width: min(250px, 30%);
}

.list-flow-02 .inlayout .l-img.small {
  width: 25%;
}

.list-flow-02 .inlayout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.list-flow-02 .flow-ttl {
  font: 2rem/1.5 var(--font01);
  position: relative;
  margin: 0 0 10px;
}

.list-flow-02 .inbox {
  background: #DCDDDD;
  font-size: 1.4rem;
  padding: 30px;
}

.list-flow-02 .inbox .box-ttl {
  background: url("../images/share/caution.svg") top 3px left no-repeat;
  font-size: 1.6rem;
  font-weight: 300;
  padding-left: 35px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .list-flow-02 .flow {
    padding: 20px 15px 40px 0;
  }

  .list-flow-02 .num {
    padding: 0 20px;
    width: 70px;
  }

  .list-flow-02 .num .txt02 {
    font-size: 2rem;
  }

  .list-flow-02 .flow-desc {
    padding: 0 0 0 20px;
  }

  .list-flow-02 .inlayout {
    display: block;
  }

  .list-flow-02 .inlayout .l-img {
    width: 100%;
  }

  .list-flow-02 .inlayout .l-img.small {
    width: 100%;
  }

  .list-flow-02 .inlayout .l-desc {
    margin: 30px auto 0;
  }

  .list-flow-02 .inbox {
    padding: 20px;
  }
}

.list-flow-03 {
  display: -ms-grid;
  display: grid;
  gap: 40px;
}

.list-flow-03 .flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 70px 50px 1fr;
  grid-template-columns: 70px 1fr;
  gap: 50px;
  position: relative;
  min-height: 150px;
}

.list-flow-03 .flow:not(:last-child) .num::after {
  content: "";
  background-color: var(--color01);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 1px;
  margin-top: 15px;
}

.list-flow-03 .flow:not(:last-child)::after {
  content: "";
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: var(--color01) transparent transparent transparent;
  position: absolute;
  bottom: -1px;
  left: 30px;
}

.list-flow-03 .num {
  color: var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: 600 3rem/1 var(--font01);
  letter-spacing: 0;
  text-align: center;
}

.list-flow-03 .num::before {
  color: var(--color01);
  content: attr(data-en);
  display: block;
  font-family: var(--font02);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.list-flow-03 .flow-time {
  color: var(--color01);
  font: 1.6rem/1.5 var(--font01);
  margin-bottom: 10px;
}

.list-flow-03 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse wrap;
  flex-flow: row-reverse wrap;
  gap: 50px;
}

.list-flow-03 .flow-img {
  width: 35%;
}

.list-flow-03 .flow-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.list-flow-03 .flow-ttl {
  font: 600 1.8rem/1.5 var(--font01);
  margin-bottom: 15px;
}

@media screen and (max-width: 800px) {
  .list-flow-03 {
    gap: 30px;
  }

  .list-flow-03 .flow {
    -ms-grid-columns: 50px 15px 1fr;
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }

  .list-flow-03 .flow:not(:last-child)::before {
    top: 55px;
    left: 24px;
  }

  .list-flow-03 .flow:not(:last-child)::after {
    left: 20px;
  }

  .list-flow-03 .flow-num {
    font-size: 2.5rem;
  }

  .list-flow-03 .flow-num::before {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .list-flow-03 .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
  }

  .list-flow-03 .flow-img {
    width: 100%;
  }

  .list-flow-03 .flow-ttl {
    margin-bottom: 10px;
  }

  .list-flow-03 .flow-desc {
    padding-top: 0;
  }
}

.list-flow-04 {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  padding-top: 10px;
}

.list-flow-04.col2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.list-flow-04.col3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-flow-04.col4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.list-flow-04 .item {
  background: #fff;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  gap: 15px;
  position: relative;
}

.list-flow-04 .item::after {
  background: #6FCB5F;
  content: "";
  clip-path: polygon(0% 0%, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -22px;
  height: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 12px;
}

.list-flow-04 .item:last-child::after {
  display: none;
}

.list-flow-04 .num {
  color: var(--color01);
  font: 2.5rem/1 var(--font02);
  position: absolute;
  top: -15px;
  left: 30px;
  z-index: 1;
}

.list-flow-04 .list-ttl {
  font: 1.8rem/1.5 var(--font01);
  text-align: center;
}

.list-flow-04 .list-img {
  text-align: center;
}

@media screen and (max-width: 800px) {
  .list-flow-04 {
    gap: 50px 0;
  }

  .list-flow-04.col2,
  .list-flow-04.col3,
  .list-flow-04.col4 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-flow-04 .item {
    padding: 20px;
  }

  .list-flow-04 .item::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: auto;
    left: 0;
    right: 0;
    bottom: -30px;
    margin: auto;
    height: 12px;
    -webkit-transform: none;
    transform: none;
    width: 24px;
  }
}

.u-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.u-contact .unit+.unit {
  margin-left: 40px;
}

.u-contact .btn {
  -webkit-transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  transition: transform 0.5s ease, box-shadow 0.5s ease, -webkit-transform 0.5s ease, -webkit-box-shadow 0.5s ease;
  background: url("../images/share/f-arrow.svg") right 20px center/auto no-repeat;
  border-radius: 30px;
  border: 1px solid #444;
  display: block;
  padding: 14px 32px 14px 10px;
  text-align: center;
  width: 230px;
}

.u-contact .btn:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 0 10px #ccc;
  box-shadow: 0 0 10px #ccc;
}

.u-contact p {
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  .u-contact {
    display: block;
  }

  .u-contact .unit+.unit {
    margin: 30px auto 0;
  }

  .u-contact .btn {
    margin: auto;
  }

  .u-contact p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.u-case {
  border: 1px solid var(--color01);
  padding: 40px;
}

@media screen and (max-width: 800px) {
  .u-case {
    padding: 20px;
  }
}

.staff-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.staff-layout.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

.staff-layout .l-img {
  text-align: center;
  position: relative;
  width: min(330px, 32%);
}

.staff-layout .l-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

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

  .staff-layout .l-img {
    width: 100%;
  }

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

.staff-name {
  margin-bottom: 30px;
  position: relative;
}

.staff-name .job {
  font: 600 1.8rem/1.5 var(--font01);
  margin-bottom: 8px;
}

.staff-name .name {
  font: 3rem/1.5 var(--font01);
  font-weight: 600;
}

.staff-name .name .ruby {
  color: var(--color01);
  font: 1.6rem/1.5 var(--font02);
  margin-left: 20px;
}

@media screen and (max-width: 800px) {
  .staff-name .job {
    font-size: 1.5rem;
  }

  .staff-name .name {
    font-size: 2.2rem;
  }

  .staff-name .name .ruby {
    font-size: 1.4rem;
  }
}

.staff-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 4%;
}

.staff-profile .item {
  background: var(--color02);
  border-radius: 15px;
  padding: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.staff-profile .l-ttl {
  border-bottom: 1px dotted #AFC8E3;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.staff-profile .staff-dl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
}

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

  .staff-profile .item {
    padding: 20px;
  }

  .staff-profile .item+.item {
    margin-top: 30px;
  }

  .staff-profile .staff-dl {
    gap: 8px 15px;
  }
}

.u-faq dt {
  background: url("../images/share/que.svg") no-repeat;
  background-position: top 5px left;
  cursor: pointer;
  font: 2rem/1.5 var(--font01);
  padding: 5px 0 0 58px;
  position: relative;
  min-height: 40px;
  margin-bottom: 10px;
}

.u-faq dd {
  background: url("../images/share/ans.svg") no-repeat;
  background-position: top 5px left;
  min-height: 40px;
  padding: 5px 0 0 58px;
}

.u-faq .single+.single,
.u-faq dd+dt {
  margin-top: 1em;
}

@media screen and (max-width: 800px) {
  .u-faq dt {
    font-size: 1.8rem;
  }
}

.faq-style {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style .item {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-style dt {
  cursor: pointer;
  padding: 18px 50px;
  position: relative;
}

.faq-style dt .faq-icon {
  top: 15px;
  left: 0;
}

.faq-style dd {
  display: none;
  padding: 0 50px 30px;
  position: relative;
}

.faq-style dd .faq-icon {
  background-color: #3E3A39;
  color: #fff;
  top: 0;
  left: 0;
}

.faq-style .faq-ttl {
  font-weight: bold;
}

.faq-style .faq-icon {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: #333;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.faq-style .faq-open-icon {
  background: url("../images/share/faq_arrow.svg") no-repeat center/contain;
  width: 10px;
  height: 21px;
  position: absolute;
  right: 30px;
  top: 24px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.faq-style .item>dt:hover .faq-icon {
  background-color: #3E3A39;
  color: #fff;
}

.faq-style .is-open .faq-icon {
  background-color: #3E3A39;
  color: #fff;
}

.faq-style .is-open .faq-open-icon {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 800px) {
  .faq-style .faq-style {
    line-height: 1.5;
  }

  .faq-style .faq-style dt {
    padding: 18px 30px 18px 50px;
  }

  .faq-style .faq-style dt .faq-icon {
    top: 12px;
  }

  .faq-style .faq-style dd {
    padding: 0 50px 30px;
  }

  .faq-style .faq-style .faq-open-icon {
    width: 9px;
    height: 20px;
    right: 0;
    top: 19px;
  }
}

.list-space li {
  padding-left: 1em;
  text-indent: -1em;
}

.list-disc {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 5px 0;
}

.list-disc.free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  gap: 5px 4%;
}

.list-disc.col2 {
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 4%;
}

.list-disc.col3 {
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px 4%;
}

.list-disc.center3 {
  -ms-grid-columns: auto 4% auto 4% auto;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px 4%;
}

.list-disc.white li::before {
  background: #fff;
}

.list-disc li {
  padding-left: 1em;
  position: relative;
}

.list-disc li::before {
  background: #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 6px;
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 6px;
}

@media screen and (max-width: 800px) {
  .list-disc.free {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
  }

  .list-disc.col2,
  .list-disc.col3 {
    display: block;
  }

  .list-disc.center3 {
    -ms-grid-columns: auto 8% auto;
    grid-template-columns: repeat(2, auto);
    gap: 10px 8%;
  }
}

.list-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px 0;
}

.list-block.col2 {
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 4%;
}

.list-block.col3 {
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.list-block.col4 {
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.list-block.small li {
  font-size: 1.8rem;
}

.list-block li {
  background: var(--color01);
  color: #fff;
  letter-spacing: 0.1em;
  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: 10px 15px;
}

@media screen and (max-width: 800px) {
  .list-block {
    gap: 15px 0;
  }

  .list-block.col2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 15px 0;
  }

  .list-block.col3,
  .list-block.col4 {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .list-block li {
    padding: 10px;
  }
}

.list-number {
  counter-reset: number;
}

.list-number>li {
  padding-left: 35px;
  position: relative;
}

.list-number>li::before {
  background: var(--color01);
  border-radius: 50%;
  color: #fff;
  counter-increment: number;
  content: counter(number);
  display: block;
  font-size: 1.4rem;
  padding-left: 1px;
  position: absolute;
  top: 6px;
  left: 0;
  line-height: 24px;
  text-align: center;
  width: 24px;
  height: 24px;
}

.list-number>li+li {
  margin-top: 15px;
}

.list-check {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 0;
}

.list-check.free {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

.list-check.free li {
  margin-right: 2%;
}

.list-check.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4%;
}

.list-check.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4%;
}

.list-check.col3-center {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 12% auto 12% auto;
  grid-template-columns: repeat(3, auto);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 12%;
}

.list-check.col4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 4% 1fr 4% 1fr 4% 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 4%;
}

.list-check.white li::before {
  background-image: url("../images/share/check_w.svg");
}

.list-check li {
  padding: 5px 0 5px 32px;
  position: relative;
}

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

@media screen and (max-width: 800px) {

  .list-check.col2,
  .list-check.col3 {
    display: block;
  }

  .list-check.col3-center {
    -ms-grid-columns: auto 4% auto;
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0 4%;
  }

  .list-check.col4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.list-price li+li {
  margin-top: 10px;
}

.list-price li .intro {
  border-bottom: 1px dotted #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 0 0 5px;
  margin-bottom: 10px;
}

.list-price li .desc {
  padding: 5px 0 0;
}

.list-price .ttl {
  font-family: var(--font01);
}

@media screen and (max-width: 800px) {
  .list-price li+li {
    margin-top: 5px;
  }

  .list-price li .intro {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-price li .intro span+span {
    text-align: right;
  }

  .list-price li .desc {
    color: #747474;
    font-size: 13px;
    padding: 5px 0 0;
  }
}

.list-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px 10px;
}

.list-txt.col3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.list-txt .item {
  background: #AFC8E3;
  border-radius: 10px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 600 1.6rem/1.5 var(--font01);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 8px 15px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 800px) {
  .list-txt {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .list-txt.col3 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.l-dl01 dt {
  margin-bottom: 10px;
}

.l-dl01 dd+dt {
  margin-top: 30px;
}

.l-dl02 .single+.single {
  margin-top: 1em;
}

.l-dl02 .single {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 0 1fr;
  grid-template-columns: 25% 1fr;
  gap: 0;
}

.l-dl02 dt {
  background: var(--color01);
  color: #fff;
  font: 1.7rem/1.5 var(--font01);
  padding: 20px;
}

.l-dl02 dd {
  background: #F7F5EA;
  padding: 20px;
}

@media screen and (max-width: 800px) {
  .l-dl02 .single {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .l-dl02 dt {
    padding: 10px 20px;
  }

  .l-dl02 dd {
    padding: 10px 20px;
  }
}

.ul-career {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
}

.dl-career {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 30px;
}

.dl-career dt {
  font-family: var(--font01);
}

.dl-opentime {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 8px auto;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 5px 8px;
}

.dl-opentime dt {
  border: 1px solid;
  color: #4D86CE;
  font-size: 1rem;
  line-height: 1;
  padding: 5px 12px;
}

.dl-opentime dd {
  line-height: 1.3;
  text-align: left;
}

@media screen and (max-width: 800px) {
  .dl-opentime dt {
    font-size: 1.1rem;
    padding: 5px 10px;
  }

  .dl-opentime dd {
    font-size: 1.4rem;
  }
}

.dl-space {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 10px;
  margin: 20px 0;
}

.dl-space dt {
  background: #81A8F0;
  border-radius: 4px;
  color: #fff;
  font-family: var(--font01);
  line-height: 1.5;
  padding: 5px 25px;
  margin-bottom: 5px;
}

.dl-disc {
  line-height: 2;
}

.dl-disc dt {
  line-height: 2;
  font-size: 1.6rem;
  padding-left: 1em;
  position: relative;
  margin-bottom: 0.1em;
}

.dl-disc dt::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  top: 13px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
}

.dl-disc dd+dt {
  margin-top: 1em;
}

.dl-simple {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px 1fr;
  grid-template-columns: auto 1fr;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dl-simple dt {
  background: #AA8965;
  border-radius: 4px;
  font: 1.6rem/1.5 var(--font01);
  color: #fff;
  text-align: center;
  padding: 5px 15px;
}

@media screen and (max-width: 800px) {
  .dl-simple {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0.5em 0;
  }

  .dl-simple dd+dt {
    margin-top: 1em;
  }
}

.dl-normal dt {
  font-family: var(--font01);
}

.dl-normal dd+dt {
  margin-top: 1em;
}

.dl-block .num {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 5px;
}

.dl-block .single {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 0 1fr;
  grid-template-columns: 25% 1fr;
  gap: 10px 0;
}

.dl-block .single+.single {
  margin-top: 1em;
}

.dl-block dt {
  background: var(--color01);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 1.8rem;
  padding: 20px;
}

.dl-block dd {
  background: #DBE6F4;
  padding: 20px;
}

@media screen and (max-width: 800px) {
  .dl-block .single {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dl-block dt {
    padding: 15px;
  }

  .dl-block dd {
    padding: 15px;
  }
}

.dl-style01 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 15px 10px;
}

.dl-style01 dt {
  background: var(--color01);
  color: #fff;
  font: 1.3rem/1.5 var(--font01);
  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;
  margin-top: 5px;
  padding: 0 10px;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media screen and (max-width: 800px) {
  .dl-style01 {
    gap: 10px 15px;
  }
}

/*------------
投稿パーツ
--------------*/
/*普通投稿*/
.list-post-type01 {
  margin-bottom: 60px;
}

.list-post-type01 li+li {
  margin-top: 50px;
}

.list-post-type01 .list-ttl a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-post-type01 .list-ttl a:hover {
  opacity: 0.5;
}

.list-post-type01 .list-img {
  float: left;
  margin: 0 30px 0 0;
  width: 250px;
}

.list-post-type01 .list-img img {
  width: 250px;
  height: 180px;
  -o-object-fit: cover;
  object-fit: cover;
}

.list-post-type01 .list-img a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.list-post-type01 .list-img a:hover {
  opacity: 0.5;
}

.list-post-type01 .list-data {
  font-size: 13px;
  margin: 0 0 5px;
}

.list-post-type01 time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
  vertical-align: -1px;
  margin: 0 25px 0 0;
}

.list-post-type01 .category {
  background: #fff;
  border: 1px solid;
  color: var(--color01);
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

.list-post-type01 .list-txt {
  margin: 0 0 30px;
}

@media screen and (max-width: 800px) {
  .list-post-type01 {
    margin: 0 0 40px;
  }

  .list-post-type01 li+li {
    margin-top: 20px;
  }

  .list-post-type01 .list-ttl {
    font-size: 18px;
    padding: 0 0 7px;
    margin: 0 0 15px;
  }

  .list-post-type01 .list-img {
    float: left;
    margin: 0 15px 0 0;
    width: 40%;
  }

  .list-post-type01 .list-img img {
    width: 100%;
    height: 25vw;
  }

  .list-post-type01 .list-desc {
    margin: -5px 0 0;
  }

  .list-post-type01 time {
    font-size: 12px;
    margin: 0 15px 0 0;
  }

  .list-post-type01 .list-txt {
    font-size: 11px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 15px;
  }
}

.list-under-ttl {
  font: 2rem/2 var(--font01);
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.list-under-ttl::before {
  content: "";
  display: block;
  border-radius: 2px;
  background-color: #333;
  width: 5px;
  height: 1.2em;
  margin-top: 2px;
}

.list-under-post {
  border-top: 1px solid #fff;
  padding-top: 5px;
  margin-bottom: 50px;
}

.list-under-post .single {
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  padding: 15px 70px 15px 0;
  position: relative;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}

.list-under-post .single::before {
  content: "";
  background: url("../images/share/post_arrow.svg") no-repeat center/cover;
  width: 13px;
  height: 8px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.list-under-post .single:hover {
  border-color: var(--color01);
}

.list-under-post .list-img {
  width: 150px;
}

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

.list-under-post .list-desc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 5px;
}

.list-under-post time {
  display: block;
  color: #95836E;
  font-size: 1rem;
}

.list-under-post .list-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 1.8;
  margin-bottom: 5px;
}

.list-under-post .category {
  display: inline-block;
  background-color: var(--color01);
  color: #fff;
  font-size: 1.3rem;
  padding: 0 5px;
  margin-right: 5px;
}

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

@media screen and (max-width: 800px) {
  .list-under-post .single {
    gap: 15px;
    padding: 15px 40px 15px 0;
  }

  .list-under-post .single::before {
    width: 20px;
  }

  .list-under-post .single::after {
    right: 4px;
  }

  .list-under-post .list-desc {
    margin-top: -5px;
    width: 120px;
  }

  .list-under-post .list-ttl {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.list-post-single {
  margin-bottom: 80px;
}

.list-post-single .l-ttl {
  font-size: 3rem;
  margin: 0 0 35px;
}

.list-post-single .post-data {
  margin: 0 0 20px;
}

.list-post-single .post-data time {
  display: inline-block;
  color: #ccc;
  font-size: 1.4rem;
  vertical-align: -1px;
  margin: 0 20px 0 0;
}

.list-post-single .post-data .category {
  background: var(--color01);
  color: #fff;
  display: inline-block;
  font-size: 1.1rem;
  line-height: 1;
  padding: 5px 8px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 800px) {
  .list-post-single .l-ttl {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}

.post-number {
  border-bottom: 1px solid #d3d3d3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin: 60px 0;
}

.post-number a {
  color: #a5a5a5;
  display: block;
  padding: 0 10px 15px;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.post-number a:hover {
  color: var(--color01);
}

.post-number .current {
  color: var(--color01);
  display: block;
  padding: 0 10px 15px;
  position: relative;
}

.post-number .current::after {
  border-bottom: 2px solid #000;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  margin: 60px 0 0;
}

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

.post-number-single a.next::before {
  content: "";
  background: url(../images/share/ico_arrow.svg) no-repeat center/contain;
  display: inline-block;
  margin-right: 15px;
  width: 12px;
  height: 12px;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.post-number-single a.prev::before {
  content: "";
  background: url(../images/share/ico_arrow.svg) no-repeat center/contain;
  display: inline-block;
  margin-left: 15px;
  width: 12px;
  height: 12px;
}

.post-number-single .current {
  color: var(--color01);
  display: block;
  font: 1.6rem/1.6 var(--font02);
  letter-spacing: 0.15em;
  padding-top: 3px;
  position: relative;
}

.postdata table {
  background: #fff !important;
}

.postdata table th {
  background: var(--color01) !important;
  border: 1px solid #D1D1D1 !important;
  border-bottom: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  color: #fff !important;
  padding: 12px 10px !important;
}

.postdata table th::after {
  display: none;
}

.postdata table td {
  border: 1px solid #D1D1D1 !important;
  padding: 12px 10px !important;
}

.postdata .l-imgL,
.postdata .l-imgL_auto,
.postdata .l-imgR {
  margin-bottom: 2em;
}

.postdata p,
.postdata ul,
.postdata dl,
.postdata ol {
  margin-bottom: 1em;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata pre {
  word-break: break-all;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ol li {
  list-style: inside decimal;
}

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

.postdata table {
  margin: 15px 0;
}

.l-category {
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

.l-category .select {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background: #fff url(../images/share/select_down.svg) no-repeat;
  background-size: 24px;
  background-position: right 11px center;
  border-radius: 0;
  border: 2px solid #ddd;
  display: inline-block;
  padding: 5px 3em 5px 12px;
  min-width: 400px;
}

.select-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 10px;
  gap: 0 2em;
  margin-bottom: 30px;
}

.select-area.filled .select-category {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.select-area .select-ttl {
  font: 1.8rem/1.5 var(--font01);
  margin-right: 15px;
}

.select-area .select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  background: url(../images/share/select_down.svg) no-repeat #fff;
  background-size: 24px;
  background-position: right 11px center;
  border-radius: 0;
  border: 1px solid #ccc;
  display: block;
  font-size: 1.6rem;
  padding: 10px 3em 10px 20px;
}

@media screen and (max-width: 800px) {
  .select-area {
    display: block;
  }

  .select-area .select-item+.select-item {
    margin-top: 10px;
  }

  .select-area .select-ttl {
    margin-right: 10px;
  }
}

/*セレクト式カテゴリー*/
.u-tel a {
  background: url("../images/share/phone.png") no-repeat;
  background-size: 18px;
  background-position: center left;
  color: var(--color01);
  font: 28px/1 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  padding-left: 24px;
}

.u-mail a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/mail.png") no-repeat #fff;
  background-size: 22px auto;
  background-position: center left 30px;
  border: 1px solid var(--color01);
  border-radius: 7px;
  color: var(--color01);
  display: inline-block;
  font: 21px/1 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  padding: 15px 40px 15px 60px;
}

.u-mail a:hover {
  opacity: 0.6;
}

.tel-layout03 {
  background: #fff;
  border: 8px solid var(--color01);
  border-radius: 35px;
  padding: 40px 70px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
  text-align: center;
  width: 90%;
}

.tel-layout03 .ttl {
  border-bottom: 2px dotted #81D8D0;
  font: bold 2rem/1.5 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  padding-bottom: 10px;
}

.tel-layout03 .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 25px;
}

.tel-layout03 .btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: var(--color01);
  border-radius: 25px;
  color: #fff;
  display: block;
  font: bold 1.6rem/1.5 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  padding: 14px 0;
  text-align: center;
  width: 260px;
}

.tel-layout03 .btn span {
  background: url("../images/share/mail.svg") left center/auto no-repeat;
  padding-left: 35px;
}

.tel-layout03 .btn:hover {
  opacity: 0.6;
}

.tel-layout03 .txt {
  font-size: 1.6rem;
}

.tel-layout03 .time {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 15px 1fr;
  grid-template-columns: auto 1fr;
  gap: 0 15px;
  text-align: left;
}

@media screen and (max-width: 800px) {
  .tel-layout03 {
    padding: 20px;
    width: 100%;
  }

  .tel-layout03 .ttl {
    font-size: 1.6rem;
  }

  .tel-layout03 .wrapper {
    display: block;
    margin-top: 20px;
  }

  .tel-layout03 .wrapper .item+.item {
    margin: 15px auto 0;
  }

  .tel-layout03 .btn {
    width: 100%;
  }

  .tel-layout03 .txt {
    font-size: 1.5rem;
  }

  .tel-layout03 .time {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.3rem;
  }
}

.tel_number {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/tel.svg") left center/auto no-repeat;
  font: 2.3rem/1.5 var(--font01);
  display: inline-block;
  padding-left: 24px;
  position: relative;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.tel_number.white {
  background-image: url("../images/share/tel_w.svg");
  color: #fff;
}

.tel_number:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .tel_number {
    background-position: top 7px left;
    font-size: 2.6rem;
  }
}

.webbtn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  color: var(--color01);
  display: inline-block;
  padding: 5px 5px;
  text-align: center;
  position: relative;
  width: 200px;
}

.webbtn.white {
  color: #fff;
}

.webbtn.white::before {
  border-color: #fff;
}

.webbtn.white span {
  background-image: url("../images/share/webbtn.svg");
}

.webbtn::before,
.webbtn::after {
  border: 1px solid;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.webbtn::after {
  border-color: #A88962;
  top: 3px;
  left: 3px;
}

.webbtn span {
  background: url("../images/share/webbtn_c.svg") left center/auto no-repeat;
  padding-left: 40px;
}

.webbtn:hover {
  opacity: 0.6;
}

.l-select {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ded4bc;
  margin: 0 auto;
  width: 80%;
}

.l-select .ttl {
  background: #f9f5ea;
  border-radius: 8px 8px 0 0/8px 8px 0 0;
  color: #E0FAF5;
  font-size: 22px;
  font-family: "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  padding: 8px 0;
  text-align: center;
}

.l-select .inner {
  font-size: 17px;
  font-family: "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  padding: 15px 20px 5px;
}

.l-select .inner .item a {
  display: block;
  padding-left: 20px;
  position: relative;
  margin: 0 20px 10px 0;
}

.l-select .inner .item a::before {
  background: #ffdc73;
  content: " ";
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: 0;
  height: 10px;
  width: 10px;
}

.l-select .inner .item a:hover {
  opacity: 0.6;
}

.contact-tel {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5rem 1fr;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5rem;
  font-size: 1.5rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 5rem;
}

.contact-tel .col:nth-of-type(2) {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.contact-tel .col:nth-of-type(2)::before {
  content: "";
  width: 0.1rem;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(112, 112, 112)), color-stop(0.3rem, rgb(112, 112, 112)), color-stop(0.3rem, transparent), color-stop(0.6rem, transparent));
  background-image: linear-gradient(to bottom, rgb(112, 112, 112), rgb(112, 112, 112) 0.3rem, transparent 0.3rem, transparent 0.6rem);
  background-size: 0.1rem 0.6rem;
  background-repeat: repeat-y;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.contact-tel .ttl {
  font-size: 1.7rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.contact-tel .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  letter-spacing: 0;
  margin: 1rem 0;
}

.contact-tel .tel .small {
  font-size: 2rem;
}

.contact-tel .time {
  margin-top: 0;
  font-size: 1.4rem;
}

@media (max-width: 800px) {
  .contact-tel {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .contact-tel .col:nth-of-type(2) {
    padding-top: 4rem;
  }

  .contact-tel .col:nth-of-type(2)::before {
    width: 100%;
    height: 0.1rem;
    background-image: -webkit-gradient(linear, left top, right top, from(rgb(112, 112, 112)), color-stop(0.3rem, rgb(112, 112, 112)), color-stop(0.3rem, transparent), color-stop(0.6rem, transparent));
    background-image: linear-gradient(to right, rgb(112, 112, 112), rgb(112, 112, 112) 0.3rem, transparent 0.3rem, transparent 0.6rem);
    background-size: 0.6rem 0.1rem;
    background-repeat: repeat-x;
    top: 0;
    left: 0;
    right: 0;
  }
}

.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}

.contact-form table tr {
  border-bottom: 1px solid var(--color_border03);
}

.contact-form table th {
  padding: 20px 40px 20px 0;
  vertical-align: middle;
  font-family: var(--font_jp);
  text-align: left;
  width: 30%;
}

.contact-form table td {
  padding: 20px 0;
  width: 70%;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #f5f5f5;
  border: none;
  border-radius: 3px;
  color: #333;
  padding: 10px;
  margin: 0;
  width: 100%;
  min-height: 50px;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form input[type=file]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid var(--color_primary);
}

.contact-form textarea {
  height: 200px;
  resize: vertical;
}

/*radio*/
.wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.wpcf7-radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  font-size: 16px;
}

.wpcf7-radio input[type=radio] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  display: inline-block;
  background-color: #eeeff2;
  border: 1px solid #d6d9e0;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 6px 10px 0 0;
}

.wpcf7-radio input[type=radio]:checked+span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 5px;
  z-index: 0;
}

.wpcf7-radio input[type=radio]:focus-visible {
  border-color: var(--color_primary);
  outline: none;
}

/*checkbox*/
.wpcf7-checkbox .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 0 0;
}

.wpcf7-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  font-size: 16px;
}

.wpcf7-checkbox input[type=checkbox] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 18px;
  flex: 0 0 18px;
  display: inline-block;
  background-color: #eeeff2;
  border: 1px solid #d6d9e0;
  border-radius: 0;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 6px 10px 0 0;
}

.wpcf7-checkbox input[type=checkbox]:checked+span::before {
  content: "";
  display: block;
  border: solid #333;
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 10px;
  position: absolute;
  top: 9px;
  left: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 0;
}

.wpcf7-checkbox input[type=checkbox]:focus-visible {
  border-color: var(--color_primary);
  outline: none;
}

/*select*/
.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 22px;
}

/*file*/
.file-label {
  display: inline-block;
  background-color: #f5f5f5;
  cursor: pointer;
  color: #333;
  font-size: 13px;
  padding: 10px 25px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.file-label:hover {
  background-color: #333;
  color: #fff;
}

.file-label input[type=file] {
  display: none;
}

.file-message {
  margin-top: 5px;
  font-size: 13px;
}

.date-picker input[type=text] {
  background-image: url("data:image/svg+xml;base64,PCEtLT94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPy0tPgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+Cgo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9Il94MzJfIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJ3aWR0aDogMjU2cHg7IGhlaWdodDogMjU2cHg7IG9wYWNpdHk6IDE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojODg4O30KPC9zdHlsZT4KPGc+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTQ5LjE5MywxMDMuNTI1YzE1Ljk5NSwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMxNzguMTU3LDEyLjk3LDE2NS4xODgsMCwxNDkuMTkzLDAKCQljLTE2LjAwMiwwLTI4Ljk3MywxMi45Ny0yOC45NzMsMjguOTY0djQ1LjU4OEMxMjAuMjIsOTAuNTU2LDEzMy4xOTEsMTAzLjUyNSwxNDkuMTkzLDEwMy41MjV6Ij48L3BhdGg+Cgk8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMzYyLjgxNiwxMDMuNTI1YzE1Ljk5NCwwLDI4Ljk2NC0xMi45NywyOC45NjQtMjguOTczVjI4Ljk2NEMzOTEuNzgsMTIuOTcsMzc4LjgxLDAsMzYyLjgxNiwwCgkJYy0xNi4wMDMsMC0yOC45NzMsMTIuOTctMjguOTczLDI4Ljk2NHY0NS41ODhDMzMzLjg0Myw5MC41NTYsMzQ2LjgxMywxMDMuNTI1LDM2Mi44MTYsMTAzLjUyNXoiPjwvcGF0aD4KCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik00MzUuMTY0LDQxLjI4N2gtMTcuOTI1djMzLjI2NWMwLDMwLjAxNy0yNC40MTQsNTQuNDMyLTU0LjQyMiw1NC40MzJjLTMwLjAxOCwwLTU0LjQzMi0yNC40MTUtNTQuNDMyLTU0LjQzMgoJCVY0MS4yODdIMjAzLjYxNnYzMy4yNjVjMCwzMC4wMTctMjQuNDE1LDU0LjQzMi01NC40MjMsNTQuNDMyYy0zMC4wMTYsMC01NC40MzItMjQuNDE1LTU0LjQzMi01NC40MzJWNDEuMjg3SDc2LjgzNgoJCWMtMzguNTI4LDAtNjkuNzYzLDMxLjIzNS02OS43NjMsNjkuNzYzdjMzMS4xODdDNy4wNzMsNDgwLjc2NSwzOC4zMDksNTEyLDc2LjgzNiw1MTJoMzU4LjMyOAoJCWMzOC41MjgsMCw2OS43NjMtMzEuMjM1LDY5Ljc2My02OS43NjNWMTExLjA1QzUwNC45MjcsNzIuNTIyLDQ3My42OTIsNDEuMjg3LDQzNS4xNjQsNDEuMjg3eiBNNDcwLjk4Miw0NDIuMjM3CgkJYzAsMTkuNzQ4LTE2LjA2OSwzNS44MTgtMzUuODE4LDM1LjgxOEg3Ni44MzZjLTE5Ljc0OCwwLTM1LjgxOC0xNi4wNy0zNS44MTgtMzUuODE4VjE1NS4xMzhoNDI5Ljk2NFY0NDIuMjM3eiI+PC9wYXRoPgoJPHJlY3QgeD0iMTc1Ljg2MiIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1OSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjE3NS44NjIiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSI3OC40NTMiIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIzNzAuNjk3IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iMjczLjI4IiB5PSIyODYuNTg0IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1OSI+PC9yZWN0PgoJPHJlY3QgeD0iMzcwLjY5NyIgeT0iMzg0LjAwMiIgY2xhc3M9InN0MCIgd2lkdGg9IjYyLjg1MSIgaGVpZ2h0PSI2Mi44NTkiPjwvcmVjdD4KCTxyZWN0IHg9IjM3MC42OTciIHk9IjI4Ni41ODQiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTEiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIyNzMuMjgiIHk9IjM4NC4wMDIiIGNsYXNzPSJzdDAiIHdpZHRoPSI2Mi44NTkiIGhlaWdodD0iNjIuODU5Ij48L3JlY3Q+Cgk8cmVjdCB4PSIxNzUuODYyIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODU5IiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0PgoJPHJlY3QgeD0iNzguNDUzIiB5PSIxODkuMTc1IiBjbGFzcz0ic3QwIiB3aWR0aD0iNjIuODUxIiBoZWlnaHQ9IjYyLjg1MSI+PC9yZWN0Pgo8L2c+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: left 15px center;
  background-size: 20px auto;
  padding-left: 50px;
}

/*希望日*/
.contact-form .reserve-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form .reserve-date .date {
  width: 35%;
  margin-right: 15px;
}

.contact-form .reserve-date .time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form .reserve-date .time .select-wrap {
  width: 100px;
}

.contact-form .reserve-date .unit {
  margin: 10px 10px 0;
}

/*生年月日*/
.contact-form .birth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form .birth .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contact-form .birth .select-wrap {
  width: 100px;
}

.contact-form .birth .unit {
  margin: 10px 10px 0;
}

/*送信ボタン*/
.contact-form .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  -webkit-appearance: none;
  background: var(--color_primary);
  border: 1px solid var(--color_primary);
  border-radius: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
  padding: 20px 40px;
  letter-spacing: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 250px;
}

.contact-form .submit-btn [type=submit]:hover {
  opacity: 0.7;
}

.contact-form .submit-btn [type=submit].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

/*エラー表示*/
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  background-color: #E35C5C;
  border: none;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: 30px 0 0;
}

.contact-form .wpcf7-not-valid-tip {
  color: #e35c5c;
  font-size: 11px;
  font-weight: bold;
  margin: 5px 0 0 0;
}

div.wpcf7-response-output.wpcf7-validation-errors {
  display: none !important;
}

.contact-form .wpcf7-spinner {
  display: none;
}

/*Material datepicker*/
.dtp>.dtp-content {
  font-weight: bold;
}

.dtp>.dtp-content>.dtp-date-view>header.dtp-header {
  background: #373c3f !important;
}

.dtp div.dtp-date,
.dtp div.dtp-time {
  background-color: #eff0f0 !important;
  color: #333 !important;
}

.dtp .p10>a,
.dtp div.dtp-actual-year,
.dtp table.dtp-picker-days tr>th {
  color: #333 !important;
}

.dtp div.dtp-picker-month {
  font-weight: bold;
  padding-bottom: 0 !important;
}

.dtp table.dtp-picker-days tr>td>a.selected {
  background-color: #96cee1 !important;
  border-radius: 3px !important;
}

.dtp .right,
.dtp .left {
  margin-top: 10px !important;
}

.zipcode {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 130px;
  grid-template-columns: 1fr 130px;
  grid-gap: 10px;
}

.zipcode input {
  width: 100%;
}

.btn-zipcode {
  background-color: #e35c5c;
  border-radius: 3px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  padding: 5px;
  letter-spacing: 0;
  text-align: center;
  height: 54px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn-zipcode:focus-visible {
  background-color: oklch(from #e35c5c calc(l * 0.8) c h);
}

@media (hover: hover) {
  .btn-zipcode:hover {
    background-color: oklch(from #e35c5c calc(l * 0.8) c h);
  }
}

/*送信ローダー*/
.loading-wrapper {
  display: none;
  background-color: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 10000;
}

.loading-send {
  background: #fff;
  padding: 35px 70px;
  -webkit-box-shadow: 0 0.4rem 0.8rem -0.1rem rgba(0, 32, 128, 0.1), 0 0 0 1px #f0f2f7;
  box-shadow: 0 0.4rem 0.8rem -0.1rem rgba(0, 32, 128, 0.1), 0 0 0 1px #f0f2f7;
  border-radius: 5px;
  font-weight: bold;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.loading-send-dot,
.loading-send-dot::before,
.loading-send-dot::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9face6;
  position: absolute;
  top: 0;
  -webkit-animation: dot-flashing 1s infinite alternate;
  animation: dot-flashing 1s infinite alternate;
}

.loading-send-dot {
  margin-top: 5px;
  position: relative;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading-send-dot::before {
  left: -15px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.loading-send-dot::after {
  left: 15px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes dot-flashing {
  0% {
    background-color: #9face6;
  }

  50%,
  100% {
    background-color: #ccc;
  }
}

@keyframes dot-flashing {
  0% {
    background-color: #9face6;
  }

  50%,
  100% {
    background-color: #ccc;
  }
}

/*メールアドレスチェック*/
.mail-check {
  background-color: #f5f5f5;
  padding: 35px;
  margin-bottom: 50px;
}

.mail-check-txt {
  border-bottom: 1px solid #333;
  font-size: 1.8rem;
  line-height: 1.5;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  padding-bottom: 10px;
  margin: 0 auto 5px;
}

#mailoutput {
  font-size: 22px;
  word-break: break-all;
  text-align: center;
  margin-top: 0;
}

.g-recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 40px auto 0;
}

@media (max-width: 800px) {
  .contact-form table {
    margin: 0 0 30px;
  }

  .contact-form table th,
  .contact-form table td {
    display: block;
    width: 100%;
  }

  .contact-form table th {
    padding: 15px 0 10px;
  }

  .contact-form table td {
    padding: 0 0 15px;
  }

  .contact-form .reserve-date {
    display: block;
  }

  .contact-form .reserve-date .date {
    width: 100%;
    margin: 0 0 10px;
  }

  .contact-form .birth {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .contact-form .birth .item+.item {
    margin-top: 15px;
  }

  .contact-form .submit-btn [type=submit] {
    padding: 15px;
    width: 250px;
  }

  .contact-form .submit-btn [type=submit].back-btn {
    margin-right: 25px;
  }

  .mail-check {
    padding: 15px;
    margin-bottom: 30px;
  }

  #mailoutput {
    font-size: 18px;
  }

  .grecaptcha-badge {
    bottom: 70px !important;
  }
}

.contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.contact-form-dl {
  margin-bottom: 30px;
}

.contact-form-dl .single+.single {
  margin-top: 30px;
}

.contact-form-dl dt {
  font-family: var(--font01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 10px;
}

.contact-form-dl dt .hissu {
  background: #000;
  border-radius: 100px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 5px 20px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form input[type=date],
.contact-form select,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #000;
  width: auto;
  min-height: 50px;
  max-width: 100%;
}

.contact-form input.full,
.contact-form textarea.full {
  width: 100%;
}

.contact-form .submit-btn .submit-btn-inner {
  background: #5CC9C1;
  border-radius: 6px;
  position: relative;
  margin: auto;
  width: min(460px, 100%);
}

.contact-form .submit-btn .submit-btn-inner::before {
  border: 1px solid #fff;
  content: "";
  display: block;
  height: calc(100% - 10px);
  position: absolute;
  inset: 5px 0 0 5px;
  width: calc(100% - 10px);
  z-index: 1;
}

.contact-form .submit-btn input[type=submit] {
  font: 2.6rem/1.5 var(--font01);
  position: relative;
  width: 100%;
  z-index: 2;
}

.time-table.colored {
  background: #FCF8F2;
}

.time-table th,
.time-table td {
  text-align: center;
  vertical-align: middle;
}

.time-table th {
  background: var(--color01);
  color: #fff;
  font: 1.6rem/1.5 var(--font01);
  padding: 10px 0;
  text-align: center;
}

.time-table th:first-child {
  width: 30%;
}

.time-table th:last-child {
  width: 15%;
}

.time-table tr:not(:last-child) td {
  border-bottom: 1px solid #DFDFDF;
}

.time-table td {
  font-family: var(--font01);
  padding: 12px 0;
}

.time-table td:first-child {
  border-right: 1px solid #DFDFDF;
}

.time-table table {
  background: #fff;
  border-collapse: separate;
  border: 1px solid #DFDFDF;
  border-spacing: 0;
  font-size: 1.5rem;
  font-family: var(--font01);
  table-layout: fixed;
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 800px) {
  .time-table th {
    font-size: 1.3rem;
    padding: 3px 0;
  }

  .time-table th:first-child {
    width: 30%;
  }

  .time-table th:last-child {
    width: 13%;
  }

  .time-table td {
    padding: 3px 0;
  }

  .time-table table {
    font-size: 1.1rem;
  }
}

.time-table-caption {
  font-size: 1.5rem;
  margin-top: 10px;
}

@media screen and (max-width: 800px) {
  .time-table-circle-frame {
    overflow: auto;
    width: 100%;
  }

  .time-table-circle-frame .time-table-circle {
    width: 200%;
  }

  .time-table-circle-frame .time-table-circle .first th:first-child {
    width: 20%;
  }

  .time-table-circle-frame .time-table-circle .first th:last-child {
    width: auto;
  }
}

.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__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__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 {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

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

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

.splide__arrow:disabled {
  opacity: 0.3;
}

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

.splide__arrow--prev {
  left: 1em;
}

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

.splide__arrow--next {
  right: 1em;
}

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

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

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  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: #fff;
  -webkit-transform: scale(1.4);
  transform: scale(1.4);
  z-index: 1;
}

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

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

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

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

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

.splide__slide:focus {
  outline: 0;
}

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

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

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

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

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

.splide__toggle {
  cursor: pointer;
}

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

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

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

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

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

.splide__arrows--rtl .splide__arrow--prev svg {
  -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;
}

.u_slider {
  position: relative;
  margin-inline: auto;
  max-width: 800px;
}

.u_slider .splide__track {
  overflow: visible;
}

.u_slider .splide__slide:not(.is-active) {
  opacity: 0.2;
}

.u_slider .splide__slide {
  padding-bottom: 30px;
}

@media screen and (max-width: 800px) {
  .u_slider {
    width: 100%;
  }
}

.u_slider .splide__pagination__page.is-active {
  background: var(--color01);
}

@media screen and (max-width: 800px) {
  .f-small {
    font-size: 13px;
  }

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

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

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

  .tal-small {
    text-align: left;
  }

  .tac-small {
    text-align: center;
  }

  .tar-small {
    text-align: right;
  }

  .tall,
  .u-section {
    margin-bottom: 60px;
  }

  .short {
    margin-top: 40px;
  }

  .mini {
    margin-top: 20px;
  }

  .map,
  .t-map,
  .f-map,
  .u-map,
  .youtube,
  .s-map {
    height: 300px;
  }

  .f-map {
    height: 300px;
  }

  .u-map {
    height: 220px;
  }

  .sec01 {
    background: url("../images/sec01_bg_sp.png") top left no-repeat;
    margin-top: -53px;
    padding: 113px 0 0;
  }

  .sec01-layout {
    display: block;
  }

  .sec01-layout .l-img {
    text-align: center;
    width: 100%;
  }

  .sec01-layout .l-desc {
    position: static;
    margin: 40px auto 0;
    width: 90%;
  }

  .sec01-layout .l-desc .inner {
    margin: auto;
    width: 100%;
  }

  .sec01-layout .l-desc .intxt {
    padding: 0;
  }

  .sec01-layout .l-btn {
    text-align: center;
    margin-top: 40px;
  }

  .sec02 {
    background: url("../images/sec02_bg_sp.png") bottom center/auto no-repeat;
    position: relative;
    margin-top: -27px;
    padding: 80px 0 30px;
  }

  .sec02-ttl {
    margin: 20px auto 40px;
    padding: 0;
  }

  .sec02-ttl .en {
    display: none;
  }

  .sec02-movie {
    height: 200px;
    margin: 40px auto 115px;
  }

  .sec02-youtube-ttl {
    margin: 0 auto 30px;
    width: 222px;
  }

  .sec02-youtube-txt {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .sec02-youtube-list {
    gap: 12px 4%;
  }

  .sec02-youtube-list .item {
    height: 100px;
    width: min(177px, 48%);
  }

  .sec03 {
    background: url("../images/sec03_bg_sp.png") bottom center no-repeat;
    padding-bottom: 20px;
  }

  .sec03-layout {
    display: block;
  }

  .sec03-layout .effect {
    right: 5%;
    bottom: -105px;
  }

  .sec03-layout .l-ttl {
    padding: 0;
  }

  .sec03-layout .l-desc {
    padding: 0;
    margin: 30px auto 0;
    width: 90%;
  }

  #sec03_slider {
    position: relative;
  }

  #sec03_slider .splide__arrows {
    gap: 8px;
    margin-top: 20px;
  }

  #sec03_slider .splide__arrows .slide__arrow {
    width: 68px;
  }

  #sec03_slider .splide__pagination {
    gap: 0 10px;
    margin: 20px 0;
  }

  #sec03_slider .splide__pagination .splide__pagination__page {
    height: 10px;
    width: 10px;
  }

  .sec04 {
    margin-top: 105px;
  }

  .sec04::before {
    clip-path: polygon(0 0, 100% 20px, 100% 100%, 0 calc(100% - 20px));
    top: auto;
    left: 0;
    bottom: 36px;
    height: 310px;
    width: 100%;
  }

  .sec04-ttl {
    display: block;
    text-align: left;
    margin: 0 auto 35px;
  }

  .sec04-ttl .en {
    margin-left: -16px;
    width: 260px;
  }

  .sec04-link {
    margin-top: 40px;
  }

  .sec04-link a {
    display: inline-block;
    width: 310px;
  }

  .sec05 {
    position: relative;
    margin-bottom: 0;
  }

  .sec05::before {
    background: url("../images/sec05_bg_sp.png") top center no-repeat;
    height: 600px;
    top: -110px;
  }

  .sec05-ttl {
    padding: 0;
    margin: 0 auto 35px;
    width: 274px;
  }

  .sec06 {
    /* background: url("../images/sec06_bg_sp.svg") top center no-repeat; */
    padding-top: 90px;
    margin-top: -30px;
    margin-bottom: 30px;
  }

  .sec06-point {
    margin-bottom: 50px;
  }

  .sec06-point .inlayout {
    display: block;
  }

  .sec06-point .inlayout .l-img {
    padding-right: 110px;
    position: relative;
    width: fit-content;
    margin: 25px auto 0;
  }

  .sec06-point .inlayout .l-img .person {
    width: 200px;
  }

  .sec06-point .inlayout .l-img .effect {
    position: absolute;
    top: 0;
    right: 0;
  }

  .sec06-point .inlayout .l-img::before {
    content: "";
    background: url(../images/sec06_deco.svg) no-repeat top center / cover;
    position: absolute;
    bottom: -20px;
    left: -60px;
    width: 120px;
    height: 120px;
    z-index: -1;
  }

  .sec06-point .inlayout .l-desc {
    position: relative;
  }

  .sec06-point .inlayout .l-desc.top01 {
    padding-top: 0;
  }

  .sec06-point .inlayout .l-desc.top02 {
    padding-top: 0;
  }

  .sec06-point .inlayout .num {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 80px;
  }

  .sec06-point .inlayout .l-ttl {
    font-size: 2.2rem;
    line-height: 1.5;
    padding-left: 100px;
    margin-bottom: 25px;
  }

  .sec06-point .inlayout .l-txt {
    font-size: 1.8rem;
  }

  .sec06-point .inserif {
    padding: 30px;
    margin-top: 70px;
    position: relative;
  }

  .sec06-point .inserif::after {
    content: "";
    background: url(../images/sec06_deco02.svg) no-repeat top center / cover;
    position: absolute;
    bottom: -90px;
    right: -80px;
    width: 189px;
    height: 189px;
    z-index: -1;
  }

  .sec06-point .inserif .effect {
    top: -70px;
    right: 0;
    width: 94px;
  }

  .sec06-point .inbox {
    padding: 30px;
  }

  .sec07 {
    background: none;
    padding: 0;
    margin-bottom: 60px;
  }

  .sec07::after {
    display: none;
  }

  .sec07-ttl {
    margin-bottom: 30px;
  }

  .sec07-ttl .en {
    display: none;
  }

  .sec07-list {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 45px;
  }

  .sec07-bg-sp {
    position: relative;
  }

  .sec07-bg-sp::after {
    background: #FFFF9D;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    height: 130px;
    width: 100%;
    z-index: -1;
  }

  .sec07-target {
    margin-bottom: 50px;
  }

  .sec07-target .txt01 {
    font-size: 1.6rem;
    height: 46px;
    margin: 0 auto 10px;
    width: 54%;
  }

  .sec07-target .txt02 {
    font-size: 3.4rem;
    gap: 10px;
    margin-bottom: 40px;
  }

  .sec07-target .txt02::before,
  .sec07-target .txt02::after {
    height: 19px;
    width: 17px;
  }

  .sec07-target .txt02::after {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }

  .sec07-target .img01 {
    margin-bottom: 50px;
  }

  .sec07-target .img02 {
    margin-bottom: 20px;
  }

  .sec07-target .img02 .intxt {
    position: static;
    margin-top: 30px;
    -webkit-transform: none;
    transform: none;
  }

  .sec07-banner {
    display: block;
    padding: 40px 30px;
  }

  .sec07-banner .l-img {
    margin: 25px auto 0;
    width: 100%;
  }

  .sec07-banner .inlogo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    gap: 8px;
  }

  .sec07-banner .inlogo .logo01 {
    width: 215px;
  }

  .sec07-banner .inlogo .logo02 {
    width: 180px;
  }

  .sec07-banner .inlogo .txt {
    font-size: 2.1rem;
  }

  .sec07-banner .intxt {
    padding-top: 18px;
  }

  .sec08 {
    background: url("../images/sec08_bg_sp.svg") top 20px center no-repeat #FFDEDF;
    padding: 60px 0 80px;
  }

  .sec08-layout {
    display: block;
    margin: auto;
  }

  .sec08-layout .l-img {
    margin-bottom: 60px;
    width: 100%;
  }

  .sec08-layout .l-img .en {
    font-size: 6.4rem;
    left: -25px;
    bottom: 45px;
  }

  .sec08-layout .l-img .inimg {
    margin: auto;
    max-width: 300px;
  }

  .sec08-layout .l-ttl {
    font-size: 3.3rem;
    margin-bottom: 30px;
  }

  .sec08-layout .sub-ttl {
    margin-bottom: 30px;
  }

  .sec08-list {
    display: block;
    margin: 20px auto 0;
  }

  .sec08-list .item {
    margin-bottom: 20px;
  }

  .sec09 {
    background: url("../images/sec09_bg_sp.svg") top 50px center no-repeat;
    padding: 50px 0 70px;
  }

  .sec09-ttl {
    margin-bottom: 100px;
  }

  .sec09-ttl .en {
    display: none;
  }

  .sec09-types {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .sec09-types .single {
    display: block;
  }

  .sec09-types .single.type02 .single-img .en {
    top: auto;
    left: auto;
    right: -10px;
    bottom: -10px;
  }

  .sec09-types .single-img {
    margin-bottom: 30px;
  }

  .sec09-types .single-img .en {
    top: -64px;
    left: 10px;
    width: 90%;
  }

  .sec09-types .single-box {
    padding: 15px 5px 25px;
    margin-bottom: 30px;
  }

  .sec09-types .single-box .box-ttl01 {
    font-size: 2.6rem;
  }

  .sec09-types .single-box .box-ttl01 span {
    padding: 0 5px;
  }

  .sec09-types .single-box .box-ttl02 {
    font-size: 1.6rem;
  }

  .sec09-types .single-box .box-ttl03 {
    font-size: 3.1rem;
    margin-bottom: 10px;
  }

  .sec09-types .single-list {
    margin-top: 30px;
  }

  .sec09-types .list-item {
    gap: 15px;
  }

  .sec09-types .list-item+.list-item {
    margin-top: 30px;
  }

  .sec09-types .list-item .l-img {
    width: 100px;
  }

  .sec09-types .list-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 13px;
    margin-bottom: 10px;
  }

  .sec09-types .list-time dt {
    background: #A0E0DB;
    border-radius: 5px;
    font-family: var(--font01);
    padding: 1px 15px;
  }

  .sec10 {
    padding: 50px 0 80px;
  }

  .sec10::after {
    background: url("../images/sec10_bg.png") bottom center no-repeat;
    content: "";
    display: block;
    height: 1967px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
  }

  .sec10-ttl {
    margin: auto;
    width: 222px;
  }

  .sec10-subttl {
    font-size: 2rem;
    margin-top: 20px;
  }

  .sec10-types {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 35px;
  }

  .sec10-types .single {
    padding: 35px 20px 45px;
  }

  .sec10-types .l-ttl {
    font-size: 2.6rem;
    margin-bottom: 15px;
  }

  .sec10-types .l-ttl span {
    padding: 0 5px;
  }

  .sec10-types .sub-ttl {
    display: block;
    font-size: 1.7rem;
    height: auto;
    margin-bottom: 20px;
  }

  .sec10-types .l-img {
    text-align: center;
  }

  .sec11 {
    background: url("../images/sec11_bg_sp.svg") top center no-repeat;
    padding: 50px 0 0;
  }

  .sec11-ttl {
    margin-bottom: 30px;
  }

  .sec11-point {
    margin-bottom: 40px;
  }

  .sec11-point .point-ttl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .sec11-point .point-ttl .num {
    padding-top: 5px;
    width: 76px;
  }

  .sec11-point .point-ttl .txt {
    font-size: 2.6rem;
    line-height: 1.8;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .sec11-point .point-ttl .txt span {
    border-bottom: 4px dotted #AD99D0;
    display: inline;
    padding-bottom: 0;
  }

  .sec11-point .point-layout {
    display: block;
  }

  .sec11-point .point-layout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .sec11-card {
    margin-top: 60px;
  }

  .sec11-card .card-ttl {
    font-size: 2rem;
    gap: 5px;
    margin-bottom: 60px;
  }

  .sec11-card .card-ttl::before,
  .sec11-card .card-ttl::after {
    height: 19px;
    width: 17px;
  }

  .sec11-card .card-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 60px 0;
  }

  .sec11-word {
    background: #E6E0F1;
    border-radius: 5px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    gap: 15px;
    padding: 10px 25px;
    margin: 5px 0;
  }

  .sec11-word li {
    background: url("../images/sec11_word_icon.svg") center left no-repeat;
    font-family: var(--font01);
    padding-left: 35px;
    min-height: 25px;
  }

  .sec11-point-layout {
    display: block;
  }

  .sec11-point-layout.reverse .l-ttl {
    margin-inline: 0;
  }

  .sec11-point-layout .l-img {
    margin: 0 auto 30px;
    width: 100%;
  }

  .sec11-point-layout .l-ttl {
    font-size: 3.5rem;
    line-height: 1.3;
    margin-bottom: 30px;
    margin-inline: 0;
  }

  .sec11-point-layout .l-ttl::before {
    bottom: 0;
  }

  .sec11-point-skill {
    margin: 40px 0 50px;
  }

  .sec11-point-skill .intxt {
    font-size: 2.4rem;
  }

  .sec11-point-txt {
    margin: 30px 0;
  }

  #sec11_slider .splide__slide {
    padding: 30px;
  }

  #sec11_slider .splide__slide .job {
    width: min(100%, 200px);
  }

  #sec11_slider .splide__slide .times {
    width: min(100%, 200px);
  }

  .sec11-recruit {
    background: #5CC9C1;
    padding: 74px 0 60px;
    margin-top: 60px;
  }

  .sec11-recruit::before,
  .sec11-recruit::after {
    display: none;
  }

  .sec11-recruit .sec11-recruit-box {
    padding: 40px 40px 30px;
  }

  .sec11-recruit .sec11-recruit-box .box-ttl {
    margin-bottom: 25px;
  }

  .sec11-recruit .sec11-recruit-box .colored {
    font-size: 1.8rem;
  }

  .sec12 {
    background: none;
    padding: 0;
    margin-top: 15px;
  }

  .sec12-ttl {
    margin-bottom: 20px;
  }

  .sec12-ttl .en {
    display: none;
  }

  .sec12-box {
    width: 100%;
  }

  .sec12-box .box-img {
    display: none;
  }

  .sec12-box .box-ttl {
    padding: 15px;
    text-align: center;
  }

  .sec12-box .inner {
    padding: 10px 30px 30px;
  }

  .sec12-box .box-list li {
    background-position: top 18px left 3px;
    padding: 15px 0 15px 50px;
  }

  .sec12-box .box-txt {
    display: none;
    margin: 30px auto 0;
    width: 100%;
  }

  .sec13 {
    background: none;
    padding: 0;
    margin: 100px auto 200px;
  }

  .sec13-ttl {
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .sec13-table tr th {
    width: 25%;
  }

  .sec13-table th {
    text-align: center;
    padding: 40px 0 30px;
  }

  .sec13-table td {
    padding: 40px 20px 30px;
  }

  .sec13-table .checked {
    display: block;
  }

  .sec14 {
    padding: 125px 0 100px;
  }

  .sec14 .sec14-ttl {
    top: -90px;
    width: 180px;
  }

  .table-style01 colgroup,
  .postdata table colgroup {
    display: none;
  }

  .table-style01 th,
  .postdata table th,
  .table-style01 td,
  .postdata table td {
    border-top: none;
    display: block;
    padding: 8px 12px;
    width: 100%;
  }

  .table-style02 {
    font-size: 1.3rem;
  }

  .table-style02 th,
  .table-style02 td {
    padding: 8px 5px;
  }

  /*普通投稿*/
  .postdata table th,
  .postdata table td {
    border-top: none !important;
    display: block !important;
    padding: 8px 12px !important;
    width: 100% !important;
  }

  #fixnavi_pc {
    display: none;
  }

  .humberger {
    color: #fff;
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
  }

  .humberger span {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 12px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .humberger span:nth-of-type(1) {
    top: 13px;
  }

  .humberger span:nth-of-type(2) {
    top: 18px;
  }

  .humberger span:nth-of-type(3) {
    top: 23px;
  }

  .humberger.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }

  .humberger.is-open span:nth-of-type(2) {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }

  .humberger.is-open span:nth-of-type(3) {
    opacity: 0;
  }

  /*------------
  下層レイアウト
  --------------*/
  #under {
    padding: 30px 0 10px;
  }

  .copyright {
    text-align: center;
  }

  .breadcrumb {
    padding: 8px 0;
    font-size: 1rem;
    line-height: 1.5;
  }

  .column2 {
    display: block;
    padding: 0;
    margin: auto;
    width: 90%;
  }

  .effect,
  .effect--moved,
  .effect-each,
  .effect-each--moved,
  .effect-each02,
  .effect-each02--moved {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }

  /*------------
  下層パーツ
  --------------*/
  .u-layout,
  .l-flexL,
  .l-flexL_auto,
  .l-flexL_small,
  .u-layout_r,
  .l-flexR,
  .l-flexR_auto,
  .l-flexR_small {
    display: block;
  }

  .u-layout .l-img,
  .l-flexL .l-img,
  .l-flexL_auto .l-img,
  .l-flexL_small .l-img,
  .u-layout_r .l-img,
  .l-flexR .l-img,
  .l-flexR_auto .l-img,
  .l-flexR_small .l-img {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
  }

  .u-layout_r .l-img,
  .l-flexR .l-img,
  .l-flexR_auto .l-img,
  .l-flexR_small .l-img {
    margin: 0 auto 30px;
  }

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

  .l-imgL .l-img,
  .l-imgL_auto .l-img,
  .l-imgR .l-img {
    float: none;
    margin: 0 auto 30px;
    width: 100%;
  }

  .l-flexL,
  .l-flexR,
  .l-flexL_S,
  .l-flexL_auto,
  .l-flexR_auto {
    display: block;
  }

  .l-flexL .l-img,
  .l-flexR .l-img,
  .l-flexL_S .l-img,
  .l-flexL_auto .l-img,
  .l-flexR_auto .l-img {
    display: block;
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
  }

  .l-flexL_small .l-img,
  .l-flexR_small .l-img {
    width: 100%;
  }

  .flex-center {
    display: block;
    text-align: center;
  }

  .flex-center .item+.item {
    margin: 1em auto 0;
  }

  .l-flex_2 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px 0;
  }

  .l-flex_2.spcol2 {
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px 20px;
  }

  .l-flex_2 .l-box01 {
    padding: 30px;
  }

  .l-flex_2_small {
    display: block;
  }

  .l-flex_2_small .item {
    width: 100%;
  }

  .l-flex_2_small .item:nth-child(n+2) {
    margin-top: 0;
  }

  .l-flex_3,
  .l-flex_3_columns {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px 4%;
  }

  .l-flex_3.spcol2,
  .spcol2.l-flex_3_columns {
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
  }

  .l-flex_3_columns.sp_2columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .l-flex_3_columns.sp_2columns::before {
    display: none;
  }

  .l-flex_3_columns.sp_2columns.u-btn .item:nth-child(n+2) {
    margin-top: 20px;
  }

  .l-flex_3_columns.sp_2columns .item {
    margin-bottom: 0;
    width: 100%;
  }

  .l-flex_3_fix {
    display: block;
    margin-bottom: -30px;
  }

  .l-flex_3_columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-flex_3_columns::before {
    display: none;
  }

  .l-flex_3_columns .item {
    width: 48%;
  }

  .l-flex_4 .item {
    width: 48%;
  }

  .l-flex_4 .item:nth-child(n+3) {
    margin-top: 20px;
  }

  .l-flex_4 .item .item-ttl {
    text-align: left;
  }

  .l-flex_5 {
    -ms-grid-columns: 1fr 1.5% 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 1.5%;
  }

  .l-flex.col1 {
    display: block;
  }

  .l-flex.col1 .item {
    margin: 0 auto 10px;
  }

  /*------------
  下層common
  --------------*/
  /*------------
  Commmon
  --------------*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .mb30 {
    margin-bottom: 15px;
  }

  .mb40 {
    margin-bottom: 20px;
  }

  /* ナビ本体 */
  .pc-navi {
    display: none;
  }

  .contact-form colgroup {
    display: none;
  }

  .contact-form table {
    margin: 0 0 30px;
  }

  .contact-form table tr {
    border-bottom: 1px dashed #CCC;
  }

  .contact-form table th,
  .contact-form table td {
    display: block;
    max-width: 100%;
  }

  .contact-form table th {
    padding: 15px 0 10px;
  }

  .contact-form table td {
    padding: 0 0 15px;
  }

  .contact-form .btn {
    margin-top: 1em;
  }

  .contact-form .birthday {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .contact-form .birthday select {
    width: auto;
  }

  .contact-form .birthday .year,
  .contact-form .birthday .month {
    margin: 0 5px;
  }

  .contact-form .birthday .day {
    margin-left: 5px;
  }

  .contact-form table,
  .contact-form tbody,
  .contact-form tr {
    display: block;
  }

  .contact-form .submit-btn [type=submit] {
    padding: 15px;
    width: 250px;
  }

  .contact-form .submit-btn [type=submit].back-btn {
    margin-left: 25px;
  }
}

.u-section .contact-form .submit-btn [type=submit] {
  background: var(--color01);
  border-color: var(--color01);
}
