@charset "utf-8";
@import url("root.css");

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
/*-----*RESET CSS*-----*/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
ol,
ul {
  list-style: none;
}
img {
  width: 100%;
  vertical-align: bottom;
}

/*-----*RESET CSS*-----*/

* {
  font-size: 1rem;
  line-height: 140%;
  word-break: break-all;
}

a:hover {
  cursor: pointer;
}

a:hover img {
  opacity: 0.85; /*--IE,FF対応--*/
  filter: alpha(opacity=85);
  -ms-filter: "alpha( opacity=85)";
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}
h2 {
  font-size: 2.25rem;
}
h2 strong {
  font-size: 100%;
}
h3 {
  font-size: 1.375em !important;
}
h3 strong {
  font-size: 100%;
}
h4 {
  font-size: 1.25rem;
}
h4 strong {
  font-size: 100%;
}
h5 {
  font-size: 1.125rem;
}
h5 strong {
  font-size: 100%;
}
p {
  font-size: 1rem !important;
}

@media screen and (min-width: 1025px) {
  h2 {
    font-size: 2.625rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.375rem;
  }
  h5 {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 599px) {
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.25rem !important;
  }
  h4 {
    font-size: 1.125rem;
  }
  h5 {
    font-size: 1rem;
  }
  p {
    font-size: 17px !important;
  }
}

.home h2,
.items_type h2 {
  letter-spacing: 3px;
  color: var(--base-color01);
}

.home h2 span,
.items_type h2 span {
  display: block;
  margin-bottom: 20px;
  color: var(--base-color01);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0px;
}

.home h2 strong,
.items_type h2 strong {
  font-weight: 700;
}

#info {
}

#info h2 span::before,
#info h2 span::after {
  display: none;
}

#info h2 span {
  font-size: 1.25rem;
}

#access h2 {
  letter-spacing: 3px;
}
#access h2 span {
  display: block;
  margin-bottom: 10px;
  color: var(--base-color01);
  font-weight: normal;
}
#access h2 span::before,
#access h2 span::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .home h2 span,
  .items_type h2 span {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 599px) {
  .home h2,
  .items_type h2 {
    letter-spacing: 0px;
    line-height: 140% !important;
  }
  .home h2 span,
  .items_type h2 span {
    font-size: 1rem !important;
  }
}
/***************************************
---------------- PARTS ----------------
***************************************/
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
body {
  counter-reset: number 0;
  color: var(--base-color02);
  background: var(--base-color03);
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  position: relative;
  overflow-x: hidden;
}

.btnshine {
  position: relative;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}
.btnshine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}
.btnshine:hover::before {
  animation: shine 0.7s;
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

.container {
  width: 94%;
  max-width: 1000px;
  margin: auto;
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding: 30px 0 40px;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: block !important;
  }
}

.home .container {
  width: 94%;
  max-width: 1000px;
  margin: auto;
  padding: 60px 0 80px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 1025px) {
  .home .container {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .home .container {
    padding: 30px 0 40px;
  }
}

.container h2 {
  width: 100%;
  padding: 10px 0 20px;
  margin-bottom: 30px;
  text-align: center;

  line-height: 1;
  color: var(--base-color02);
  border-bottom: solid 1px var(--base-color02);
}

/***************************************
-------------- PAGENATION --------------
***************************************/

#pagination {
  width: 100%;
  margin: var(--sp-space) auto;
}
#pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pagination li {
  margin-right: 7px;
  margin-left: 7px;
  line-height: 1.5;
}
#pagination li a {
  display: flex;
  font-size: calc(var(--sp-fontsize_p) * 0.8);
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  width: min(10vw, 48px);
  height: 42px;
  padding-top: 3px;
  align-items: center;
  justify-content: center;
}
#pagination li.active a {
  background: var(--base-color01);
  color: var(--base-color03);
}

/******************************************
HEADER
***************************************/
header {
  /*position: absolute;
  top: 0px;*/
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0px auto 0;
  padding: 0px 0 0px;
  z-index: 999;
  height: 80px;
  background-color: var(--base-color03);
  box-shadow: 2px 2px 4px -2px rgba(0, 0, 0, 0.15);
}

header .inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  max-width: 1170px;
  height: 80px;
  margin: 0rem auto 0rem;
  text-align: left;
}

header .inner article {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 90%;
}

header .inner article h1 a {
  display: block;
  font-size: 30px !important;
  font-weight: 600;
  margin-top: 0rem;
  color: inherit;
}

header .inner article h1 a:hover {
  color: inherit;
}

header .inner article h1 a img {
  display: block;
  width: 100%;
  max-width: 440px;
  height: auto;
}

header .inner article:nth-child(2) {
  display: none;
  justify-content: flex-end;
}

/*-------------------------------*/

header .inner article .contact_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

header .inner article .contact_box li.Bana {
  display: flex;
  justify-content: flex-end;
}

header .inner article .contact_box li.Bana img {
  /* display: block;
  width: 100%;
  max-width: 300px;
  height: auto;*/
}

header .inner article .contact_box li.Tel {
  padding-right: 20px;
}

header .inner article .contact_box li.Tel dl {
  display: block;
  padding: 0;
  text-align: center;
}
header .inner article .contact_box li.Tel dt img {
  display: block;
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 0 0 5px auto;
}
header .inner article .contact_box li.Tel dt {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 2rem;
  text-align: center;
  padding: 0 !important;
  white-space: nowrap;
  color: var(--base-color02);
  letter-spacing: -1px;
}

header .inner article .contact_box li.Tel dt::before {
  display: none;
  content: "";
  background: url("../img/icon_phone.webp") no-repeat center;
  background-size: contain;
  width: 100%;
  min-width: 36px;
  max-width: 60px;
  height: 36px;
  margin-right: 5px;
}
header .inner article .contact_box li.Tel dd {
  text-align: center;
  font-weight: 500;
}

header .inner article .contact_box li.Tel dd.mobile {
  font-size: 18px !important;
  font-weight: 600;
  border: 1px solid;
  border-radius: 3px;
  margin-bottom: 2px;
}

header .inner article .contact_box li.Tel dd.time {
  font-size: 14px;
  text-align: right;
}

@media only screen and (min-width: 1025px) {
  header {
    height: auto;
    position: static !important;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.45);
  }
  header .inner {
    height: auto;
  }
  header .inner article:nth-child(2) {
    display: flex !important;
  }
  header .inner article {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }
  header .inner article:nth-child(1) {
    width: 50%;
  }
  header .inner article:nth-child(2) {
    width: 60%;
    padding-right: 0%;
  }
  header .inner article h1 a img {
    display: block;
    width: 100%;
    max-width: 513px;
    height: auto;
  }
}

@media only screen and (max-width: 599px) {
  header {
    height: 60px;
  }
  header .inner {
    height: 60px;
  }
  header .inner article h1 {
    width: 84%;
    min-width: auto;
  }
  header .inner article h1 a {
    font-size: 20px !important;
  }

  header .inner article h1 a img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
  }
}
/*--------------------
追尾バナー
---------------------*/
.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 220px;
  z-index: 11;
}

@media only screen and (max-width: 1024px) {
  .fixed-btn {
    display: block;
    z-index: 9;
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-height: 80px;
  }
}

@media only screen and (max-width: 599px) {
  .fixed-btn dl {
    max-height: 60px;
  }
}

.fixed-btn dl dt {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dt {
    width: 100%;
    display: none;
    background-color: #c52828;
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    padding: 5px;
    padding: 1.5625vw;
  }
}

@media only screen and (max-width: 1024px) and (max-width: 1024px) {
  .fixed-btn dl dt {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.fixed-btn dl dd {
  background-position: left center;
  background-repeat: no-repeat;
  width: 120px;
  height: 170px;
  background-size: 100%;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transform: translateX(64px);
  transform: translateX(64px);
}

.fixed-btn dl dd.fixed-btn-line {
  width: 128px;
  height: 180px;
}

.fixed-btn dl dd.fixed-btn-mail {
  width: 128px;
  height: 180px;
}
.fixed-btn dl dd.fixed-btn-satei {
  width: 128px;
  height: 180px;
}

.fixed-btn dl dd br {
  display: none;
}

@media only screen and (max-width: 768px) {
  .fixed-btn dl dd br {
    display: block;
  }
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    /*width: 33.33%;*/
    width: 28%;
    height: 80px;
    height: 12.5vw;
  }
  .fixed-btn dl dd.fixed-btn-line {
    /*width: 33.33%;*/
    width: 28%;
    height: 80px;
  }
  .fixed-btn dl dd.fixed-btn-mail {
    width: 28%;
    /* width: 50%;*/
    height: 80px;
  }
  .fixed-btn dl dd.fixed-btn-satei {
    width: 28%;
    /* width: 50%;*/
    height: 80px;
  }
  .fixed-btn dl dd.fixed-btn-tel {
    width: 28%;
    /* width: 50%;*/
    height: 80px;
  }
  .fixed-btn dl dd.fixed-btn-top {
    width: 16%;
    /* width: 50%;*/
    height: 80px;
  }
}

@media only screen and (min-width: 1025px) {
  .fixed-btn dl dd:hover {
    -webkit-transform: translateX(47px);
    transform: translateX(47px);
  }
}

.fixed-btn dl dd a {
  display: block;
  height: 100%;
  position: relative;
}

.fixed-btn dl dd a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  right: 1.5625vw;
  margin-top: -3px;
  margin-top: -0.9375vw;
  width: 6.5px;
  width: 2.03125vw;
  height: 10.5px;
  height: 3.28125vw;
  background-size: 100%;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1025px) {
  .fixed-btn dl dd .inner,
  .fixed-btn dl dd.fixed-btn-line i {
    display: none;
  }
  /*PCでは画像のみの場合*/
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd .inner {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 80px;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    padding: 0px 0px 0px 0;
    color: #fff;
    font-weight: 500;
  }
  .fixed-btn dl dd .inner::before {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 32px;
    height: 32px;
    margin-bottom: 0px;
  }
}

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

@media only screen and (max-width: 599px) {
  .fixed-btn dl dd .inner {
    font-size: 0.75rem;
    height: 60px;
  }
  .fixed-btn dl dd .inner::before {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
    margin-bottom: 5px;
  }
}

/*---------------LINE ----------------*/

.fixed-btn dl dd.fixed-btn-line {
  background-image: url(../img/bg-side-line.webp);
  background-size: 128px 180px;
  background-color: #12a73b;
  border-radius: 5px 0 0 5px;
  margin-bottom: 10px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd.fixed-btn-line {
    background-image: none;
    background-color: #12a73b;
    border-radius: 0px 0px 0 0px;
    margin-bottom: 0px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
  }
  .fixed-btn dl dd.fixed-btn-line a:after {
  }
  .fixed-btn dl dd.fixed-btn-line .inner::before {
    background-image: url("../img/fixed-btn-line.webp");
    /*  width: 40px;
    height:40px;*/
  }
}

.fixed-btn dl dd.fixed-btn-line i {
  background: url(../img/fixed-btn-line.webp) no-repeat;
  background-size: contain;
}

.fixed-btn dl dd.fixed-btn-line .free {
  color: #008d17;
}
@media only screen and (max-width: 599px) {
  .fixed-btn dl dd.fixed-btn-line .inner::before {
    background-image: url("../img/fixed-btn-line.webp");
    /* width: 38px;
    height:38px;*/
  }
}

/*---------------MAIL ----------------*/

.fixed-btn dl dd.fixed-btn-mail {
  background-image: url(../img/bg-side-mail.webp);
  background-size: 128px 180px;
  background-color: var(--base-color01);
  border-radius: 5px 0 0 5px;
  margin-bottom: 10px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd.fixed-btn-mail {
    background-image: none;
    background-color: var(--base-color01);
    border-radius: 0px 0px 0 0px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0);
  }
  .fixed-btn dl dd.fixed-btn-mail a:after {
  }
  .fixed-btn dl dd.fixed-btn-mail .inner::before {
    background-image: url("../img/fixed-btn-mail.webp");
  }
}

.fixed-btn dl dd.fixed-btn-mail i {
  background: url(../img/fixed-btn-mail.webp) no-repeat;
  background-size: contain;
}

/*---------------SATEI ----------------*/

.fixed-btn dl dd.fixed-btn-satei {
  background-image: url(../img/bg-side-satei.webp);
  background-size: 128px 180px;
  background-color: var(--base-color04);
  border-radius: 5px 0 0 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd.fixed-btn-satei {
    background-image: none;
    background-color: var(--base-color01);
    border-left: 1px solid #fff;
    border-radius: 0px 0px 0 0px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0);
  }
  .fixed-btn dl dd.fixed-btn-satei a:after {
  }
  .fixed-btn dl dd.fixed-btn-satei .inner::before {
    background-image: url("../img/fixed-btn-satei_w.webp");
  }
}

.fixed-btn dl dd.fixed-btn-satei i {
  background: url(../img/fixed-btn-satei_w.webp) no-repeat;
  background-size: contain;
}

/*---------------TEL ----------------*/

.fixed-btn dl dd.fixed-btn-tel {
  display: none;
}

.fixed-btn dl dd.fixed-btn-tel i {
  background: url(../img/fixed-btn-tel.webp) no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd.fixed-btn-tel {
    display: block;
    background-color: var(--base-color01);
    border-left: 1px solid #fff;
  }
  .fixed-btn dl dd.fixed-btn-tel .inner::before {
    background-image: url("../img/fixed-btn-tel.webp");
  }
}
/*---------------TOP----------------*/

.fixed-btn dl dd.fixed-btn-top {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .fixed-btn dl dd.fixed-btn-top {
    display: block;
    background-color: var(--base-color02);
    border-left: 1px solid #fff;
  }
  .fixed-btn dl dd.fixed-btn-top .inner::before {
    background-image: url("../img/fixed-btn-top.webp");
  }
}

/*------------------------------------*/

.btn_links {
  width: 100%;
  padding: 25px 0 0px;
}

.btn_links a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 360px;
  height: auto;
  margin: auto;
  padding: 4px;
  font-weight: 500;
  line-height: 1;
  color: var(--base-color01);
  background: var(--base-color04);
  text-align: center;
  border-radius: 35px;
  transition: 0.7s;
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
  border: 3px solid;
}

.btn_links a span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 3px;
  padding: 8px 17px 8px;
  font-size: 1.375rem;
}

.btn_links a:hover {
  background: var(--base-color01);
  color: var(--base-color03);
  border-color: var(--base-color01);
}

.btn_links a::after {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  font-weight: 600;
  position: absolute;
  right: 16px;
  margin-top: 1px;
}

@media screen and (max-width: 599px) {
  .btn_links a {
    width: 90%;
    font-size: 1rem !important;
  }
  .btn_links a span {
    width: 100%;
    font-size: 1rem !important;
  }
}

/*------------------------------*/

.btn_links.base a {
  color: var(--base-color03);
  background: var(--base-color01);
  border-color: var(--base-color01);
}

.btn_links.base a span {
}

.btn_links.base a:hover {
  color: var(--base-color01);
  background: var(--base-color03);
  border-color: var(--base-color03);
}

/*---------------------*/

.btn_links.base2 a {
  color: var(--base-color01);
  background: var(--base-color04);
  border-color: var(--base-color04);
}

.btn_links.base2 a span {
}

.btn_links.base2 a:hover {
  color: var(--base-color04);
  background: var(--base-color01);
  border-color: var(--base-color01);
}

/*---------------------*/

.btn_links.faq a {
  background: transparent;
  border: 1px solid #fff;
}

.btn_links.faq a span {
  background: transparent;
}

.btn_links.faq a:hover {
  color: var(--base-color03);
  background: transparent;
}

/*---------------------*/

.btn_links.access {
  padding: 0px 0 0px;
}

.btn_links.access a {
  width: 100%;
  padding: 1px 3px 3px;
  max-width: 460px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: none;
  color: var(--base-color03);
  background: rgb(125, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(125, 0, 0, 1) 0%,
    rgba(225, 0, 25, 1) 50%,
    rgba(125, 0, 0, 1) 100%
  );
}
.btn_links.access a span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 15px 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  background: rgb(225, 0, 25);
  background: linear-gradient(
    180deg,
    rgba(225, 0, 25, 1) 0%,
    rgba(125, 0, 0, 1) 100%
  );
}
.btn_links.access a span:hover {
  background: rgb(225, 0, 25);
  background: linear-gradient(
    0deg,
    rgba(225, 0, 25, 1) 0%,
    rgba(125, 0, 0, 1) 100%
  );
}

.btn_links.access a span::before {
  content: "";
  display: inline-block;
  background-image: url("../img/icon_mail3.webp");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  width: 30px;
  height: 23px;
  margin-right: 10px;
  margin-top: 5px;
}
.btn_links.access a span:hover::before {
  background-image: url("../img/icon_mail3.webp");
}
.btn_links.access a::after {
  display: none;
}

@media screen and (max-width: 1199px) {
  .btn_links.access a span {
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 599px) {
  .btn_links.access a span {
    padding: 15px 10px 15px;
    font-size: 1.125rem !important;
  }
  .btn_links.access a span::before {
    width: 25px;
    height: 23px;
    margin-top: 0px;
  }
}
/*---------------------*/

.btn_links.access_btn {
  padding: 0px 0 0px;
}

.btn_links.access_btn a {
  width: 100%;
  padding: 3px 3px 3px;
  max-width: 460px;
  border-radius: 5px;
  background: var(--sub-color01);
  border: 2px solid var(--base-color01);
  color: var(--sub-color01);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
}
.btn_links.access_btn a span {
  width: 100%;
  padding: 5px 10px 5px !important;
  border-radius: 3px;
  background: var(--base-color01);
  border: 0px solid var(--base-color01);
  font-weight: 600;
}
.btn_links.access_btn a span:hover {
}

.btn_links.access_btn a span::before {
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  content: "\f5a0";
  font-weight: 600;
  margin-right: 5px;
  color: var(--sub-color01);
  letter-spacing: 0;
}

.btn_links.access_btn a::after {
  display: none;
}
@media screen and (max-width: 599px) {
}
/*---------------------*/
.btn_links.info {
  display: none;
}

.btn_links.info a {
  display: block;
  max-width: 200px;
  background: var(--base-color04);
  color: var(--base-color01);
  border: 1px solid var(--base-color01);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
  padding: 10px 10px 11px;
  font-size: 1rem;
}
.btn_links.info a:hover {
  background: var(--base-color01);
  color: var(--base-color03);
}
.btn_links.info a::after {
  display: none;
}
@media screen and (max-width: 599px) {
  .btn_links.info {
    display: block;
  }
  .btn_links.info a::before {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    content: "\f0da";
    font-weight: 600;
    margin-right: 5px;
    font-size: 80%;
    margin-top: -3px;
  }
}
/*---------------------*/
.btn_links.dl_link a {
  max-width: 600px;
  background: var(--base-bgcolor03);
  color: var(--base-color02);
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  padding: 15px 10px 14px;
  font-size: 1rem;
  line-height: 160%;
  border: 1px solid;
}

.btn_links.dl_link a br {
  display: none;
}

@media screen and (max-width: 599px) {
  .btn_links.dl_link a {
    width: 100%;
    font-size: 16px;
  }
  .btn_links.dl_link a br {
    display: block;
  }
}
/*-----------------------------------*/

.btn_links.chirashi {
  padding: 0px 0 0px;
}

.btn_links.chirashi a {
  width: 90%;
  padding: 20px 15px 20px;
  font-size: 1.25rem;
  max-width: 206px;
  min-width: 206px;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  background: var(--base-color04);
  border: 2px solid var(--base-color01);
}
.btn_links.chirashi a img {
  display: block;
  width: 100%;
  max-width: 142px !important;
  height: auto;
  margin: 0 auto 0;
}

.btn_links.chirashi a:hover {
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.4);
}

.btn_links.chirashi a::after {
  display: none;
}
@media screen and (max-width: 599px) {
  .btn_links.chirashi a {
    width: 90%;
    padding: 20px 15px 22px;
    font-size: 1.125rem;
    max-width: 490px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0);
    border-radius: 8px;
  }
}
/*---------------------*/

.txt_links {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.txt_links a,
.txt_links span {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.txt_links a {
  padding: 10px 5px 0px;
  color: var(--base-color02);
  background-color: transparent;
  border-bottom: 1px solid;
  margin-right: 0;
}

.txt_links span {
  width: 100%;
  padding: 10px 15px 10px;
  color: var(--base-color03);
  background: var(--base-color01);
}

.txt_links a::after,
.txt_links span::after {
  display: block;
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 600;
  right: 16px;
}
.txt_links a::after {
  color: var(--base-color02);
}

.txt_links span::after {
  color: var(--base-color03);
}

.txt_links a:hover {
  color: var(--base-color01);
}

.txt_links {
}

/*--------------------------------*/
.flex_box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto 0;
}
.flex_box li {
}

.flex_box.cl2 li,
.flex_box.cl3 li {
  width: 49%;
}

.flex_box.cl1 li {
  width: 49%;
  margin: 0 auto 0;
}

.wide_img_box {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 0;
  margin-top: 20px;
}

.wide_img_box li:nth-child(1) {
  display: block;
}
.wide_img_box li:nth-child(2) {
  display: none;
}

.flex_box li img,
.wide_img_box li img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto 0;
}

.flex_box li img {
  max-width: 490px;
}
.wide_img_box li img {
  max-width: 1000px;
}

@media screen and (min-width: 1025px) {
  .flex_box.cl3 li {
    width: 32%;
  }
}

@media screen and (max-width: 768px) {
  .flex_box.cl2 li,
  .flex_box.cl3 li {
    width: 100%;
    margin-top: 20px;
  }
  .flex_box.cl2 li:nth-child(1),
  .flex_box.cl3 li:nth-child(1) {
    margin-top: 0px;
  }

  .wide_img_box li:nth-child(1) {
    display: none !important;
  }
  .wide_img_box li:nth-child(2) {
    display: block !important;
  }
  .wide_img_box li img {
    max-width: 768px;
  }
}

/*----------------------------*/
.txt_link_dl {
}

.txt_link_dl:hover {
  text-decoration: underline;
  color: var(--base-color01);
}

/*----------------------------*/
.sp_none {
}
.tb_none {
}
@media screen and (max-width: 768px) {
  .tb_none {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  .sp_none {
    display: none;
  }
}

/***************************************
-------- img_title ---------
***************************************/
h2.img_title,
.page_wrap h2.img_title {
  padding-bottom: 0px;
  border-bottom: 0;
  font-size: 1.5rem;
  letter-spacing: 3px;
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 0% auto 3%;
  height: 170px;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 15px;
  background-color: transparent;
}
#top_greeting h2.img_title {
  height: 170px;
  background-image: url("../img/index/greeting_title_img.webp");
}
#items h2.img_title {
  height: 130px;
  background-image: url("../img/index/items_title_img.webp");
}
#achievement h2.img_title {
  height: 100px;
  background-image: url("../img/index/achievement_title_img.webp");
}
#trip_purchase h2.img_title {
  height: 150px;
  background-image: url("../img/index/purchase_title_img.webp");
}

h2.img_title img {
  display: none;
}
@media screen and (max-width: 899px) {
  #top_greeting h2.img_title {
    height: 130px;
  }
  #items h2.img_title {
    height: 80px;
  }
  #achievement h2.img_title {
    height: 80px;
  }
  #trip_purchase h2.img_title {
    height: 130px;
  }
}

@media screen and (max-width: 768px) {
  h2.img_title {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  h2.img_title {
    padding-bottom: 0px;
    border-bottom: 0;
    letter-spacing: 0px;
    line-height: 140%;
    background: none;
    height: auto;
  }
  h2.img_title img {
    display: block;
    width: 96%;
    margin: 0 auto 0;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
  }
  #top_greeting h2.img_title img {
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0));
  }

  h2.img_title {
    background: none !important;
    height: auto !important;
  }
}

@media screen and (max-width: 479px) {
  h2.img_title img {
    display: block;
    width: 100%;
  }
}

/*-------------------------------------------*/

h2.img_stitle {
  padding-bottom: 0px;
  border-bottom: 0;
  font-size: 1.5rem;
  display: block;
  width: 96%;
  max-width: 490px;
  margin: 0% auto 3%;
  margin-bottom: 20px !important;
  filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}

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

/*----------------------------------------*/
p.rmess,
.page_wrap p.rmess {
  display: block;
  width: 100%;
  font-size: 1.375rem !important;
  font-weight: 600;
  text-align: center !important;
  line-height: 160%;
  margin: 0 auto 1.5rem !important;
  border-top: 3px solid var(--base-color01);
  padding-top: 15px;
}

p.rmess strong {
  font-size: 120% !important;
  color: var(--base-color01);
}
@media screen and (min-width: 1025px) {
  p.rmess {
    font-size: 1.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  p.rmess,
  .page_wrap p.rmess {
    font-size: 1.25rem !important;
    margin: 0rem auto 1.5rem;
    border-top: 2px solid;
    padding-top: 10px;
    line-height: 140%;
  }
}
@media screen and (max-width: 599px) {
  p.rmess,
  .page_wrap p.rmess {
    font-size: 1.125rem !important;
    margin: 0rem auto 1.5rem !important;
    border-top: 2px solid;
    padding-top: 10px;
  }
}

#trip_purchase p.rmess {
}
#achievement p.rmess {
  color: var(--base-color03);
  border-color: var(--base-color04);
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 479px) {
  p.rmess {
    font-size: 1rem !important;
  }
}
