@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap');

:root {
  --sub-font: "RocknRoll One", sans-serif;
}

/*-----------------------------------------------
common
-----------------------------------------------*/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size:18px;
  color:#212121;
}
body {
  margin:0;
  padding:0;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0;
  font-weight: normal;
  letter-spacing: .02em;
}
span {
  font-size: inherit;
}
h1 {
  font-size: 1.6rem;
}
h2 {
  font-size: 1.4rem;
}
h3 {
  font-size: 1.3rem;
  
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
a {
  text-decoration: none;
}
p {
  line-height: 1.6rem;
  font-size:15px;
  margin-bottom: 1rem;
}

/*-----------------------------------------------
Typography
-----------------------------------------------*/
.subfont {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*-----------------------------------------------
Layout
-----------------------------------------------*/
.container {
  max-width: 1200px;
  margin:0 auto;
  padding:0 15px;
  position: relative;
}
@media (max-width: 768px) { 
  .container {
    padding:0;
  }
 }
.row {
  display: flex;
  flex-wrap: wrap;
}
.col-12,.col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2 {
  padding:5px 15px;
}
.col-12 {
  width:calc(100% / 12 * 12);
}
.col-11 {
  width:calc(100% / 12 * 11);
}
.col-10 {
  width:calc(100% / 12 * 10);
}
.col-9 {
  width:calc(100% / 12 * 9);
}
.col-8 {
  width:calc(100% / 12 * 8);
}
.col-7 {
  width:calc(100% / 12 * 7);
}
.col-6 {
  width:calc(100% / 12 * 6);
}
.col-5 {
  width:calc(100% / 12 * 5);
}
.col-4 {
  width:calc(100% / 12 * 4);
}
.col-3 {
  width:calc(100% / 12 * 3);
}
.col-2 {
  width:calc(100% / 12 * 2);
}
@media (max-width: 768px) { 
  .col-11,.col-10,.col-9,.col-8,.col-7,.col-6,.col-5,.col-4,.col-3,.col-2 {
    width:100%;
  }
 }

/*-----------------------------------------------
Flex
-----------------------------------------------*/
.jc-c {
  justify-content: center;
}
.jc-sb {
  justify-content: space-between;
}
.jc-sa {
  justify-content: space-around;
}
.ai-c {
  align-items: center;
}
.ai-e {
  align-items: end;
}
.reverse {
  flex-direction: row-reverse;
}


/*-----------------------------------------------
header
-----------------------------------------------*/
header {
  position: fixed;
  top:0;
  width:100%;
  z-index: 1000;
  background-color: #fff;
}
header .nav-bar {
  max-width:1200px;
  margin: 0 auto;
  padding:20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .brand img {
  max-width:450px;
}
header nav ul {
  display: flex;
}
header nav ul a {
  padding:20px;
  border-left:1px solid #dedede;
  font-weight: bold;
  font-size: .8rem;
}
header nav ul a:hover {
  background-color: #f2f2f2;
  color:#555;
  transition: .3s;
}
header .sp-menu {
  display: none;
}
@media (max-width: 768px) { 
  header .brand {
    position: relative;
    z-index: 999;
  }
  header .brand img {
    width:180px;
  }
  header .nav-bar {
    width: 100%;
    padding:10px 15px;
  }
  header nav {
    z-index: 900;
    position: absolute;
    top:-999px;
    opacity: 0;
    left:0;
    background-color: #fff;
    width:100%;
    padding:20px 0;
  }
  header nav ul {
    display: block;
    width:100%;
    text-align: center;
  }
  header nav ul a {
    border:none;
    display: block;
  }
  header .sp-menu {
    display: block;
    z-index: 999;
  }
  header .sp-menu button {
    display: block;
    position: absolute;
    top:0;
    right:0;
    height: 100%;
    color:#fff !important;
  }
  header .sp-menu button img {
    height:100%;
    width: auto;
  }
  header .open-nav {
    top:70px;
    left:0;
    padding:0;
    transition: .3s;
    border-top: 5px solid #ED6D2B;
    background-color: #FFE4D6;

    opacity: 1;
  }
  header .open-nav ul li {
    background-color: #FFE4D6;
    border-bottom: 2px solid #ED6D2B;
  }
  header .open-nav ul li a {
    font-size:1.1rem;
  }
  header .open-nav ul li a:after {
    content:'▶︎';
    color:#FFAB80;
    padding-left:.6em;
  }
} 


/*-----------------------------------------------
main
-----------------------------------------------*/
main {
  padding-top:70px;
}

/*-----------------------------------------------
footer
-----------------------------------------------*/
footer {
  padding-top:3rem;
  border-top:15px solid #ED6D2B;
  text-align: center;
}
footer h4 {
  margin-bottom: 1rem;
}
footer h4 img {
  width:270px;
}

footer .footer-link {
  margin-bottom: 2rem;
}
footer .footer-link li {
 display: inline-block;
 padding:0 1rem;
 border-left:1px solid #333;
}
footer .footer-link li:last-child {
  border-right:1px solid #333;
}
footer .footer-link li a {
  font-size:.9em;
}
footer .footer-link li a:hover {
  transition: .3s;
  color:#aaa;
}
footer .copyright {
  font-size:.6em;
  margin-bottom:6em;
}


/*-----------------------------------------------
top
-----------------------------------------------*/
#top section {
  padding:25px 0;
}
/*--- top slider ---*/
#top .slideshow-container {
  position: relative;
  margin: auto;
  max-width: 1200px;
}
#top .slideshow-container .mySlides {
  position: absolute;
  z-index: 100;
  width: 100%;
  opacity: 0;
  transition: opacity 1.5s;
}
#top .slideshow-container img {
  vertical-align: middle;
  max-width: 100%;
}
#top .slideshow-container .graphic-overlay {
  position: relative;
  z-index: 200;
}
#top .slideshow-container .graphic-overlay img {
  max-width: 100%;
}
#top .slideshow-container .text-overlay {
  color: #333;
  font-size: 18px;
  padding: 10px 10px;
  position: absolute;
  bottom: 22%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  text-align: center;
  z-index: 300;
  background-color: rgba(255, 255, 255, 0.9); 
  border: 4px solid #000;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .text-overlay span {
  flex: 1;
  text-align: center;
  margin-left: 30px;
  font-weight: bold;
}
#top .text-overlay .search-icon {
  width: 30px;
  height: 30px;
  margin-left: 10px;
}
@media (max-width: 768px) { 
  #top .slideshow-container .text-overlay {
    width:90%;
    font-size:.8em;
    border-width: 3px;
    padding:5px;
    bottom:13%;
  }
}

#top .intro .text-box {
  margin-left: -40px;
}
#top .intro .text-box h2 {
  font-family: var(--sub-font);
  line-height: 1.4;
  background: linear-gradient(transparent 50%, #FFF5E2 50%);
  display: inline;
}
#top .intro .text-box h2+p {
  margin-top: 1rem;
}
#top .intro .text-box small {
  font-size: .7em;
}
@media (max-width: 768px) { 
  #top .intro {
    padding-top:0;
  }
  #top .intro .text-box {
    margin-left: auto;
    margin-top:-10px;
    padding:0 15px;
  }
  #top .intro .text-box h2 {
    font-size:1.15rem;
  }
}

#top .cover {
  padding-top:100px;
  margin-top: -100px;
}
#top .cover h3 {
  margin-bottom: 1rem;
}
#top .cover .text-box {
  width:40%;
  position: absolute;
  top:0;
  left:0;
  color:#534741;
}
#top .cover .text-box h4 {
  font-size:2.3rem;
  font-weight: bold;
  color:#534741;
  line-height: 1.3;
  padding-bottom:.3em;
  margin-bottom: .3em;
  border-bottom: 4px solid #0BBE80;
}
#top .cover .text-box h4 span {
  color:#534741;
  font-size:.6em
}
#top .cover .silk .text-box h4 span {
  color:#534741;
  font-size:.45em
}
#top .cover .text-box p {
  color:#534741;
}
#top .cover .lead {
  position: relative;
  top:-140px;
  right:-15px;
  margin-bottom: -140px;
}
#top .cover .detail-btn {
  position: absolute;
  bottom:120px;
  right:0;
}
#top .cover .detail-btn a img {
  width:500px;
  /* filter: drop-shadow(0px 5px 0px #0F865D); */
}
#top .cover .detail-btn a:hover img {
  /* filter: drop-shadow(0px 0px 0px #0F865D); */
  /* transform: translateY(5px); */
  
}
#top .cover .illust-cut {
  position: absolute;
  bottom:5rem;
  left:20%;
}
#top .cover .illust-cut img {
  width:180px;
}

/*--- 202409 複数記事対応 ---*/
.content-lead {
  margin-bottom: 4rem;
}
#top .cover .danlo .text-box h4 {
  border-color: #ED6D2B;
}
#top .cover .silk .text-box h4 {
  border-color: #0693E3;
}
#top .cover .smsw .text-box h4 {
  border-color: #FF4A4A;
}

@media (max-width: 768px) { 
  #top .cover h3 {
    margin-top:20px;
    margin-bottom: 0;
  }
  #top .cover .text-box {
    position: relative;
    top:0;
    width: 100%;
    padding:0 15px;
  }
  #top .cover .lead {
    position: relative;
    top:0px;
    right:0;
    margin-bottom: 0;
  }
  #top .cover .detail-btn {
    position: relative;
    right:0;
    bottom:0;
    text-align: center;
  }
  #top .cover .detail-btn a img {
    width:80%;
  }
  #top .cover .illust-cut {
    display: none;
  }
  #top .cover .illust-cut img {
    width:200px;
  }
  #top .cover .text-box h4 {
    font-size: 2rem;
  }
}

#top .map {
  background-color: #FFF5E2;
  padding-top:150px;
  padding-bottom:40px;
}
#top .map .gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%;
}
#top .map .gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
@media (max-width: 768px) { 
  #top .map {
    padding-top:45px;
  }
  #top .map .gmap {
    padding-top:85%;
  }
  #top .map .map-box {
    padding:0 15px;
  }
}

#top .calender {
  background-color: #FFF5E2;
  padding-top:20px;
  padding-bottom:100px;
  border-bottom:5px solid #3c3c3c;
  background-image: url('../img/house_illust_pc.png');background-repeat: repeat-x;
  background-position: center bottom;
  background-size: auto 65px;
}
#top .calender .cal {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 45%;
}
#top .calender .cal iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) { 
  #top .calender .cal {
    padding-top:85%;
  }
  #top .calender .cal-box {
    padding:0 15px;
  }
}

#top .news-box .row {
  align-items: center;
}
#top .news-box .news-ttl {
  padding:3rem 0;
  border-right: 1px solid #333;
  padding-right:40px;
}
#top .news-box .news-ttl h3 {
  font-weight: bold;
  font-size:2rem;
  margin-bottom: 1.6rem;
}
#top .news-box .news-ttl h3 span {
  font-weight: normal;
  padding-left:1rem;
  font-size:.5em;
}
#top .news-box a.news-btn {
  border:1px solid #333;
  display: block;
  padding:.6em 0;
  text-align: center;
  font-size:.9em;
}
#top .news-box a.news-btn:hover {
  background-color: #dedede;
  transition: .3s;
}
#top .news-box ul li {
  margin-bottom: .5em;
}
#top .news-box ul li a {
  font-size:1em;
  color:#ED6D2B;
}
#top .news-box ul li a:hover {
  color:#aaa;
}
#top .news-box ul li span {
  color:#707070;
  padding-right:2rem;
}
@media (max-width: 768px) { 
  #top .news {
  }
  #top .news-box .news-ttl {
    border:none;
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
    padding:0 15px;
    padding-top:1rem;
  }
  #top .news-box .news-btn {
    margin: 1rem 0;
  }
  #top .news-box ul li span {
    padding-right:.5em;
    font-size: .75em;
  }
}

/*-----------------------------------------------
page
-----------------------------------------------*/
#page .cover{
  margin-top: 1rem;
  position: relative;
  z-index: 10;
}
#page .cover h2 {
  margin-right: -17px;
  width:60%;
}
#page .cover h2 img {
  height:auto;
  max-width:100%;
}
#page .cover .color-band {
  background-color: #09BE80;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  align-items: center;
  position: relative;
  display: flex;
}
#page .cover .color-band h3 {
  margin-bottom: 1rem;
}
#page .cover .color-band .text-box {
  z-index: 300;
  width:min(40%,500px);
  color:#fff;
  padding:2rem 0;
}
#page .cover .color-band .text-box h4 {
  color:#fff;
  font-size:1.7rem;
  padding-bottom:.5em;
  border-bottom:3px solid #fff;
  margin-bottom: .3em;
  font-weight: bold;
}
#page .cover .color-band .text-box h4 span {
  color:#fff;
  font-size:.6em;
}
#page .cover .color-band .text-box p {
  color:#fff;
}
#page .cover .color-band .visual {
  width:60%;
}
#page .cover .color-band .visual img {
  transform: scale(1.2);
}
@media (max-width: 768px) { 
  #page .cover .color-band .text-box {
    width:100%;
    padding:.5em 0;
    padding-right:15px
  }
  #page .cover .color-band .text-box h3 {
    margin:0;
  }
  #page .cover .color-band .text-box h4,
  #page .cover .color-band .text-box p {
    padding-left:15px;
  }
}

#page .local-nav {
  background-color: #FFF5E2;
  padding-top:4rem;
  position: relative;
}
#page .local-nav.fix {
  position: fixed;
  padding-top:0rem;
  background-color: transparent;
  transition: .3s;
  bottom: -10px;
  left: -8px;
  width:100vw;
  z-index: 999;
  opacity:1;
}
#page .local-nav.fix .button {
  padding:8px;
  transition: .3s;
  font-size:.8em;
}

#page #anchor1,
#page #anchor2,
#page #anchor3,
#page #anchor4 {
  padding-top:100px;
  margin-top: -100px;
}

#page .local-nav .button-container {
  display: flex;
  justify-content: space-between;
  gap: 0px; 
}
#page .local-nav .button {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-top:4px solid #000;
  border-left:4px solid #000;
  border-bottom:8px solid #000;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
  position: relative;
}
#page .local-nav .button:before {
  font-family: "Font Awesome 6 Free";
  content: "\f358";
  font-weight: 900;
  position:absolute;
  right:10px;
}
#page .local-nav .button:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#page .local-nav .button:last-child {
  border-right:4px solid #000;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#page .local-nav .button:nth-child(1) {
  background-color: #F06A75; /* プライベート花火のご利用 */
}
#page .local-nav .button:nth-child(2) {
  background-color: #2DB6D6; /* おすすめ宿泊施設 */
}
#page .local-nav .button:nth-child(3) {
  background-color: #0BBE80; /* おすすめスポット */
}
#page .local-nav .button:nth-child(4) {
  background-color: #ED6D2B; /* おすすめイベント */
}
#page .local-nav .button:hover {
  filter: brightness(90%);
}
#page .local-nav .button:active {
  filter: brightness(80%);
}

@media (max-width: 768px) { 
  #page .local-nav.fix {
    padding-top: 0;
    bottom:0;
    margin-bottom: -2px;
    width: calc(100vw + 15px);
  }
  #page .local-nav .button-container {
    flex-wrap: wrap;
  }
  #page .local-nav .button {
    padding:0 .5em;
    flex:initial;
    height:3.2em;
    border-top:2px solid #000;
    border-bottom:none;
    border-left:none;
    border-right:none;
    font-size:.7em !important;
    width:50% !important;
  }
  #page .local-nav .button:first-child {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    border-left:none;
  }
  #page .local-nav .button:last-child {
    border-right:none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  #page .local-nav .button:nth-child(odd) {
    border-right:2px solid #000 !important;
  }
  #page .local-nav .button:nth-child(3),
  #page .local-nav .button:nth-child(4) {
    border-bottom:2px solid #000;
  }
}


#page .intro {
  padding:30px 0;
  background-color: #FFF5E2;
}
#page .intro p {
  padding:2rem;
  background-color: #fff;
  border-radius: 15px;
  border:3px solid #000;
}
#page .intro p:before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #FFF;
  z-index: 2;
}
#page .intro p:after {
  content: "";
  position: absolute;
  bottom: -27px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #000;
  z-index: 1;
}
#page .intro p img {
  float:left;
  width:2.5rem;
  margin-right: .4em;
  position: relative;
  top:5px;
}
@media (max-width: 768px) { 
  #page .intro {
    padding:2rem 15px;
    padding-bottom: 1rem;
    margin-bottom: -2rem;
  }
  #page .intro p {
    padding:1rem;
  }
}

#page section .marker-h {
  font-family: var(--sub-font);
  line-height: 1.4;
  background: linear-gradient(transparent 50%, #FFD23E 50%);
  display: inline;
  font-size:2rem;
}

#page .sec1 {
  padding:30px 0;
  background-color: #FFF5E2;
}
#page .sec1 .row {
  align-items: end;
}
#page .sec1 h3 {
  margin-bottom: 1rem;
}
#page .sec1 h3 img {
  width:90%;
}
#page .sec1 .img-box {
  width:60%;
  margin-left: -20px;
}
#page .sec1 .text-box .float-box {
  background-color: #fff;
  margin-right: -100px;
  padding:1.5rem;
  padding-right:150px;
  margin-top: 50px;
  border-radius: 10px;
}
@media (max-width: 768px) { 
  #page .sec1 {
    position: relative;
    padding-bottom: 3rem;
  }
  #page .sec1 .text-box .float-box {
    margin-right: 0;
    padding:1rem;
    padding-top:3rem;
    padding-bottom:3rem;
    margin-top: -1.5rem;
    position: relative;
    z-index: 30;
  }
  #page .sec1 .text-box img.pc-none {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    z-index: 400;
    position: relative;
  }
  #page .sec1 .illust-box {
    position: absolute;
    right:2%;
    bottom:-5rem;
  }
  #page .sec1 .illust-box img {
    width:130px;
  }
}

#page .sec2 {
  padding:30px 0;
  background-color: #FFF5E2;
}
#page .sec2 h3 {
  margin-bottom: 1rem;
  margin-right: -40px;
}
#page .sec2 .text-box .float-box {
  background-color: #fff;
  margin-right: -100px;
  padding:1.5rem;
  padding-right:150px;
  margin-top: 50px;
  border-radius: 10px;
}
@media (max-width: 768px) { 
  #page .sec2 {
    padding-bottom: 0;
  }
  #page .sec2 h3 {
    margin-bottom: 1rem;
    margin-right: 0px;
  }
  #page .sec2 .text-box .float-box {
    margin-right: 0;
    padding:1rem;
    padding-top:3rem;
  }
  #page .sec2 .sp-img {
    margin-bottom: -5rem;
    margin-right: -15px !important;
    margin-left: 15px;
    max-width: calc(100vw - 30px);
  }
  .sp-mb-0 {
    margin-bottom: 0;
  }
}


#page .sec3 {
  padding:30px 0;
  background-color: #FFF5E2;
}
#page .sec3 h3 {
  margin-bottom: 1rem;
  margin-right: -40px;
}
#page .sec3 .text-box .float-box {
  background-color: #fff;
  margin-left: -100px;
  padding:1.5rem;
  padding-left:120px;
  margin-top: 50px;
  border-radius: 10px;
}
#page .sec3 .img-box {
  position: relative;
  z-index: 100;
}
#page .sec3 .img-back {
  width:180px;
  float:right;
}
@media (max-width: 768px) { 
  #page .sec3 .img-box {
    margin-left: -15px;
    margin-bottom: -2rem;
  }
  #page .sec3 .text-box .float-box { 
    margin-left: 0;
    padding: 1rem;
    padding-top:2rem;
    margin-top: 0;
  }
  #page .sec3 .img-back {
    width:180px;
    position: relative;
    bottom:-60px;
    left:calc(50% - 90px);
    margin-top:-60px;
    float:none;
    text-align: center;
  }
}

#page .sec4 {
  padding:45px 0;
  background-color: #FFF5E2;
  padding-bottom: 0;
}
#page .sec4 .row {
  flex-direction: row-reverse;
  background-image: url('../img/oguchi/photo_suwako01_pc.png'),url('../img/oguchi/photo_suwako02_pc.png');
  background-repeat: no-repeat;
  background-size: 25%;
  background-position: left center, right center;
  background-size: contain;
}
#page .sec4 h3 {
  width:170px;
  margin-left: 2rem;
}
#page .sec4 p {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) { 
  #page .sec4 .row {
    background: none;
  }
  #page .sec4 .img-box {
    margin:0 auto !important;
    width: 90%;
  }
}

#page .sec5 {
  padding:25px 0;
  background-color: #FFF5E2;
}
#page .sec5 .row {
  align-items: end;
}
#page .sec5 .text-box .float-box {
  background-color: #fff;
  margin-right: -100px;
  padding:1.5rem;
  padding-right:150px;
  margin-top: 50px;
  border-radius: 10px;
}
#page .sec5 .img-box {
  margin-left: -30px;
  margin-bottom: -30px;
}
@media (max-width: 768px) { 
  #page .sec5 .text-box .float-box {
    margin: 0;
    padding:1rem;
    margin-top: 20px;
  }
  #page .sec5 .img-box {
    margin-bottom: 0px;
    margin-left: 0;
    padding: 0;
    margin-top: -1rem;
  }
}

#page .sec6 {
  padding:45px 0;
  background-color: #FFF5E2;
}
#page .sec6 .row {
  flex-direction: row-reverse;
}
#page .sec6 .text-box .float-box {
  background-color: #fff;
  margin-left: -80px;
  padding:1.5rem;
  padding-left:110px;
  margin-top: 50px;
  border-radius: 10px;
}
#page .sec6 .img-box {
  position: relative;
  z-index: 100;
}
#page .sec6 .img-box p {
  font-size:.8em;
  padding-right:20%;
}
@media (max-width: 768px) { 
  #page .sec6 {
    padding-top:20px;
  }
  #page .sec6 .text-box .float-box {
    margin: 0;
    padding: 1rem;
  }
  #page .sec6 .img-switch {
    margin-bottom: 1rem;
  }
  #page .sec6 p.pc-none {
    line-height: 1.4;
    margin-top: .5em;
    padding-left:15px;
  }
  #page .sec6 .img-box {
    margin-bottom: 0px;
    margin-left: 0;
    padding: 0;
    margin-top: -1rem;
  }

}

#page .sec7 {
  padding:30px 0;
  background-color: #FFF5E2;
}
#page .sec7 h3 {
  margin-bottom: 1rem;
}
#page .sec7 h3 {
  max-width:580px;
}
#page .sec7 .text-box .float-box {
  background-color: #fff;
  margin-right: -100px;
  padding:1.5rem;
  padding-right:150px;
  margin-top: 50px;
  border-radius: 10px;
}
#page .sec7 .img-box {
  margin-top: -40px;;
}
#page .sec7 .img-box p {
  text-align: right;
  font-size: .7em;
  line-height: 1.4;
  margin-top: .5em;
}
@media (max-width: 768px) { 
  #page .sec7 {
    padding-top: 0;
    margin-top: -1rem;
  }
  #page .sec7 h3 {
    padding:0 15px;
  }
  #page .sec7 .float-box {
    margin: 0 !important;
    padding: 1rem !important;
  }
  #page .sec7 .img-box {
    margin-right: -15px;
    margin-top: -2rem;
  }
  #page .sec7 .img-box img {
    position: relative;
    right:-15px
  }
}

#page .sec8 {
  padding:30px 0;
  background-color: #FFF5E2;
}
@media (max-width: 768px) {
  #page .sec8 {
    padding:30px 15px;
  }
 }

#page .sec9 {
  padding:45px 0;
  background-color: #FFF5E2;
}
#page .sec9 .row {
  flex-direction: row-reverse;
}
#page .sec9 .text-box .float-box {
  background-color: #fff;
  margin-left: -80px;
  padding:1.5rem;
  padding-left:110px;
  margin-top: 50px;
  border-radius: 10px;
}
#page .sec9 .img-box {
  position: relative;
  z-index: 100;
}
#page .sec9 .img-box p {
  font-size:.8em;
  padding-right:20%;
}
@media (max-width: 768px) { 
  #page .sec9 .text-box .float-box {
    padding:1rem;
    margin: 0;
    padding-top:3rem;
  }
  #page .sec9 .text-box .float-box p {
    margin-bottom: 0;
  }
  #page .sec9 .sp-img {
    margin-bottom: -2rem;
    position: relative;
    left:-15px;
  }
}

#page .contact {
  padding-bottom:45px;
  background-color: #FFF5E2;
}
#page .contact h2 {
  background-image: url('../img/oguchi/illust_hanabi_black01.png'),url('../img/oguchi/illust_hanabi_black02.png');
  background-repeat: no-repeat;
  background-size: 10%;
  background-position: left center, right center;
  padding:3rem 0 1rem 0;
  line-height: 1.6;
  font-weight: bold;
}
#page .contact h2 span {
  width:70%;
  font-size:1.2rem;
  text-align: center;
  margin: 0 auto;
  padding:1rem;
  border-top:4px solid #333;
  border-bottom:4px solid #333;
  margin-bottom: 2rem;
  display: block;
}
#page .contact .contact-box {
  width: 70%;
  margin: 0 auto;
  background-color: #fff;
  border:4px solid #000;
  padding:2rem;
  padding-left:30%;
  border-radius: 10px;
  position: relative;
}
#page .contact .contact-box h3 {
  margin-bottom: 1rem;
}
#page .contact .contact-box .img-box {
  position: absolute;
  top:-35px;
  bottom:0px;
  left:0;
}
#page .contact .contact-box .img-box img {
  height:100%;
  width:auto;
}
#page .contact .contact-box a:hover img {
  opacity: .8;
  transition: .3s;
}
@media (max-width: 768px) { 
  #page .contact .point-img {
    width:200px;
    margin: 0 auto;
    margin-bottom: 0;
  }
  #page .contact h2 {
    background: none;
    margin-top: 0;
    padding-top: 10px;
  }
  #page .contact h2 span {
    width:calc(100% - 30px);
    margin-bottom: 0;
  }
  #page .contact .contact-box {
    width:calc(100% - 30px);
    padding:1rem 0rem;
  }
  #page .contact .contact-box a img {
    padding:0 2rem; 
  }
}

#page .set {
  padding-bottom:45px;
  background-color: #FFF5E2;
}
#page .set h2 {
  background-image: url('../img/oguchi/illust_travel_black01.png'),url('../img/oguchi/illust_travel_black02.png');
  background-repeat: no-repeat,no-repeat;
  background-size: 15%, 7%;
  background-position: left center, right center;
  padding:3rem 0 1rem 0;
  line-height: 1.6;
}
#page .set h2 span {
  width:70%;
  font-size:1.2rem;
  text-align: center;
  margin: 0 auto;
  padding:1rem;
  border-top:4px solid #333;
  border-bottom:4px solid #333;
  margin-bottom: 2rem;
  font-weight: bold;
  display: block;
}
@media (max-width: 768px) { 
  #page .set .point-img {
    width:200px;
    margin: 0 auto;
    margin-bottom: 0;
  }
  #page .set h2 {
    background: none;
    margin-top: 0;
    padding-top: 10px;
  }
  #page .set h2 span {
    width:calc(100% - 30px);
    margin-bottom: 0;
  }
}


#page .set .cards {
  display: flex;
  gap:15px;
}
#page .set .cards>div {
  display: flex;
  flex-direction: column;
  padding:2rem;
  background-color: #fff;
  border-radius: 10px;
  border:4px solid #000;
}
#page .set .cards h3 {
  margin: 1em 0 .4em 0;
  padding-bottom:.6em;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom:2px solid #000;
}
#page .set .cards p {
  flex-grow: 1;
}
#page .set .cards a {
  display: inline-flex;
  align-items: center;
  padding:.7rem 1.2rem .8rem 1.2rem;
  font-size:.9em;
  width:auto;
  background-color: #2EB6D6;
  color:#fff;
  font-weight: bold;
  border-radius: 999px;
}
#page .set .cards a img {
  width:1.5rem;
  padding-left:.3em;
}
#page .set .cards a:hover {
  opacity: .8;
  transition: .3s;
}
@media (max-width: 768px) { 
  #page .set .cards {
    flex-wrap: wrap;
    padding:0 15px;
  }
}

#page .message {
  padding-bottom:45px;
  background-color: #FFF5E2;
}
#page .message .img-box {
  margin-left: -15px;
  margin-right: -15px;
}
#page .message .text-box {
  position:absolute;
  width:40%;
  background-color: #fff;
  border-radius: 10px;
  padding:1rem;
}
#page .message .float-box p {
  float:left;
  width:68%;
  margin-bottom: 0;
}
#page .message .float-box img {
  width:200px;
  float:right;
  position: absolute;
  right:-70px;
  bottom:40px;
}
@media (max-width: 768px) { 
  #page .message {
    padding:0 15px;
  }
  #page .message .text-box {
    position:relative;
    width:100%;
    border-radius: 10px;
    padding:1rem;
  }
  #page .message .float-box p {
    float:none;
    width:100%;
    margin-bottom: 0;
  }
  #page .message .float-box img {
    width:170px;
    position: relative;
    right:-10px;
    bottom:0px;
  }
  #page .message .img-box img {
    margin-top: -4rem;
    margin-bottom: 2rem;
  }

}

#page .sec10 {
  padding-bottom:45px;
  background-color: #FFF5E2;
  padding:0 15px;
}
#page .sec10 h3 {
  width:500px;
  margin-bottom: 1.8rem;
}
#page .sec10 .float-box {
  background-color: #fff;
  padding:15px;
  border-radius: 10px;
  padding-right: 35%;
  position: relative;
  margin-bottom: 40px;
}
#page .sec10 p {
  margin-bottom: 0;
}
#page .sec10 .img-box {
  width:30%;
  position:absolute;
  right:0;
  bottom:0;
}
@media (max-width: 768px) { 
  #page .sec10 .float-box {
    padding:1rem;
    padding-bottom: 0;;
  }
  #page .sec10 .img-box {
    text-align: center;
    width:100%;
    position: relative;
    text-align: center;
  }
  #page .sec10 .img-box img {
    width:90%;
  }
}

#page .sec11 {
  padding-bottom:45px;
  background-color: #FFF5E2;
  padding:0 15px;
}
#page .sec11 .row {
  align-items: center;
  padding-bottom: 2rem;
}
#page .sec11 p {
  border-top: 4px solid #000;
  padding-top:1rem;
}
@media (max-width: 768px) { 
  #page .sec11 {
    padding:0;
  }
  #page .sec11 .row {
    flex-direction: column-reverse;
    padding-bottom: 0;
  }
  #page .sec11 .img-box {
    text-align: center;
    border-top: 4px solid #000;
    margin: 0 15px;
    width:calc(100% - 30px);
    padding:0 15px;
    padding-top: 1rem;;
  }
  #page .sec11 .img-box img {
    width:140px;
  }
  #page .sec11 p {
    border: none;
  }
}

#page .pickup {
  padding-bottom:45px;
}
#page .pickup h1 {
  text-align: center;
  margin-bottom: 3rem;
}
#page .pickup h1 img {
  width:200px;
}
@media (max-width: 768px) { 
  #page .pickup h1 {
    margin-bottom: 2rem;
  }
}

#page .pickup .cards {
  display: flex;
  gap:15px;
  margin-bottom: 2rem;
}
#page .pickup .cards>div {
  display: flex;
  flex-direction: column;
  padding:2rem;
  background-color: #fff;
  border-radius: 10px;
  border:4px solid #000;
  position: relative;
}
#page .pickup .cards h3 {
  margin: 1em 0 .4em 0;
  padding-bottom:.6em;
  font-size: 1.1rem;
  font-weight: bold;
  border-bottom:2px solid #000;
}
#page .pickup .cards p {
  flex-grow: 1;
}
#page .pickup .cards a {
  display: inline-flex;
  align-items: center;
  padding:.7rem 1.2rem .8rem 1.2rem;
  font-size:.9em;
  width:auto;
  background-color: #2EB6D6;
  color:#fff;
  border-radius: 999px;
  font-weight: bold;
}
#page .pickup .cards a img {
  width:1.5rem;
  padding-left:.3em;
}
#page .pickup .cards a:hover {
  opacity: .8;
  transition: .3s;
}
#page .pickup .cards h4 {
  font-size:.85rem;
  margin-bottom: .5rem;
  font-weight: bold;
  line-height: 1.5;
}
#page .pickup .cards .cat {
  position: absolute;
  top:-7px;
  left:20px;
}
#page .pickup .cards .cat img {
  width:60px;
}
@media (max-width: 768px) { 
  #page .pickup .cards {
    flex-wrap: wrap;
    padding:0 15px;
  }
  #page .pickup .cards>div {
    padding:1rem;
  }
  #page .pickup .cards .cat {
    position: absolute;
    top:-7px;
    left:10px;
  }
  #page .pickup .cards .cat img {
    width:70px;
  }
  #page .pickup .cards .address {
    font-size: .8em;
    line-height: 1.4;
  }
  #page .pickup .cards a {
    display: block;
    text-align: center;
  }
  #page .pickup .cards a img {
    position: relative;
    top:2px;
  }
}


#page .pickup .fukidashi-h {
  padding: .5rem 0 1.4rem 0;
}
#page .pickup .fukidashi-h h2 {
  color:#fff;
}
@media (max-width: 768px) { 
  #page .pickup .fukidashi-h {
    margin-bottom: 2rem;
  }
  #page .pickup .fukidashi-h h2 {
    font-size:1.5rem;
  }
}

#page .pickup-stay {
  background: linear-gradient(180deg,#FFF5E2 0,#FFF5E2 50px,#fff 50px, #fff 100%);
}
#page .pickup-stay .fukidashi-h {
  background-color: #2DB6D6;
  color:#fff;
}
#page .pickup-stay .fukidashi-h:after {
  background: linear-gradient(180deg,#2DB6D6 0,#2DB6D6 10px,#fff 10px, #fff 100%) !important;
}

#page .pickup-spot .fukidashi-h {
  background-color: #0BBE80;
  color:#fff;
}
#page .pickup-spot .fukidashi-h:after {
  background: linear-gradient(180deg,#0BBE80 0,#0BBE80 10px,#fff 10px, #fff 100%) !important;
}
#page .pickup-spot .cards a {
  background-color: #0BBE80;
}

#page .pickup-event .fukidashi-h {
  background-color: #ED6D2B;
  color:#fff;
}
#page .pickup-event .fukidashi-h:after {
  background: linear-gradient(180deg,#ED6D2B 0,#ED6D2B 10px,#fff 10px, #fff 100%) !important;
}
#page .pickup-event .cards a {
  background-color: #ED6D2B;
}

#page {
  padding-bottom:50px ;
  background-image: url('../img/house_illust_pc.png');background-repeat: repeat-x ;
  background-position: center bottom ;
  background-size: auto 65px ;
}



/*-----------------------------------------------
danlo 202408
-----------------------------------------------*/
#danlo #page .cover .color-band {
  background-color: #ED6D2B;
}

#danlo .sec4 {
  padding-bottom: 4rem;
}
#danlo #page .sec4 .row {
  flex-direction: row-reverse;
  background-image: url(../img/danlo/sec2-kinoko-illust-pc-01.png), url(../img/danlo/sec2-kinoko-illust-pc-02.png);
}
@media (max-width: 768px) { 
  #danlo #page .sec4 .row { 
    background: none;
  }
}
#danlo #page .sec7 .row2 {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
#danlo #page .sec7 .row2 .img-box {
  z-index: 100;
  margin-top: 0;
}
#danlo #page .sec7 .row2 .text-box .float-box {
  background-color: #fff;
  margin-left:-100px;
  margin-right: 0px;
  padding: 1.5rem;
  padding-left:100px;
  margin-top: 0px;
}
#danlo #page .sec7 .row2 .text-box .float-box p {
  margin-bottom: 0;
}
#danlo #page .sec7.kinoko h4 {
  font-size:140%;
  margin-bottom:.5em;
  padding-bottom: .5em;
  border-bottom:1px solid #dedede;
  font-family: var(--sub-font) !important;
}
#danlo #page .sec7.kinoko .row3 .img-box {
  margin-top: 0;
}
#danlo #page .sec7.kinoko .row2,
#danlo #page .sec7.kinoko .row3 {
  margin-top: 1rem;
  margin-bottom: 0;
}
#danlo #page .sec4-2 {
  background-color: #FFF5E2;
  padding:0 15px;
  padding-bottom:45px;
  padding-top: 30px;
}
#danlo #page .sec9 .illust-box {
  position: absolute;
  width:200px;
  right:100px;
  bottom:50px;
}
#danlo #page .danlo-sec1 {
  background-color: #FFF5E2;
  padding:0 15px;
  padding-bottom:45px;
  padding-top: 30px;
}
#danlo #page .danlo-sec1 .float-box {
  background-color: #fff;
  padding:1rem;
  border-radius: 15px;
  padding-top:1.5rem;
}
#danlo #page .danlo-sec2 {
  background-color: #FFF5E2;
  padding:0 15px;
  padding-bottom:65px;
  padding-top: 30px;
}
#danlo #page .danlo-sec2 h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size:1.2rem;
  line-height: 1.7;
  font-weight: bold;
  border-top:3px solid #000;
  border-bottom: 3px solid #000;
  padding:1rem 0;
  position: relative;
}
#danlo #page .danlo-sec2 h3::after {
  background: #000;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left:calc(50% - 10px);
  bottom:-19px;
  content:'';
}
#danlo #page .danlo-sec2 a img {
  width: max(50vw, 300px);
}
#danlo #page .message .row .col-4 {
  padding-right: 60px;
}
#danlo #page .message .row .col-6 {
  padding-top: 1rem;
}
#danlo #page .message .row2 {
  padding-top: 300px;
  background-image: url('../img/danlo/sec5-img-back-pc.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -80px;
}
#danlo #page .message .row2 .float-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  margin-right: -100px;
  padding-right: 100px;
}
#danlo #page .message .row2 .float-box p {
  float: none;
  width: 100%;
  padding: 1rem 0;
}
#danlo #page .message .row3 {
  padding-bottom: 3rem;
}
#danlo #page .message .row3 .col-12 {
  background-color: #fff;
  padding:2rem;
  margin-top: 3rem;
  border-radius: 15px;
}
#danlo #page .message .row3 .illust-left img {
  width:200px;
  margin-top: -50px;
  float:left;
  margin-right: 3rem;
}
#danlo #page .message .row3 .text-right p {
  margin-bottom: 0;
}
#danlo #page .contact .contact-box {
  width: 70%;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #000;
  padding: 2rem 1rem;
  padding-left: 35%;
  border-radius: 10px;
  position: relative;
}
#danlo #page .contact .contact-box .inner {
  text-align: center;
}
#danlo #page .contact .contact-box small {
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  #danlo #page .sec1 {
    padding-bottom: 4rem;
  }
  #danlo #page .sec1 .text-box {
    padding-bottom:4rem;
  }
  #danlo #page .sec1 .illust-box {
      position: absolute;
      left:0;
      text-align: center;
      bottom: -4rem;
  }
  #danlo #page .sec1 .illust-box img.pc-none {
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    width:60%;
    z-index: 400;
    position: relative;
  }
  #danlo #page .sec4-danlo .img-box {
    margin-top: -2rem !important;
  }
  #danlo #page .sec4-danlo {
    padding-bottom: 1rem !important;
  }
  #danlo #page .sec7-danlo {
    padding:2rem 0 !important;
  }
  #danlo #page .sec7-danlo img {
    margin-left: -15px;
    max-width: calc(100% + 30px);
    right:0 !important;
  }
  #danlo #page .sec7-danlo .row2 {
    margin:2rem 0 !important;
  }
  #danlo #page .sec7-danlo .row2 .float-box {
    margin-top: -50px !important;
    padding-top: 50px !important;
  }
  #danlo #page .kinoko h3 {
    padding:0;
  }
  #danlo #page .kinoko .cook-img {
    margin-top: -1rem;
  }
  #danlo #page .kinoko .cook-img img {
    width:calc(100% + 15px) !important;
    max-width: initial;
    right:0;
  }
  #danlo #page .kinoko .row {
    position: relative;
  }
  #danlo #page .text-box  {
    margin-bottom: 2rem;
  }
  #danlo #page .kinoko-list .float-box img {
    margin-top: 1rem;
    margin-bottom: -3rem;
  }
  #danlo #page .sec4-2 {
    padding-bottom:1rem !important;
  }
  #danlo #page .sec2-danlo .float-box {
    padding:1rem;
  }
  #danlo #page .sec2-danlo .btm-img {
    margin-bottom: -4rem;
    margin-right: -15px;
    position: relative;
    right:-33px;
  }
  #danlo #page .sec9 .float-box {
    padding:1rem;
  }
  #danlo #page .sec9 .float-box img {
    margin-bottom: -7rem;
    position: relative;
    margin-top: 1rem;
    left:-33px;
  }
  #danlo #page .message .row2 {
    background: url('../img/danlo/sec5-img-back-sp.png');
    background-size: contain;
    background-repeat: no-repeat;
    padding-top:3rem;
    padding:3rem 0;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -2rem;
    padding-top: 8rem;
  }
  #danlo #page .message .row2 .float-box {
    margin-right: 0;
    padding:1rem;
  }
  #danlo #page .message .row2 .float-box img {
    width: calc(100% + 30px) !important;
    margin-right:-34px !important;
    right:-34px;
    margin-bottom: -3rem;
    float:none;
  }
  #danlo #page .message .row3 .float-box {
    margin-right: 0;
    padding:1rem;
  }
  #danlo #page .message .row3 {
    padding-bottom:3rem;
  }
  #danlo #page .message .row3 .animals {
    width:150px;
    position: absolute;
    right:0;
    bottom:-1rem;    
  }
  #danlo #page .message {
    padding-bottom:2rem !important;
  }
  #danlo #page .contact .contact-box {
    width:calc(100% - 20px);
    padding-left:1rem;
    padding-bottom:0;
  }
  #danlo #page .contact .contact-box a img {
    padding:0;
  }
  #danlo {
    overflow: hidden;
  }
}

/*-----------------------------------------------
silk 202502
-----------------------------------------------*/
#silk #page .cover .color-band {
  background-color: #0693E3;
}

#silk .sec4 {
  padding-bottom: 4rem;
}
#silk .sec4 h3 {
  margin-left: 0;
}
#silk #page .sec4 .row {
  flex-direction: row-reverse;
  background-image: url(../img/silk/sec2-illust-pc-01.png), url(../img/silk/sec2-illust-pc-02.png);
  background-size: 30%,30%;
  background-position: left bottom,right bottom;
}
@media (max-width: 768px) { 
  #silk #page .sec4 .row { 
    background: none;
  }
}


/*-----------------------------------------------
sec7-2
-----------------------------------------------*/
#silk #page .sec7 {
  padding-bottom: 5rem;
}
#silk #page .sec7 .row2 {
  margin-top: 3rem;
  margin-bottom: 5rem;
}
#silk #page .sec7 .row2 .img-box {
  z-index: 100;
  margin-top: 0;
}
#silk #page .sec7 .row2 .text-box .float-box {
  background-color: #fff;
  margin-left:-100px;
  margin-right: 0px;
  padding: 1.5rem;
  padding-left:100px;
  margin-top: 0px;
}
#silk #page .sec7 .row2 .text-box .float-box p {
  margin-bottom: 0;
}



/*-----------------------------------------------
sec1-2
-----------------------------------------------*/
#silk #page .sec1-2 {
  padding-bottom: 4rem;
}
#silk #page .sec1-2 .row {
  align-items: center !important;
}
#silk #page .sec1-2 .fukidashi {
  padding-right:50px;
}
#silk #page .sec1-2 .coverimg {
  position: relative;
  width:200px;
  top:-50px;
  left:-20px;
}

/*-----------------------------------------------
sec7-3
-----------------------------------------------*/
#silk #page .sec7-3 .row2 {
  margin: 1rem 0;
}
#silk #page .sec7-3 .float-box p {
  margin-bottom: 0;
}
#silk #page .sec7-3 .float-box {
  margin-bottom: 1rem;
}

#silk #page .sec4-2 {
  padding:0 15px;
  padding-bottom:45px;
  background-color: #FFF5E2;
}

#silk #page .sec4-3 {
  padding:0 15%;
  padding-bottom:45px;
  background-color: #FFF5E2;
}

/*-----------------------------------------------
sec9
-----------------------------------------------*/
#silk #page .sec9 h3 {
  font-family: var(--sub-font) !important;
  margin-bottom: .5em;
  padding-bottom:.5em;
  border-bottom: 1px solid #707070
}

/*-----------------------------------------------
sec2-silk
-----------------------------------------------*/
#silk #page .sec2-silk {
  padding-bottom: 2rem;
}
#silk #page .sec2-silk h3 {
  font-family: var(--sub-font) !important;
  margin-bottom: .5em;
  padding-bottom:.5em;
  border-bottom: 1px solid #707070
}
#silk #page .sec2-silk .walklink {
  margin: 2rem 0;
  margin-bottom: 4rem;
}
#silk #page .sec2-silk .walklink a:hover img {
  opacity: .7;
  transition: .3s;
}

/*-----------------------------------------------
silk outlink
-----------------------------------------------*/
#silk #page .outlink {
  background-color: #FFF5E2;
  background-image: url(../img/silk/outlink-bg.png);
  background-size: cover;
  background-position: center bottom;
  padding: 6rem 0;
  position: relative;
}
#silk #page .outlink::before{
  content:'';
  width:100%;
  position: absolute;
  top:-1px;
  left:0;
  height:10%;
  background-color: #FFF5E2;
  z-index: 50;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
#silk #page .outlink::after{
  content:'';
  width:100%;
  position: absolute;
  bottom:-1px;
  left:0;
  height:20%;
  background-color: #FFF5E2;
  z-index: 150;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
#silk #page .outlink .contact-box {
  background-color: #fff;
  z-index: 100;
  border-radius: 20px;
  border:3px solid #000;
  padding:2rem;
  padding-left: min(614px,22%);
  text-align: center;
  margin: 0 auto;
  width:60%;
  position: relative;
  z-index: 20;
}
#silk #page .outlink .contact-box .illust-box {
  position: absolute;
  top:-70px;
  right:-60px;
  width:120px;
}
#silk #page .outlink .portrait {
  width: min(27%,404px);
  position: absolute;
  z-index: 100;
  bottom: 0;
  left:max(calc(50% - 600px),15%);
}
#silk #page .outlink .outlink-btn {
  width:90%;
  margin: 0 auto;
  margin-bottom: .3rem;
  margin-top: 1rem;
}
#silk #page .outlink .outlink-btn a:hover img {
  opacity: .7;
  transition: .3s;
}
#silk #page .outlink p {
  margin: 0;
  font-weight: bold;
  font-size:13px;
}

#silk #page .pickup-stay {
  padding-top: 5rem;
  background: linear-gradient(180deg, #FFF5E2 0, #FFF5E2 50px, #fff calc(50px + 5rem), #fff 100%);
}

#silk #page .pickup .address {
  font-size: .7em;
  line-height: 1.6;
}

#silk #page .local-nav .button:nth-child(2) {
  background-color: #ED6D2B;
}

#silk #page .pickup-stay .fukidashi-h {
  background-color: #F06A75;
  color:#fff;
}
#silk #page .pickup-stay .fukidashi-h:after {
  background: linear-gradient(180deg, #F06A75 0, #F06A75 10px, #fff 10px, #fff 100%) !important;
}
#silk #page .pickup-stay .cards a {
  background-color: #F06A75;
}


#silk #page .pickup-spot .fukidashi-h {
  background-color: #ED6D2B;
  color:#fff;
}
#silk #page .pickup-spot .fukidashi-h:after {
  background: linear-gradient(180deg, #ED6D2B 0, #ED6D2B 10px, #fff 10px, #fff 100%) !important;
}
#silk #page .pickup-spot .cards a {
  background-color: #ED6D2B;
}


#silk #page .pickup-event .fukidashi-h {
  background-color: #0BBE80;
  color:#fff;
}
#silk #page .pickup-event .fukidashi-h:after {
  background: linear-gradient(180deg, #0BBE80 0, #0BBE80 10px, #fff 10px, #fff 100%) !important;
}
#silk #page .pickup-event .cards a {
  background-color: #0BBE80;
}

/*-----------------------------------------------
silk basic
-----------------------------------------------*/
#silk #page .silk-sec1 {
  background-color: #FFF5E2;
  padding:0 15px;
  padding-bottom:45px;
  padding-top: 30px;
}
#silk #page .silk-sec1 .float-box {
  background-color: #fff;
  padding:1rem;
  border-radius: 15px;
  padding-top:1.5rem;
}
#silk #page .silk-sec2 {
  background-color: #FFF5E2;
  padding:0 15px;
  padding-bottom:65px;
  padding-top: 30px;
}
#silk #page .silk-sec2 h3 {
  text-align: center;
  margin-bottom: 3rem;
  font-size:1.2rem;
  line-height: 1.7;
  font-weight: bold;
  border-top:3px solid #000;
  border-bottom: 3px solid #000;
  padding:1rem 0;
  position: relative;
}
#silk #page .silk-sec2 h3::after {
  background: #000;
  height: calc(tan(60deg) * 20px / 2);
  width: 20px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left:calc(50% - 10px);
  bottom:-19px;
  content:'';
}
#silk #page .silk-sec2 a img {
  width: max(50vw, 300px);
}
#silk #page .message .row .col-4 {
  padding-right: 60px;
}
#silk #page .message .row .col-6 {
  padding-top: 1rem;
}
#silk #page .message .row2 {
  padding-top: 300px;
  background-image: url('../img/silk/sec5-img-back-pc.png');
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -80px;
}
#silk #page .message .row2 .float-box {
  background-color: #fff;
  border-radius: 15px;
  padding: 1.5rem;
  margin-right: -100px;
  padding-right: 100px;
}
#silk #page .message .row2 .float-box p {
  float: none;
  width: 100%;
  padding: 1rem 0;
}
#silk #page .message .row3 {
  padding-bottom: 3rem;
}
#silk #page .message .row3 .col-12 {
  background-color: #fff;
  padding:2rem;
  margin-top: 3rem;
  border-radius: 15px;
}
#silk #page .message .row3 .illust-left img {
  width:200px;
  margin-top: -50px;
  float:left;
  margin-right: 3rem;
}
#silk #page .message .row3 .text-right p {
  margin-bottom: 0;
}
#silk #page .contact .contact-box {
  width: 70%;
  margin: 0 auto;
  background-color: #fff;
  border: 4px solid #000;
  padding: 2rem 1rem;
  padding-left: 35%;
  border-radius: 10px;
  position: relative;
}
#silk #page .contact .contact-box .inner {
  text-align: center;
}
#silk #page .contact .contact-box small {
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 768px) {

  /*-----------------------------------------------
  silk sp
  -----------------------------------------------*/

  #silk #page .local-nav .button:nth-child(3) {
    width: 100% !important; 
    border-right:none !important;
  }

  #silk #page .sec1 {
    padding-bottom: 1rem;
  }
  #silk #page .sec1 h3 img {
    width: 100%;
  }
  #silk #page .sec1 .illust-box {
      position: absolute;
      left:0;
      text-align: center;
      bottom: -4rem;
  }
  #silk #page .sec1 .illust-box img.pc-none {
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    width:60%;
    z-index: 400;
    position: relative;
  }

  #silk #page .sec4 h3 {
    width:100%;
  }
  #silk #page .sec4-silk .img-box {
    margin-top: -2rem !important;
  }
  #silk #page .sec4-silk {
    padding-top: 0rem !important;
    padding-bottom: 0 !important;
    margin-bottom: -4rem;
  }
  #silk #page .sec7-silk {
    padding:2rem 0 !important;
  }
  #silk #page .sec7-silk img {
    margin-left: -15px;
    max-width: calc(100% + 30px);
    right:0 !important;
  }
  #silk #page .sec7-silk .row .float-box {
    padding-top:2rem !important;
    position: relative;
  }
  #silk #page .sec7-silk .row .float-box .illust {
    width:140px;
    position: absolute;
    top:-100px;
    left:0;
  }
  #silk #page .sec7-silk .row .img-box {
    margin-top:-3.3rem;
  }
  #silk #page .sec7-silk .row2 {
    margin:3rem 0 0rem 0 !important;
  }
  #silk #page .sec7-silk .row2 .float-box {
    margin-top: -50px !important;
    padding-top: 15px !important;
  }
  #silk #page .row3 .text-box {
    margin-bottom: 0 !important;
  }
  #silk #page .row3 .float-box {
    margin-top: -1rem !important;
  }
  #silk #page .row3 .sec7-silk-img {
    margin-left: -15px;
    max-width: calc(100% + 30px);
    right: 0 !important;
    margin-top: 4rem !important;
    position: relative;
    z-index: 100;
  }

  #silk #page .sec7-2 {
    padding-bottom: 1rem !important;
  }

  #silk #page .sec7-2 .row2 {
    margin-bottom: 0;
  }

  #silk #page .sec1-2 .text-box {
    margin-bottom: 0;
  }

  #silk #page .row3 .img-04 {
    padding:0 15px;
  }

  #silk #page .sec7 .row2 {
    margin-top: 0;
  }
  
  #silk #page .text-box  {
    margin-bottom: 2rem;
  }


  #silk #page .sec4-2 {
    padding-bottom:1rem !important;
  }
  #silk #page .sec2-silk .float-box {
    padding:1rem;
  }
  #silk #page .sec2-silk .btm-img {
    margin-bottom: -4rem;
    margin-right: -15px;
    position: relative;
    right:-33px;
  }
  #silk #page .sec2-silk .text-box {
    margin-bottom: 0;
  }
  #silk #page .walklink {
    margin:0 !important;
    margin-top: 1rem !important;
  }

  #silk #page .sec9 .float-box {
    padding:1rem;
  }
  #silk #page .sec9 .float-box img {
    margin-bottom: -7rem;
    position: relative;
    margin-top: 1rem;
    left:-33px;
  }

  #silk #page .sec7-3 {
    padding-bottom: 1rem;
  }

  #silk #page .sec4-3 {
    padding: 0;
  }

  #silk #page .sec2-silk {
    padding-top: 0;
  }
  #silk #page .sec2-silk .float-box {
    margin-top: 0;
  }

  #silk #page .sec9 {
    padding-bottom: 0;
  }
  #silk #page .sec9 .float-box {
      padding-bottom: 8rem;
      margin-bottom: -7rem;
  }


  #silk #page .contact .contact-box {
    width:calc(100% - 20px);
    padding-left:1rem;
    padding-bottom:0;
  }
  #silk #page .contact .contact-box a img {
    padding:0;
  }
  #silk {
    overflow: hidden;
  }

  /*-----------------------------------------------
  silk outlink sp
  -----------------------------------------------*/
  #silk #page .outlink {
    background-color: #FFF5E2;
    background-image: url(../img/silk/outlink-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding: 3rem 0;
    position: relative;
    padding-top:5rem;
  }
  #silk #page .outlink::before{
    content:'';
    width:100%;
    position: absolute;
    top:-1px;
    left:0;
    height:10%;
    background-color: #FFF5E2;
    z-index: 50;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  }
  #silk #page .outlink::after{
    content:'';
    width:100%;
    position: absolute;
    bottom:-1px;
    left:0;
    height:20%;
    background-color: #FFF5E2;
    z-index: 150;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  }
  #silk #page .outlink .contact-box {
    background-color: #fff;
    z-index: 100;
    border-radius: 20px;
    border:3px solid #000;
    padding:1rem;
    text-align: center;
    margin: 0 auto;
    width:85%;
    position: relative;
    z-index: 220;
    bottom:-6rem;
  }
  #silk #page .outlink .portrait {
    width: 60%;
    position: absolute;
    z-index: 100;
    bottom: inherit;
    top:-5%;
    left: calc(50vw - 30%);
  }
  #silk #page .outlink .outlink-btn {
    width:90%;
    margin: 0 auto;
    margin-bottom: .5rem;
    margin-top: 1rem;
  }
  #silk #page .outlink .outlink-btn a:hover img {
    opacity: .7;
    transition: .3s;
  }
  #silk #page .outlink p {
    margin: 0;
    font-weight: bold;
    font-size:13px;
    line-height: 1.3em;
  }
  #silk #page .color-band h4 span {
    display: inline-block;
    line-height: 1.3em;
  }

}


/*-----------------------------------------------
smsw 202503
-----------------------------------------------*/
#smsw #page .cover .color-band {
  background-color: #FF4A4A;
}


/*-----------------------------------------------
sec1
-----------------------------------------------*/
#smsw .smsw-sec1 {
  background-color: #FFF5E2;
  padding:2rem 0;
}
#smsw .smsw-sec1 .container {
  background-image:url('../img/smsw/sec2-illust-step.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 400px;
}
#smsw .smsw-sec1 .row {
  align-items: center;
}
#smsw .smsw-sec1 h3 {
  margin-bottom: 1rem;
}
#smsw .smsw-sec1 .row .float-box {
  margin-right: -200px;
  padding:1rem;
  padding-right: 250px;
}
@media (max-width: 768px) { 
  #smsw .smsw-sec1 {
    padding-bottom: 0;
  }
  #smsw .smsw-sec1 .container {
    background: none;
  }
  #smsw .smsw-sec1 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-top: -2rem !important;
    padding-top: 3rem !important;
    margin-bottom: -2rem !important;
    padding-bottom: 3rem !important;
  }
  .mt-3 {
    margin-top: 1rem !important;
  }
  #smsw #page .text-box {
    margin-bottom: 0rem !important;
  }
}

/*-----------------------------------------------
sec1-2
-----------------------------------------------*/
#smsw .smsw-sec1-2 {
  padding-top:2rem;
  padding-bottom: 2rem;
  background-color: #FFF5E2;
}
#smsw .smsw-sec1-2 .container {
  background-image:url('../img/smsw/sec2-illust-step.png');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 400px;
  padding-top: 3rem;
}
#smsw .smsw-sec1-2 .row .float-box {
  background-color: #fff;
  border-radius: 15px;
  padding:1rem;
  position: relative;
  z-index: 11;
}
#smsw .smsw-sec1-2 .row .img-box {
  position: relative;
  z-index: 12;
}
#smsw .smsw-sec1-2 .kasai-img {
  margin-bottom: -22px;
  position: relative;
  z-index: 1;
}
#smsw .smsw-sec1-2 h3 {
  margin-bottom: 1rem;
}
#smsw .smsw-sec1-2 .torii {
  margin-top: -50px;
  align-items: center;
}
#smsw .smsw-sec1-2 .torii .float-box,
#smsw .smsw-sec1-2 .roji .float-box{
  margin-left: -100px;
  padding-left: 100px;
}
#smsw .smsw-sec1-2 .suwako .float-box {
  margin-right: -100px;
  padding-right: 100px;
}
#smsw .smsw-sec1-2 h4 {
  line-height: 1.5;
  font-family: var(--sub-font) !important;
  font-size:1.3em;
  margin-bottom: .3em;
  padding-bottom: .3em;
  border-bottom: #000 2px solid;
}
#smsw .smsw-sec1-2 .map {
  width:80%;
  margin: 2rem auto;
  padding:1rem;
  margin-bottom: 0;
  background-color: #fff;
  border:6px solid #000;
  border-radius: 15px;
  align-items: center;
}
#smsw .smsw-sec1-2 .map a:hover img {
  opacity: .7;
  transition: .3s;
}

@media (max-width: 768px) { 
  #smsw .smsw-sec1-2 {
    padding:0;
  }
  #smsw .smsw-sec1-2 .container {
    background: none;
  }
  #smsw .smsw-sec1-2 .row {
  }
  #smsw .smsw-sec1-2 .kasai-img {
    margin-bottom: 10px;
    position: relative;
    z-index: 15;
  }
  #smsw .smsw-sec1-2 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
  }
  #smsw .smsw-sec1-2 .float-box h4 {
    font-size: 1em;
  }
  #smsw .smsw-sec1-2 .torii .float-box {
    margin-top: -1rem !important;
    padding-top: 2.5rem !important;
  }
  #smsw .smsw-sec1-2 .map {
    width: 94%;
  }
}

/*-----------------------------------------------
sec2
-----------------------------------------------*/
#smsw .smsw-sec2 {
  background-color: #FFF5E2;
  padding:4rem 0;
  text-align: center;
}
#smsw .smsw-sec2 .container {
  background-image: url('../img/smsw/sec2-illust-pc-02.png'), url('../img/smsw/sec2-illust-pc-03.png');
  background-position: left center,right center;
  background-repeat: no-repeat;
  background-size: 20% , 20%;
}
#smsw .smsw-sec2 h3 {
  margin-bottom: 1em;
}
#smsw .smsw-sec2 img {
  width:600px;
}
#smsw .smsw-sec2 a:hover img {
  opacity: .7;
  transition: .3s;
}
@media (max-width: 768px) { 
  #smsw .smsw-sec2 {
    padding:2rem 0;
  }
  #smsw .smsw-sec2 img {
    width:80%;
  }
  #smsw .smsw-sec2 .container {
    background: none;
  }
  #smsw .smsw-sec2 .stepimg {
    width:110% !important;
  }
}

/*-----------------------------------------------
sec3
-----------------------------------------------*/
#smsw .smsw-sec3 {
  padding: 4rem 0;
  background-color: #FFF5E2;
}
#smsw .smsw-sec3 h3 {
  width:90%;
  margin: 0 auto;
  margin-bottom: 2em;
}
#smsw .smsw-sec3 small {
  text-align: right;
  display: block;
  padding-top: .5em;
}
#smsw .smsw-sec3 .tanga small {
  text-align: left;
}
#smsw .smsw-sec3 .row {
  margin-bottom: 1rem;
}
#smsw .smsw-sec3 .row {
  margin-bottom: 1rem;
}
#smsw .smsw-sec3 .tanga a {
  width:80%;
  display: block;
  margin: 0 auto;
}
#smsw .smsw-sec3 .tanga a:hover img {
  opacity: .7;
  transition: .3s;
}

#smsw .smsw-sec3 .more-spa .container {
  background-image: url('../img/smsw/sec3-illust-pc-03.png'), url('../img/smsw/sec3-illust-pc-04.png');
  background-position: left center,right center;
  background-repeat: no-repeat;
  background-size: 20% , 20%;
  text-align: center;
}
#smsw .smsw-sec3 .more-spa h3 {
  margin-bottom: 1em;
}
#smsw .smsw-sec3 .more-spa img {
  width:600px;
}
#smsw .smsw-sec3 .more-spa a:hover img {
  opacity: .7;
  transition: .3s;
}
@media (max-width: 768px) { 
  #smsw .smsw-sec3 {
    padding: 0rem 0;
  }
  #smsw .smsw-sec3 .extend-right {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-bottom: -2rem !important;
    padding-bottom: 3rem !important;
  }
  #smsw .smsw-sec3 .more-spa {
    padding:2rem 0;
  }
  #smsw .smsw-sec3 .more-spa .container {
    background: none;
  }
  #smsw .smsw-sec3 .more-spa .sp-img-fullwidth {
    width:100% !important;
  }
  #smsw .smsw-sec3 .more-spa h3 {
    width:105%;
  }
  #smsw .smsw-sec3 .more-spa a {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
}

/*-----------------------------------------------
sec4
-----------------------------------------------*/
#smsw .smsw-sec4 {
  padding: 4rem 0;
  background-color: #FFF5E2;
}
#smsw .smsw-sec4 h3 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) { 
  #smsw .smsw-sec4 {
    padding: 1rem 0;
  }
  #smsw .smsw-sec4 .box1 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-top: -1rem !important;
    padding-top: 1rem !important;
    margin-bottom: -2rem !important;
    padding-bottom: 3rem !important;
  }
  #smsw .smsw-sec4 .box2 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-bottom: -2rem !important;
    padding-bottom: 3rem !important;
  }
}

/*-----------------------------------------------
smsw outlink kasai
-----------------------------------------------*/
#smsw #page .kasai.outlink {
  background-color: #FFF5E2;
  background-image: url(../img/smsw/kasai_bg.png);
  background-size: cover;
  background-position: center bottom;
  padding: 4rem 0;
  position: relative;
}
#smsw #page .kasai.outlink::before{
  content:'';
  width:100%;
  position: absolute;
  top:-1px;
  left:0;
  height:10%;
  background-color: #FFF5E2;
  z-index: 50;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
#smsw #page .kasai.outlink::after{
  content:'';
  width:100%;
  position: absolute;
  bottom:-1px;
  left:0;
  height:20%;
  background-color: #FFF5E2;
  z-index: 150;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
#smsw #page .kasai.outlink .contact-box {
  background-color: #fff;
  z-index: 100;
  border-radius: 20px;
  border:3px solid #000;
  padding:2rem;
  padding-right: min(414px,14%);
  text-align: center;
  margin: 0 auto;
  width:80%;
  position: relative;
  z-index: 20;
}
#smsw #page .kasai.outlink .portrait {
  width: min(47%,364px);
  position: absolute;
  z-index: 100;
  bottom: -30px;
  right:-20px;
}
#smsw #page .kasai.outlink h3 {
  margin-bottom: .5em;
}
#smsw #page .outlink .outlink-btn {
  width:90%;
  margin: 0 auto;
  margin-bottom: .3rem;
}
#smsw #page .kasai.outlink .outlink-btn a:hover img {
  opacity: .7;
  transition: .3s;
}
#smsw #page .kasai.outlink p {
  margin: 0;
  font-weight: bold;
  font-size:13px;
}
@media (max-width: 768px) { 
  #smsw #page .kasai.outlink .portrait {
    width: min(47%,364px);
    position: absolute;
    z-index: 100;
    top: -15vw;
    bottom:auto;
    right:-20px;
  }
  #smsw #page .kasai.outlink .contact-box {
    z-index: 200;
    width:90%;
    padding:1rem;
  }
  #smsw #page .kasai.outlink .contact-box .inner {
    margin-top: -60px;
  }
  #smsw #page .kasai.outlink::after{
    height:calc(100% - 200px);
    clip-path: polygon(-440% 100%, 100% 0%, 100% 100%);
  }
}

/*-----------------------------------------------
sec5
-----------------------------------------------*/
#smsw .smsw-sec5 {
  padding: 4rem 0;
  background-color: #FFF5E2;
}
#smsw .smsw-sec5 h3 {
  margin-bottom: 1rem;
}
@media (max-width: 768px) { 
  #smsw .smsw-sec5 {
    padding-bottom: 1rem;
  }
  #smsw .smsw-sec5 .box1 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-top: -7rem !important;
    padding-top: 7rem !important;
  }
  #smsw .smsw-sec5 .box2 .float-box {
    margin:1rem 0 !important;
    padding:1rem !important;
    margin-top: -7rem !important;
    padding-top: 7rem !important;
  }
}

/*-----------------------------------------------
smsw outlink takei
-----------------------------------------------*/
#smsw #page .takei.outlink {
  background-color: #FFF5E2;
  background-image: url(../img/smsw/takei_bg.png);
  background-size: cover;
  background-position: center bottom;
  padding: 4rem 0;
  position: relative;
}
#smsw #page .takei.outlink::before{
  content:'';
  width:100%;
  position: absolute;
  top:-1px;
  left:0;
  height:10%;
  background-color: #FFF5E2;
  z-index: 50;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
}
#smsw #page .takei.outlink::after{
  content:'';
  width:100%;
  position: absolute;
  bottom:-1px;
  left:0;
  height:20%;
  background-color: #FFF5E2;
  z-index: 150;
  clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
}
#smsw #page .takei.outlink .contact-box {
  background-color: #fff;
  z-index: 100;
  border-radius: 20px;
  border:3px solid #000;
  padding:2rem;
  /* padding-left: min(414px,12%);  */
  text-align: center;
  margin: 0 auto;
  width:80%;
  position: relative;
  z-index: 20;
}
#smsw #page .takei.outlink .portrait {
  width: min(47%,354px);
  position: absolute;
  z-index: 100;
  bottom: -25%;
  left:0;
}
#smsw #page .takei.outlink h3 {
  margin-bottom: .5em;
}
#smsw #page .outlink .outlink-btn {
  width:90%;
  margin: 0 auto;
  margin-bottom: .3rem;
}
#smsw #page .takei.outlink .outlink-btn a:hover img {
  opacity: .7;
  transition: .3s;
}
#smsw #page .takei.outlink p {
  margin: 0;
  font-weight: bold;
  font-size:13px;
}
@media (max-width: 768px) { 
  #smsw #page .takei.outlink .portrait {
    width: min(47%,364px);
    position: absolute;
    z-index: 100;
    top: -17vw;
    bottom:auto;
    right:-20px;
    left: calc(50vw - 30%);
  }
  #smsw #page .takei.outlink .contact-box {
    z-index: 200;
    width:90%;
    padding:1rem;
  }
  #smsw #page .takei.outlink .contact-box .inner {
    margin-top: -60px;
  }
  #smsw #page .takei.outlink::after{
    height:calc(100% - 200px);
    clip-path: polygon(-440% 100%, 100% 0%, 100% 100%);
  }
  #smsw #page .takei.outlink h3 {
    margin-bottom: 0 !important;
  }
  #smsw #page .takei.outlink .outlink-btn {
    margin-top: 0;
  }
}

/*-----------------------------------------------
omiyage
-----------------------------------------------*/
#smsw .omiyage {
  padding: 1rem 0;
  background-color: #FFF5E2;
}
#smsw .omiyage h3 {
  margin-bottom: 1rem;
}
#smsw .more-omiyage {
  background-image: url('../img/smsw/sec5-illust-pc-01.png'), url('../img/smsw/sec5-illust-pc-02.png');
  background-position: left center,right center;
  background-repeat: no-repeat;
  background-size: 20% , 20%;
  text-align: center;
}
#smsw .omiyage h3 {
  margin-bottom: 1em;
}
#smsw .omiyage img {
  width:500px;
}
#smsw .omiyage a:hover img {
  opacity: .7;
  transition: .3s;
}

@media (max-width: 768px) { 
  #smsw .more-omiyage {
    padding:2rem 0;
    padding-top: 4rem;
    background: none;;
  }
  #smsw .more-omiyage .container {
    background: none;
  }
  #smsw .more-omiyage .sp-img-fullwidth {
    width:100% !important;
  }
  #smsw .more-omiyage h3 {
    width:90%;
    margin: 0 auto;
  }
  #smsw .more-omiyage a {
    width: 80%;
    display: block;
    margin: 0 auto;
    margin-top: 1rem !important;
  }
}

/*-----------------------------------------------
pickup
-----------------------------------------------*/
#smsw #page .pickup-stay {
  padding-top: 5rem;
  background: linear-gradient(180deg, #FFF5E2 0, #FFF5E2 50px, #fff calc(50px + 5rem), #fff 100%);
}

#smsw #page .pickup .address {
  font-size: .7em;
  line-height: 1.6;
}

#smsw #page .local-nav .button:nth-child(2) {
  background-color: #2DB6D6;
}
#smsw #page .local-nav .button:nth-child(3) {
  background-color: #ED6D2B;
}

#smsw #page .pickup-stay .fukidashi-h {
  background-color: #F06A75;
  color:#fff;
}
#smsw #page .pickup-stay .fukidashi-h:after {
  background: linear-gradient(180deg, #F06A75 0, #F06A75 10px, #fff 10px, #fff 100%) !important;
}
#smsw #page .pickup-stay .cards a {
  background-color: #F06A75;
}


#smsw #page .pickup-spot .fukidashi-h {
  background-color: #2DB6D6;
  color:#fff;
}
#smsw #page .pickup-spot .fukidashi-h:after {
  background: linear-gradient(180deg, #2DB6D6 0, #2DB6D6 10px, #fff 10px, #fff 100%) !important;
}
#smsw #page .pickup-spot .cards a {
  background-color: #2DB6D6;
}


#smsw #page .pickup-event .fukidashi-h {
  background-color: #ED6D2B;
  color:#fff;
}
#smsw #page .pickup-event .fukidashi-h:after {
  background: linear-gradient(180deg, #ED6D2B 0, #ED6D2B 10px, #fff 10px, #fff 100%) !important;
}
#smsw #page .pickup-event .cards a {
  background-color: #ED6D2B;
}
@media (max-width: 768px) { 
  #smsw #page .pickup-stay {
    padding-top: 1rem;
  }
}

/*-----------------------------------------------
broken grid
-----------------------------------------------*/
.extend-left {
  padding:1rem;
  margin-left: -200px;
  padding-left: 200px;
  position: relative;
  z-index: 11;
  background-color: #fff;
  border-radius: 15px;
}
.extend-right {
  padding:1rem;
  margin-right: -200px;
  padding-right: 200px;
  position: relative;
  z-index: 11;
  background-color: #fff;
  border-radius: 15px;
}
.extend-img {
  position: relative;
  z-index: 12;
}
@media (max-width: 768px) { 
  .sp-img-fullwidth {
    max-width:calc(100% + 30px) !important;
    margin-left: -15px;
  }
  .sp-img-right {
    position: relative;
    right:-35px;
  }
  .sp-img-left {
    position: relative;
    left:-35px;
  }
}

@media (max-width: 768px) {

  /*-----------------------------------------------
  smsw sp
  -----------------------------------------------*/

  #smsw #page .local-nav .button:nth-child(3) {
    width: 100% !important; 
    border-right:none !important;
  }

  #smsw #page .sec1 {
    padding-bottom: 1rem;
  }
  #smsw #page .sec1 h3 img {
    width: 100%;
  }
  #smsw #page .sec1 .illust-box {
      position: absolute;
      left:0;
      text-align: center;
      bottom: -4rem;
  }
  #smsw #page .sec1 .illust-box img.pc-none {
    margin-left: 0;
    margin-right: 0;
    margin: 0 auto;
    width:60%;
    z-index: 400;
    position: relative;
  }

  #smsw #page .sec4 h3 {
    width:100%;
  }
  #smsw #page .sec4-smsw .img-box {
    margin-top: -2rem !important;
  }
  #smsw #page .sec4-smsw {
    padding-top: 0rem !important;
    padding-bottom: 0 !important;
    margin-bottom: -4rem;
  }
  #smsw #page .sec7-smsw {
    padding:2rem 0 !important;
  }
  #smsw #page .sec7-smsw img {
    margin-left: -15px;
    max-width: calc(100% + 30px);
    right:0 !important;
  }
  #smsw #page .sec7-smsw .row .float-box {
    padding-top:2rem !important;
    position: relative;
  }
  #smsw #page .sec7-smsw .row .float-box .illust {
    width:140px;
    position: absolute;
    top:-100px;
    left:0;
  }
  #smsw #page .sec7-smsw .row .img-box {
    margin-top:-3.3rem;
  }
  #smsw #page .sec7-smsw .row2 {
    margin:3rem 0 0rem 0 !important;
  }
  #smsw #page .sec7-smsw .row2 .float-box {
    margin-top: -50px !important;
    padding-top: 15px !important;
  }
  #smsw #page .row3 .text-box {
    margin-bottom: 0 !important;
  }
  #smsw #page .row3 .float-box {
    margin-top: -1rem !important;
  }
  #smsw #page .row3 .sec7-smsw-img {
    margin-left: -15px;
    max-width: calc(100% + 30px);
    right: 0 !important;
    margin-top: 4rem !important;
    position: relative;
    z-index: 100;
  }

  #smsw #page .sec7-2 {
    padding-bottom: 1rem !important;
  }

  #smsw #page .sec7-2 .row2 {
    margin-bottom: 0;
  }

  #smsw #page .sec1-2 .text-box {
    margin-bottom: 0;
  }

  #smsw #page .row3 .img-04 {
    padding:0 15px;
  }

  #smsw #page .sec7 .row2 {
    margin-top: 0;
  }
  
  #smsw #page .text-box  {
    margin-bottom: 2rem;
  }


  #smsw #page .sec4-2 {
    padding-bottom:1rem !important;
  }
  #smsw #page .sec2-smsw .float-box {
    padding:1rem;
  }
  #smsw #page .sec2-smsw .btm-img {
    margin-bottom: -4rem;
    margin-right: -15px;
    position: relative;
    right:-33px;
  }
  #smsw #page .sec2-smsw .text-box {
    margin-bottom: 0;
  }
  #smsw #page .walklink {
    margin:0 !important;
    margin-top: 1rem !important;
  }

  #smsw #page .sec9 .float-box {
    padding:1rem;
  }
  #smsw #page .sec9 .float-box img {
    margin-bottom: -7rem;
    position: relative;
    margin-top: 1rem;
    left:-33px;
  }

  #smsw #page .sec7-3 {
    padding-bottom: 1rem;
  }

  #smsw #page .sec4-3 {
    padding: 0;
  }

  #smsw #page .sec2-smsw {
    padding-top: 0;
  }
  #smsw #page .sec2-smsw .float-box {
    margin-top: 0;
  }

  #smsw #page .sec9 {
    padding-bottom: 0;
  }
  #smsw #page .sec9 .float-box {
      padding-bottom: 8rem;
      margin-bottom: -7rem;
  }


  #smsw #page .contact .contact-box {
    width:calc(100% - 20px);
    padding-left:1rem;
    padding-bottom:0;
  }
  #smsw #page .contact .contact-box a img {
    padding:0;
  }
  #smsw {
    overflow: hidden;
  }

  /*-----------------------------------------------
  smsw outlink sp
  -----------------------------------------------*/
  #smsw #page .outlink {
    background-color: #FFF5E2;
    background-image: url(../img/smsw/outlink-bg.png);
    background-size: cover;
    background-position: center bottom;
    padding: 3rem 0;
    position: relative;
    padding-top:5rem;
  }
  #smsw #page .outlink::before{
    content:'';
    width:100%;
    position: absolute;
    top:-1px;
    left:0;
    height:10%;
    background-color: #FFF5E2;
    z-index: 50;
    clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  }
  #smsw #page .outlink::after{
    content:'';
    width:100%;
    position: absolute;
    bottom:-1px;
    left:0;
    height:20%;
    background-color: #FFF5E2;
    z-index: 150;
    clip-path: polygon(0% 100%, 100% 0%, 100% 100%);
  }
  #smsw #page .outlink .contact-box {
    background-color: #fff;
    z-index: 100;
    border-radius: 20px;
    border:3px solid #000;
    padding:1rem;
    text-align: center;
    margin: 0 auto;
    width:85%;
    position: relative;
    z-index: 220;
    bottom:-6rem;
  }
  #smsw #page .outlink .portrait {
    width: 60%;
    position: absolute;
    z-index: 100;
    bottom: inherit;
    top:-5%;
    left: calc(50vw - 30%);
  }
  #smsw #page .outlink .outlink-btn {
    width:90%;
    margin: 0 auto;
    margin-bottom: .5rem;
    margin-top: 1rem;
  }
  #smsw #page .outlink .outlink-btn a:hover img {
    opacity: .7;
    transition: .3s;
  }
  #smsw #page .outlink p {
    margin: 0;
    font-weight: bold;
    font-size:13px;
    line-height: 1.3em;
  }
  #smsw #page .color-band h4 span {
    display: inline-block;
    line-height: 1.3em;
  }

}


/*-----------------------------------------------
util
-----------------------------------------------*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

.relative-box {
  position: relative;
}

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

.p-0 {
  padding: 0;
}

.pc-none {
  display: none !important; 
}

@media (max-width: 768px) { 
  .pc-none {
    display: block !important;
  }
  .sp-none {
    display: none !important;
  }
  .imgwide-r {
    max-width: calc(100% + 15px);
  }
  .imgwide-l {
    max-width: calc(100% + 15px);
    margin-left: -30px;
  }
  .wideimg {
    max-width: calc(100% + 30px) !important;
    margin-left: -15px;
    position: relative;
  }
  .mb-1em {
    margin-bottom: -.5em;
  }
  .mt-1em {
    margin-top: -.5em;
  }
  .mt-2em {
    margin-top: -1.5em;
  }
  .pb-1em {
    padding-bottom: 3em;
  }
}

.fukidashi-h {
  position: relative;
  padding: .5rem 0 1.4rem 0;
  margin-left: 6px;
  background-color: #FFF5E2;
  color: #333;
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.fukidashi-h:before {
  position: absolute;
  inset: -8px 6px 6px -8px;
  border: 4px solid #3C3C3C;
  content: "";
}

.fukidashi-h:after {
  position: absolute;
  bottom: -14px;
  left: 50px;
  transform: skew(25deg);
  height: 24px;
  width: 15px;
  border-left: 4px solid #3C3C3C;
  background: linear-gradient(180deg,#FFF5E2 0,#FFF5E2 9px,#fff 10px, #fff 100%);
  content: "";
}

.fukidashi-h h2 {
  line-height: 1.5;
  font-family: var(--sub-font) !important;
}

.fukidashi-h h2 span {
  font-size: 1.4em;
  font-family: var(--sub-font) !important;
  font-weight: bold;
}

.fukidashi-h2:after {
  background: #FFF5E2;
}

@media (max-width: 768px) { 
  .fukidashi-h {
    margin: 0 5px 0 15px ;
    margin-bottom: 1.2rem ;
  }
  .fukidashi-h h2 {
    font-size:.7em;
  } 

  .mt-3 {
    margin-top: 1em;
  }
  .mb-3 {
    margin-bottom: 1rem;
  }
  .mb-6 {
    margin-bottom: 2rem;
  }
}
