@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@500&family=Noto+Sans+JP:wght@400;600;700&family=Zen+Maru+Gothic:wght@700&display=swap");
/*@mixin hover2 {
  transition: .1s;
  box-shadow: 0 5px 0 0 darken($black, 20%);
  &:hover {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    text-decoration: none;
    box-shadow: 0 0 0 0 darken($black, 20%);
  }
}*/
/******************************************
[global]
******************************************/
html,
body {
  /*height: 100%;*/
  margin: auto;
}

html {
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
  /* sp */
}
@media screen and (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }
}

.inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 1;
}
.inner-wide {
  width: calc(100% - 80px);
  max-width: 1800px;
  margin: auto;
}

/* sp */
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  .inner-wide {
    width: 100%;
    padding: 0 15px;
  }
  .inner > .inner {
    padding: 0;
  }
}
.flexInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexInner-r {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* sp */
@media screen and (max-width: 768px) {
  .flexInner {
    display: block;
  }
  .flexInner > div {
    width: 100%;
  }
}
img {
  max-width: 100%;
  height: auto;
}
img.full {
  width: 100%;
}
img.radius {
  border-radius: 20px;
}

@media screen and (max-width: 768px) {
  img.radius {
    border-radius: 14px;
  }
}
.img {
  font-size: 0;
  overflow: hidden;
}
.img img {
  width: 100%;
}
.img img:nth-child(n+2) {
  margin-left: 20px;
}
.img.radius {
  border-radius: 30px;
}
.img.radius img {
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .img img:nth-child(n+2) {
    margin-top: 20px;
  }
}
b {
  font-weight: 700;
}

a {
  color: #F34A08;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  text-decoration: underline;
}

p {
  margin-top: 10px;
}
p:first-of-type {
  margin-top: 0;
}
p a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #F34A08;
  text-decoration: underline;
}
p.ttl {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid #412410;
  padding-bottom: 15px;
}

br.space {
  content: "";
  display: block;
  margin: 15px 0;
}

hr {
  margin: 0 auto;
  padding: 40px 0;
  border: 0;
}
hr:before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #412410;
  border-radius: 10px;
}

.small {
  font-size: 80%;
}

.tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: self-end;
      -ms-flex-align: self-end;
          align-items: self-end;
}
.tel i {
  font-size: 80%;
  margin: 0 5px 0 0;
}

.fz0 {
  font-size: 0;
}

.num {
  font-family: "Oswald";
}

.eng {
  font-family: "Oswald";
  font-weight: 300;
  line-height: 1;
}

ul.disk li {
  list-style-type: disc;
  list-style-position: inside;
  text-indent: -22.5px;
  padding-left: 25px;
}

.pankuzu {
  z-index: 10;
}
.pankuzu > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
  left: 40px;
}
.pankuzu > ul li {
  font-size: 0.875rem;
  line-height: 1;
  display: inline-block;
}
.pankuzu > ul li i {
  font-size: 70%;
}

@media screen and (max-width: 768px) {
  .pankuzu {
    z-index: 0;
  }
  .pankuzu > ul {
    left: 15px;
  }
  .pankuzu > ul li {
    font-size: 0.75rem;
  }
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.mt0 {
  margin-top: 0px !important;
}

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

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

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

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

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

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

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

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

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

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

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

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

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

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

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

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

/******************************************
[PC・SP表示非表示]
******************************************/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

/******************************************
[文字拡大]
******************************************/
.big {
  font-size: 120% !important;
  font-weight: 700 !important;
  /* sp */
}
@media screen and (max-width: 768px) {
  .big {
    line-height: 1.6;
  }
}

/******************************************
[テキスト揃え]
******************************************/
.t-center {
  text-align: center !important;
}

.t-center-pc {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .t-center-pc {
    text-align: justify;
  }
}

.t-left {
  text-align: left !important;
}

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

/******************************************
[左右寄せ float]
******************************************/
.f-left {
  float: left;
  margin: 0 40px 0 0;
}

.f-right {
  float: right;
  margin: 0 0 0 40px;
}

/* sp */
@media screen and (max-width: 768px) {
  .f-left,
  .f-right {
    float: none;
    display: block;
    margin: 0 0 20px 0;
  }
}
/******************************************
[テキストカラー]
******************************************/
.color-main {
  color: #412410 !important;
}

.color-sub {
  color: #204A74 !important;
}

.black {
  color: #412410 !important;
}

.white {
  color: #fff !important;
}

.red {
  color: #F34A08 !important;
}

.orange {
  color: #F2784C !important;
}

.yellow {
  color: #F7EF90 !important;
}

.green {
  color: #5E9414 !important;
}

.blue {
  color: #4579a4 !important;
}

.brown {
  color: #BAA681 !important;
}

.gray {
  color: #b5b3aa !important;
}

.gray-light {
  color: #F3F3F3 !important;
}

/******************************************
[見出し]
******************************************/
h2 {
  width: 100%;
  line-height: 1.5;
  overflow-wrap: break-word;
  word-break: break-all;
}
h2.midashi-h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #412410;
  margin: 0 0 30px;
  display: block;
}
h2.midashi-h2:before {
  content: "";
  display: block;
  background: url("../img/icon-pow.svg") no-repeat center;
  background-size: contain;
  width: 100%;
  height: 70px;
  margin-bottom: 10px;
}

/* sp */
@media screen and (max-width: 768px) {
  h2.midashi-h2 {
    font-size: 1.5rem;
    margin: 0 0 20px;
  }
  h2.midashi-h2:before {
    height: 40px;
  }
}
h3 {
  line-height: 1.5;
}
h3.midashi-h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #412410;
  line-height: 1.4;
  margin: 0 0 20px;
  padding-left: 50px;
}
h3.midashi-h3:before {
  content: "";
  display: block;
  width: 45px;
  height: 30px;
  background: url("../img/icon-cat2.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 3px;
}

/* sp */
@media screen and (max-width: 768px) {
  h3.midashi-h3 {
    font-size: 1.25rem;
    margin: 0 0 15px;
    padding-left: 35px;
  }
  h3.midashi-h3:before {
    width: 30px;
    height: 20px;
    bottom: 3px;
  }
}
h4 {
  font-size: 1.375rem;
  line-height: 1.2;
  color: #204A74;
  margin: 20px 0;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
h4:before {
  content: "";
  display: block;
  background: url("../img/icon_clover.png") no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

/* sp */
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.125rem;
    margin: 20px 0;
  }
  h4:before {
    width: 18px;
    height: 18px;
  }
}
h5 {
  font-size: 1.125rem;
  color: #412410;
  line-height: 1.5;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 2px solid #412410;
  margin: 20px 0 10px;
}

/* sp */
@media screen and (max-width: 768px) {
  h5 {
    font-size: 1rem;
  }
}
/******************************************
[header]
******************************************/
header {
  line-height: 1;
  margin: auto;
  z-index: 1;
}
header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 10px 40px 0;
}
header .header-l h1 {
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  width: 450px;
}
header .header-l .logo {
  margin-top: 50px;
}
header .header-l .logo a {
  font-size: 0;
  display: block;
}
header .header-l .logo a img {
  width: auto;
  height: 120px;
}
header .header-r {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
header .header-r .contactBtn a.tel {
  font-size: 1.75rem;
  color: #204A74;
  text-align: right;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header-r .contactBtn a.tel img {
  margin-right: 10px;
  height: 24px;
}

/* sp */
@media screen and (max-width: 768px) {
  header .header {
    display: block;
    padding: 5px 15px 0;
  }
  header .header-l h1 {
    font-size: 0.625rem;
    text-align: center;
    position: static;
    width: 100%;
  }
  header .header-l .logo {
    text-align: center;
    margin-top: 10px;
  }
  header .header-l .logo a img {
    height: 80px;
  }
  header .header-r .contactBtn {
    display: none;
  }
  header .header-r .contactBtn a.tel {
    font-size: 1.75rem;
    color: #204A74;
    text-align: right;
    text-decoration: none;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  header .header-r .contactBtn a.tel img {
    margin-right: 10px;
    height: 24px;
  }
}
/******************************************
[footer]
******************************************/
footer {
  background-color: #F3F3F3;
  padding: 80px 0;
  z-index: 0;
}
footer .footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
footer .footer > div {
  width: 50%;
}
footer .footer-left .gmap {
  height: auto;
}
footer .footer-left .gmap iframe {
  width: 100%;
  height: 260px;
  border: 5px solid #fff;
  border-radius: 20px;
}
footer .footer-right .midashi-h2 {
  font-size: 1.25rem;
  margin: 0 0 20px;
}
footer .footer-right .midashi-h2:before {
  height: 30px;
}
footer .footer-right .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
footer .footer-right .info dt, footer .footer-right .info dd {
  font-size: 1.125rem;
  line-height: 1;
}
footer .footer-right .info dt:first-child, footer .footer-right .info dd:first-child {
  margin-top: 0;
}
footer .footer-right .info dt {
  color: #fff;
  width: 104px;
  font-weight: 700;
  background-color: #412410;
  border-radius: 6px;
  padding: 10px 15px;
  margin-top: 10px;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
footer .footer-right .info dd {
  width: calc(100% - 104px);
  line-height: 1.5;
  padding-left: 10px;
}
footer .footer-right .info dd.tel {
  color: #204A74;
  position: relative;
  bottom: -9px;
}
footer .footer-right .info dd.tel span.eng {
  font-size: 2.25rem;
  line-height: 1;
}
footer .footer-right .info dd.tel:before {
  content: "";
  display: block;
  background: url("../img/icon-fd.svg") no-repeat center;
  background-size: contain;
  width: 42px;
  height: 33px;
  margin-right: 10px;
}
footer .footer-right .btn {
  margin-top: 20px;
}
footer .footer-right .btn a {
  width: 100%;
  font-size: 1.25rem;
  padding: 10px 50px 11px 30px;
}
footer .footer-right .btn a img {
  height: 24px;
  margin-right: 10px;
}
footer .footer-right .btn.mail a {
  font-weight: 700;
  background-color: #204A74;
  border-color: #333;
  color: #fff;
  -webkit-box-shadow: 0 5px 0 0 #333;
          box-shadow: 0 5px 0 0 #333;
}
footer .footer-right .btn.mail a:after {
  background-image: url("../img/icon-arrow-white.svg");
}
footer .footer-right .btn.mail a:hover {
  -webkit-box-shadow: 0 0 0 0 #333;
          box-shadow: 0 0 0 0 #333;
}
footer .footer-right .btn.insta a:after {
  height: 18px;
  background: none;
  font-family: "icomoon";
  content: "\e904";
}
footer .footer-bottom {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .footer-bottom-left .logo a img {
  height: 100px;
}
footer .footer-bottom-right .navi {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: -10px;
}
footer .footer-bottom-right .navi > li p, footer .footer-bottom-right .navi > li a {
  font-size: 1rem;
  color: #333;
  line-height: 1;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
footer .footer-bottom-right .navi > li p:hover, footer .footer-bottom-right .navi > li a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #412410;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 60px 0;
  }
  footer > .inner .logo {
    text-align: center;
    margin-bottom: 20px;
  }
  footer > .inner .logo a img {
    height: 80px;
  }
  footer .footer {
    display: block;
  }
  footer .footer > div {
    width: 100%;
  }
  footer .footer-left .gmap {
    height: auto !important;
  }
  footer .footer-left .gmap iframe {
    height: 300px;
  }
  footer .footer-left .gmap > p {
    font-size: 0.875rem;
    margin-top: 10px;
  }
  footer .footer-right {
    margin-top: 40px;
  }
  footer .footer-right .midashi-h2 {
    font-size: 1rem;
  }
  footer .footer-right .info dt {
    font-size: 0.75rem;
    width: 70px;
    padding: 10px;
  }
  footer .footer-right .info dd {
    font-size: 1rem;
    width: calc(100% - 70px);
  }
  footer .footer-right .info dd.tel {
    font-size: 0.75rem;
    bottom: -9px;
  }
  footer .footer-right .info dd.tel span.eng {
    font-size: 1.375rem;
  }
  footer .footer-right .info dd.tel:before {
    width: 25px;
    height: 20px;
    margin-right: 5px;
  }
  footer .footer-right .btn a {
    font-size: 1.125rem;
    padding: 10px 30px 11px 30px;
  }
  footer .footer-right .btn a img {
    height: 20px;
  }
  footer .footer-bottom {
    margin-top: 40px;
    display: block;
  }
  footer .footer-bottom-left {
    display: none;
  }
  footer .footer-bottom-right .navi {
    height: 220px;
    margin-top: 10px;
  }
  footer .footer-bottom-right .navi > li p, footer .footer-bottom-right .navi > li a {
    padding: 10px;
  }
}
.copy {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  font-size: 0.75rem;
  text-align: left;
}

/* sp */
@media screen and (max-width: 768px) {
  .copy {
    margin: 20px auto 0 !important;
    font-size: 0.75rem;
    text-align: center;
  }
}
/******************************************
[section]
******************************************/
section {
  padding: 100px 0;
  overflow: hidden;
  z-index: 0;
}
section:nth-child(odd):after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2EEEA url("../img/wave-l.png") no-repeat left bottom;
  border-radius: 80px;
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  z-index: -1;
}
section:nth-of-type(4n):after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2EEEA url("../img/wave-r.png") no-repeat right bottom;
  left: -80px;
  border-radius: 80px;
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  z-index: -1;
}

/* sp */
@media screen and (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  section:nth-child(odd):after {
    border-radius: 0;
    right: 0;
    background-size: 30%;
  }
  section:nth-of-type(4n):after {
    border-radius: 0;
    right: 0;
    left: initial;
    background-size: 30%;
  }
}
/******************************************
[グローバルナビ]
******************************************/
.header-r, nav, nav > ul, nav > ul > li {
  position: static;
}

nav {
  width: 100%;
  height: auto;
  line-height: 1;
  margin: 0;
  padding: 0;
}
nav > ul {
  line-height: 1;
  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;
  padding: 10px 0;
  margin: 0 -15px 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
nav > ul > li {
  text-align: center;
  padding: 0;
}
nav > ul > li:hover > a {
  text-decoration: none;
}
nav > ul > li > a, nav > ul > li > p {
  height: 100%;
  font-size: 1rem;
  color: #412410;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  padding: 10px 15px;
  -webkit-transition: color 0.5s, background-color 0.5s;
  transition: color 0.5s, background-color 0.5s;
}
nav > ul > li > a:after, nav > ul > li > p:after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 2px;
  background-color: #412410;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center top;
      -ms-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
nav > ul > li > a:hover, nav > ul > li > p:hover {
  text-decoration: none;
}
nav > ul > li > a:hover:after, nav > ul > li > p:hover:after {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
nav .spNav-info {
  display: none;
}
nav .spNav-info-logo {
  display: none;
}

/* sp */
@media screen and (max-width: 768px) {
  nav {
    display: block;
    position: fixed;
    left: -100vw;
    top: 0;
    width: 100vw;
    height: 100%;
    overflow-y: auto;
    z-index: 1000000;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
    will-change: transform;
    border-width: 0;
    padding: 0;
  }
  nav > ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    border-top: 1px solid #fff;
  }
  nav > ul > li {
    width: 50%;
    height: auto;
    padding: 0;
    border-top: 1px solid #412410;
  }
  nav > ul > li:first-child {
    display: block;
  }
  nav > ul > li:nth-child(odd) {
    border-right-width: 0;
  }
  nav > ul > li:nth-child(even) {
    border-left: 1px solid #412410;
  }
  nav > ul > li:nth-child(1), nav > ul > li:nth-child(2) {
    margin-bottom: 104px;
  }
  nav > ul > li > a, nav > ul > li > p {
    padding: 15px;
    width: 100%;
  }
  nav .spNav-info {
    display: block;
    padding: 0;
    border-top: 1px solid #412410;
  }
  nav .spNav-info .btn {
    margin-top: 10px;
  }
  nav .spNav-info .btn a {
    font-size: 1rem;
    width: 100%;
    height: 40px;
  }
  nav .spNav-info .info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  nav .spNav-info .info dt, nav .spNav-info .info dd {
    font-size: 0.75rem;
    line-height: 1.5;
    border-bottom: 1px dashed #b5b3aa;
    padding: 10px;
  }
  nav .spNav-info .info dt {
    width: 80px;
    font-weight: 700;
    margin-bottom: 0;
  }
  nav .spNav-info .info dd {
    width: calc(100% - 80px);
    padding-left: 5px;
  }
  nav .spNav-info-logo {
    height: 60px;
    display: block;
    text-align: left;
    margin: 0 auto;
    padding: 5px 60px 5px 10px;
  }
  nav .spNav-info-logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  nav .spNav-info-logo a img {
    width: auto;
    height: 40px;
  }
  nav .spNav-info .spNav-info-tel {
    font-size: 1rem;
    font-weight: 600;
  }
  nav .spNav-info .spNav-info-tel i {
    margin-right: 5px;
  }
}
/* スマホ用グローバルナビボタン
******************************************/
.splogo, .button, .telBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .splogo {
    text-align: center;
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    padding: 10px 70px;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #b5b3aa;
  }
  .splogo img {
    height: 45px;
  }
  .button, .telBtn {
    display: block !important;
  }
  .button,
  .telBtn,
  .screen {
    position: fixed;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .button,
  .telBtn {
    background: #412410;
    top: 24px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    z-index: 1000000;
    cursor: pointer;
  }
  .button:after,
  .telBtn:after {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    bottom: 6px;
  }
  .button.fixed,
  .telBtn.fixed {
    top: 5px;
  }
  .button {
    left: 5px;
    outline: none;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
        transform: translate(0, 0);
  }
  .button:after {
    content: "MENU";
    text-align: center;
    color: #fff;
    display: block;
    position: absolute;
    width: 100%;
  }
  .button .bar {
    display: block;
    position: absolute;
    top: 18px;
    right: 0;
    left: 0;
    width: 32px;
    height: 2px;
    margin: auto;
    background: #fff;
  }
  .button .bar:before, .button .bar:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    width: 32px;
    height: 2px;
    margin: auto;
    background: #fff;
  }
  .button .bar:before {
    top: -8px;
  }
  .button .bar:after {
    top: 8px;
  }
  .open nav {
    left: 0;
    background-color: #fff;
  }
  .open .button {
    -ms-transform: translate(260px, 0);
        transform: translate(260px, 0);
    -webkit-transform: translate(260px, 0);
    left: initial;
    right: 270px;
    top: 5px;
  }
  .open .button:after {
    content: "CLOSE";
    color: #fff;
  }
  .open .telBtn {
    z-index: 999999;
  }
  .open .bar {
    background: none;
  }
  .open .bar:before, .open .bar:after {
    top: 0;
    background: #fff;
  }
  .open .bar:before {
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .open .bar:after {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  .open .screen {
    opacity: 0.8;
    visibility: visible;
  }
  .telBtn {
    background: #412410;
    right: 5px;
    padding: 5px 0;
    text-align: center;
  }
  .telBtn:after {
    content: "TEL";
    text-align: center;
    color: #fff;
    display: block;
    position: absolute;
    width: 100%;
  }
  .telBtn i {
    color: #fff;
    font-size: 1.375rem;
    top: 5px;
  }
  .telBtn2 {
    top: 65px;
  }
  .telBtn2:after {
    content: "MOBILE";
  }
  .screen {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
  }
}
/* クローンナビ */
.clone-header {
  width: 100%;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  max-width: 100% !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
      transform: translateY(-100%);
}
.clone-header .header {
  height: auto;
}
.clone-header .header-l, .clone-header .header-r {
  padding: 0;
}
@media screen and (min-width: 769px) {
  .clone-header {
    min-width: 1020px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .clone-header {
    height: auto;
  }
}
.clone-header.is-show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
      transform: translateY(0);
  top: 0;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
}
.clone-header.is-show .header {
  background-color: #fff;
}
.clone-header.is-show .header-l h1 {
  display: none;
}
.clone-header.is-show .header-l .logo {
  margin-top: 0 !important;
}
.clone-header.is-show .header-l .logo a img {
  height: 60px !important;
}
.clone-header.is-show .header-r .contactBtn a.tel {
  font-size: 1.5rem;
}
.clone-header.is-show .header-r .contactBtn a.tel img {
  height: 22px;
}
.clone-header.is-show .header-r nav ul li a, .clone-header.is-show .header-r nav ul li p {
  padding: 5px 15px;
}

/* sp */
@media screen and (max-width: 768px) {
  .clone-header {
    display: block;
    z-index: 0;
    top: -10px;
  }
  .clone-header .header {
    height: 60px;
  }
  .clone-header .header-l, .clone-header .header-r {
    padding: 0;
  }
  .clone-header .header-l .logo {
    margin-top: 0 !important;
  }
  .clone-header .header-l .logo a img {
    height: 50px !important;
  }
  .clone-header .header-r {
    display: none;
  }
  .clone-header.is-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
        transform: translateY(0);
    top: 0;
    -webkit-box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
            box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
  }
  .clone-header.is-show .header {
    background-color: #fff;
  }
  .clone-header.is-show .header-l h1 {
    display: none;
  }
  .clone-header.is-show .header-l .logo {
    margin-top: 0 !important;
  }
  .clone-header.is-show .header-l .logo a img {
    height: 50px !important;
  }
}
/******************************************
[totop] トップへ戻るボタン
******************************************/
.pagetop {
  position: fixed;
  z-index: 7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  bottom: -100px;
  right: -20px;
  width: auto;
  height: 100px;
}
.pagetop a {
  line-height: 1;
  display: block;
  height: 120px;
}
.pagetop a img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 769px) {
  .pagetop:hover a {
    text-decoration: none;
  }
}
.pagetop.fade {
  bottom: -33px;
}
@media screen and (min-width: 769px) {
  .pagetop.fade:hover {
    bottom: -20px;
  }
}

/* sp */
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: -100px;
    right: -20px;
    height: 100px;
    z-index: 0;
  }
  .pagetop a {
    height: 80px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .pagetop:hover a {
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .pagetop.fade {
    bottom: -53px;
  }
}
@media screen and (max-width: 768px) and (min-width: 769px) {
  .pagetop.fade:hover {
    bottom: -20px;
  }
}
/******************************************
[google map]
******************************************/
.gmap {
  overflow: hidden;
  height: 500px;
}
.gmap iframe {
  width: 100%;
  height: 500px;
  border: 10px solid #fff;
  border-radius: 20px;
}

/* sp */
@media screen and (max-width: 768px) {
  .gmap {
    height: auto !important;
  }
  .gmap iframe {
    height: 400px;
  }
}
/******************************************
[画像・ボックスの影]
******************************************/
.shadow-1 {
  -webkit-box-shadow: 5px 5px 0px 0px rgba(32, 74, 116, 0.5);
          box-shadow: 5px 5px 0px 0px rgba(32, 74, 116, 0.5);
}

.shadow-2 {
  -webkit-box-shadow: 10px 10px 0px 0px rgba(32, 74, 116, 0.5);
          box-shadow: 10px 10px 0px 0px rgba(32, 74, 116, 0.5);
}

.shadow-3 {
  -webkit-box-shadow: 5px 5px 5px 0px rgba(32, 74, 116, 0.5);
          box-shadow: 5px 5px 5px 0px rgba(32, 74, 116, 0.5);
}

/******************************************
注釈.note
******************************************/
.note {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  text-indent: -0.9rem;
  padding: 0 0 0 0.9rem;
  margin: 4px 0 0;
  display: block;
  width: 100%;
}
.note:first-child {
  margin: 10px 0 0;
}
.note-big {
  font-size: initial;
  line-height: 1.5;
  text-indent: -1rem;
  padding: 0 0 0 1rem;
  display: block;
}

/* sp */
@media screen and (max-width: 768px) {
  .note {
    text-indent: -1em;
    padding: 0 0 0 0.5em;
  }
}
/******************************************
[topics] トピックス
******************************************/
.topics.news ul.topicsArea li {
  width: 100%;
}
.topics.news ul.topicsArea li:last-child {
  margin-bottom: 0;
}
.topics.news ul.topicsArea li:last-child a {
  border-bottom-width: 0;
}
.topics.news ul.topicsArea li .topics_date {
  font-weight: 700;
  display: inline-block;
  margin: 0;
  color: #412410;
  /*background: $main;
  border-radius: 100px;
  padding: 0 15px 3px 15px;*/
}
.topics.news ul.topicsArea li .topics_title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  padding-left: 20px;
}
.topics.news ul.topicsArea li .topics_thumb {
  display: block;
}
.topics.news ul.topicsArea li .topics_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: 0px 0px;
     object-position: 0px 0px;
}
.topics.news ul.topicsArea li a {
  font-size: 1.125rem;
  line-height: 1;
  padding: 20px 0;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #b5b3aa;
}
.topics.news ul.topicsArea li a:hover {
  text-decoration: none;
}
.topics.detail .topics_title {
  font-size: 1.25rem;
  font-weight: 800;
}
.topics.detail .topics_date {
  font-size: 0.875rem;
  text-align: right;
}
.topics.detail .topics_thumb img {
  height: auto;
  max-height: 400px;
  display: block;
  margin: auto;
}
.topics.detail .topics_body {
  font-size: 1rem;
  padding: 40px 0 0;
}
.topics.detail .topics_body a {
  text-decoration: underline;
}
.topics.detail .topics_body h2 {
  margin: 20px 0 12px 0;
  font-size: 1.75em;
  color: #F2784C;
  margin-bottom: 1rem;
}
.topics.detail .topics_body h3 {
  margin: 40px 0 12px 0;
  border-bottom: solid 1px #c3b9b6;
  padding-bottom: 5px;
  color: #a46853;
  font-size: 1.3rem;
}
.topics.detail .topics_body h4 {
  margin: 30px 0 10px 0;
  background-color: #9a9a9a;
  color: #fff;
  padding: 2px 9px;
}
.topics.detail .topics_body p {
  line-height: 165%;
  margin-bottom: 1rem;
}
.topics.thumbnail > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 60px 60px;
}
.topics.thumbnail > ul li {
  width: 280px;
}
.topics.thumbnail > ul li a {
  color: #333;
  display: block;
  line-height: 1.2;
  padding: 0;
}
.topics.thumbnail > ul li a > span {
  display: block;
}
.topics.thumbnail > ul li .topics_thumb {
  width: 280px;
  height: 198px;
  display: block;
  margin: 0 auto 10px;
  overflow: hidden;
  background: url("../img/_thumbnail.jpg") center no-repeat;
  background-size: cover;
  z-index: 1;
}
.topics.thumbnail > ul li .topics_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
a:hover {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.topics.thumbnail > ul li .topics_date {
  color: #412410;
  font-weight: 700;
  padding: 0 10px;
}
.topics.thumbnail > ul li .topics_title {
  font-weight: 700;
  width: 100%;
  text-align: left;
  overflow: visible;
  text-overflow: inherit;
  white-space: inherit;
  display: block;
  padding: 0 10px;
  line-height: 1.5;
}
.topics .category_name {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  min-width: 80px;
  color: #fff;
  padding: 6px 10px 7px;
  margin-right: 20px;
  line-height: 1;
  background-color: #412410;
  border-radius: 100px;
  display: inline-block !important;
}

/* sp */
@media screen and (max-width: 768px) {
  .topics.news ul.topicsArea li .topics_date {
    font-size: 0.875rem;
  }
  .topics.news ul.topicsArea li .topics_title {
    padding-left: 0;
    width: 100%;
    display: block;
    margin-top: 5px;
  }
  .topics.news ul.topicsArea li a {
    font-size: 0.875rem;
    display: block;
    padding: 10px 0;
    margin: 0;
  }
  .topics.news ul.topicsArea li span {
    display: inline-block;
  }
  .topics.detail {
    background-size: 240px 240px;
  }
  .topics.detail .topics_title {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  .topics.detail .topics_date {
    font-size: 0.625rem;
  }
  .topics.detail .topics_body {
    font-size: 1rem;
    padding: 30px 15px;
  }
  .topics.thumbnail ul {
    display: block;
  }
  .topics.thumbnail ul li {
    width: 100%;
    margin: 40px 0 0;
  }
  .topics.thumbnail ul li:first-of-type {
    margin-top: 0;
  }
  .topics.thumbnail ul li .topics_thumb {
    width: 100%;
    aspect-ratio: 280/198;
    height: auto;
    border-radius: 4px;
  }
  .topics.thumbnail ul li .topics_date,
  .topics.thumbnail ul li .topics_title {
    font-size: 0.875rem;
  }
  .topics.thumbnail ul li .topics_date {
    padding: 0;
  }
  .topics.thumbnail ul li .topics_title {
    padding: 0;
    margin: 0;
  }
  .topics .category_name {
    font-size: 0.625rem;
    min-width: inherit;
    padding: 5px 10px;
    margin-right: 5px;
  }
}
/******************************************
[sideBnr] 追随バナー
******************************************/
.sideBnr {
  position: fixed;
  right: 0;
  top: 260px;
  z-index: 10;
}
.sideBnr > div a {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.4;
  width: 70px;
  height: auto;
  font-size: 1.125rem;
  color: #fff;
  font-weight: bold;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  border-radius: 16px 0 0 16px;
  padding: 30px 30px 30px 15px;
  margin: 10px 0;
  text-decoration: none;
  right: -15px;
}
.sideBnr > div a:hover {
  right: -2px;
}
.sideBnr > div a img {
  width: 20px;
  margin-bottom: 5px;
}
.sideBnr > div.mail a {
  background-color: #204A74;
}
.sideBnr > div.insta a {
  background-color: #fff;
  border: 2px solid #204A74;
  color: #204A74;
}

/* sp */
@media screen and (max-width: 768px) {
  .sideBnr {
    display: none !important;
    width: 100%;
    position: fixed;
    right: 0;
    left: 0;
    top: initial;
    bottom: 0;
    z-index: 10;
    text-align: center;
    padding: 6px;
    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;
    background-color: #fff;
    z-index: 9;
  }
  .sideBnr a {
    width: calc(50% - 3px);
    font-size: 0.875rem;
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
    padding: 10px 0;
    margin: 0;
    display: block;
    right: 0;
    border-radius: 0;
  }
  .sideBnr a:first-child {
    width: calc(40% - 3px);
  }
  .sideBnr a:last-child {
    width: calc(60% - 3px);
  }
  .sideBnr a i {
    font-size: 140%;
    margin-bottom: 0;
    margin-right: 5px;
  }
}
/******************************************
[.imgTxt] 画像とテキストのセット
******************************************/
.imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.imgTxt .flowNum {
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: 1;
}
.imgTxt-img {
  font-size: 0;
  width: 40vw;
  max-width: 400px;
  overflow: hidden;
}
.imgTxt-img img {
  width: 100%;
}
.imgTxt-img.right {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}
.imgTxt-img.left {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}
.imgTxt-img.height100 {
  border-radius: 20px;
}
.imgTxt-img.height100 img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: auto !important;
  height: 100%;
  max-width: initial;
}
.imgTxt-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.imgTxt-txt.left {
  -webkit-box-ordinal-group: 2 !important;
      -ms-flex-order: 1 !important;
          order: 1 !important;
}
.imgTxt-txt.right {
  -webkit-box-ordinal-group: 3 !important;
      -ms-flex-order: 2 !important;
          order: 2 !important;
}
.imgTxt.wide .imgTxt-img {
  width: 40vw;
  max-width: 500px;
}
.imgTxt.wide .imgTxt-img img {
  width: 100%;
}
.imgTxt.wide .imgTxt-txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.imgTxt.mini .imgTxt-img {
  width: 300px;
}
.imgTxt.mini .imgTxt-img img {
  width: 100%;
}

/* sp */
@media screen and (max-width: 768px) {
  .imgTxt,
  .imgTxt.mini {
    display: block;
    width: 100%;
    max-width: 600px;
    margin-top: 30px;
  }
  .imgTxt .flowNum,
  .imgTxt.mini .flowNum {
    left: -10px;
    top: -10px;
  }
  .imgTxt .flowNum img,
  .imgTxt.mini .flowNum img {
    width: 60px;
    height: auto;
  }
  .imgTxt > div,
  .imgTxt.mini > div {
    min-height: auto;
  }
  .imgTxt .imgTxt-img,
  .imgTxt .imgTxt-txt,
  .imgTxt.mini .imgTxt-img,
  .imgTxt.mini .imgTxt-txt {
    width: 100% !important;
  }
  .imgTxt .imgTxt-img,
  .imgTxt.mini .imgTxt-img {
    height: auto;
    margin: 0 auto 20px;
  }
  .imgTxt .imgTxt-img img,
  .imgTxt.mini .imgTxt-img img {
    border-radius: 14px;
  }
  .imgTxt .imgTxt-txt,
  .imgTxt.mini .imgTxt-txt {
    padding: 0 !important;
  }
  .imgTxt .ttl,
  .imgTxt.mini .ttl {
    font-size: 1.25rem;
    margin-bottom: 15px;
  }
  .imgTxt .txt,
  .imgTxt.mini .txt {
    font-size: 1rem;
  }
  .imgTxt:nth-of-type(even) .imgTxt-txt,
  .imgTxt.mini:nth-of-type(even) .imgTxt-txt {
    padding: 15px 0 0;
  }
}
/******************************************
コンタクトエリア　.contactSec
******************************************/
#contactSec {
  padding: 30px 0;
  background: url("../img/bg_beige.jpg") repeat center;
  background-size: 50px 50px;
}
#contactSec .contactSec {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
#contactSec .contactSec h2 {
  width: auto;
  margin: 0 0 10px;
}
#contactSec .contactSec h2 span.eng {
  font-size: 2.75rem;
}
#contactSec .contactSec-btn {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
}
#contactSec .contactSec-btn > div, #contactSec .contactSec-btn > a {
  padding: 0 20px;
}
#contactSec .contactSec-btn .tel {
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px dashed #b5b3aa;
  padding-left: 0;
}
#contactSec .contactSec-btn .tel i {
  margin: 5px 5px 0 0;
}
#contactSec .contactSec-btn .btn {
  margin: 0;
  border-right: 1px dashed #b5b3aa;
}
#contactSec .contactSec-btn .btn a {
  margin: 0;
  border-radius: 8px;
  background-color: #412410;
  color: #fff;
  padding: 10px 20px;
}
#contactSec .contactSec-btn .btn a i {
  margin-right: 5px;
  font-size: 120%;
}
#contactSec .contactSec-btn .btn a:after {
  display: none;
}
#contactSec .contactSec-btn .sns {
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
#contactSec .contactSec-btn a:hover {
  text-decoration: none;
}

/* sp */
@media screen and (max-width: 768px) {
  #contactSec {
    padding: 60px 0;
    background-size: 40px 40px;
  }
  #contactSec .contactSec {
    display: block;
  }
  #contactSec .contactSec h2 {
    margin: 0 0 10px;
  }
  #contactSec .contactSec h2 span.eng {
    font-size: 2.75rem;
  }
  #contactSec .contactSec-btn {
    padding: 0 15px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #contactSec .contactSec-btn > div, #contactSec .contactSec-btn > a {
    width: 100%;
    padding: 15px;
  }
  #contactSec .contactSec-btn .tel {
    font-size: 1.75rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px dashed #b5b3aa;
    border-right: none;
  }
  #contactSec .contactSec-btn .btn {
    border-bottom: 1px dashed #b5b3aa;
    border-right: none;
  }
  #contactSec .contactSec-btn .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
}
/******************************************
[btn] ボタン
******************************************/
.btn {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 30px auto 0;
  z-index: 1;
}
.btn a {
  font-size: 1rem;
  color: #204A74;
  font-weight: 700;
  text-decoration: none;
  background-color: #fff;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 40px 16px;
  margin: 0 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 2px solid #204A74;
  border-radius: 100px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  -webkit-box-shadow: 0 5px 0 0 #204A74;
          box-shadow: 0 5px 0 0 #204A74;
}
.btn a:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translate(0, 5px);
      transform: translate(0, 5px);
  text-decoration: none;
  -webkit-box-shadow: 0 0 0 0 #204A74;
          box-shadow: 0 0 0 0 #204A74;
}
.btn a {
  /*&:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba($black, 0.3);
    text-decoration: none;
    opacity: 0.8;
  }*/
}
.btn a:after {
  content: "";
  background: url("../img/icon-arrow.svg") no-repeat center;
  background-size: contain;
  width: 23px;
  height: 8px;
  margin-left: 10px;
}
.btn a > img {
  margin: 0 10px;
}

/* sp */
@media screen and (max-width: 768px) {
  .btn {
    margin: 20px auto 0;
    display: block;
  }
  .btn a {
    font-size: 1rem;
    padding: 11px 25px 12px 30px;
    margin: 20px 5px 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-shadow: 0 5px 0 0 #204A74;
            box-shadow: 0 5px 0 0 #204A74;
  }
  .btn a:hover {
    -webkit-transform: translateY(5px);
    -ms-transform: translate(0, 5px);
        transform: translate(0, 5px);
    text-decoration: none;
    -webkit-box-shadow: 0 0 0 0 #204A74;
            box-shadow: 0 0 0 0 #204A74;
  }
  .btn a {
    /*&:hover {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      box-shadow: 0 10px 15px rgba($black, 0.3);
      text-decoration: none;
      opacity: 0.8;
    }*/
  }
  .btn a:after {
    width: 17px;
    height: 6px;
    margin-left: 5px;
  }
  .btn a:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .telNum a {
    color: #fff;
  }
}
/******************************************
基本テーブルデザイン
******************************************/
table {
  background-color: #fff;
}
table.basic {
  width: 100%;
  margin-bottom: 20px;
}
table.basic tr {
  border-top: 1px solid #b5b3aa;
}
table.basic tr:first-child {
  border-top-width: 0;
}
table.basic tr th, table.basic tr td {
  text-align: left;
  padding: 20px;
  line-height: 1.5;
}
table.basic tr th {
  background-color: #F3F3F3;
  font-weight: 600;
  width: 160px;
}

/* sp */
@media screen and (max-width: 768px) {
  table.basic {
    width: 100%;
    margin-left: 0;
  }
  table.basic tr:first-child {
    margin-top: 0;
  }
  table.basic tr th, table.basic tr td {
    font-size: 0.875rem;
    padding: 10px;
  }
  table.basic tr th {
    width: 80px;
    padding: 10px;
  }
}
dl.basic {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
dl.basic dt, dl.basic dd {
  border-bottom: 1px dashed #b5b3aa;
  padding: 10px 5px;
}
dl.basic dt {
  width: 25%;
}
dl.basic dd {
  width: 75%;
}

/******************************************
[.frame] フレーム
******************************************/
.frame {
  padding: 25px;
  margin: 20px 0;
}
.frame-line {
  border: 1px solid #b5b3aa;
  padding: 20px;
  margin: 10px 0;
}
.frame-white {
  background: #fff;
  padding: 30px;
  margin: 40px 0 0;
  border-radius: 30px;
}
.frame-white:first-of-type {
  margin-top: 0;
}
.frame-beige {
  background: rgba(242, 238, 234, 0.5);
  padding: 30px;
  margin: 40px 0 0;
  border-radius: 8px;
}
.frame-beige:first-of-type {
  margin-top: 0;
}
.frame-waku {
  padding: 40px 50px;
  background: url("../img/frame_top.png"), url("../img/frame_bottom.png");
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
}
.frame-waku:after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 80px);
  background: url("../img/frame_mid.png") repeat center;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

/* sp */
@media screen and (max-width: 768px) {
  .frame {
    padding: 15px;
  }
  .frame-line {
    padding: 15px;
  }
  .frame-white {
    padding: 20px;
    margin: 20px 0 0;
  }
  .frame-waku {
    width: calc(100% + 20px);
    padding: 20px 25px;
    margin-left: -10px;
    background: url("../img/frame_top-sp.png"), url("../img/frame_bottom-sp.png");
    background-size: 100% auto, 100% auto;
    background-repeat: no-repeat, no-repeat;
    background-position: top center, bottom center;
  }
  .frame-waku:after {
    height: calc(100% - 56px);
    background: url("../img/frame_mid-sp.png") repeat center;
    background-size: 100% auto;
  }
}
/******************************************
[.check] チェックボックス
******************************************/
.check li {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 0;
  padding-bottom: 10px;
}
.check li:before {
  color: #412410;
  font-size: 1.5em;
  line-height: 1;
  content: "\e901";
  font-family: "icomoon";
  display: block;
  text-align: center;
  margin-right: 10px;
}
.check.line li {
  border-bottom: 1px dashed #412410;
}

/* sp */
@media screen and (max-width: 768px) {
  .check li {
    font-size: 1rem;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    margin-top: 10px;
  }
  .check li:first-child {
    margin-top: 0;
  }
  .check li:before {
    font-size: 1.2em;
  }
}
.list li {
  display: block;
  line-height: 1.5;
  padding-left: 1.4rem;
  padding-bottom: 20px;
  margin: 20px 0 0;
  border-bottom: 1px dashed #b5b3aa;
}
.list li:first-child {
  margin-top: 0;
}
.list li:before {
  content: "●";
  color: #412410;
  display: inline-block;
  width: 1em;
  text-align: left;
  position: absolute;
  left: 0;
  top: 0;
}
.list.inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list.inline li {
  margin: 0 5% 2% 0;
}
.list.noborder li {
  border-bottom-width: 0;
  padding-bottom: 5px;
  margin-top: 5px;
}
.list-num li {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 32px;
  margin-top: 15px;
}
.list-num li:first-child {
  margin-top: 0;
}
.list-num li span {
  font-weight: 900;
  display: inline-block;
  line-height: 1.4;
  width: 27px;
  height: 27px;
  background-color: #412410;
  color: #fff;
  border-radius: 100px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 1px;
}

/* sp */
@media screen and (max-width: 768px) {
  .list li {
    padding-bottom: 15px;
    margin: 15px 0 0;
  }
  .list.inline li {
    margin: 0 5% 2% 0;
  }
  .list-num li {
    font-size: 0.875rem;
    padding-left: 25px;
    margin-top: 10px;
  }
  .list-num li span {
    width: 20px;
    height: 20px;
  }
}
/******************************************
ローディング　loading
******************************************/
#load_animation {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

#load_animation.is-active {
  opacity: 0;
  visibility: hidden;
}

.load-icon {
  width: 100vw;
  height: 100vh;
  -webkit-transition: all 1s;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  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;
  opacity: 0;
  visibility: hidden;
}
.load-icon img {
  width: auto;
  max-width: initial;
  height: 100px;
}

.load-icon.is-active {
  opacity: 1;
  visibility: visible;
}

/* sp */
@media screen and (max-width: 768px) {
  .load-icon img {
    width: 50%;
    height: auto;
  }
}
/******************************************
画面最下部追従バナー　fixBnr
******************************************/
.fixBnr {
  width: 100%;
  height: 80px;
  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;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #204A74;
  z-index: 100;
}
.fixBnr .btn {
  width: 50%;
  height: 100%;
  margin: 0;
}
.fixBnr .btn:nth-child(1) a {
  background-image: url(../img/bg-red.jpg);
}
.fixBnr .btn:nth-child(2) a {
  background-image: url(../img/bg-green.jpg);
}
.fixBnr .btn a {
  font-size: 1.5vw;
  color: #fff;
  width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: 293px 238px;
}
.fixBnr .btn a img {
  width: 2vw;
  margin: 0 5px;
}

/* sp */
@media screen and (max-width: 768px) {
  .fixBnr {
    height: 40px;
  }
  .fixBnr .btn:nth-child(1) {
    width: 35%;
  }
  .fixBnr .btn:nth-child(2) {
    width: 65%;
  }
  .fixBnr .btn a {
    font-size: 0.6875rem;
  }
  .fixBnr .btn a img {
    width: auto;
    height: 20px;
  }
}
/******************************************
[flow.html] 
******************************************/
.step-list li {
  border-radius: 20px;
  background-color: #F3F3F3;
  margin: 10px 0 0;
  padding: 30px 30px 30px 180px;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.step-list li:first-child {
  margin-top: 0;
}
.step-list li .img {
  width: 120px;
  margin-right: 20px;
}
.step-list li .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.step-list li .txt p.ttl {
  font-size: 1.75rem;
  font-weight: 700;
  color: #F34A08;
  margin-bottom: 5px;
}
.step > p {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 40px 15px;
  border-radius: 100px;
  height: calc(100% - 40px);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

/* sp */
@media screen and (max-width: 768px) {
  .step-list li {
    display: block;
    border-radius: 18px;
    padding: 15px 15px 15px 75px;
  }
  .step-list li .img {
    width: 40px;
    margin: 0;
    position: absolute;
    top: 10px;
  }
  .step-list li .txt p {
    font-size: 0.875rem;
  }
  .step-list li .txt p.ttl {
    font-size: 1.25rem;
    margin: 0 0 10px 50px;
  }
  .step > p {
    font-size: 0.875rem;
    padding: 20px 5px;
    height: calc(100% - 40px);
    top: 20px;
    left: 5px;
  }
  .step > p.flow-sale {
    height: 72%;
    left: 35px;
  }
}
.float .img {
  font-size: 0;
}
.float .img.left {
  width: 220px;
  margin: 0 40px 20px 0;
  float: left;
}
.float .img.right {
  width: 220px;
  margin: 0 0 20px 40px;
  float: right;
}
/* sp */
@media screen and (max-width: 768px) {
  .float .img.left {
    width: 100%;
    margin: 0 0 20px 0;
    float: none;
  }
  .float .img.right {
    width: 100%;
    margin: 0 0 40px 0;
    float: none;
  }
}
.ttl-txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.ttl-txt h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 40px;
  text-align: left;
  margin-bottom: 0;
}
.ttl-txt h3 span {
  text-align: left;
}
.ttl-txt p {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

/* sp */
@media screen and (max-width: 768px) {
  .ttl-txt {
    display: block;
    margin-bottom: 30px;
  }
  .ttl-txt h3 {
    padding-right: 0;
    margin-bottom: 20px;
  }
}
#bnr {
  padding: 40px 0;
  background-color: #fff;
}
#bnr a {
  display: block;
  font-size: 0;
}

/******************************************
[FAQ] よくある質問
******************************************/
.faq dl {
  border-radius: 16px;
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  position: relative;
}
.faq dl:first-child {
  margin-top: 0;
}
.faq dl dt, .faq dl dd {
  position: relative;
}
.faq dl dt:before, .faq dl dd:before {
  background-color: #412410;
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1;
  color: #fff;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  margin-right: 10px;
  padding: 5px 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq dl dt {
  font-weight: 700;
  line-height: 1.6;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 40px;
}
.faq dl dt:before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq dl dt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  border: 2px solid #412410;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#412410), to(#412410)), -webkit-gradient(linear, left top, left bottom, from(#412410), to(#412410));
  background-image: linear-gradient(#412410, #412410), linear-gradient(#412410, #412410);
  background-position: center, center;
  background-size: 12px 2px, 2px 12px;
  background-repeat: no-repeat;
  -webkit-transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-size 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-size 0.3s ease;
  transition: transform 0.3s ease, background-size 0.3s ease, -webkit-transform 0.3s ease;
}
.faq dl dt.open:after {
  background-size: 12px 2px, 0px 12px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.faq dl dd {
  display: none;
  margin-top: 20px;
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
}
.faq dl dd:before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #412410;
  font-family: "Oswald", sans-serif;
  text-align: center;
  line-height: 1;
  color: #fff;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 100%;
  padding: 5px 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#index .ashiato {
  position: absolute;
  width: 343px;
  height: 400px;
  z-index: 0;
}
#index .ashiato.lt {
  left: 80px;
  top: 0;
}
#index .ashiato.rt {
  right: 80px;
  top: 0;
}
#index .ashiato.lb {
  left: 80px;
  bottom: 0;
}
#index .ashiato.rb {
  right: 0;
  bottom: 0;
}
#index {
  /******************************************
  [mv]
  ******************************************/
}
#index .mv {
  width: 100%;
  height: 860px;
  margin: -180px auto 0;
  padding: 100px 0 40px;
  background: #F2EEEA;
  z-index: 0;
}
#index .mv-box {
  width: calc(100vw - 160px);
  max-width: 1600px;
  height: 100%;
  background: url("../img/mv-bg.jpg") no-repeat right center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 80px;
  margin: auto;
}
#index .mv-box:before {
  content: "";
  width: 260px;
  height: 180px;
  background: url("../img/mv-wave.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#index .mv-ttl {
  font-size: 2.75rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  margin-left: 100px;
  text-shadow: 3px 3px 5px black;
}
#index .mv-ttl .small {
  font-size: 2.5rem;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index .mv {
    width: 100%;
    height: 500px;
    margin: -110px auto 0;
    padding: 85px 0 20px;
  }
  #index .mv-box {
    width: calc(100vw - 30px);
    background: url("../img/mv-bg.jpg") no-repeat right center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 20px;
    margin: auto;
  }
  #index .mv-box:before {
    width: 190px;
    height: 40px;
    background: url("../img/mv-wave-sp.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  #index .mv-ttl {
    font-size: 1.625rem;
    line-height: 1.2;
    margin: 55px auto 0;
    text-align: center;
  }
  #index .mv-ttl .small {
    font-size: 1.5rem;
  }
}
#index {
  /******************************************
  [sec1]  イントロ
  ******************************************/
}
#index #menu, #index #faq {
  overflow: visible;
}
#index #menu .ashiato.lt, #index #faq .ashiato.lt {
  z-index: 0;
}
#index #menu:before, #index #faq:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}
#index #menu:before {
  background-image: url("../img/icon-dog.svg");
  width: 143px;
  height: 150px;
  left: 60px;
  bottom: -10px;
}
#index #faq:before {
  background-image: url("../img/icon-cat.svg");
  width: 102px;
  height: 160px;
  right: 80px;
  bottom: -50px;
}
#index .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4%;
}
#index .menu-item {
  width: 31.333%;
}
#index .menu-item .ttl {
  font-size: 1.75rem;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
  margin: 20px 0;
}
#index .menu-item.linkBtn {
  padding: 20px;
  background-color: #fff;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
          box-shadow: 0px 4px 4px 0px rgba(51, 51, 51, 0.2);
}
#index .menu-item.linkBtn > .radius {
  border-radius: 24px;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index #menu:before {
    width: 71px;
    height: 75px;
    left: 10px;
    bottom: -20px;
  }
  #index #faq:before {
    width: 51px;
    height: 80px;
    right: 10px;
    bottom: -35px;
  }
  #index .menu {
    display: block;
  }
  #index .menu-item {
    width: 100%;
    margin-top: 40px;
    border-radius: 30px;
    background-color: #F3F3F3;
    padding: 20px;
  }
  #index .menu-item:first-child {
    margin-top: 0;
  }
  #index .menu-item .ttl {
    font-size: 1.25rem;
  }
  #index .menu-item.linkBtn {
    border-radius: 30px;
    width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
  }
  #index .menu-item.linkBtn > .radius {
    border-radius: 20px;
  }
}
#index {
  /******************************************
  [sec2]  料金
  ******************************************/
}
#index #price .ashiato.lb {
  left: 0;
}
#index .price-box {
  border-radius: 60px;
  border: 6px dotted #BAA681;
  padding: 40px 60px;
}
#index .price-box > .midashi-h2 {
  text-align: center;
  margin-top: -80px;
  z-index: 1;
}
#index .price-box > .midashi-h2:before {
  z-index: 1;
}
#index .price-box > .midashi-h2:after {
  content: "";
  display: block;
  width: 156px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
}
#index .price-table {
  border-collapse: separate;
  border: 2px solid #BAA681;
  border-radius: 20px;
  border-spacing: 0;
  width: 100%;
  margin: 40px 0 10px;
}
#index .price-table tr:first-child th {
  font-size: 1.5rem;
  text-align: center;
  background-color: #BAA681;
  color: #fff;
  border-width: 0 !important;
  overflow: hidden;
  border-radius: 17px 17px 0 0;
  padding: 10px;
}
#index .price-table tr:last-child td {
  border-top: 2px solid #BAA681;
}
#index .price-table tr th, #index .price-table tr td {
  padding: 20px 15px;
}
#index .price-table tr th {
  text-align: left;
  font-weight: 700;
  border-right: 2px solid #BAA681;
}
#index .price-table tr td {
  line-height: 1;
  text-align: right;
  border-left: 2px solid #BAA681;
  vertical-align: baseline;
}
#index .price-table tr td:first-of-type {
  font-weight: 700;
  text-align: left;
  border-left-width: 0;
}
#index .price-table tr td:first-of-type:before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: #204A74;
  margin-right: 5px;
}
#index .price-table tr td:last-of-type {
  font-size: 1.25rem;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index #price {
    padding-top: 100px;
  }
  #index .price-box {
    border-radius: 30px;
    padding: 20px;
  }
  #index .price-box > .midashi-h2 {
    margin-top: -45px;
  }
  #index .price-box > .midashi-h2:after {
    width: 105px;
  }
  #index .price-table {
    border-radius: 20px;
    margin: 20px 0 10px;
  }
  #index .price-table tr:first-child th {
    font-size: 1rem;
    border-radius: 17px 17px 0 0;
  }
  #index .price-table tr th, #index .price-table tr td {
    font-size: 0.875rem;
    padding: 10px;
  }
  #index .price-table tr td:first-of-type:before {
    width: 10px;
    height: 10px;
  }
  #index .price-table tr td:last-of-type {
    font-size: 1rem;
  }
}
#index {
  /******************************************
  [sec5] ネットお参り
  ******************************************/
}
#index #online_shrine:after {
  display: none;
}
#index #online_shrine .ashiato.lb {
  left: -80px;
}
#index .online_shrine {
  color: #fff;
  background: #BAA681;
  border-radius: 30px;
  padding: 40px;
}
#index .online_shrine:before, #index .online_shrine:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
}
#index .online_shrine:before {
  background-image: url("../img/index_sec5-cat.png");
  width: 224px;
  height: 160px;
  left: 0;
  top: 0;
}
#index .online_shrine:after {
  background-image: url("../img/index_sec5-family.png");
  width: 171px;
  height: 260px;
  right: -60px;
  bottom: 0;
}
#index .online_shrine .midashi-h2 {
  margin-top: -80px;
  color: #fff;
}
#index .online_shrine .midashi-h2:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-color: #BAA681;
  border-radius: 100%;
  padding: 10px;
  background-size: 60%;
  background-image: url("../img/icon-pow-white.svg");
  margin: 0 auto;
}
#index .online_shrine .sub-ttl {
  text-align: center;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
#index .online_shrine .imgTxt-txt {
  padding-right: 60px;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index #online_shrine .ashiato.lb {
    left: -80px;
  }
  #index .online_shrine {
    border-radius: 30px;
    padding: 40px 20px;
  }
  #index .online_shrine:before {
    width: 112px;
    height: 80px;
  }
  #index .online_shrine:after {
    width: 65px;
    height: 100px;
    right: -10px;
    bottom: -60px;
  }
  #index .online_shrine .midashi-h2 {
    margin-top: -70px;
  }
  #index .online_shrine .midashi-h2:before {
    width: 80px;
    height: 80px;
    background-size: 60%;
    margin-bottom: 0;
  }
  #index .online_shrine .sub-ttl {
    text-align: center;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  #index .online_shrine .imgTxt-txt {
    padding-right: 60px;
  }
}
#index {
  /******************************************
  [sec2]  お知らせ
  ******************************************/
}
#index #news {
  padding: 60px 0 0;
}
#index #news .news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#index #news .news .news-ttl .midashi-h2 {
  text-align: center;
  margin-bottom: 20px;
}
#index #news .news .news-ttl .btn {
  margin-top: 0;
}
#index #news .news ul {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 40px;
}
#index #news .news ul li {
  padding: 0;
}
#index #news .news ul li a {
  font-size: 1rem;
  padding: 20px 0;
  border-bottom: 1px dashed #b5b3aa;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index #news {
    padding: 60px 0;
  }
  #index #news .news {
    display: block;
  }
  #index #news .news .news-ttl {
    display: none;
  }
  #index #news .news ul {
    padding-left: 0;
  }
  #index #news .news ul li a {
    padding: 10px 0;
  }
}
#index {
  /******************************************
  [sec5]  アクセス
  ******************************************/
}
#index .access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#index .access > div {
  height: 480px;
}
#index .access > div iframe {
  height: 100%;
}
#index .access-l {
  width: 440px;
  border-radius: 20px;
  padding: 20px;
  background-color: #fff;
}
#index .access-l .img {
  border-radius: 12px;
  margin-bottom: 10px;
}
#index .access-l .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 94%;
  margin: auto;
}
#index .access-l .info dt, #index .access-l .info dd {
  font-size: 1.125rem;
  line-height: 1.5;
  padding: 5px 0;
  border-top: 1px dashed #b5b3aa;
}
#index .access-l .info dt:first-of-type, #index .access-l .info dd:first-of-type {
  border-top-width: 0;
}
#index .access-l .info dt {
  width: 19.2%;
  font-weight: 700;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
#index .access-l .info dd {
  width: 80.8%;
  font-weight: normal;
  padding-left: 8%;
}
#index .access-r {
  width: 560px;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index .access {
    display: block;
  }
  #index .access > div {
    height: auto;
  }
  #index .access-l {
    width: 100%;
    border-radius: 16px;
    padding: 15px;
  }
  #index .access-l .img {
    border-radius: 10px;
  }
  #index .access-l .info dt, #index .access-l .info dd {
    font-size: 0.875rem;
  }
  #index .access-r {
    width: 100%;
    margin-top: 20px;
  }
}
#index {
  /******************************************
  [sec6]  ブログバナー
  ******************************************/
}
#index #blog {
  padding: 60px 0 80px;
  background-color: initial;
}
#index a.blog-btn {
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #F2EEEA;
  border-radius: 16px;
  overflow: hidden;
  padding-right: 20px;
}
#index a.blog-btn span {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#index a.blog-btn span img {
  font-size: 0;
}
#index {
  /* sp */
}
@media screen and (max-width: 768px) {
  #index a.blog-btn {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-radius: 16px;
    padding-right: 0;
  }
  #index a.blog-btn span {
    height: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #index a.blog-btn span img {
    margin: 5px 0;
  }
  #index a.blog-btn span.img1 {
    width: 100%;
    height: 150px;
  }
  #index a.blog-btn span.img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index a.blog-btn span.img2 {
    width: 35%;
    padding: 15px 0 15px 15px;
  }
  #index a.blog-btn span.img2 img {
    height: auto;
  }
  #index a.blog-btn span.img3 {
    width: 55%;
    padding: 15px 0;
  }
  #index a.blog-btn span.img3 img {
    height: auto;
  }
  #index a.blog-btn span.img4 {
    width: 10%;
    padding: 15px 15px 15px 0;
  }
  #index a.blog-btn span.img4 img {
    height: auto;
  }
}

#second section:nth-of-type(1):before {
  content: "";
  display: block;
  width: 343px;
  height: 400px;
  background: url("../img/ashiato-beige-r.png") no-repeat right center;
  position: absolute;
  bottom: 0;
  right: 0;
}
#second section:nth-of-type(2):before {
  content: "";
  display: block;
  width: 343px;
  height: 400px;
  background: url("../img/ashiato-white-l.png") no-repeat left center;
  position: absolute;
  top: 0;
  left: 80px;
}
#second section:nth-of-type(3):before {
  content: "";
  display: block;
  width: 343px;
  height: 400px;
  background: url("../img/ashiato-beige-l.png") no-repeat right center;
  position: absolute;
  top: 0;
  right: 0;
}
#second section:nth-of-type(4):before {
  content: "";
  display: block;
  width: 343px;
  height: 400px;
  background: url("../img/ashiato-white-r.png") no-repeat left center;
  position: absolute;
  top: 0;
  left: 0;
}
#second .midashi-h2 {
  margin-top: -30px;
}
#second section {
  padding: 100px 0;
  overflow: hidden;
  z-index: 0;
}
#second section:nth-child(even):after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2EEEA url("../img/wave-l.png") no-repeat left bottom;
  border-radius: 80px;
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  z-index: -1;
}
#second section:nth-child(even):last-child {
  margin-bottom: 100px;
}
#second section:nth-child(odd):after {
  display: none;
}
#second section:nth-child(odd) .faq dl {
  background-color: #F2EEEA;
}
#second section:nth-of-type(4n):after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2EEEA url("../img/wave-r.png") no-repeat right bottom;
  left: -80px;
  border-radius: 80px;
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  z-index: -1;
}
#second header .header-l .logo {
  margin-top: 40px;
}
#second header .header-l .logo a img {
  height: 80px;
}
#second .column-3n .frame-white {
  padding: 20px;
}
#second .column-3n .frame-white .radius {
  border-radius: 20px;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second section {
    padding: 60px 0;
  }
  #second section:nth-of-type(1) {
    padding-top: 100px;
  }
  #second section:nth-child(even):after {
    border-radius: 0;
    right: 0;
    background-size: 30%;
  }
  #second section:nth-child(even):last-child {
    margin-bottom: 60px;
  }
  #second section:nth-of-type(4n):after {
    left: 0;
    border-radius: 0;
    right: 0;
  }
  #second .midashi-h2 {
    margin-top: 0;
  }
  #second header .header-l .logo {
    margin-top: 10px;
  }
  #second .column-2n-sp {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    gap: 4%;
  }
  #second .column-2n-sp .column-box {
    width: 48%;
  }
}
#second {
  /******************************************
  [mv] メインタイトル
  ******************************************/
}
#second .mv {
  width: 100%;
  height: 400px;
  margin: -130px auto 0;
  padding: 100px 0 20px;
  background: #F2EEEA;
  z-index: 0;
}
#second .mv-box {
  width: calc(100vw - 160px);
  max-width: 1600px;
  height: 100%;
  background-color: #412410;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0px 40px 40px 40px;
  margin: auto;
  overflow: hidden;
}
#second .mv-box:after {
  content: "";
  width: calc(100% + 10px);
  height: 410px;
  background: url(../img/mv-bg.jpg) no-repeat right bottom -70px;
  background-size: cover;
  margin: auto;
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: 0;
  -ms-filter: blur(4px);
  -webkit-filter: blur(4px);
  filter: blur(4px);
  opacity: 0.7;
  z-index: 0;
}
#second .mv-box:before {
  content: "";
  width: 173px;
  height: 120px;
  background: url("../img/mv-wave.png") no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#second .mv-ttl {
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
  margin-left: 160px;
  text-shadow: 3px 3px 5px black;
  z-index: 3;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .mv {
    width: 100%;
    height: 300px;
    margin: -110px auto 0;
    padding: 85px 0 20px;
  }
  #second .mv-box {
    width: calc(100vw - 30px);
    background: url("../img/mv-bg.jpg") no-repeat right center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 20px;
    margin: auto;
  }
  #second .mv-box:before {
    width: 190px;
    height: 40px;
    background: url("../img/mv-wave-sp.png") no-repeat center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  #second .mv-box:after {
    content: "";
    width: calc(100% + 10px);
    height: 310px;
    background: url(../img/mv-bg-sp.jpg) no-repeat center;
    background-size: cover;
    margin: auto;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: 0;
    -ms-filter: blur(2px);
    -webkit-filter: blur(2px);
    filter: blur(2px);
    opacity: 1;
    z-index: 0;
  }
  #second .mv-ttl {
    font-size: 1.25rem;
    line-height: 1.2;
    margin: 100px auto 0;
    text-align: left;
    width: calc(100% - 30px);
  }
}
#second {
  /******************************************
  [about.html] ご火葬について
  ******************************************/
}
#second .flow {
  width: 100%;
  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;
}
#second .flow > ul {
  width: 100%;
  padding-left: 0;
}
#second .flow > ul > li {
  list-style-type: none;
  position: relative;
  padding-left: 80px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#second .flow > ul > li:first-of-type {
  margin-top: 20px;
}
#second .flow > ul > li:not(:last-child):before {
  content: "";
  background: #b5b3aa;
  width: 4px;
  height: 110%;
  position: absolute;
  top: calc(50% + 30px);
  left: 51px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
#second .flow > ul > li .flow-img {
  font-size: 0;
  width: 260px;
  height: auto;
}
#second .flow > ul > li > dl {
  padding-left: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#second .flow > ul > li > dl dt > .num {
  font-size: 2.125rem;
  font-family: "Oswald";
  color: #fff;
  width: 106px;
  height: 70px;
  line-height: 1;
  text-align: center;
  display: inline-block;
  background: url("../img/flow-num.png") center no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: -380px;
  padding: 11px;
}
#second .flow > ul > li > dl dt > .num span {
  font-size: 1rem;
  text-align: center;
  display: block;
  line-height: 1;
}
#second .flow > ul > li > dl dt > .ttl {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 2px solid #412410;
}
#second .flow > ul > li > dl dd {
  color: #333;
  margin: 0;
}
#second .flow > ul > li > dl dd .btn {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin-top: 20px;
}
#second .flow > ul > li > dl dd .btn img {
  height: 20px;
  width: auto;
}
#second .flow > ul > li > dl dd .btn .tel a {
  font-size: 1.5rem;
  color: #fff;
  background-color: #204A74;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#second .flow > ul > li > dl dd .btn .tel a:after {
  display: none;
}
#second .cremation .ttl {
  font-size: 1.75rem;
  color: #204A74;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .flow {
    width: 89%;
    margin: auto;
  }
  #second .flow > ul > li {
    padding-left: 0;
    margin-top: 40px;
    display: block;
  }
  #second .flow > ul > li:first-of-type {
    margin-top: 20px;
  }
  #second .flow > ul > li:not(:last-child):before {
    display: none;
    left: 17px;
  }
  #second .flow > ul > li .flow-img {
    margin: 0 auto 20px;
  }
  #second .flow > ul > li > dl {
    padding-left: 0;
  }
  #second .flow > ul > li > dl dt > .num {
    font-size: 1.25rem;
    width: 76px;
    height: 50px;
    top: -240px;
    left: -20px;
    padding: 9px;
  }
  #second .flow > ul > li > dl dt > .num span {
    font-size: 0.875rem;
  }
  #second .flow > ul > li > dl dt > .ttl {
    font-size: 1.125rem;
  }
  #second .flow > ul > li > dl dd .btn {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin-top: 20px;
  }
  #second .flow > ul > li > dl dd .btn > div {
    margin-top: 10px;
  }
  #second .flow > ul > li > dl dd .btn img {
    height: 20px;
    width: auto;
  }
  #second .flow > ul > li > dl dd .btn .tel a {
    font-size: 1.25rem;
    width: 100%;
  }
  #second .cremation .ttl {
    font-size: 1.25rem;
  }
}
#second {
  /******************************************
  [information.html] 施設のご案内
  ******************************************/
}
#second #price .omakase .tag, #second #price .tachiai .tag, #second #price .nenkan .tag {
  font-size: 1rem;
  line-height: 1;
  border-radius: 6px;
  padding: 8px 20px 10px;
  color: #fff;
  font-weight: 700;
  margin-right: 10px;
}
#second #price p {
  color: #333;
  display: inline-block;
}
#second #price .omakase .tag {
  background-color: #4579a4;
}
#second #price .tachiai .tag {
  background-color: #5E9414;
}
#second #price .nenkan .tag {
  background-color: #412410;
}
#second #price .icon-dog:before, #second #price .icon-cat:before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: -160px;
  right: 0;
}
#second #price .icon-dog:before {
  width: 143px;
  height: 150px;
  background-image: url("../img/icon-dog.svg");
}
#second #price .icon-cat:before {
  width: 106px;
  height: 160px;
  background-image: url("../img/icon-cat.svg");
}
#second .priceTable tr th {
  width: 50%;
}
#second .priceTable tr td.price {
  font-family: "Oswald";
  font-size: 1.25rem;
  text-align: right;
  color: #204A74;
}
#second .priceTable tr td.price .small {
  font-size: 1.125rem;
  font-weight: 700;
}
#second .priceTable tr td.price .omakase, #second .priceTable tr td.price .tachiai {
  font-size: 1rem;
}
#second .priceTable.w10 th {
  width: 10%;
}
#second .priceTable.w10 td {
  width: 45%;
}
#second .priceTable.w20 th {
  width: 20%;
}
#second .priceTable.w20 td {
  width: 40%;
}
#second .priceTable.w30 th {
  width: 33%;
}
#second .priceTable.w30 td {
  width: 33%;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second #price .omakase, #second #price .tachiai, #second #price .nenkan {
    margin-top: 0;
  }
  #second #price .omakase .tag, #second #price .tachiai .tag, #second #price .nenkan .tag {
    font-size: 0.8125rem;
    padding: 6px 10px;
    display: inline-block;
    margin: 0;
  }
  #second #price p {
    color: #333;
    display: inline-block;
  }
  #second #price .icon-dog,
  #second #price .icon-cat {
    margin-top: 0;
  }
  #second #price .icon-dog:before,
  #second #price .icon-cat:before {
    top: -290px;
  }
  #second #price .icon-dog:before {
    width: 95px;
    height: 100px;
    background-image: url("../img/icon-dog.svg");
  }
  #second #price .icon-cat:before {
    width: 76px;
    height: 120px;
    background-image: url("../img/icon-cat.svg");
  }
  #second .priceTable tr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #second .priceTable tr th, #second .priceTable tr td {
    font-size: 0.75rem;
    width: 100%;
  }
  #second .priceTable tr td.price {
    font-size: 1.125rem;
  }
  #second .priceTable tr td.price .small {
    font-size: 0.875rem;
  }
  #second .priceTable tr td.price .omakase,
  #second .priceTable tr td.price .tachiai,
  #second .priceTable tr td.price .nenkan {
    font-size: 0.75rem;
    margin-right: 5px;
  }
  #second .priceTable.w30 th {
    width: 27.333%;
  }
  #second .priceTable.w30 td {
    width: 36.333%;
  }
}
#second {
  /******************************************
  [access.html] アクセス
  ******************************************/
}
#second .access {
  border-radius: 26px;
  border: 3px solid #412410;
  overflow: hidden;
}
#second .access .basic {
  width: 100%;
  height: 100%;
  margin: 0;
}
#second .access .basic tr {
  border-top: 3px solid #412410;
}
#second .access .basic tr:first-child {
  border-top-width: 0;
}
#second .access .basic tr th, #second .access .basic tr td {
  padding: 30px 20px;
}
#second .access .basic tr th {
  border-right: 3px solid #412410;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .access {
    border-radius: 20px;
  }
  #second .access .basic tr {
    border-top: 3px solid #412410;
  }
  #second .access .basic tr:first-child {
    border-top-width: 0;
  }
  #second .access .basic tr th, #second .access .basic tr td {
    padding: 10px;
  }
  #second .access .basic tr th {
    border-right: 3px solid #412410;
  }
}
#second {
  /******************************************
  [contact.html] お問い合わせ
  ******************************************/
}
#second .myhp-form {
  margin-top: 60px;
}
@media screen and (min-width: 769px) {
  #second .myhp-form .myhp-form__title .myhp-form__label {
    font-size: 1.25rem;
  }
  #second .myhp-form .myhp-form__title .myhp-form__required {
    font-size: 0.875rem;
  }
  #second .myhp-form .myhp-form__mail-title {
    font-size: 1.25rem;
  }
}
#second .privacy-box {
  width: 100%;
  height: 300px;
  border: 1px solid #b5b3aa;
  margin-top: 0 !important;
  background-color: #fff;
}
#second .privacy-box-txt {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  padding: 10px;
}
#second .privacy-box-txt > p {
  font-size: 1.125rem;
  margin-bottom: 20px;
}
#second .privacy-box-txt dl {
  width: 100%;
}
#second .privacy-box-txt dl dt {
  font-size: 1.125rem;
  font-weight: bold;
  color: #412410;
  margin: 30px 0 5px;
}
#second .privacy-box-txt dl dd {
  font-size: 1.125rem;
  line-height: 1.6;
}
#second .privacy-box-txt dl dd:nth-child(2) {
  margin-bottom: 10px;
}
#second .privacy-box-txt dl dd a {
  text-decoration: underline;
}
#second .privacy-box-txt ul {
  margin: 0 0 20px 2em;
}
#second .privacy-box-txt ul.parenthesized {
  margin: 0 0 20px 1em;
}
#second .privacy-box-txt ul.parenthesized li {
  list-style-type: none;
  counter-increment: cnt;
}
#second .privacy-box-txt ul.parenthesized li::before {
  content: "（ " counter(cnt) " ）";
}
#second .privacy-box-txt ul.decimal li {
  list-style-type: decimal;
}
#second .privacy-box-txt ul li {
  font-size: 1rem;
  margin: 5px 0;
}
#second .privacy table tr th, #second .privacy table tr td {
  border: 1px solid #b5b3aa;
  padding: 10px;
}
#second .privacy table tr th {
  width: 170px;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second #form {
    margin-top: 0;
    padding-top: 30px;
  }
  #second .privacy-box {
    padding: 0;
  }
  #second .privacy-box-txt p {
    font-size: 0.875rem;
  }
  #second .privacy-box-txt dl dt {
    font-size: 1.0625rem;
  }
  #second .privacy-box-txt dl dd {
    font-size: 0.875rem;
  }
  #second .privacy-box-txt ul li {
    font-size: 0.875rem;
  }
  #second .privacy .basic th {
    width: 100px !important;
  }
}
#second table.normal {
  background: #fff;
}
#second table.normal tr th, #second table.normal tr td {
  color: #333;
  border: 1px solid #b5b3aa;
  padding: 10px 20px;
}
#second table.normal tr th {
  text-align: center;
  background: #F3F3F3;
}
#second .cookie .cookieTable table tr th, #second .cookie .cookieTable table tr td {
  padding: 10px;
}
#second .cookie .cookieTable table tr:nth-child(1) th:nth-child(1) {
  width: 300px;
}
#second .cookie .cookieTable table tr:nth-child(1) th:nth-child(2) {
  width: 150px;
}
#second .cookie .cookieTable table tr td {
  font-size: 0.9375rem;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .cookie .cookieTable {
    width: 100%;
    overflow-x: scroll;
  }
  #second .cookie .cookieTable table {
    width: 600px;
  }
  #second .cookie .cookieTable table tr th, #second .cookie .cookieTable table tr td {
    font-size: 0.875rem;
    padding: 10px;
  }
  #second .cookie .cookieTable table tr th {
    width: 33.333% !important;
  }
}
#second .formTable {
  width: 100%;
}
#second .formTable tr {
  border-bottom: 1px solid #b5b3aa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#second .formTable tr th, #second .formTable tr td {
  font-size: 1.125rem;
  font-weight: 400;
  padding: 30px 0;
}
#second .formTable tr th {
  font-weight: 600;
  line-height: 1.4;
  width: 200px;
  text-align: left;
  padding-top: 40px;
}
#second .formTable tr th span {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  background-color: #F34A08;
  border-radius: 2px;
  padding: 7px 8px 5px;
  display: block;
  width: 44px;
}
#second .formTable tr td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 50px;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea {
  border: 1px solid #b5b3aa;
  border-radius: 2px;
  padding: 5px 10px;
}
#second .formTable tr td input::-webkit-input-placeholder, #second .formTable tr td select::-webkit-input-placeholder, #second .formTable tr td textarea::-webkit-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::-moz-placeholder, #second .formTable tr td select::-moz-placeholder, #second .formTable tr td textarea::-moz-placeholder {
  color: #ccc;
}
#second .formTable tr td input:-ms-input-placeholder, #second .formTable tr td select:-ms-input-placeholder, #second .formTable tr td textarea:-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::-ms-input-placeholder, #second .formTable tr td select::-ms-input-placeholder, #second .formTable tr td textarea::-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input::placeholder,
#second .formTable tr td select::placeholder,
#second .formTable tr td textarea::placeholder {
  color: #ccc;
}
#second .formTable tr td input:-ms-input-placeholder,
#second .formTable tr td select:-ms-input-placeholder,
#second .formTable tr td textarea:-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea { /* IE */ }
#second .formTable tr td input::-ms-input-placeholder,
#second .formTable tr td select::-ms-input-placeholder,
#second .formTable tr td textarea::-ms-input-placeholder {
  color: #ccc;
}
#second .formTable tr td input,
#second .formTable tr td select,
#second .formTable tr td textarea { /* Edge */ }
#second .formTable tr td input.w10,
#second .formTable tr td select.w10,
#second .formTable tr td textarea.w10 {
  width: 10%;
}
#second .formTable tr td input.w20,
#second .formTable tr td select.w20,
#second .formTable tr td textarea.w20 {
  width: 30%;
}
#second .formTable tr td input.w50,
#second .formTable tr td select.w50,
#second .formTable tr td textarea.w50 {
  width: 50%;
}
#second .formTable tr td input.w100,
#second .formTable tr td select.w100,
#second .formTable tr td textarea.w100 {
  width: 100%;
}
#second .formTable tr td .select {
  display: inline-block;
  margin-left: 10px;
}
#second .formTable tr td .select i {
  font-size: 70%;
  color: #412410;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
  padding: 14px 0;
  z-index: 1;
}
#second .formTable tr td .select select {
  padding-right: 30px;
}
#second .formTable tr td label {
  display: block;
  margin: 10px 0 0 0;
}
#second .formTable tr td label input[type=checkbox],
#second .formTable tr td label input[type=radio] {
  margin-right: 5px;
  -webkit-appearance: checkbox;
  width: auto !important;
}
#second .formTable {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .formTable tr {
    display: block;
  }
  #second .formTable tr th, #second .formTable tr td {
    padding: 15px 0;
    width: 100% !important;
    display: block;
  }
  #second .formTable tr th {
    font-size: 1rem;
    line-height: 1.5;
    padding-bottom: 5px;
  }
  #second .formTable tr th span {
    font-size: 0.75rem;
    padding: 3px 5px;
    width: 37px;
  }
  #second .formTable tr td {
    font-size: 0.9375rem;
    width: auto;
    padding: 0 0 15px 0;
  }
  #second .formTable tr td input,
  #second .formTable tr td select,
  #second .formTable tr td textarea {
    font-size: 0.875rem;
    width: 100% !important;
    padding: 0 10px;
  }
  #second .formTable tr td .select {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #second .formTable tr td .select select {
    padding-right: 20px;
    margin-right: 5px;
  }
  #second .formTable tr td .select i {
    right: 26px;
  }
  #second .formTable tr td .itemName {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  #second .formTable tr td .itemName .w50 {
    width: 77% !important;
  }
  #second .formTable tr td .itemName .w10 {
    width: 60px !important;
    margin: 10px 5px 0 0;
  }
}
#second .submit {
  text-align: center;
  margin-top: 20px;
}
#second .submit input {
  font-size: 1.125rem;
  text-align: center;
  border: 1px solid #b5b3aa;
  padding: 5px 10px;
  margin: 0 5px;
  width: 200px;
}
#second .submit input[type=submit] {
  color: #fff;
  background: #412410;
}
#second .submit {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second .submit input {
    font-size: 0.9375rem;
    text-align: center;
    border: 1px solid #b5b3aa;
    padding: 5px 10px;
    width: 100px;
  }
}
#second .big.t-center.orange {
  font-size: 18px !important;
  line-height: 1.6;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  #second .big.t-center.orange {
    font-size: 16px !important;
    text-align: left !important;
  }
}
#second {
  /******************************************
  [worship.html] ペットへのメッセージ
  ******************************************/
}
@media screen and (min-width: 769px) {
  #second #worship-form .inner-wide {
    width: calc(100% - 220px);
  }
}
#second #worship-form .worship-form-txt {
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
#second #worship-form .worship-form-img {
  width: 100%;
  height: 700px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
}
#second #worship-form .worship-form-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#second {
  /* sp */
}
@media screen and (max-width: 768px) {
  #second #worship-form .worship-form-txt {
    font-size: 1.25rem;
  }
  #second #worship-form .worship-form-img {
    height: 500px;
    border-radius: 20px;
  }
}
#second #omairiModalOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: opacity 1s ease-out;
  transition: opacity 1s ease-out;
}
#second #omairiModalOverlay .midashi-h3 {
  padding-left: 0;
}
#second #omairiModalOverlay .midashi-h3:before {
  position: static;
  margin: 0 auto 10px;
}
#second #omairiModalBox {
  background: white;
  padding: 35px 25px;
  border-radius: 16px;
  width: 85%;
  max-width: 500px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
#second #omairiModalOverlay.is-visible {
  opacity: 1;
}
#second #omairiModalOverlay.is-visible #omairiModalBox {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
#second .omairi-modal-close {
  margin-top: 24px;
  padding: 10px 30px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}
#second {
  /* ========================================================
     【修正箇所】エラーメッセージの初期非表示と表示の切り替え
     ======================================================== */
}
#second #errName, #second #errMessage {
  display: none; /* 最初は非表示 */
}
#second {
  /* JSで is-active クラスがついた時だけ表示 */
}
#second .myhp-form__error.is-active {
  display: block !important;
}

/******************************************
[column & thumbnail] カラム表示2〜6
******************************************/
.column-2n,
.thumbnail-2n {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  gap: 40px 40px;
}
.column-2n:first-child, .column-2n:first-of-type,
.thumbnail-2n:first-child,
.thumbnail-2n:first-of-type {
  margin-top: 0;
}
.column-2n .column-box,
.column-2n .thumbnail-box,
.thumbnail-2n .column-box,
.thumbnail-2n .thumbnail-box {
  width: calc((100% - 40px * (2 - 1)) / 2);
  margin: 0;
  width: calc((100% - 40px) / 2);
}
.column-2n .column-box .column-2n,
.column-2n .column-box .thumbnail-2n,
.column-2n .thumbnail-box .column-2n,
.column-2n .thumbnail-box .thumbnail-2n,
.thumbnail-2n .column-box .column-2n,
.thumbnail-2n .column-box .thumbnail-2n,
.thumbnail-2n .thumbnail-box .column-2n,
.thumbnail-2n .thumbnail-box .thumbnail-2n {
  gap: 40px 40px;
}
.column-2n .column-box,
.column-2n .thumbnail-box,
.thumbnail-2n .column-box,
.thumbnail-2n .thumbnail-box {
  /* フレックスアイテムの並べ替え */
}
.column-2n .column-box.left,
.column-2n .thumbnail-box.left,
.thumbnail-2n .column-box.left,
.thumbnail-2n .thumbnail-box.left {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.column-2n .column-box.right,
.column-2n .thumbnail-box.right,
.thumbnail-2n .column-box.right,
.thumbnail-2n .thumbnail-box.right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.column-2n .column-box.w100,
.column-2n .thumbnail-box.w100,
.thumbnail-2n .column-box.w100,
.thumbnail-2n .thumbnail-box.w100 {
  width: 100%;
}

/* sp */
@media screen and (max-width: 768px) {
  .column-2n,
  .thumbnail-2n {
    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 0;
  }
  .column-2n.space2,
  .thumbnail-2n.space2 {
    gap: 2px 0;
  }
  .column-2n.space2 .column-box,
  .thumbnail-2n.space2 .column-box {
    width: 100%;
  }
  .column-2n .column-box,
  .column-2n .thumbnail-box,
  .thumbnail-2n .column-box,
  .thumbnail-2n .thumbnail-box {
    width: 100%;
  }
}
.column-3n,
.thumbnail-3n {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  gap: 40px 40px;
}
.column-3n:first-child, .column-3n:first-of-type,
.thumbnail-3n:first-child,
.thumbnail-3n:first-of-type {
  margin-top: 0;
}
.column-3n .column-box,
.column-3n .thumbnail-box,
.thumbnail-3n .column-box,
.thumbnail-3n .thumbnail-box {
  width: calc((100% - 40px * (3 - 1)) / 3);
  margin: 0;
}

/* sp */
@media screen and (max-width: 768px) {
  .column-3n,
  .thumbnail-3n {
    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 0;
  }
  .column-3n.space2,
  .thumbnail-3n.space2 {
    gap: 2px 0;
  }
  .column-3n.space2 .column-box,
  .thumbnail-3n.space2 .column-box {
    width: 100%;
  }
  .column-3n .column-box,
  .column-3n .thumbnail-box,
  .thumbnail-3n .column-box,
  .thumbnail-3n .thumbnail-box {
    width: 100%;
  }
}
.column-4n,
.thumbnail-4n {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  gap: 40px 40px;
}
.column-4n:first-child, .column-4n:first-of-type,
.thumbnail-4n:first-child,
.thumbnail-4n:first-of-type {
  margin-top: 0;
}
.column-4n .column-box,
.column-4n .thumbnail-box,
.thumbnail-4n .column-box,
.thumbnail-4n .thumbnail-box {
  width: calc((100% - 40px * (4 - 1)) / 4);
  margin: 0;
}

/* sp */
@media screen and (max-width: 768px) {
  .column-4n,
  .thumbnail-4n {
    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 0;
  }
  .column-4n.space2,
  .thumbnail-4n.space2 {
    gap: 2px 0;
  }
  .column-4n.space2 .column-box,
  .thumbnail-4n.space2 .column-box {
    width: 100%;
  }
  .column-4n .column-box,
  .column-4n .thumbnail-box,
  .thumbnail-4n .column-box,
  .thumbnail-4n .thumbnail-box {
    width: 100%;
  }
}
.column-5n,
.thumbnail-5n {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  gap: 40px 40px;
}
.column-5n:first-child, .column-5n:first-of-type,
.thumbnail-5n:first-child,
.thumbnail-5n:first-of-type {
  margin-top: 0;
}
.column-5n .column-box,
.column-5n .thumbnail-box,
.thumbnail-5n .column-box,
.thumbnail-5n .thumbnail-box {
  width: calc((100% - 40px * (5 - 1)) / 5);
  margin: 0;
}

/* sp */
@media screen and (max-width: 768px) {
  .column-5n,
  .thumbnail-5n {
    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 0;
  }
  .column-5n.space2,
  .thumbnail-5n.space2 {
    gap: 2px 0;
  }
  .column-5n.space2 .column-box,
  .thumbnail-5n.space2 .column-box {
    width: 100%;
  }
  .column-5n .column-box,
  .column-5n .thumbnail-box,
  .thumbnail-5n .column-box,
  .thumbnail-5n .thumbnail-box {
    width: 100%;
  }
}
.column-6n,
.thumbnail-6n {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
  gap: 40px 40px;
}
.column-6n:first-child, .column-6n:first-of-type,
.thumbnail-6n:first-child,
.thumbnail-6n:first-of-type {
  margin-top: 0;
}
.column-6n .column-box,
.column-6n .thumbnail-box,
.thumbnail-6n .column-box,
.thumbnail-6n .thumbnail-box {
  width: calc((100% - 40px * (6 - 1)) / 6);
  margin: 0;
}

/* sp */
@media screen and (max-width: 768px) {
  .column-6n,
  .thumbnail-6n {
    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 0;
  }
  .column-6n.space2,
  .thumbnail-6n.space2 {
    gap: 2px 0;
  }
  .column-6n.space2 .column-box,
  .thumbnail-6n.space2 .column-box {
    width: 100%;
  }
  .column-6n .column-box,
  .column-6n .thumbnail-box,
  .thumbnail-6n .column-box,
  .thumbnail-6n .thumbnail-box {
    width: 100%;
  }
}
/******************************************
[topics]
******************************************/
/* トピックスページャー */
.topics_paging {
  margin: 40px 0 0 !important;
  clear: both;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  gap: inherit !important;
}
.topics_paging li {
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  width: 26px !important;
  height: 26px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 4px !important;
  list-style: none;
  border: 1px solid #b5b3aa !important;
  padding: 0 !important;
}
.topics_paging li a {
  font-size: 1rem;
  color: #412410;
  display: block;
  padding: 5px !important;
}
.topics_paging {
  /* sp */
}
@media screen and (max-width: 768px) {
  .topics_paging li {
    width: auto;
    font-size: 0.75rem;
    padding: 2px;
  }
  .topics_paging li a {
    font-size: 0.75rem;
  }
}

/******************************************
[floatImg] 画像回り込み
******************************************/
.floatImg {
  overflow: hidden;
}
.floatImg-left, .floatImg-right {
  font-size: 1rem;
  text-align: center;
  display: block;
}
.floatImg-left img,
.floatImg-left .floatImg-photo, .floatImg-right img,
.floatImg-right .floatImg-photo {
  margin-bottom: 10px;
  display: block;
}
.floatImg p {
  overflow: hidden;
}
.floatImg-right {
  float: right;
  margin: 0 0 20px 40px;
}
.floatImg-left {
  float: left;
  margin: 0 40px 20px 0;
}
.floatImg {
  /* sp */
}
@media screen and (max-width: 768px) {
  .floatImg-left, .floatImg-right {
    float: none;
    margin: 0 auto 20px;
  }
  .floatImg-left img, .floatImg-right img {
    height: auto;
  }
}

/******************************************
ローディング　loading
******************************************/
#loading {
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
}

#loading_barWrap {
  width: 100px;
  height: 114px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
#loading_barWrap:after {
  content: "";
  background: url("../img/loading.png") center no-repeat;
  background-size: contain;
  width: 100px;
  height: 114px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

#loading_bar {
  width: 99px;
  height: 0;
  background: #412410;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  bottom: -1px;
}

.loadingNone {
  display: none;
  -webkit-animation: loadingAnime 1s forwards;
          animation: loadingAnime 1s forwards;
}

@-webkit-keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes loadingAnime {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
/******************************************
ドロップダウンメニュー
******************************************/
.nav-main {
  cursor: pointer;
}
.nav-main .nav-sub {
  width: 100vw;
  padding: 20px;
  background-color: #412410;
  position: absolute;
  top: 120px;
  right: 0;
  left: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.nav-main .nav-sub li {
  padding: 0 15px;
}
.nav-main .nav-sub li:nth-child(1) a:before {
  background-image: url("../img/nav-icon1.svg");
}
.nav-main .nav-sub li:nth-child(2) a:before {
  background-image: url("../img/nav-icon2.svg");
}
.nav-main .nav-sub li:nth-child(3) a:before {
  background-image: url("../img/nav-icon3.svg");
  background-size: auto 60px;
}
.nav-main .nav-sub li:nth-child(4) a:before {
  background-image: url("../img/nav-icon4.svg");
}
.nav-main .nav-sub li a {
  font-size: 1rem;
  font-weight: 700;
  display: block;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}
.nav-main .nav-sub li a:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin-bottom: 10px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 50px;
  -webkit-transition: background-size 0.1s ease;
  transition: background-size 0.1s ease;
}
@media screen and (min-width: 769px) {
  .nav-main .nav-sub li a:hover {
    text-decoration: none;
  }
  .nav-main .nav-sub li a:hover:before {
    background-size: auto 60px;
  }
  .nav-main .nav-sub li:nth-child(3) a:hover:before {
    background-size: auto 80px;
  }
}
.nav-main:hover .nav-sub {
  visibility: visible;
  opacity: 1;
  top: 100px;
}
.nav-main:hover p:before {
  content: "";
  /* 三角形 */
  width: 0;
  height: 0;
  border-top: 10px solid #412410;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  top: 42px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  /* 向きは上下逆にする */
  border-bottom: 10px solid #412410;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: none;
}

/* sp */
@media screen and (max-width: 768px) {
  .nav-main {
    height: auto;
  }
  .nav-main > p {
    font-size: 1rem;
    font-weight: 700;
    color: #412410;
    position: relative;
  }
  .nav-main > p:before {
    content: "";
    /* 三角形 */
    width: 0;
    height: 0;
    border-top: 10px solid #412410;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: 37px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    /* 向きは上下逆にする */
    border-bottom: 10px solid #412410;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: none;
  }
  .nav-main .nav-sub {
    visibility: visible;
    opacity: 1;
    width: 100%;
    padding: 0;
    position: absolute;
    top: 108px;
  }
  .nav-main .nav-sub li {
    width: 33.333%;
    padding: 10px 0;
  }
  .nav-main .nav-sub li:nth-child(3) a:before {
    background-size: auto 40px;
  }
  .nav-main .nav-sub li a {
    font-size: 0.875rem;
  }
  .nav-main .nav-sub li a:before {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    background-size: auto 30px;
  }
}
.js-scroll-shrink {
  opacity: 0;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease;
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, -webkit-transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}
.js-scroll-shrink.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}