@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;600;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap");
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8em;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 0.6s;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

/*======================================================================================*/
body::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: #00484f;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  body {
    position: relative;
  }
  body::before {
    content: "";
    display: block;
    position: absolute;
    top: 340px;
    left: 50%;
    width: 200vw;
    height: 330px;
    background-color: #0e2a3e;
    transform: rotate(18deg) translate(-50%, 0);
    transform-origin: top left;
    opacity: 0.56;
  }
}
@media screen and (min-width: 768px) and (min-width: 1000px) {
  body::before {
    top: 300px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1100px) {
  body::before {
    top: 390px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1280px) {
  body::before {
    top: 390px;
  }
}

/*sp-fixmenu追加*/
div.sp-fix-menu {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 12;
  background-size: 50px;
  background-color: #f0ebd8;
}
@media screen and (min-width: 768px) {
  div.sp-fix-menu {
    display: none !important;
  }
}
div.sp-fix-menu div.sp-fix-menu-btn {
  display: flex;
  justify-content: center;
}
div.sp-fix-menu div.sp-fix-menu-btn button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  padding: 10px 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.sp-fix-menu div.sp-fix-menu-btn button span {
  display: block;
  line-height: 1.2em;
}
div.sp-fix-menu div.sp-fix-menu-btn button span.icon {
  width: 1.4em;
  margin-right: 0.4em;
}
div.sp-fix-menu div.sp-fix-menu-btn button span.txt {
  font-weight: 600;
  color: #000;
  margin-top: 0.4em;
}
div.sp-fix-menu div.sp-fix-menu-btn button span.arrow {
  width: 0.8em;
  margin-left: 0.4em;
  transform-origin: center center;
  transform: translate(0, 25%) rotate(180deg);
}
div.sp-fix-menu div.sp-fix-menu-btn.active button span.arrow {
  transform: translate(0, 25%) rotate(0deg);
}
div.sp-fix-menu div.slide-menu {
  display: none;
}
div.sp-fix-menu.active div.slide-menu {
  display: block;
}
div.sp-fix-menu ul {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
div.sp-fix-menu ul li {
  text-align: center;
  margin-bottom: 3%;
  width: 48%;
}
div.sp-fix-menu ul li.osaka a {
  background: #ffc9ca;
}
div.sp-fix-menu ul li.hyogo a {
  background: #bee274;
}
div.sp-fix-menu ul li.kyoto a {
  background: #cbc2db;
}
div.sp-fix-menu ul li.shiga a {
  background: #d7eae6;
}
div.sp-fix-menu ul li.nara a {
  background: #d7c6b4;
}
div.sp-fix-menu ul li.wakayama a {
  background: #ffbf85;
}
div.sp-fix-menu ul li a {
  display: block;
  padding: 0.4em 0;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  border: solid 1px #111;
  border-radius: 50em;
  transform-origin: center;
}
div.sp-fix-menu ul li a:hover {
  transform: scale(0.94);
}
div.sp-fix-menu ul li a:hover::after {
  transform: translate(0, -50%) scale(1.8);
}
div.sp-fix-menu ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  width: 0.5em;
  height: 0.5em;
  background: #ffffff;
  border-radius: 50em;
  transition: all 0.3s;
  transform-origin: center;
}

/*sp-fixmenuここまで*/
div.all-wrap {
  position: relative;
}
div.all-wrap div.pc-leftbox {
  width: calc(100% - 490px);
  position: fixed;
  top: 100px;
  left: 10px;
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox {
    width: calc(50% - 240px);
    left: 5px;
  }
}
div.all-wrap div.pc-leftbox p.fix-txt {
  width: 12px;
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
  position: fixed;
}
div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
  width: 85%;
  margin: auto;
}
@media screen and (min-width: 1100px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    max-width: 390px;
    margin: 0 20px 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    margin: 0 35px 0 auto;
  }
}
@media screen and (min-width: 1500px) {
  div.all-wrap div.pc-leftbox div.pc-leftbox-inner {
    margin: 0 55px 0 auto;
  }
}
div.all-wrap div.pc-leftbox p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin: 1em 0;
  font-size: 18px;
}
@media screen and (min-width: 1000px) {
  div.all-wrap div.pc-leftbox p {
    font-size: 21px;
  }
}
div.all-wrap div.pc-leftbox p span {
  display: inline-block;
  line-height: 1.2em;
}
div.all-wrap div.pc-leftbox p span.icon {
  width: 1.4em;
}
div.all-wrap div.pc-leftbox p span.txt {
  font-weight: 600;
  color: #fff;
}
div.all-wrap div.pc-leftbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
}
div.all-wrap div.pc-leftbox ul li {
  text-align: center;
  margin-bottom: 3%;
  width: 48%;
}
div.all-wrap div.pc-leftbox ul li.osaka a {
  background: #ffc9ca;
}
div.all-wrap div.pc-leftbox ul li.hyogo a {
  background: #bee274;
}
div.all-wrap div.pc-leftbox ul li.kyoto a {
  background: #cbc2db;
}
div.all-wrap div.pc-leftbox ul li.shiga a {
  background: #d7eae6;
}
div.all-wrap div.pc-leftbox ul li.nara a {
  background: #d7c6b4;
}
div.all-wrap div.pc-leftbox ul li.wakayama a {
  background: #ffbf85;
}
div.all-wrap div.pc-leftbox ul li a {
  display: block;
  padding: 0.4em 0;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
  border: solid 1px #111;
  border-radius: 50em;
  transform-origin: center;
}
div.all-wrap div.pc-leftbox ul li a:hover {
  transform: scale(0.94);
}
div.all-wrap div.pc-leftbox ul li a:hover::after {
  transform: translate(0, -50%) scale(1.8);
}
div.all-wrap div.pc-leftbox ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  width: 0.5em;
  height: 0.5em;
  background: #ffffff;
  border-radius: 50em;
  transition: all 0.3s;
  transform-origin: center;
}
div.all-wrap div.pc-rightbox {
  position: fixed;
  top: 0;
  right: 0;
  width: calc(50% - 280px);
}
div.all-wrap div.pc-rightbox div.slide02 div.swiper-slide img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  div.sp-area {
    width: 465px;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1100px) {
  div.sp-area {
    margin: auto;
  }
}

header.header01 img {
  width: 55%;
  margin: auto;
  padding: 4% 0;
}

header.header02 {
  width: 254px;
  position: fixed;
  top: 20px;
  left: 27px;
  z-index: 1;
}

section.sec-info {
  background-color: #fff;
  /*div#osaka{
  	background: #f7d9d9;
  }
  div#hyogo{
  	background: #dee6cc;
  }
  div#kyoto{
  	background: #e8e4f0;
  }
  div#shiga{
  	background: #ebf2f0;
  }
  div#nara{
  	background: #e6dfd6;
  }
  div#wakayama{
  	background: #faf0e6;
  }*/
}
section.sec-info div.sec-info-inner {
  padding: 17% 0 5%;
}
section.sec-info .all-title {
  text-align: center;
  position: relative;
  font-size: 1.8em;
  padding-bottom: 0.6em;
}
section.sec-info .all-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #fcc800;
  width: 3em;
  height: 2px;
  border-radius: 50em;
}
section.sec-info div.info-box {
  padding-top: 15%;
  padding-bottom: 10%;
  /*		margin-bottom: 10%;*/
}
section.sec-info div.info-box h2 {
  width: 80%;
  margin: auto;
  text-align: center;
  font-weight: 600;
  font-size: 1.4em;
  line-height: 1.2em;
  padding: 0.32em 0 0.4em;
  border-radius: 50em;
  border: solid 1px #111;
}
section.sec-info div.info-box h2.osaka {
  background: #ffc9ca;
}
section.sec-info div.info-box h2.hyogo {
  background: #bee274;
}
section.sec-info div.info-box h2.kyoto {
  background: #cbc2db;
}
section.sec-info div.info-box h2.shiga {
  background: #d7eae6;
}
section.sec-info div.info-box h2.nara {
  background: #d7c6b4;
}
section.sec-info div.info-box h2.wakayama {
  background: #ffbf85;
}
section.sec-info div.info-box ul {
  width: 80%;
  margin: auto;
}
section.sec-info div.info-box ul li {
  padding: 14% 0;
  border-bottom: dotted 2px #111;
}
section.sec-info div.info-box ul li:last-child {
  border: none;
}
section.sec-info div.info-box ul li div.info-img {
  height: 50vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-info div.info-box ul li div.info-img {
    height: 242px;
  }
}
section.sec-info div.info-box ul li p {
  text-align: center;
  line-height: 1.6em;
}
section.sec-info div.info-box ul li p.info-txt01 {
  margin: 7% 0;
  font-weight: 500;
}
section.sec-info div.info-box ul li p.info-txt02 {
  margin-top: 4%;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  text-align: left;
}
section.sec-info div.info-box ul li p.info-txt02 span {
  display: inline-block;
}
section.sec-info div.info-box ul li p.info-txt02 span.txt01 {
  font-size: 0.8em;
  font-weight: 400;
  min-width: 5em;
}
section.sec-info div.info-box ul li p.info-txt02 span.txt02 {
  font-size: 0.94em;
  font-weight: 500;
}
section.sec-info div.info-box ul li a {
  display: block;
  background: #000;
  color: #fff;
  align-items: center;
  padding: 1em 0;
  width: 90%;
  margin: 1.6em auto 0;
  position: relative;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  section.sec-info div.info-box ul li a {
    transition: all 0.3s;
  }
  section.sec-info div.info-box ul li a:hover {
    background: #0075c1;
  }
  section.sec-info div.info-box ul li a:hover span.arrow {
    right: 5%;
  }
}
section.sec-info div.info-box ul li a span {
  display: block;
  text-align: center;
}
section.sec-info div.info-box ul li a span.txt {
  line-height: 1em;
}
section.sec-info div.info-box ul li a span.arrow {
  width: 1.2em;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translate(0, -50%);
  transition: all 0.3s;
}

a.top-btn {
  display: block;
  width: 30%;
  margin: 0 auto 10%;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  a.top-btn {
    transition: all 0.3s;
  }
  a.top-btn span.arrow {
    transition: all 0.3s;
  }
  a.top-btn svg {
    transition: all 0.3s;
  }
  a.top-btn:hover {
    color: #0075c1;
  }
  a.top-btn:hover span.arrow {
    transform: translate(0, -18%);
  }
  a.top-btn:hover svg {
    fill: #0075c1;
  }
}
a.top-btn span {
  display: block;
  width: 20%;
  margin: auto;
}

footer {
  padding: 10% 0 20%;
  background: #fff;
}
footer .ft-logo {
  display: block;
  width: 64.8%;
  margin: auto;
}
footer ul {
  text-align: center;
  font-weight: 300;
  margin: 7% 0;
}
footer ul li {
  margin-bottom: 3%;
}
footer p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 300;
}

div.hero-area {
  position: relative;
}
div.hero-area p {
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  line-height: 1.8em;
  transform: translate(0, -30%);
}
div.hero-area span.stageup-icon {
  display: block;
  position: absolute;
  width: 33%;
  left: 7%;
  top: 56.6%;
}

section.sec-attaka div.attaka-area01 {
  background-color: #000;
  padding: 10% 0;
  border-bottom: solid 5px #00484f;
}
section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 {
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 {
    font-size: 20px;
  }
}
section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 span {
  display: inline-block;
  position: relative;
}
section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 span::after, section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 70%;
  background-color: #fff;
}
section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 span::after {
  left: -10%;
  transform: rotate(-20deg);
}
section.sec-attaka div.attaka-area01 p.attaka-area01-txt01 span::before {
  right: -10%;
  transform: rotate(20deg);
}
section.sec-attaka div.attaka-area01 picture {
  display: block;
  width: 71%;
  margin: 5% auto 10%;
}
section.sec-attaka div.attaka-area01 a {
  background-color: #fef1bf;
  display: block;
  border: 2px solid transparent;
  background-image: linear-gradient(#fef1bf, #fef1bf), linear-gradient(90deg, #ffe897, #eda977 50%, #e58143);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border-radius: 50em;
  color: #cc5220;
  width: 55%;
  margin: auto;
  box-sizing: border-box;
  padding: 0.2em 0.4em 0.2em 1.6em;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-attaka div.attaka-area01 a {
    padding: 0.2em 0.4em 0.2em 2.4em;
  }
}
section.sec-attaka div.attaka-area01 a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translate(0, -50%);
  background-color: #cc5220;
  width: 0.7em;
  height: 0.5em;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
section.sec-attaka div.attaka-area02 {
  background-color: #00484f;
  padding: 0 0 10%;
}
section.sec-attaka div.attaka-area02 p.attaka-area02-txt01 {
  width: 83.4%;
  margin: 10% auto;
}
section.sec-attaka div.attaka-area02 p.attaka-area02-txt02 {
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  font-size: 0.9em;
  line-height: 1.8em;
  margin-bottom: 7%;
}
section.sec-attaka div.attaka-area02 .more-btn {
  display: block;
  width: 78.6%;
  margin: auto;
  padding: 0.2em 0;
  position: relative;
  font-size: 0.9em;
  color: #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  section.sec-attaka div.attaka-area02 .more-btn {
    font-size: 15px;
  }
}
section.sec-attaka div.attaka-area02 .more-btn span.cross {
  display: block;
  position: absolute;
  width: 0.8em;
  height: 0.8em;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
section.sec-attaka div.attaka-area02 .more-btn span.cross::after, section.sec-attaka div.attaka-area02 .more-btn span.cross::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000;
}
section.sec-attaka div.attaka-area02 .more-btn span.cross::before {
  width: 1px;
  height: 100%;
}
section.sec-attaka div.attaka-area02 .more-btn span.cross::after {
  width: 100%;
  height: 1px;
}
section.sec-attaka div.attaka-area02 p.attaka-area02-txt03 {
  width: 78.6%;
  margin: auto;
  color: #fff;
  font-size: 0.76em;
  letter-spacing: 0;
  line-height: 1.8em;
  text-align: justify;
  word-break: break-all;
  margin-top: 0.6em;
}
section.sec-attaka div.attaka-area02 p.attaka-area02-txt04 {
  text-align: center;
  font-size: 0.9em;
  color: #fff;
  margin: 7% 0 0;
}/*# sourceMappingURL=style.css.map */