@charset "UTF-8";

:root {
  --color_bg: #fff;
  --color_text: #311D08;
  --color_link: #333;
  --color_border: #e6e6e6;
  --color01: #006788;
  --color02: #F4F2EF;
  --color03: #FF8C00;
  --color_brown: #C88556;
  --font00: TsukuGoPr5N-M, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  --font00_b: TsukuGoPr5N-D;
  --font01: TsukuMinPr5N-B, serif;
  --font02: "Cormorant Garamond", 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: 8px;
}

.circle {
  border-radius: 50%;
}

.medium {
  font-weight: 500;
}

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

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

.font-sizeL {
  font-size: 2rem;
}

@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-type02 .l-img a, .post-type01 .single-layout .l-img a, #pagetop a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.opacity:hover, .post-type02 .l-img a:hover, .post-type01 .single-layout .l-img a:hover, #pagetop 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: 100px;
}

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

body {
  font-family: var(--font00);
  font-size: 1.6rem;
  color: #333;
  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.5rem;
    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 {
  width: 960px;
}

@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.sticky {
  overflow: initial;
}

.u-bg01 {
  background: #E0FAF5;
  padding: 120px 0;
  position: relative;
}

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

.u-bg02 {
  background: #EFF4FF;
  padding: 80px 0;
}

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

.u-bg03 {
  background: url("../images/share/u-box_mark04.svg") no-repeat, url("../images/share/u-box_mark05.svg") no-repeat, url("../images/share/u-bg03.jpg") no-repeat;
  background-position: top 170px left, right bottom, center;
  background-size: auto, auto, cover;
  padding: 80px 0;
}

@media screen and (max-width: 800px) {
  .u-bg03 {
    background-position: top 30px left, right bottom, center;
    background-size: 60px auto, 40px auto, cover;
    padding: 60px 0;
  }
}

/*------------
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: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
}

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

.h-layout01 .h-logo {
  background: #fff;
  padding: 50px;
  border-radius: 0 0 30px 0;
  -webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.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 .pc-navi_list {
  color: #fff;
}

.h-side {
  padding: 15px 30px;
  margin-left: auto;
}

.h-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
}

.h-numbers .item {
  display: inline-block;
  line-height: 1;
}

#header-fixed {
  background: rgba(255, 255, 255, 0.95);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px 30px;
  width: 100%;
  z-index: 999;
}

#header-fixed .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#header-fixed .pc-navi {
  margin-left: 30px;
}

#header-fixed .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 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: 10px;
}

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

.pc-navi_list .item>a:hover, .pc-navi_list .item>.nolink:hover {
  text-decoration: underline;
}

.pc-navi_list .item>a, .pc-navi_list .item>.nolink {
  display: block;
  font: 1.5rem/1.5 var(--font01);
  letter-spacing: 0.1em;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  padding: 10px 5px;
  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: 1px;
  -webkit-transition: background 0.6s ease;
  transition: background 0.6s ease;
  width: 100%;
}

.pc-navi-haschild {
  position: relative;
}

.pc-navi_child {
  background: #fff;
  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: 15px 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.5rem/1.8 var(--font01);
  padding-left: 22px;
  position: relative;
}

.pc-navi_child .child a::before {
  background: #B49A38;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 14px;
  left: 0;
  width: 12px;
}

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

.pc-navi_siteinfo {
  width: 360px;
}

.pc-navi_siteinfo .inlogo {
  margin-bottom: 30px;
}

.pc-navi_siteinfo .h-tels .item {
  font-family: var(--font01);
}

.pc-navi_siteinfo .h-tels .item+.item {
  margin-top: 30px;
}

.pc-navi_siteinfo .h-tels .txt {
  font-size: 1.7rem;
  margin-bottom: 3px;
}

.pc-navi_siteinfo .f-sec01-btns {
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 35px;
}

.pc-navi_sitemap {
  width: 800px;
}

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

.pc-navi_sitemap .h-list01 .item>a {
  font: 2rem/1.5 var(--font01);
  margin-bottom: 15px;
}

.pc-navi_sitemap .h-list02 .child>a {
  background: url("../images/share/arrow.svg") top 11px left no-repeat;
  font: 2rem/1.5 var(--font01);
  margin-bottom: 15px;
  padding-left: 16px;
}

.pc-navi_sitemap .h-list03 {
  margin-left: 20px;
}

.pc-navi_sitemap .h-list03 .grandnsun>a {
  background: url("../images/share/icon_line.svg") top 14px left no-repeat;
  font: 1.8rem/1.5 var(--font01);
  margin-bottom: 10px;
  padding-left: 15px;
}

.pc-navi_sitemap .h-list04 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 5% auto 5% auto;
  grid-template-columns: repeat(3, auto);
  gap: 5%;
}

.sp-navi {
  display: none;
}

.sp-modal {
  display: none;
}

.humberger {
  display: none;
}

.hero_space {
  padding-top: 100px;
  position: relative;
  z-index: 1;
}

.hero_space::before {
  background: #F4F2EF;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 340px;
  width: min(1600px, 90%);
  z-index: 1;
}

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

  .hero_space::before {
    display: none;
  }
}

@-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 {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/arrow_right.svg") right center no-repeat;
  display: inline-block;
  font: 2rem/1.5 var(--font02);
  padding: 5px 0;
  text-align: left;
  width: 200px;
  z-index: 3;
}

.t-btn.white {
  background-image: url("../images/share/arrow_right_w.svg");
}

.t-btn:hover {
  opacity: 0.6;
}

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

.t-btn02 {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/t_arrow02.svg") right center no-repeat;
  display: inline-block;
  line-height: 1.5;
  padding-right: 40px;
  position: relative;
  text-align: left;
  z-index: 2;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}

.t-btn02:hover {
  opacity: 0.6;
}

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

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

.t-ttl01 {
  padding-top: 30px;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}

.t-ttl01 .en {
  color: #FFD800;
  font: 8rem/1 var(--font01);
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.t-ttl01 .jp {
  color: #006788;
  font: 6.5rem/1.5 var(--font01);
  margin-top: 5px;
}

@media screen and (max-width: 800px) {
  .t-ttl01 {
    padding-top: 35px;
    margin-bottom: 80px;
  }

  .t-ttl01.oneline {
    padding-top: 5px;
    margin-bottom: 60px;
  }

  .t-ttl01 .en {
    font-size: 5rem;
    line-height: 1.3;
    top: 0;
  }

  .t-ttl01 .jp {
    font-size: 4rem;
  }
}

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

#t-banner {
  display: none;
  position: fixed;
  bottom: 160px;
  left: 0;
  right: 0;
  margin: auto;
  width: min(1024px, 90%);
  z-index: 99;
}

#t-banner .message {
  width: 640px;
}

#t-banner .info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

#t-banner .l-ttl {
  font: 3rem/1.5 var(--font01);
  text-align: center;
}

#t-banner .inflex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#t-banner .btn {
  margin-top: 10px;
}

#t-banner .inner {
  background: #006788;
  border-radius: 0 50px 0 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding: 20px 40px 30px;
}

.hero {
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero .hero_movie {
  border-radius: 0 0 0 50px;
  overflow: hidden;
  position: relative;
  width: min(1600px, 90%);
}

.hero .hero_movie .hero_txt {
  position: absolute;
  left: 100px;
  bottom: 80px;
  z-index: 1;
}

.hero .hero_movie video {
  width: 100%;
  vertical-align: bottom;
}

.hero .scroll {
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.hero .hero_btn {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: #006788;
  border-radius: 10px 0 0 0;
  display: block;
  padding: 20px 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 240px;
}

.hero .hero_btn:hover {
  opacity: 0.6;
}

.hero_ttl .en {
  color: #555451;
  font: min(10rem, 6vw)/1 var(--font02);
  letter-spacing: 0.1em;
}

.hero_ttl .jp {
  font: min(3.4rem, 2vw)/1.5 var(--font01);
  letter-spacing: 0.1em;
  margin-top: 40px;
}

.sec01 {
  margin: 80px auto 240px;
}

.sec01-txt {
  font: 2.2rem/1.5 var(--font01);
  margin-bottom: 30px;
  text-align: center;
}

.sec01-layout .l-ttl {
  font: 3.2rem/1.5 var(--font01);
  margin-bottom: 20px;
  text-align: center;
}

.sec01-layout .l-ttl span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, rgba(252, 214, 0, 0.3)));
  background: linear-gradient(transparent 80%, rgba(252, 214, 0, 0.3) 80%);
}

.sec01-layout .inlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sec01-layout .inlist li {
  background: url("../images/share/check.svg") top 16px left/auto no-repeat;
  font: 2.2rem/1.5 var(--font01);
  padding: 5px 0 5px 24px;
  position: relative;
}

.sec02 {
  color: #fff;
  margin: 240px auto 80px;
  position: relative;
  padding: 80px 0;
}

.sec02 .t-ttl01 .en, .sec02 .t-ttl01 .jp {
  color: #fff;
}

.sec02 .effect {
  position: absolute;
  bottom: 100%;
  right: 60px;
  z-index: 1;
}

.sec02 .frame {
  background: url("../images/sec02_effect02.svg") top 120px center/cover no-repeat, -webkit-gradient(linear, left top, left bottom, from(#006788), to(#0694c1));
  background: url("../images/sec02_effect02.svg") top 120px center/cover no-repeat, linear-gradient(#006788 0%, #0694c1 100%);
  border-radius: 0px 50px 50px 0px;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% + 700px);
  max-width: 98%;
  z-index: -1;
}

.sec02-dl dt {
  background: url("../images/sec02_icon.svg") top 14px left/auto no-repeat;
  border-bottom: 1px solid #fff;
  font: 2.2rem/1.5 var(--font01);
  padding: 3px 0 13px 24px;
}

.sec02-dl dd {
  margin-top: 15px;
}

.sec02-dl dd+dt {
  margin-top: 20px;
}

.sec02-dl .inbox {
  background: #fff;
  border-radius: 10px;
  color: #333;
  padding: 30px;
  margin-top: 30px;
}

.sec02-ol li {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
}

.sec02-ol li+li {
  margin-top: 1em;
}

.sec02-ol .num {
  color: #FCD800;
}

.sec02-ol a {
  display: inline-block;
}

.sec02-ol a:hover {
  text-decoration: underline;
}

.sec02-layout {
  margin-top: 40px;
}

.sec02-layout .l-ttl {
  font: 2.2rem/1.5 var(--font01);
  text-align: center;
  margin-bottom: 20px;
}

.sec03 {
  position: relative;
  padding-bottom: 50px;
  margin: 80px auto 240px;
}

.sec03 .effect {
  position: absolute;
  bottom: 330px;
  left: 60px;
  z-index: -1;
}

.sec03 .frame {
  background: -webkit-gradient(linear, left top, left bottom, from(#e4f4fa), to(#bee5f4));
  background: linear-gradient(#e4f4fa 0%, #bee5f4 100%);
  border-radius: 50px 0 0 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 330px;
  width: calc(50% + 700px);
  max-width: 98%;
  z-index: -1;
}

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

.sec03-list .s-img {
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
  margin-bottom: 15px;
}

.sec03-list .s-img::before {
  background: #006788;
  content: "";
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  display: block;
  height: 14px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 14px;
  z-index: 1;
}

.sec03-list .s-ttl {
  font: 2.2rem/1.5 var(--font01);
  margin-bottom: 10px;
  text-align: center;
}

.sec03-list .indl {
  margin-top: 10px;
}

.sec03-list .indl dt {
  font: 1.8rem/1.5 var(--font01);
  padding-left: 16px;
  position: relative;
  margin-bottom: 5px;
}

.sec03-list .indl dt::before {
  border-radius: 50%;
  background: #006788;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  z-index: 1;
}

.sec04 {
  margin: 240px auto;
  position: relative;
  padding: 80px 0 100px;
}

.sec04 .t-ttl01 .en, .sec04 .t-ttl01 .jp {
  color: #fff;
}

.sec04 .effect {
  position: absolute;
  bottom: 100%;
  right: 60px;
  z-index: 1;
}

.sec04 .frame {
  background: url("../images/sec04_effect02.svg") bottom center/cover no-repeat, -webkit-gradient(linear, left top, left bottom, from(#006788), to(#0694c1));
  background: url("../images/sec04_effect02.svg") bottom center/cover no-repeat, linear-gradient(#006788 0%, #0694c1 100%);
  border-radius: 0 50px 50px 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(50% + 700px);
  max-width: 98%;
  z-index: -1;
}

.sec04-table {
  color: #fff;
}

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

.sec04-table th {
  border-top: 1px solid;
  border-right: 1px solid;
  font: 1.8rem/1.5 var(--font01);
  padding: 10px 15px;
}

.sec04-table td {
  border-top: 1px solid;
  line-height: 1.5;
  padding: 10px 15px;
}

.sec04-table tr:last-child {
  border-bottom: 1px solid;
}

.sec04-table .table-name {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1em 1fr;
  grid-template-columns: auto 1fr;
  gap: 0.5em 1em;
}

.sec05 {
  margin: 240px auto 80px;
  position: relative;
  padding: 80px 0 100px;
}

.sec05 .effect {
  position: absolute;
  bottom: 100%;
  left: 60px;
  z-index: 1;
}

.sec05 .frame {
  background: -webkit-gradient(linear, left top, left bottom, from(#e4f4fa), to(#bee5f4));
  background: linear-gradient(#e4f4fa 0%, #bee5f4 100%);
  border-radius: 50px 0 0 50px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% + 700px);
  max-width: 98%;
  z-index: -1;
}

.sec05-layout {
  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: 60px;
  margin-bottom: 50px;
}

.sec05-layout .l-img {
  text-align: center;
  width: 380px;
}

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

.sec05-layout .l-name {
  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;
  gap: 30px;
}

.sec05-layout .l-name .desc {
  font: 2rem/1.5 var(--font01);
  color: #006788;
}

.sec05-layout .l-name .name {
  font: 3rem/1.5 var(--font01);
}

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

.sec06 {
  margin: 160px 0 120px;
}

.t_slider {
  position: relative;
}

.t_slider .splide__arrows .splide__arrow {
  background: none;
}

.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: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 0;
  bottom: -15px;
  z-index: 999;
}

.t_slider .splide__pagination .splide__pagination__page {
  background: #939AA0;
  height: 1px;
  margin: 0;
  width: 50px;
}

.t_slider .splide__pagination .splide__pagination__page.is-active {
  background: #88C222;
  -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-post .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px solid #DBD9CE;
  display: block;
  padding: 15px 0;
}

.t-post .single .time {
  color: var(--color01);
  font: 1.4rem/1.5 var(--font02);
  letter-spacing: 0.1em;
}

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

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

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

.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 .l-img {
  overflow: hidden;
  height: 160px;
  margin-bottom: 15px;
}

.t-post02 .single .l-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: 1.4rem/1.5 var(--font02);
}

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

.t-post02 .single .category {
  color: #8D897D;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.5;
  margin: 0 20px 5px 0;
}

.contact-box {
  background: #EEF5F4;
  padding: 30px 30px;
  position: relative;
  margin-inline: auto;
  max-width: 720px;
}

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

.contact-box .inlayout {
  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;
}

.contact-box .inlayout .item+.item {
  margin-left: 28px;
}

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

  .contact-box .box-ttl {
    font-size: 1.6rem;
    padding-bottom: 10px;
    margin: 0 auto 35px;
    text-align: center;
  }

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

  .contact-box .inlayout .item+.item {
    margin: 15px auto 0;
  }
}

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

.contact-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px 30px;
}

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

.contact-btns.col1 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.contact-btns .webbtn {
  border: 1px solid var(--color01);
  padding: 10px 15px;
  text-align: center;
  width: 180px;
}

.contact-btns .webbtn span {
  background: url("../images/share/web.svg") left center no-repeat;
  display: inline-block;
  padding-left: 28px;
}

.contact-btns .contactbtn {
  border: 1px solid var(--color01);
  padding: 10px 15px;
  text-align: center;
  width: 180px;
}

.contact-btns .contactbtn span {
  background: url("../images/share/mail.svg") left center no-repeat;
  display: inline-block;
  padding-left: 28px;
}

.contact-btns a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.contact-btns a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .contact-btns {
    gap: 15px;
  }
}

.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 {
  background: #006788;
  color: #fff;
  text-align: center;
  padding: 20px 0 15px;
  margin-top: 150px;
}

.copyright {
  font-size: 1.2rem;
  font-family: var(--font01) Verdana;
  line-height: 1.5;
  margin-top: 5px;
}

.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;
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  margin: auto;
  z-index: 90;
  width: 50px;
}

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

.f-map {
  height: 345px;
}

.u-map {
  height: 400px;
}

.youtube {
  height: 400px;
}

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

#pagetop {
  position: fixed;
  right: 30px;
  bottom: 150px;
  z-index: 9;
  display: none;
}

#pagetop a {
  display: block;
}

@media screen and (max-width: 800px) {
  #pagetop {
    display: none;
  }
}

.grecaptcha-badge {
  z-index: 1;
}

/*------------
下層レイアウト
--------------*/
#under {
  background: #fff;
  line-height: 2;
  position: relative;
  padding: 50px 0;
  word-break: break-all;
  overflow-x: hidden;
  z-index: 1;
}

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

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

  50% {
    left: -5px;
  }

  100% {
    left: 5px;
  }
}

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

  50% {
    left: -5px;
  }

  100% {
    left: 5px;
  }
}

.page-ttl {
  background: url("../images/share/page-ttl.jpg") center no-repeat;
  color: #fff;
  height: 430px;
  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;
  margin: auto;
  text-align: center;
  position: relative;
  padding: 0;
  width: 100%;
  z-index: 1;
}

.page-ttl.pediatric-dentistry {
  background: url("../images/share/page-ttl_pediatric-dentistry.png") center no-repeat;
}

.page-ttl .en {
  font: 12rem/1.3 var(--font02);
  text-transform: uppercase;
}

.page-ttl .jp {
  font: 3.4rem/1.5 var(--font01);
  letter-spacing: 0.1em;
}

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

  .page-ttl .en {
    font-size: 4rem;
  }

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

.breadcrumb {
  background: #fff;
  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;
}

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

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

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

.u-h2 {
  font: 3rem/1.5 var(--font01);
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 50px;
  text-align: center;
}

.u-h2::before {
  background: #B49A38;
  content: "";
  display: block;
  height: 50px;
  margin: 0 auto 10px;
  width: 1px;
}

@media screen and (max-width: 800px) {
  .u-h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}

.u-h3 {
  font: 2.6rem/1.5 var(--font01);
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 30px;
}

.u-h3::after {
  background: #B49A38;
  content: "";
  display: block;
  height: 1px;
  margin-top: 10px;
  width: 40px;
}

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

.u-h4 {
  color: #8D897D;
  font: 2rem/1.5 var(--font01);
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 800px) {
  .u-h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

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

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

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

.table-style01 td, .posttable td {
  border: 1px solid var(--color01);
  padding: 12px 10px;
  vertical-align: top;
  word-break: break-all;
}

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

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

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

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

.table-style01 .first th, .posttable .first th {
  background: #2CB9A4;
  color: #fff;
}

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

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

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

.post-type01 .single+.single {
  margin-top: 60px;
}

.post-type01 .single-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.post-type01 .single-layout .l-img {
  overflow: hidden;
  margin-right: 30px;
  width: 250px;
}

.post-type01 .single-layout .l-img a {
  display: block;
  height: 180px;
}

.post-type01 .single-layout .l-img img {
  -o-object-fit: none;
  object-fit: none;
  height: 100%;
  width: 100%;
}

.post-type01 .single-layout .l-desc {
  margin-top: 5px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.post-type01 .list-desc {
  margin-bottom: 1em;
}

.post-type01 .list-btn {
  margin-top: 1em;
}

.post-type01 time {
  font-size: 14px;
  color: #8a8a8a;
  letter-spacing: 2px;
  margin-right: 10px;
}

.post-type01 .category {
  display: inline-block;
  background: var(--color01);
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 10px;
  margin: 0 10px 8px 0;
}

@media screen and (max-width: 800px) {
  .post-type01 .single+.single {
    margin-top: 20px;
  }

  .post-type01 .single-layout .l-img {
    margin-right: 15px;
    width: 40%;
  }

  .post-type01 .single-layout .l-img a {
    height: 100px;
  }

  .post-type01 .list-desc, .post-type01 .list-txt {
    font-size: 11px;
  }

  .post-type01 .list-btn a {
    padding: 2px 20px 3px;
  }

  .post-type01 time {
    font-size: 12px;
  }

  .post-type01 .category {
    font-size: 11px;
    padding: 2px 5px 1px;
    margin: 0 5px 4px 0;
  }
}

.post-type02 .single+.single {
  margin-top: 50px;
}

.post-type02 .l-img a {
  display: block;
  height: 180px;
}

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

.post-type02 .l-ttl {
  font: 1.7rem/1.5 var(--font01);
  margin-bottom: 10px;
}

.post-type02 .l-ttl a {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  text-decoration: underline;
}

.post-type02 .l-ttl a:hover {
  text-decoration: none;
}

.post-type02 .l-ttl a:hover {
  opacity: 0.6;
}

.post-type02 .category {
  display: inline-block;
  border: 1px solid;
  color: var(--color01);
  font: 1.3rem/1.5 var(--font01);
  padding: 2px 10px;
}

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

  .post-type02 .l-img a {
    height: 140px;
  }

  .post-type02 time {
    font-size: 1.3rem;
  }

  .post-type02 .category {
    font: 1.1rem/1.5 "游ゴシック", "Yu Gothic", Yu Gothic, "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
  }
}

.post-type03 .single {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  border-bottom: 1px dotted var(--color01);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
}

.post-type03 .single .time {
  margin-right: 1.5em;
}

.post-type03 .single .l-ttl {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-decoration: underline;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-top: 3px;
}

.post-type03 .single:hover .l-ttl {
  text-decoration: none;
}

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

.postinfo {
  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;
}

.postinfo time {
  color: #ccc;
  font: 1.3rem/1.5 var(--font01);
  margin: 5px 10px 10px 0;
}

.postinfo span.category {
  background: var(--color01);
  padding: 0 5px;
  color: #fff;
  margin: 5px 10px 10px 0;
}

.post_category .category {
  display: inline-block;
  background: var(--color01);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 5px 1px;
  margin: 0 10px 5px 0;
}

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

/*------------
下層汎用
--------------*/
.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 {
  cursor: pointer;
}

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

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

.l-box01 {
  background: var(--color02);
  padding: 30px;
  position: relative;
}

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

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

.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;
  -ms-flex-align: center;
  align-items: center;
  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::before {
  background: var(--color01);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  content: "";
  display: block;
  height: 25px;
  width: 14px;
  margin-bottom: 3em;
}

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

.before-after .item-img img {
  height: 270px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.before-after .item-ttl {
  font: 2rem/1 var(--font02);
  text-transform: capitalize;
  margin-top: 1em;
}

@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 .item-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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-flow: row-reverse;
  flex-flow: row-reverse;
}

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

.l-style02 .l-img img {
  border-radius: 20px;
}

.l-style02 .l-desc {
  background: #FDF4F5;
  border-radius: 10px;
  margin-right: -100px;
  margin-top: 50px;
  padding: 40px 150px 35px 50px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.l-style02 .box-ttl {
  border-bottom: 3px dotted #D5B594;
  color: #E0FAF5;
  font: 2.4rem/1.5 var(--font01);
  padding-bottom: 5px;
  margin-bottom: 15px;
}

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

.merit-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 25% 0 1fr;
  grid-template-columns: 25% 1fr;
  gap: 10px 0;
}

.merit-grid dt {
  background: #333;
  color: #fff;
  font: 1.7rem/1.8 var(--font01);
  padding: 20px;
}

.merit-grid dd {
  background: #EFEFEF;
  padding: 15px 20px;
}

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

  .merit-grid dt {
    padding: 15px;
  }

  .merit-grid dd {
    padding: 15px;
  }

  .merit-grid dd+dt {
    margin-top: 15px;
  }
}

/*------------
下層paged
--------------*/
.modal_content {
  display: none;
  max-width: 1024px;
}

.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: 20px;
  gap: 20px;
}

.list-card .item.fill {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
}

.list-card .list-img {
  text-align: center;
}

.list-card .list-ttl {
  font: 1.8rem/2 var(--font01);
  text-align: center;
}

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

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

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

.list-card02.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-card02 .item {
  background: #D0D0D1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.list-card02 .num {
  margin-bottom: 10px;
  text-align: center;
}

.list-card02 .num span {
  background: var(--color01);
  border-radius: 15px;
  color: #fff;
  display: inline-block;
  font: 1.3rem/1.5 var(--font01);
  padding: 3px 20px;
}

.list-card02 .list-ttl {
  font: 1.8rem/2 var(--font01);
  text-align: center;
}

.list-card02 .list-img {
  margin-bottom: 15px;
  text-align: center;
}

.list-card02 .list-txt {
  padding-left: 32px;
}

.list-card02 .list-desc {
  margin-bottom: 15px;
}

.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 .num {
    text-align: center;
  }

  .list-card02 .num span {
    display: inline-block;
    background: var(--color01);
    color: #fff;
    font: 2rem/1.5 var(--font02);
    padding: 0 15px;
  }

  .list-card02 .item {
    padding-bottom: 30px;
  }
}

.list-card03.col2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 56px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}

.list-card03 .item {
  border: 2px solid var(--color01);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 40px;
}

.list-card03 .list-ttl {
  font-size: 2.2rem;
  font-weight: 500;
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
}

.list-card03 .list-ttl::before {
  background: var(--color01);
  border-radius: 50%;
  content: "";
  display: block;
  height: 17px;
  position: absolute;
  top: 10px;
  left: 0;
  width: 17px;
  z-index: 1;
}

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

  .list-card03 .item {
    padding-bottom: 30px;
  }
}

.list-disc {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 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: var(--color01);
  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.col2, .list-disc.col3 {
    display: block;
  }

  .list-disc.center3 {
    -ms-grid-columns: auto 8% auto;
    grid-template-columns: repeat(2, auto);
    gap: 10px 8%;
  }
}

/*------------
投稿パーツ
--------------*/
/*セレクト式カテゴリー*/
.select-area {
  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;
  margin: 0 auto 80px;
}

.select-area .select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 30px 0 0;
}

.select-area .select-ttl {
  display: inline-block;
  font-size: 1.6rem;
  margin: 0 15px 0 0;
}

.select-category {
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  text-overflow: "";
  background: #fff url(../images/share/select_down.svg) no-repeat;
  background-size: 20px;
  background-position: right center;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  color: #333;
  vertical-align: middle;
  height: 35px;
  min-width: 150px;
  padding: 5px 20px 5px 5px;
  font-size: 1.6rem;
}

.select-category::-ms-expand {
  display: none;
}

.tel_number {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/tel.svg") top 8px left no-repeat;
  color: #fff;
  font: 2.8rem/1.3 var(--font01);
  letter-spacing: 0.1em;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.tel_number:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .tel_number {
    background-size: 16px auto;
    background-position: top 5px left;
    letter-spacing: 0.05em;
    font-size: 1.9rem;
    padding-left: 23px;
  }
}

.fax_number {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/fax.svg") top 8px left no-repeat;
  color: #fff;
  font: 2.8rem/1.3 var(--font01);
  letter-spacing: 0.1em;
  display: inline-block;
  padding-left: 30px;
  position: relative;
  text-align: center;
  z-index: 2;
  white-space: nowrap;
}

.fax_number:hover {
  opacity: 0.6;
}

.btn_contact {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  background: url("../images/share/arrow.svg") right 18px center no-repeat #fff;
  color: #006788;
  font: 1.6rem/1.5 var(--font01);
  display: inline-block;
  padding: 15px 50px 15px 15px;
  width: 240px;
}

.btn_contact:hover {
  opacity: 0.6;
}

@media screen and (max-width: 800px) {
  .btn_contact {
    background-position: right 5px center;
    background-size: 25px auto;
    font-size: 1.3rem;
    padding: 3px 40px 3px 10px;
    text-align: right;
    width: auto;
  }
}

.form {
  margin-top: 30px;
}

.form-table {
  font-family: var(--font01);
  margin: auto;
  width: min(100%, 840px);
}

.form-table tr:not(:first-child) {
  border-top: 1px solid #ddd;
}

.form-table th {
  padding: 25px;
}

.form-table th>label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form-table td {
  padding: 25px;
}

.form-table input, .form-table textarea {
  background: #eee;
  display: block;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 10px 15px;
  width: 100%;
}

.form-table .hissu {
  background: #A70000;
  font-size: 1.5rem;
  padding: 0 10px;
  color: #fff;
}

input[type=submit] {
  -webkit-appearance: none;
  background: url("../images/share/arrow.svg") right 15px center no-repeat #006788;
  border: none;
  border-radius: 0;
  display: block;
  outline: none;
  color: #fff;
  cursor: pointer;
  font: 1.6rem/1.5 var(--font01);
  padding: 18px 40px;
  margin: 30px auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: min(300px, 80%);
}

input[type=submit]:hover {
  opacity: 0.7;
}

.alert.alert-danger {
  border-color: #f6cdcd;
  background-color: #f8dbdb;
  color: #732727;
  padding: 5px 10px;
}

input+.alert.alert-danger,
textarea+.alert.alert-danger {
  margin-top: 10px;
}

.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

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

@media screen and (max-width: 800px) {
  .f-small {
    font-size: 13px;
  }

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

  .f-map {
    height: 300px;
  }

  .u-map {
    height: 220px;
  }

  #t-banner {
    display: none;
    position: fixed;
    bottom: 0;
    margin: auto;
    width: 90%;
  }

  #t-banner .message {
    width: 100%;
  }

  #t-banner .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin: 10px auto 0;
  }

  #t-banner .l-ttl {
    font-size: 2.4rem;
  }

  #t-banner .inflex {
    gap: 5px;
  }

  #t-banner .btn {
    margin: auto;
  }

  #t-banner .inner {
    background: rgba(0, 102, 136, 0.9);
    border-radius: 0 30px 0 0;
    display: block;
    padding: 10px 10px 20px;
  }

  .hero {
    display: block;
    height: auto;
  }

  .hero .hero_movie {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .hero .hero_movie .hero_txt {
    left: 30px;
    bottom: 30px;
    width: 40%;
  }

  .hero .scroll {
    display: none;
  }

  .hero .hero_btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 20px;
    width: 30%;
  }

  .sec01 {
    margin: 80px auto;
  }

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

  .sec01-layout .l-ttl {
    font-size: 2.4rem;
  }

  .sec01-layout .inlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sec01-layout .inlist li {
    background-position: top 13px left;
    font-size: 1.8rem;
    padding: 5px 0 5px 24px;
    position: relative;
  }

  .sec02 {
    margin: 80px auto;
    padding: 80px 0;
  }

  .sec02 .effect {
    right: 15px;
    width: 15%;
  }

  .sec02 .frame {
    width: 100%;
    max-width: 100%;
  }

  .sec02-dl dt {
    background-position: top 12px left;
    font-size: 2rem;
  }

  .sec02-dl .inbox {
    padding: 20px;
  }

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

  .sec03 {
    padding-bottom: 80px;
    margin: 80px auto;
  }

  .sec03 .effect {
    left: 15px;
    bottom: 90%;
    width: 15%;
  }

  .sec03 .frame {
    height: 90%;
    width: 100%;
    max-width: 100%;
  }

  .sec03-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }

  .sec03-list .s-ttl {
    font-size: 2rem;
  }

  .sec04 {
    margin: 80px auto;
    padding: 80px 0;
  }

  .sec04 .effect {
    right: 15px;
    width: 15%;
  }

  .sec04 .frame {
    width: 100%;
    max-width: 100%;
  }

  .sec04-table th {
    font-size: 1.6rem;
    padding: 10px 5px;
  }

  .sec04-table td {
    padding: 10px 5px;
  }

  .sec04-table .table-name {
    gap: 0.5em;
  }

  .sec05 {
    margin: 80px auto;
    padding: 80px 0;
  }

  .sec05 .effect {
    left: 15px;
    width: 15%;
  }

  .sec05 .frame {
    width: 100%;
    max-width: 100%;
  }

  .sec05-layout {
    display: block;
  }

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

  .sec05-layout .l-desc {
    margin-top: 30px;
  }

  .sec05-layout .l-name {
    gap: 20px;
  }

  .sec05-layout .l-name .desc {
    font-size: 1.6rem;
  }

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

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

  .sec06 {
    margin: 80px 0;
  }

  .t-post .single {
    display: block;
    padding: 10px 0;
  }

  .t-post .single .time {
    font-size: 1.6rem;
    margin-right: 10px;
  }

  .t-post02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    padding: 0 0 15px;
  }

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

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

  .t-post03 {
    gap: 50px 0;
  }

  .t-post03 .single {
    display: block;
  }

  .t-post03 .single .l-img {
    height: 180px;
    margin: 0 auto 30px;
    width: 100%;
  }

  .t-post03 .single .l-desc {
    padding: 0;
  }

  .t-post03 .single .time {
    font-size: 1.4rem;
  }

  .table-style01 colgroup, .posttable colgroup {
    display: none;
  }

  .table-style01 th, .posttable th, .table-style01 td, .posttable td {
    border-top: none;
    display: block;
    padding: 8px 12px;
    width: 100%;
  }

  .table-style02 {
    font-size: 14px;
  }

  .table-style02 th, .table-style02 td {
    padding: 8px;
  }

  /*普通投稿*/
  .postdata table colgroup {
    display: none;
  }

  .postdata table th, .postdata table td {
    border-top: none;
    display: block;
    padding: 8px 12px;
    width: 100%;
  }

  .u-category .select {
    min-width: 200px;
  }

  .select-area {
    margin-bottom: 50px;
  }

  .select-area .select-item {
    display: block;
    margin: auto;
  }

  .select-area .select-ttl {
    margin: 0 0 10px;
  }

  .footer {
    margin: 0 auto 180px;
  }

  #fixnavi_pc {
    display: none;
  }

  #fixguide {
    font-size: 1.8rem;
    background: #979084;
    top: auto;
    bottom: 50px;
    left: 0;
    height: 60px;
    width: 100%;
  }

  #fixguide .inguide.is-open {
    top: -355px;
    top: -330px;
  }

  #fixguide .guide-content {
    padding: 30px;
  }

  .humberger {
    background: #8D897D;
    display: block;
    height: 55px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 102;
    width: 55px;
  }

  .humberger .icon span {
    background: #fff;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    width: 30px;
    margin: auto;
    -webkit-transition: 0.6s ease;
    transition: 0.6s ease;
  }

  .humberger .icon span:nth-of-type(1) {
    top: 18px;
  }

  .humberger .icon span:nth-of-type(2) {
    top: 26px;
  }

  .humberger .icon span:nth-of-type(3) {
    top: 34px;
  }

  .humberger.is-open .icon span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }

  .humberger.is-open .icon span:nth-of-type(2) {
    -webkit-transform: translateY(2px) rotate(-45deg);
    transform: translateY(2px) rotate(-45deg);
  }

  .humberger.is-open .icon span:nth-of-type(3) {
    opacity: 0;
  }

  .navihumberger {
    position: relative;
  }

  .navihumberger span {
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 15px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .navihumberger span:nth-of-type(1) {
    top: 13px;
  }

  .navihumberger span:nth-of-type(2) {
    top: 18px;
  }

  .navihumberger span:nth-of-type(3) {
    top: 23px;
  }

  .navihumberger.is-open span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .navihumberger.is-open span:nth-of-type(2) {
    opacity: 0;
  }

  .navihumberger.is-open span:nth-of-type(3) {
    -webkit-transform: translateY(-2px) rotate(-45deg);
    transform: translateY(-2px) rotate(-45deg);
  }

  /*------------
  下層レイアウト
  --------------*/
  #under {
    padding: 30px 0 10px;
  }

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

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

  .mb30 {
    margin-bottom: 15px;
  }

  .mb40 {
    margin-bottom: 20px;
  }

  .header-frame {
    position: relative;
  }

  .h-layout01 {
    display: block;
    padding: 0;
  }

  .h-layout01 .h-logo {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    text-align: center;
    display: block;
  }

  .h-layout01 .h-logo a {
    width: 35%;
  }

  .h-layout01 .h-side {
    display: none;
  }

  /* ナビ本体 */
  .pc-navi {
    padding: 30px 4%;
  }

  .pc-navi_content {
    display: block;
    padding: 0;
  }

  .pc-navi_content .incontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
    gap: 15px 0;
  }

  .pc-navi_siteinfo {
    width: 100%;
  }

  .pc-navi_siteinfo .inlogo {
    margin-bottom: 15px;
  }

  .pc-navi_siteinfo .h-tels .item+.item {
    margin-top: 20px;
  }

  .pc-navi_siteinfo .h-tels .txt {
    font-size: 1.5rem;
  }

  .pc-navi_siteinfo .f-sec01-btns {
    gap: 15px;
    margin-top: 20px;
  }

  .pc-navi_sitemap {
    margin-top: 30px;
    width: 100%;
  }

  .pc-navi_sitemap .h-list01 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 4%;
  }

  .pc-navi_sitemap .h-list01 .item>a {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .pc-navi_sitemap .h-list01 .fill {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }

  .pc-navi_sitemap .h-list02 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4% 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 4%;
  }

  .pc-navi_sitemap .h-list02 .child>a {
    background-position: top 8px left;
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .pc-navi_sitemap .h-list03 .grandnsun>a {
    background: url("../images/share/icon_line.svg") top 14px left no-repeat;
    font-size: 1.4rem;
    margin-bottom: 0;
    padding-left: 15px;
  }

  .pc-navi_sitemap .h-list04 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .sp-navi {
    background: #fff;
    border: 3px solid #00173A;
    -webkit-text-size-adjust: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    height: 100%;
    width: 100%;
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    overflow: hidden;
    padding: 50px 15px 100px;
    z-index: 99;
  }

  .sp-navi.is-open {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    overflow: auto;
  }

  .sp-navi_list {
    margin: 0 auto 30px;
  }

  .sp-navi_list .item {
    border-bottom: 1px solid #ddd;
  }

  .sp-navi_list .item>a, .sp-navi_list .item .parent, .sp-navi_list .item .nolink {
    display: block;
    font: 1.6rem/1.5 MatissePro-M, sans-serif;
    padding: 10px 0;
    position: relative;
  }

  .sp-navi-haschild {
    position: relative;
  }

  .sp-navi-haschild.is-open::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sp-navi-haschild::after {
    content: "";
    position: absolute;
    top: 19px;
    right: 0;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 8px;
    border-color: #00173A transparent transparent transparent;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }

  .sp-navi-haschild>a {
    width: 90%;
  }

  .sp-navi_child {
    display: none;
    margin: 10px 0 20px;
    padding-left: 15px;
  }

  .sp-navi_child .child a {
    font-size: 1.5rem;
    padding: 5px 0;
  }

  .sp-navi_child .grandsun a {
    display: block;
    font-size: 1.4rem;
    padding-left: 1.5em;
    position: relative;
  }

  .sp-navi_child .grandsun a::before {
    background: #E0FAF5;
    height: 1px;
    content: "";
    display: block;
    position: absolute;
    top: 13px;
    left: 0;
    width: 1em;
  }

  .u-slider .slick-dots {
    position: static;
    margin-top: 15px;
  }

  .u-slider .slick-arrow_custom.prev span {
    left: -10px;
  }

  .u-slider .slick-arrow_custom.next span {
    right: -10px;
  }

  #under_gallery_nav .slick-prev, #under_gallery_nav .slick-next {
    height: 20px;
    width: 20px;
  }

  #under_gallery_nav .slick-slide img {
    height: 60px;
    width: 80px;
  }

  .form-table {
    font-size: 1.4rem;
  }

  .form-table tr:not(:first-child) {
    border-top: 1px solid #ddd;
  }

  .form-table th {
    display: block;
    padding: 15px 0 5px;
  }

  .form-table th>label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .form-table td {
    display: block;
    padding: 5px 0 15px;
  }

  .form-table input, .form-table textarea {
    background: #eee;
    display: block;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 10px 15px;
    width: 100%;
  }

  .form-table .hissu {
    font-size: 1.3rem;
  }

  input[type=submit] {
    -webkit-appearance: none;
    background: url("../images/share/arrow.svg") right 15px center no-repeat #006788;
    border: none;
    border-radius: 0;
    display: block;
    outline: none;
    color: #fff;
    cursor: pointer;
    font: 1.6rem/1.5 var(--font01);
    padding: 18px 40px;
    margin: 30px auto 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: min(300px, 80%);
  }
}

.u-section .contact-form .submit-btn [type=submit] {
  background: var(--color01);
  border-color: var(--color01);
}

.shohyou_notice {
  display: block;
  width: 700px;
  padding: 30px;
  margin: 0 auto;
  text-align: center;
  background: #DFF9FA;
}

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

.shohyou_notice {
  width: 100%;
  padding: 30px 15px;
}
