@charset "UTF-8";
/* Reset
-------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, dl, dd, ol, ul, li, figure {
  margin: 0;
}

article, aside, figcaption, figure, footer, header, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
  padding: 0;
}

/* Set
-------------------- */
html {
  font-size: 100%;
}

body {
  min-height: 100vh;
  background: #FFF;
  color: #222;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック Medium", "游ゴシック", "Yu Gothic Medium", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
  line-height: 1;
  overflow-wrap: break-word;
  text-align: left;
}

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

p {
  line-height: 1.66;
}

a {
  color: #0033CC;
  -webkit-tap-highlight-color: transparent;
}
@media print, (min-width: 992px) {
  a {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:hover {
    opacity: 0.6;
  }
}

@media print, (min-width: 992px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img {
  height: auto;
  vertical-align: middle;
}

/* font bold */
strong,
th,
.headerMenu__jp,
.title2,
.title3,
.title4,
.title5,
.dl-list1 dt,
.btn1,
.form1 dt,
.box3__title,
.box4__title,
.box5__txt1 {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}

/* Font Face
Lato
This Font Software is licensed under the SIL Open Font License, Version 1.1.
https://fonts.google.com/specimen/Lato
-------------------- */
@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: normal;
}
@font-face {
  font-family: "Lato";
  font-display: swap;
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: bold;
}
/* header
-------------------- */
.header {
  position: relative;
  height: 80px;
}
@media print, (min-width: 992px) {
  .header {
    height: 100px;
  }
}

.headerBar {
  position: fixed;
  z-index: 91;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgb(255, 255, 255);
}
.is-open .headerBar {
  position: static;
}
.is-top:not(.is-open) .headerBar {
  position: absolute;
  background-color: rgba(255, 255, 255, 0);
}
.headerBar__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  z-index: 103;
  top: 0;
  left: 5%;
  width: calc(90% - 80px);
  height: 80px;
}
.headerBar__logo a {
  display: block;
}
.headerBar__logo img {
  width: 100%;
  max-width: 280px;
}
.is-top:not(.is-open) .headerBar__logo {
  position: absolute;
}
.is-top.is-white:not(.is-open) .headerBar__logo img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.is-open .headerBar__logo img {
  -webkit-filter: none;
          filter: none;
}
@media print, (min-width: 992px) {
  .headerBar {
    height: 100px;
  }
  .headerBar__logo {
    left:3%;
    height: 100px;
  }
  .is-top.is-white .headerBar__logo img {
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
  }
}
@media print, (min-width: 1200px) {
  .headerBar__logo {
    left:5%;
  }
  .headerBar__logo img {
    max-width: 320px;
  }
}

.headerBtnMenu {
  position: fixed;
  z-index: 103;
  top: 10px;
  right: calc(5% - 15px);
  width: 60px;
  height: 60px;
  padding: 22px 19px;
}
.is-top:not(.is-open) .headerBtnMenu {
  position: absolute;
}
.headerBtnMenu button,
.headerBtnMenu span {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.headerBtnMenu button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.headerBtnMenu span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #222;
  border-radius: 1px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.headerBtnMenu span:nth-of-type(1) {
  top: 0;
}
.headerBtnMenu span:nth-of-type(2) {
  top: 7px;
}
.headerBtnMenu span:nth-of-type(3) {
  bottom: 0;
}
.is-open .headerBtnMenu button {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.is-open .headerBtnMenu span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
}
.is-open .headerBtnMenu span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.is-open .headerBtnMenu span:nth-of-type(3) {
  opacity: 0;
}
.is-top.is-white:not(.is-open) .headerBtnMenu span, .is-top.is-white:not(.is-open) .headerBtnMenu span:nth-of-type(2)::after {
  background: #FFF;
}
.is-open .headerBtnMenu span, .is-open .headerBtnMenu span:nth-of-type(2)::after {
  background: #222;
}
@media print, (min-width: 992px) {
  .headerBtnMenu {
    display: none;
  }
}

.headerMenu {
  position: fixed;
  z-index: 102;
  top: -100%;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.is-open .headerMenu {
  top: 0;
  height: 100%;
}
.headerMenu__container {
  overflow-y: auto;
  height: 100%;
  background: #f6f6f6;
}
.headerMenu__listcontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  min-height: 640px;
}
.headerMenu__list1 {
  width: 84%;
  margin: 40px 8% 0;
  font-size: 1.125rem;
}
.headerMenu__list1 ul{
  margin:0 0 0.75em;
}
.headerMenu__link1{
  position: relative;
}
.headerMenu__link1:not(:first-child) {
  border-top: 1px solid #CCC;
}
.headerMenu__link1 a {
  position: relative;
  display: block;
  padding: 1.25em 20px 1.125em 0;
  color: #222;
  text-decoration: none;
}
.headerMenu__link1 a::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 3px;
}
.headerMenu__jp {
  display: block;
}
.headerMenu__en {
  display: block;
  margin-top: 0.75em;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
}
.headerMenu__link2{
  margin-left:1em;
  font-size:0.875rem;
}
.headerMenu__link2 a{
  padding:0.75em 0;
}
.headerMenu__link2 a::after{
  display:none;
}
@media print, (min-width: 576px) {
  .headerMenu__listcontainer {
    min-height: 760px;
  }
  .headerMenu__list1 {
    font-size: 3.2vw;
  }
  .headerMenu__en {
    font-size: 1.8vw;
  }
}
@media print, (min-width: 992px) {
  .headerMenu {
    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;
    top: 0;
    right: 3%;
    width: calc(95% - 160px - 20px - 5%);
    height: 100px;
    -webkit-transition: none;
    transition: none;
  }
  .is-open .headerMenu {
    height: 100px;
  }
  .is-top:not(.is-open) .headerMenu {
    position: absolute;
  }
  .headerMenu__container {
    overflow-y: visible;
    height: auto;
    background: transparent;
  }
  .headerMenu__listcontainer {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
  }
  .headerMenu__list1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
  .headerMenu__link1 {
    margin-left: 2em;
    padding:1em 0;
  }
  .headerMenu__link1:not(:first-child) {
    border-top: none;
  }
  .headerMenu__link1 a {
    padding: 5px 0;
  }
  .headerMenu__link1 a::after {
    display: none;
  }
  .headerMenu__en {
    display: none;
  }
  .is-top.is-white .headerMenu__link1 a {
    color: #FFF;
  }
  .headerMenu__list2{
    visibility: hidden;
    position: absolute;
    z-index: 100;
    top: 2.5em;
    left: -1em;
    padding:0.75em 1.25em;
    border-radius: 4px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
  }
  li:hover .headerMenu__list2{
    visibility: visible;
    top: 3.5em;
    background: #FFF;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
  }
  .headerMenu__link2{
    white-space:nowrap;
    margin-left:0;
  }
  .headerMenu__link2 a{
    padding:0.5em 0;
  }
  .is-top.is-white .headerMenu__link2 a {
    color:#222;
  }
}
@media print, (min-width: 1200px) {
  .headerMenu {
    right:5%;
  }
  .headerMenu__list {
    font-size: 1.125rem;
  }
}

/* header move */
.headerBar,
.headerBar__logo,
.headerBtnMenu {
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

.is-hidden .headerBar,
.is-hidden .headerBar__logo,
.is-hidden .headerBtnMenu {
  top: -82px;
}
@media print, (min-width: 992px) {
  .is-hidden .headerBar,
  .is-hidden .headerBar__logo,
  .is-hidden .headerBtnMenu {
    top: -102px;
  }
}

@media print, (min-width: 992px) {
  .headerMenu {
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
  }
  .is-hidden .headerMenu {
    top: -102px;
  }
}
/* noscroll ---------------- */
.noscroll {
  position: fixed;
  overflow-y: scroll;
}
@media print, (min-width: 992px) {
  .noscroll {
    position: static;
    width: inherit;
    overflow-y: inherit;
  }
}

/* footer
-------------------- */
.footer {
  padding: 40px 0;
  background: #fdf8e8;
}
@media print, (min-width: 576px) {
  .footer {
    padding: 50px 0;
  }
}

.footerInfo {
  font-size: 0.75rem;
  text-align: center;
}
.footerInfo__name img {
  width: 200px;
}
.footerInfo__address {
  margin: 25px 0 0;
}
.footerInfo__tel a {
  display: inline-block;
  color: #222;
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .footerInfo {
    font-size: 0.875rem;
  }
}

.footerSns {
  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;
  margin-top: 25px;
  text-align: center;
}
.footerSns li {
  margin: 0 0.5em;
}
.footerSns li a {
  display: block;
  width: 32px;
  height: 32px;
}
.footerSns__insta a {
  padding: 7px;
  background: #222;
  border-radius: 32px;
}
.footerSns__insta svg {
  fill: #FFF;
}
.footerSns__svgcolor1 {
  fill: #fff;
}
.footerSns__svgcolor2 {
  fill: #222;
}

.footerLink {
  margin-top: 30px;
  color: #222;
  font-size: 0.625rem;
  text-align: center;
}
.footerLink a {
  color: #222;
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .footerLink {
    font-size: 0.75rem;
  }
}

.footerBottom {
  margin-top: 30px;
  color: #222;
  text-align: center;
}
.footerBottom__copyright {
  font-size: 0.75rem;
}
@media print, (min-width: 576px) {
  .footerBottom__copyright {
    font-size: 0.875rem;
  }
}

/* gotop
-------------------- */
.gotop {
  position: fixed;
  z-index: 80;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
}
.gotop.is-disabled {
  display: none;
}
.gotop.is-show, .gotop.is-hidden {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
.gotop.is-show {
  display: block;
  opacity: 1;
}
.gotop.is-hidden {
  display: block;
  opacity: 0;
}
.gotop a {
  display: block;
  width: 40px;
  height: 40px;
  padding: 14px 0 0 0;
  border-radius: 40px;
  background: rgba(100, 100, 100, 0.7);
  text-align: center;
}
.gotop svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}
@media print, (min-width: 992px) {
  .gotop a:hover {
    background: rgba(0, 0, 0, 0.6);
  }
}

/* Container
-------------------- */
.container {
  width: 84%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media print, (min-width: 992px) {
  .container-small {
    max-width: 800px;
  }
}

/* Content
-------------------- */
/* content */
.content{
  font-size:0.875rem;
}
.content p:not(:last-child) {
  margin-bottom: 15px;
}
@media print, (min-width: 576px) {
  .content{
    font-size:1rem;
  }
}

/* topimg
-------------------- */
.topimg {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding-top: 66.66%;
}
.topimg__title {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  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;
  width: 100%;
  height: 100%;
  color: #FFF;
}
.topimg__titleen {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 1.875rem;
}
.topimg__titlejp {
  display: block;
  margin-top: 1em;
  font-size: 0.75rem;
}
.topimg__img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.is-loaded .topimg__img {
  -webkit-animation: fadein 1s linear 0.5s both;
          animation: fadein 1s linear 0.5s both;
}
.topimg__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}
@media print, (min-width: 576px) {
  .topimg__titleen {
    font-size: 2.5rem;
  }
  .topimg__titlejp {
    font-size: 0.75rem;
  }
}
@media print, (min-width: 992px) {
  .topimg {
    padding-top: 350px;
  }
}

/* nav
-------------------- */
.nav1 {
  padding: 8px 0;
  border: 1px solid #CCC;
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: center;
}
.nav1 li {
  display: inline-block;
  margin: 8px 1em;
}
.nav1 a {
  position: relative;
  display: inline-block;
  padding-right: 20px;
  color: #222;
  text-decoration: none;
}
.nav1 a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  top: 4px;
  right: 0;
}
@media print, (min-width: 576px) {
  .nav1 {
    font-size: 1rem;
  }
}

/* Title
-------------------- */
.title1 {
  text-align: center;
}
.title1__en {
  display: block;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  font-size: 1.875rem;
}
.title1__jp {
  display: block;
  margin-top: 1em;
  font-size: 0.75rem;
}
@media print, (min-width: 576px) {
  .title1__en {
    font-size: 2.5rem;
  }
  .title1__jp {
    font-size: 0.75rem;
  }
}

.title2 {
  position: relative;
  margin-bottom: calc(2.2vw + 45px);
  padding-bottom: 0.75em;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
}
.title2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
  width: 40px;
  height: 2px;
  background: #222;
}
@media print, (min-width: 576px) {
  .title2 {
    font-size: 1.625rem;
  }
}
@media print, (min-width: 1200px) {
  .title2 {
    margin-bottom: 70px;
  }
}

.title3 {
  margin-bottom: 30px;
  padding: 0.5em 0.75em;
  background: #f6f6f6;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title3 {
    font-size: 1.375rem;
  }
}
@media print, (min-width: 992px) {
  .title3 {
    margin-bottom: 40px;
  }
}

.title4 {
  margin-bottom: 30px;
  padding: 0 0 0.5em;
  border-bottom: 1px solid #CCC;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title4 {
    font-size: 1.25rem;
  }
}
@media print, (min-width: 992px) {
  .title4 {
    margin-bottom: 40px;
  }
}

.title5 {
  margin-bottom: 25px;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .title5 {
    font-size: 1.25rem;
  }
}
@media print, (min-width: 992px) {
  .title5 {
    margin-bottom: 30px;
  }
}

/* catch1
-------------------- */
.catch1,
.content p.catch1 {
  margin-bottom: 25px;
  font-size: 6.2vw;
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media print, (min-width: 576px) {
  .catch1,
  .content p.catch1 {
    font-size: 2rem;
  }
}
@media print, (min-width: 992px) {
  .catch1,
  .content p.catch1 {
    font-size: 2.25rem;
  }
}
@media print, (min-width: 1400px) {
  .catch1,
  .content p.catch1 {
    font-size: 2.5rem;
  }
}

/* note
-------------------- */
.note1 {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.note1:not(:last-child) {
  margin-bottom: 25px;
}
.note1 li {
  margin-left: 1.5em;
  font-size: 0.75rem;
  line-height: 1.5;
}
.note1 li:not(:first-child) {
  margin-top: 0.5em;
}
.note1 li::before {
  content: "※";
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}
@media print, (min-width: 576px) {
  .note1 li {
    font-size: 0.875rem;
  }
}

/* List
-------------------- */
.list1 {
  list-style-type: disc;
  margin-left: 25px;
  line-height: 1.5;
}
.list1:not(:last-child) {
  margin-bottom: 25px;
}
.list1 li {
  position: relative;
}
.list1 li:not(:last-child) {
  margin-bottom: 8px;
}
.list1 ul {
  list-style-type: circle;
  margin: 12px 0 15px 20px;
}
.list1 ul ul {
  list-style-type: disc;
}

ol.list1 {
  list-style-type: decimal;
}

.dl-list1 {
  border-bottom: 1px solid #ccc;
  font-size: 0.875rem;
  line-height: 1.66;
}
.dl-list1:not(:last-child) {
  margin-bottom: 25px;
}
.dl-list1 dt {
  padding: 1.375em 0 0;
  border-top: 1px solid #ccc;
}
.dl-list1 dd {
  padding: 0.5em 0 1.25em;
}
@media print, (min-width: 576px) {
  .dl-list1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1rem;
  }
  .dl-list1 dt {
    width: 33%;
    max-width: 300px;
    padding: 1.5em 0;
  }
  .dl-list1 dd {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 67%;
            flex: 1 1 67%;
    padding: 1.5em 0;
    border-top: 1px solid #ccc;
  }
}

/* Table
-------------------- */
/* table1 */
.table1 {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.table1 th,
.table1 td {
  border: 1px solid #CCC;
  padding: 10px 3px 8px;
  line-height: 1.5;
  text-align: left;
}
.table1 th {
  background: #fff3d0;
}
.table1__td19 {
  width:19%;
}
.table1__td27 {
  width:27%;
}
.table1__tdcolor1 {
  background: #fff3d0 !important;
}
.table1__tdcolor2 {
  background: #fffdf4!important;
}
@media print, (min-width: 576px) {
  .table1 {
    font-size: 1rem;
  }
  .table1 th,
  .table1 td {
    padding: 15px 8px 13px;
  }
}
@media print, (min-width: 992px) {
  .table1 {
    font-size: 1.125rem;
  }
  .table1 th,
  .table1 td {
    padding: 25px 10px 23px;
  }
}

/* form
-------------------- */
/* error */
#form-error-list {
  display: none;
  margin: 0 0 30px;
  padding: 3%;
  border: 2px solid #ff0000;
  background: #FFF;
  color: #ff0000;
}

#form-error-list-item {
  margin-top: 10px;
  color: #ff0000;
}

.form-error-style {
  background: #ffe9e9 !important;
}

.form-error-tip p {
  color: #ff0000;
}

.form-error-tip p::before {
  content: "!";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px 3px 0;
  border-radius: 16px;
  background: #ff0000;
  color: #FFF;
  font-size: 12px;
  vertical-align: middle;
  line-height: 16px;
  text-align: center;
}

/* form-mark */
.form-mark1,
.form-mark2 {
  display: inline-block;
  margin: 0 0 2px;
  padding: 3px 8px;
  border-radius: 3px;
  background: #a7df0d;
  color: #000;
  font-size: 0.625rem;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
}

.form-mark2 {
  background: #DDD;
  color: #000;
}

@media print, (min-width: 992px) {
  .form-mark1,
  .form-mark2 {
    padding: 3px 10px;
  }
}
/* form-example */
.form-example {
  color: #666;
  font-size: 0.75rem;
}

.form-example_block {
  display: block;
}

/* form-fieldgroup */
.form-fieldgroup {
  margin: 0 -5px 5px;
  padding: 0 5px;
}

/* form1 */
.form1 dl {
  margin: 0 0 20px;
  line-height: 1.5;
}
.form1 dt {
  font-size: 0.875rem;
}
.form1 dd {
  margin-bottom: 20px;
}
.form1 input[type=text],
.form1 textarea {
  width: 100%;
  margin: 5px 0;
  padding: 10px 5px;
  border: 2px solid #CCC;
  border-radius: 3px;
  font-size: 16px;
  outline: none;
}
.form1 input::-webkit-input-placeholder, .form1 textarea::-webkit-input-placeholder {
  color: #999;
}
.form1 input::-moz-placeholder, .form1 textarea::-moz-placeholder {
  color: #999;
}
.form1 input:-ms-input-placeholder, .form1 textarea:-ms-input-placeholder {
  color: #999;
}
.form1 input::-ms-input-placeholder, .form1 textarea::-ms-input-placeholder {
  color: #999;
}
.form1 input::placeholder,
.form1 textarea::placeholder {
  color: #999;
}
.form1 input:focus::-webkit-input-placeholder, .form1 textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.form1 input:focus::-moz-placeholder, .form1 textarea:focus::-moz-placeholder {
  color: transparent;
}
.form1 input:focus:-ms-input-placeholder, .form1 textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.form1 input:focus::-ms-input-placeholder, .form1 textarea:focus::-ms-input-placeholder {
  color: transparent;
}
.form1 input:focus::placeholder,
.form1 textarea:focus::placeholder {
  color: transparent;
}
.form1 input.form-input-small[type=text] {
  width: 4em;
}
.form1 textarea {
  height: 150px;
}
.form1 select {
  max-width: 100%;
  margin: 5px 0;
  padding: 10px 5px;
  font-size: 16px;
}
.form1__label {
  display: inline-block;
  cursor: pointer;
  margin: 5px 0;
  padding: 5px 13px 5px 8px;
  border: 2px solid #ccc;
  border-radius: 2px;
  background: #F6F6F6;
}
.form1 input[type=checkbox],
.form1 input[type=radio] {
  margin: 0 6px 2px 2px;
  vertical-align: middle;
}
.form1__btn {
  margin: 30px 0 0;
  text-align: center;
}
.form1__btn-submit {
  position: relative;
  display: inline-block;
  width: 95%;
  max-width: 320px;
  padding: 1em 5px 1em 20px;
  background:#a7df0d;
  border:none;
  border-radius: 56px;
  color: #222;
  font-size: 1.125rem;
  text-align: center;
  line-height: 1;
}
.form1__btn-submit::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 0 3px 1em;
}
@media print, (min-width: 576px) {
  .form1 dt {
    font-size: 1rem;
  }
  .form1__privacy {
    height: 160px;
  }
  .form1__btn-submit {
    font-size: 1.25rem;
  }
}
@media print, (min-width: 992px) {
  .form1__btn-submit:hover {
    background: #94ca00;
  }
}

/* complete */
.formComplete {
  margin-bottom: 100px;
}
.formComplete__back {
  margin: 40px 0 0;
  text-align: center;
}
@media print, (min-width: 992px) {
  .formComplete {
    margin-bottom: 200px;
  }
}

/* Link
-------------------- */
/* link-txt */
.link-txt1 {
  display: inline-block;
}
.link-txt1::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 10px;
}
.link-txt1_tobottom::before {
  margin-bottom: 3px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

/* link-url */
.link-url1 {
  position: relative;
  display: inline-block;
  padding-left: 25px;
}
.link-url1::before, .link-url1::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  background: #FFF;
  border: 1px solid #333;
}
.link-url1::before {
  top: calc(50% - 8px);
  left: 0;
}
.link-url1::after {
  top: calc(50% - 4px);
  left: 4px;
}

/* link-tel */
.link-tel {
  color:#222;
  text-decoration: none;
}
.link-tel2{
  color:#f76f00;
  font-size: 1.5rem;
  text-decoration: none;
}
@media print, (min-width: 576px) {
  .link-tel2 {
    font-size: 2rem;
  }
}

/* image
-------------------- */
.img-full {
  width: 100%;
}

.img-fullmax {
  max-width: 100%;
}

/* img-cut */
.img-cut-left,
.img-cut-left img,
.img-cut-right,
.img-cut-right img {
  width: 100%;
}

.img-cut-left,
.img-cut-right {
  margin-top: 5px;
  margin-bottom: 5px;
}

@media print, (min-width: 992px) {
  .img-cut-left {
    float: left;
    width: 50%;
    margin-right: 2.5%;
  }
  .img-cut-right {
    float: right;
    width: 50%;
    margin-left: 2.5%;
  }
}
/* Button
-------------------- */
/* btn1 */
.btn1 {
  display: inline-block;
  width: 95%;
  max-width: 320px;
  padding: 1em 5px;
  border-radius: 56px;
  background:#a7df0d;;
  color: #222;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.btn1::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #222;
  border-right: 2px solid #222;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0 0 3px 1em;
}
@media print, (min-width: 576px) {
  .btn1 {
    font-size: 1.125rem;
  }
}

/* map
-------------------- */
/* map1 */
.map1 iframe {
  width: 100%;
  height: 250px;
}
@media print, (min-width: 576px) {
  .map1 iframe {
    height: 600px;
  }
}

/* Box
-------------------- */
.box1__img:not(:first-child), .box1__txt:not(:first-child) {
  margin-top: 35px;
}
@media print, (min-width: 992px) {
  .box1 {
    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;
  }
  .box1_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .box1__img {
    width: 50%;
  }
  .box1__txt {
    width: 45%;
  }
  .box1__img:not(:first-child), .box1__txt:not(:first-child) {
    margin-top: 0;
  }
}

.box2 {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  min-height: 90svh;
  padding: 30vw 0;
}
.box2__img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.box2__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box2__txt {
  position: relative;
  z-index: 2;
}
.box2__txtcontainer {
  background:rgb(0 0 0/0.4);
  padding:8%;
  color: #FFF;
}
@media print, (min-width: 576px) {
  .box2 {
    min-height: 66.66vw;
  }
}
@media print, (min-width: 992px) {
  .box2 {
    height: 720px;
    min-height: 720px;
    padding: 50px 0;
  }
  .box2__txtcontainer {
    width: 50%;
  }
  .box2_reverse .box2__txtcontainer {
    margin-left: 50%;
  }
}

.box3{
  display: flex;
  flex-wrap:wrap;
}
.box3__item{
  flex:0 0 49%;
}
.box3__item:nth-child(2n){
  margin-left:2%;
}
.box3__item:nth-child(n + 3){
  margin-top:30px;
}
.box3__item a{
  display: block;
  color:#222;
  text-decoration: none;
}
.box3__img{
  display: block;
}
.box3__img img{
  width:100%;
  border-radius:8px;
}
.box3__title{
  display: block;
  margin-top:1em;
  line-height: 1.5;
  text-align: center;
}
.box3__description{
  display: block;
  margin-top:5px;
  font-size:0.75rem;
  line-height: 1.5;
  text-align: center;
}
@media print, (min-width: 576px) {
  .box3__item:nth-child(n + 3){
    margin-top:40px;
  }
  .box3__title{
    font-size:1.125rem;
  }
  .box3__description{
    font-size:0.875rem;
  }
}
@media print, (min-width: 992px) {
  .box3{
    justify-content: center;
  }
  .box3__item{
    flex:0 0 31%;
  }
  .box3__item:nth-child(n){
    margin:0;
  }
  .box3__item:not(:nth-child(3n + 1)){
    margin-left:3.5%;
  }
  .box3__item:nth-child(n + 4){
    margin-top:50px;
  }
  .box3__title{
    font-size:1.25rem;
  }
}



.box4__item:nth-child(n + 2){
  margin-top:40px;
}
.box4__item a{
  display: block;
  height:100%;
  border-radius:8px;
  background:#FFF;
  box-shadow:0 0 5px rgb(0 0 0 / 0.3);
  color:#222;
  text-decoration: none;
}
.box4__img img{
  width:100%;
  border-radius:8px 8px 0 0 / 8px 8px 0 0;
}
.box4__title{
  margin-top:1em;
  padding:0 5%;
  font-size:1.125rem;
  line-height: 1.5;
  text-align: center;
}
.box4__en{
  margin-top:0.5em;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  text-align: center;
}
.box4__description{
  padding:1em 5% 1.5em;
  font-size:0.875rem;
  line-height: 1.5;
}
@media print, (min-width: 576px) {
  .box4{
    display: flex;
    flex-wrap:wrap;
  }
  .box4__item{
    flex:0 0 49%;
  }
  .box4__item:nth-child(n + 3){
    margin-top:40px;
  }
  .box4__item:nth-child(2n){
    margin-left:2%;
  }
  .box4__item:nth-child(n + 3){
    margin-top:30px;
  }
  .box4__title{
    font-size:1.25rem;
  }
  .box4__description{
    font-size:1rem;
  }
}
@media print, (min-width: 992px) {
  .box4__item{
    flex:0 0 31%;
  }
  .box4__item:nth-child(n){
    margin:0;
  }
  .box4__item:not(:nth-child(3n + 1)){
    margin-left:3.5%;
  }
  .box4__item:nth-child(n + 4){
    margin-top:50px;
  }
  .box4__description{
    font-size:0.875rem;
  }
}

.box5__item{
  padding:8%;
  border-radius:8px;
  background:#fff3d0;
}
.box5__item:nth-child(n + 2){
  margin-top:15px;
}
.box5__item h3{
  text-align: center;  
}
.box5__item h3 span{
  display: inline-block;
  padding:0.5em 1em;
  background:#ffc400;
  color:#222;
  text-align: center;
}
.box5__sub:nth-of-type(n + 2){
  margin-top:20px;
  border-top:1px solid #CCC;
}
.box5__txt1{
  margin:1em 0 0;
  color:#f76f00;
  font-size:1.125rem;
  text-align: center;
}
.box5__txt2{
  font-weight: bold;
  text-align: center;
}
.box5__txt2 em{
  font-size:1.75rem;
  font-style: normal;
}
.box5__txt3{
  font-size: 0.75rem;
  text-align: center;
}
@media print, (min-width: 576px) {
  .box5{
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
  }
  .box5__item{
    padding:25px 20px 20px;
  }
  .box5__item_half{
    width:49%;
  }
  .box5__item_full{
    width:100%;
    padding-left:30px;
    padding-right:30px;
  }
  .box5__item:nth-child(2){
    margin-top:0;
  }
  .box5__sub{
    display:flex;
    align-items:end;
    padding-top:15px;
  }
  .box5__sub:last-child{
    padding-bottom:10px;
  }
  .box5__sub .box5__txt1{
    margin:0;
  }
  .box5__sub .box5__txt2{
    margin:0 15px -0.5em;
  }
}

.box6{
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
}
.box6 img{
  width:100%;
}
.box6__item{
  width:49%;
}
.box6__item:nth-child(n + 3){
  margin-top:2%;
}
.box6__item:nth-child(2n){
  margin-left:2%;
}
@media print, (min-width: 992px) {
  .box6__item{
    width:49.687%;
  }
  .box6__item:nth-child(n + 3){
    margin-top:0.626%;
  }
  .box6__item:nth-child(2n){
    margin-left:0.626%;
  }
}

.box7__item2{
  margin-top:30px;
  padding:30px;
  background:#fff3d0;
}
@media print, (min-width: 992px) {
  .box7{
    display: flex;
    flex-direction: row-reverse;
    align-items:center;
  }
  .box7__item1{
    width:45.313%;
    margin-left:5%;
  }
  .box7__item2{
    margin-top:0;
    width:49.687%;
  }
}

.box8{
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
}
.box8 img{
  width:100%;
}
.box8__item1{
  width:100%;
}
.box8__item2{
  width:49%;
  margin-top:2%;
}
.box8__item3{
  width:49%;
  margin-top:2%;
  margin-left:2%;
}
@media print, (min-width: 576px) {
  .box8__item1{
    width:49%;
    margin-left:24.5%;
    margin-right:24.5%;
  }
}
@media print, (min-width: 992px) {
  .box8__item1,
  .box8__item2,
  .box8__item3{
    width:32.916%;
    margin:0;
  }
  .box8__item2,
  .box8__item3{
    margin-left:0.626%;
  }
}

/* Utilities ------------------------- */
/* clear
-------------------- */
.u-clear::after {
  content: "";
  display: table;
  clear: both;
}

/* nowrap
-------------------- */
.u-whitespace-nowrap {
  white-space: nowrap;
}

/* margin padding
-------------------- */
.u-mt-s {
  margin-top: calc(1vw + 30px);
}

.u-mb-s {
  margin-bottom: calc(1vw + 30px);
}

.u-pt-s {
  padding-top: calc(1vw + 30px);
}

.u-pb-s {
  padding-bottom: calc(1vw + 30px);
}

.u-mt-m {
  margin-top: calc(2.2vw + 45px);
}

.u-mb-m {
  margin-bottom: calc(2.2vw + 45px);
}

.u-pt-m {
  padding-top: calc(2.2vw + 45px);
}

.u-pb-m {
  padding-bottom: calc(2.2vw + 45px);
}

.u-mt-l {
  margin-top: calc(5vw + 70px);
}

.u-mb-l {
  margin-bottom: calc(5vw + 70px);
}

.u-pt-l {
  padding-top: calc(5vw + 70px);
}

.u-pb-l {
  padding-bottom: calc(5vw + 70px);
}

@media print, (min-width: 992px) {
  .u-mt-s {
    margin-top: 40px;
  }
  .u-mb-s {
    margin-bottom: 40px;
  }
  .u-pt-s {
    padding-top: 40px;
  }
  .u-pb-s {
    padding-bottom: 40px;
  }
}
@media print, (min-width: 1200px) {
  .u-mt-m {
    margin-top: 70px;
  }
  .u-mb-m {
    margin-bottom: 70px;
  }
  .u-pt-m {
    padding-top: 70px;
  }
  .u-pb-m {
    padding-bottom: 70px;
  }
  .u-mt-l {
    margin-top: 130px;
  }
  .u-mb-l {
    margin-bottom: 130px;
  }
  .u-pt-l {
    padding-top: 130px;
  }
  .u-pb-l {
    padding-bottom: 130px;
  }
}
/* text-align
-------------------- */
.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

@media print, (min-width: 576px) {
  .u-text-md-left {
    text-align: left !important;
  }
  .u-text-md-center {
    text-align: center !important;
  }
  .u-text-md-right {
    text-align: right !important;
  }
}
@media print, (min-width: 992px) {
  .u-text-lg-left {
    text-align: left !important;
  }
  .u-text-lg-center {
    text-align: center !important;
  }
  .u-text-lg-right {
    text-align: right !important;
  }
}
/* vertical-align
-------------------- */
.u-vertical-top {
  vertical-align: top !important;
}

.u-vertical-middle {
  vertical-align: middle !important;
}

.u-vertical-bottom {
  vertical-align: bottom !important;
}

@media print, (min-width: 576px) {
  .u-vertical-md-top {
    vertical-align: top !important;
  }
  .u-vertical-md-middle {
    vertical-align: middle !important;
  }
  .u-vertical-md-bottom {
    vertical-align: bottom !important;
  }
}
@media print, (min-width: 992px) {
  .u-vertical-lg-top {
    vertical-align: top !important;
  }
  .u-vertical-lg-middle {
    vertical-align: middle !important;
  }
  .u-vertical-lg-bottom {
    vertical-align: bottom !important;
  }
}

/* br
-------------------- */
/* br */
@media print, (min-width: 576px) {
	.u-md-nobr,
	.u-md-nobr br{
		display:none;
	}
}
@media print, (min-width: 992px) {
  .u-lg-nobr,
	.u-lg-nobr br{
		display:none;
	}
}

/* font
-------------------- */
/* font-size */
.u-font-xsmall {
  font-size: 0.75rem;
}

.u-font-small {
  font-size: 0.875rem;
}

.u-font-medium {
  font-size: 1rem;
}

.u-font-large {
  font-size: 1.25rem;
}

.u-font-xlarge {
  font-size: 1.5rem;
}

@media print, (min-width: 576px) {
  .u-font-md-xsmall {
    font-size: 0.75rem;
  }
  .u-font-md-small {
    font-size: 0.875rem;
  }
  .u-font-md-medium {
    font-size: 1rem;
  }
  .u-font-md-large {
    font-size: 1.25rem;
  }
  .u-font-md-xlarge {
    font-size: 1.5rem;
  }
}
@media print, (min-width: 992px) {
  .u-font-lg-xsmall {
    font-size: 0.75rem;
  }
  .u-font-lg-small {
    font-size: 0.875rem;
  }
  .u-font-lg-medium {
    font-size: 1rem;
  }
  .u-font-lg-large {
    font-size: 1.25rem;
  }
  .u-font-lg-xlarge {
    font-size: 1.5rem;
  }
}
/* font-bold */
.u-font-bold {
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}

/* color */
.u-color-red {
  color: #ff0000;
}

/* keyframes
-------------------- */
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* indexPage
-------------------- */
.indexTop {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  margin-top: -80px;
}
.indexTop__catch {
  position: absolute;
  z-index: 4;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -1.5em;
  color: #FFF;
  font-family: "BIZ UDPMincho", serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1em;
  font-size: 8.5vw;
  line-height: 1.5;
  text-align: center;
}
.is-loaded .indexTop__catch {
  -webkit-animation: indextopcatchmove 0.5s ease-out 1s both;
          animation: indextopcatchmove 0.5s ease-out 1s both;
}
.indexTop__img,
.indexTop .swiper,
.indexTop .swiper-wrapper,
.indexTop .swiper-slide {
  width: 100%;
  height: 100%;
}
.indexTop__img {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0;
}
.is-loaded .indexTop__img {
  -webkit-animation: fadein 1s linear 0.5s both;
          animation: fadein 1s linear 0.5s both;
}
.indexTop .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.indexTop .swiper-slide-active img,
.indexTop .swiper-slide-duplicate-active img,
.indexTop .swiper-slide-prev img {
  -webkit-animation: indextopimgmove 4s ease-out 0s both;
          animation: indextopimgmove 4s ease-out 0s both;
}
.indexTop__arrow {
  position: absolute;
  z-index: 4;
  left: calc(50% - 12px);
  bottom: 4%;
  width: 24px;
  height: 24px;
  -webkit-animation: indextoparrowmove 1.5s ease-out 1s infinite;
          animation: indextoparrowmove 1.5s ease-out 1s infinite;
}
.indexTop__arrow svg {
  fill: none;
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}
@media print, (min-width: 576px) {
  .indexTop__catch {
    margin-top: -1em;
    font-size: 4.8vw;
    line-height: 1.7;
  }
  .indexTop__catchbr2 {
    display: none;
  }
  .indexTop__arrow {
    left: calc(50% - 18px);
    width: 36px;
    height: 36px;
  }
  .indexTop__arrow svg {
    stroke-width: 2;
  }
}
@media print, (min-width: 992px) {
  .indexTop {
    margin-top: -100px;
  }
  .indexTop__catch {
    font-size: 3vw;
  }
}
@media print, (min-width: 1600px) {
  .indexTop__catch {
    font-size: 3rem;
  }
}

@-webkit-keyframes indextopcatchmove {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes indextopcatchmove {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes indextopimgmove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}
@keyframes indextopimgmove {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.25);
            transform: scale(1.25);
  }
}
@-webkit-keyframes indextoparrowmove {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes indextoparrowmove {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
  50% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.indexNews {
  background: #f6f6f6;
}
.indexNews .title1 {
  margin-bottom: 20px;
  text-align: left;
}
.indexNews ul {
  line-height: 1.66;
}
.indexNews li + li {
  margin-top: 1.5em;
}
.indexNews__day {
  display: block;
  margin-bottom: 0.5em;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
  font-size: 0.875rem;
}
.indexNews__txt {
  display: block;
  font-size: 0.75rem;
}
@media print, (min-width: 576px) {
  .indexNews .container {
    position: relative;
  }
  .indexNews .title1 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .indexNews ul {
    margin-left: 12em;
  }
  .indexNews__day {
    font-size: 1rem;
  }
  .indexNews__txt {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 992px) {
  .indexNews ul {
    margin-left: 16em;
  }
}

.indexAbout {
  margin-top: calc(5vw + 70px);
}
.indexAbout__txt p {
  font-size: 4vw;
  letter-spacing:0.2em;
  text-align: center;
  line-height: 2.5;
}
.indexAbout__txt p.indexAbout__catch {
  margin-top:-0.75em;
  font-size: 5vw;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
@media print, (min-width: 576px) {
  .indexAbout__txt p {
    font-size: 1.125rem;
  }
  .indexAbout__txt p.indexAbout__catch {
    font-size: 1.5rem;
  }
  
}
@media print, (min-width: 992px) {
  .indexAbout__txt p {
    font-size: 1.25rem;
  }
  .indexAbout__txt p.indexAbout__catch {
    font-size: 1.5rem;
  }
}

.indexOutline {
  background: #f6f6f6;
}
@media print, (min-width: 1200px) {
  .indexOutline__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 84%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}

.indexData {
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}
@media print, (min-width: 576px) {
  .indexData .dl-list1 {
    font-size: 0.875rem;
  }
}
@media print, (min-width: 1200px) {
  .indexData {
    width: 47.5%;
    margin-left: 0;
    margin-right: 0;
  }
}

.indexAccess__map iframe {
  width: 100%;
  height: 350px;
}
.indexAccess__txt {
  width: 84%;
  margin: 20px auto 0;
  font-size: 0.875rem;
  text-align: center;
}
.indexAccess__txt p {
  margin-top: 0.5em;
}
@media print, (min-width: 576px) {
  .indexAccess__map iframe {
    height: 480px;
  }
}
@media print, (min-width: 1200px) {
  .indexAccess {
    width: 47.5%;
  }
  .indexAccess__map iframe {
    height: 600px;
  }
  .indexAccess__txt {
    width: 100%;
    margin-top: 20px 0 0;
  }
}

.indexInstagram {
  background: #f6f6f6;
}

.lifeSchedule{
  display: flex;
  flex-wrap:wrap;
  margin:-10px 0;
  font-size:0.875rem;
  line-height: 1.5;
}
.lifeSchedule dt{
  position: relative;
  flex:0 0 5em;
  padding:10px 20px 10px 0;
  color: #f76f00;
  font-family: Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-weight: bold;
}
.lifeSchedule dt::after{
  content:"";
  display: block;
  position: absolute;
  top:0;
  right:10px;
  width:1px;
  height:100%;
  background:#f76f00;
}
.lifeSchedule dt:first-child::after{
  top:calc(10px + 0.75em);
}
.lifeSchedule dt:last-of-type::after{
  height:calc(10px + 0.75em);
}
.lifeSchedule dd{
  position: relative;
  flex:1 1 calc(100% - 5em);
  padding:10px 0 10px 8px;
}
.lifeSchedule dd::after{
  content:"";
  display: block;
  position: absolute;
  top:calc(10px + 0.75em - 4px);
  left:-15px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:#f76f00;
}
@media print, (min-width: 576px) {
  .lifeSchedule{
    font-size:1em;
  }
  .lifeSchedule dt{
    flex:0 0 6em;
  }
  .lifeSchedule dd{
    flex:1 1 calc(100% - 6em);
    padding:10px 0 10px 16px;
  }
}